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
f10a82b76ff92b3c506203485b158191de4b3090
3bea95b2778312dd733c0f13fe9ec20bd2bf2d13
all: update vendored dependencies [generated] The tree has opened for Go 1.26 development. This is a time to update all golang.org/x/... module versions that contribute packages to the std and cmd modules in the standard library to latest master versions. For #36905. [git-generate] go install golang.org/x/build/cmd/...
[ { "path": "src/cmd/go.mod", "patch": "@@ -1,21 +1,21 @@\n module cmd\n \n-go 1.25\n+go 1.26\n \n require (\n \tgithub.com/google/pprof v0.0.0-20250208200701-d0013a598941\n-\tgolang.org/x/arch v0.18.1-0.20250605182141-b2f4e2807dec\n-\tgolang.org/x/build v0.0.0-20250606033421-8c8ff6f34a83\n-\tgolang.org/x/mod...
2025-08-09T02:06:27
mrdoob/three.js
8fc447fb16aee3540fd64b5cf5dc09b506639b1e
f2876ce8dc14bb310e20c255d519127bf00db94d
Docs: fix setMorphAt() description (#27946)
[ { "path": "docs/api/en/objects/InstancedMesh.html", "patch": "@@ -189,7 +189,7 @@ <h3>\n \t\t\trange [0, count].\n \t\t</p>\n \t\t<p>\n-\t\t\t[page:Matrix4 matrix]: A mesh with [page:Mesh.morphTargetInfluences .morphTargetInfluences] property containing the morph target weights\n+\t\t\t[page:Mesh mesh]: A m...
2024-03-19T21:02:59
denoland/deno
c064b6d59446cbb378a064ab92d091e1b31cc150
ba10e17e4b4087255414bc08d274db184ddb87ce
fix: `import.meta.resolve` - do not error for non-existent files in npm packages (#29741) This further improves `import.meta.resolve` to not error in many more scenarios (better alignment with Node). 1. Non-existent files in npm packages 1. Non-existent built-in node modules (ex. `node:non-existent`) 1. Many things t...
[ { "path": "Cargo.lock", "patch": "@@ -1755,9 +1755,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.350.0\"\n+version = \"0.351.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"e273b731fce500130790e777cb2631dc451db412975304d23816c1e444a10c5...
2025-06-16T10:03:12
vuejs/vue
3e0cda668570a95912f4aaa34b07a79df569c921
2288f3eab7af38f8832455c060d99f44f66aab06
fix transition appear check for nested components
[ { "path": "src/platforms/web/runtime/modules/transition.js", "patch": "@@ -46,7 +46,7 @@ export function enter (vnode: VNodeWithData) {\n appearCancelled\n } = data\n \n- const isAppear = !vnode.context.$root._isMounted\n+ const isAppear = !vnode.context._isMounted\n if (isAppear && !appear && app...
2016-07-24T20:13:01
mrdoob/three.js
c66eb6196ae2c06bde63c6e2ade172d902ee850a
47c95083e05f65f10bcec9b157980d161d6122dc
Editor: Fix center command. (#27940)
[ { "path": "editor/js/Menubar.Edit.js", "patch": "@@ -87,9 +87,9 @@ function MenubarEdit( editor ) {\n \t\tconst center = aabb.getCenter( new Vector3() );\n \t\tconst newPosition = new Vector3();\n \n-\t\tnewPosition.x = object.position.x + ( object.position.x - center.x );\n-\t\tnewPosition.y = object.posit...
2024-03-19T09:20:26
denoland/deno
ba10e17e4b4087255414bc08d274db184ddb87ce
fcf628ab87f896362eeea91550881aeee8726cfb
fix: move win32job under windows dependencies in tests/util/server (#29745) `win32job` doesn't declare `windows` as a target specific dependency https://github.com/ohadravid/win32job-rs/blob/main/Cargo.toml
[ { "path": "tests/util/server/Cargo.toml", "patch": "@@ -60,10 +60,10 @@ tempfile.workspace = true\n termcolor.workspace = true\n tokio.workspace = true\n url.workspace = true\n-win32job.workspace = true\n \n [target.'cfg(windows)'.dependencies]\n winapi = { workspace = true, features = [\"consoleapi\", \"sy...
2025-06-16T10:01:43
mrdoob/three.js
a7712cc3a0902f2c45e919a811622ed72ad5f5de
1d370a476afacb660159076728974a71910ba8da
GLTFExporter: Fix alignment of integer vertex attributes (#27064) --------- Co-authored-by: Takahiro <hogehoge@gachapin.jp>
[ { "path": "examples/jsm/exporters/GLTFExporter.js", "patch": "@@ -982,7 +982,17 @@ class GLTFWriter {\n \n \t\t}\n \n-\t\tconst byteLength = getPaddedBufferSize( count * attribute.itemSize * componentSize );\n+\t\tlet byteStride = attribute.itemSize * componentSize;\n+\n+\t\tif ( target === WEBGL_CONSTANTS....
2024-03-19T02:33:07
denoland/deno
fcf628ab87f896362eeea91550881aeee8726cfb
c9de072b618c155f729f05c6ae105af4f9a525c9
fix(ext/node): use primordials in `ext/node/polyfills/internal/fs/utils.mjs` (#29708)
[ { "path": "ext/node/polyfills/internal/fs/utils.mjs", "patch": "@@ -1,12 +1,42 @@\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-\n \"use strict\";\n \n import { primordials } fro...
2025-06-16T05:05:28
mrdoob/three.js
1d370a476afacb660159076728974a71910ba8da
7059b85ca36d4e0950b8358dd8c7c9356841a12d
Renderer: Move await method to `renderAsync` (#27939) * init batch and fixes * smaller example * pup * fix dynamic example * fix demo * add async render * move async method to renderAsync
[ { "path": "examples/jsm/renderers/common/Renderer.js", "patch": "@@ -312,7 +312,9 @@ class Renderer {\n \n \t\tif ( this._initialized === false ) await this.init();\n \n-\t\tawait this._renderScene( scene, camera );\n+\t\tconst renderContext = this._renderScene( scene, camera );\n+\n+\t\tawait this.backend....
2024-03-19T01:45:44
denoland/deno
c9de072b618c155f729f05c6ae105af4f9a525c9
02cff572b20fbbfbd0d3671e53cca32cb703f711
fix(ext/node): throw invalid state from `getAuthTag` (#29752)
[ { "path": "ext/node/polyfills/internal/crypto/cipher.ts", "patch": "@@ -47,6 +47,7 @@ import {\n isAnyArrayBuffer,\n isArrayBufferView,\n } from \"ext:deno_node/internal/util/types.ts\";\n+import { ERR_CRYPTO_INVALID_STATE } from \"ext:deno_node/internal/errors.ts\";\n \n const FastBuffer = Buffer[Symbo...
2025-06-16T02:48:20
vuejs/vue
5f560a42b38a7502447cd3e186ccf9a51b3fa2cf
9c4bf3590b3fbafd7e98b7e4c5700117bfaf6ff3
fix client-side hydration check for v-html/v-text
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -373,20 +373,24 @@ export function createPatchFunction (backend) {\n }\n \n function assertNodeMatch (node, vnode) {\n- if (vnode.tag) {\n- if (vnode.tag.indexOf('vue-component') === 0) {\n- return true\n- } else {\n- const chil...
2016-07-22T19:33:30
golang/go
adbf59525c06ae7e037ad0e9a7709ebed2528d66
4e182db5fc876564a4f87a0602c58ea0ddc6e37c
internal/runtime/gc/scan: avoid -1 index when cache sizes unavailable Fixes #74984. Fixes #74983. Change-Id: I011c66c2005bc4d92f1d17f1f8ce88158634f71f Reviewed-on: https://go-review.googlesource.com/c/go/+/695476 Auto-Submit: Michael Knyszek <mknyszek@google.com> Reviewed-by: Michael Pratt <mpratt@google.com> LUCI-Tr...
[ { "path": "src/internal/runtime/gc/scan/scan_test.go", "patch": "@@ -100,6 +100,9 @@ func benchmarkCacheSizes(b *testing.B, fn func(b *testing.B, heapPages int)) {\n \t\t\tfn(b, pages)\n \t\t})\n \t}\n+\tif len(cacheSizes) == 0 {\n+\t\treturn\n+\t}\n \tramPages := int(cacheSizes[len(cacheSizes)-1]*3/2) / gc...
2025-08-12T21:57:23
mrdoob/three.js
7059b85ca36d4e0950b8358dd8c7c9356841a12d
e6ec29855fb963a82083aee260b6e1143ea0378d
WebGPURenderer: Support BatchMesh (#27937) * init batch and fixes * smaller example * pup * fix dynamic example * fix demo
[ { "path": "examples/files.json", "patch": "@@ -383,6 +383,7 @@\n \t\t\"webgpu_multisampled_renderbuffers\",\n \t\t\"webgpu_materials_texture_anisotropy\",\n \t\t\"webgpu_storage_buffer\",\n+\t\t\"webgpu_mesh_batch\",\n \t\t\"webgpu_instancing_morph\"\n \t],\n \t\"webaudio\": [", "additions": 1, "del...
2024-03-19T01:31:39
denoland/deno
02cff572b20fbbfbd0d3671e53cca32cb703f711
090df402908bfa46382c188f026c3984a81cceab
fix(ext/node): validate auth tag for GCM mode cipher (#29739) Enables `parallel/test-crypto-gcm-explicit-short-tag.js` Ref https://github.com/denoland/deno/issues/29637
[ { "path": "ext/node/lib.rs", "patch": "@@ -281,6 +281,7 @@ deno_core::extension!(deno_node,\n ops::crypto::op_node_decipheriv_decrypt,\n ops::crypto::op_node_decipheriv_final,\n ops::crypto::op_node_decipheriv_set_aad,\n+ ops::crypto::op_node_decipheriv_auth_tag,\n ops::crypto::op_node_dh...
2025-06-16T02:04:41
mrdoob/three.js
b0a6ea1271a1f22393eb8b6b9d573c288998fd9e
83f758042019690b434cb8994267b780163584a3
WebGPURenderer: InstancedMesh Supports Instance Color and Morph Target (#27928) * add instancing and some fix/feat * update example for webgpu * add example to files.json * fix skinning webgpu * cleanup example and pup * up shadow * add default normal instead
[ { "path": "examples/files.json", "patch": "@@ -382,7 +382,8 @@\n \t\t\"webgpu_mirror\",\n \t\t\"webgpu_multisampled_renderbuffers\",\n \t\t\"webgpu_materials_texture_anisotropy\",\n-\t\t\"webgpu_storage_buffer\"\n+\t\t\"webgpu_storage_buffer\",\n+\t\t\"webgpu_instancing_morph\"\n \t],\n \t\"webaudio\": [\n ...
2024-03-18T16:21:43
vuejs/vue
0f5bcdfac81e5428d2029f86ecb6bb77aef82335
23a22cbb44f8a6796e2489a101b6de4f997f4340
fix flow
[ { "path": "src/core/instance/render.js", "patch": "@@ -177,9 +177,7 @@ export function renderMixin (Vue: Class<Component>) {\n }\n }\n \n-export function resolveSlots (\n- renderChildren?: Array<any> | () => Array<any> | string\n-): Object {\n+export function resolveSlots (renderChildren: any): Object {\...
2016-07-21T06:10:42
golang/go
f63e12d0e0f4533af54550d6d049a836fb738147
8e317da77d151f180b6e006a0e84154576a4a295
internal/trace: fix Sync.ClockSnapshot comment The old comment said "clocks take in close in time" which was probably due to rewording this a few times. Replace the comment with the one of the ClockSnapshot type as there doesn't seem to be a good reason for using a different wording here. Change-Id: I6a6a69648c8470c...
[ { "path": "src/internal/trace/event.go", "patch": "@@ -690,9 +690,11 @@ type Sync struct {\n \t// N indicates that this is the Nth sync event in the trace.\n \tN int\n \n-\t// ClockSnapshot is a snapshot of different clocks taken in close in time\n-\t// that can be used to correlate trace events with data c...
2025-08-11T06:33:05
mrdoob/three.js
7f7533d3583ff6469dec0627c67188364eff477f
9347c2eda9a759f282e61fc3ac8d7331bf252933
PMREMGenerator: Fix usage in XR. (#27924)
[ { "path": "src/extras/PMREMGenerator.js", "patch": "@@ -40,6 +40,7 @@ const _clearColor = /*@__PURE__*/ new Color();\n let _oldTarget = null;\n let _oldActiveCubeFace = 0;\n let _oldActiveMipmapLevel = 0;\n+let _oldXrEnabled = false;\n \n // Golden Ratio\n const PHI = ( 1 + Math.sqrt( 5 ) ) / 2;\n@@ -107,6 ...
2024-03-16T00:54:32
vuejs/vue
d94f113893d4c5ac7f0b8453717156ef8efb4561
ea9c6c37c3ef0ef3706afa94070b89a7464c559c
fix incorrect unknown element warning (fix #3296)
[ { "path": "src/platforms/web/util/element.js", "patch": "@@ -76,6 +76,9 @@ export function isUnknownElement (tag: string): boolean {\n if (!inBrowser) {\n return true\n }\n+ if (isReservedTag(tag)) {\n+ return false\n+ }\n tag = tag.toLowerCase()\n /* istanbul ignore if */\n if (unknownEl...
2016-07-20T14:14:13
denoland/deno
fa3208bf27adc390e64011d565fdad5d15bba39b
3d5ff3cf1c4f4059a100be1d00956ff805d032c9
fix(ext/node): Fix `crypto.pbkdf2` compat (#29738)
[ { "path": "ext/node/lib.rs", "patch": "@@ -301,6 +301,7 @@ deno_core::extension!(deno_node,\n ops::crypto::op_node_hkdf,\n ops::crypto::op_node_pbkdf2_async,\n ops::crypto::op_node_pbkdf2,\n+ ops::crypto::op_node_pbkdf2_validate,\n ops::crypto::op_node_private_decrypt,\n ops::crypto::...
2025-06-13T16:10:41
golang/go
fe4d445c36d69c1b238399e2f13b04bedd65ad7b
750789fab7f9cccc0756c5ec0d0952c917a4546f
internal/trace/tracev2: fix EvSTWBegin comment to include stack ID Change-Id: I6a6a69644fb9a6e765933384cdb17c63458be69a Reviewed-on: https://go-review.googlesource.com/c/go/+/694617 Auto-Submit: Michael Knyszek <mknyszek@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.c...
[ { "path": "src/internal/trace/tracev2/events.go", "patch": "@@ -48,7 +48,7 @@ const (\n \tEvGoStatus // goroutine status at the start of a generation [timestamp, goroutine ID, thread ID, status]\n \n \t// STW.\n-\tEvSTWBegin // STW start [timestamp, kind]\n+\tEvSTWBegin // STW start [timestamp, k...
2025-06-22T13:29:34
mrdoob/three.js
9d6152717609405023ad8cb22918def20b790a2b
74252e6e951aa33ffe9d7d67f2ff415e2baa090e
Playground: Fix connection lengths and let them be based on node input/output types (#27891) * Test proper input and output coloring * Add Type library for colors and in/output lengths * Overwrite node nodetype with predefined nodetype if necessary * Add DataType entries for matrices * Calculate output len...
[ { "path": "playground/BaseNodeEditor.js", "patch": "@@ -1,5 +1,6 @@\n import { Node, ButtonInput, TitleElement, ContextMenu } from 'flow';\n-import { exportJSON, onValidNode, getColorFromValue, getTypeFromValue, getColorFromType } from './NodeEditorUtils.js';\n+import { exportJSON, onValidNode } from './Nod...
2024-03-15T01:32:24
denoland/deno
3d5ff3cf1c4f4059a100be1d00956ff805d032c9
1f02d34877db45d20e10f444ae94c30d58a61823
fix(npm): support resolving npm specifiers not in graph with `import.meta.resolve` for resolved packages (#29732)
[ { "path": "Cargo.lock", "patch": "@@ -2716,9 +2716,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_semver\"\n-version = \"0.8.0\"\n+version = \"0.8.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"f2d807160e754edb1989b4a19cac1ac5299065a7a89ff98682a2366cbaa25795\...
2025-06-13T13:23:19
vuejs/vue
7a5028cae8eb611aed4938861666d6d160a13493
2e7a79230802bf7f45affefa5c5df947e32b43cf
fix codegen import
[ { "path": "src/compiler/index.js", "patch": "@@ -2,7 +2,7 @@\n \n import { parse } from './parser/index'\n import { optimize } from './optimizer'\n-import { generate } from './codegen'\n+import { generate } from './codegen/index'\n \n /**\n * Compile a template.", "additions": 1, "deletions": 1, ...
2016-07-19T22:44:27
golang/go
750789fab7f9cccc0756c5ec0d0952c917a4546f
889ab74169db2c8758f51c1a199a90266b16669b
internal/trace/internal/testgen: fix missing stacks nframes arg Change-Id: I6a6a6964c9c1322bfe289394d5d3937d1f7097bb Reviewed-on: https://go-review.googlesource.com/c/go/+/694616 Reviewed-by: Michael Knyszek <mknyszek@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>...
[ { "path": "src/internal/trace/internal/testgen/trace.go", "patch": "@@ -295,7 +295,7 @@ func (g *Generation) writeEventsTo(tw *raw.TextWriter) {\n \tb.RawEvent(tracev2.EvStacks, nil)\n \tfor stk, id := range g.stacks {\n \t\tstk := stk.stk[:stk.len]\n-\t\targs := []uint64{id}\n+\t\targs := []uint64{id, uint...
2025-06-22T13:29:34
mrdoob/three.js
74252e6e951aa33ffe9d7d67f2ff415e2baa090e
d26eecd6470fb7c9810c074e46a217c718c672e6
Object3D: Fix `added` event in `attach()`. (#27917)
[ { "path": "src/core/Object3D.js", "patch": "@@ -333,12 +333,7 @@ class Object3D extends EventDispatcher {\n \n \t\tif ( object && object.isObject3D ) {\n \n-\t\t\tif ( object.parent !== null ) {\n-\n-\t\t\t\tobject.parent.remove( object );\n-\n-\t\t\t}\n-\n+\t\t\tobject.removeFromParent();\n \t\t\tobject.pa...
2024-03-14T11:42:23
vuejs/vue
593cf3929eae6b5e4f6f48428ee3d8d53f4ca204
6f7ec7f04db393f6cd962db5efbf2bd252a1602e
fix move test case
[ { "path": "src/platforms/web/runtime/components/transition.js", "patch": "@@ -93,6 +93,7 @@ export default {\n // apply transition data to child\n // use getRealChild() to ignore abstract components e.g. keep-alive\n const child = getRealChild(rawChild)\n+ /* istanbul ignore if */\n if (!...
2016-07-17T05:40:31
denoland/deno
1f02d34877db45d20e10f444ae94c30d58a61823
cdf4834ba0e6ee151688f8c05df81b483251d4d1
fix: remove `self` from global middleware (#29734) Follow up to https://github.com/denoland/deno/pull/29543 that does the same for `self` global. Unfortunately this omission led to a problem described in https://github.com/denoland/deno/issues/29726 where packages started thinking that they are being run in a web work...
[ { "path": "ext/node/global.rs", "patch": "@@ -64,14 +64,13 @@ const fn str_to_utf16<const N: usize>(s: &str) -> [u16; N] {\n \n // UTF-16 encodings of the managed globals. THIS LIST MUST BE SORTED.\n #[rustfmt::skip]\n-const MANAGED_GLOBALS: [&[u16]; 11] = [\n+const MANAGED_GLOBALS: [&[u16]; 10] = [\n &st...
2025-06-13T10:48:26
golang/go
182336bf05c8e833f433510ba62205d8ce40299a
f04421ea9adc634fc24133ddc59aa24e323ceec9
net/http: fix data race in client Fixes #73522 Co-authored-by: Damien Neil <dneil@google.com> Change-Id: I6fb408a0b03bc387f443e17e6f9d0bac32eff31e Reviewed-on: https://go-review.googlesource.com/c/go/+/694815 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Damien...
[ { "path": "src/net/http/transport.go", "patch": "@@ -722,7 +722,7 @@ func (t *Transport) roundTrip(req *Request) (_ *Response, err error) {\n \t\t\tif e, ok := err.(transportReadFromServerError); ok {\n \t\t\t\terr = e.err\n \t\t\t}\n-\t\t\tif b, ok := req.Body.(*readTrackingBody); ok && !b.didClose {\n+\t\...
2025-08-11T17:21:50
mrdoob/three.js
d26eecd6470fb7c9810c074e46a217c718c672e6
a9c5a7dbb6f59d4f35df2fb4ca584c8b7b84fc25
FBXLoader: Fixed invalid QuaternionKeyframeTracks.
[ { "path": "examples/jsm/loaders/FBXLoader.js", "patch": "@@ -2845,7 +2845,7 @@ class AnimationParser {\n \n \t\tconst quaternionValues = [];\n \n-\t\tif ( ! values || ! times ) return new QuaternionKeyframeTrack( modelName + '.quaternion', [], [] );\n+\t\tif ( ! values || ! times ) return new QuaternionKeyf...
2024-03-14T05:04:39
vuejs/vue
2732fec59ed592c187b499b2ba5872d2242339cc
93fb4df3c497a19c710db8fb2d52e0a016526632
tweak error handling
[ { "path": "src/core/instance/render.js", "patch": "@@ -4,7 +4,7 @@ import config from '../config'\n import VNode, { emptyVNode } from '../vdom/vnode'\n import { normalizeChildren } from '../vdom/helpers'\n import {\n- warn, bind, isObject, toObject,\n+ warn, formatComponentName, bind, isObject, toObject,\...
2016-07-15T21:22:53
golang/go
ce3f3e2ae73dcc0c270bc73a59ea5e7be6cf6a8d
3dbef65bf37f1b7ccd1f884761341a5a15456ffa
cmd/link/internal/ld, internal/syscall/unix: use posix_fallocate on netbsd The posix_fallocate system call is available since NetBSD 7.0, see https://man.netbsd.org/posix_fallocate.2 Re-use the syscall wrappers already in place for freebsd. Note that posix_fallocate on netbsd also returns the result in r1 rather than...
[ { "path": "src/cmd/link/internal/ld/fallocate_test.go", "patch": "@@ -2,7 +2,7 @@\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 darwin || (freebsd && go1.21) || linux\n+//go:build darwin || (freebsd && go1.21) || linux || (netbsd ...
2025-08-06T15:50:14
denoland/deno
cdf4834ba0e6ee151688f8c05df81b483251d4d1
578634daf6c98407aa3362233f0672fd9baf5489
fix(ext/node): fix oneshot hash validation (#29661) Enables `parallel/test-crypto-oneshot-hash.js` Ref https://github.com/denoland/deno/issues/29637 --------- Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
[ { "path": "ext/node/lib.rs", "patch": "@@ -505,7 +505,8 @@ deno_core::extension!(deno_node,\n ops::sqlite::Session,\n ops::handle_wrap::AsyncWrap,\n ops::handle_wrap::HandleWrap,\n- ops::sqlite::StatementSync\n+ ops::sqlite::StatementSync,\n+ ops::crypto::digest::Hasher,\n ],\n esm_...
2025-06-13T04:42:10
mrdoob/three.js
f4a695c408227de4a003a104307703bdc34b14fe
93be1831f04edf38d600c487d962a4777277e86c
WebGPURenderer: Improve Infos logic (#27889) * improve info system on threejs * cleanup and add stats-gl in example external * fix bot warning * remove unused dom
[ { "path": "examples/jsm/renderers/common/Animation.js", "patch": "@@ -18,6 +18,8 @@ class Animation {\n \n \t\t\tthis.requestId = self.requestAnimationFrame( update );\n \n+\t\t\tif ( this.info.autoReset === true ) this.info.reset();\n+\n \t\t\tthis.nodes.nodeFrame.update();\n \n \t\t\tthis.info.frame = thi...
2024-03-13T15:12:25
vuejs/vue
93fb4df3c497a19c710db8fb2d52e0a016526632
d867b9e2e4f0096c1c296952ef6f2e92fa659036
position transition guard properly to fix e2e modal test case
[ { "path": "src/platforms/web/runtime/modules/transition.js", "patch": "@@ -20,12 +20,13 @@ export function enter (vnode: VNodeWithData) {\n el._leaveCb()\n }\n \n- if (el._enterCb) {\n+ const data = resolveTransition(vnode.data.transition)\n+ if (!data) {\n return\n }\n \n- const data = reso...
2016-07-14T23:39:25
golang/go
3dbef65bf37f1b7ccd1f884761341a5a15456ffa
2b804abf0712d45801671232585e0011902a5c48
database/sql: allow drivers to override Scan behavior Implementing RowsColumnScanner allows the driver to completely control how values are scanned. Fixes #67546 Change-Id: Id8e7c3a973479c9665e4476fe2d29e1255aee687 GitHub-Last-Rev: ed0cacaec4a4feead56b09c0d6eee86ed58fe1ee GitHub-Pull-Request: golang/go#67648 Reviewe...
[ { "path": "api/next/67546.txt", "patch": "@@ -0,0 +1,5 @@\n+pkg database/sql/driver, type RowsColumnScanner interface { Close, Columns, Next, ScanColumn } #67546\n+pkg database/sql/driver, type RowsColumnScanner interface, Close() error #67546\n+pkg database/sql/driver, type RowsColumnScanner interface, Col...
2025-05-31T15:27:15
denoland/deno
578634daf6c98407aa3362233f0672fd9baf5489
f80075c3ffbcb01a035f2ca530081b4f694195e0
fix(ext/node): DiffieHellman constructor behaviors (#29718)
[ { "path": "ext/node/polyfills/internal/crypto/diffiehellman.ts", "patch": "@@ -51,7 +51,21 @@ import type { BufferEncoding } from \"ext:deno_node/_global.d.ts\";\n \n const DH_GENERATOR = 2;\n \n-export class DiffieHellman {\n+export function DiffieHellman(\n+ sizeOrKey: number | string | ArrayBufferView,\...
2025-06-13T03:21:39
mrdoob/three.js
93be1831f04edf38d600c487d962a4777277e86c
f763181aca32b483e50d418228dbc0a93dfaf61e
ShaderNode: Fix cacheMaps.int -> cacheMaps.ints (#27911)
[ { "path": "examples/jsm/nodes/shadernode/ShaderNode.js", "patch": "@@ -555,7 +555,7 @@ addNodeElement( 'append', append );\n export const color = new ConvertType( 'color' );\n \n export const float = new ConvertType( 'float', cacheMaps.float );\n-export const int = new ConvertType( 'int', cacheMaps.int );\n...
2024-03-13T14:26:47
vuejs/vue
819e3ce495152df7b9153e1e31737026fbf6c7b7
f0aef7556b38337b71a9bdeb988b1d99b19d7b07
avoid calling duplicate enter/leave when already in transition (fix #3252)
[ { "path": "src/platforms/web/runtime/modules/transition.js", "patch": "@@ -20,6 +20,10 @@ export function enter (vnode: VNodeWithData) {\n el._leaveCb()\n }\n \n+ if (el._enterCb) {\n+ return\n+ }\n+\n const data = resolveTransition(vnode.data.transition)\n if (!data) {\n return\n@@ -112,...
2016-07-14T23:28:14
mrdoob/three.js
4736375b488050dcdef9ba8fc9a3e73e181611df
5ed5417d63e4eeba5087437cc27ab1e3d0813aea
Nodes: Introduce `Node.needsUpdate=true` (#27904) * Background: Fix backgroundNode changed after first renderer * RenderObject: cleanup clippingNeedsUpdate * Nodes: Add `.needsUpdate=true` * Rename _version -> _cacheKeyVersion
[ { "path": "examples/jsm/nodes/core/Node.js", "patch": "@@ -20,12 +20,27 @@ class Node extends EventDispatcher {\n \n \t\tthis.uuid = MathUtils.generateUUID();\n \n+\t\tthis.version = 0;\n+\n+\t\tthis._cacheKey = null;\n+\t\tthis._cacheKeyVersion = 0;\n+\n \t\tthis.isNode = true;\n \n \t\tObject.defineProper...
2024-03-12T15:28:47
denoland/deno
12ed9f3649307a850d911a6564ab3236b79da5c4
6c33a7a46fc80c7d2ba47ad36e2ff5e2254b4dfb
fix(bundle): parse the allow-import flag, fix example in help text (#29733) Closes #29729.
[ { "path": "cli/args/flags.rs", "patch": "@@ -1944,11 +1944,11 @@ fn bundle_subcommand() -> Command {\n \"bundle\",\n \"Output a single JavaScript file with all dependencies.\n \n- deno bundle https://deno.land/std/examples/colors.ts colors.bundle.js\n+ deno bundle jsr:@std/http/file-server -o file...
2025-06-13T01:44:26
golang/go
2b804abf0712d45801671232585e0011902a5c48
6abfe7b0deaeb62d9f8d4bf09475efec68db9a1b
net: context aware Dialer.Dial functions Add context aware dial functions for TCP, UDP, IP and Unix networks. Fixes #49097 Updates #59897 Change-Id: I7523452e8e463a587a852e0555cec822d8dcb3dd Reviewed-on: https://go-review.googlesource.com/c/go/+/490975 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts...
[ { "path": "api/next/49097.txt", "patch": "@@ -0,0 +1,4 @@\n+pkg net, method (*Dialer) DialIP(context.Context, string, netip.Addr, netip.Addr) (*IPConn, error) #49097\n+pkg net, method (*Dialer) DialTCP(context.Context, string, netip.AddrPort, netip.AddrPort) (*TCPConn, error) #49097\n+pkg net, method (*Dial...
2023-04-30T15:12:27
mrdoob/three.js
22a285ad1339a83356432456293a04ee907b617d
73762aff0488262f18176cd750e455f65a9f0cc5
WebGPURenderer: Add `copyTextureToTexture` support (#27888) * webgpu: add copytexturetotexture support * fix dst texture not update on the gpu
[ { "path": "examples/files.json", "patch": "@@ -361,6 +361,7 @@\n \t\t\"webgpu_portal\",\n \t\t\"webgpu_reflection\",\n \t\t\"webgpu_rtt\",\n+\t\t\"webgpu_materials_texture_partialupdate\",\n \t\t\"webgpu_sandbox\",\n \t\t\"webgpu_shadertoy\",\n \t\t\"webgpu_shadowmap\",", "additions": 1, "deletions"...
2024-03-10T02:22:54
denoland/deno
09f41185297861020dab5acbc9da7f63d04c85b1
7b951af81a87e45b5bcc2c3326fe5f43b56841e8
fix(bundle): enable sloppy imports by default when bundling (#29731) It's more permissive, aligns more with typical bundler behavior, and runtime perf is not as much of a concern
[ { "path": "cli/tools/bundle/mod.rs", "patch": "@@ -45,9 +45,13 @@ use crate::resolver::CliResolver;\n use crate::tools::bundle::externals::ExternalsMatcher;\n \n pub async fn bundle(\n- flags: Arc<Flags>,\n+ mut flags: Arc<Flags>,\n bundle_flags: BundleFlags,\n ) -> Result<(), AnyError> {\n+ {\n+ le...
2025-06-12T21:43:13
golang/go
691af6ca28dad9c72e51346fe10c6aaadc3f940b
925149da2009589f6f2567564e1c7370e9f93b1b
encoding/json: fix Indent trailing whitespace regression in goexperiment.jsonv2 The Indent function preserves trailing whitespace, while the v1 emulation under v2 implementation accidentally dropped it. There was prior logic that attempted to preserve it, but it did not work correctly since it ran in a defer and acci...
[ { "path": "src/encoding/json/scanner_test.go", "patch": "@@ -74,6 +74,7 @@ func TestCompactAndIndent(t *testing.T) {\n \t-5e+2\n ]`},\n \t\t{Name(\"\"), \"{\\\"\\\":\\\"<>&\\u2028\\u2029\\\"}\", \"{\\n\\t\\\"\\\": \\\"<>&\\u2028\\u2029\\\"\\n}\"}, // See golang.org/issue/34070\n+\t\t{Name(\"\"), `null`, \"n...
2025-07-31T23:21:41
mrdoob/three.js
73762aff0488262f18176cd750e455f65a9f0cc5
1ca587a11a84496bef28a88608e5752b59328536
WebGLRenderer: Fix transmission with nested render calls. (#27886) * WebGLRenderer: Fix transmission with nested render calls. * Update screenshot.
[ { "path": "examples/webxr_vr_sandbox.html", "patch": "@@ -102,15 +102,14 @@\n \t\t\t\t//\n \n \t\t\t\treflector = new Reflector( new THREE.PlaneGeometry( 2, 2 ), {\n-\t\t\t\t\ttextureWidth: window.innerWidth * window.devicePixelRatio,\n-\t\t\t\t\ttextureHeight: window.innerHeight * window.devicePixelRatio\n...
2024-03-09T12:15:12
vuejs/vue
bff94f3120dfb77ae27304b8b24f8b23ef893ffb
5660052255eb20e8f777709578f0dbf29b907b21
include local tag in keep-alive cache key (fix #3269)
[ { "path": "src/core/components/keep-alive.js", "patch": "@@ -14,12 +14,15 @@ export default {\n const rawChild = this.child\n const realChild = getRealChild(this.child)\n if (realChild && realChild.componentOptions) {\n- const cid = realChild.componentOptions.Ctor.cid\n- if (this.cache...
2016-07-14T22:26:51
golang/go
925149da2009589f6f2567564e1c7370e9f93b1b
cf4af0b2f30f27b6273fa9b9f295dbdaf9cdb7bb
net/http: add example for CrossOriginProtection It's not immediately appaerent that a method must be used to wrap the handler, so add a basic example to guide users to the right API. Fixes #74121 Change-Id: I23fc3dff6fff9bf4eb29c099bc77da8c99620671 Reviewed-on: https://go-review.googlesource.com/c/go/+/681256 LUCI-T...
[ { "path": "src/net/http/example_test.go", "patch": "@@ -12,6 +12,7 @@ import (\n \t\"net/http\"\n \t\"os\"\n \t\"os/signal\"\n+\t\"time\"\n )\n \n func ExampleHijacker() {\n@@ -221,3 +222,22 @@ func ExampleProtocols_http1or2() {\n \t}\n \tres.Body.Close()\n }\n+\n+func ExampleCrossOriginProtection() {\n+\tm...
2025-06-12T08:30:28
denoland/deno
7b951af81a87e45b5bcc2c3326fe5f43b56841e8
8c3e6a14a1d14582b1ce47ee7db0cd250897cbd4
chore: fix internal hmr feature (#29730) Currently broken on main due to `SnapshotOptions` not being in op state
[ { "path": "runtime/ops/bootstrap.rs", "patch": "@@ -69,7 +69,14 @@ impl Default for SnapshotOptions {\n #[op2]\n #[serde]\n pub fn op_snapshot_options(state: &mut OpState) -> SnapshotOptions {\n- state.take::<SnapshotOptions>()\n+ #[cfg(feature = \"hmr\")]\n+ {\n+ state.try_take::<SnapshotOptions>().u...
2025-06-12T21:42:16
mrdoob/three.js
1dd2f398e1660506a6aef5ed8eb5af73cca8b6f8
f9e584866cc0bb8d5c4da9167e75111c34b043ab
Examples: Correction to texture colorspace in webgpu parallax example (#27874) * fix(examples): Correction to texture colorspace in webgpu parallax example * update screenshot ---------
[ { "path": "examples/webgpu_parallax_uv.html", "patch": "@@ -68,13 +68,13 @@\n \t\t\t\ttopTexture.colorSpace = THREE.SRGBColorSpace;\n \n \t\t\t\tconst roughnessTexture = loader.load( 'textures/ambientcg/Ice002_1K-JPG_Roughness.jpg' );\n-\t\t\t\troughnessTexture.colorSpace = THREE.SRGBColorSpace;\n+\t\t\t\tr...
2024-03-06T00:18:36
vuejs/vue
bbd022ea2f3f5c7b57177e65651d2b8f7b1ac843
e61a0189a45de674f8ef27e325deaa1e9ff323c0
fix comment typo
[ { "path": "src/platforms/web/runtime/components/transition.js", "patch": "@@ -31,7 +31,7 @@ export default {\n \n const rawChild = children[0]\n \n- // if this is a component root node and the compoennt's\n+ // if this is a component root node and the component's\n // parent container node als...
2016-07-13T18:29:42
golang/go
cf4af0b2f30f27b6273fa9b9f295dbdaf9cdb7bb
b096ddb9ea84efa28eafd7850b8f8a8b3e76e49f
encoding/json/v2: fix UnmarshalDecode regression with EOF When EOF is encountered within jsontext.Decoder stream without starting to parse any token, UnmarshalDecode should report EOF, rather than converting it into ErrUnexpectedEOF. This fixes a regression introduced by https://go.dev/cl/689919. This change only af...
[ { "path": "src/encoding/json/v2/arshal.go", "patch": "@@ -470,7 +470,7 @@ func unmarshalDecode(in *jsontext.Decoder, out any, uo *jsonopts.Struct, last bo\n \t// was validated before attempting to unmarshal it.\n \tif uo.Flags.Get(jsonflags.ReportErrorsWithLegacySemantics) {\n \t\tif err := export.Decoder(i...
2025-07-31T22:01:47
denoland/deno
8c3e6a14a1d14582b1ce47ee7db0cd250897cbd4
1ef6746a77e5cdee0c5ca9c5a15fe4b1006fc0d1
fix(lsp): respect media type for tsx jupyter cells (#29712)
[ { "path": "cli/lsp/documents.rs", "patch": "@@ -1406,11 +1406,18 @@ impl DocumentModules {\n None\n }\n \n- pub fn primary_specifier(&self, document: &Document) -> Option<Arc<Url>> {\n+ pub fn primary_specifier(\n+ &self,\n+ document: &Document,\n+ ) -> Option<(Arc<Url>, MediaType)> {\n s...
2025-06-12T21:39:59
mrdoob/three.js
50f7daa58201317970f72abc33234c0c022afc3e
7e74e4cc6458005ea9a4c3176f933c33bde17e72
Update WebGLRenderer.js Fix typo.
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -1419,7 +1419,7 @@ class WebGLRenderer {\n \t\t\t\t\ttype: ( extensions.has( 'EXT_color_buffer_half_float' ) || extensions.has( 'EXT_color_buffer_float' ) ) ? HalfFloatType : UnsignedByteType,\n \t\t\t\t\tminFilter: LinearMipmapLinearFilter,\n \t\t\t\...
2024-03-05T08:48:54
vuejs/vue
6672481b589fef405d5c590c02bc222a6351701e
e94ad1437e54ce2b7b17c0aa2eca5d8785fe767d
fix transition test in phantomjs
[ { "path": "test/unit/features/transition/transition.spec.js", "patch": "@@ -4,7 +4,7 @@ import { isIE9 } from 'web/util/index'\n import { nextFrame } from 'web/runtime/modules/transition'\n \n if (!isIE9) {\n- fdescribe('Transition system', () => {\n+ describe('Transition system', () => {\n const dura...
2016-07-13T18:14:24
golang/go
ce0e803ab9fcee7e5adc99d262dde6f6c1f41842
38b76bf2a3b4a2e1bd512f32907d7f2d3de3b71a
[dev.simd] cmd/compile: keep track of multiple rule file names in ssa/_gen This was a long-standing "we need to fix this" for simd work, this fixes it. I expect that simd peephole rule files will be coming soon and there will be more errors and we will be happier to have this. Change-Id: Iefffc43e3e2110939f8d406f6e5...
[ { "path": "src/cmd/compile/internal/ssa/_gen/multiscanner.go", "patch": "@@ -0,0 +1,117 @@\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+package main\n+\n+import (\n+\t\"bufio\"\n+\t\"...
2025-08-08T20:49:17
mrdoob/three.js
3941fd4b53e9724cc2a73d91b9be6d625e6c7c4b
b09f60e837888ae4595a527078d77530ae8e50d2
WebGLRenderer: Check for `EXT_color_buffer_float` for transmission. (#27761) * fix: some feature need webgl extension * chore: revert code * chore: revert code * chore: remove webgl1 * chore: remove webgl1
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -1416,7 +1416,7 @@ class WebGLRenderer {\n \n \t\t\t\t_transmissionRenderTarget = new WebGLRenderTarget( 1, 1, {\n \t\t\t\t\tgenerateMipmaps: true,\n-\t\t\t\t\ttype: extensions.has( 'EXT_color_buffer_half_float' ) ? HalfFloatType : UnsignedByteType,\n...
2024-03-04T10:11:51
denoland/deno
1ef6746a77e5cdee0c5ca9c5a15fe4b1006fc0d1
4072c2c62774ef96bd3418dc529be7df3e886074
fix: do not panic when logging from outside a tokio runtime (#29728)
[ { "path": "cli/util/draw_thread.rs", "patch": "@@ -114,9 +114,18 @@ impl DrawThread {\n pub fn hide() {\n let internal_state = &*INTERNAL_STATE;\n let mut internal_state = internal_state.lock();\n+ let is_showing =\n+ internal_state.has_draw_thread && internal_state.hide_count == 0;\n ...
2025-06-12T19:09:23
vuejs/vue
582a8932d3933517b36c9b1d499f9ddeba145fbf
39bcd60a33d7d5c99140a54e48b149ae5a4c6221
really fix out-in mode
[ { "path": "src/platforms/web/runtime/components/transition.js", "patch": "@@ -60,15 +60,18 @@ export default {\n const oldChild = getRealChild(oldRawChild)\n if (mode && oldChild && oldChild.data && oldChild.key !== child.key) {\n if (mode === 'out-in') {\n- // return old node\n- ...
2016-07-13T16:36:06
mrdoob/three.js
b09f60e837888ae4595a527078d77530ae8e50d2
1f5454f983da3b632fbc9a7373930e0dfe6dddb7
Manual: Fix GPU picking demo. (#27866) * Manual: Fix GPU picking demo. * Update picking-gpu.html
[ { "path": "manual/en/picking.html", "patch": "@@ -279,7 +279,7 @@ <h1>Picking</h1>\n cube.scale.set(rand(3, 6), rand(3, 6), rand(3, 6));\n \n + const pickingMaterial = new THREE.MeshPhongMaterial({\n-+ emissive: new THREE.Color(id),\n++ emissive: new THREE.Color().setHex(id, THREE.NoColorSpace),\n ...
2024-03-04T09:06:56
denoland/deno
4072c2c62774ef96bd3418dc529be7df3e886074
f54afe03bd5902576a1e8e71d0473a63279a663a
fix(install,outdated): try to avoid building graph with incorrect exports (#29713) Fixes https://github.com/denoland/deno/issues/29707. Not particularly happy with this one, but the only other idea I had was to just ignore errors about non-existent exports when we build the graph for a top level install. That might e...
[ { "path": "cli/tools/pm/cache_deps.rs", "patch": "@@ -95,6 +95,24 @@ pub async fn cache_top_level_deps(\n continue;\n }\n let resolved_req = graph.packages.mappings().get(req.req());\n+ let resolved_req = resolved_req.and_then(|nv| {\n+ // the ve...
2025-06-12T16:23:05
golang/go
38b76bf2a3b4a2e1bd512f32907d7f2d3de3b71a
94d72355f662a1c8229db661cc068ea8e901641c
[dev.simd] cmd/compile, simd: jump table for imm ops This CL fixes some errors in prog generation for imm operations, please see the changes in ssa.go for details. This CL also implements the jump table for non-const immediate arg. The current implementation exhaust 0-255, the bound-checked version will be in the nex...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -1837,11 +1837,7 @@ func simdVkv(s *ssagen.State, v *ssa.Value) *obj.Prog {\n // Example instruction: VROUNDPD $7, X2, X2\n func simdV11Imm8(s *ssagen.State, v *ssa.Value) *obj.Prog {\n \tp := s.Prog(v.Op.Asm())\n-\timm := v.AuxInt\n-\tif imm <...
2025-08-08T17:31:45
vuejs/vue
5c96daafd3f8e9e13a85146889b75f9101ba8a40
fcb1e38b1379c634ada09fc57ccc09b308785410
fix out-in mode duplicate calls
[ { "path": "src/platforms/web/runtime/components/transition.js", "patch": "@@ -62,13 +62,15 @@ export default {\n if (mode === 'out-in') {\n // return old node\n // and queue an update when the leave finishes\n- if (!oldChild.elm._leaveCb) {\n+ if (!oldChild.elm._leaveCb &...
2016-07-13T16:21:35
denoland/deno
9ef98862eb549b90cc3c481543ff468440b4f5e3
3c3af1011a582398e4e9cadf705f06b4e9cfa69b
fix(install): infer name from @scope/cli pattern (#29694)
[ { "path": "cli/tools/installer.rs", "patch": "@@ -190,6 +190,14 @@ pub async fn infer_name_from_url(\n if !npm_ref.req.name.contains('/') {\n return Some(npm_ref.req.name.into_string());\n }\n+ if let Some(scope_and_pkg) = npm_ref.req.name.strip_prefix('@') {\n+ if let Some((scope, pac...
2025-06-12T14:37:34
golang/go
1718828c81f2bad44b51b13fb4b34540a9c2c096
084c0f849467d5e45b7242cda3dd957352e86b8f
internal/sync: warn about incorrect unsafe usage in HashTrieMap When the HashTrieMap expand method runs out of bits, it can be because the user mutated a key after insertion using unsafe or similar in violation of the HashTrieMap invariants. Adjust the panic message to help triage and debugging by more directly sugge...
[ { "path": "src/internal/sync/hashtriemap.go", "patch": "@@ -178,7 +178,7 @@ func (ht *HashTrieMap[K, V]) expand(oldEntry, newEntry *entry[K, V], newHash uin\n \ttop := newIndirect\n \tfor {\n \t\tif hashShift == 0 {\n-\t\t\tpanic(\"internal/sync.HashTrieMap: ran out of hash bits while inserting\")\n+\t\t\tp...
2025-08-09T21:25:14
vuejs/vue
7ad4eb02f151ae48ee84e98e36093f7d7d644c92
f3c80f2472671c4502eee225896732418396561a
fix prop types
[ { "path": "src/platforms/web/runtime/components/transition.js", "patch": "@@ -5,7 +5,17 @@ import { getRealChild } from 'core/vdom/helpers'\n \n export default {\n name: 'transition',\n- props: ['name', 'appear', 'tag', 'mode'],\n+ props: {\n+ name: String,\n+ appear: Boolean,\n+ mode: String,\...
2016-07-12T19:17:46
denoland/deno
3c3af1011a582398e4e9cadf705f06b4e9cfa69b
d2d8d3775fe0fbb34de08421f612ded43dea4473
fix(ext/napi): ensure the finalizer callback will be called (#29710) See https://github.com/napi-rs/napi-rs/issues/2708#issuecomment-2963957944 for the context. In current implementation, the Weak `Reference` is created with `v8::Weak::with_finalizer`, but there is no guarantee as to *when* or even *if* the finalizat...
[ { "path": "ext/napi/js_native_api.rs", "patch": "@@ -111,12 +111,11 @@ impl Reference {\n fn set_weak(&mut self) {\n let reference = self as *mut Reference;\n if let ReferenceState::Strong(g) = &self.state {\n- let cb = Box::new(move |_: &mut v8::Isolate| {\n- Reference::weak_callback(...
2025-06-12T13:05:08
golang/go
084c0f849467d5e45b7242cda3dd957352e86b8f
a62f72f7a7ee606c803d1c68cadd24e45eea5e83
cmd/compile: allow InlMark operations to be speculatively executed Although InlMark takes a memory argument it ultimately becomes a NOP and therefore is safe to speculatively execute. Fixes #74915 Change-Id: I64317dd433e300ac28de2bcf201845083ec2ac82 Reviewed-on: https://go-review.googlesource.com/c/go/+/693795 LUCI-...
[ { "path": "src/cmd/compile/internal/ssa/branchelim.go", "patch": "@@ -436,8 +436,15 @@ func canSpeculativelyExecute(b *Block) bool {\n \t// don't fuse memory ops, Phi ops, divides (can panic),\n \t// or anything else with side-effects\n \tfor _, v := range b.Values {\n-\t\tif v.Op == OpPhi || isDivMod(v.Op)...
2025-08-06T21:43:05
vuejs/vue
afc414976c19cd06fe2d5835d2137ad8f9de7aa8
d0482a0faeeb79c250fc17e06de6c777e74bc618
fix svg component children
[ { "path": "src/compiler/codegen.js", "patch": "@@ -62,7 +62,7 @@ function genElement (el: ASTElement): string {\n // if the element is potentially a component,\n // wrap its children as a thunk.\n const children = !el.inlineTemplate\n- ? genChildren(el, !el.ns && !isPlatformReserved...
2016-07-13T15:38:50
denoland/deno
28c62ff31b2d5e114ca0b83e36ab007ef8faeb48
9602e13d53c9c4ccaae0d5827d22104b6c40dd92
fix(ext/node): `process.loadEnvFile` returns `undefined` (#29717)
[ { "path": "ext/node/lib.rs", "patch": "@@ -223,6 +223,7 @@ enum DotEnvLoadErr {\n }\n \n #[op2(fast)]\n+#[undefined]\n fn op_node_load_env_file(\n state: &mut OpState,\n #[string] path: &str,", "additions": 1, "deletions": 0, "language": "Rust" } ]
2025-06-12T05:00:59
mrdoob/three.js
12664a6daad59804250d29d5819f7afd8b5ea808
a70ef1ffd8b9b6a447a3a8c7ce7e6b49416b0a2d
WebGLProgram: Fix `sampler2DArray` precision. (#27854)
[ { "path": "src/renderers/webgl/WebGLProgram.js", "patch": "@@ -870,14 +870,12 @@ function WebGLProgram( renderer, cacheKey, parameters, bindingStates ) {\n \n \t\tprefixVertex = [\n \t\t\tcustomVertexExtensions,\n-\t\t\t'precision mediump sampler2DArray;',\n \t\t\t'#define attribute in',\n \t\t\t'#define va...
2024-03-01T10:07:32
golang/go
bce5601cbbb1a3a33ecdb13b796033e44931a3da
777d76c4f2392b782418a867172e7e951c0278f8
cmd/go: fix fips doc link Change-Id: I8f06ebd65ba9961e19274c1e5fec251b18395d1c Reviewed-on: https://go-review.googlesource.com/c/go/+/691435 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Sean Liao <sean@liao.dev> Auto-Submit: Roland Shoemaker <roland@golang.org> LUCI-TryBot-Result: Go LUCI <golang-s...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2527,7 +2527,7 @@\n //\t\tThe default is GOFIPS140=off, which makes no FIPS-140 changes at all.\n //\t\tOther values enable FIPS-140 compliance measures and select alternate\n //\t\tversions of the cryptography source code.\n-//\t\tSee https://go.dev/security...
2025-07-29T16:19:51
vuejs/vue
d0482a0faeeb79c250fc17e06de6c777e74bc618
8401852484c8446bf7113fc6cf99714eb2b45c61
should not keep slot name when passed further down (fix #3259)
[ { "path": "src/core/instance/render.js", "patch": "@@ -167,7 +167,8 @@ function resolveSlots (\n let name, child\n for (let i = 0, l = children.length; i < l; i++) {\n child = children[i]\n- if ((name = child.data && child.data.slot)) {\n+ if (child.data && (name = child.data.slot)) {\n+ ...
2016-07-12T20:32:04
mrdoob/three.js
6f0ad3625bfd75a41364bed48f0273a6984efdb5
c3fb29db61c4d6d1560b84f02f467a5e265d93df
Editor: Fixed pathtracer background blurriness. (#27852)
[ { "path": "editor/js/Viewport.Pathtracer.js", "patch": "@@ -49,7 +49,6 @@ function ViewportPathtracer( renderer ) {\n \n \t\t}\n \n-\t\tpathtracer.material.backgroundBlur = scene.backgroundBlurriness;\n \t\tpathtracer.reset();\n \n \t\tconst { bvh, textures, materials, lights } = generator.generate( scene )...
2024-03-01T07:00:37
golang/go
dcc77f9e3c7097b497e99800a7a4ed80c7a430d8
c7b85e9ddc1e23f84ccb3c5de8fdb55e80a9dd69
cmd/go: fix get -tool when multiple packages are provided Fixes #74035 Change-Id: I51865f4f753aade9a8be62ed6f9bc2d298742bf1 Reviewed-on: https://go-review.googlesource.com/c/go/+/679975 Reviewed-by: Ian Alexander <jitsu@google.com> Reviewed-by: Michael Matloob <matloob@google.com> Reviewed-by: Michael Matloob <matloo...
[ { "path": "src/cmd/go/internal/modget/get.go", "patch": "@@ -453,7 +453,7 @@ func updateTools(ctx context.Context, queries []*query, opts *modload.WriteOpts)\n \t\tif queries[i].version == \"none\" {\n \t\t\topts.DropTools = append(opts.DropTools, m.Pkgs...)\n \t\t} else {\n-\t\t\topts.AddTools = append(opt...
2025-06-07T19:28:20
denoland/deno
9602e13d53c9c4ccaae0d5827d22104b6c40dd92
dd91908fabb91fa3c454c579a3c842cd514d9b89
fix(process,node): roll our own process spawning on windows (#29609) Fixes #16899. Fixes https://github.com/denoland/deno/issues/23524. Fixes https://github.com/denoland/deno/issues/23938. Fixes https://github.com/denoland/deno/issues/27869. Unblocks #5501. This PR adds support for additional stdio pipes to windows,...
[ { "path": "Cargo.lock", "patch": "@@ -1481,6 +1481,7 @@ dependencies = [\n \"deno_runtime\",\n \"deno_semver\",\n \"deno_snapshots\",\n+ \"deno_subprocess_windows\",\n \"deno_task_shell\",\n \"deno_telemetry\",\n \"deno_terminal 0.2.2\",\n@@ -2083,6 +2084,7 @@ dependencies = [\n \"async-trait\",\n \...
2025-06-12T02:56:13
vuejs/vue
bff55e609ee7a37d0a2df0c9cbfcf13fad897d14
8260b17af04a9a6526756da61ac27a3e73c627f1
revert incorrect intermittent key logic
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -215,14 +215,6 @@ export function createPatchFunction (backend) {\n }\n }\n \n- function findOldIdx (vnode, oldCh, i, l) {\n- while (i++ < l) {\n- if (isDef(oldCh[i]) && sameVnode(vnode, oldCh[i])) {\n- return i\n- }\n- }\n- }\n...
2016-07-12T00:34:30
mrdoob/three.js
12b08b230c36c5fc4b03aed61dc5b8bc6be5f328
ef80ac74e6716a50104a57d8add6c8a950bff8d7
WebGPURenderer: PMREM (#27829) * WebGPURenderer: PMREM (WIP) * add temporary example * Added fromCubemap() * added pmrem and examples * cleanup * fix circular dependency * Revert "fix circular dependency" This reverts commit 83d68820b4a4b615124cc8292498f8929875083c. * update pmrem examples *...
[ { "path": "examples/files.json", "patch": "@@ -372,6 +372,9 @@\n \t\t\"webgpu_tsl_editor\",\n \t\t\"webgpu_tsl_transpiler\",\n \t\t\"webgpu_video_panorama\",\n+\t\t\"webgpu_pmrem_cubemap\",\n+\t\t\"webgpu_pmrem_equirectangular\",\n+\t\t\"webgpu_pmrem_scene\",\n \t\t\"webgpu_postprocessing_afterimage\",\n \t...
2024-02-29T21:00:53
golang/go
a8dd771e132beb8e4b2354f209cbb29b9f4fc815
bdb2d50fdf40706e7d7411f33ade80edac726707
crypto/tls: check if quic conn can send session ticket On SendSessionTicket, returns nil if SessionTicketsDisabled is disabled in config. Fixes #62032 Change-Id: Id0c89e2e6fb0805bbf108bb0cafdabdfbaf3897f Reviewed-on: https://go-review.googlesource.com/c/go/+/528755 Reviewed-by: Roland Shoemaker <roland@golang.org> R...
[ { "path": "src/crypto/tls/quic.go", "patch": "@@ -302,6 +302,9 @@ type QUICSessionTicketOptions struct {\n // Currently, it can only be called once.\n func (q *QUICConn) SendSessionTicket(opts QUICSessionTicketOptions) error {\n \tc := q.conn\n+\tif c.config.SessionTicketsDisabled {\n+\t\treturn nil\n+\t}\n...
2023-09-15T18:23:51
denoland/deno
dd91908fabb91fa3c454c579a3c842cd514d9b89
a3ede3e68f4e6fd17018390f11bb4d907724004b
fix(ext/node): fix `EventEmitter.on` (#29682) This fixes `EventEmitter.on` behaviors and enables `parallel/test-events-on-async-iterator.js` test case. Details: - Removing of AbortListener in `EventEmitter.on` wasn't working. This commit fixes it. - patches `signal[kEvents]` field if AbortSignal is passed to `EventEm...
[ { "path": "ext/node/polyfills/_events.mjs", "patch": "@@ -25,15 +25,24 @@\n \n \"use strict\";\n \n+import { primordials } from \"ext:core/mod.js\";\n+const {\n+ ArrayPrototypeMap,\n+ ObjectDefineProperty,\n+ ObjectEntries,\n+ SafeMap,\n+ SafeSet,\n+} = primordials;\n+\n const kRejection = Symbol.for(\...
2025-06-12T01:11:26
vuejs/vue
0de925bc14f90fa6fccfd6a3e90fe9360adfd47c
4be4b897a7d7dfe2bc939ae1d133d21fa1e0ee86
fix transition on child component root node
[ { "path": "src/platforms/web/runtime/modules/transition.js", "patch": "@@ -95,7 +95,12 @@ export function enter (vnode: VNodeWithData) {\n })\n \n // remove pending leave element on enter by injecting an insert hook\n- mergeHook(vnode.data.hook || (vnode.data.hook = {}), 'insert', () => {\n+ // make s...
2016-07-10T21:06:43
mrdoob/three.js
bafd714420b6c84e1453aec2a9eec4a9d60d92a2
ae1475f6b14ab3ea6d83ada67b162c90837cf13b
TSL: Fix tslFn generate in isolated cache (#27844)
[ { "path": "examples/jsm/nodes/code/CodeNode.js", "patch": "@@ -16,6 +16,12 @@ class CodeNode extends Node {\n \n \t}\n \n+\tisGlobal() {\n+\n+\t\treturn true;\n+\n+\t}\n+\n \tsetIncludes( includes ) {\n \n \t\tthis.includes = includes;", "additions": 6, "deletions": 0, "language": "JavaScript" ...
2024-02-29T05:58:11
golang/go
bdb2d50fdf40706e7d7411f33ade80edac726707
768c51e368e05739854c1413fdf7fd129d01e482
net: fix WriteMsgUDPAddrPort addr handling on IPv4 sockets Accept IPv4-mapped IPv6 destination addresses on IPv4 UDP sockets. Fixes #74737. Change-Id: I4624b9b8f861aedcae29e51d5298d23ce1c0f2c7 Reviewed-on: https://go-review.googlesource.com/c/go/+/689976 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accoun...
[ { "path": "src/net/ipsock_posix.go", "patch": "@@ -237,8 +237,12 @@ func ipToSockaddr(family int, ip IP, port int, zone string) (syscall.Sockaddr, e\n func addrPortToSockaddrInet4(ap netip.AddrPort) (syscall.SockaddrInet4, error) {\n \t// ipToSockaddrInet4 has special handling here for zero length slices.\n...
2025-07-25T07:14:16
denoland/deno
a3ede3e68f4e6fd17018390f11bb4d907724004b
76c95b9c44a69e5744c97ff823155760bd54db8f
fix(unstable): continue to deserialize patches field from lockfile (#29714) Co-authored-by: nathanwhit <nathanwhit@users.noreply.github.com>
[ { "path": "Cargo.lock", "patch": "@@ -892,7 +892,7 @@ dependencies = [\n \"chrono\",\n \"deno_bench_util\",\n \"deno_cache_dir\",\n- \"deno_lockfile 0.30.0\",\n+ \"deno_lockfile 0.30.1\",\n \"deno_semver\",\n \"deno_terminal 0.2.2\",\n \"deno_tower_lsp\",\n@@ -1469,7 +1469,7 @@ dependencies = [\n \"d...
2025-06-12T00:11:08
vuejs/vue
0e9cc97610611e0d2be7d1f16377f57c224988b5
7318bf45861d693d3b23a8922b24aede43f4e531
transition: ensure correct stale element removal timing + fix enter hook timing
[ { "path": "src/core/vdom/create-component.js", "patch": "@@ -254,15 +254,14 @@ function checkProp (\n }\n \n function mergeHooks (data: VNodeData) {\n- if (data.hook) {\n- for (let i = 0; i < hooksToMerge.length; i++) {\n- const key = hooksToMerge[i]\n- const fromParent = data.hook[key]\n- ...
2016-07-10T15:05:19
mrdoob/three.js
4800ed8f2e8e122fbc2d6661d0a6628d4186fd88
c4c01c3c86cc676306e1f32cb2cf8f6d48735b0d
VRMLLoader: Fix transparency settings for lines and points. (#27841)
[ { "path": "examples/jsm/loaders/VRMLLoader.js", "patch": "@@ -1012,7 +1012,9 @@ class VRMLLoader extends Loader {\n \n \t\t\t\t\tconst pointsMaterial = new PointsMaterial( {\n \t\t\t\t\t\tname: Loader.DEFAULT_MATERIAL_NAME,\n-\t\t\t\t\t\tcolor: 0xffffff\n+\t\t\t\t\t\tcolor: 0xffffff,\n+\t\t\t\t\t\topacity: ...
2024-02-28T19:34:42
golang/go
94d72355f662a1c8229db661cc068ea8e901641c
8eb5f6020e707672a846f0f83011b87e48039550
[dev.simd] simd: add emulations for bitwise ops and for mask/merge methods This CL adds the emulations under a "wrong name"; subsequent CLs will move the AVX512 versions of these operations out of the way, and then will rename these to their better names. Change-Id: I49e7a73e4fea74fb7bd26cb8062014568d7999ca Reviewed-...
[ { "path": "src/simd/genfiles.go", "patch": "@@ -50,13 +50,20 @@ var convert32Shapes = &shapes{\n \tfloats: []int{32},\n }\n \n-var avx512MaskedLoadShapes = &shapes{\n+var avx512Shapes = &shapes{\n \tvecs: []int{512},\n \tints: []int{8, 16, 32, 64},\n \tuints: []int{8, 16, 32, 64},\n \tfloats: []int{32,...
2025-07-30T21:42:10
vuejs/vue
2f482269735257f45e2d6fa98ab6e59344bfc58b
44ef3db486975b8c7e20bec38d2cf4aec072cdf6
use console.error as default behavior
[ { "path": "src/core/observer/watcher.js", "patch": "@@ -104,7 +104,7 @@ export default class Watcher {\n if (config.errorHandler) {\n config.errorHandler.call(null, e, this.vm)\n } else {\n- throw e\n+ console.error(e)\n }\n // return old value when evaluation f...
2016-07-10T02:59:24
denoland/deno
76c95b9c44a69e5744c97ff823155760bd54db8f
d107e169ff3b8ea60ab4a6859ef82a5201472f59
fix(fmt): fix line number in error message when syntax error thrown from external formatter (#29698) The line number in error message is off by one when external formatter raised syntax error. This commit fixes it by upgrading `dprint-plugin-typescript` (The issue was fixed in upstream https://github.com/dprint/dprint...
[ { "path": "Cargo.lock", "patch": "@@ -3353,9 +3353,9 @@ dependencies = [\n \n [[package]]\n name = \"dprint-plugin-typescript\"\n-version = \"0.95.5\"\n+version = \"0.95.6\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"a1120849c597c9196726c0e9df7032ed20eb0844289f0e81e9...
2025-06-11T23:58:44
golang/go
b3388569a187ea6be48caa41265f2b4dbc2fdfd3
d83b16fcb8de765f25cabbea63284406ea6dd091
reflect: handle zero-sized fields of directly-stored structures correctly type W struct { E struct{} X *byte } type W is a "direct" type. That is, it is a pointer-ish type that can be stored directly as the second word of an interface. But if we ask reflect for W's first field, that value must *not* be direct, as ...
[ { "path": "src/reflect/value.go", "patch": "@@ -1277,6 +1277,17 @@ func (v Value) Field(i int) Value {\n \t\t\tfl |= flagStickyRO\n \t\t}\n \t}\n+\tif fl&flagIndir == 0 && typ.Size() == 0 {\n+\t\t// Special case for picking a field out of a direct struct.\n+\t\t// A direct struct must have a pointer field a...
2025-08-07T22:30:54
mrdoob/three.js
e29ce31828e85a3ecf533984417911e2304f4320
89aa843cea57aa42d8d163a92313cba8a0a2e3d4
WebGPURenderer: Fix call clear() before rendering (#27835) * WebGPURenderer: Fix call clear() before rendering * cleanup * trying to make it clearer to the dev
[ { "path": "examples/jsm/renderers/common/RenderContext.js", "patch": "@@ -34,6 +34,8 @@ class RenderContext {\n \t\tthis.width = 0;\n \t\tthis.height = 0;\n \n+\t\tthis.isRenderContext = true;\n+\n \t}\n \n }", "additions": 2, "deletions": 0, "language": "JavaScript" }, { "path": "exampl...
2024-02-28T02:09:40
vuejs/vue
ac7d2dd5f454e792c636ee5cc7d8ca09fef88322
0764ae252e8b7a3e3222e9b119731e85936b841d
add "body" as reservedTag (#3248) fix "[Vue warn]: Unknown custom element: <body> - did you register the component correctly? ..."
[ { "path": "src/platforms/web/util/element.js", "patch": "@@ -9,7 +9,7 @@ export const namespaceMap = {\n }\n \n export const isReservedTag = makeMap(\n- 'html,base,head,link,meta,style,title,' +\n+ 'html,body,base,head,link,meta,style,title,' +\n 'address,article,footer,header,h1,h2,h3,h4,h5,h6,hgroup,n...
2016-07-09T13:51:16
denoland/deno
b9b49090b01ede51d3cb0f824003bf4f6ababdb9
b64d4cb125167e43283ab12ec8a2dc80359ad9b0
fix: support virtio vsock only on systems on which it is available (remainder) (#29709) See https://github.com/denoland/deno/issues/29268 for the related discussion. @devsnek @marvinhagemeister These are two patches I missed with the initial PR (https://github.com/denoland/deno/pull/29354)
[ { "path": "ext/http/http_next.rs", "patch": "@@ -1054,7 +1054,7 @@ where\n NetworkStream::Unix(conn) => {\n serve_http(conn, connection_properties, lifetime, tx, options)\n }\n- #[cfg(unix)]\n+ #[cfg(any(target_os = \"linux\", target_os = \"macos\"))]\n NetworkStream::Vsock(conn) => ...
2025-06-11T21:00:07
golang/go
f3606b0825c20e3f3ccdae00bb8d5d7d8dfd745e
ee7bb8969a62b12f466f818e4e3d836a2e126940
cmd/compile/internal/ssa: fix typo in LOONG64Ops.go comment Change-Id: I680bae7fc1a26c1f249ab833fa8d41e9387b2d50 Reviewed-on: https://go-review.googlesource.com/c/go/+/693456 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Re...
[ { "path": "src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go", "patch": "@@ -589,7 +589,7 @@ func init() {\n \t\t{name: \"FPT\", controls: 1}, // FP flag is true\n \t\t{name: \"FPF\", controls: 1}, // FP flag is false\n \t\t{name: \"BEQ\", controls: 2}, // controls[0] == controls[1]\n-\t\t{name: \"BNE\", c...
2025-08-06T02:31:59
mrdoob/three.js
89aa843cea57aa42d8d163a92313cba8a0a2e3d4
c66f9d6f3e38f2947ea862a9528125c12004d73a
OrbitControls: fix zoom-changed detection (#27834) * OrbitControls: fix zoom-changed detection * OrbitControls: clean-up
[ { "path": "examples/jsm/controls/OrbitControls.js", "patch": "@@ -261,6 +261,7 @@ class OrbitControls extends EventDispatcher {\n \t\t\t\tscope.target.clampLength( scope.minTargetRadius, scope.maxTargetRadius );\n \t\t\t\tscope.target.add( scope.cursor );\n \n+\t\t\t\tlet zoomChanged = false;\n \t\t\t\t// a...
2024-02-27T17:04:16
vuejs/vue
0764ae252e8b7a3e3222e9b119731e85936b841d
a06a2d00e34bfeceb2e2538a554eafaccae74e06
ensure unique key for elements with transition (fix #3247)
[ { "path": "src/platforms/web/compiler/modules/transition.js", "patch": "@@ -18,9 +18,14 @@ function transformNode (el: ASTElement) {\n }\n }\n \n+let transitionKey = 0\n function genData (el: ASTElement): string {\n return el.transition\n- ? `transition:${el.transition},`\n+ ? `transition:${el.tra...
2016-07-08T22:09:32
denoland/deno
b64d4cb125167e43283ab12ec8a2dc80359ad9b0
1a8e5edd0fa288e2164fcebf029cd87975938c99
fix(bundle): don't panic on broken pipe (#29706) `deno bundle main.js | less` and then `Ctrl + C` caused a panic because of `Broken pipe` error.
[ { "path": "cli/tools/bundle/mod.rs", "patch": "@@ -233,10 +233,7 @@ pub async fn bundle(\n \n if let Some(stdout) = response.write_to_stdout {\n let stdout = replace_require_shim(&String::from_utf8_lossy(&stdout));\n- #[allow(clippy::print_stdout)]\n- {\n- println!(\"{}\", stdout);\n- }\...
2025-06-11T19:05:28
golang/go
1f7ffca171cd8c50fe6a10eb77a84a95c5b37c61
8282b72d627269ed2c2f7db7ea744e109667d7b1
time: skip TestLongAdjustTimers on plan9 (too slow) The TestLongAdjustTimers test has been consistently timing out after 60 seconds on plan9-arm. Skip the test for plan9, as it is already skipped for being too slow on android and ios. Fixes #74921 Change-Id: Icc32e902cecd2e98971a898373fe8346b179437d Reviewed-on: htt...
[ { "path": "src/time/tick_test.go", "patch": "@@ -151,7 +151,7 @@ func TestTickerResetLtZeroDuration(t *testing.T) {\n }\n \n func TestLongAdjustTimers(t *testing.T) {\n-\tif runtime.GOOS == \"android\" || runtime.GOOS == \"ios\" {\n+\tif runtime.GOOS == \"android\" || runtime.GOOS == \"ios\" || runtime.GOOS...
2025-08-07T10:58:20
mrdoob/three.js
c66f9d6f3e38f2947ea862a9528125c12004d73a
6b50ba4a4559277ed8da98baec7c56c35180a752
3dmLoader: Updating to 8.4.0 (#27833) * Fixed eslint errors for examples * first RDK additions to 3dmLoader * updated PBR material properties conversion * compromises for glass * extractProperties now recursive * update table count to properties * update 3dmLoader * update 3dmLoader * Added mat...
[ { "path": "docs/examples/en/loaders/3DMLoader.html", "patch": "@@ -14,7 +14,7 @@ <h1>[name]</h1>\n \t\t\tA loader for Rhinoceros 3d files and objects. <br /><br />\n \t\t\tRhinoceros is a 3D modeler used to create, edit, analyze, document, render, animate, and translate NURBS curves, surfaces, breps, extrus...
2024-02-27T15:18:52
vuejs/vue
9a7db5d9be26841551b3c8dae2dd4afddcf1911b
ed3f3958b135ed7a9882042a653419cc14213630
fix keep-alive non-component child
[ { "path": "src/core/components/keep-alive.js", "patch": "@@ -13,14 +13,16 @@ export default {\n render () {\n const rawChild = this.child\n const realChild = getRealChild(this.child)\n- const cid = realChild.componentOptions.Ctor.cid\n- if (this.cache[cid]) {\n- const child = realChild....
2016-07-08T14:36:53