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
5024d0d884f8ca4fe74a861b5b20f6a3955762f2
b80ffb64d815596eb8882eaefa3e2d2920380634
cmd/compile: tweak example command in README While running ./src/all.bash, I got the following error: all.bash must be run from $GOROOT/src Change-Id: Iad271654ff8647501a324c282f01baf39605e3df GitHub-Last-Rev: 2e289babf1bc81c1a44c9a72a29659d8bf9d827b GitHub-Pull-Request: golang/go#75050 Reviewed-on: https://go-revie...
[ { "path": "src/cmd/compile/README.md", "patch": "@@ -281,11 +281,11 @@ dependencies, so is not suitable for distributed build systems.)\n ```\n $ go install golang.org/x/tools/cmd/toolstash@latest\n $ git clone https://go.googlesource.com/go\n- $ cd go\n+ $ export PATH=$PWD/go/bin:$PATH\n+ $ cd go/...
2025-08-19T15:47:29
mrdoob/three.js
645ff11b6e08ea0f845940a4ba13491c40198af2
7690b5090676101c5c3818eeadbf92f8fa7c60e1
WebGLRenderer: Track camera per render state. (#28113) * WebGLRenderer: Track camera per render state. * WebGLRenderer: Fix render state restore. * Examples: Clean up.
[ { "path": "examples/jsm/objects/Reflector.js", "patch": "@@ -161,16 +161,6 @@ class Reflector extends Mesh {\n \n \t\t\trenderer.setRenderTarget( currentRenderTarget );\n \n-\t\t\t// Restore viewport\n-\n-\t\t\tconst viewport = camera.viewport;\n-\n-\t\t\tif ( viewport !== undefined ) {\n-\n-\t\t\t\trendere...
2024-04-11T15:09:24
vuejs/vue
8367d489e02e5d5e965f17558aac908f71bf843c
a88e233f8943b78aa9d278956d273ef0140aa755
fix prop type in IE9
[ { "path": "src/core/util/props.js", "patch": "@@ -4,12 +4,12 @@ import { hasOwn, isObject, isPlainObject, capitalize, hyphenate } from 'shared/u\n import { observe, observerState } from '../observer/index'\n import { warn } from './debug'\n \n-// type PropOptions = {\n-// type: Function | Array<Function> ...
2016-08-11T05:24:30
mrdoob/three.js
5e371cc01da255e6c32d108617594fd6bd262acf
bbb6b50660b6b61bee2876b829944dfdbfbf5a53
docs: remove `THREE.` prefix from several addon uses (#28105) * docs: `THREE.KTX2Loader` -> `KTX2Loader` We no longer use the prefix `THREE.` for addons * docs: `THREE.GLTFLoader` -> `GLTFLoader` We no longer use the prefix `THREE.` for addons * docs: `THREE.OBJLoader` -> `OBJLoader` We no longer use th...
[ { "path": "docs/api/ar/loaders/managers/LoadingManager.html", "patch": "@@ -44,7 +44,7 @@ <h2>مثال للكود</h2>\n \t\t\tconsole.log( 'There was an error loading ' + url );\n \t\t};\n \t\n-\t\tconst loader = new THREE.OBJLoader( manager );\n+\t\tconst loader = new OBJLoader( manager );\n \t\tloader.load( 'file...
2024-04-10T08:18:53
denoland/deno
d15581fb19629c5560b09bf2893c8f1f90494c77
0f08eb076b6fcab9c290ee3c6d85d72a2961d18b
fix(ext/node): implement Certificate API (#29828)
[ { "path": "Cargo.lock", "patch": "@@ -1900,6 +1900,14 @@ dependencies = [\n \"x25519-dalek\",\n ]\n \n+[[package]]\n+name = \"deno_crypto_provider\"\n+version = \"0.1.0\"\n+dependencies = [\n+ \"aws-lc-rs\",\n+ \"aws-lc-sys\",\n+]\n+\n [[package]]\n name = \"deno_doc\"\n version = \"0.178.0\"\n@@ -2345,6 +...
2025-06-23T09:34:44
golang/go
c61db5ebd52a75af80da5afd2c2de3c6ddf080d2
07ee3bfc631cd6593c10b8715fc58b05d844f4ba
syscall: forkAndExecInChild1: don't reuse pid variable A named return variable pid is reused in a few places, and while the code is not wrong, it is somewhat confusing. This variable used to be called r1 before CL 456516 (which did the right thing, but slightly added to the confusion). Now, the code calling SYS_WRIT...
[ { "path": "src/syscall/exec_linux.go", "patch": "@@ -365,11 +365,11 @@ func forkAndExecInChild1(argv0 *byte, argv, envv []*byte, chroot, dir *byte, att\n \t\tif _, _, err1 = RawSyscall(SYS_CLOSE, uintptr(mapPipe[1]), 0, 0); err1 != 0 {\n \t\t\tgoto childerror\n \t\t}\n-\t\tpid, _, err1 = RawSyscall(SYS_READ...
2025-07-17T03:32:10
mrdoob/three.js
bbb6b50660b6b61bee2876b829944dfdbfbf5a53
7182185f1d4f17bafc4dc4dc9b3ec5b4a492fa0b
GLTFExporter: Fix missing clearcoat normal map scale. (#28099)
[ { "path": "examples/jsm/exporters/GLTFExporter.js", "patch": "@@ -2639,6 +2639,9 @@ class GLTFMaterialsClearcoatExtension {\n \t\t\t\tindex: writer.processTexture( material.clearcoatNormalMap ),\n \t\t\t\ttexCoord: material.clearcoatNormalMap.channel\n \t\t\t};\n+\n+\t\t\tif ( material.clearcoatNormalScale....
2024-04-10T05:24:50
vuejs/vue
5c55decade2091842490139229a25d917d73d317
18386c4cf4fe829f447687734a5bf03905d0db44
SSR: relay renderStream error in bundle renderer
[ { "path": "src/server/create-bundle-renderer.js", "patch": "@@ -17,7 +17,11 @@ export function createBundleRendererCreator (createRenderer) {\n renderToStream: (context) => {\n const res = new PassThrough()\n runInVm(code, context).then(app => {\n- renderer.renderToStream(app)...
2016-08-09T18:49:37
denoland/deno
0f08eb076b6fcab9c290ee3c6d85d72a2961d18b
2205ca5e4a088c3c2738c1ae510ddbd181a63cec
fix(jsr): allow using `import.meta.resolve` to resolve non-jsr remote urls (#29831) This was too restrictive. Closes https://github.com/denoland/deno/issues/25579
[ { "path": "cli/module_loader.rs", "patch": "@@ -1005,7 +1005,11 @@ impl<TGraphContainer: ModuleGraphContainer>\n }\n };\n \n- ensure_not_jsr_non_jsr_remote_import(&specifier, &referrer)?;\n+ // only verify this for an import and not import.meta.resolve\n+ if !is_import_meta {\n+ ensu...
2025-06-20T22:05:38
golang/go
07ee3bfc631cd6593c10b8715fc58b05d844f4ba
5a56d8848b4ffb79c5ccc11ec6fa01823a91aaf8
cmd/go: use modern pprof flags in documentation This change updates our mentions of pprof flags so that we now refer to the modern flag names instead of the legacy ones. Fixes #74336. Change-Id: Ie8fbc7407178219b84ce5171fa5e94621129267e Reviewed-on: https://go-review.googlesource.com/c/go/+/689095 Reviewed-by: Micha...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -3231,8 +3231,8 @@\n //\n // Several of the flags control profiling and write an execution profile\n // suitable for \"go tool pprof\"; run \"go tool pprof -h\" for more\n-// information. The --alloc_space, --alloc_objects, and --show_bytes\n-// options of ppr...
2025-07-21T03:25:57
mrdoob/three.js
c9576b8412aded8ef0a7deb159c8da617ef4d8b2
7a87e2231cd91dd4532aa4c049f83adcfd892f72
Playground: Revision mat*/bool color and json matrix* types (#28094) * fix node type * differentiates the color of a boolean from the material
[ { "path": "playground/DataTypeLib.js", "patch": "@@ -36,7 +36,7 @@ export function getLengthFromType( type ) {\n \n export function getLengthFromNode( value ) {\n \n-\tlet type = getTypeFromNode( value );\n+\tconst type = getTypeFromNode( value );\n \n \treturn getLengthFromType( type );\n \n@@ -46,10 +46,1...
2024-04-08T21:44:21
vuejs/vue
18386c4cf4fe829f447687734a5bf03905d0db44
75b2f5230179ce7076099b906096f3f88c3b44b9
fix static nodes optimization inside v-for (fix #3406)
[ { "path": "flow/compiler.js", "patch": "@@ -70,6 +70,7 @@ declare type ASTElement = {\n \n static?: boolean;\n staticRoot?: boolean;\n+ staticInFor?: boolean;\n staticProcessed?: boolean;\n hasBindings?: boolean;\n ", "additions": 1, "deletions": 0, "language": "JavaScript" }, { ...
2016-08-08T23:03:00
denoland/deno
c538f44fa005ac3742d68ff6c6fbfd86b2692cd8
1e9415cda8d8a1b5a6afa29c999db5887d74015f
fix(ext/node): improve comparison of faked objects in `deepStrictEqual` (#29819) This commit improves the handling of objects with faked prototypes in `deepStrictEqual`. This enables `parallel/test-assert-checktag.js` - `Date` objects are checked by `core.isDate` - In object comparison, now it checks `obj.toString()`...
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -5,7 +5,7 @@ import { stringify } from \"jsr:@std/yaml@^0.221/stringify\";\n // Bump this number when you want to purge the cache.\n // Note: the tools/release/01_bump_crate_versions.ts script will update this version\n // automatically via regex, s...
2025-06-20T14:33:18
golang/go
5a56d8848b4ffb79c5ccc11ec6fa01823a91aaf8
c3927a47f092fc7248d973f4d8a64ab410804986
cmd/compile: ensure we use allowed registers for input-clobbering instructions For instructions which clobber their input register, we make a second copy of the input value so it is still available in a register for future instructions. That second copy might not respect the register input restrictions for the instru...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -1725,10 +1725,9 @@ func (s *regAllocState) regalloc(f *Func) {\n \t\t\t\t\t// spilling the value with the most distant next use.\n \t\t\t\t\tcontinue\n \t\t\t\t}\n-\t\t\t\t// Copy input to a new clobberable register.\n+\t\t\t\t// Copy input...
2025-08-18T17:17:27
mrdoob/three.js
7a87e2231cd91dd4532aa4c049f83adcfd892f72
6ca8024b11074c2646624418158616cc998a608e
Playground: Fix NodePrototypes being available across load/save-cycles (#28030)
[ { "path": "playground/editors/NodePrototypeEditor.js", "patch": "@@ -87,6 +87,12 @@ export class NodePrototypeEditor extends JavaScriptEditor {\n \n \tsetEditor( editor ) {\n \n+\t\tif ( editor === null && this.editor ) {\n+\n+\t\t\tthis.editor.removeClass( this._prototype );\n+\n+\t\t}\n+\n \t\tsuper.setEd...
2024-04-08T21:40:08
vuejs/vue
6e1597cf0bc64cc5db77040900af57f06cf02422
21908b7267a9ff6b425b8261f9a38a2a0df2b72d
fix quote decoding for templates retrieved from innerHTML (fix #3403)
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -28,7 +28,6 @@ export function generate (\n dataGenFns = pluckModuleFunction(options.modules, 'genData')\n platformDirectives = options.directives || {}\n const code = ast ? genElement(ast) : '_h(\"div\")'\n- // console.log(code)\n staticRende...
2016-08-08T02:33:21
denoland/deno
284f652ea8911d851a8356fe1bdfa3b1bf523bf4
36ed70fffee944eccbf77d5e49f83e6350c542a9
fix(ext/node): fix assertion error message of assert.ok (#29803)
[ { "path": "ext/node/polyfills/assert.ts", "patch": "@@ -65,9 +65,10 @@ function toNode(\n expected: unknown;\n message?: string | Error;\n operator?: string;\n+ stackStartFn?: Function;\n },\n ) {\n- const { operator, message, actual, expected } = opts || {};\n+ const { operator, message,...
2025-06-19T12:35:26
golang/go
c3927a47f092fc7248d973f4d8a64ab410804986
77f911e31c243a8302c086d64dbef340b0c999b8
runtime: fix comments in tracetype.go They seem to have been copy and pasted from tracestack.go without being updated. Change-Id: I6a6a69645a778fe8e6e8a2f4a80429f20e90162e Reviewed-on: https://go-review.googlesource.com/c/go/+/674215 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount...
[ { "path": "src/runtime/tracetype.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-// Trace stack table and acquisition.\n+// Trace type table.\n \n package runtime\n \n@@ -13,7 +13,7 @@ import (\n \t\"unsafe\"\n )...
2025-05-19T18:46:47
mrdoob/three.js
6ca8024b11074c2646624418158616cc998a608e
6421f3a49ebed3d07de781776f47624e6d26e896
Playground: Fix animation loop reference (#28093)
[ { "path": "playground/index.html", "patch": "@@ -125,7 +125,7 @@\n \n \t\t\t\t//\n \n-\t\t\t\trenderer.setAnimationLoop( render );\n+\t\t\t\trenderer.setAnimationLoop( animate );\n \t\t\t\trenderer.toneMapping = THREE.LinearToneMapping;\n \t\t\t\trenderer.toneMappingExposure = 1;\n \t\t\t\tdocument.body.app...
2024-04-08T21:29:40
vuejs/vue
21908b7267a9ff6b425b8261f9a38a2a0df2b72d
1c0effa57771a3da65071cd216a7586fd61cd2ac
ensure children is only re-resolved on parent update (fix #3400)
[ { "path": "src/core/instance/lifecycle.js", "patch": "@@ -4,6 +4,7 @@ import Watcher from '../observer/watcher'\n import { emptyVNode } from '../vdom/vnode'\n import { observerState } from '../observer/index'\n import { warn, validateProp, remove, noop } from '../util/index'\n+import { resolveSlots } from '...
2016-08-07T05:41:54
denoland/deno
e99b1c1f86d0095c5969f4dd61969e1a762424c0
d84866e93355bce0098827255f0164969bada6a7
feat: allow base64 ca cert in args (#29814) This allows loading a base64 encoded cert directly from arg/env by prefixing it with `base64:`
[ { "path": "Cargo.lock", "patch": "@@ -2190,6 +2190,7 @@ name = \"deno_lib\"\n version = \"0.25.0\"\n dependencies = [\n \"aws-lc-rs\",\n+ \"base64 0.22.1\",\n \"capacity_builder\",\n \"deno_error\",\n \"deno_fs\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "...
2025-06-19T11:04:16
golang/go
77f911e31c243a8302c086d64dbef340b0c999b8
786be1d2bff0192288dfc2832e5012ad6b0816be
internal/trace: emit final sync event for generation in Go 1.26+ CL 693398 returned the error from reading a generation immediately, but this is wrong -- a Sync event must be emitted to indicate the end of the trace before reporting the error. This caused TestCrashWhileTracing to fail because that test has a high like...
[ { "path": "src/internal/trace/reader.go", "patch": "@@ -31,6 +31,7 @@ type Reader struct {\n \tcpuSamples []cpuSample\n \torder ordering\n \tsyncs int\n+\treadGenErr error\n \tdone bool\n \n \t// Spill state.\n@@ -153,9 +154,18 @@ func (r *Reader) ReadEvent() (e Event, err error) {\n \t\tif ...
2025-08-15T23:30:08
mrdoob/three.js
958eddf941eae644b41df7229a5801737d1a2d7e
c3b2fb018a8b4872b64013f36c989dfaba43b9d0
fix typos in korean docs (#28090)
[ { "path": "docs/manual/ko/introduction/Creating-a-scene.html", "patch": "@@ -63,7 +63,7 @@ <h2>Scene 만들기</h2>\n \n \t\t<p>다음은 renderer입니다. 마법이 일어나는 곳입니다. 같이 사용하는 WebGLRenderer와 더불어, three.js는 다른 몇가지 renderer를 사용하는데, 오래된 브라우저 혹은 모종의 사유로 WebGL을 지원 안할때의 대비용으로 사용하는 것입니다.</p>\n \n-\t\t<p>renderer 인스턴스를 생섬함과 동시에,...
2024-04-08T13:49:05
vuejs/vue
1c0effa57771a3da65071cd216a7586fd61cd2ac
c2c68d6a22de1f633a18c62eab46938eed917f2f
skip v-show transition if value is the same (fix #3395)
[ { "path": "src/platforms/web/runtime/directives/show.js", "patch": "@@ -19,7 +19,8 @@ export default {\n }\n el.style.display = value ? '' : 'none'\n },\n- update (el: HTMLElement, { value }: VNodeDirective, vnode: VNodeWithData) {\n+ update (el: HTMLElement, { value, oldValue }: VNodeDirective,...
2016-08-06T14:26:15
denoland/deno
538f8870dc6250ea0ed3ea610d1ee84880427dfd
a334610faf9aee531c204e22a1474295460d56e1
fix(ext/node): support KeyObject in publicEncrypt/privateDecrypt (#29798)
[ { "path": "ext/node/polyfills/internal/crypto/cipher.ts", "patch": "@@ -35,6 +35,7 @@ import {\n getArrayBufferOrView,\n KeyObject,\n } from \"ext:deno_node/internal/crypto/keys.ts\";\n+import { isKeyObject } from \"ext:deno_node/internal/crypto/_keys.ts\";\n import type { BufferEncoding } from \"ext:de...
2025-06-19T00:48:29
golang/go
4a7fde922ff12dce9d4e00f1b1e658fa907e488d
cb814bd5bc3f0575e8d0e26370c05456770cb3da
internal/trace: add end-of-generation signal to trace This change takes the EvEndOfGeneration event and promotes it to a real event that appears in the trace. This allows the trace parser to unambiguously identify truncated traces vs. broken traces. It also makes a lot of the logic around parsing simpler, because the...
[ { "path": "src/internal/trace/batch.go", "patch": "@@ -44,6 +44,10 @@ func (b *batch) isSyncBatch(ver version.Version) bool {\n \t\t\t(tracev2.EventType(b.data[0]) == tracev2.EvSync && ver >= version.Go125))\n }\n \n+func (b *batch) isEndOfGeneration() bool {\n+\treturn b.exp == tracev2.NoExperiment && len(...
2025-08-05T21:37:07
mrdoob/three.js
a84ff89421d6e6ad27293f4adcf58c61fd8be8cb
cf5db53401f02de87efa23ad7d27e13a7aad0189
WebGPURenderer: Fix `faceDirection` in `WebGLBackend` if used `BackSide` (#28064) * Fix faceDirection in WebGLBackend if used BackSide * Added frontFaceCW
[ { "path": "examples/jsm/nodes/display/FrontFacingNode.js", "patch": "@@ -1,5 +1,6 @@\n import Node, { addNodeClass } from '../core/Node.js';\n import { nodeImmutable, float } from '../shadernode/ShaderNode.js';\n+import { BackSide, WebGLCoordinateSystem } from 'three';\n \n class FrontFacingNode extends Nod...
2024-04-03T19:23:30
vuejs/vue
2d58d0e3d70b535ed1ee964a8f8198668fc08112
ecd9c7dfe909039a6083545b7ac83a9b865c519c
fix all unit tests
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -210,14 +210,10 @@ function genDirectives (el: ASTElement): string | void {\n }\n }\n \n-function genChildren (el: ASTElement, asThunk?: boolean): string | void {\n- if (!el.children.length) {\n- return\n+function genChildren (el: ASTElement): st...
2016-08-05T17:23:43
denoland/deno
a334610faf9aee531c204e22a1474295460d56e1
b383433708bac190de8b193387f042c93be935e4
fix(ext/node): add validation to Cipheriv methods (#29800)
[ { "path": "ext/node/polyfills/internal/crypto/cipher.ts", "patch": "@@ -41,7 +41,10 @@ import type {\n Encoding,\n } from \"ext:deno_node/internal/crypto/types.ts\";\n import { getDefaultEncoding } from \"ext:deno_node/internal/crypto/util.ts\";\n-import { ERR_INVALID_ARG_VALUE } from \"ext:deno_node/inte...
2025-06-19T00:40:50
golang/go
cb814bd5bc3f0575e8d0e26370c05456770cb3da
78a3968c2c9f2d6e8eb6dc263b4a2517c72d71be
net: skip TestIPv4WriteMsgUDPAddrPort on plan9 This test uses method (*UDPConn).WriteMsgUDPAddrPort, which is not supported on Plan 9. The test needs to be skipped, like for example TestAllocs which is already skipped for the same reason. Fixes #75017 Change-Id: Iaa0e6ecdba0938736d8f675fcac43c46db34cb5d Reviewed-on:...
[ { "path": "src/net/udpsock_test.go", "patch": "@@ -710,6 +710,11 @@ func TestIPv6WriteMsgUDPAddrPortTargetAddrIPVersion(t *testing.T) {\n // WriteMsgUDPAddrPort accepts IPv4 and IPv4-mapped IPv6 destination addresses,\n // and rejects IPv6 destination addresses on a \"udp4\" connection.\n func TestIPv4Write...
2025-08-14T15:25:56
mrdoob/three.js
08fbd476f88cf14fd7871998eb2c80863f1a3f7c
cd385372374f5513f5815d693dc264140788e574
[Loader] Fix for LWOLoader geometry correction (#28029) * [Loader] Fix for LWOLoader geometry correction fix: IFFParser.js now reads x as -x instead of z to -z. This now sets the geometry and pivot points in the correct location. This fixes #26733 * fix: webgl_loader_lwo updated with corrected coordinates for...
[ { "path": "examples/jsm/loaders/lwo/IFFParser.js", "patch": "@@ -651,10 +651,13 @@ class IFFParser {\n \t// LAYR: number[U2], flags[U2], pivot[VEC12], name[S0], parent[U2]\n \tparseLayer( length ) {\n \n+\t\tvar number = this.reader.getUint16();\n+\t\tvar flags = this.reader.getUint16(); // If the least sig...
2024-04-02T09:01:27
vuejs/vue
fe801b16e4da63513bce95bfa762a8a36d83fe59
b5b963f51df1fa3124cd8a9846be5455408bc52a
wip: fix $parent after children change
[ { "path": "flow/vnode.js", "patch": "@@ -4,7 +4,6 @@ declare type VNodeComponentOptions = {\n Ctor: Class<Component>;\n propsData: ?Object;\n listeners: ?Object;\n- parent: Component;\n children: ?VNodeChildren;\n tag?: string;\n }", "additions": 0, "deletions": 1, "language": "JavaSc...
2016-08-05T16:43:35
mrdoob/three.js
0dd43bd6fe4c8a72ed6882cfc5b06a6018cb210c
1ff0d56b1897d326f061178eb71c767beee99070
fix viewZToPerspectiveDepth calculation (#28045)
[ { "path": "examples/jsm/nodes/display/ViewportDepthNode.js", "patch": "@@ -75,7 +75,7 @@ export const orthographicDepthToViewZ = ( depth, near, far ) => near.sub( far ).\n // NOTE: https://twitter.com/gonnavis/status/1377183786949959682\n \n // -near maps to 0; -far maps to 1\n-export const viewZToPerspecti...
2024-04-02T03:42:55
golang/go
78a3968c2c9f2d6e8eb6dc263b4a2517c72d71be
ab8121a407280bf39bdd401699476feb39ccd0f7
runtime/metrics: add metric for current Go-owned thread count Fixes #15490. Change-Id: I6ce9edc46398030ff639e22d4ca4adebccdfe1b7 Reviewed-on: https://go-review.googlesource.com/c/go/+/690399 Auto-Submit: Michael Knyszek <mknyszek@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservic...
[ { "path": "src/runtime/metrics.go", "patch": "@@ -532,6 +532,13 @@ func initMetrics() {\n \t\t\t\tsched.stwTotalTimeOther.write(out)\n \t\t\t},\n \t\t},\n+\t\t\"/sched/threads/total:threads\": {\n+\t\t\tdeps: makeStatDepSet(schedStatsDep),\n+\t\t\tcompute: func(in *statAggregate, out *metricValue) {\n+\t\t\...
2025-07-24T21:38:37
denoland/deno
b383433708bac190de8b193387f042c93be935e4
400a9565c335b51d78c8909f4dbf1dbd4fb5e5d8
fix(install): ignore unknown JSR export errors on top level install (#29807) Couldn't write a test, but it happens in some edge cases.
[ { "path": "cli/graph_util.rs", "patch": "@@ -77,6 +77,7 @@ pub struct GraphValidOptions<'a> {\n pub exit_integrity_errors: bool,\n pub allow_unknown_media_types: bool,\n pub ignore_graph_errors: bool,\n+ pub allow_unknown_jsr_exports: bool,\n }\n \n /// Check if `roots` and their deps are available. ...
2025-06-18T18:37:14
vuejs/vue
22894810df6141f72f1efbf9bada4746878b19b7
c66b7566c682af653dc475fab1475db5484e40ee
fix ssr v-bind test
[ { "path": "test/ssr/ssr-string.spec.js", "patch": "@@ -411,11 +411,11 @@ describe('SSR: renderToString', () => {\n it('v-bind object', done => {\n renderVmWithOptions({\n data: {\n- test: { id: 'a', class: 'b', value: 'c' }\n+ test: { id: 'a', class: ['a', 'b'], value: 'c' }\n ...
2016-08-05T07:22:31
golang/go
bca3e98b8aa4f754ea3604b62ef42f64dec88800
052fcde9fdd1655f823e810a284c651b3481a433
cmd/go: test barrier actions Add a barrier action between test run action and it's dependencies. Run will depend on this barrier action, and the barrier action will depend on: 1. The run action's dependencies 2. The previous barrier action This will force internal/work to schedule test run actions in-order, preventin...
[ { "path": "src/cmd/go/internal/test/test.go", "patch": "@@ -1044,11 +1044,36 @@ func runTest(ctx context.Context, cmd *base.Command, args []string) {\n \t\tprints = append(prints, printTest)\n \t}\n \n-\t// Order runs for coordinating start JSON prints.\n+\t// Order runs for coordinating start JSON prints v...
2025-08-13T20:06:31
denoland/deno
0f0220e461b0845431cdfcf8d01d2721fe9ad0de
a6a61e66e9cd4216c8063b617c5fdc306e341954
fix(ext/node): add `fchmod` and `fchmodSync` (#29791) This PR implements `node:fs` `fchmod` and `fchmodSync`. Towards https://github.com/denoland/deno/issues/27664 .
[ { "path": "ext/fs/lib.rs", "patch": "@@ -305,6 +305,8 @@ deno_core::extension!(deno_fs,\n op_fs_file_sync_async,\n op_fs_file_stat_sync,\n op_fs_file_stat_async,\n+ op_fs_fchmod_async,\n+ op_fs_fchmod_sync,\n op_fs_fchown_async,\n op_fs_fchown_sync,\n op_fs_flock_async,", "...
2025-06-18T10:48:14
mrdoob/three.js
a03a74a1bec9bf6302f6b8b95c37a41ff6a6571e
fa5b00945343c2a294403c1ece92076d7893fb7c
DataUtils: Add `toRGB9E5()` and `fromRGB9E5()`. (#28012) * DataUtils: Add `toRGB9E5()` and `fromRGB9E5()`. * DataUtils: Fix defines.
[ { "path": "docs/api/en/extras/DataUtils.html", "patch": "@@ -29,6 +29,25 @@ <h3>[method:Number fromHalfFloat]( [param:Number val] )</h3>\n \t\t\tprecision floating point value.\n \t\t</p>\n \n+\n+\t\t<h3>[method:Uint32Array toRGB9E5]( [param:Number r], [param:Number g], [param:Number b], [param:Uint32Array ...
2024-03-28T09:47:12
vuejs/vue
c66b7566c682af653dc475fab1475db5484e40ee
59b2a0eeb32126cd6a35c0c82cfdcddf216e0df8
fix flow
[ { "path": "flow/vnode.js", "patch": "@@ -53,7 +53,6 @@ declare interface VNodeData {\n };\n directives?: Array<VNodeDirective>;\n keepAlive?: boolean;\n- [key: string]: any;\n }\n \n declare type VNodeDirective = {", "additions": 0, "deletions": 1, "language": "JavaScript" }, { "p...
2016-08-05T07:10:40
denoland/deno
a6a61e66e9cd4216c8063b617c5fdc306e341954
94e26a90ea2f04d2fcf30c3a6229e4e8050cb9ec
fix(ext/node): deprecate Hash and Hmac constructors (#29774)
[ { "path": "ext/node/polyfills/crypto.ts", "patch": "@@ -143,8 +143,8 @@ import type {\n import {\n createHash,\n getHashes,\n- Hash,\n- Hmac,\n+ Hash as Hash_,\n+ Hmac as Hmac_,\n } from \"ext:deno_node/internal/crypto/hash.ts\";\n import { X509Certificate } from \"ext:deno_node/internal/crypto/x509...
2025-06-18T01:37:03
golang/go
a8564bd412d4495a6048f981d30d4d7abb1e45a7
924fe98902cdebf20825ab5d1e4edfc0fed2966f
runtime: make all synctest bubble violations fatal panics Unblocking a bubbled goroutine from outside the bubble is an error and panics. Currently, some of those panics are regular panics and some are fatal. We use fatal panics in cases where its difficult to panic without leaving something in an inconsistent state. ...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -383,57 +383,59 @@ func TestChannelMovedOutOfBubble(t *testing.T) {\n \tfor _, test := range []struct {\n \t\tdesc string\n \t\tf func(chan struct{})\n-\t\twantPanic string\n+\t\twantFatal string\n \t}{{\n \t\tdesc: \"receive\",\n...
2025-08-14T17:27:54
mrdoob/three.js
fa5b00945343c2a294403c1ece92076d7893fb7c
156cb35aa2b9bd75a638ba9aa188bf937ce4f278
Examples: Fix webgpu_multiple_rendertargets warning (#28015)
[ { "path": "examples/webgpu_multiple_rendertargets.html", "patch": "@@ -49,7 +49,6 @@\n \t\t\tconst gui = new GUI();\n \t\t\tgui.add( parameters, 'samples', 0, 4 ).step( 1 );\n \t\t\tgui.add( parameters, 'wireframe' );\n-\t\t\tgui.onChange( render );\n \n \t\t\t*/\n \n@@ -142,7 +141,7 @@\n \n \t\t\t\tconst l...
2024-03-28T00:22:03
vuejs/vue
351aef3cb4ada980f105f98f8b835876e8d4d689
0212521419fd44f77afb0b97c78757ba38bd5e53
use comment node as empty placeholder (fix <transition> SSR hydration)
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -30,6 +30,7 @@ function sameVnode (vnode1, vnode2) {\n return (\n vnode1.key === vnode2.key &&\n vnode1.tag === vnode2.tag &&\n+ vnode1.isComment === vnode2.isComment &&\n !vnode1.data === !vnode2.data\n )\n }\n@@ -87,12 +88,7 @@ export fun...
2016-08-05T05:52:09
golang/go
9783f86bc8953c3d93853b2382a4de011c5e26a7
a4ad41708d8303a561ed072596222aae990f8dbd
[dev.simd] cmd/compile: accounts rematerialize ops's output reginfo This CL implements the check for rematerializeable value's output regspec at its remateralization site. It has some potential problems, please see the TODO in regalloc.go. Fixes #70451. Change-Id: Ib624b967031776851136554719e939e9bf116b7c Reviewed-o...
[ { "path": "src/cmd/compile/internal/ssa/func.go", "patch": "@@ -102,6 +102,7 @@ func (c *Config) NewFunc(fe Frontend, cache *Cache) *Func {\n \t\tNamedValues: make(map[LocalSlot][]*Value),\n \t\tCanonicalLocalSlots: make(map[LocalSlot]*LocalSlot),\n \t\tCanonicalLocalSplits: make(map[LocalSlotSpli...
2025-08-12T16:53:44
denoland/deno
94e26a90ea2f04d2fcf30c3a6229e4e8050cb9ec
9dd0e9aa15dfab867c16155aa719a2ed38b23308
fix(ext/node): improve scrypt support (#29773)
[ { "path": "ext/node/ops/crypto/mod.rs", "patch": "@@ -644,7 +644,7 @@ fn scrypt(\n parallelization,\n keylen as usize,\n )\n- .map_err(|_| JsErrorBox::generic(\"scrypt params construction failed\"))?;\n+ .map_err(|_| JsErrorBox::generic(\"Invalid scrypt param\"))?;\n \n // Call into scrypt\n ...
2025-06-18T00:50:37
mrdoob/three.js
66f7aa81379d0d3b31b7e58c9ecc42e08a16d724
5eea9d79e40c202970971f0515a6fa54c565109a
Node: Rename `.setReference()` -> `.updateReference()` and use reference in `renderMap`/`frameMap` (#28010) * NodeFrame: Use reference in renderMap/frameMap * Node: Rename `.setReference()` -> `.updateReference()` * ViewportSharedTextureNode: Fix reference
[ { "path": "examples/jsm/nodes/accessors/MaterialReferenceNode.js", "patch": "@@ -24,7 +24,7 @@ class MaterialReferenceNode extends ReferenceNode {\n \n \t}*/\n \n-\tsetReference( state ) {\n+\tupdateReference( state ) {\n \n \t\tthis.reference = this.material !== null ? this.material : state.material;\n ", ...
2024-03-27T07:19:07
vuejs/vue
8b46747dd63228f3d48030f26d414bba46ad3888
40b93e6527d9ecdb308925114bf14cb60b36eae0
fix hydration coverage
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -397,17 +397,14 @@ export function createPatchFunction (backend) {\n }\n \n function assertNodeMatch (node, vnode) {\n- let match = true\n- if (!node) {\n- match = false\n- } else if (vnode.tag) {\n- match =\n+ if (vnode.tag) {\n+ ...
2016-08-05T02:20:13
mrdoob/three.js
99259ffd7e5798533101b8c67293c620c9437d24
2309d42e7d0f2dea9b5903adac378c4764d547e5
WebGPURenderer: Fix 16-bit normalized attributes (#28009) * fix 16-bit normalized attributes * cleanup
[ { "path": "examples/jsm/renderers/webgpu/utils/WebGPUAttributeUtils.js", "patch": "@@ -47,7 +47,7 @@ class WebGPUAttributeUtils {\n \t\t\tlet array = bufferAttribute.array;\n \n \t\t\t// patch for INT16 and UINT16\n-\t\t\tif ( array.constructor === Int16Array || array.constructor === Uint16Array ) {\n+\t\t\...
2024-03-27T05:40:55
denoland/deno
9dd0e9aa15dfab867c16155aa719a2ed38b23308
2572b8398b4f9011523a896c1f974b6132a22408
test(lib): fix SIGSEGV on x86_64-unknown-linux-gnu targets (#29794) Fixes #29793. This PR reapplies https://github.com/denoland/deno/pull/22152 (see issue for further details). Changes `deno_core` in tests to be built with the `unsafe_use_unprotected_platform` feature. The issue is caused by two or more threads (in...
[ { "path": "Cargo.lock", "patch": "@@ -892,6 +892,7 @@ dependencies = [\n \"chrono\",\n \"deno_bench_util\",\n \"deno_cache_dir\",\n+ \"deno_core\",\n \"deno_lockfile 0.30.1\",\n \"deno_semver\",\n \"deno_terminal 0.2.2\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { ...
2025-06-18T00:49:25
vuejs/vue
21d7ad65b594aa4535b1427574eb7812d38456bf
5ed0c16b6886057b59dae2abdd59e31f73e44e41
filter out empty strings when normalizing children (fix SSR match when containing text is empty)
[ { "path": "src/core/vdom/helpers.js", "patch": "@@ -31,7 +31,7 @@ export function normalizeChildren (\n } else if (isPrimitive(c)) {\n if (last && last.text) {\n last.text += String(c)\n- } else {\n+ } else if (c !== '') {\n // convert primitive to vnode\n ...
2016-08-04T19:03:53
mrdoob/three.js
2309d42e7d0f2dea9b5903adac378c4764d547e5
ca14c9eb194848bc277a5592956be57c14641877
WebGPURenderer: Add (u)int16 Support (#28008) * add int16 support * fix examples * fix
[ { "path": "examples/jsm/nodes/accessors/BatchNode.js", "patch": "@@ -4,8 +4,7 @@ import { positionLocal } from './PositionNode.js';\n import { nodeProxy, vec3, mat3, mat4, int, ivec2, float } from '../shadernode/ShaderNode.js';\n import { textureLoad } from './TextureNode.js';\n import { textureSize } from ...
2024-03-27T02:52:11
denoland/deno
2572b8398b4f9011523a896c1f974b6132a22408
59c416662b4b52e37731893f89012a86c8447555
fix(ext/node): fix input validation of crypto hkdf (#29775)
[ { "path": "ext/node/lib.rs", "patch": "@@ -292,6 +292,7 @@ deno_core::extension!(deno_node,\n ops::crypto::op_node_fill_random,\n ops::crypto::op_node_gen_prime_async,\n ops::crypto::op_node_gen_prime,\n+ ops::crypto::op_node_get_hash_size,\n ops::crypto::op_node_get_hashes,\n ops::cr...
2025-06-18T00:49:14
vuejs/vue
fea13b8aed85739b1d179e3875ed3c1341544ad3
b283f53fd0d3361882994665a3f9cde03cfeb936
fix flow error
[ { "path": "src/platforms/web/server/modules/style.js", "patch": "@@ -17,7 +17,7 @@ export default function renderStyle (node: VNodeWithData): ?string {\n for (const key in styles) {\n res += `${hyphenate(key)}:${styles[key]};`\n }\n- res += staticStyle\n+ res += stati...
2016-08-03T02:13:54
denoland/deno
59c416662b4b52e37731893f89012a86c8447555
bc74fadac57f7b690e6088296c8d2ded316b9dec
fix(fmt): handle TS as syntax in Svelte each block (#29789) Closes #29768
[ { "path": "Cargo.lock", "patch": "@@ -5459,9 +5459,9 @@ dependencies = [\n \n [[package]]\n name = \"markup_fmt\"\n-version = \"0.19.1\"\n+version = \"0.21.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"ff37c5cadfdf4d91c0f140d516755c055a184a4e37757ff4a071272635b9f546...
2025-06-17T18:10:06
vuejs/vue
69ba01e7d48286f10d014f573ad4c8849beef148
fd3377d1a9b962c558bdac2125664888c93aa143
support :style binding to strings (fix #3379)
[ { "path": "src/platforms/web/runtime/modules/style.js", "patch": "@@ -28,6 +28,13 @@ function updateStyle (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n const elm: any = vnode.elm\n const oldStyle: any = oldVnode.data.style || {}\n let style: any = vnode.data.style || {}\n+\n+ // handle string\n...
2016-08-03T01:17:22
denoland/deno
bc74fadac57f7b690e6088296c8d2ded316b9dec
b979c886e67e3cc6cb623493c62b566d2dceddfa
fix(ext/node): use primordials in `ext/node/polyfills/internal/event_target.mjs` (#29772)
[ { "path": "ext/node/polyfills/internal/event_target.mjs", "patch": "@@ -1,15 +1,37 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Node.js contributors. All rights reserved. MIT License.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-f...
2025-06-17T02:56:12
golang/go
ca66f907dd44d57c93b2dc5ecafcb8addf2b23c3
4b1800e47632d52006e3080580e4e60792389759
cmd/compile: use generated loops instead of DUFFCOPY on amd64 This reverts commit 4e182db5fc876564a4f87a0602c58ea0ddc6e37c (CL 695196), which is itself a revert of ec9e1176c3209cf92e73e3deb2d8073fab5ea4d6 (CL 678620). So this CL is exactly the same as CL 678620, but with a regalloc fix (CL 696035) submitted first. C...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -142,45 +142,6 @@ func memIdx(a *obj.Addr, v *ssa.Value) {\n \ta.Index = i\n }\n \n-// DUFFZERO consists of repeated blocks of 4 MOVUPSs + LEAQ,\n-// See runtime/mkduff.go.\n-const (\n-\tdzBlocks = 16 // number of MOV/ADD blocks\n-\tdzBlockL...
2025-08-13T16:41:17
vuejs/vue
42c1950dd07d52e00e0aa3c38888744dcc60ab4c
d9d4e7f196f548ede9da006479b040bbe75cd674
properly merge classes between multiple nested components sharing the same element (fix #3365)
[ { "path": "src/platforms/web/util/class.js", "patch": "@@ -4,14 +4,18 @@ import { isObject } from 'shared/util'\n \n export function genClassForVnode (vnode: VNode): string {\n let data = vnode.data\n- // Important: check if this is a component container node\n- // or a child component root node\n- let...
2016-08-01T19:12:16
denoland/deno
b979c886e67e3cc6cb623493c62b566d2dceddfa
e5b96243acd716eba06e257b29d1655557792e34
fix(ext/node): fix error type in DiffieHellman constructor (#29721)
[ { "path": "ext/node/polyfills/internal/crypto/diffiehellman.ts", "patch": "@@ -117,7 +117,10 @@ export class DiffieHellmanImpl {\n // The supplied parameter is our primeLength, generate a suitable prime.\n this.#primeLength = sizeOrKey as number;\n if (this.#primeLength < 2) {\n- th...
2025-06-17T02:43:26
golang/go
4b1800e47632d52006e3080580e4e60792389759
af8870708bbaf15956a27cbab15582b4c666855e
encoding/json/v2: cleanup error constructors There is no need to explicitly pass in the options since this contained within the Encoder or Decoder struct ever since https://github.com/go-json-experiment/json/pull/163. Thus, remove it as an argument and fetch it from the coder. This only modifies code that is compile...
[ { "path": "src/encoding/json/v2/arshal_default.go", "patch": "@@ -128,7 +128,7 @@ func makeBoolArshaler(t reflect.Type) *arshaler {\n \tfncs.marshal = func(enc *jsontext.Encoder, va addressableValue, mo *jsonopts.Struct) error {\n \t\txe := export.Encoder(enc)\n \t\tif mo.Format != \"\" && mo.FormatDepth ==...
2025-07-24T22:07:39
vuejs/vue
7f429e9c917d84b31e8430dda629048b7d14aec2
f31366c60ebcf44bbcc2f55f26b6df1c411dcbc0
discard vnode children if it has innerHTML or textContent as a prop (fix #3360)
[ { "path": "src/platforms/web/runtime/modules/dom-props.js", "patch": "@@ -21,6 +21,12 @@ function updateDOMProps (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n }\n }\n for (key in props) {\n+ // ignore children if the node has textContent or innerHTML,\n+ // as these will throw away exist...
2016-07-31T23:25:41
mrdoob/three.js
d4101cb34c1f28af6d45c3b24ca10d665e6f4f03
6f7541e2c6e872111f0041136f46f45cb1ea3620
Fix split node not working, dynamically change output length of join node (#27998)
[ { "path": "playground/editors/JoinEditor.js", "patch": "@@ -40,6 +40,8 @@ export class JoinEditor extends BaseNodeEditor {\n \n \t\t\tthis.invalidate();\n \n+\t\t\tthis.title.setOutput( length );\n+\n \t\t};\n \n \t\tconst xElement = setInputAestheticsFromType( new LabelElement( 'x | r' ), 'Number' ).onConn...
2024-03-26T11:45:54
golang/go
af8870708bbaf15956a27cbab15582b4c666855e
0a75e5a07b858cbe6216c99fa12d582d063499d9
encoding/json/v2: fix incorrect marshaling of NaN in float64 any There is a fast-path optimization for marshaling an any type that should be semantically identical to when the optimization is not active (i.e., optimizeCommon is false). Unfortunately, the optimization accidentally allows NaN, which this change fixes. ...
[ { "path": "src/encoding/json/v2/arshal_any.go", "patch": "@@ -8,6 +8,7 @@ package json\n \n import (\n \t\"cmp\"\n+\t\"math\"\n \t\"reflect\"\n \t\"strconv\"\n \n@@ -35,20 +36,23 @@ func marshalValueAny(enc *jsontext.Encoder, val any, mo *jsonopts.Struct) error\n \tcase string:\n \t\treturn enc.WriteToken(j...
2025-08-12T08:56:43
denoland/deno
e5b96243acd716eba06e257b29d1655557792e34
27ea4ef930fec56267a3e3b7dc257c6202e07c91
test: fix flakiness of specs::coverage::data_url (#29760)
[ { "path": "tests/specs/coverage/data_url/main_test.ts", "patch": "@@ -1,5 +1,5 @@\n import { foo } from \"./main.ts\";\n \n-Deno.test(\"test\", () => {\n- foo();\n+Deno.test(\"test\", async () => {\n+ await foo();\n });", "additions": 2, "deletions": 2, "language": "Unknown" } ]
2025-06-17T01:54:44
mrdoob/three.js
85196a9ce67a5ddd3f45d7be7927b5d78140a0d2
f7911ef5bc2e94d4b8d24fd9d0c80d5644304880
fix typo error (#28005)
[ { "path": "src/objects/BatchedMesh.js", "patch": "@@ -222,7 +222,7 @@ class BatchedMesh extends Mesh {\n \n \t}\n \n-\t// Make sure the geometry is compatible with the existing combined geometry atributes\n+\t// Make sure the geometry is compatible with the existing combined geometry attributes\n \t_validat...
2024-03-26T09:05:01
vuejs/vue
6e471ea2ee75cd85e1466b74014672619a3898b9
45e1ffd4950e15ddbe00b140aac679cdf46f616a
fix v-show transition on child component root (fix #3354)
[ { "path": "src/platforms/web/runtime/directives/show.js", "patch": "@@ -3,16 +3,25 @@\n import { isIE9 } from 'web/util/index'\n import { enter, leave } from '../modules/transition'\n \n+// recursively search for possible transition defined inside the component root\n+function locateNode (vnode: VNode): VNo...
2016-07-31T21:31:02
golang/go
0a75e5a07b858cbe6216c99fa12d582d063499d9
de9b6f98759f718fb48ecef22c2275ac98f1871d
encoding/json/v2: fix wrong type with cyclic marshal error in map[string]any The type reported in a ErrCycle is the wrong type due to a typo. This discrepency was detected by setting optimizeCommon to false and running the tests. This only modifies code that is compiled in under goexperiment.jsonv2. Change-Id: I6826...
[ { "path": "src/encoding/json/v2/arshal_any.go", "patch": "@@ -104,7 +104,7 @@ func marshalObjectAny(enc *jsontext.Encoder, obj map[string]any, mo *jsonopts.St\n \tif xe.Tokens.Depth() > startDetectingCyclesAfter {\n \t\tv := reflect.ValueOf(obj)\n \t\tif err := visitPointer(&xe.SeenPointers, v); err != nil ...
2025-08-12T08:45:44
denoland/deno
8362881c0942d50b3b6fcd6759d42fe3e19c3703
f609bbb267adc92da41647c26d0c8c09f68e84e3
fix(ext/node): Module.wrap cleanup for npm:v8-code-cache (#29725) This removes the additional arguments on the function returned by `Module.wrap`. Allow libraries that overwrite this behavior (like `v8-code-cache`) to work correctly. --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "ext/node/polyfills/01_require.js", "patch": "@@ -65,8 +65,6 @@ const {\n TypeError,\n } = primordials;\n \n-import { nodeGlobals } from \"ext:deno_node/00_globals.js\";\n-\n import _httpAgent from \"node:_http_agent\";\n import _httpCommon from \"node:_http_common\";\n import _httpOutgoing from...
2025-06-17T00:32:10
mrdoob/three.js
a94c577d8bebac8d4f40c110484936a64cb00b85
bb81642ef35a6bac6a4ddcd92deffd8fe67030ce
Examples: Fix webgpu_storage_buffer (#27994) * fix webgpu_storage_buffer example * more cleanup
[ { "path": "examples/webgpu_storage_buffer.html", "patch": "@@ -68,7 +68,7 @@\n \t\t\t// WebGL Backend\n \t\t\tinit( true );\n \n-\t\t\tfunction init( forceWebGL = false ) {\n+\t\t\tasync function init( forceWebGL = false ) {\n \n \t\t\t\tconst aspect = ( window.innerWidth / 2 ) / window.innerHeight;\n \t\t\...
2024-03-25T12:27:31
vuejs/vue
45e1ffd4950e15ddbe00b140aac679cdf46f616a
dfd309ec845bb57c0d65022b3d23e69c78eddb66
fix pause button in uptime bench
[ { "path": "benchmarks/uptime/index.html", "patch": "@@ -164,7 +164,7 @@ <h2>Biggest Streak: {{maxStreak}}</h2>\n if (this.playing) {\n update()\n } else {\n- cancelAnimationFrame(loop)\n+ clearTimeout(timeoutId)\n }\n }\n ...
2016-07-31T18:53:48
golang/go
674c5f0edd82b5d1dd5cb44eb4b85830245c151e
9bbea0f21a4539ea365d4804131b17d3b963c4f7
os/exec: fix incorrect expansion of ".." in LookPath on plan9 The correction in CL 685755 is incomplete for plan9, where path search is performed even on file strings containing "/". By applying filepath.Clean to the argument of validateLookPath, we can check for bogus file strings containing ".." where the later call...
[ { "path": "src/os/exec/lp_plan9.go", "patch": "@@ -36,7 +36,7 @@ func findExecutable(file string) error {\n // As of Go 1.19, LookPath will instead return that path along with an error satisfying\n // [errors.Is](err, [ErrDot]). See the package documentation for more details.\n func LookPath(file string) (s...
2025-08-07T10:15:23
denoland/deno
f609bbb267adc92da41647c26d0c8c09f68e84e3
bf6292b1705a34d27ae2c2ac96e9656b3ef1f4b1
fix(fmt): fix handling of indent inside template language (#29616) This commit fixes the handling of indent inside the template languages. See https://github.com/dprint/dprint-plugin-typescript/pull/718 for details
[ { "path": "Cargo.lock", "patch": "@@ -3368,9 +3368,9 @@ dependencies = [\n \n [[package]]\n name = \"dprint-plugin-typescript\"\n-version = \"0.95.6\"\n+version = \"0.95.7\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"52be8b73afa35c3e8910131f2ab4c8de5179506868c217b632...
2025-06-17T00:00:18
vuejs/vue
b3cc0efc7b963ba9cdadb25cf80931efeb143681
31839a1f853bda946ac9c9228d502e0937d7fa54
fix flow
[ { "path": "src/platforms/web/runtime/modules/style.js", "patch": "@@ -27,7 +27,7 @@ function updateStyle (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n let cur, name\n const elm: any = vnode.elm\n const oldStyle: any = oldVnode.data.style || {}\n- let style = vnode.data.style || {}\n+ let style...
2016-07-31T00:16:37
mrdoob/three.js
bb81642ef35a6bac6a4ddcd92deffd8fe67030ce
b5d53e5dc4e9161643f0fdfb1b9db36e546be2d4
Manual: Improve Chinese translation. (#27991) * Manual: Fix shadows.html * Manual: Improve Chinese translation.
[ { "path": "manual/list.json", "patch": "@@ -331,7 +331,7 @@\n \t\t\"优化\": {\n \t\t\t\"大量对象的优化\": \"zh/optimize-lots-of-objects\",\n \t\t\t\"优化对象的同时保持动画效果\": \"zh/optimize-lots-of-objects-animated\",\n-\t\t\t\"Using OffscreenCanvas in a Web Worker\": \"zh/offscreencanvas\"\n+\t\t\t\"在Web Worker中使用离屏渲染\": \"z...
2024-03-25T09:36:01
denoland/deno
bf6292b1705a34d27ae2c2ac96e9656b3ef1f4b1
a84ee8a9c4885ebd3a09edf303bbe13356c37806
fix(bundle): improve error handling and reporting (#29744) We were effectively ignoring our diagnostics, and instead falling back to esbuild (and then displaying the esbuild diagnostics). That was mostly for simplicity and so we would fall back to esbuild handling unsupported things (for instance css imports). This d...
[ { "path": "Cargo.lock", "patch": "@@ -3626,9 +3626,9 @@ checksum = \"31ae425815400e5ed474178a7a22e275a9687086a12ca63ec793ff292d8fdae8\"\n \n [[package]]\n name = \"esbuild_client\"\n-version = \"0.2.0\"\n+version = \"0.3.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \...
2025-06-16T21:11:14
vuejs/vue
6fac6250e494537dfc0c606395df723d272ec445
c2296844b1ac288715d4a850ee17d881aef6a2aa
fix typo in contrib guide
[ { "path": "CONTRIBUTING.md", "patch": "@@ -115,9 +115,9 @@ The default test script will do the following: lint with ESLint -> type check wi\n \n - **`instance`**: contains Vue instance constructor and prototype methods.\n \n- - `**global-api`**: as the name suggests.\n+ - **`global-api`**: as the ...
2016-07-30T03:21:08
golang/go
9bbea0f21a4539ea365d4804131b17d3b963c4f7
08eef97500bd814a1dc83596a45837e6c7a7d43c
cmd/compile: during regalloc, fixedreg values are always available It is ok to clobber registers that have a copy of a fixedreg value, as that value is always available in its original location later if we need it. (See 14 lines below the change.) This CL will fix the regalloc infinite loop that CL 678620 introduced....
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -2476,7 +2476,7 @@ func (e *edgeState) processDest(loc Location, vid ID, splice **Value, pos src.XP\n \t}\n \n \t// Check if we're allowed to clobber the destination location.\n-\tif len(e.cache[occupant.vid]) == 1 && !e.s.values[occupant.vi...
2025-08-13T21:01:30
vuejs/vue
d7ae39044d4486610c3ed885d91d3c235a490916
35ee5b105e8a517571b9bb9a87160c6ffbdad779
fix class updates if new vnode doesnt contain any class data
[ { "path": "src/platforms/web/runtime/modules/class.js", "patch": "@@ -5,7 +5,9 @@ import { genClassForVnode, concat, stringifyClass } from 'web/util/index'\n function updateClass (oldVnode: any, vnode: any) {\n const el = vnode.elm\n const data: VNodeData = vnode.data\n- if (!data.staticClass && !data....
2016-07-29T14:46:09
mrdoob/three.js
b5d53e5dc4e9161643f0fdfb1b9db36e546be2d4
e0d2ddf07dafa6d8d29208f5fc0cf8ade9900ba6
WebGPURenderer: Reuse Meshes in PMREMGenerator and pmremVersion logic (#27988) * PMREMGenerator: Reuse Meshes * TextureNode: Introduce `referenceNode` * PMREMNode: Added pmremVersion logic * update screenshot * fix webgl backend * cleanup example * fix webgl pmrem node * PMREMGenerator: Reuse Pers...
[ { "path": "examples/jsm/nodes/pmrem/PMREMNode.js", "patch": "@@ -4,7 +4,8 @@ import { texture } from '../accessors/TextureNode.js';\n import { textureCubeUV } from './PMREMUtils.js';\n import { uniform } from '../core/UniformNode.js';\n import { NodeUpdateType } from '../core/constants.js';\n-import { nodeP...
2024-03-25T00:55:39
golang/go
e001300cf21bad54afb5052e9ff823f8c1cbd407
d5dea86993e1bc07bb9a49d2930655050da006d7
[dev.simd] cmd/compile: fix LoadReg so it is aware of register target SIMD code generation created interesting new type/register combintations. Change-Id: I9c9a73bf51f6cb54551db1fdc88f9dd1eef7ab26 Reviewed-on: https://go-review.googlesource.com/c/go/+/695895 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acc...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -47,8 +47,8 @@ func isFPReg(r int16) bool {\n \treturn x86.REG_X0 <= r && r <= x86.REG_Z31\n }\n \n-// loadByType returns the load instruction of the given type.\n-func loadByType(t *types.Type) obj.As {\n+// loadByTypeAndReg returns the load i...
2025-08-13T16:44:01
vuejs/vue
04e2b53cd70dc808c37615723697bb208acfad10
40e37f17d271d550784831dea691c47de5519aa9
properly perserve whitespace in <pre> (fix #3341)
[ { "path": "flow/compiler.js", "patch": "@@ -8,6 +8,7 @@ declare type CompilerOptions = {\n isUnaryTag?: (tag: string) => ?boolean; // check if a tag is unary for the platform\n isReservedTag?: (tag: string) => ?boolean; // check if a tag is a native for the platform\n mustUseProp?: (attr: string) => ?...
2016-07-28T22:49:49
mrdoob/three.js
751abcd443cde4b554fa318250db9dd8aac0f0c2
1a09fbe3f1679b2f602924d5226e715661746b1c
Editor: use more `three/addons/*` alias (#27967) * Editor: use `three/addons/*` alias Follow #23406, use more alias in editor * fix: fix failed imports in last commit
[ { "path": "editor/js/Loader.js", "patch": "@@ -506,7 +506,7 @@ function Loader( editor ) {\n \n \t\t\t\t\tconst contents = event.target.result;\n \n-\t\t\t\t\tconst { PCDLoader } = await import( '../../examples/jsm/loaders/PCDLoader.js' );\n+\t\t\t\t\tconst { PCDLoader } = await import( 'three/addons/loader...
2024-03-22T15:17:14
golang/go
d5dea86993e1bc07bb9a49d2930655050da006d7
08ab8e24a310944768717356e188a14c46c7447b
[dev.simd] cmd/compile: fix isIntrinsic for methods; fix fp <-> gp moves also includes a handy debugging hook for the inliner. Change-Id: I23d0619506219d21db78c6c801612ff058562142 Reviewed-on: https://go-review.googlesource.com/c/go/+/694118 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservic...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -43,6 +43,10 @@ func ssaMarkMoves(s *ssagen.State, b *ssa.Block) {\n \t}\n }\n \n+func isFPReg(r int16) bool {\n+\treturn x86.REG_X0 <= r && r <= x86.REG_Z31\n+}\n+\n // loadByType returns the load instruction of the given type.\n func loadByTy...
2025-08-07T20:44:50
mrdoob/three.js
cde048c252aac8c6ef5daffc671cae5bdbfea63f
a49dde26910b3beb6a9785efc74b9dea3de3b763
3MFLoader: Throw error on missing rels. (#27955) * THREE.ThreeMFLoader: Throw error on missing rels This throws an error in case the 3MF file is malformed and is missing the `rels` object. Otherwise, the error is a bit cryptic. * Move rels check to loadDocument
[ { "path": "examples/jsm/loaders/3MFLoader.js", "patch": "@@ -144,6 +144,8 @@ class ThreeMFLoader extends Loader {\n \n \t\t\t}\n \n+\t\t\tif ( relsName === undefined ) throw new Error( 'THREE.ThreeMFLoader: Cannot find relationship file `rels` in 3MF archive.' );\n+\n \t\t\t//\n \n \t\t\tconst relsView = zi...
2024-03-21T12:13:54
vuejs/vue
74f8b98509d24487e1a8d1588b4128a7a1046a41
e84a1a43beeea40ff96291e7fba22e0bd6f27683
handle static vnodes properly during patch (fix #3325)
[ { "path": "src/core/instance/render.js", "patch": "@@ -103,13 +103,16 @@ export function renderMixin (Vue: Class<Component>) {\n // number conversion\n Vue.prototype._n = toNumber\n \n- //\n+ // render static tree by index\n Vue.prototype._m = function renderStatic (index?: number): Object | void {\...
2016-07-26T19:49:40
denoland/deno
96ab2d3b68721b4e942f2a5e87818bca50ecf13c
413aa404f906d6df96b8d31713757467ab86b4b1
fix(ext/node): crypto.timingSafeEqual (#29758)
[ { "path": "ext/node/polyfills/internal/errors.ts", "patch": "@@ -681,7 +681,7 @@ export class ERR_CRYPTO_TIMING_SAFE_EQUAL_LENGTH extends NodeRangeError {\n constructor() {\n super(\n \"ERR_CRYPTO_TIMING_SAFE_EQUAL_LENGTH\",\n- \"Input buffers must have the same length\",\n+ \"Input bu...
2025-06-16T12:33:49
golang/go
08eef97500bd814a1dc83596a45837e6c7a7d43c
2fe5d51d0494d3241a8006d797d02510b030c0e3
runtime/trace: fix documentation typo Change-Id: I3d8dc20536c7a1fb4b1d895fcf989f86bf45f499 GitHub-Last-Rev: 234aea60e25b01e84abdf485cebbd0da5f392fed GitHub-Pull-Request: golang/go#74991 Reviewed-on: https://go-review.googlesource.com/c/go/+/695535 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gs...
[ { "path": "src/runtime/trace/flightrecorder.go", "patch": "@@ -158,7 +158,7 @@ type FlightRecorderConfig struct {\n \t//\n \t// The flight recorder will strive to promptly discard events older than the minimum age,\n \t// but older events may appear in the window snapshot. The age setting will always be\n-\...
2025-08-13T06:37:55
mrdoob/three.js
55ff783d55421c8853ed0ddec7795d49dcdf06b7
2ac92c82f0ac2c836ddba0cc0d7c6f4b8dc1c2f9
TransformControls: Fix `updateMatrixWorld()` override. (#27960)
[ { "path": "examples/jsm/controls/TransformControls.js", "patch": "@@ -178,8 +178,8 @@ class TransformControls extends Object3D {\n \n \t}\n \n-\t// updateMatrixWorld updates key transformation variables\n-\tupdateMatrixWorld() {\n+\t// updateMatrixWorld updates key transformation variables\n+\tupdateMatrix...
2024-03-21T11:31:41
vuejs/vue
e84a1a43beeea40ff96291e7fba22e0bd6f27683
00091053c40ed761a9a1c114b7a958d221a04cce
fix attribute decode reggression (fix #3327)
[ { "path": "flow/compiler.js", "patch": "@@ -11,7 +11,8 @@ declare type CompilerOptions = {\n getTagNamespace?: (tag: string) => ?string; // check the namespace for a tag\n transforms?: Array<Function>; // a list of transforms on parsed AST before codegen\n preserveWhitespace?: boolean;\n- shouldDecod...
2016-07-26T18:38:46
denoland/deno
413aa404f906d6df96b8d31713757467ab86b4b1
a7d177c848827bc75df465fec6854a4955d48f9d
fix(ext/node): add key length validation in `DiffieHellman.prototype.computeSecret` (#29757)
[ { "path": "ext/node/ops/crypto/cipher.rs", "patch": "@@ -11,6 +11,7 @@ use aes::cipher::KeyIvInit;\n use aes::cipher::KeySizeUser;\n use aes::cipher::StreamCipher;\n use deno_core::Resource;\n+use deno_error::JsErrorClass;\n use digest::generic_array::GenericArray;\n use digest::KeyInit;\n \n@@ -433,7 +434,...
2025-06-16T12:32:05
mrdoob/three.js
2ac92c82f0ac2c836ddba0cc0d7c6f4b8dc1c2f9
7295b72b2b98cc0ca13a1880ed023324c538a5dc
Examples: Fix translation snap unit. (#27959)
[ { "path": "examples/misc_controls_transform.html", "patch": "@@ -100,7 +100,7 @@\n \t\t\t\t\t\t\tbreak;\n \n \t\t\t\t\t\tcase 16: // Shift\n-\t\t\t\t\t\t\tcontrol.setTranslationSnap( 100 );\n+\t\t\t\t\t\t\tcontrol.setTranslationSnap( 1 );\n \t\t\t\t\t\t\tcontrol.setRotationSnap( THREE.MathUtils.degToRad( 15...
2024-03-21T10:52:47
golang/go
2fe5d51d0494d3241a8006d797d02510b030c0e3
9fcb87c352b398aa650310160346c8d9bfcdcc45
internal/trace: fix wrong scope for Event.Range or EvGCSweepActive Change-Id: I6a6a69643e804c75914e6eedd32463cb825ab69f Reviewed-on: https://go-review.googlesource.com/c/go/+/694695 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-scop...
[ { "path": "src/internal/trace/event.go", "patch": "@@ -489,7 +489,6 @@ func (e Event) Range() Range {\n \t\t} else {\n \t\t\tr.Scope.id = int64(e.Proc())\n \t\t}\n-\t\tr.Scope.id = int64(e.Proc())\n \tcase tracev2.EvGCMarkAssistBegin, tracev2.EvGCMarkAssistActive, tracev2.EvGCMarkAssistEnd:\n \t\tr.Name = \...
2025-07-02T19:49:45
vuejs/vue
097889fdaca6a8abe45c4d10eceeff117f14546d
3ce450b6dc5f2135266c8a38818371e9d4f1f460
proper fix for attribute decode in PhantomJS
[ { "path": "src/compiler/parser/entity-decoder.js", "patch": "@@ -2,7 +2,12 @@\n \n const decoder = document.createElement('div')\n \n-export function decodeHTML (html: string): string {\n+export function decodeHTML (html: string, asAttribute?: boolean): string {\n+ if (asAttribute) {\n+ html = html\n+ ...
2016-07-26T01:29:05
mrdoob/three.js
bd2845f30695aa1b87124e7b6117a32095f87109
027b25f35d512a77b373334d92e7c3820f6d5255
WebGPURenderer: Prevent PMREM to break when missing textures (#27951) * fix texture missing from env cubemap * fix examples/webgpu_parallax_uv.html too
[ { "path": "examples/jsm/loaders/RGBMLoader.js", "patch": "@@ -36,6 +36,12 @@ class RGBMLoader extends DataTextureLoader {\n \n \t\tconst texture = new CubeTexture();\n \n+\t\tfor ( let i = 0; i < 6; i ++ ) {\n+\n+\t\t\ttexture.images[ i ] = undefined;\n+\n+\t\t}\n+\n \t\tlet loaded = 0;\n \n \t\tconst scope...
2024-03-20T10:56:26
denoland/deno
a7d177c848827bc75df465fec6854a4955d48f9d
c064b6d59446cbb378a064ab92d091e1b31cc150
fix(ext/node): fix events.once (#29716)
[ { "path": "ext/node/polyfills/_events.mjs", "patch": "@@ -28,6 +28,7 @@\n import { primordials } from \"ext:core/mod.js\";\n const {\n ArrayPrototypeMap,\n+ ArrayPrototypeFilter,\n ObjectDefineProperty,\n ObjectEntries,\n SafeMap,\n@@ -57,7 +58,10 @@ import {\n } from \"ext:deno_node/internal/valid...
2025-06-16T12:30:38
vuejs/vue
2388bdb1623eb5e37c9551f7f41e4c8888fb0972
2c6930adfc014752ff3a8a7a903ad59e5db0a650
fix transition appear check (again)
[ { "path": "src/platforms/web/runtime/modules/transition.js", "patch": "@@ -46,7 +46,8 @@ export function enter (vnode: VNodeWithData) {\n appearCancelled\n } = data\n \n- const isAppear = !vnode.context._isMounted\n+ const context = vnode.context.$parent || vnode.context\n+ const isAppear = !contex...
2016-07-25T02:04:00
golang/go
08ab8e24a310944768717356e188a14c46c7447b
702ee2d51ed0522e3942d0dd2819e2c8cb8a10f2
[dev.simd] cmd/compile: generated code from 'fix generated rules for shifts' this code is generated by simdgen CL 695455 Change-Id: I5afdc209a50b49d68e120130e0578e4666bf8749 Reviewed-on: https://go-review.googlesource.com/c/go/+/695475 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccou...
[ { "path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules", "patch": "@@ -1444,42 +1444,33 @@\n (SetLoUint32x16 x y) => (VINSERTI64X4512 [0] x y)\n (SetLoUint64x4 x y) => (VINSERTI128256 [0] x y)\n (SetLoUint64x8 x y) => (VINSERTI64X4512 [0] x y)\n-(ShiftAllLeftInt16x8 x (MOVQconst [c])) => (VPSLLW128con...
2025-08-12T21:01:55
mrdoob/three.js
70aed3da4c51ee2ef5053631e3604cd813ab5876
10d16220d16e0e838175943b8c2723f90a222015
fix batching before instancing and add multidraw instance support (#27950)
[ { "path": "examples/jsm/nodes/materials/NodeMaterial.js", "patch": "@@ -205,15 +205,15 @@ class NodeMaterial extends ShaderMaterial {\n \n \t\t}\n \n-\t\tif ( ( object.instanceMatrix && object.instanceMatrix.isInstancedBufferAttribute === true ) && builder.isAvailable( 'instance' ) === true ) {\n+\t\tif ( o...
2024-03-20T09:16:56
vuejs/vue
2456cd2d4cd6971fed8e20e175acb4bd384ba4da
3e0cda668570a95912f4aaa34b07a79df569c921
fix prop validation incorrectly setting observerState.shouldConvert
[ { "path": "src/core/util/props.js", "patch": "@@ -35,9 +35,10 @@ export function validateProp (\n value = getPropDefaultValue(vm, prop, key)\n // since the default value is a fresh copy,\n // make sure to observe it.\n+ const prevShouldConvert = observerState.shouldConvert\n observerState...
2016-07-24T22:17:48