repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
golang/go
4c20f7f15a9a8eed50d8cbb8be8f74d449093a5c
5dcedd65504cc9cadc9a5ea8bc3af51a26eec704
cmd/cgo: run gcc to get errors and debug info in parallel This change kicks off the work to load the debug info when processing each file, and then waits for all the files to be processed before starting the single-goroutined part that processes them. The processing is very order dependent so we won't try to make it c...
[ { "path": "src/cmd/cgo/gcc.go", "patch": "@@ -183,16 +183,16 @@ func splitQuoted(s string) (r []string, err error) {\n \treturn args, err\n }\n \n-// Translate rewrites f.AST, the original Go input, to remove\n-// references to the imported package C, replacing them with\n-// references to the equivalent Go...
2025-08-25T21:22:01
denoland/deno
5304748e3d1737b06aed0a9ab4af6c5b11e102de
926717d3e9f4c599bbd0f92b352d22976230bf3d
fix: update setTimeout and setInterval callback type to support strin… (#30183) This PR updates the type definitions for `setTimeout` and `setInterval` in `lib.deno.shared_globals.d.ts` to accept both a string and a function as the callback, matching the DOM standard and Deno's runtime behavior. Previously, the types...
[ { "path": "cli/tsc/dts/lib.deno.shared_globals.d.ts", "patch": "@@ -361,11 +361,8 @@ declare namespace WebAssembly {\n * @category Platform\n */\n declare function setTimeout(\n- /** callback function to execute when timer expires */\n- cb: (...args: any[]) => void,\n- /** delay in ms */\n+ cb: string...
2025-07-26T08:43:05
vuejs/vue
c2e6bf863756828fd1437eca299bb1e6b8fb6d91
6541e68aaa9fefbad0d3d96c02b5097749dc89a4
Fix links to docs in Readme (#3858) * Fix links to docs in Readme Fix #3857 * Rename reactivity system link to docs in readme
[ { "path": "README.md", "patch": "@@ -58,8 +58,8 @@ Vue.js is an MIT-licensed open source project. Its ongoing development is made p\n \n Vue.js is a library for building interactive web interfaces. It provides data-reactive components with a simple and flexible API. Core features include:\n \n-- [Dead simpl...
2016-10-05T20:04:32
mrdoob/three.js
e388fc42cddbd1ee42976ac845f9e1cc0590b48f
dbc6729500a43c2b5cf165f8fa10d84c1a64aecf
WebGLRenderer: Fix WebXR depth sensing. (#28530) * webxr depth sensing fixes * address review comment
[ { "path": "examples/webxr_xr_ballshooter.html", "patch": "@@ -81,7 +81,10 @@\n \t\t\t\tcontrols.target.y = 1.6;\n \t\t\t\tcontrols.update();\n \n-\t\t\t\tdocument.body.appendChild( XRButton.createButton( renderer, { 'optionalFeatures': [ 'depth-sensing'] } ) );\n+\t\t\t\tdocument.body.appendChild( XRButton....
2024-05-30T19:39:37
denoland/deno
926717d3e9f4c599bbd0f92b352d22976230bf3d
c80f44b3234069326a7468f1f3ff36e07692e423
fix(lib/node): change ERR_INVALID_PACKAGE_TARGET to ERR_PACKAGE_PATH_NOT_EXPORTED when no package.json#exports condition matches (#29841)
[ { "path": "libs/node_resolver/resolution.rs", "patch": "@@ -1291,20 +1291,9 @@ impl<\n }\n }\n }\n- } else if target.is_null() {\n- return Ok(None);\n }\n \n- Err(\n- InvalidPackageTargetError {\n- pkg_json_path: package_json_path.to_path_buf(),\n- s...
2025-07-26T00:01:19
golang/go
5dcedd65504cc9cadc9a5ea8bc3af51a26eec704
d3be949ada01d7827f8edc87665fef5268634cb3
runtime: lock mheap_.speciallock when allocating synctest specials Avoid racing use of mheap_.specialBubbleAlloc. Fixes #75134 Change-Id: I0c9140c18d2bca1e1c3387cd81230f0e8c9ac23e Reviewed-on: https://go-review.googlesource.com/c/go/+/699255 Reviewed-by: Michael Knyszek <mknyszek@google.com> LUCI-TryBot-Result: Go L...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -779,6 +779,28 @@ func TestWaitGroupHeapAllocated(t *testing.T) {\n \t})\n }\n \n+// Issue #75134: Many racing bubble associations.\n+func TestWaitGroupManyBubbles(t *testing.T) {\n+\tvar wg sync.WaitGroup\n+\tfor range 100 {\n+\t\twg.Go(func(...
2025-08-26T20:26:57
vuejs/vue
c835ce57ff4e0ba3617a189bb2736599f1ffb471
e6d224c3c5ca3ff6a365326ba615d116764b68f2
Allow text nodes on static templates in components (#3826) Fix #3824
[ { "path": "src/core/instance/render.js", "patch": "@@ -117,8 +117,10 @@ export function renderMixin (Vue: Class<Component>) {\n tree = this._staticTrees[index] = this.$options.staticRenderFns[index].call(this._renderProxy)\n if (Array.isArray(tree)) {\n for (let i = 0; i < tree.length; i++) {\...
2016-10-05T19:13:14
mrdoob/three.js
71f8579e56d22d79611eed3b9950a989a9f18ed1
f52b71b60792d679fa7e89ade11648884b52de60
WebGPURenderer: fix rendering to depth textures with multiple color attachments (MRT - WGSL) (#28523) * handle mrt with depth * rename builder method --------- Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "examples/jsm/nodes/core/OutputStructNode.js", "patch": "@@ -33,11 +33,7 @@ class OutputStructNode extends Node {\n \n \tgenerate( builder, output ) {\n \n-\t\tconst nodeVar = builder.getVarFromNode( this );\n-\t\tnodeVar.isOutputStructVar = true;\n-\n-\t\tconst propertyName = builder.getPropertyN...
2024-05-30T00:01:10
golang/go
d3be949ada01d7827f8edc87665fef5268634cb3
836fa745188fddf49070d010161e30f360862e57
runtime: don't negate eventfd errno The Linux syscall package does this for us. Fixes #75337. Change-Id: I6a6a636c9bb5fe25fdc6f80dc8b538ebed60d00b Reviewed-on: https://go-review.googlesource.com/c/go/+/701796 Reviewed-by: Michael Knyszek <mknyszek@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-a...
[ { "path": "src/runtime/netpoll_epoll.go", "patch": "@@ -27,7 +27,7 @@ func netpollinit() {\n \t}\n \tefd, errno := linux.Eventfd(0, linux.EFD_CLOEXEC|linux.EFD_NONBLOCK)\n \tif errno != 0 {\n-\t\tprintln(\"runtime: eventfd failed with\", -errno)\n+\t\tprintln(\"runtime: eventfd failed with\", errno)\n \t\tt...
2025-09-09T20:47:15
vuejs/vue
1c79c56a3edc832d3b9e0bb34d31dacd9ff3390e
156cfb9892d3359d548e27abf5d8b78b421a5a92
revert npm main field (fix SSR externalization)
[ { "path": "package.json", "patch": "@@ -2,7 +2,7 @@\n \"name\": \"vue\",\n \"version\": \"2.0.0\",\n \"description\": \"Reactive, component-oriented view layer for modern web interfaces.\",\n- \"main\": \"dist/vue.js\",\n+ \"main\": \"dist/vue.common.js\",\n \"typings\": \"types/index.d.ts\",\n ...
2016-09-30T21:03:26
mrdoob/three.js
24a29a54fdf15486c75d5a4794216eb097481436
f06b256cdcb7510794f0812048e7fb7a3c8d8b65
WebGPURenderer: Read Only and Read/Write Storage Textures (#28455) * Sketched out API for changing storageTextureAccess on storageTextures. Still need to gain a comprehensive understanding of what texture formats are permitted to be accessed in which ways (for instance, testing revealed that rgba16floats seemingly can...
[ { "path": "examples/jsm/nodes/Nodes.js", "patch": "@@ -103,7 +103,7 @@ export { default as SceneNode, backgroundBlurriness, backgroundIntensity } from\n export { default as StorageBufferNode, storage, storageObject } from './accessors/StorageBufferNode.js';\n export * from './accessors/TangentNode.js';\n ex...
2024-05-29T17:02:37
denoland/deno
3d6fb38bb05e288c3ae206947c22d7c2c13490f8
50a78300764ee4954090ca347e4bc66eb309fea1
fix(regression): do not error when specifying `--config` flag with `../` component (#30208)
[ { "path": "cli/factory.rs", "patch": "@@ -1211,9 +1211,9 @@ fn new_workspace_factory_options(\n ConfigDiscoveryOption::Disabled\n }\n }\n- ConfigFlag::Path(path) => {\n- ConfigDiscoveryOption::Path(initial_cwd.join(path))\n- }\n+ ConfigFlag::Path(path) => Config...
2025-07-25T19:37:33
mrdoob/three.js
936402ce754a79cf379e5ae1910618212463116e
9d6f51c7f0614210a1e1cd04a62c395ca965dcd4
Editor: Updated ffmpeg to 0.11.6 0.12.* seems to have issues on localhost (DOMException: Failed to construct 'Worker')
[ { "path": "editor/index.html", "patch": "@@ -23,7 +23,7 @@\n \t\t<script src=\"js/libs/esprima.js\"></script>\n \t\t<script src=\"js/libs/jsonlint.js\"></script>\n \n-\t\t<script src=\"https://cdn.jsdelivr.net/npm/@ffmpeg/ffmpeg@0.10.1/dist/ffmpeg.min.js\"></script>\n+\t\t<script src=\"https://cdn.jsdelivr....
2024-05-28T06:33:08
golang/go
836fa745188fddf49070d010161e30f360862e57
ce391744828cb1e0dbd44ffb2622521a15db5b5d
syscall: optimise cgo clearenv For programs with very large environments, calling unsetenv(3) for each environment variable can be very expensive because of CGo overhead, but clearenv(3) is much faster. The only thing we have to track is whether GODEBUG is being unset by the operation, which can be done very quickly w...
[ { "path": "src/runtime/cgo/clearenv.go", "patch": "@@ -0,0 +1,15 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+//go:build linux\n+\n+package cgo\n+\n+import _ \"unsafe\" // for go:l...
2025-09-09T12:18:49
vuejs/vue
8ef603b7c3a11a823f148aa2d86a4d243c35927d
51aa3e594ac0e194b8a0daa3b91a685287b27b07
test <template> key warning, fix coverage
[ { "path": "test/unit/modules/compiler/parser.spec.js", "patch": "@@ -120,6 +120,11 @@ describe('parser', () => {\n expect('Cannot use v-for on stateful component root element').toHaveBeenWarned()\n })\n \n+ it('warn <template> key', () => {\n+ parse('<div><template v-for=\"i in 10\" :key=\"i\"></t...
2016-09-30T18:18:47
denoland/deno
50a78300764ee4954090ca347e4bc66eb309fea1
0b441daa8d6ac0e8ce02ee35cb07973e98714b5c
fix(ext/node): fix segmentation fault when spkac is empty (#30207)
[ { "path": "libs/crypto/spki.rs", "patch": "@@ -17,6 +17,10 @@ impl NetscapeSpki {\n .rposition(|&b| !b\" \\n\\r\\t\".contains(&b))\n .map_or(0, |i| i + 1);\n \n+ if end == 0 {\n+ return Err(\"Invalid SPKI data: no base64 content found\");\n+ }\n+\n // SAFETY: Cast data pointer to ...
2025-07-25T18:52:20
mrdoob/three.js
e811420109551a424fb7d351ac95b7336c93dcf9
66e1aa2abfb1b6b7c8c047691130a0ab19fee311
TSL: UVNode - Move to TSL approach (#28511) * Normal/Tangent/Bitangent revisions * UVNode: Move to TSL approach * fix type
[ { "path": "examples/jsm/nodes/Nodes.js", "patch": "@@ -105,7 +105,7 @@ export * from './accessors/TangentNode.js';\n export { default as TextureNode, texture, textureLoad, /*textureLevel,*/ sampler } from './accessors/TextureNode.js';\n export { default as TextureStoreNode, textureStore } from './accessors/...
2024-05-28T03:05:46
golang/go
ce391744828cb1e0dbd44ffb2622521a15db5b5d
5d9d0513dcb96409a2625c51431c584c0a12f212
crypto/rsa: check PrivateKey.D for consistency with Dp and Dq This unfortunately nearly doubles the runtime of NewPrivateKeyWithPrecomputation. It would be nice to find an alternative way to check it. fips140: off goos: darwin goarch: arm64 pkg: crypto/rsa cpu: Apple M2 │ 6aeb841faf │ ...
[ { "path": "doc/next/6-stdlib/99-minor/crypto/rsa/74115.md", "patch": "@@ -1,2 +1,5 @@\n If [PrivateKey] fields are modified after calling [PrivateKey.Precompute],\n [PrivateKey.Validate] now fails.\n+\n+[PrivateKey.D] is now checked for consistency with precomputed values, even if\n+it is not used.", "a...
2025-07-11T12:28:30
vuejs/vue
99ea0f8229f108baa54f8791758315e2eda4f779
b8369e802b120e450f56e4c5ff8e3435a9165c64
adjust named slot resolve check (fix #3819)
[ { "path": "flow/component.js", "patch": "@@ -52,7 +52,7 @@ declare interface Component {\n _isVue: true;\n _self: Component;\n _renderProxy: Component;\n- _renderParent: ?Component;\n+ _renderContext: ?Component;\n _watcher: Watcher;\n _watchers: Array<Watcher>;\n _data: Object;", "additio...
2016-09-30T18:15:10
mrdoob/three.js
4c6d0c47a7062620a840d0c30c4e5da939659bd0
7a3cdca330e4e55fd4b1b3482cf02cbdc34275a7
WebGPURenderer: `MeshPhysicalNodeMaterial` - Fix `clearcoatRoughness` (#28507) * MeshPhysicalNodeMaterial: Fix clearcoatRoughness * update screenshot
[ { "path": "examples/jsm/nodes/functions/PhysicalLightingModel.js", "patch": "@@ -331,7 +331,7 @@ const IBLSheenBRDF = tslFn( ( { normal, viewDir, roughness } ) => {\n } );\n \n const clearcoatF0 = vec3( 0.04 );\n-const clearcoatF90 = vec3( 1 );\n+const clearcoatF90 = float( 1 );\n \n //\n ", "additions"...
2024-05-28T01:18:54
golang/go
968a5107a938f9cb20413ad455986a61553c075b
645ee444929ecb7bbfb95cc8bda193e4b3cb3c43
crypto/internal/fips140: update frozen module version to "v1.0.0" We are re-sealing the .zip file anyway for another reason, might as well take the opportunity to fix the "v1.0" mistake. Change-Id: I6a6a69646b3188984c865031ff9393ccaaaa9479 Reviewed-on: https://go-review.googlesource.com/c/go/+/701518 Reviewed-by: Dan...
[ { "path": "src/crypto/internal/cryptotest/hash.go", "patch": "@@ -20,7 +20,7 @@ type MakeHash func() hash.Hash\n // TestHash performs a set of tests on hash.Hash implementations, checking the\n // documented requirements of Write, Sum, Reset, Size, and BlockSize.\n func TestHash(t *testing.T, mh MakeHash) {...
2025-09-07T14:37:40
vuejs/vue
b8369e802b120e450f56e4c5ff8e3435a9165c64
ef6945932f1cfd5e44111a5f1d0530e37b7d2ec3
fix test template typo
[ { "path": "test/unit/features/component/component-slot.spec.js", "patch": "@@ -316,7 +316,7 @@ describe('Component slot', () => {\n // #3254\n it('should not keep slot name when passed further down', () => {\n const vm = new Vue({\n- template: '<test><span slot=\"foo\">foo<span></test>',\n+ ...
2016-09-30T17:37:53
denoland/deno
0b441daa8d6ac0e8ce02ee35cb07973e98714b5c
63e4ee54c9c5eaf025918493009818c8705617d9
fix(bundle): don't force managed npm resolution (#30200) Fixes #30187. If you're using --node-modules-dir=manual we should respect that, since resolution may not work with the managed resolver
[ { "path": "cli/factory.rs", "patch": "@@ -1227,7 +1227,6 @@ fn new_workspace_factory_options(\n | DenoSubcommand::Init(_)\n | DenoSubcommand::Outdated(_)\n | DenoSubcommand::Clean(_)\n- | DenoSubcommand::Bundle(_)\n ),\n no_lock: flags.no_lock\n || matches!(", ...
2025-07-25T16:56:32
mrdoob/three.js
b609f8a0d73af65ce843381e305e80806fc2ff45
0a03ca667a09da70fe94a69f68635cd0f94a304b
TSL: `VaryingNode` - Fix twice flow node (#28504)
[ { "path": "examples/jsm/nodes/core/VaryingNode.js", "patch": "@@ -66,13 +66,20 @@ class VaryingNode extends Node {\n \n \tgenerate( builder ) {\n \n-\t\tconst type = this.getNodeType( builder );\n+\t\tconst properties = builder.getNodeProperties( this );\n \t\tconst varying = this.setupVarying( builder );\n...
2024-05-27T19:16:31
vuejs/vue
ef6945932f1cfd5e44111a5f1d0530e37b7d2ec3
47ee6abfc6d3584a825a61deb16ad03feb6105ec
Fix $createElement and Vue.extend (#3818) * Fix $createElement and extend * Add AsyncComponent
[ { "path": "types/index.d.ts", "patch": "@@ -6,6 +6,8 @@ import * as VNode from \"./vnode\";\n // `Vue` in `export = Vue` must be a namespace\n // All available types are exported via this namespace\n declare namespace Vue {\n+ export type Component = Options.Component;\n+ export type AsyncComponent = Opti...
2016-09-30T17:57:38
golang/go
a67977da5e26e0c328488fe05bdd200903e58e99
a5fa5ea51cd8fd9bcb8230d2accf9d55826f76b3
cmd/compile/internal/inline: ignore superfluous slicing When slicing, ignore expressions which could be elided, as in slicing starting at 0 or ending at len(v). Fixes #75278 Change-Id: I9c18e29c3d4da9bef89bd25bb261d3cb60e66392 Reviewed-on: https://go-review.googlesource.com/c/go/+/701216 LUCI-TryBot-Result: Go LUCI ...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -738,6 +738,17 @@ opSwitch:\n \t\tif n.X.Op() == ir.OINDEX && isIndexingCoverageCounter(n.X) {\n \t\t\treturn false\n \t\t}\n+\n+\tcase ir.OSLICE, ir.OSLICEARR, ir.OSLICESTR, ir.OSLICE3, ir.OSLICE3ARR:\n+\t\tn := n.(*ir.SliceExpr)\n+\n+\t\t// ...
2025-09-06T01:13:03
denoland/deno
63e4ee54c9c5eaf025918493009818c8705617d9
3c1f0f28066263e9322433a99ccf883add7f0bca
fix: support package.json imports in a Deno workspace (#30198)
[ { "path": "cli/args/mod.rs", "patch": "@@ -452,6 +452,18 @@ impl WorkspaceMainModuleResolver {\n }\n }\n }\n+ deno_resolver::workspace::MappedResolution::PackageJsonImport {\n+ pkg_json,\n+ } => self\n+ .node_resolver\n+ .resolve_package_import(\n+ ...
2025-07-25T12:21:09
mrdoob/three.js
23e68107bc64c6ee0dd39fc2d6839b4df94f8738
d29a6ac4ac809c9255405333c55a70fa6dcfec08
TSL: Fix Math/Operators fail generate cache with same node (#28502)
[ { "path": "examples/jsm/nodes/core/Node.js", "patch": "@@ -199,9 +199,11 @@ class Node extends EventDispatcher {\n \n \t\tconst nodeProperties = builder.getNodeProperties( this );\n \n+\t\tlet index = 0;\n+\n \t\tfor ( const childNode of this.getChildren() ) {\n \n-\t\t\tnodeProperties[ '_node' + childNode....
2024-05-27T18:26:54
vuejs/vue
47ee6abfc6d3584a825a61deb16ad03feb6105ec
6d4bdb5ff196c3c67786f78b8ed7a0abd56eb310
remove codegen v-for truthiness check (fix #3817)
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -89,7 +89,7 @@ function genFor (el: any): string {\n const iterator1 = el.iterator1 ? `,${el.iterator1}` : ''\n const iterator2 = el.iterator2 ? `,${el.iterator2}` : ''\n el.forProcessed = true // avoid recursion\n- return `(${exp})&&_l((${exp})...
2016-09-30T02:05:39
golang/go
a5fa5ea51cd8fd9bcb8230d2accf9d55826f76b3
4c63d798cb947a3cdd5a5b68f254a73d83eb288f
cmd/compile/internal/ssa: expand runtime.memequal for length {3,5,6,7} This CL slightly speeds up strings.HasPrefix when testing constant prefixes of length {3,5,6,7}. goos: linux goarch: amd64 cpu: Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz │ old │ new │ ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -2084,7 +2084,7 @@\n (NilCheck ptr:(NilCheck _ _) _ ) => ptr\n \n // for late-expanded calls, recognize memequal applied to a single constant byte\n-// Support is limited by 1, 2, 4, 8 byte sizes\n+// Support is limited by [1-8] byte ...
2025-09-04T01:08:14
denoland/deno
3c1f0f28066263e9322433a99ccf883add7f0bca
d66b1cb89bf02dd25f0e50089ed7910b7e4a3b2d
docs: Fix broken Getting Started link in CONTRIBUTING.md (#30194) Signed-off-by: Lucas Vieira <vieiralucas4@gmail.com>
[ { "path": ".github/CONTRIBUTING.md", "patch": "@@ -80,7 +80,7 @@ In addition to the above make sure that:\n \n Below are instructions on how to build Deno from source. If you just want to use\n Deno you can download a prebuilt executable (more information in the\n-[`Getting Started`](/runtime/getting_starte...
2025-07-25T09:44:49
vuejs/vue
6d4bdb5ff196c3c67786f78b8ed7a0abd56eb310
82983231084d8649efd0eef9d613aa3e36f912da
fix style binding for falsy numbers (fix #3816)
[ { "path": "src/platforms/web/runtime/modules/style.js", "patch": "@@ -57,7 +57,7 @@ function updateStyle (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n cur = style[name]\n if (cur !== oldStyle[name]) {\n // ie9 setting to null has no effect, must use empty string\n- el.style[normaliz...
2016-09-29T21:51:00
mrdoob/three.js
f75fb41bb09d0abb9d440e83cde3c256ef292e4e
2ffcccad017b9d3f9b376534a2425a49f7e728be
Editor: Fixed bouncy view in sidebar caused by `scrollIntoView()` (#28485) * use scrollTo, not scrollIntoView * cleanup
[ { "path": "editor/js/Sidebar.Properties.js", "patch": "@@ -49,17 +49,14 @@ function SidebarProperties( editor ) {\n \t\tif ( container.selected === 'geometryTab' ) {\n \n \t\t\tcontainer.select( geometryTab.isHidden() ? 'objectTab' : 'geometryTab' );\n-\t\t\tgeometryTab.dom.scrollIntoView( { inline: 'center...
2024-05-27T05:24:06
denoland/deno
990dbc6e4e7ef60157aee65ec8c68c126bbcf984
0f0c678715e1af98106839ca2f1bb8963318eab5
Revert "fix(unstable): always require --allow-read permissions for raw imports (#30184)" (#30196)
[ { "path": "cli/factory.rs", "patch": "@@ -879,11 +879,7 @@ impl CliFactory {\n &self.cli_options()?.permissions_options(),\n )?;\n \n- Ok(PermissionsContainer::new(\n- desc_parser,\n- Some(Arc::new(self.in_npm_pkg_checker()?.clone())),\n- permissions,\n- ...
2025-07-24T22:38:04
golang/go
4c63d798cb947a3cdd5a5b68f254a73d83eb288f
bdd51e785580ce86142e662425982a2673e7c9c6
cmd/compile: improve stp merging for non-sequent cases Original algorithm merges stores with the first mergeable store in the chain, but it misses some cases. Additional reordering stores in increasing order of memory access in the chain allows merging in these cases. Fixes #71987 There are the results of sweet benc...
[ { "path": "src/cmd/compile/internal/ssa/pair.go", "patch": "@@ -212,6 +212,12 @@ func pairStores(f *Func) {\n \tlast := f.Cache.allocBoolSlice(f.NumValues())\n \tdefer f.Cache.freeBoolSlice(last)\n \n+\ttype stChainElem struct {\n+\t\tv *Value\n+\t\ti int // Index in chain (0 == last store)\n+\t}\n+\tvar or...
2025-08-21T15:00:57
vuejs/vue
f1e37f6002712465e7d67a7e9f84b2c9900b896c
b5595476f12b778ee0989d008bc5cec62011cef8
do not add list key to text nodes (fix #3810)
[ { "path": "src/core/vdom/helpers.js", "patch": "@@ -35,7 +35,7 @@ export function normalizeChildren (\n applyNS(c, ns)\n }\n // default key for nested array children (likely generated by v-for)\n- if (c.key == null && nestedIndex != null) {\n+ if (c.tag && c...
2016-09-29T16:52:05
mrdoob/three.js
3b639a0cc9aadc2a0da34a1aaf278d9ea4cd6bf5
6557739eadb843648f1d04e21e7c681764b2eba4
fix webgpu custom blending and align with webgl (#28490)
[ { "path": "examples/jsm/renderers/webgpu/utils/WebGPUPipelineUtils.js", "patch": "@@ -225,17 +225,21 @@ class WebGPUPipelineUtils {\n \t\tlet color, alpha;\n \n \t\tconst blending = material.blending;\n+\t\tconst blendSrc = material.blendSrc;\n+\t\tconst blendDst = material.blendDst;\n+\t\tconst blendEquati...
2024-05-26T07:15:43
denoland/deno
0f0c678715e1af98106839ca2f1bb8963318eab5
4850b3ba9154ec0cae60d58681d297367cbaca6c
fix(compile): do not include managed npm deps when graph does not have any npm pkgs (#30189) Closes https://github.com/denoland/deno/issues/30177 (along with https://github.com/denoland/deno/pull/30188)
[ { "path": "cli/standalone/binary.rs", "patch": "@@ -392,14 +392,18 @@ impl<'a> DenoCompileBinaryWriter<'a> {\n }\n let npm_snapshot = match &self.npm_resolver {\n CliNpmResolver::Managed(managed) => {\n- let snapshot = managed\n- .resolution()\n- .serialized_valid_snap...
2025-07-24T20:11:57
golang/go
3b3b16957cd466baef3af92383de324230ad993c
e3223518b860132e3711602485922a8fa3805224
Revert "cmd/go: use os.Rename to move files on Windows" This reverts CL 691255. Reason for revert: SetNamedSecurityInfo sometimes fails when the path contains symbolic links. Fixes #74864 Change-Id: Iaf1a5692b35d58c523fd513f27bad9a2e7a334cb Reviewed-on: https://go-review.googlesource.com/c/go/+/702155 LUCI-TryBot-R...
[ { "path": "src/cmd/go/internal/work/shell.go", "patch": "@@ -132,11 +132,47 @@ func (sh *Shell) moveOrCopyFile(dst, src string, perm fs.FileMode, force bool) e\n \t\treturn sh.CopyFile(dst, src, perm, force)\n \t}\n \n-\tif err := sh.move(src, dst, perm); err == nil {\n-\t\tif cfg.BuildX {\n-\t\t\tsh.ShowCm...
2025-09-09T16:02:28
vuejs/vue
e29b711cb522b614fea3992697114f1b9e5dc690
e468ba078ebeb1870e1a477b7d5be6473d2dfc9f
fix reference to backers.md (#3808)
[ { "path": "README.md", "patch": "@@ -12,7 +12,7 @@\n \n ## Supporting Vue.js\n \n-Vue.js is an MIT-licensed open source project. Its ongoing development is made possible thanks to the support by these awesome [backers](https://github.com/vuejs/vue/blob/dev/backers.md). If you'd like to join them, check out ...
2016-09-29T08:19:42
mrdoob/three.js
629f8a068d006c84835a54583e4ac2d32ba64e1f
bd1103168c4dad8934645a7ab38f509f1b890e58
WebGLRenderer: Remove deprecated WebGLRenderer.useLegacyLights (#28482) * remove legacy lights support * fix example --------- Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "examples/jsm/environments/RoomEnvironment.js", "patch": "@@ -24,11 +24,7 @@ class RoomEnvironment extends Scene {\n \t\tconst roomMaterial = new MeshStandardMaterial( { side: BackSide } );\n \t\tconst boxMaterial = new MeshStandardMaterial();\n \n-\t\tlet intensity = 5;\n-\n-\t\tif ( renderer !==...
2024-05-24T09:22:37
denoland/deno
4850b3ba9154ec0cae60d58681d297367cbaca6c
3a5ba56801dfbe3508212903429c44071d1d3f15
fix(compile): do not error including npm packages that don't match current system (#30188) Part of https://github.com/denoland/deno/issues/30177
[ { "path": "cli/standalone/binary.rs", "patch": "@@ -867,10 +867,21 @@ impl<'a> DenoCompileBinaryWriter<'a> {\n .resolution()\n .all_system_packages(&self.npm_system_info);\n packages.sort_by(|a, b| a.id.cmp(&b.id)); // determinism\n+ let current_system = NpmSystemI...
2025-07-24T20:11:43
golang/go
af03343f934b50f64389aa4222a2a111a125f69f
6447ff409ac7e2a621bc8ca5c44b2eaed751fbaa
cmd/compile: fix bounds check report For constant-index, variable length situations. Inadvertant shadowing of the yVal variable. Oops. Fixes #75327 Change-Id: I3403066fc39b7664222a3098cf0f22b5761ea66a Reviewed-on: https://go-review.googlesource.com/c/go/+/702015 Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -1306,7 +1306,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\t\t}\n \t\tcase ssa.OpAMD64LoweredPanicBoundsCR:\n \t\t\tyIsReg = true\n-\t\t\tyVal := int(v.Args[0].Reg() - x86.REG_AX)\n+\t\t\tyVal = int(v.Args[0].Reg() - x86.REG_AX)\...
2025-09-09T05:04:40
vuejs/vue
e468ba078ebeb1870e1a477b7d5be6473d2dfc9f
f7e878c808ae69ed3d9b84f72eb21d59a8baa1be
fix coverage
[ { "path": "src/core/util/env.js", "patch": "@@ -61,9 +61,13 @@ export const nextTick = (function () {\n // \"force\" the microtask queue to be flushed by adding an empty timer.\n if (isIOS) setTimeout(noop)\n }\n- } else if (typeof MutationObserver !== 'undefined' && isNative(MutationObserv...
2016-09-29T00:58:16
mrdoob/three.js
9e0001029fe69277221d4758a49a13bcee554bd5
66afee927b89e6a90b0e2a1575599258f19223b8
#28440 Fixed BufferGeometryUtils.mergeVertices to handle morphAttributes (#28441) * #28440 Fixed BufferGeometryUtils.mergeVertices to handle morphAttributes * #28440 updated unit test location for mergeVertices * #28440 removed empty line * renamed morphAttributes local variable
[ { "path": "examples/jsm/utils/BufferGeometryUtils.js", "patch": "@@ -623,20 +623,22 @@ function mergeVertices( geometry, tolerance = 1e-4 ) {\n \t\tconst name = attributeNames[ i ];\n \t\tconst attr = geometry.attributes[ name ];\n \n-\t\ttmpAttributes[ name ] = new BufferAttribute(\n+\t\ttmpAttributes[ nam...
2024-05-24T09:08:51
denoland/deno
3a5ba56801dfbe3508212903429c44071d1d3f15
1b755d5948ccbc478f3733722371152aa1c1036d
fix: tunnels in processes that don't listen (#30178) fix issue with tunneling vite, which spawns subprocesses, where the subprocess runs a server.
[ { "path": "Cargo.lock", "patch": "@@ -2982,16 +2982,17 @@ dependencies = [\n \n [[package]]\n name = \"deno_tunnel\"\n-version = \"0.5.0\"\n+version = \"0.7.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"5c497155b96f1e19ada7500c51b27d327036a1e8b12cf29416b6fe9f1ed5dbb...
2025-07-24T16:09:27
golang/go
b915e14490e1c3ac5a84c274bfab647e1cb105a7
06e791c0cdef1a0d35ed553875c51c85716b0f57
cmd/compile: consolidate logic for rewriting fixed loads Many CLs have worked with this bit of code, extending the cases more and more for various fixed addresses and constants. But, I find that it's getting duplicitive, and I don't find the current setup very clear that something like isFixed32 _only_ works for a spe...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -2757,37 +2757,15 @@\n (RotateLeft(64|32|16|8) (RotateLeft(64|32|16|8) x c) d) && c.Type.Size() == 2 && d.Type.Size() == 2 => (RotateLeft(64|32|16|8) x (Add16 <c.Type> c d))\n (RotateLeft(64|32|16|8) (RotateLeft(64|32|16|8) x c) d) &&...
2025-09-05T20:08:21
vuejs/vue
790c99cdb488883142d86122e006154882d3a30a
aefb34812ecfc54d231ca32e8bfddbb7377535d3
fix IE/Edge select remembering selection (#3803) * fix IE/Edge select remembering selection * Use const over let
[ { "path": "src/platforms/web/runtime/directives/model.js", "patch": "@@ -35,9 +35,11 @@ export default {\n setSelected(el, binding, vnode.context)\n /* istanbul ignore if */\n if (isIE || isEdge) {\n- nextTick(() => {\n+ const cb = () => {\n setSelected(el, binding,...
2016-09-28T19:32:59
mrdoob/three.js
610cf0bbb6835e4240b30d40b60e92dba5298330
b846f12132b722420c13bb2ff88004a35371e945
Editor: Fixed sidebar glitch via h scrollable (#28467) * tabs with hscroll * simplify * cleanup * polish * hover on tabs not scrollbar * thin
[ { "path": "editor/css/main.css", "patch": "@@ -76,17 +76,38 @@ textarea, input { outline: none; } /* osx */\n \n .TabbedPanel .Tabs {\n \tposition: relative;\n+\tz-index: 1; /** Above .Panels **/\n \tdisplay: block;\n \twidth: 100%;\n+\twhite-space: pre;\n+\toverflow: hidden;\n+\toverflow-x: auto;\n }\n \n+...
2024-05-24T06:20:23
denoland/deno
147bbcf8dd7075dd98e47fd123f5600f65e969c5
9dbf414813254cb7b8106a938a56abfd7ef5785b
fix(unstable): always require --allow-read permissions for raw imports (#30184)
[ { "path": "cli/factory.rs", "patch": "@@ -878,7 +878,12 @@ impl CliFactory {\n desc_parser.as_ref(),\n &self.cli_options()?.permissions_options(),\n )?;\n- Ok(PermissionsContainer::new(desc_parser, permissions))\n+\n+ Ok(PermissionsContainer::new(\n+ desc_p...
2025-07-24T12:26:36
golang/go
cf42b785b701e48260e1b4785e270fe81e2e1bb2
5e6296f3f8a5fd8c07a0602435eae681002e09ad
cmd/cgo: run recordTypes for each of the debugs at the end of Translate Save the debug information in a slice and then process all of them at the end of the loop. For #75167 Change-Id: I6a6a6964dffa784b0aa776334562333ecf247023 Reviewed-on: https://go-review.googlesource.com/c/go/+/699019 LUCI-TryBot-Result: Go LUCI ...
[ { "path": "src/cmd/cgo/gcc.go", "patch": "@@ -192,9 +192,7 @@ func (p *Package) Translate(f *File) {\n \t\tcref.Name.C = cname(cref.Name.Go)\n \t}\n \n-\tvar conv typeConv\n-\tconv.Init(p.PtrSize, p.IntSize)\n-\n+\tvar debugs []*debug // debug data from iterations of gccDebug\n \tft := fileTypedefs{typedefs...
2025-08-25T21:16:05
mrdoob/three.js
82b78e710c3b507f90e63ebf0527299187d87f25
2f55b3553be988ca7666896e300557957b534a45
WebGPURenderer: RenderBundle (#28347) * wip * add demo * add gpu metrics * fix bundeType condition * cleanup * refactor and cleanup * support postprocess and multisample * update * cache and pbr on bundle example * wip static mode * update * update * revert shared * ci * circu...
[ { "path": "examples/files.json", "patch": "@@ -386,7 +386,8 @@\n \t\t\"webgpu_instancing_morph\",\n \t\t\"webgpu_texturegrad\",\n \t\t\"webgpu_volume_cloud\",\n-\t\t\"webgpu_volume_perlin\"\n+\t\t\"webgpu_volume_perlin\",\n+\t\t\"webgpu_renderbundle\"\n \t],\n \t\"webaudio\": [\n \t\t\"webaudio_orientation\...
2024-05-23T23:32:38
vuejs/vue
467572830f2df938796fd94300c590765963c1cc
313ad8f87bda5d0d120547f86ceb4995272f988e
fix coverage
[ { "path": "src/core/util/env.js", "patch": "@@ -21,6 +21,7 @@ export const isIOS = UA && /iphone|ipad|ipod|ios/.test(UA)\n // detect devtools\n export const devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__\n \n+/* istanbul ignore next */\n function isNative (Ctor: Function): boolean {\n return ...
2016-09-27T02:56:08
golang/go
5e6296f3f8a5fd8c07a0602435eae681002e09ad
ea00650784bc2909580c7decf729f668349aa939
archive/tar: optimize nanosecond parsing in parsePAXTime Modified parsePAXTime to use a byte array for nanosecond parsing, providing a more straightforward implementation with better performance when handling decimal fraction part. Here are benchmark results: goos: darwin goarch: amd64 pkg: archive/tar cpu: Intel(R) C...
[ { "path": "src/archive/tar/strconv.go", "patch": "@@ -213,15 +213,17 @@ func parsePAXTime(s string) (time.Time, error) {\n \t}\n \n \t// Parse the nanoseconds.\n-\tif strings.Trim(sn, \"0123456789\") != \"\" {\n-\t\treturn time.Time{}, ErrHeader\n-\t}\n-\tif len(sn) < maxNanoSecondDigits {\n-\t\tsn += strin...
2025-09-08T16:19:34
denoland/deno
9dbf414813254cb7b8106a938a56abfd7ef5785b
3643a4d96526785655315c5665d03698ca87cb4d
fix(check): ensure module not found errors are surfaced (#30181) Closes https://github.com/denoland/deno/issues/30116
[ { "path": "Cargo.lock", "patch": "@@ -1956,9 +1956,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_doc\"\n-version = \"0.179.0\"\n+version = \"0.180.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"15013f500ab72ef8512a5d86eb62253707daad4206fcb958dfa4e4f952f199e0...
2025-07-23T21:57:08
mrdoob/three.js
b4ac236fa8dd322dd3030aac20970268cb01c51c
6c8b877c0dd161388a30f0418eea26709244476b
Editor: Added translation for script title (#28471) * adds translation for script title * fix shaders title in fr
[ { "path": "editor/js/Script.js", "patch": "@@ -6,6 +6,7 @@ import { SetMaterialValueCommand } from './commands/SetMaterialValueCommand.js';\n function Script( editor ) {\n \n \tconst signals = editor.signals;\n+\tconst strings = editor.strings;\n \n \tconst container = new UIPanel();\n \tcontainer.setId( 's...
2024-05-23T14:16:31
vuejs/vue
313ad8f87bda5d0d120547f86ceb4995272f988e
43b489b11f81956fc832ddee4121cfd59287cc39
fix flow lifecycle method name [Vue@2.x] (#3762) fix lifecycle method name `init` to `beforeCreate`
[ { "path": "flow/options.js", "patch": "@@ -34,7 +34,7 @@ declare type ComponentOptions = {\n render: () => VNode;\n staticRenderFns?: Array<() => VNode>;\n // lifecycle\n- init?: Function;\n+ beforeCreate?: Function;\n created?: Function;\n beforeMount?: Function;\n mounted?: Function;", "...
2016-09-27T02:54:57
golang/go
ea00650784bc2909580c7decf729f668349aa939
4cc7cc74c3d8fe7aba458824b0fce6e72ceee048
debug/pe: permit symbols with no name They are reportedly generated by llvm-mingw clang21. Fixes #75219 Change-Id: I7fa7e13039bc7eee826cc19826985ca0e357a9ff Reviewed-on: https://go-review.googlesource.com/c/go/+/700137 Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Michael Pratt <mpratt@google.com> LUCI-...
[ { "path": "src/debug/pe/symbol.go", "patch": "@@ -98,7 +98,12 @@ func readCOFFSymbols(fh *FileHeader, r io.ReadSeeker) ([]COFFSymbol, error) {\n // isSymNameOffset checks symbol name if it is encoded as offset into string table.\n func isSymNameOffset(name [8]byte) (bool, uint32) {\n \tif name[0] == 0 && na...
2025-09-01T16:18:08
mrdoob/three.js
bb47c32c89184671b6a87c217309b6d4c44e6d8b
496acf988a7a7694d2215d1fc858e081247f9135
DepthTexture: Update depth + stencil textures to work with multi sample RTT, make formats consistent (#28460) * update rendertarget setup logic * rearrange * simplification * More variable sharing * More simplification * Support other depth attachment types * Updates * fix internal depth buffer ta...
[ { "path": "docs/api/en/textures/DepthTexture.html", "patch": "@@ -33,10 +33,7 @@ <h3>\n \n \t\t\t[page:Number height] -- height of the texture.<br />\n \n-\t\t\t[page:Constant type] -- Default is [page:Textures THREE.UnsignedIntType]\n-\t\t\twhen using [page:Textures DepthFormat] and [page:Textures THREE.Un...
2024-05-22T13:53:40
denoland/deno
3643a4d96526785655315c5665d03698ca87cb4d
84136f41bd7559be06e6d391fc9852d12810d8d6
fix(ext/node): implement tls.checkServerIdentitiy (#30148) Depends on https://github.com/denoland/deno/pull/30146
[ { "path": "ext/node/lib.rs", "patch": "@@ -469,6 +469,7 @@ deno_core::extension!(deno_node,\n ops::process::op_process_abort,\n ops::tls::op_get_root_certificates,\n ops::tls::op_tls_peer_certificate,\n+ ops::tls::op_tls_canonicalize_ipv4_address,\n ops::inspector::op_inspector_open<P>,\n...
2025-07-23T11:08:15
vuejs/vue
43b489b11f81956fc832ddee4121cfd59287cc39
08f2b97083d32b8c3fe035d770dddfc19de49a7e
revert nextTick to microtask semantics by using Promise.then (fix #3771)
[ { "path": "src/core/util/env.js", "patch": "@@ -1,4 +1,7 @@\n /* @flow */\n+/* globals MutationObserver */\n+\n+import { noop } from 'shared/util'\n \n // can we use __proto__?\n export const hasProto = '__proto__' in {}\n@@ -13,61 +16,84 @@ export const isIE = UA && /msie|trident/.test(UA)\n export const i...
2016-09-27T02:38:43
golang/go
ff45d5d53cd942cfeab6c47b8414502e6dce4870
861c90c907db1129dcd1540eecd3c66b6309db7a
encoding/json/internal/jsonflags: fix comment with wrong field name Flags struct has field Values but in the comments use Value. Fix it to correct name Values. Change-Id: Ib47e62538599a788c69fda27a7e2a97b8cf73263 Reviewed-on: https://go-review.googlesource.com/c/go/+/701415 Reviewed-by: Joseph Tsai <joetsai@digital-s...
[ { "path": "src/encoding/json/internal/jsonflags/flags.go", "patch": "@@ -169,8 +169,8 @@ func (dst *Flags) Join(src Flags) {\n \t// Copy over all source presence bits over to the destination (using OR),\n \t// then invert the source presence bits to clear out source value (using AND-NOT),\n \t// then copy o...
2025-09-06T14:51:37
mrdoob/three.js
02ed248659a4787aaae25cd18e246e02baa9b47c
687a4caf8c5d633df691a90369c9c185a4acb0fc
BatchedMesh: Add support for Instanced rendering with sorting, frustum culling (#28404) * Get the instanced batching working * re add color support * fix extension use * update function name * small fixes * fix array initialization * fix raycast * missed variable usage * Add logic for the batch...
[ { "path": "examples/webgl_mesh_batch.html", "patch": "@@ -179,8 +179,8 @@\n \t\tfunction initBatchedMesh() {\n \n \t\t\tconst geometryCount = api.count;\n-\t\t\tconst vertexCount = api.count * 512;\n-\t\t\tconst indexCount = api.count * 1024;\n+\t\t\tconst vertexCount = geometries.length * 512;\n+\t\t\tcons...
2024-05-22T09:13:22
denoland/deno
84136f41bd7559be06e6d391fc9852d12810d8d6
b40a37b3d1632d73cd9ec9a01e755c38bf8cf42f
fix(ext/node): implement TLSSocket.getPeerCertificate (#30146) Fixes https://github.com/denoland/deno/issues/22181 Depends on https://github.com/denoland/rustls-tokio-stream/pull/46 ``` # google.com [Object: null prototype] { ca: false, raw: Uint8Array(3634) [ 48, 130, 14, 46, 48, 130, 13, 22, 160, 3...
[ { "path": "Cargo.lock", "patch": "@@ -7658,9 +7658,9 @@ dependencies = [\n \n [[package]]\n name = \"rustls-tokio-stream\"\n-version = \"0.7.0\"\n+version = \"0.8.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"8bfea10cd4c8ef885ef3bbae654045440e4d25346f00b997749a55a31...
2025-07-23T08:11:19
vuejs/vue
c791fc782616138f026e296472b0def916f68587
403f3ccb4ce5ecf920fde6b23615e11b772214b2
fix unit tests in IE9
[ { "path": "test/unit/features/component/component-keep-alive.spec.js", "patch": "@@ -1,6 +1,6 @@\n import Vue from 'vue'\n import injectStyles from '../transition/inject-styles'\n-import { isIE9 } from 'web/util/index'\n+import { isIE9 } from 'core/util/env'\n import { nextFrame } from 'web/runtime/transiti...
2016-09-23T22:16:43
mrdoob/three.js
687a4caf8c5d633df691a90369c9c185a4acb0fc
1164bf1c5029d99d48fa9002342fd7ed4122ba94
fix: Make the render background get the correct Alpha (#28459)
[ { "path": "examples/jsm/postprocessing/RenderPass.js", "patch": "@@ -42,7 +42,7 @@ class RenderPass extends Pass {\n \t\tif ( this.clearColor !== null ) {\n \n \t\t\trenderer.getClearColor( this._oldClearColor );\n-\t\t\trenderer.setClearColor( this.clearColor );\n+\t\t\trenderer.setClearColor( this.clearCo...
2024-05-22T09:07:27
denoland/deno
b40a37b3d1632d73cd9ec9a01e755c38bf8cf42f
7b154300b8926f62119a9dbd63c5079378680dff
fix: do not panic deserializing config with invalid number value (#30171)
[ { "path": "Cargo.lock", "patch": "@@ -5346,9 +5346,9 @@ dependencies = [\n \n [[package]]\n name = \"jsonc-parser\"\n-version = \"0.26.2\"\n+version = \"0.26.3\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"b558af6b49fd918e970471374e7a798b2c9bbcda624a210ffa3901ee5614bc...
2025-07-22T15:29:05
vuejs/vue
403f3ccb4ce5ecf920fde6b23615e11b772214b2
c47e128eb65648a5e67db49d99bb7436e0df59fe
set selected value on nextTick in IE/Edge (fix #3689 by @fergaldoyle)
[ { "path": "src/platforms/web/runtime/directives/model.js", "patch": "@@ -4,7 +4,7 @@\n */\n \n import { looseEqual, looseIndexOf } from 'shared/util'\n-import { warn, isAndroid, isIE9 } from 'core/util/index'\n+import { warn, nextTick, isAndroid, isIE9, isIE, isEdge } from 'core/util/index'\n \n const mode...
2016-09-23T21:54:27
mrdoob/three.js
1164bf1c5029d99d48fa9002342fd7ed4122ba94
b38ef166c7ed9efa1cac71b4fd16d0e168079ad7
WebGPURenderer: Fix shadow layers (#28451) * Fix shadow layers * cleanup
[ { "path": "examples/jsm/nodes/lighting/AnalyticLightNode.js", "patch": "@@ -182,7 +182,7 @@ class AnalyticLightNode extends LightingNode {\n \tupdateShadow( frame ) {\n \n \t\tconst { rtt, light } = this;\n-\t\tconst { renderer, scene } = frame;\n+\t\tconst { renderer, scene, camera } = frame;\n \n \t\tcons...
2024-05-22T01:42:40
denoland/deno
a8ef9e151de4aa07950c89f3550814fea9a7951a
fece050b60be934b671694abc5f4fbcb60a4007b
fix(ext/node): `fs.read` and `fs.write` promisify compatibility (#30152) Towards #29972
[ { "path": "ext/node/polyfills/_fs/_fs_read.ts", "patch": "@@ -18,6 +18,10 @@ import {\n } from \"ext:deno_node/internal/validators.mjs\";\n import { isArrayBufferView } from \"ext:deno_node/internal/util/types.ts\";\n import { op_fs_seek_async, op_fs_seek_sync } from \"ext:core/ops\";\n+import { primordials...
2025-07-22T08:56:27
vuejs/vue
037449f453d14d0133c5485cffd9403c909ce5de
9566b3358f03e563d4b397470c25553b61110b9e
ensure prop default value when instantiating without propsData (fix #3693)
[ { "path": "src/core/instance/state.js", "patch": "@@ -32,8 +32,8 @@ export function initState (vm: Component) {\n \n function initProps (vm: Component) {\n const props = vm.$options.props\n- const propsData = vm.$options.propsData\n if (props) {\n+ const propsData = vm.$options.propsData || {}\n ...
2016-09-23T20:41:54
mrdoob/three.js
b38ef166c7ed9efa1cac71b4fd16d0e168079ad7
989e89face47c891032f3355b35bcc0b8da5a2d9
WebGPURenderer: support using 3d textures in shaders with texture3d() and add VolumeNodeMaterial() and examples. (#28418) * support 3d textures * remove unused import * whitespace fixes * export texture3D * use new tsl * replacing to updateValue() --------- Co-authored-by: aardgoose <angus.sawyer@...
[ { "path": "examples/files.json", "patch": "@@ -384,7 +384,9 @@\n \t\t\"webgpu_storage_buffer\",\n \t\t\"webgpu_mesh_batch\",\n \t\t\"webgpu_instancing_morph\",\n-\t\t\"webgpu_texturegrad\"\n+\t\t\"webgpu_texturegrad\",\n+\t\t\"webgpu_volume_cloud\",\n+\t\t\"webgpu_volume_perlin\"\n \t],\n \t\"webaudio\": [\...
2024-05-21T15:57:39
denoland/deno
fece050b60be934b671694abc5f4fbcb60a4007b
a33454cbe43e87db59e5852debacd7e2de24c7e2
chore: fix flaky dynamic_npm_resolution_failure (#30165)
[ { "path": "tests/specs/npm/dynamic_npm_resolution_failure/main.out", "patch": "@@ -1,8 +1,4 @@\n-[UNORDERED_START]\n-Download http://localhost:4260/chalk\n-Download http://localhost:4260/@denotest%2fdep-cannot-parse\n-Download http://localhost:4260/chalk/chalk-5.0.1.tgz\n-[UNORDERED_END]\n+[WILDCARD]\n Hi\n...
2025-07-21T22:49:28
vuejs/vue
9566b3358f03e563d4b397470c25553b61110b9e
9fb105767200f57c9bc371b900c54c87945c2cd0
no need to return text in getValue for v-model select (fix #3729)
[ { "path": "src/platforms/web/runtime/directives/model.js", "patch": "@@ -109,7 +109,7 @@ function hasNoMatchingOption (value, options) {\n function getValue (option) {\n return '_value' in option\n ? option._value\n- : option.value || option.text\n+ : option.value\n }\n \n function onComposition...
2016-09-23T18:57:43
mrdoob/three.js
8d1ea27478d8ce86167f14349996e64e38efaf27
7a2ccef35998273f4cb99d20ffaea08c7d44ef52
Editor: Fix viewport camera resize. (#28443)
[ { "path": "editor/js/Viewport.js", "patch": "@@ -156,14 +156,24 @@ function Viewport( editor ) {\n \n \t\t\tconst camera = editor.cameras[ uuid ];\n \n+\t\t\tconst aspect = container.dom.offsetWidth / container.dom.offsetHeight;\n+\n \t\t\tif ( camera.isPerspectiveCamera ) {\n \n-\t\t\t\tcamera.aspect = con...
2024-05-20T18:13:52
golang/go
832c1f76dc665f0e211eec12dd77c17fa2ceedd7
0b323350a5a4e996e8bd3312837a8e53735107c1
[dev.simd] cmd/compile: enhance prove to deal with double-offset IsInBounds checks For chunked iterations (useful for, but not exclusive to, SIMD calculations) it is common to see the combination of ``` for ; i <= len(m)-4; i += 4 { ``` and ``` r0, r1, r2, r3 := m[i], m[i+1], m[i+2], m[i+3] `` Prove did not handle th...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2174,6 +2174,65 @@ func unsignedSubUnderflows(a, b uint64) bool {\n \treturn a < b\n }\n \n+// checkForChunkedIndexBounds looks for index expressions of the form\n+// A[i+delta] where delta < K and i <= len(A)-K. That is, this is a chunked\n+...
2025-09-03T17:09:32
denoland/deno
a33454cbe43e87db59e5852debacd7e2de24c7e2
265018784fcca7ff49ea5d88565f063255c1a156
fix(task): improve parsing of quotes in command substitution (#30162) Closes https://github.com/denoland/deno/issues/30156
[ { "path": "Cargo.lock", "patch": "@@ -2871,9 +2871,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_task_shell\"\n-version = \"0.25.1\"\n+version = \"0.25.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"38caeb310ffd21fdd263c8e9cccd590c0a6fb19d385ebc234bc95bd33cd...
2025-07-21T22:45:48
mrdoob/three.js
6208714a329119e031d298885d700f5a39041691
aa65ec20ed3403bfccc6ca6fa2469cb91181f126
WebGLRenderer: Fix incorrect background color space when setting scene.background to color (#28434) * ensure the transmission buffer is assigned a color space, render scene background color * Update screenshot * Reuse "renderBackground" flag * Update WebGLRenderer.js Clean up. --------- Co-authored-b...
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -206,6 +206,8 @@ class WebGLRenderer {\n \n \t\tconst _emptyScene = { background: null, fog: null, environment: null, overrideMaterial: null, isScene: true };\n \n+\t\tlet _renderBackground = false;\n+\n \t\tfunction getTargetPixelRatio() {\n \n \t\t\...
2024-05-20T10:10:56
vuejs/vue
9fb105767200f57c9bc371b900c54c87945c2cd0
7eb6c8cfefc5c800ed773dcb94bdbac52dfc1180
Adjust nextTick implementation MutationObserver is unreliable in UIWebView on iOS >= 9.3.3, and this hasn't been fixed in iOS10. Moreover it is tedious to identify UIWebView vs. WKWebView and native Safari now that iOS10 UIWebView supports IndexedDB as well. We are switching to a setImmediate shim using window.postMe...
[ { "path": "src/core/util/env.js", "patch": "@@ -1,6 +1,5 @@\n /* @flow */\n \n-/* global MutationObserver */\n // can we use __proto__?\n export const hasProto = '__proto__' in {}\n \n@@ -9,40 +8,24 @@ export const inBrowser =\n typeof window !== 'undefined' &&\n Object.prototype.toString.call(window) !...
2016-09-23T18:46:53
golang/go
861c90c907db1129dcd1540eecd3c66b6309db7a
57769b5532e96a8f6b705035a39ee056a22e04c3
net/http: pool transport gzip readers goos: linux goarch: amd64 pkg: net/http │ HEAD~1 │ HEAD │ │ sec/op │ sec/op vs base │ ClientGzip-8 621.0µ ± 2% 616.3µ ± 10% ~ (p=0.971 n=10) │ HEAD~1 │ HEAD ...
[ { "path": "src/net/http/serve_test.go", "patch": "@@ -12,6 +12,7 @@ import (\n \t\"compress/gzip\"\n \t\"compress/zlib\"\n \t\"context\"\n+\tcrand \"crypto/rand\"\n \t\"crypto/tls\"\n \t\"crypto/x509\"\n \t\"encoding/json\"\n@@ -5281,8 +5282,8 @@ func benchmarkClientServerParallel(b *testing.B, parallelism ...
2025-09-03T10:09:08
denoland/deno
c51b1a84e91adac7c7083b4576619406a56c3bd4
470592a54efc562dd8120e83712f2faf4d75b9e3
fix(lsp): improve renaming a file with bytes or text imports (#30142) Also actually goes to the file now when doing "go to definition" on the specifier.
[ { "path": "cli/lsp/documents.rs", "patch": "@@ -1596,32 +1596,22 @@ impl DocumentModules {\n true => ResolutionMode::Require,\n false => ResolutionMode::Import,\n };\n- if raw_specifier.starts_with(\"asset:\") {\n+ let result = if raw_specifier.starts_with(\"asset:\") {\n ...
2025-07-21T13:57:20
mrdoob/three.js
ad0e26e4ed2e6e3494ea2c6357943f62b7e73ead
114f0ad78fcc21460a0f197b26f59cfef8aeb679
FBXLoader: Fixed morph attributes to match base geometry length (#28397) * 28378 fixed morph attributes to match base geometry length * added fbx morph example * Update webgl_loader_fbx.html Remove nurbs asset since it already has its own example. * Update webgl_loader_fbx.html The Stanford bunny is alr...
[ { "path": "examples/jsm/loaders/FBXLoader.js", "patch": "@@ -2051,14 +2051,18 @@ class GeometryParser {\n \t\t\t// Triangulate n-gon using earcut\n \n \t\t\tconst vertices = [];\n-\n+\t\t\t// in morphing scenario vertexPositions represent morphPositions\n+\t\t\t// while baseVertexPositions represent the ori...
2024-05-20T07:29:51
vuejs/vue
4785afd15475d548ec529249b5c50770e74bf33c
089c1458cc8d29131b034bb97b866d73448cddd0
improve MutationObserver bug detection for iOS 10
[ { "path": "src/core/util/env.js", "patch": "@@ -16,16 +16,19 @@ export const devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__\n export const UA = inBrowser && window.navigator.userAgent.toLowerCase()\n const isIos = UA && /(iphone|ipad|ipod|ios)/i.test(UA)\n const iosVersionMatch = UA && isIos &&...
2016-09-21T04:29:53
golang/go
57769b5532e96a8f6b705035a39ee056a22e04c3
a6144613d3b601be1db6aa2fdaa79c954fdfe02c
os: reject OpenDir of a non-directory file in Plan 9 Check that the path argument to OpenDir in Plan 9 is a directory, and return error syscall.ENOTDIR if it is not. Fixes #75196 Change-Id: I3bec6b6b40a38c21264b5d22ff3e7dfbf8c1c6d7 Reviewed-on: https://go-review.googlesource.com/c/go/+/700855 Reviewed-by: Damien Nei...
[ { "path": "src/os/file_plan9.go", "patch": "@@ -135,7 +135,20 @@ func openFileNolog(name string, flag int, perm FileMode) (*File, error) {\n }\n \n func openDirNolog(name string) (*File, error) {\n-\treturn openFileNolog(name, O_RDONLY, 0)\n+\tf, e := openFileNolog(name, O_RDONLY, 0)\n+\tif e != nil {\n+\t\...
2025-09-04T10:42:56
mrdoob/three.js
114f0ad78fcc21460a0f197b26f59cfef8aeb679
6651acfd874920bd282095aeee250773d1488c15
TSL: Node - Introduce `getElementType()` (#28437) * Fix Array Element Type * revision
[ { "path": "examples/jsm/nodes/accessors/BufferNode.js", "patch": "@@ -15,6 +15,12 @@ class BufferNode extends UniformNode {\n \n \t}\n \n+\tgetElementType( builder ) {\n+\n+\t\treturn this.getNodeType( builder );\n+\n+\t}\n+\n \tgetInputType( /*builder*/ ) {\n \n \t\treturn 'buffer';", "additions": 6, ...
2024-05-20T07:24:35
denoland/deno
470592a54efc562dd8120e83712f2faf4d75b9e3
5f0a3ace4fc3e28b763299e11e4164bde3c056c4
fix(ext/node): use primordials in `ext/node/polyfills/internal_binding/_listen.ts` (#30100) Towards #24236. Replaces JS builtin `Math.clz32` with the primordial `MathClz32`.
[ { "path": "ext/node/polyfills/internal_binding/_listen.ts", "patch": "@@ -1,14 +1,14 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n+import { primordials } from \"ext:core/mod.j...
2025-07-21T11:35:42
vuejs/vue
1fe9ba61d7f0688398f445484446f48fd13c7a84
ccd8d587d67228cf9f202b231419e91a8ab106a3
fix select2 e2e test
[ { "path": "examples/select2/index.html", "patch": "@@ -55,7 +55,7 @@\n watch: {\n value: function (value) {\n // update value\n- $(this.$el).select2('val', value)\n+ $(this.$el).val(value).trigger('change')\n },\n options: function (options) {\n ...
2016-09-19T16:35:07
golang/go
d767064170aa3469404d25608d9ff9fa48962337
0b1eed09a34f5a1e0a5c237bc9771eb036b35319
cmd/compile: mark abi.PtrType.Elem sym as used CL 700336 let the compiler see into the abi.PtrType.Elem field, but forgot the MarkTypeSymUsedInInterface to ensure that the symbol is marked as referenced. I am not sure how to write a test for this, but I noticed this when working on further optimizations where I "fixe...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -2778,10 +2778,10 @@\n (Load <typ.Uintptr> (ITab (IMake (Convert (Addr {s} sb) _) _)) _) && isFixedSym(s, 0) => (Addr {fixedSym(b.Func, s, 0)} sb)\n \n // Loading constant values from abi.PtrType.Elem.\n-(Load <t> (OffPtr [off] ...
2025-09-05T19:59:33
mrdoob/three.js
016bdb5fe1cf9f99dbb1d1c6c47b4119982a8906
a49326c7f14ac961714df94a9117c04042978447
SortUtils: fix termination condition & enforce unsigned value (#28411)
[ { "path": "examples/jsm/utils/SortUtils.js", "patch": "@@ -1,6 +1,9 @@\n // Hybrid radix sort from\n // - https://gist.github.com/sciecode/93ed864dd77c5c8803c6a86698d68dab\n // - https://github.com/mrdoob/three.js/pull/27202#issuecomment-1817640271\n+//\n+// expects unsigned 32b integer values\n+\n const PO...
2024-05-19T08:31:43
denoland/deno
ca4f4b4788a896ea6a94579e5e95a7e7669498fa
3b59689df6dd1c230cb26be07c51b79e56f95042
fix(ext/node): add process._rawDebug (#30141)
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -6,6 +6,7 @@\n \n import { core, internals, primordials } from \"ext:core/mod.js\";\n import { initializeDebugEnv } from \"ext:deno_node/internal/util/debuglog.ts\";\n+import { format } from \"ext:deno_node/internal/util/inspect.mjs\";\n import {\n o...
2025-07-18T17:29:31
vuejs/vue
56960b5fbcf82d2160a7c9645ebddecc258bc0ec
d6a7568891d0c3368471322de5d730172d92b9e4
support object looseEqual in v-model (fix #3673)
[ { "path": "flow/component.js", "patch": "@@ -89,6 +89,10 @@ declare interface Component {\n _n: (value: string) => number | string;\n // empty vnode\n _e: () => VNode;\n+ // loose equal\n+ _q: (a: mixed, b: mixed) => boolean;\n+ // loose indexOf\n+ _i: (arr: Array<mixed>, val: mixed) => number;\n ...
2016-09-14T15:35:30
mrdoob/three.js
a49326c7f14ac961714df94a9117c04042978447
b3538a3e01b7f1d2b036ee6aaa74f5d18a7f5a9a
Examples: Fix argument passed to copyTextureToTexture (#28419)
[ { "path": "examples/webgpu_materials_texture_partialupdate.html", "patch": "@@ -110,7 +110,7 @@\n \n \t\t\t\t\t// perform copy from src to dest texture to a random position\n \n-\t\t\t\t\trenderer.copyTextureToTexture( dataTexture, diffuseMap, new THREE.Vector2(), position );\n+\t\t\t\t\trenderer.copyTextur...
2024-05-19T08:30:13
denoland/deno
3b59689df6dd1c230cb26be07c51b79e56f95042
61a7913a8b19d40f46cb439b1e9cf68f960c6fc0
fix(lsp): do not error for bytes or text import of json module (#30137) Closes https://github.com/denoland/deno/issues/30101
[ { "path": "cli/lsp/diagnostics.rs", "patch": "@@ -1576,7 +1576,7 @@ fn diagnose_resolution(\n if module.media_type == MediaType::Json {\n match maybe_assert_type {\n // The module has the correct assertion type, no diagnostic\n- Some(\"json\") => (),\n+ ...
2025-07-17T23:09:16
vuejs/vue
d6a7568891d0c3368471322de5d730172d92b9e4
2b588b754e5d9c2eea31c56eb735afd6ce37ec5c
improve v-bind implementation and make it work on components (fix #3670)
[ { "path": "flow/compiler.js", "patch": "@@ -50,8 +50,6 @@ declare type ASTElementHandlers = {\n [key: string]: ASTElementHandler | Array<ASTElementHandler>;\n }\n \n-declare type ASTElementHooks = { [key: string]: Array<string> }\n-\n declare type ASTDirective = {\n name: string;\n value: string;\n@@ ...
2016-09-14T14:14:14
golang/go
0b1eed09a34f5a1e0a5c237bc9771eb036b35319
f5b20689e9a055223a6dbb6b63f53648ed02cd74
vendor/golang.org/x/tools: update to a09a2fb Notably, this includes unitchecker's -fix flag. Also, fix one vet test that failed due to new diagnostic wording. Change-Id: I87751083dcd9cc4b1d8dce7d54bb796c745436d0 Reviewed-on: https://go-review.googlesource.com/c/go/+/701195 Reviewed-by: Dmitri Shuralyov <dmitshur@gol...
[ { "path": "src/cmd/go.mod", "patch": "@@ -11,7 +11,7 @@ require (\n \tgolang.org/x/sys v0.35.0\n \tgolang.org/x/telemetry v0.0.0-20250807160809-1a19826ec488\n \tgolang.org/x/term v0.34.0\n-\tgolang.org/x/tools v0.36.1-0.20250808220315-8866876b956f\n+\tgolang.org/x/tools v0.36.1-0.20250904192731-a09a2fba1c08...
2025-09-04T19:29:52
denoland/deno
61a7913a8b19d40f46cb439b1e9cf68f960c6fc0
b7680dde5ed54ef6c5891db74e196cbfec29407d
fix(task): show package name of task when --recursive (#30136)
[ { "path": "cli/tools/task.rs", "patch": "@@ -206,6 +206,7 @@ pub async fn execute_script(\n return task_runner\n .run_deno_task(\n &Url::from_directory_path(cli_options.initial_cwd()).unwrap(),\n+ None,\n \"\",\n &TaskDefinition {\n command: S...
2025-07-17T21:42:50
golang/go
459b85ccaa30bbce4c22b2779672dfe402a2b2da
87e72769fa74a2ef0bd81a3fd4febe75b8fc6731
cmd/fix: remove all functionality except for buildtag For #73605 Change-Id: I4b46b5eb72471c215f2cc208c1b0cdd1fbdbf81a Reviewed-on: https://go-review.googlesource.com/c/go/+/695855 Reviewed-by: Michael Matloob <matloob@golang.org> Reviewed-by: Michael Pratt <mpratt@google.com> Reviewed-by: Alan Donovan <adonovan@googl...
[ { "path": "src/cmd/fix/cftype.go", "patch": "@@ -6,9 +6,6 @@ package main\n \n import (\n \t\"go/ast\"\n-\t\"go/token\"\n-\t\"reflect\"\n-\t\"strings\"\n )\n \n func init() {\n@@ -18,130 +15,11 @@ func init() {\n var cftypeFix = fix{\n \tname: \"cftype\",\n \tdate: \"2017-09-27\",\n-\tf: cfty...
2025-08-13T14:33:14
denoland/deno
b7680dde5ed54ef6c5891db74e196cbfec29407d
f7dfcad2be2c1f2c5905c1794f0a33cff1125b33
fix(task): `--recursive` - order tasks by package dependencies (#30129) Closes https://github.com/denoland/deno/issues/29377
[ { "path": "cli/tools/task.rs", "patch": "@@ -99,14 +99,16 @@ pub async fn execute_script(\n let mut packages_task_info: Vec<PackageTaskInfo> = vec![];\n \n let workspace = cli_options.workspace();\n- for folder in workspace.config_folders() {\n+ for (folder_url, folder) in\n+ workspace.co...
2025-07-17T13:31:58
golang/go
9d0829963ccab19093c37f21cfc35d019addc78a
ddce0522bee36764c3b9529b8584c3d5b53c5dac
net/http: fix cookie value of "" being interpreted as empty string. In issue #46443, we have established that double-quotes in cookie values should be kept as part of the value, rather than being discarded. However, we have missed the edge case of "" until now. This CL fixes said edge case. Fixes #75244 Change-Id: I...
[ { "path": "src/net/http/cookie.go", "patch": "@@ -459,9 +459,6 @@ func sanitizeCookieName(n string) string {\n // See https://golang.org/issue/7243 for the discussion.\n func sanitizeCookieValue(v string, quoted bool) string {\n \tv = sanitizeOrWarn(\"Cookie.Value\", validCookieValueByte, v)\n-\tif len(v) =...
2025-09-03T18:25:59
mrdoob/three.js
a379e9a3b368b02e0a85b749535f9b95a9b818ee
695574601a65432bc1621ee34a2caa935a45880f
Editor: Fixed script editor title out-of-sync (#28413) * sync script editor title * no dispatching editScript, setValue is enough
[ { "path": "editor/js/Script.js", "patch": "@@ -429,6 +429,26 @@ function Script( editor ) {\n \n \t} );\n \n+\tsignals.objectChanged.add( function ( object ) {\n+\n+\t\tif ( object === currentObject ) {\n+\n+\t\t\ttitle.setValue( currentObject.name + ' / ' + currentScript.name );\n+\n+\t\t}\n+\n+\t} );\n+\n...
2024-05-18T09:01:07