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
72c83bcc80d0a195269b168423446476808a11e8
b2a697bd06e01abade1d436f01be7186b1c38842
go/types, types2: put Named.finite behind Named.mu This change adds another leaf state to named types which indicates whether the type's size finiteness is known. Without this, writes to Named.finite can result in a clobbered value. While benign in terms of functionality, it triggers the race detector. Fixes #76773 ...
[ { "path": "src/cmd/compile/internal/types2/cycles.go", "patch": "@@ -106,17 +106,13 @@ func (check *Checker) directCycle(tname *TypeName, pathIdx map[*TypeName]int) {\n // TODO(markfreeman): Can the value cached on Named be used in validType / hasVarSize?\n \n // finiteSize returns whether a type has finite...
2025-12-10T18:29:01
denoland/deno
fae7b29aacf26a94ef44302f18f0ef652ab6417d
e85807a76fc6eae6200c0c2542803b321e6c9c58
fix(types): correct types for Worker events (#31981) <!-- Before submitting a PR, please read https://docs.deno.com/runtime/manual/references/contributing 1. Give the PR a descriptive title. Examples of good title: - fix(std/http): Fix race condition in server - docs(console): Update docstrings - feat(...
[ { "path": "cli/tsc/dts/lib.deno.shared_globals.d.ts", "patch": "@@ -588,13 +588,13 @@ interface WorkerOptions {\n */\n interface Worker extends EventTarget {\n /** Event handler for error events. Fired when an error occurs in the worker's execution context. */\n- onerror: (this: Worker, e: ErrorEvent) =...
2026-01-29T20:55:58
mrdoob/three.js
f35e49416e29467db7752024a460486fc8e22d85
bc7aedd0261c2c745c1bb1516c47a47bcc069077
ShadowNode: Inherit camera.layers only if shadow.camera.layers is not set (#30877) * ShadowNode: Inherit camera.layers only if shadow.layers is not set * Fix layers check * invert condition * restore after render * move array creation to module scope
[ { "path": "examples/jsm/tsl/shadows/TileShadowNode.js", "patch": "@@ -19,6 +19,7 @@ import { min, Fn, shadow, NodeUpdateType, getShadowMaterial, getShadowRenderObje\n const { resetRendererAndSceneState, restoreRendererAndSceneState } = RendererUtils;\n let _rendererState;\n \n+const _cameraLayers = [];\n co...
2025-04-17T07:14:21
vuejs/vue
73a89bf9e53c0f7f00f193e1b1bb195a71ab761f
023f171f58f7f1b36f0b3e69fc6d330366bfdf43
fix(ssr): fix double escaping of ssrNode attribute values (#7224) This fixes a double escaping of attribute values in the SSR optimizing compiler by unescaping the value in `genAttrSegment` because literal attribute values get escaped early during `processAttrs` before it is known, if this attribute will be optimiz...
[ { "path": "src/server/optimizing-compiler/modules.js", "patch": "@@ -77,7 +77,7 @@ function genAttrSegment (name: string, value: string): StringSegment {\n ? ` ${name}=\"${name}\"`\n : value === '\"\"'\n ? ` ${name}`\n- : ` ${name}=${value}`\n+ : ` ${name}=\"${JSO...
2017-12-12T22:06:11
golang/go
c39fe18fea16d6bdbd5526a7b7d7b59e84ae0144
db0ab834d67131676ab2001ab8e72b197b22ce54
crypto/mlkem/mlkemtest: error out in fips140=only mode Updates #70514 Change-Id: I1d1a0b4a2c7ee4cb6e8e0700dd3463a46a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/728502 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Roland Shoemaker <roland@golan...
[ { "path": "src/crypto/mlkem/mlkemtest/mlkemtest.go", "patch": "@@ -7,6 +7,7 @@ package mlkemtest\n \n import (\n \tfips140mlkem \"crypto/internal/fips140/mlkem\"\n+\t\"crypto/internal/fips140only\"\n \t\"crypto/mlkem\"\n \t\"errors\"\n )\n@@ -20,6 +21,9 @@ func Encapsulate768(ek *mlkem.EncapsulationKey768, ...
2025-12-08T23:39:54
denoland/deno
12a65dffdc8bdddcee97f7258a41b702f2772d5b
1c9048f231a29e3ee92fafe3a8280f3ab38169a4
fix(install): clean up associated config and lock files during uninstall (#31984) This PR fixes an issue where `deno uninstall` would successfully remove the executable but leave behind the associated hidden configuration files (like `.<name>.deno.json`) in the bin directory.
[ { "path": "cli/tools/installer/mod.rs", "patch": "@@ -401,9 +401,28 @@ pub async fn uninstall(\n // There might be some extra files to delete\n // Note: tsconfig.json is legacy. We renamed it to deno.json.\n // Remove cleaning it up after January 2024\n+ // Use the base file path (without extension) ...
2026-01-29T17:19:37
mrdoob/three.js
bc7aedd0261c2c745c1bb1516c47a47bcc069077
09826c0ba8abbb8c2587e6a733ca4cdf3b5cfede
TSL: Fix `debug()` changes the compiled code (#30944) * fix `build()` return value * add `webgpu_postprocessing_fxaa` unknown problem * update description
[ { "path": "src/nodes/core/Node.js", "patch": "@@ -586,12 +586,14 @@ class Node extends EventDispatcher {\n \t}\n \n \t/**\n-\t * This method performs the build of a node. The behavior of this method as well as its return value depend\n-\t * on the current build stage (setup, analyze or generate).\n+\t * Thi...
2025-04-17T02:51:27
vuejs/vue
023f171f58f7f1b36f0b3e69fc6d330366bfdf43
644274cbd34e14e74e8931fa979b22dc2db04895
fix(core): warn duplicate keys in all cases (#7200) close #7199
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -263,6 +263,9 @@ export function createPatchFunction (backend) {\n \n function createChildren (vnode, children, insertedVnodeQueue) {\n if (Array.isArray(children)) {\n+ if (process.env.NODE_ENV !== 'production') {\n+ checkDuplicateKeys(chil...
2017-12-12T21:38:32
golang/go
cd873cf7e98c3fd3e8138e9d97d6a974a1ee0b53
550c0c898b61628aed108aca7d8dbef32458bc09
crypto/internal/fips140/aes/gcm: don't panic on bad nonces out of FIPS 140-3 mode The enforcement is good beyond compliance if it is correct, but I am more nervous about accidental DoS due to mismatches between how the caller calculates a nonce and how the enforcement expects it to be calculated. We need to have this...
[ { "path": "src/crypto/cipher/gcm_fips140v2.0_test.go", "patch": "@@ -8,15 +8,32 @@ package cipher_test\n \n import (\n \t\"crypto/cipher\"\n+\t\"crypto/internal/cryptotest\"\n \t\"crypto/internal/fips140\"\n \tfipsaes \"crypto/internal/fips140/aes\"\n \t\"crypto/internal/fips140/aes/gcm\"\n \t\"encoding/bin...
2025-12-08T23:47:26
denoland/deno
1c9048f231a29e3ee92fafe3a8280f3ab38169a4
d155af667f0e57277dc992d1b9609d5e6712908d
tests: enable some node child-process tests (#31972) Enable some tests that seems fixed with previous changes: - parallel/test-child-process-exec-std-encoding.js - parallel/test-child-process-exec-timeout-not-expired.js
[ { "path": "tests/node_compat/config.jsonc", "patch": "@@ -173,7 +173,9 @@\n \"parallel/test-child-process-exec-env.js\": {},\n \"parallel/test-child-process-exec-error.js\": {},\n \"parallel/test-child-process-exec-kill-throws.js\": {},\n+ \"parallel/test-child-process-exec-std-encoding.js\":...
2026-01-29T13:36:43
mrdoob/three.js
ecd120d3ae030a1cc28acca47042fb948bbf8ee8
f6f01836e0ffd18138de6661aea1ed6353835df2
TSL: Fix and improve `bvec` operators (#30922) * fix bvec operators * Update OperatorNode.js * revision * rev * rev
[ { "path": "src/nodes/core/NodeBuilder.js", "patch": "@@ -2670,7 +2670,9 @@ class NodeBuilder {\n \n \t\tif ( fromTypeLength > toTypeLength ) {\n \n-\t\t\treturn this.format( `${ snippet }.${ 'xyz'.slice( 0, toTypeLength ) }`, this.getTypeFromLength( toTypeLength, this.getComponentType( fromType ) ), toType ...
2025-04-16T03:40:00
vuejs/vue
644274cbd34e14e74e8931fa979b22dc2db04895
bd4819e6cf1c8d70d25aba2636e01f40faf59443
fix: more consistent component naming warnings across the API close #7212
[ { "path": "src/core/global-api/assets.js", "patch": "@@ -1,8 +1,7 @@\n /* @flow */\n \n-import config from '../config'\n import { ASSET_TYPES } from 'shared/constants'\n-import { warn, isPlainObject } from '../util/index'\n+import { isPlainObject, validateComponentName } from '../util/index'\n \n export fun...
2017-12-12T18:22:33
golang/go
36bca3166e18db52687a4d91ead3f98ffe6d00b8
b9693a2d9a89168b86cf01033b8420bf8db652d6
cmd: fix some issues in the comments Change-Id: Id2c4152b43c7ee1a687e49da7dda5a690e554231 Reviewed-on: https://go-review.googlesource.com/c/go/+/727900 Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Keith Randall <khr@golang.org> LUCI-TryBot-Result: Go LUCI...
[ { "path": "src/cmd/compile/internal/inline/inlheur/analyze_func_params.go", "patch": "@@ -122,9 +122,9 @@ func (pa *paramsAnalyzer) findParamIdx(n *ir.Name) int {\n \n type testfType func(x ir.Node, param *ir.Name, idx int) (bool, bool)\n \n-// paramsAnalyzer invokes function 'testf' on the specified expres...
2025-12-08T04:18:59
denoland/deno
98cde880a97c5d79b4d4769f5e3df8753a29ff7c
812d567c31638cd5a64ced5909be2ba25f08d50e
chore(test): re-enable `parallel/test-util-isDeepStrictEqual.js` (#31968) Closes #31632 as it's fixed by #31821
[ { "path": "tests/node_compat/config.jsonc", "patch": "@@ -1450,12 +1450,7 @@\n \"parallel/test-util-deprecate-invalid-code.js\": {},\n \"parallel/test-util-inherits.js\": {},\n \"parallel/test-util-inspect-getters-accessing-this.js\": {},\n- \"parallel/test-util-isDeepStrictEqual.js\": {\n- ...
2026-01-29T09:46:15
mrdoob/three.js
173a496abad65e545b132ce838b8546f95a25831
84eb1933a113abc5a7cbcd73e508f8aae3d32566
ReflectorNode: Fix `dispose()`. (#30933)
[ { "path": "src/nodes/utils/ReflectorNode.js", "patch": "@@ -161,6 +161,17 @@ class ReflectorNode extends TextureNode {\n \n \t}\n \n+\t/**\n+\t * Frees internal resources. Should be called when the node is no longer in use.\n+\t */\n+\tdispose() {\n+\n+\t\tsuper.dispose();\n+\n+\t\tthis._reflectorBaseNode.d...
2025-04-15T13:24:17
vuejs/vue
bd4819e6cf1c8d70d25aba2636e01f40faf59443
6eccd8e4338c8eb32ab03813e3fb70f58f858f23
fix: data() should be called with vm as first argument in mixins fix #7191
[ { "path": "src/core/util/options.js", "patch": "@@ -85,18 +85,18 @@ export function mergeDataOrFn (\n // it has to be a function to pass previous merges.\n return function mergedDataFn () {\n return mergeData(\n- typeof childVal === 'function' ? childVal.call(this) : childVal,\n- ...
2017-12-06T14:11:49
golang/go
b9693a2d9a89168b86cf01033b8420bf8db652d6
1274d58dacc92204f5bb233b22a93c30a37f34e5
runtime: on AIX check isarchive before calling libpreinit On AIX, all externally linked programs call _rt0_ppc64_aix_lib, as seen in runtime/cgo/gcc_aix_ppc64.c. The idea is that we only do the library initialization is isarchive is set. However, before this CL, AIX programs would call libpreinit before checking isarc...
[ { "path": "src/runtime/asm_ppc64x.s", "patch": "@@ -30,9 +30,6 @@ TEXT _rt0_ppc64x_lib(SB),NOSPLIT|NOFRAME,$0\n \tMOVD\t$runtime·reginit(SB), R12\n \tMOVD\tR12, CTR\n \tBL\t(CTR)\n-\tMOVD\t$runtime·libpreinit(SB), R12\n-\tMOVD\tR12, CTR\n-\tBL\t(CTR)\n \n #ifdef GOOS_aix\n \t// See runtime/cgo/gcc_aix_ppc64...
2025-12-07T06:00:20
mrdoob/three.js
4fdc4dca20d6ab6d35f05e4456d629e8a0506f0c
6137a62bba2ae302f1e9b8d188c9273edf4b0aa8
fixed typo in the description (#30927)
[ { "path": "docs/examples/en/controls/ArcballControls.html", "patch": "@@ -16,7 +16,7 @@ <h1>[name]</h1>\n \t\tCursor/finger positions and movements are mapped over a virtual trackball surface\n \t\trepresented by a gizmo and mapped in intuitive and consistent camera movements.\n \t\tDragging cursor/fingers ...
2025-04-15T08:31:08
denoland/deno
812d567c31638cd5a64ced5909be2ba25f08d50e
b715bb8ec9016c009e74d3982ab0b843b961839a
fix: use `locked-tripwire` to prevent unlocked cargo installs (#31973)
[ { "path": "Cargo.lock", "patch": "@@ -1659,6 +1659,7 @@ dependencies = [\n \"libc\",\n \"libsui\",\n \"libz-sys\",\n+ \"locked-tripwire\",\n \"log\",\n \"lol_html\",\n \"lsp-types\",\n@@ -5967,6 +5968,12 @@ dependencies = [\n \"scopeguard\",\n ]\n \n+[[package]]\n+name = \"locked-tripwire\"\n+version...
2026-01-29T02:26:35
golang/go
1274d58dacc92204f5bb233b22a93c30a37f34e5
9e0981230803265f3245193e1d61cc3599c9ca54
go/types, types2: add check for finite size at value observance Each type must be representable by a finite amount of Go source code after replacing all alias type names, value names, and embedded interfaces (per #56103) with the RHS from their respective declarations ("expansion"); otherwise the type is invalid. Fur...
[ { "path": "src/cmd/compile/internal/types2/cycles.go", "patch": "@@ -102,3 +102,43 @@ func (check *Checker) directCycle(tname *TypeName, pathIdx map[*TypeName]int) {\n \t\t}\n \t}\n }\n+\n+// TODO(markfreeman): Can the value cached on Named be used in validType / hasVarSize?\n+\n+// finiteSize returns wheth...
2025-12-03T20:14:22
mrdoob/three.js
1497215b4ae35fe3bbc29896226447c757e20feb
47206c5658430f45853f8406c6cdcbafb7b057df
Multiview support for webgpu renderer (#30920) * Add support for multiview * support multi-pass with webxr multiview * update fragment shader for multiview * Clean up. * Update XRManager.js * address review comment for multiview rendering * more cleanup + fixes for multiview * fix webxr layers bug + enabled mul...
[ { "path": "examples/webgpu_xr_cubes.html", "patch": "@@ -96,7 +96,7 @@\n \n \t\t\t\traycaster = new THREE.Raycaster();\n \n-\t\t\t\trenderer = new THREE.WebGPURenderer( { antialias: true, forceWebGL: true, colorBufferType: THREE.UnsignedByteType } );\n+\t\t\t\trenderer = new THREE.WebGPURenderer( { antialia...
2025-04-14T21:04:37
denoland/deno
b715bb8ec9016c009e74d3982ab0b843b961839a
591e9267e6e052d6d7b11a7a5be233b73a27f121
fix: allow reading /dev/tty without requiring --allow-all (#31105)
[ { "path": "runtime/permissions/lib.rs", "patch": "@@ -4025,7 +4025,7 @@ impl PermissionsContainer {\n })\n } else {\n let path = self.descriptor_parser.parse_special_file_descriptor(path)?;\n- self.check_special_file(path, api_name)\n+ self.check_special_file(path, access_kind, api...
2026-01-28T17:21:25
mrdoob/three.js
8a812ee228b288527e4e90e556a3501826f0eba8
8da96d094f7e987d8304bfed07020b9e36ee919e
Fix a small bug in RenderTarget.js. I corrected the usage of depthTexture assignment in the RenderTarget constructor. Now using the setter function again like in r174 and before to ensure renderTarget is properly linked to the texture (#30921) Co-authored-by: Attila Schroeder <attila-schroeder.79@gmail.com>
[ { "path": "src/core/RenderTarget.js", "patch": "@@ -177,7 +177,8 @@ class RenderTarget extends EventDispatcher {\n \t\t */\n \t\tthis.resolveStencilBuffer = options.resolveStencilBuffer;\n \n-\t\tthis._depthTexture = options.depthTexture;\n+\t\tthis._depthTexture = null;\n+\t\tthis.depthTexture = options.de...
2025-04-13T08:30:27
denoland/deno
591e9267e6e052d6d7b11a7a5be233b73a27f121
02c2406524b26f10a70947fcb4ac022fa1bbe2fd
fix(ext/node): use primordials in `_fs_ftruncate.ts` (#31944) Towards #24236 <!-- Before submitting a PR, please read https://docs.deno.com/runtime/manual/references/contributing 1. Give the PR a descriptive title. Examples of good title: - fix(std/http): Fix race condition in server - docs(console): Upda...
[ { "path": "ext/node/polyfills/_fs/_fs_ftruncate.ts", "patch": "@@ -1,10 +1,15 @@\n // Copyright 2018-2026 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n-import { CallbackWithError } from \"ext:deno_nod...
2026-01-28T14:45:05
vuejs/vue
904d9c9a819abf8ee503a068fd47ec7c673924d1
5875c7c4906873c31b2feb66bb3ab6a19af6f5d7
test: fix weex test case
[ { "path": "test/weex/compiler/compile.spec.js", "patch": "@@ -32,12 +32,12 @@ describe('compile basic', () => {\n \n it('should compile unary tag', () => {\n const inputCase = compile(`<div><input><text>abc</text></div>`)\n- expect(inputCase.render).toMatch(strToRegExp(`return _m(0,false,false)`))\...
2017-12-05T16:20:33
mrdoob/three.js
2edea69e6e6bb213198a9864034824b856aa9c09
bd9ac7da732e696fb2df8243c413dd877c11ad3a
TSLEncoder: Fix typo
[ { "path": "examples/jsm/transpiler/TSLEncoder.js", "patch": "@@ -61,7 +61,7 @@ class TSLEncoder {\n \t\tthis.uniqueNames = false;\n \t\tthis.reference = false;\n \n-\t\tthis._currentVarible = null;\n+\t\tthis._currentVariable = null;\n \n \t\tthis._currentProperties = {};\n \t\tthis._lastStatement = null;\n...
2025-04-13T04:32:26
denoland/deno
02c2406524b26f10a70947fcb4ac022fa1bbe2fd
f27a7984cdf23d458b05f2ed54cd6b20e173baae
fix(ext/node): fix usage of new V8 string APIs (#31963) Co-authored-by: Divy Srivastava <me@littledivy.com>
[ { "path": "ext/napi/js_native_api.rs", "patch": "@@ -2129,16 +2129,12 @@ fn napi_get_value_string_latin1(\n *result = value.length();\n }\n } else if bufsize != 0 {\n- let buffer =\n- unsafe { std::slice::from_raw_parts_mut(buf as _, bufsize - 1) };\n- value.write_one_byte_v2(scope, 0...
2026-01-28T12:26:45
vuejs/vue
5875c7c4906873c31b2feb66bb3ab6a19af6f5d7
0da8bced77654beb14c39ff3b4543b2ef37d1aff
fix: revert shared static tree cache to avoid memory leak revert f0a66c5 fix #7184
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -86,15 +86,13 @@ export function genElement (el: ASTElement, state: CodegenState): string {\n }\n \n // hoist static sub-trees out\n-function genStatic (el: ASTElement, state: CodegenState, once: ?boolean): string {\n+function genStatic (el: ASTElement...
2017-12-05T16:17:36
mrdoob/three.js
bd9ac7da732e696fb2df8243c413dd877c11ad3a
6ff21e0942e15845f0fbffc309bba51270ae4063
TSL: Add `increment` and `decrement` and fix unsual `for()` expression syntax for transpiler (#30912) * TSLEncoder: Remove `While` usage. * Revert "TSLEncoder: Remove `While` usage." This reverts commit 28957ed87bd0de2057cd5807f6af7f4827420ab0. * fix afterthought for operators * fix While -> Loop * fix `++` opera...
[ { "path": "examples/jsm/transpiler/GLSLDecoder.js", "patch": "@@ -414,7 +414,6 @@ class GLSLDecoder {\n \n \t\t}\n \n-\n \t\t// unary operators (after)\n \n \t\tif ( lastToken.isOperator ) {\n@@ -894,7 +893,7 @@ class GLSLDecoder {\n \n \t\t\t//\n \n-\t\t\tif ( token.isLiteral ) {\n+\t\t\tif ( token.isLiter...
2025-04-13T03:17:54
golang/go
a33bbf1988685215cdf300feb47d2e356e459b3e
a88a96330f312d08f5d191c66a463b165ac1b96d
weak: fix weak pointer test to correctly iterate over weak pointers after GC This change fixes a bug in the weak pointer test where the loop was attempting to iterate over a nil slice (bt) instead of the weak pointer slice (wt). After setting bt to nil and running GC, the test should iterate over the weak pointers to...
[ { "path": "src/weak/pointer_test.go", "patch": "@@ -110,7 +110,7 @@ func TestPointerEquality(t *testing.T) {\n \tbt = nil\n \t// bt is no longer referenced.\n \truntime.GC()\n-\tfor i := range bt {\n+\tfor i := range wt {\n \t\tst := wt[i].Value()\n \t\tif st != nil {\n \t\t\tt.Fatalf(\"expected weak pointe...
2025-11-24T06:38:30
denoland/deno
0864b5442d25d7ac8580c8b9b9adb3629c07667a
a1fb6b6d0a3e9910f9a9915ee300b5be429f6cb7
fix(ext/node): read NODE_OPTIONS for --require and --inspect-publish-uid (#31949)
[ { "path": "Cargo.lock", "patch": "@@ -1667,6 +1667,7 @@ dependencies = [\n \"memchr\",\n \"nix 0.27.1\",\n \"node_resolver\",\n+ \"node_shim\",\n \"notify\",\n \"once_cell\",\n \"open\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "cli/Cargo.toml", "pat...
2026-01-28T03:10:28
mrdoob/three.js
6ff21e0942e15845f0fbffc309bba51270ae4063
92bd89f2cc36bfa029fcbfe260130c96895fdc1a
RapierPhysics: Add heightfield support. (#30906) * Add rapier terrain physics example * Add screenshot (same as ammo version) and entry to files.json for physics_rapier_terrain * fix linting error by removing unused variable declaration * Responding to PR feedback Use RapierPhysics instead of direct Rapier in exam...
[ { "path": "examples/files.json", "patch": "@@ -509,7 +509,9 @@\n \t\t\"physics_rapier_instancing\",\n \t\t\"physics_rapier_joints\",\n \t\t\"physics_rapier_character_controller\",\n-\t\t\"physics_rapier_vehicle_controller\"\n+\t\t\"physics_rapier_vehicle_controller\",\n+\t\t\"physics_rapier_terrain\"\n+\n \...
2025-04-12T10:12:44
vuejs/vue
0da8bced77654beb14c39ff3b4543b2ef37d1aff
7166c4e8753fdb8cade6a922b958813383548107
fix(weex): send createFinish signal after root component mounted (#7154)
[ { "path": "src/platforms/weex/entry-framework.js", "patch": "@@ -61,12 +61,8 @@ export function createInstance (\n }, timerAPIs, env.services)\n \n appCode = `(function(global){ \\n${appCode}\\n })(Object.create(this))`\n-\n callFunction(instanceVars, appCode)\n \n- // Send `createFinish` signal to n...
2017-12-04T14:58:46
golang/go
276cc4d3dbbf413be008113e6c88ffb3df2de4d6
f2d96272cb1b695dfddcd5b80dfed2ad2ee6db59
cmd/link: fix AIX builds after recent linker changes This updates XCOFF-specific code for the recent addition of funcdata to pclntab. Because XCOFF puts separate symbols into separate csects, each with their own alignment, it's important to tell the external linker the expected alignment of each part of pclntab. Othe...
[ { "path": "src/cmd/link/internal/ld/pcln.go", "patch": "@@ -55,13 +55,20 @@ type pclntab struct {\n \n // addGeneratedSym adds a generator symbol to pclntab, returning the new Sym.\n // It is the caller's responsibility to save the symbol in state.\n-func (state *pclntab) addGeneratedSym(ctxt *Link, name st...
2025-12-02T00:25:56
denoland/deno
a1fb6b6d0a3e9910f9a9915ee300b5be429f6cb7
7768451f225482d05b072289feffa12d5ba9a978
fix(ext/node): pass test-child-process-bad-stdio node compat test (#31851) Added shell command transformation logic, which handles executable path detection (including shell variable references like "${VAR}"), argument splitting, and translation. Enable test-child-process-bad-stdio.js node compat test.
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -970,7 +970,7 @@ export function normalizeSpawnArguments(\n if (options.shell) {\n let command = ArrayPrototypeJoin([file, ...args], \" \");\n // Transform Node.js flags to Deno equivalents in shell commands that invoke Deno\n-...
2026-01-28T03:07:38
vuejs/vue
60da366a2653a3984d79331d02ebb2ecf7e73a9a
7e46683470e06e93fec338dbaedb201f9b79b4d1
fix: should not update in-focus input value with lazy modifier fix #7153
[ { "path": "src/platforms/web/runtime/modules/dom-props.js", "patch": "@@ -56,12 +56,12 @@ type acceptValueElm = HTMLInputElement | HTMLSelectElement | HTMLOptionElement;\n function shouldUpdateValue (elm: acceptValueElm, checkVal: string): boolean {\n return (!elm.composing && (\n elm.tagName === 'OPT...
2017-11-30T15:48:37
mrdoob/three.js
92bd89f2cc36bfa029fcbfe260130c96895fdc1a
e431ae3df64a00b4130d94992203d57fa629cb0e
CapsuleGeometry: Change length param to height, fix UVs (#30915) * CapsuleGeometry: Fix prop name Change length to height; matching heightSegments and other geometries * CapsuleGeometry: improve UVs, fix capSegments parameter * Remove noop section check * Fix extend test
[ { "path": "docs/api/ar/geometries/CapsuleGeometry.html", "patch": "@@ -47,11 +47,11 @@ <h2>مثال الكود</h2>\n \t\t<h2>المنشئ (Constructor)</h2>\n \n \t\t<h3>\n- \t\t[name]([param:Float radius], [param:Float length], [param:Integer capSegments], [param:Integer radialSegments])\n+ \t\t[name]([param:Float radi...
2025-04-12T09:44:04
mrdoob/three.js
3152a8b95d40aa2c998b172c48286e66efd289ce
929c4764effe5eadd878fbdba2d1028c2a7e4fab
Editor: Fix selection box update when reparenting objects in hierarchy (#30904) * Editor: Dispatch objectChanged signal on object movement * Update screenshot for WebGL buffer geometry attributes * Revert "Update screenshot for WebGL buffer geometry attributes" This reverts commit cbb40c495407c86b157bd015985ca28ed4...
[ { "path": "editor/js/commands/MoveObjectCommand.js", "patch": "@@ -50,6 +50,9 @@ class MoveObjectCommand extends Command {\n \t\tthis.object.parent = this.newParent;\n \n \t\tthis.object.dispatchEvent( { type: 'added' } );\n+\t\tthis.editor.signals.objectChanged.dispatch( this.object );\n+\t\tthis.editor.si...
2025-04-11T08:29:56
golang/go
144cf17d2c444a530d7c08c5870dc8e70bec2c72
3417b48b17d01cf170317d679aef10984cc1a4d0
[dev.simd] simd, cmd/compile: move "simd" to "simd/archsimd" Also removes a few leftover TODOs and scraps of commented-out code from simd development. Updated etetest.sh to make it behave whether amd64 implies the experiment, or not. Fixes #76473. Change-Id: I6d9792214d7f514cb90c21b101dbf7d07c1d0e55 Reviewed-on: ht...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -445,7 +445,7 @@ type hairyVisitor struct {\n \n func isDebugFn(fn *ir.Func) bool {\n \t// if n := fn.Nname; n != nil {\n-\t// \tif n.Sym().Name == \"Int32x8.Transpose8\" && n.Sym().Pkg.Path == \"simd\" {\n+\t// \tif n.Sym().Name == \"Int32x8....
2025-12-08T18:24:12
vuejs/vue
f5ce6b50cffef2e0eb8895c462b2433d8f8a701f
d4e0c3ef2444384719638a89f2a25af042b95795
fix(v-for): support array and nested destructuring in v-for
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -22,7 +22,7 @@ import {\n export const onRE = /^@|^v-on:/\n export const dirRE = /^v-|^@|^:/\n export const forAliasRE = /(.*?)\\s+(?:in|of)\\s+(.*)/\n-export const forIteratorRE = /\\((\\{[^}]*\\}|[^,{]*),([^,]*)(?:,([^,]*))?\\)/\n+export const forIter...
2017-11-27T21:54:15
denoland/deno
824b30c99682377b567b12a73b5ef21d376c17af
3ae0124062ab3340ef13d69e36d5644d7f32d65d
fix: graceful server shutdown with open, un-upgraded connections (#31959)
[ { "path": "ext/http/http_next.rs", "patch": "@@ -874,7 +874,8 @@ async fn serve_http2_autodetect(\n options: Options,\n ) -> Result<(), HttpNextError> {\n let prefix = NetworkStreamPrefixCheck::new(io, HTTP2_PREFIX);\n- let (matches, io) = prefix.match_prefix().await?;\n+ let (matches, io) =\n+ pre...
2026-01-27T15:30:27
mrdoob/three.js
fec7a6c769ab32ecd3a68a452b3ef03ac37f0449
7cbe312421a64e1224ef4e4fc6b2ae7cf6ee43ca
WebGPURenderer: Fix early-z rejection (#30891) * fix early-z rejection * cleanup * water material as transparent * using `.colorNode` instead of `.fragmentNode` * fix texture matrix update
[ { "path": "src/renderers/common/RenderList.js", "patch": "@@ -19,10 +19,6 @@ function painterSortStable( a, b ) {\n \n \t\treturn a.renderOrder - b.renderOrder;\n \n-\t} else if ( a.material.id !== b.material.id ) {\n-\n-\t\treturn a.material.id - b.material.id;\n-\n \t} else if ( a.z !== b.z ) {\n \n \t\tr...
2025-04-08T12:15:41
golang/go
4837bcc92c27e72c157e2c7b7e098dd91fa36fd3
b5f6816cea5b195e583c60e97a519d5d4ad5793f
internal/trace: skip tests for alloc/free experiment by default These tests are just too flaky and I don't have the time to fix them right now. I also am thinking to just change how trace experiments work, so it may not be worth taking the time to fix them. For #70838. Change-Id: Ia896215a0cbeccac99b73fefc836088f435...
[ { "path": "src/internal/trace/reader_test.go", "patch": "@@ -20,6 +20,7 @@ import (\n var (\n \tlogEvents = flag.Bool(\"log-events\", false, \"whether to log high-level events; significantly slows down tests\")\n \tdumpTraces = flag.Bool(\"dump-traces\", false, \"dump traces even on success\")\n+\tallocFre...
2025-12-08T17:48:53
vuejs/vue
1c1621d96f61f07f8007000f92d1d2e23d3b42a3
0f7c443dca800204bc2e00876365869ee79e2d7b
chore: fix flow
[ { "path": "src/platforms/web/runtime/modules/attrs.js", "patch": "@@ -98,6 +98,7 @@ function setAttr (el: Element, key: string, value: any) {\n el.removeEventListener('input', blocker)\n }\n el.addEventListener('input', blocker)\n+ // $flow-disable-line\n el.__ieph =...
2017-11-27T17:24:17
denoland/deno
3ae0124062ab3340ef13d69e36d5644d7f32d65d
1b5ba4c0e0e188351d470883115f5ddca0ea47f8
fix(unstable): lint ast comments from first file showing in others (#31956) This issue was caused by capturing the first ever invoked `ctx` variable instead of accessing the `ctx` of the file that is currently being linted. Fixes #31896
[ { "path": "cli/js/40_lint.js", "patch": "@@ -631,8 +631,8 @@ function setNodeGetters(ctx) {\n hasCommenstGetter = true;\n Object.defineProperty(FacadeNode.prototype, \"comments\", {\n get() {\n- materializeComments(ctx);\n- return ctx.comments;\n+ materializeComments(this[...
2026-01-27T13:17:31
mrdoob/three.js
7cbe312421a64e1224ef4e4fc6b2ae7cf6ee43ca
205d56c6da86bbba92fd79176b5ee9bd38ba6fa8
TSL: Fix `texture()` matrix sync (#30893)
[ { "path": "src/nodes/accessors/TextureNode.js", "patch": "@@ -266,7 +266,7 @@ class TextureNode extends UniformNode {\n \tsetUpdateMatrix( value ) {\n \n \t\tthis.updateMatrix = value;\n-\t\tthis.updateType = value ? NodeUpdateType.RENDER : NodeUpdateType.NONE;\n+\t\tthis.updateType = value ? NodeUpdateType...
2025-04-08T07:04:47
vuejs/vue
0f7c443dca800204bc2e00876365869ee79e2d7b
d2e1d49c41ac633ea9410e1062b8e3e01f9d6b6d
fix: block unnecessary input event on textarea placeholder in IE close #7138
[ { "path": "src/platforms/web/runtime/modules/attrs.js", "patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-import { isIE9, isEdge } from 'core/util/env'\n+import { isIE, isIE9, isEdge } from 'core/util/env'\n \n import {\n extend,\n@@ -44,7 +44,7 @@ function updateAttrs (oldVnode: VNodeWithData, vnode: VNodeWit...
2017-11-27T17:13:37
mrdoob/three.js
205d56c6da86bbba92fd79176b5ee9bd38ba6fa8
0356d98e2888bd535905c845f8233ad625a7de32
Water2Mesh: Fix missing `material.transparent=true` (#30892) * water material as transparent * using `.colorNode` instead of `.fragmentNode`
[ { "path": "examples/jsm/objects/Water2Mesh.js", "patch": "@@ -37,6 +37,7 @@ class WaterMesh extends Mesh {\n \tconstructor( geometry, options = {} ) {\n \n \t\tconst material = new NodeMaterial();\n+\t\tmaterial.transparent = true;\n \n \t\tsuper( geometry, material );\n \n@@ -49,7 +50,7 @@ class WaterMesh ...
2025-04-08T06:57:05
golang/go
b5f6816cea5b195e583c60e97a519d5d4ad5793f
44a39c9dacdb3378197b9515add22d292dd71af9
cmd/link: generate DWARF for moduledata Fixes #76731 Change-Id: I5c686c91af8543b57880a89d30393912ef1958ad Reviewed-on: https://go-review.googlesource.com/c/go/+/727760 Auto-Submit: Ian Lance Taylor <iant@golang.org> Reviewed-by: Alessandro Arzilli <alessandro.arzilli@gmail.com> Reviewed-by: Florian Lehner <lehner.flo...
[ { "path": "src/cmd/link/dwarf_test.go", "patch": "@@ -156,10 +156,102 @@ func testDWARF(t *testing.T, buildmode string, expectDWARF bool, env ...string)\n \t\t\tif !strings.HasSuffix(line.File.Name, wantFile) || line.Line != wantLine {\n \t\t\t\tt.Errorf(\"%#x is %s:%d, want %s:%d\", addr, line.File.Name, l...
2025-12-06T23:06:11
denoland/deno
9bd69275af53dd32bc55422b96bb9efae81fba6b
6b4468a841a55ffdc5c447a53b9a97bbdf4a2cc1
fix(ext/net): remove socket file when dropping unix listener (#31947)
[ { "path": "ext/net/ops_unix.rs", "patch": "@@ -47,6 +47,34 @@ impl Resource for UnixDatagramResource {\n }\n }\n \n+/// A wrapper around `UnixListener` that holds the socket path and removes it on drop.\n+pub struct UnixListenerWithPath {\n+ listener: UnixListener,\n+ path: PathBuf,\n+}\n+\n+impl UnixLi...
2026-01-27T02:30:11
vuejs/vue
d2e1d49c41ac633ea9410e1062b8e3e01f9d6b6d
a71e653108e4ba56a70107662f3ee30cead59c18
fix(types): use object and string instead of Object and String (#7126)
[ { "path": "types/options.d.ts", "patch": "@@ -58,12 +58,12 @@ export interface ComponentOptions<\n PropsDef=PropsDefinition<DefaultProps>> {\n data?: Data;\n props?: PropsDef;\n- propsData?: Object;\n+ propsData?: object;\n computed?: Accessors<Computed>;\n methods?: Methods;\n watch?: Record<...
2017-11-27T14:30:58
mrdoob/three.js
0356d98e2888bd535905c845f8233ad625a7de32
e7aa484bc40c1ab5f08c7098e610aa679e0deeda
Examples: Add external "3d tiles" globe example (#30883) * Add 3d tiles example * Add screenshot * Remake screenshot * Update tags * Update 3d tiles renderer version * comment update * title update * Add exception * Remove shadows * Cleanup
[ { "path": "examples/files.json", "patch": "@@ -73,6 +73,7 @@\n \t\t\"webgl_lines_fat_wireframe\",\n \t\t\"webgl_loader_3dm\",\n \t\t\"webgl_loader_3ds\",\n+\t\t\"webgl_loader_3dtiles\",\n \t\t\"webgl_loader_3mf\",\n \t\t\"webgl_loader_3mf_materials\",\n \t\t\"webgl_loader_amf\",", "additions": 1, "d...
2025-04-08T03:56:32
golang/go
4122d3e9ea55c8d2293e0a0c59cd6e467021c9e0
34397865b1174f4d4b33941877a5906e50965b3b
runtime: use atomic C types with atomic C functions Mark types as _Atomic - fixes breakage introduced in CL 726964 across most LLVM based platforms/builders. Change-Id: I5e64b9ccb0cf5244977a787a52ee124bc03c10de Reviewed-on: https://go-review.googlesource.com/c/go/+/728040 LUCI-TryBot-Result: Go LUCI <golang-scoped@lu...
[ { "path": "src/runtime/testdata/testprogcgo/notingo.go", "patch": "@@ -14,8 +14,8 @@ package main\n \n extern void Ready();\n \n-static int spinning;\n-static int released;\n+static _Atomic int spinning;\n+static _Atomic int released;\n \n static void* enterGoThenSpinTwice(void* arg __attribute__ ((unused))...
2025-12-08T13:11:55
denoland/deno
6b4468a841a55ffdc5c447a53b9a97bbdf4a2cc1
a9b7c7d6d0c452a6697e8b8bbab89f427656c238
fix(ext/http): use serve address override only once (#31935)
[ { "path": "ext/http/00_serve.ts", "patch": "@@ -698,6 +698,9 @@ function formatHostName(hostname: string): string {\n return StringPrototypeIncludes(hostname, \":\") ? `[${hostname}]` : hostname;\n }\n \n+// Flag to track if DENO_SERVE_ADDRESS override has been consumed\n+let serveAddressOverrideConsumed ...
2026-01-27T00:42:27
vuejs/vue
a71e653108e4ba56a70107662f3ee30cead59c18
8b43c81ed432d05fdb91badebcbcb4523bbdeddb
fix(types): bump ts version and fix typing bugs (#7135)
[ { "path": "package-lock.json", "patch": "@@ -42,16 +42,6 @@\n \"@types/uglify-js\": \"2.6.29\"\n }\n },\n- \"JSONStream\": {\n- \"version\": \"1.3.1\",\n- \"resolved\": \"https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.1.tgz\",\n- \"integrity\": \"sha1-cH92HgHa6eFv...
2017-11-27T14:28:38
mrdoob/three.js
e9144842962d46f0ab4a7049cc072ad201d9659d
311af89ebf044bfd7235d6ec011d1f513635921d
Fix WebXR Haptics example when entering VR from Oculus Browser button (#30859) * Fix WebXR Haptics example when entering VR from Oculus Browser button * Remove redundant event listener for XRButton click in haptics example
[ { "path": "examples/webxr_xr_haptics.html", "patch": "@@ -140,14 +140,13 @@\n \t\t\t\trenderer.setPixelRatio( window.devicePixelRatio );\n \t\t\t\trenderer.setSize( window.innerWidth, window.innerHeight );\n \t\t\t\trenderer.setAnimationLoop( animate );\n+\t\t\t\trenderer.xr.addEventListener( 'sessionstart'...
2025-04-07T09:34:04
golang/go
34397865b1174f4d4b33941877a5906e50965b3b
d4972f6295aede2ddc35bcb1da5f6351623e9e4d
runtime: deflake TestProfBufWakeup If CI infrastructure is oversubscribed, the profile buffer reader can be blocked long enough for the status in the traceback to be something like "[syscall, 3 minutes]", rather than the "[syscall]" we are looking for. Tweak the regexp to look for the expected state at the beginning o...
[ { "path": "src/runtime/profbuf_test.go", "patch": "@@ -232,11 +232,14 @@ func TestProfBufWakeup(t *testing.T) {\n \t// The reader shouldn't wake up for this\n \tb.Write(nil, 1, []uint64{1, 2}, []uintptr{3, 4})\n \n-\t// The reader should still be blocked\n-\t//\n-\t// TODO(nick): this is racy. We could Gosc...
2025-12-06T15:09:38
denoland/deno
a9b7c7d6d0c452a6697e8b8bbab89f427656c238
a02d2201797d5e3436a251ff39e4cde6b2d4a13b
fix: enable edns for Deno.resolveDns (#31951) Currently when using `Deno.resolveDns` on a domain with many (large) records **and** using a DNS server that allows large replies over UDP, deno times out with the following error: ```ts > await Deno.resolveDns('large-txt-records.0x76.dev', 'TXT') dropped malformed messag...
[ { "path": "ext/net/01_net.js", "patch": "@@ -87,7 +87,7 @@ async function resolveDns(query, recordType, options) {\n query,\n recordType,\n options,\n- });\n+ }, /* useEdns0 */ true);\n return ArrayPrototypeMap(res, (recordWithTtl) => recordWithTtl.data);\n } finally {\n if...
2026-01-26T17:40:56
vuejs/vue
aa8262540ac0115d56b53863302b9f8e69f8a03d
14e99086c02f4bcda55e639fb0baf2c664591448
fix: fix v-for iterator parsing destructuring + parens without index
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -22,7 +22,8 @@ import {\n export const onRE = /^@|^v-on:/\n export const dirRE = /^v-|^@|^:/\n export const forAliasRE = /(.*?)\\s+(?:in|of)\\s+(.*)/\n-export const forIteratorRE = /\\((\\{[^}]*\\}|[^,]*),([^,]*)(?:,([^,]*))?\\)/\n+export const forItera...
2017-11-24T15:09:04
mrdoob/three.js
e6f310170d8dc2a5c03ca825092b8ef672f81a49
037536a817412bd990b2232db1b4cf690fe788d0
TSL: Fix optional `Fn` parameters (#30884)
[ { "path": "src/nodes/core/NodeBuilder.js", "patch": "@@ -2710,6 +2710,11 @@ class NodeBuilder {\n \n \t}\n \n+\t/**\n+\t * Prevents the node builder from being used as an iterable in TSL.Fn(), avoiding potential runtime errors.\n+\t */\n+\t*[ Symbol.iterator ]() { }\n+\n \t// Deprecated\n \n \t/**\n@@ -2725...
2025-04-07T05:00:40
golang/go
d4972f6295aede2ddc35bcb1da5f6351623e9e4d
0d0d5c9a827bac4da9cf20da351791d217e84ebb
runtime: mark getfp as nosplit When compiling with -l, we can't take a stack split here. Fixes #76702 Change-Id: Ieab1225c6259c7f16bb5188aa84bff615d9db2e5 Reviewed-on: https://go-review.googlesource.com/c/go/+/728060 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submi...
[ { "path": "src/runtime/os_wasm.go", "patch": "@@ -142,6 +142,8 @@ func preemptM(mp *m) {\n \n // getfp returns the frame pointer register of its caller or 0 if not implemented.\n // TODO: Make this a compiler intrinsic\n+//\n+//go:nosplit\n func getfp() uintptr { return 0 }\n \n func setProcessCPUProfiler(h...
2025-12-08T14:21:39
denoland/deno
a02d2201797d5e3436a251ff39e4cde6b2d4a13b
11f255c8813bb2463aa33447a5995f82a23ecbcf
feat(node): implement `FileHandle.readv()` method (#31943) Implements `filehandle.readv(buffers[, position])` method for the `FileHandle` class in `node:fs/promises`. This is part of #25554 tracking `FileHandle` missing methods. References: Node.js docs: https://nodejs.org/api/fs.html#filehandlereadvbuffers-position ...
[ { "path": "ext/node/polyfills/_fs/_fs_readv.ts", "patch": "@@ -18,6 +18,7 @@ import { customPromisifyArgs } from \"ext:deno_node/internal/util.mjs\";\n \n const {\n ObjectDefineProperty,\n+ Promise,\n PromisePrototypeThen,\n TypedArrayPrototypeGetByteLength,\n } = primordials;\n@@ -98,6 +99,11 @@ Obj...
2026-01-24T14:56:45
mrdoob/three.js
7c9d92b01555cbae25eac3ae5c009cbd6617e9ec
f9ba3dd210f52632fd109c59d90d9dcced3318df
WebGPURenderer: Fix integer attributes using compatibility-mode (#30875) * improve compatibility-mode * update interpolateParams * cleanup
[ { "path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js", "patch": "@@ -1586,7 +1586,7 @@ ${ flowData.code }\n \n \t\t\t\t\t} else if ( /^(int|uint|ivec|uvec)/.test( varying.type ) ) {\n \n-\t\t\t\t\t\tattributesSnippet += ' @interpolate( flat )';\n+\t\t\t\t\t\tattributesSnippet += ` @interpolate( ${ this....
2025-04-06T01:27:13
vuejs/vue
14e99086c02f4bcda55e639fb0baf2c664591448
df37292f77c813b04c018e1b5865f389ecce75bd
fix(types): add missing ssr renderToString signature
[ { "path": "packages/vue-server-renderer/types/index.d.ts", "patch": "@@ -11,6 +11,7 @@ interface Renderer {\n renderToString(vm: Vue, callback: RenderCallback): void;\n renderToString(vm: Vue, context: object, callback: RenderCallback): void;\n renderToString(vm: Vue): Promise<string>;\n+ renderToStr...
2017-11-24T14:23:59
golang/go
c270e7183582600aa54dcc8bb14aeecf61fc4275
745349712e837ef77eb7b5a21c4d4e5c7ca0371a
cmd/go/internal/vet: skip -fix on pkgs from vendor or non-main mod This change causes go fix (and go vet -fix) to skip applying fixes to any package in the vendor/ tree, including the GOROOT vendor packages that are part of std, and to any package from a non-main module (since these usually come from the readonly modu...
[ { "path": "src/cmd/go/internal/vet/vet.go", "patch": "@@ -262,6 +262,15 @@ func run(ctx context.Context, cmd *base.Command, args []string) {\n \t// will only be executed in VetxOnly mode, for facts but not\n \t// diagnostics.\n \tfor _, p := range pkgs {\n+\t\t// Don't apply fixes to vendored packages, incl...
2025-12-05T17:41:21
denoland/deno
11f255c8813bb2463aa33447a5995f82a23ecbcf
a2e3b452504cd1c925b68fae8401103ff0ea0fb2
feat: add --inspect-publish-uid flag for VSCode debugging (#31927) This commit adds `--inspect-publish-uid` flag. This flag is hidden in the help output at the moment. This flag is getting added because it allows us to properly implement certain debugging workflows in VSCode. More concretely, the --inspect-publish-ui...
[ { "path": "cli/args/flags.rs", "patch": "@@ -53,6 +53,7 @@ use deno_path_util::normalize_path;\n use deno_path_util::resolve_url_or_path;\n use deno_path_util::url_to_file_path;\n use deno_runtime::UnstableFeatureKind;\n+pub use deno_runtime::deno_inspector_server::InspectPublishUid;\n use deno_runtime::den...
2026-01-24T11:30:46
vuejs/vue
df37292f77c813b04c018e1b5865f389ecce75bd
70fb68b0b092eaefeb6289f5dea3852b72e7743f
chore: fix comment typo (#7113) Random find :)
[ { "path": "build/release.sh", "patch": "@@ -20,7 +20,7 @@ if [[ $REPLY =~ ^[Yy]$ ]]; then\n npm run test:ssr\n fi\n \n- # Sauce Labs tests has a decent change of failing\n+ # Sauce Labs tests has a decent chance of failing\n # so we usually manually run them before running the release script.\n \n...
2017-11-23T15:20:19
golang/go
745349712e837ef77eb7b5a21c4d4e5c7ca0371a
f3d572d96a25d1a0956ef828c0ff510ebf214d22
runtime: don't count nGsyscallNoP for extra Ms in C In #76435, it turns out that the new metric /sched/goroutines/not-in-go:goroutines counts C threads that have called into Go before (on Linux) as not-in-go goroutines. The reason for this is that the M is still attached to the C thread on Linux as an optimization, so...
[ { "path": "src/runtime/metrics_test.go", "patch": "@@ -1584,3 +1584,18 @@ func TestReadMetricsSched(t *testing.T) {\n \t\tt.Fatalf(\"output:\\n%s\\n\\nwanted:\\n%s\", output, want)\n \t}\n }\n+\n+func TestNotInGoMetricCallback(t *testing.T) {\n+\tswitch runtime.GOOS {\n+\tcase \"windows\", \"plan9\":\n+\t\t...
2025-12-04T23:27:03
denoland/deno
a2e3b452504cd1c925b68fae8401103ff0ea0fb2
bbc02e4d6ea99049c1c9cee1e0717f042c6fd71c
fix(x): use local npm package even if npm specifier is used, forward unstable flags (#31942) Fixes #31933. parts of the changes + tests written by claude, investigation and idea for the fix + tests by myself
[ { "path": "cli/args/mod.rs", "patch": "@@ -1320,6 +1320,16 @@ impl CliOptions {\n unstable_features\n }\n \n+ /// Returns unstable feature flags as CLI arguments (e.g., \"--unstable-unsafe-proto\").\n+ /// This includes features from both CLI flags and config file.\n+ pub fn unstable_args(&self) ->...
2026-01-24T11:30:15
vuejs/vue
70fb68b0b092eaefeb6289f5dea3852b72e7743f
dd21eacc33fee8f8e6151fe1dcb419644f8f98c2
chore: fix comment typo
[ { "path": "src/core/instance/lifecycle.js", "patch": "@@ -193,7 +193,7 @@ export function mountComponent (\n }\n }\n \n- // we set this to vm._watcher inside the wathcer's constructor\n+ // we set this to vm._watcher inside the watcher's constructor\n // since the watcher's initial patch may call ...
2017-11-22T22:57:31
golang/go
f3d572d96a25d1a0956ef828c0ff510ebf214d22
76345533f70e149511b1f50dbee598d0980cf867
cmd/go: fix race applying fixes in fix and vet -fix modes Previously, the cmd/fix tool, which is analogous to a compiler in a "go fix" or "go vet -fix" build, applied its fixes directly to source files during the build. However, this led to races since the edits may in some cases occur concurrently with other build st...
[ { "path": "src/cmd/go/internal/test/test.go", "patch": "@@ -1371,7 +1371,7 @@ func addTestVet(loaderstate *modload.State, b *work.Builder, p *load.Package, ru\n \t\treturn\n \t}\n \n-\tvet := b.VetAction(loaderstate, work.ModeBuild, work.ModeBuild, p)\n+\tvet := b.VetAction(loaderstate, work.ModeBuild, work...
2025-12-04T20:29:49
denoland/deno
bbc02e4d6ea99049c1c9cee1e0717f042c6fd71c
92e73b939ac0561ababfdd24fc891e517a769f92
fix(ext/node): `sqlite`'s `StatementSync` compatibility (#31941) Allows https://github.com/nodejs/node/blame/v24.12.0/test/parallel/test-sqlite-statement-sync.js to pass
[ { "path": "ext/node/ops/sqlite/mod.rs", "patch": "@@ -98,11 +98,9 @@ pub enum SqliteError {\n #[property(\"code\" = self.code())]\n InvalidExpandedSql,\n #[class(range)]\n- #[error(\n- \"The value of column {0} is too large to be represented as a JavaScript number: {1}\"\n- )]\n+ #[error(\"Value...
2026-01-24T10:42:14
vuejs/vue
dd21eacc33fee8f8e6151fe1dcb419644f8f98c2
604e081d0456ed136b24b5f759c608d153dfae93
fix: fix async component resolving in sibling mounted hook fix #7107
[ { "path": "src/core/instance/lifecycle.js", "patch": "@@ -193,7 +193,10 @@ export function mountComponent (\n }\n }\n \n- vm._watcher = new Watcher(vm, updateComponent, noop)\n+ // we set this to vm._watcher inside the wathcer's constructor\n+ // since the watcher's initial patch may call $forceUpd...
2017-11-22T22:12:34
mrdoob/three.js
142144a5f68bea28d5b13f3395c66c293feb6fae
cf9e08436e13acf54b7eaadcbf6b8b17c9d5378a
WebGPURenderer: Fix `DepthTexture` if used `compatibilityMode:true` (#30869)
[ { "path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js", "patch": "@@ -534,20 +534,30 @@ class WGSLNodeBuilder extends NodeBuilder {\n \t */\n \tgenerateTextureLoad( texture, textureProperty, uvIndexSnippet, depthSnippet, levelSnippet = '0u' ) {\n \n+\t\tlet snippet;\n+\n \t\tif ( texture.isVideoTexture =...
2025-04-05T02:39:01
golang/go
76345533f70e149511b1f50dbee598d0980cf867
b133524c0f661b88fc31db0076a939e1466c8aad
runtime: expand Pinner documentation This change expands the Pinner documentation based on a few points of feedback. - We need a note that the Pinner has a finalizer. - We need a note that the Pinner is safe to reuse. I also added a note that the zero value is ready to use, and expanded upon the use-cases of a Pinner...
[ { "path": "src/runtime/pinner.go", "patch": "@@ -12,7 +12,25 @@ import (\n \n // A Pinner is a set of Go objects each pinned to a fixed location in memory. The\n // [Pinner.Pin] method pins one object, while [Pinner.Unpin] unpins all pinned\n-// objects. See their comments for more information.\n+// objects...
2025-12-03T23:07:26
denoland/deno
92e73b939ac0561ababfdd24fc891e517a769f92
59fe2aa577891618d6610a47f8a4ddadd3a39e2a
fix(node): throw ERR_INVALID_ARG_TYPE for invalid fs.readFile path (#31918)
[ { "path": "ext/node/polyfills/_fs/_fs_readFile.ts", "patch": "@@ -12,15 +12,18 @@ import {\n import { Buffer } from \"node:buffer\";\n import { readAllSync } from \"ext:deno_io/12_io.js\";\n import { FileHandle } from \"ext:deno_node/internal/fs/handle.ts\";\n-import { pathFromURL } from \"ext:deno_web/00_i...
2026-01-24T00:36:19
mrdoob/three.js
883964488255dd6c14af6a8cdcdef63e40a390f0
30b980cf429fb5c98dcbaf706e4c113906cba90e
Examples: Fix AR hit-test (#30866)
[ { "path": "examples/webxr_ar_hittest.html", "patch": "@@ -9,7 +9,7 @@\n \t<body>\n \n \t\t<div id=\"info\">\n-\t\t\t<a href=\"https://threejs.org\" target=\"_blank\" rel=\"noopener\">three.js</a> ar - hit test<br/>(Chrome Android 81+)\n+\t\t\t<a href=\"https://threejs.org\" target=\"_blank\" rel=\"noopener\...
2025-04-04T21:51:56
vuejs/vue
604e081d0456ed136b24b5f759c608d153dfae93
3932a451a1419a97ea0200c5cb8096afe9a3e7e7
fix: ensure functionalContext is cloned during slot clones fix #7106
[ { "path": "src/core/instance/render-helpers/resolve-slots.js", "patch": "@@ -20,7 +20,7 @@ export function resolveSlots (\n }\n // named slots should only be respected if the vnode was rendered in the\n // same context.\n- if ((child.context === context || child.functionalContext === context)...
2017-11-22T21:37:24
golang/go
96e142ba2bfe5fe483f5364df91222c19ac13c49
fe4952f1165c43dcd195ab8b024f79ac5beced8a
runtime: skip TestArenaCollision if we run out of hints This seems failure mode seems to have become more common on Windows. I suspect the randomized heap base address has something to do with it, but I'm not 100% sure. What's definitely certain is that we're running out of hints, since we're seeing failures that mhe...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -551,8 +551,11 @@ func MapNextArenaHint() (start, end uintptr, ok bool) {\n \treturn\n }\n \n-func GetNextArenaHint() uintptr {\n-\treturn mheap_.arenaHints.addr\n+func NextArenaHint() (uintptr, bool) {\n+\tif mheap_.arenaHints == nil {\n+\t\treturn 0, fa...
2025-12-03T23:22:18
denoland/deno
59fe2aa577891618d6610a47f8a4ddadd3a39e2a
e6e72e57c2e2566b54f4672e03a6ff4d91d7b167
fix(ext/web): support object in `DOMException` second argument for Node.js compat (#31939) Fix #31915
[ { "path": "ext/web/01_dom_exception.js", "patch": "@@ -18,6 +18,7 @@ const {\n ObjectPrototypeIsPrototypeOf,\n ObjectSetPrototypeOf,\n ReflectConstruct,\n+ ReflectHas,\n Symbol,\n SymbolFor,\n } = primordials;\n@@ -95,21 +96,43 @@ class DOMException {\n [_code];\n \n // https://webidl.spec.wh...
2026-01-23T19:38:56
mrdoob/three.js
30b980cf429fb5c98dcbaf706e4c113906cba90e
caddbf4cd84b62d7edf6b9fc937ca709afdfe915
TileShadowNode: Fix shadow manual update (#30863)
[ { "path": "examples/jsm/tsl/shadows/TileShadowNode.js", "patch": "@@ -312,7 +312,7 @@ class TileShadowNode extends ShadowBaseNode {\n \t */\n \tupdateBefore( frame ) {\n \n-\t\tconst shadow = this.lights[ 0 ].shadow; // so far test only the first light\n+\t\tconst shadow = this.originalLight.shadow;\n \n \t...
2025-04-04T13:22:36
vuejs/vue
3932a451a1419a97ea0200c5cb8096afe9a3e7e7
f93c1585f927aedfdd79e3d9d44da74edcd91155
fix(keep-alive): should not destroy active instance when pruning cache fix #7105
[ { "path": "src/core/components/keep-alive.js", "patch": "@@ -41,7 +41,7 @@ function pruneCacheEntry (\n current?: VNode\n ) {\n const cached = cache[key]\n- if (cached && cached !== current) {\n+ if (cached && (!current || cached.tag !== current.tag)) {\n cached.componentInstance.$destroy()\n }\...
2017-11-22T20:26:39
golang/go
fe4952f1165c43dcd195ab8b024f79ac5beced8a
8947f092a8427674b7628003b873f57d3b6cdd83
runtime: relax threadsSlack in TestReadMetricsSched runtime.GC is called in the test and may spin up GOMAXPROCS (proportional to the initial count) new threads. We need to be robust to this, and it happens relatively frequently on some platforms. We didn't notice this earlier since the heap is so miniscule that runti...
[ { "path": "src/runtime/testdata/testprog/schedmetrics.go", "patch": "@@ -91,8 +91,10 @@ func SchedMetrics() {\n \t// threads through frequent scheduling, like mayMoreStackPreempt.\n \t// A slack of 5 is arbitrary but appears to be enough to cover\n \t// the leftovers plus any inflation from scheduling-heavy...
2025-12-03T23:13:36
denoland/deno
3403492db3e507e22bb16770a48bccfbeb3160fd
79716029c3d02664be48785d58a413683df9e66f
fix(ext/node): retry stale keepAlive connections in http client (#31932) Closes https://github.com/denoland/deno/issues/31891 When a server closes an idle keepAlive connection, the client's HTTP agent may still have the socket pooled. Attempting to reuse this stale socket results in ECONNRESET ("socket hang up"). Thi...
[ { "path": "ext/node/polyfills/http.ts", "patch": "@@ -432,6 +432,8 @@ class ClientRequest extends OutgoingMessage {\n }\n \n if (this.agent) {\n+ // Store options for potential retry on stale keepAlive connections.\n+ this._agentOptions = optsWithoutSignal;\n this.agent.addRequest(th...
2026-01-23T15:48:24
mrdoob/three.js
32e12df85c2a9c872f18d27d165719c93afb0a27
468f47a43ac55f3613763a5e709b6b738b380f91
TSL: Introduce `varying.setInterpolation()` (#30582) * init branch * add example and GLSL fallback * refine example * add screenshot * try new screenshot * try fix screenshot again * add centroid sampling to puppeteer exception list * rev * update example * updates --------- Co-authored-by: sunag <sunagbras...
[ { "path": "examples/files.json", "patch": "@@ -306,6 +306,7 @@\n \t\t\"webgpu_camera\",\n \t\t\"webgpu_camera_array\",\n \t\t\"webgpu_camera_logarithmicdepthbuffer\",\n+\t\t\"webgpu_centroid_sampling\",\n \t\t\"webgpu_clearcoat\",\n \t\t\"webgpu_clipping\",\n \t\t\"webgpu_compute_audio\",", "additions":...
2025-04-04T07:50:30
vuejs/vue
f93c1585f927aedfdd79e3d9d44da74edcd91155
fcc122931b504655c8255645d57612bc74c0f594
chore: fix BACKERS.md opencollective links
[ { "path": "BACKERS.md", "patch": "@@ -29,8 +29,8 @@ Funds donated via Patreon goes directly to support Evan You's full-time work on\n \n <h2 align=\"center\">Platinum via OpenCollective</h2>\n \n-<!-- <a href=\"https://opencollective.com/vuejs/platinumsponsor/0/website\" target=\"_blank\"><img src=\"https:/...
2017-11-21T21:05:06
golang/go
44cb82449e7f24530fe0fe0bf8261ba9e0e4e7d8
435e61c80141653c22e29d81447e4c6e4033f768
runtime/race: set missing argument frame for ppc64x atomic And/Or wrappers The ppc64x TSAN wrappers for atomic And/Or did not initialize R6 with the Go argument frame before calling racecallatomic. Since racecallatomic expects R6 to point to the argument list and dereferences it unconditionally, this led to a nil-poin...
[ { "path": "src/runtime/race_ppc64le.s", "patch": "@@ -329,11 +329,13 @@ TEXT\tsync∕atomic·AddUintptr(SB), NOSPLIT, $0-24\n TEXT\tsync∕atomic·AndInt32(SB), NOSPLIT, $0-20\n \tGO_ARGS\n \tMOVD\t$__tsan_go_atomic32_fetch_and(SB), R8\n+\tADD $32, R1, R6\n \tBR\tracecallatomic<>(SB)\n \n TEXT\tsync∕atomic·An...
2025-11-06T19:43:45
denoland/deno
e57d3697b2e89f92ed18ac1a985a5697054ff78d
8eb295d6fb178bceb1ef90d339720cab4d572a32
fix(ext/node): align assert throws/rejects signatures (#31934) Fixes #31931
[ { "path": "ext/node/polyfills/assert.ts", "patch": "@@ -519,46 +519,34 @@ function expectsNoError(\n \n function throws(\n fn: () => void,\n- message?: string,\n-): void;\n-function throws(\n- fn: () => void,\n- error?: Function,\n message?: string | Error,\n ): void;\n function throws(\n fn: () =>...
2026-01-23T07:47:09
mrdoob/three.js
8cccca77a543619556043969341bae105ba8ed5c
e06239286b2fd49ea5d97dc643d5eb803ba4e3ef
WebGPURenderer: Introduce Shadow Map Array (#30830) * WebGPURenderer: Introduce Shadow Map Array * WebGPURenderer: Introduce Shadow Map Array * fixes * cleanup * fix webgl backend * works on both windows & macos so ignore puppeteer failing * cannot optimize fbo with redformat or it breaks transparent shadows * ...
[ { "path": "examples/files.json", "patch": "@@ -418,6 +418,7 @@\n \t\t\"webgpu_sandbox\",\n \t\t\"webgpu_shadertoy\",\n \t\t\"webgpu_shadowmap\",\n+\t\t\"webgpu_shadowmap_array\",\n \t\t\"webgpu_shadowmap_csm\",\n \t\t\"webgpu_shadowmap_opacity\",\n \t\t\"webgpu_shadowmap_progressive\",", "additions": 1,...
2025-04-03T15:51:16
vuejs/vue
fcc122931b504655c8255645d57612bc74c0f594
3554eb27269e151a0ef3d8c4ad9b29ec6664c471
fix(types): improve and test bundleRenderer.renderToString Promise types
[ { "path": "packages/vue-server-renderer/types/index.d.ts", "patch": "@@ -18,6 +18,7 @@ interface Renderer {\n interface BundleRenderer {\n renderToString(callback: RenderCallback): void;\n renderToString(context: object, callback: RenderCallback): void;\n+ renderToString(): Promise<string>;\n renderT...
2017-11-21T15:28:30
golang/go
435e61c80141653c22e29d81447e4c6e4033f768
54e5540014f7aa7c85a3a5988259ef40637d541a
runtime: reject any goroutine leak test failure that failed to execute This is far more general than the regexp, which was necessary only because runTestProg doesn't return the error. This change makes runTestProg a wrapper function around a function that *does* return the error. For #76526. Change-Id: Ib3daa75eb0fe...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -97,6 +97,13 @@ func runTestProg(t *testing.T, binary, name string, env ...string) string {\n func runBuiltTestProg(t *testing.T, exe, name string, env ...string) string {\n \tt.Helper()\n \n+\tout, _ := runBuiltTestProgErr(t, exe, name, env...)\n+\treturn...
2025-12-03T22:29:19
mrdoob/three.js
0266aed57c0d9055c18a1834c3dfe5a5006ea625
5f4b079cc93b06dfcb158e892c13c53ac1a98ed1
Revert "InstanceNode: Fix usage with `VelocityNode`. (#30846)" (#30850) This reverts commit 998ee480ded25e3e178499a6f519b0e10baddc79.
[ { "path": "src/nodes/accessors/InstanceNode.js", "patch": "@@ -2,7 +2,7 @@ import Node from '../core/Node.js';\n import { varyingProperty } from '../core/PropertyNode.js';\n import { instancedBufferAttribute, instancedDynamicBufferAttribute } from './BufferAttributeNode.js';\n import { normalLocal, transfor...
2025-04-03T08:47:05
denoland/deno
2c0ee56e42b81dbb62aca8211f2d8c0e796f1915
a8d4565575e23f2297e5c044aa362d3c2143840b
fix(ext/node): implement `sqlite`'s missing options (#31919) Closes #31634
[ { "path": "ext/node/ops/sqlite/database.rs", "patch": "@@ -48,6 +48,10 @@ struct DatabaseSyncOptions {\n read_only: bool,\n allow_extension: bool,\n enable_double_quoted_string_literals: bool,\n+ use_big_int_arguments: bool,\n+ allow_bare_named_params: bool,\n+ return_arrays: bool,\n+ allow_unknow...
2026-01-23T04:01:45
vuejs/vue
3554eb27269e151a0ef3d8c4ad9b29ec6664c471
b0bbcbd152782bcc8d5ad5e9c9e5842e1daf1afb
fix(types): add Promise signature for bundleRenderer.renderToString (#7098) * Make callback optional when providing context Otherwise TypeScript compiler complains about `not assignable to parameter of type 'RenderCallback'` * Update index.d.ts
[ { "path": "packages/vue-server-renderer/types/index.d.ts", "patch": "@@ -18,6 +18,7 @@ interface Renderer {\n interface BundleRenderer {\n renderToString(callback: RenderCallback): void;\n renderToString(context: object, callback: RenderCallback): void;\n+ renderToString(context: object): Promise<strin...
2017-11-21T15:25:30
mrdoob/three.js
5f4b079cc93b06dfcb158e892c13c53ac1a98ed1
b4ca470e69fb7a5b0a97505b13431828ee4ba9c4
Animation: Fix ReferenceError in non-broswer environment (#30835) * Animation: Fix ReferenceError in Node.js environment Node.js do not support `self`. * Update Animation.js --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "src/renderers/common/Animation.js", "patch": "@@ -32,9 +32,9 @@ class Animation {\n \t\t * A reference to the context from `requestAnimationFrame()` can\n \t\t * be called (usually `window`).\n \t\t *\n-\t\t * @type {Window|XRSession}\n+\t\t * @type {?(Window|XRSession)}\n \t\t */\n-\t\tthis._con...
2025-04-02T19:27:57
golang/go
54e5540014f7aa7c85a3a5988259ef40637d541a
9616c332956589c86a8366dc42f324108e6b88a4
runtime: print output in case of segfault in goroutine leak tests For #76526. Change-Id: I017e5d4c06e5de23cccc59c4c347599fecdece03 Reviewed-on: https://go-review.googlesource.com/c/go/+/726524 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Pratt <mpratt@...
[ { "path": "src/runtime/goroutineleakprofile_test.go", "patch": "@@ -487,9 +487,9 @@ func TestGoroutineLeakProfile(t *testing.T) {\n \ttestCases = append(testCases, patternTestCases...)\n \n \t// Test cases must not panic or cause fatal exceptions.\n-\tfailStates := regexp.MustCompile(`fatal|panic|DATA RACE`...
2025-12-03T22:21:07
denoland/deno
48126d6a93e9809f9964b0ab65c9acd51baf41f0
b910888867ac91f245ce87f68e389259a9a69fe2
fix(ext/node): support setImmediate promisify.custom (#31920) - Add dedicated `setImmediatePromise` function in `timers.ts` - Add `promisify.custom` property to `setImmediate` that returns `setImmediatePromise` - Update `promises.setImmediate` to use `setImmediatePromise` directly - Bump `node_shim` to 0.3.0 (includes...
[ { "path": "Cargo.lock", "patch": "@@ -6356,9 +6356,9 @@ dependencies = [\n \n [[package]]\n name = \"node_shim\"\n-version = \"0.2.0\"\n+version = \"0.3.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"4c0c15839a684a17f9f07e62811a8989ba204e8b0f011859d5d0f73a4667d82b\"\...
2026-01-22T22:44:31
vuejs/vue
ebcef58645af1582ca3c8a19ec26967946970301
f9f74231a2e064861856396f57dc980a6de376e9
fix: fix v-for alias deconstruct regression fix #7096
[ { "path": "src/compiler/error-detector.js", "patch": "@@ -80,7 +80,7 @@ function checkIdentifier (\n ) {\n if (typeof ident === 'string') {\n try {\n- new Function(`var ${ident}`)\n+ new Function(`var ${ident}=_`)\n } catch (e) {\n errors.push(`invalid ${type} \"${ident}\" in expre...
2017-11-21T14:06:19
mrdoob/three.js
b4ca470e69fb7a5b0a97505b13431828ee4ba9c4
1e6169357025bd923c7aecffefcac8e9b37549e0
TSL: Fix `instance()` optional parameter (#30848)
[ { "path": "src/nodes/accessors/InstanceNode.js", "patch": "@@ -33,9 +33,9 @@ class InstanceNode extends Node {\n \t *\n \t * @param {number} count - The number of instances.\n \t * @param {InstancedBufferAttribute} instanceMatrix - Instanced buffer attribute representing the instance transformations.\n-\t *...
2025-04-02T16:52:04
golang/go
f84f8d86beb08631217e77d725a4b6528ed91dc2
a70addd3b31ccb685f48867e24c6c2b4dc364a11
cmd/compile: fix mis-infer bounds in slice len/cap calculations CL 704875 enhanced prove to infer bounds when index have a relationship with len(A) - K. However, the change incorrectly infer "K - len(A)" case, causing wrong bounds information. Fixing this by matching exactly "len(A) - K" case. Fixes #76709 Change-I...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2119,7 +2119,10 @@ func (ft *factsTable) detectSliceLenRelation(v *Value) {\n \t\tif bound := ow.Args[0]; (bound.Op == OpSliceLen || bound.Op == OpStringLen) && bound.Args[0] == slice {\n \t\t\tlenOffset = ow.Args[1]\n \t\t} else if bound := o...
2025-12-05T14:49:53