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
denoland/deno
fa18175cc2781da5016a6ca44f68290bd3dc3e02
583bee885ecaff76a6411b5f445cb0c5bf052f30
fix(npm): resolve linked packages not published to npm registry (#33021) ## Summary - Fixes the case where `"links"` in `deno.json` references a local npm package that has **not been published** to the npm registry - Added `package_info_or_link_fallback()` helper that falls back to creating a synthetic `NpmPackageInf...
[ { "path": "libs/npm/resolution/common.rs", "patch": "@@ -15,6 +15,8 @@ use thiserror::Error;\n use crate::registry::NpmPackageInfo;\n use crate::registry::NpmPackageVersionInfo;\n use crate::registry::NpmPackageVersionInfosIterator;\n+use crate::registry::NpmRegistryApi;\n+use crate::registry::NpmRegistryPa...
2026-03-30T12:57:00
vuejs/vue
7161176cd0dff10d65ab58e266018aff2660610f
165a14a6c6c406176037465d2961259c5c980399
fix: fix effect scope tracking for manually created instances fix #12705
[ { "path": "src/core/instance/init.ts", "patch": "@@ -34,6 +34,7 @@ export function initMixin(Vue: typeof Component) {\n vm.__v_skip = true\n // effect scope\n vm._scope = new EffectScope(true /* detached */)\n+ vm._scope._vm = true\n // merge options\n if (options && options._isCompon...
2022-08-18T10:14:50
mrdoob/three.js
ffb3ef520126688a1cc948ce27eb1f60e17c5870
f22c30e14ece4ffc3f75a763f8f3a18ef7e3a38b
TSL: Fix array texture with no `.depth()` defined breaks shader compilation (#33096)
[ { "path": "src/nodes/accessors/TextureNode.js", "patch": "@@ -553,11 +553,19 @@ class TextureNode extends UniformNode {\n \t\t\t\tconst gradSnippet = gradNode ? [ gradNode[ 0 ].build( builder, 'vec2' ), gradNode[ 1 ].build( builder, 'vec2' ) ] : null;\n \t\t\t\tconst offsetSnippet = offsetNode ? this.genera...
2026-03-01T04:46:13
vuejs/vue
165a14a6c6c406176037465d2961259c5c980399
bba6b3d6b4e3e26d28abbf20e74ec2f3e64f1a92
fix(ssr): fix on-component directives rendering (#12661) fix #10733
[ { "path": "packages/server-renderer/src/render.ts", "patch": "@@ -206,6 +206,11 @@ function renderComponentInner(node, isRoot, context) {\n type: 'Component',\n prevActive\n })\n+ if (isDef(node.data) && isDef(node.data.directives)) {\n+ childNode.data = childNode.data || {}\n+ ...
2022-08-18T08:22:55
denoland/deno
583bee885ecaff76a6411b5f445cb0c5bf052f30
bf3f85b353dc45eaf0d853d4100d10749f0d03a3
fix(ext/web): fix infinite loop in WebTransport datagram overflow handling (#33075) ## Summary - Fix overflow removal loop in `WebTransportDatagramDuplexStream` that used a `const` counter never decremented, causing an infinite loop when the incoming queue exceeded the high-water mark - Change `const toBeRemoved` to `...
[ { "path": "ext/web/webtransport.js", "patch": "@@ -713,9 +713,10 @@ class WebTransportDatagramDuplexStream {\n \n ArrayPrototypePush(queue, { datagram, timestamp: DateNow() });\n \n- const toBeRemoved = queue.length - this.#incomingHighWaterMark;\n+ let toBeRemoved = queue.length - this.#inc...
2026-03-30T12:33:41
mrdoob/three.js
2eec45994017c2cef3be880a42f98c1417d10612
d3a9f72e13539d51f699d77f1675c4b92ff6c0c9
USDLoader: Fix skeleton skinning distortion. (#33085) Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
[ { "path": "examples/jsm/loaders/usd/USDComposer.js", "patch": "@@ -112,6 +112,17 @@ class USDComposer {\n \t\t// Bind skeletons to skinned meshes\n \t\tthis._bindSkeletons();\n \n+\t\t// Expose skeleton on the root group so that AnimationMixer's\n+\t\t// PropertyBinding.findNode resolves bone names before s...
2026-02-27T21:20:34
golang/go
3e5efa048ac647c7554eea3a4ed230f265841115
7a1d131afbb1aee15b56d8dd2405f270bbc486c2
time: wrong Sign Cast in Time.UnmarshalBinary (V2 Format) Fixes #78528 Change-Id: I8979a310dbf94b9710d3e8428480cb49a7308294 GitHub-Last-Rev: 3d7f5ef1491f15923add6ef556e387eb8d49bf3b GitHub-Pull-Request: golang/go#78518 Reviewed-on: https://go-review.googlesource.com/c/go/+/762480 Reviewed-by: David Chase <drchase@goo...
[ { "path": "src/time/time.go", "patch": "@@ -1552,7 +1552,7 @@ func (t *Time) UnmarshalBinary(data []byte) error {\n \tbuf = buf[4:]\n \toffset := int(int16(buf[1])|int16(buf[0])<<8) * 60\n \tif version == timeBinaryVersionV2 {\n-\t\toffset += int(buf[2])\n+\t\toffset += int(int8(buf[2]))\n \t}\n \n \t*t = T...
2026-04-04T11:06:26
vuejs/vue
bba6b3d6b4e3e26d28abbf20e74ec2f3e64f1a92
9eb8ea5b63eec2b09f268738e9d0e311d9eafb19
feat(types): enhance type for onErrorCaptured (#12735)
[ { "path": "src/v3/apiLifecycle.ts", "patch": "@@ -42,7 +42,6 @@ export const onBeforeUpdate = createLifeCycle('beforeUpdate')\n export const onUpdated = createLifeCycle('updated')\n export const onBeforeUnmount = createLifeCycle('beforeDestroy')\n export const onUnmounted = createLifeCycle('destroyed')\n-ex...
2022-08-18T08:20:27
denoland/deno
bf3f85b353dc45eaf0d853d4100d10749f0d03a3
8252557622c7c4b893b99574d08e0072dfa683ff
docs: clarify mkdir does not throw with recursive: true (#33019) The JSDoc for `Deno.mkdir` and `Deno.mkdirSync` said "Defaults to throwing error if the directory already exists" without mentioning that `recursive: true` suppresses this error. The `MkdirOptions.recursive` property already documented this correctly, b...
[ { "path": "cli/tsc/dts/lib.deno.ns.d.ts", "patch": "@@ -2639,7 +2639,8 @@ declare namespace Deno {\n * await Deno.mkdir(\"restricted_access_dir\", { mode: 0o700 });\n * ```\n *\n- * Defaults to throwing error if the directory already exists.\n+ * Throws if the directory already exists, unless `...
2026-03-30T11:25:07
mrdoob/three.js
bc733cd5962af8644ad5ff38215efeea4f7f76ba
3fb1d054bfad41a859533b5faaf0b6b0b908ee4d
WebGPUTextureUtils: Fix check `layerUpdates` property (#33075)
[ { "path": "src/renderers/webgpu/utils/WebGPUTextureUtils.js", "patch": "@@ -538,7 +538,7 @@ class WebGPUTextureUtils {\n \n \t\t} else if ( texture.isArrayTexture || texture.isDataArrayTexture || texture.isData3DTexture ) {\n \n-\t\t\tif ( texture.layerUpdates.size > 0 ) {\n+\t\t\tif ( texture.layerUpdates ...
2026-02-27T09:25:27
golang/go
7a1d131afbb1aee15b56d8dd2405f270bbc486c2
47d6423673479edc418e777d221f2527076e9944
os: use t.TempDir in root_test tempDirWithUnixSocket tempDirWithUnixSocket used os.MkdirTemp("", ""), while other paths in root consistency tests use t.TempDir(). If GOTMPDIR and the system temp dir are on different filesystems (such as during abuild), TestRootConsistencyRename and TestRootConsistencyLink may produce...
[ { "path": "src/os/root_test.go", "patch": "@@ -1211,15 +1211,7 @@ var rootConsistencyTestCases = []rootConsistencyTest{{\n }}\n \n func tempDirWithUnixSocket(t *testing.T, name string) string {\n-\tdir, err := os.MkdirTemp(\"\", \"\")\n-\tif err != nil {\n-\t\tt.Fatal(err)\n-\t}\n-\tt.Cleanup(func() {\n-\t\...
2026-03-11T14:08:09
vuejs/vue
9eb8ea5b63eec2b09f268738e9d0e311d9eafb19
2263948c249e7486403bc5880712e6d9fd15c17f
chore: fix some legacy doc urls in warnings and readme (#12725) [ci skip]
[ { "path": "README.md", "patch": "@@ -73,7 +73,7 @@ Vue.js supports all browsers that are [ES5-compliant](https://kangax.github.io/c\n \n ## Documentation\n \n-To check out [live examples](https://vuejs.org/v2/examples/) and docs, visit [vuejs.org](https://vuejs.org).\n+To check out [live examples](https://v...
2022-08-18T08:12:20
mrdoob/three.js
3fb1d054bfad41a859533b5faaf0b6b0b908ee4d
4cc5a1c777d09781ead8e8f4d96109e2ac57e5e2
InstancedMesh, BatchedMesh: Fix getColorAt throwing an error when colors have not been set (#33079)
[ { "path": "src/objects/BatchedMesh.js", "patch": "@@ -1133,7 +1133,23 @@ class BatchedMesh extends Mesh {\n \tgetColorAt( instanceId, color ) {\n \n \t\tthis.validateInstanceId( instanceId );\n-\t\treturn color.fromArray( this._colorsTexture.image.data, instanceId * 4 );\n+\t\tif ( this._colorsTexture === n...
2026-02-27T09:23:59
denoland/deno
8252557622c7c4b893b99574d08e0072dfa683ff
8b9d1aa92bdab59b117ce85777e20d443d20e905
fix(serde_v8): use actual bytes written in to_utf8_slow (#33074) ## Summary - `to_utf8_slow` discarded the return value of `write_utf8_uninit_v2` and used the pre-estimated `capacity` for `Vec::set_len` - This violated `set_len`'s safety contract (all bytes up to `len` must be initialized) - Use the actual return valu...
[ { "path": "libs/serde_v8/de.rs", "patch": "@@ -764,7 +764,7 @@ fn to_utf8_slow(s: v8::Local<v8::String>, scope: &mut v8::PinScope) -> String {\n let capacity = s.utf8_length(scope);\n let mut buf = Vec::with_capacity(capacity);\n \n- s.write_utf8_uninit_v2(\n+ let bytes_len = s.write_utf8_uninit_v2(\n...
2026-03-30T10:27:31
golang/go
47d6423673479edc418e777d221f2527076e9944
70dc75b79b7454caf0ed256b51ff716f880b317d
cmd/go/internal/script: add fuzz test for quoteArgs Adds a fuzz test for quoteArgs and fixes the bugs it found: handling of empty strings and strings containing "&" or "$". This is a copy of a similar change submitted to rsc.io/script: https://github.com/rsc/script/pull/10 Change-Id: I76e7fc89475e1c4e415f45f2c7ac4a8...
[ { "path": "src/cmd/internal/script/engine.go", "patch": "@@ -493,15 +493,13 @@ func expandArgs(s *State, rawArgs [][]argFragment, regexpArgs []int) []string {\n }\n \n // quoteArgs returns a string that parse would parse as args when passed to a command.\n-//\n-// TODO(bcmills): This function should have a ...
2024-02-23T05:00:46
vuejs/vue
2263948c249e7486403bc5880712e6d9fd15c17f
5221d4d3b6049c87d196d99dbb64bcd3f3b07279
fix: directives shorthand normalize error (#12744) fix #12743
[ { "path": "src/core/vdom/modules/directives.ts", "patch": "@@ -103,7 +103,15 @@ function normalizeDirectives(\n }\n res[getRawDirName(dir)] = dir\n if (vm._setupState && vm._setupState.__sfc) {\n- dir.def = dir.def || resolveAsset(vm, '_setupState', 'v-' + dir.name)\n+ const setupDef =...
2022-08-18T08:11:47
mrdoob/three.js
8be76833b9929a1817143508618084f55715e775
c99b4a405e2c94fddfa0a56e667ceb6508808eb9
USDLoader: Fix flat shading on meshes without normals. (#33081) Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
[ { "path": "examples/jsm/loaders/usd/USDComposer.js", "patch": "@@ -1451,7 +1451,12 @@ class USDComposer {\n \n \t\t} else {\n \n-\t\t\tgeometry.computeVertexNormals();\n+\t\t\t// Compute vertex normals from the original indexed topology where\n+\t\t\t// vertices are shared, then expand them like positions.\...
2026-02-27T08:20:31
denoland/deno
8b9d1aa92bdab59b117ce85777e20d443d20e905
6710d587bc05e4275c2336fb1cc5104d5eee9fdc
fix(ext/node): escape shell metacharacters in child_process args on Windows (#33071) ## Summary - Expand the set of characters that trigger quoting in `escapeShellArg` on Windows to include cmd.exe metacharacters (`&`, `|`, `<`, `>`, `^`, `%`, `!`, `(`, `)`) - Add `%` doubling so percent signs are treated as literals ...
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -1279,7 +1279,10 @@ function escapeShellArg(arg: string): string {\n return '\"\"';\n }\n // If no special characters, return as-is\n- if (!/[\\s\"\\\\]/.test(arg)) {\n+ // Must include cmd.exe metacharacters: &|<>^!(...
2026-03-30T10:13:16
golang/go
70dc75b79b7454caf0ed256b51ff716f880b317d
d74de3ce79d4ab3495650bfcc4682cab09514b89
cmd/compile: unify DWARF variable generation and remove encoding Refactor the DWARF variable generation in the compiler: 1. Replace the intermediate []byte location list encoding with a structured LocListEntry type. The old code packed SSA block/value IDs into pointer-sized integers, wrote them alongside DWARF4...
[ { "path": "src/cmd/compile/internal/dwarfgen/dwarf.go", "patch": "@@ -93,7 +93,7 @@ func Info(ctxt *obj.Link, fnsym *obj.LSym, infosym *obj.LSym, curfn obj.Func) (s\n \t\t\tdefault:\n \t\t\t\tcontinue\n \t\t\t}\n-\t\t\tif !ssa.IsVarWantedForDebug(n) {\n+\t\t\tif !shouldEmitDwarfVar(n) {\n \t\t\t\tcontinue\n...
2026-03-03T00:25:23
mrdoob/three.js
f274d6ad5eb7594a563884ca05239e8f5d644ce4
d8cf11efc90f3ee67b640d6418b74607167c23fb
Inspector: Use fixed mini-panel (#33070)
[ { "path": "examples/jsm/inspector/Inspector.js", "patch": "@@ -224,12 +224,6 @@ class Inspector extends RendererInspector {\n \n \t\t\tthis.parameters.show();\n \n-\t\t\tif ( this.parameters.isDetached === false ) {\n-\n-\t\t\t\tthis.profiler.setActiveTab( this.parameters.id );\n-\n-\t\t\t}\n-\n \t\t}\n \n ...
2026-02-26T15:20:59
denoland/deno
6710d587bc05e4275c2336fb1cc5104d5eee9fdc
e15a439b9e6bcbda9017b7d8c1a933dc59238ae8
fix(lsp): don't double-encode query/fragment in notebook cell URIs (#33070) ## Summary - `normalize_non_file_uri` was re-encoding already percent-encoded query/fragment components, turning `%3D` into `%253D` - This broke `vscode-notebook-cell` URIs which use percent-encoded base64 fragments, causing repeated "Could no...
[ { "path": "cli/lsp/urls.rs", "patch": "@@ -87,31 +87,12 @@ pub fn normalize_non_file_uri(uri: &Uri) -> Uri {\n &percent_encoding::percent_decode_str(uri.path().as_str())\n .decode_utf8_lossy(),\n );\n- let encoded_query = uri.query().map(|query| {\n- let mut encoded_query = fluent_uri::pct_e...
2026-03-30T10:06:21
vuejs/vue
5221d4d3b6049c87d196d99dbb64bcd3f3b07279
89a6b5e8658a6e3ae2cf649829901784ac9deb3c
fix(compiler-sfc): rewriteDefault for class with decorators (#12747)
[ { "path": "packages/compiler-sfc/src/rewriteDefault.ts", "patch": "@@ -42,7 +42,12 @@ export function rewriteDefault(\n }).program.body\n ast.forEach(node => {\n if (node.type === 'ExportDefaultDeclaration') {\n- s.overwrite(node.start!, node.declaration.start!, `const ${as} = `)\n+ if (no...
2022-08-18T08:01:00
golang/go
2a902c8a8a37935abc4adc93605276c9d2103e45
f4b87f314dd7a890e9d3b42d7d6427cc7f51f9a2
cmd/compile: optimize switch statements using lookup tables Switch statement containing integer constant cases and case bodies just returning a constant should be optimizable to a simpler and faster table lookup instead of a jump table. That is, a switch like this: switch x { case 0: return 10 case 1: re...
[ { "path": "src/cmd/compile/internal/test/switch_test.go", "patch": "@@ -294,3 +294,135 @@ func (r rng) next(predictable bool) rng {\n func (r rng) value() uint64 {\n \treturn uint64(r)\n }\n+\n+// Benchmarks for switch-to-lookup-table optimization.\n+// These use functions that return constants, which is th...
2026-03-18T09:34:00
mrdoob/three.js
b86ec644c67b6bbe9eab2a39f75325bdf4360167
7e290dd46ec321ccbb02d518f0cd4f8d8625a74b
Fixed warning message in WebGLTimestampQueryPool (#33068)
[ { "path": "src/renderers/webgl-fallback/utils/WebGLTimestampQueryPool.js", "patch": "@@ -61,7 +61,7 @@ class WebGLTimestampQueryPool extends TimestampQueryPool {\n \t\t// Check if we have enough space for a new query pair\n \t\tif ( this.currentQueryIndex + 2 > this.maxQueries ) {\n \n-\t\t\twarnOnce( `WebG...
2026-02-26T09:00:40
vuejs/vue
b4bf4c52ad31e02307cfd4d643dc5610c893e3ba
80d1baf92050da411fb1bfe714401c498001dd36
fix(types): allow attaching unknown options to defined component fix #12742
[ { "path": "types/test/v3/define-component-test.tsx", "patch": "@@ -1165,3 +1165,7 @@ defineComponent({\n return h('div', {}, [...this.$slots.default!])\n }\n })\n+\n+// #12742 allow attaching custom properties (consistent with v3)\n+const Foo = defineComponent({})\n+Foo.foobar = 123", "additions":...
2022-08-18T07:32:12
golang/go
583ed06a2b82cf7437b37b2fc1fd2c772d7de420
16b01d5362794110376c23e83f386b9e413e2464
crypto/x509/pkix: avoid quadratic string concatenation in RDNSequence.String RDNSequence.String builds its result using repeated s += ... inside nested loops, leading to O(N²) time and memory complexity. A certificate with many Subject or Issuer RDN entries can therefore cause excessive CPU and memory usage when Strin...
[ { "path": "src/crypto/x509/pkix/pkix.go", "patch": "@@ -11,6 +11,7 @@ import (\n \t\"encoding/hex\"\n \t\"fmt\"\n \t\"math/big\"\n+\t\"strings\"\n \t\"time\"\n )\n \n@@ -38,23 +39,25 @@ var attributeTypeNames = map[string]string{\n // String returns a string representation of the sequence r,\n // roughly fo...
2026-03-26T21:05:23
denoland/deno
e15a439b9e6bcbda9017b7d8c1a933dc59238ae8
6511a1455682bae793000e16399e1b644e32fc6c
fix(install): all package.json aliases should be added to node_modules (#33068) ## Summary - Fix setup cache key in root node_modules symlink creation to use the alias name instead of the real package name - When multiple aliases point to the same package+version (e.g. `typescript-6.0.2` and `typescript-next` both res...
[ { "path": "libs/npm_installer/local.rs", "patch": "@@ -717,8 +717,7 @@ impl<\n )?;\n } else {\n // symlink the package into `node_modules/<alias>`\n- if setup_cache\n- .insert_root_symlink(&remote_pkg.id.nv.name, &target_folder_name)\n+ if setup_cache...
2026-03-30T09:27:32
golang/go
16b01d5362794110376c23e83f386b9e413e2464
7b5ba1f8ae661d4750a05e3908e0903cf9249a3b
path/filepath: document Dir behavior for Windows volume-only paths Clarify that on Windows, Dir("C:") returns "C:." (the current directory on drive C) rather than a root path. This is because Clean("") returns "." and Dir prepends the volume name. Fixes #77314 Change-Id: Idbc8ef5a4905e8587268428503a98a28c8c2f6e9 Rev...
[ { "path": "src/path/filepath/path.go", "patch": "@@ -463,6 +463,10 @@ func Base(path string) string {\n // If the path is empty, Dir returns \".\".\n // If the path consists entirely of separators, Dir returns a single separator.\n // The returned path does not end in a separator unless it is the root direc...
2026-02-17T01:10:17
denoland/deno
6511a1455682bae793000e16399e1b644e32fc6c
d6f833150a45cc93231250b8d61e5f3e957f8551
fix(ext/http): gracefully handle consumed external in OTel ops (#33027) Closes #33026 Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
[ { "path": "ext/http/http_next.rs", "patch": "@@ -151,6 +151,24 @@ macro_rules! clone_external {\n }};\n }\n \n+/// Try to clone Rc<HttpRecord> from raw external pointer.\n+/// Returns None if the pointer has already been consumed by take_external.\n+macro_rules! try_clone_external {\n+ ($external:expr) =...
2026-03-30T08:53:36
golang/go
7b5ba1f8ae661d4750a05e3908e0903cf9249a3b
0a36b58888cc41b276362673f70be87efd7e55ad
cmd/internal/obj/loong64: run go generate "go generate" on this package seems to generate a diff. I have no idea whether this diff is reasonable or not. It looks kinda weird, but maybe? Or perhaps something is wrong with ../mkcnames.go. Change-Id: I3474bab3f6880ffc24c1cf6ec11958a1c9467909 Reviewed-on: https://go-revi...
[ { "path": "src/cmd/internal/obj/loong64/cnames.go", "patch": "@@ -60,8 +60,14 @@ var cnames0 = []string{\n \t\"SAUTO\",\n \t\"LAUTO\",\n \t\"ZOREG\",\n-\t\"SOREG\",\n-\t\"LOREG\",\n+\t\"SOREG_8\",\n+\t\"SOREG_9\",\n+\t\"SOREG_10\",\n+\t\"SOREG_11\",\n+\t\"SOREG_12\",\n+\t\"SOREG_16\",\n+\t\"LOREG_32\",\n+\t...
2026-03-31T21:46:09
denoland/deno
d6f833150a45cc93231250b8d61e5f3e957f8551
af49b5bbb32a45e6b62e6f2e01492aa552fa271a
chore: Use *mut _ and *const _ for type inference (#33053) Replace explicit pointer type casts with underscore versions to allow the compiler to infer the correct types. This fixes type mismatch errors while maintaining type safety. Noticed when running ./x lint on Linux aarch64
[ { "path": "ext/napi/node_api.rs", "patch": "@@ -158,7 +158,7 @@ fn napi_fatal_error(\n std::ffi::CStr::from_ptr(location).to_str().unwrap()\n } else {\n let slice = std::slice::from_raw_parts(\n- location as *const u8,\n+ location as *const _,\n location_len...
2026-03-30T08:27:36
vuejs/vue
f0057b101e6451d5095cdb7fd6308fd31ac0450c
bd89ce53a9de417a9372630bb5d433a40acc1a53
fix(watch): avoid pre watcher firing on unmount fix #12703
[ { "path": "src/v3/apiWatch.ts", "patch": "@@ -274,10 +274,7 @@ function doWatch(\n let oldValue = isMultiSource ? [] : INITIAL_WATCHER_VALUE\n // overwrite default run\n watcher.run = () => {\n- if (\n- !watcher.active &&\n- !(flush === 'pre' && instance && instance._isBeingDestroyed)\n- ...
2022-08-15T11:06:38
denoland/deno
af49b5bbb32a45e6b62e6f2e01492aa552fa271a
5e9407a74b1db61c14aa5258436c98b3f1c5f085
fix(lsp): suggest import map aliases in auto-imports for local directories (#33048) ## Summary - When an import map defines a meaningful alias like `"@app/": "./src/"`, auto-import completions now correctly suggest the alias (e.g., `@app/islands/components/Button.tsx`) instead of only offering relative paths (e.g., `....
[ { "path": "cli/lsp/analysis.rs", "patch": "@@ -244,16 +244,56 @@ pub fn import_map_lookup(\n import_map: &ImportMap,\n specifier: &Url,\n referrer: &Url,\n+) -> Option<String> {\n+ import_map_lookup_inner(\n+ import_map,\n+ specifier,\n+ referrer,\n+ ReferrerInAddressSkip::SkipAll,\n+ )\...
2026-03-29T18:13:18
vuejs/vue
bd89ce53a9de417a9372630bb5d433a40acc1a53
4b37b568c7c3fd238aa61fcc956f882223f8e87f
fix: ensure render watcher of manually created instance is correctly tracked in owner scope fix #12701
[ { "path": "src/core/instance/lifecycle.ts", "patch": "@@ -209,13 +209,15 @@ export function mountComponent(\n // we set this to vm._watcher inside the watcher's constructor\n // since the watcher's initial patch may call $forceUpdate (e.g. inside child\n // component's mounted hook), which relies on v...
2022-08-15T07:37:13
mrdoob/three.js
3ca54b0a022614b5b363bfa670ceb2ecef7a4574
aa06320a1c424663cbe32e0d133b4859c89915a2
WebGLRenderer: Fix feedback loop regression. (#33063)
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -1953,7 +1953,7 @@ class WebGLRenderer {\n \t\t\t\t\tgenerateMipmaps: true,\n \t\t\t\t\ttype: hasHalfFloatSupport ? HalfFloatType : UnsignedByteType,\n \t\t\t\t\tminFilter: LinearMipmapLinearFilter,\n-\t\t\t\t\tsamples: capabilities.samples,\n+\t\t\t\...
2026-02-25T09:04:22
denoland/deno
a57d32c19cfcdef1cb9017044b277019e08c43d8
f065b072ab052602746b4be8da37ad90e51aee70
fix(ext/node): `process.argv[0]` is equivalent to execPath (#28915) Fixes https://github.com/denoland/deno/issues/28889 --------- Co-authored-by: David Sherret <dsherret@users.noreply.github.com> Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> Co-authored...
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -1331,7 +1331,7 @@ internals.__bootstrapNodeProcess = function (\n ) {\n if (!warmup) {\n argv0 = argv0Val || \"\";\n- argv[0] = argv0;\n+ argv[0] = Deno.execPath();\n argv[1] = Deno.build.standalone\n ? Deno.execPath()\n : ...
2026-03-27T17:06:16
mrdoob/three.js
e61ab90bd7b03dd9956d170476966ca7d9f7af46
2e3cf39fbba5c840fda3f571083b1f9320f1533a
Examples: Fix floor threshold in `games_fps`. (#33053)
[ { "path": "examples/games_fps.html", "patch": "@@ -203,7 +203,9 @@\n \n \t\t\t\tif ( result ) {\n \n-\t\t\t\t\tplayerOnFloor = result.normal.y > 0;\n+\t\t\t\t\t// determine if the surface we bumped into is something we can stand on\n+\n+\t\t\t\t\tplayerOnFloor = result.normal.y >= 0.15; // allow slopes up t...
2026-02-24T13:07:38
vuejs/vue
4b37b568c7c3fd238aa61fcc956f882223f8e87f
5c742eb2e0d8dad268fb29ed4f92d286b5e0f4b5
fix(types): fix options suggestions when using defineComponent functional component overloads should be moved last fix #12736
[ { "path": "types/v3-define-component.d.ts", "patch": "@@ -67,30 +67,6 @@ type DefineComponent<\n props: PropsOrPropOptions\n }\n \n-/**\n- * overload 0.0: functional component with array props\n- */\n-export function defineComponent<\n- PropNames extends string,\n- Props = Readonly<{ [key in PropNam...
2022-08-15T01:53:12
golang/go
330aec810997f89262fa04939a00425194e94216
40ec033c33802cf6e1236ea8030d882338a457d5
hash/maphash: add Hasher interface and ComparableHasher impl Hasher is the standard interface for expressing custom hash functions and equivalence relations for arbitrary data types. This allows them to be used in hash-based collection types such as a hash table (CL 612217) or a Bloom filter (CL 740440). The Comparab...
[ { "path": "api/next/70471.txt", "patch": "@@ -0,0 +1,6 @@\n+pkg hash/maphash, method (ComparableHasher[$0]) Equal($0, $0) bool #70471\n+pkg hash/maphash, method (ComparableHasher[$0]) Hash(*Hash, $0) #70471\n+pkg hash/maphash, type ComparableHasher[$0 comparable] struct #70471\n+pkg hash/maphash, type Hashe...
2025-03-12T21:12:41
denoland/deno
0a8cce448c8d5e560f93bc999eb05208c6c2e06a
47b20af1e7d64c91667ddd3bd99f53eca77710b8
Revert "fix(ext/node): support numeric FDs in child_process stdio array (#32959)" (#33017) ## Summary Reverts #32959 (commit ffbe2368) which added support for numeric FDs in `child_process` stdio array. The reverted commit changed deserialization of numeric values in stdio config from `Rid(ResourceId)` to `Fd(i32)`,...
[ { "path": "ext/process/lib.rs", "patch": "@@ -7,8 +7,6 @@ use std::collections::HashMap;\n use std::ffi::OsString;\n use std::io::Write;\n #[cfg(unix)]\n-use std::os::fd::FromRawFd;\n-#[cfg(unix)]\n use std::os::unix::prelude::ExitStatusExt;\n #[cfg(unix)]\n use std::os::unix::process::CommandExt;\n@@ -81,1...
2026-03-27T07:23:29
mrdoob/three.js
2e3cf39fbba5c840fda3f571083b1f9320f1533a
2b5ba4f99fa5a570514c070b218da1e815b3a7f8
TSL: Fix billboarding examples in TSL.md (#33056)
[ { "path": "docs/TSL.md", "patch": "@@ -1483,11 +1483,11 @@ Example:\n ```js\n import { billboarding } from 'three/tsl';\n \n-// Full billboarding (like particles) - faces camera in all directions\n+// Default: Horizontal only (like trees) - rotates around Y axis only\n material.vertexNode = billboarding();\...
2026-02-24T13:07:18
vuejs/vue
5c742eb2e0d8dad268fb29ed4f92d286b5e0f4b5
00458cd38d209410d3c675729230a42a0a34a4b9
fix(compiler-sfc): allow full hostnames in asset url base (#12732) fix #12731
[ { "path": "packages/compiler-sfc/src/templateCompilerModules/utils.ts", "patch": "@@ -24,10 +24,15 @@ export function urlToRequire(\n // does not apply to absolute urls or urls that start with `@`\n // since they are aliases\n if (firstChar === '.' || firstChar === '~') {\n+ // Allow for fu...
2022-08-15T01:37:08
golang/go
40ec033c33802cf6e1236ea8030d882338a457d5
4ce2612f21d2c32fc8a6f7bbd2c6c6c5b807f4fe
runtime: add sysUnreserve to undo sysReserve This is inspired by CL 724560 by Bobby Powers, particularly their great commit message. When using address sanitizer with leak detection, sysReserve registers memory regions with LSAN via lsanregisterrootregion. However, several code paths release this memory using sysFree...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -550,7 +550,7 @@ func MapNextArenaHint() (start, end uintptr, ok bool) {\n \tif !ok {\n \t\t// We were unable to get the requested reservation.\n \t\t// Release what we did get and fail.\n-\t\tsysFreeOS(got, physPageSize)\n+\t\tsysUnreserve(got, physPageS...
2026-04-02T17:17:23
mrdoob/three.js
2b5ba4f99fa5a570514c070b218da1e815b3a7f8
d14d3ec07beb851fc17a74487e9c58512e48f15f
Examples: Fix colors in webgpu_custom_fog (#33057)
[ { "path": "examples/webgpu_custom_fog.html", "patch": "@@ -53,8 +53,11 @@\n \n \t\t\t\t// custom fog\n \n-\t\t\t\tconst skyColor = color( 0xf0f5f5 );\n-\t\t\t\tconst groundColor = color( 0xd0dee7 );\n+\t\t\t\tconst skyColorValue = 0xf0f5f5;\n+\t\t\t\tconst groundColorValue = 0xd0dee7;\n+\n+\t\t\t\tconst sky...
2026-02-24T13:05:51
vuejs/vue
00458cd38d209410d3c675729230a42a0a34a4b9
1d8b892fcd9edcef1feeed74ad586beabb9f6df2
fix(types): Make SetupBindings optional on ExtendedVue and CombinedVueInstance (#12727) fix #12726 fix #12717
[ { "path": "types/vue.d.ts", "patch": "@@ -100,7 +100,7 @@ export type CombinedVueInstance<\n Methods,\n Computed,\n Props,\n- SetupBindings\n+ SetupBindings = {}\n > = Data &\n Methods &\n Computed &\n@@ -114,7 +114,7 @@ export type ExtendedVue<\n Methods,\n Computed,\n Props,\n- SetupBin...
2022-08-09T00:50:53
golang/go
78d5260426899e934a4d680910b1484953e78087
ef90a565b50af191c4f20b62770b084d6978a88d
runtime: use asmcgocall_no_g in libInit libInit runs before rt0_go, which is where TLS setup occurs. Thus the contents of the TLS may not be defined, so the g lookup in asmcgocall is not safe. Concretely, android-386 c-shared builds crash without this change because asmcgocall reads an invalid non-zero g from the TLS...
[ { "path": "src/runtime/asm_loong64.s", "patch": "@@ -568,6 +568,15 @@ nosave:\n \tMOVW\tR4, ret+16(FP)\n \tRET\n \n+// func asmcgocall_no_g(fn, arg unsafe.Pointer)\n+// Call fn(arg) aligned appropriately for the gcc ABI.\n+// Called on a system stack, and there may be no g yet.\n+TEXT ·asmcgocall_no_g(SB),N...
2026-03-31T20:34:59
mrdoob/three.js
1178b248603d2ebf408a0137fa700945fb222d07
e9461b694c6453e9809335bd63a5301dfdaf3548
WebGPURenderer: Fix texture compare fallback for shadows. (#33050)
[ { "path": "src/nodes/accessors/TextureNode.js", "patch": "@@ -8,7 +8,7 @@ import { nodeProxy, vec3, nodeObject, int, Fn } from '../tsl/TSLBase.js';\n import { step } from '../math/MathNode.js';\n import { NodeUpdateType } from '../core/constants.js';\n \n-import { Compatibility, IntType, LessCompare, Neares...
2026-02-23T10:32:35
denoland/deno
47b20af1e7d64c91667ddd3bd99f53eca77710b8
522e0710bb8c3b9be39578a0771ea68eea12507f
refactor(core): libuv compatibility improvements for uv_compat (#33015) ## Summary Factors out standalone libuv compliance improvements from #32819 (TLS rewrite) so they can land and be tested independently. - **Cached loop time**: `update_time()` once per tick instead of wall clock reads - **Socket lifecycle**: `uv...
[ { "path": "libs/core/runtime/jsruntime.rs", "patch": "@@ -2230,6 +2230,8 @@ impl JsRuntime {\n // ===== Phase 1: Timers =====\n // 1a. Fire expired libuv C timers\n if let Some(uv_inner_ptr) = context_state.uv_loop_inner.get() {\n+ // Update cached loop time at the start of each tick, match...
2026-03-27T07:14:30
vuejs/vue
2af751b6efa0cd9cb817ed96af41948e92599837
ba7dd2c4ed62dba30bde7c1d521f7bfbab529102
fix(reactivity): fix shallowReactive nested ref setting edge cases ref #12688
[ { "path": "src/core/observer/index.ts", "patch": "@@ -191,7 +191,7 @@ export function defineReactive(\n } else if (getter) {\n // #7981: for accessor properties without setter\n return\n- } else if (isRef(value) && !isRef(newVal)) {\n+ } else if (!shallow && isRef(value) && !...
2022-07-22T03:19:34
golang/go
7bbb5a8ec139cce0d126d00de16b167c2512ca1b
affadc7997466dfacad5b9a3dc90ee5e7a7b6085
io/fs: fix godoc to refer to the 'fsys' arg Fix godoc for package io/fs functions where 'fs' is mentioned instead of the 'fsys' argument. This allows to more clearly distinguish references to the methods of that argument from functions of the io/fs package. Change-Id: I18674940e59dcf4501f46ee48f94fc58948df28c Reviewe...
[ { "path": "src/io/fs/glob.go", "patch": "@@ -27,7 +27,7 @@ type GlobFS interface {\n // The only possible returned error is [path.ErrBadPattern], reporting that\n // the pattern is malformed.\n //\n-// If fs implements [GlobFS], Glob calls fs.Glob.\n+// If fsys implements [GlobFS], Glob calls fsys.Glob.\n /...
2026-03-16T09:15:53
mrdoob/three.js
5f6753b296df6faca9e4474ccc497ffd86372fa4
8d9c591c1c93a5c583a69e5ec6083d26b85a028d
AnimationAction: Fix `timeScale` reversal jump. (#33035)
[ { "path": "src/animation/AnimationAction.js", "patch": "@@ -856,6 +856,7 @@ class AnimationAction {\n \n \t\t\t} else {\n \n+\t\t\t\tthis._loopCount = loopCount;\n \t\t\t\tthis.time = time;\n \n \t\t\t}", "additions": 1, "deletions": 0, "language": "JavaScript" }, { "path": "test/unit/sr...
2026-02-21T09:21:06
vuejs/vue
ba7dd2c4ed62dba30bde7c1d521f7bfbab529102
a695c5a6df415101a5f728e87dbe087b4fbb0b7b
fix(types): export `defineAsyncComponent` type (#12684)
[ { "path": "types/index.d.ts", "patch": "@@ -42,7 +42,7 @@ export * from './v3-setup-helpers'\n export { Data } from './common'\n export { SetupContext } from './v3-setup-context'\n export { defineComponent } from './v3-define-component'\n-// export { defineAsyncComponent } from './defineAsyncComponent'\n+ex...
2022-07-22T02:18:52
denoland/deno
522e0710bb8c3b9be39578a0771ea68eea12507f
5950fb4f9033bb5fa623d83fbb57d5f06b927e2c
fix(compile): strip duplicate exe path from argv when standalone binary relaunches (#33016) ## Summary Fixes an issue where compiled npm CLI tools that relaunch themselves (e.g. `@google/gemini-cli`) would have the binary path leak into `process.argv` as a user argument. When Node.js apps relaunch themselves they ty...
[ { "path": "cli/rt/binary.rs", "patch": "@@ -91,8 +91,26 @@ pub fn extract_standalone(\n } = deserialize_binary_data_section(&root_url, remaining)?;\n \n let cli_args = cli_args.into_owned();\n- metadata.argv.reserve(cli_args.len() - 1);\n- for arg in cli_args.into_iter().skip(1) {\n+ let current_exe ...
2026-03-26T21:29:33
mrdoob/three.js
430111e2dc1fc77b782bfe558a12534c8ea5ba0c
29c9a7ac1fc796ec065f8baebe21313d42a1c243
Fixes typos in RenderPipeline related docs (#33034)
[ { "path": "src/nodes/display/RenderOutputNode.js", "patch": "@@ -5,9 +5,9 @@ import { NoColorSpace, NoToneMapping } from '../../constants.js';\n import { ColorManagement } from '../../math/ColorManagement.js';\n \n /**\n- * Normally, tone mapping and color conversion happens automatically\n- * before output...
2026-02-20T15:19:08
golang/go
238d7bddeba8436ff6eea8f9216978afb7d6e7cc
9301a3eab246d3ddb49415cfd892c00382189264
go/types, types2: in range-over-func, the yield function cannot be variadic Fixes #78483. For #78314. Change-Id: If83983c0bf79840aa02dc0d2fa8945f5e8b4e969 Reviewed-on: https://go-review.googlesource.com/c/go/+/761682 Auto-Submit: Robert Griesemer <gri@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-projec...
[ { "path": "src/cmd/compile/internal/types2/range.go", "patch": "@@ -240,6 +240,7 @@ func rangeKeyVal(check *Checker, orig Type, allowVersion func(goVersion) bool) (\n \t\t\treturn bad(\"requires go1.23 or later\")\n \t\t}\n \t\t// check iterator arity\n+\t\t// TODO(gri) error messages could be less verbose ...
2026-03-31T22:38:36
denoland/deno
5950fb4f9033bb5fa623d83fbb57d5f06b927e2c
eb436571a488f498237e307e8eed9d4b5512b101
fix(publish): vite import.meta.hot not type checking (#32127) Ambient types from `compilerOptions.types` need to be available during `deno publish` type checking. ## Problem `create_publish_graph()` passes `imports: Vec::new()`, excluding all tsconfig imports. The `to_graph_imports()` method on `CompilerOptionsResol...
[ { "path": "cli/graph_util.rs", "patch": "@@ -522,7 +522,30 @@ impl ModuleGraphCreator {\n if self.options.type_check_mode().is_true()\n && !graph_has_external_remote(&graph)\n {\n- self.type_check_graph(graph.clone())?;\n+ // Include compilerOptions.types imports for type checking so...
2026-03-26T19:44:35
vuejs/vue
a695c5a6df415101a5f728e87dbe087b4fbb0b7b
fabc1cf89f55dd7f3f95fa7890d2540f40e9f845
fix(sfc): align `<script setup>` component resolution edge case with v3 (#12687) fix #12685
[ { "path": "src/compiler/codegen/index.ts", "patch": "@@ -13,7 +13,7 @@ import {\n ASTText,\n CompilerOptions\n } from 'types/compiler'\n-import { BindingMetadata } from 'sfc/types'\n+import { BindingMetadata, BindingTypes } from 'sfc/types'\n \n type TransformFunction = (el: ASTElement, code: string) =>...
2022-07-22T02:18:27
mrdoob/three.js
29c9a7ac1fc796ec065f8baebe21313d42a1c243
ac88a8c2d880562ecf2a4ebacd71d2ebb751d705
GLTFLoader: Fix morph target parsing. (#33020)
[ { "path": "examples/jsm/loaders/GLTFLoader.js", "patch": "@@ -4512,17 +4512,28 @@ class GLTFParser {\n \t\tconst targetName = node.name ? node.name : node.uuid;\n \t\tconst targetNames = [];\n \n+\t\tfunction collectMorphTargets( object ) {\n+\n+\t\t\tif ( object.morphTargetInfluences ) {\n+\n+\t\t\t\ttarge...
2026-02-20T14:27:42
golang/go
9301a3eab246d3ddb49415cfd892c00382189264
0dcd7ab1b9658183d52ccadf9135834fdd57e2ba
runtime: rename _mkmalloc's module to avoid GOROOT conflict Often we want to run _mkmalloc using a different toolchain. The previous module path runtime/_mkmalloc would produce an ambiguous import path error because the directory runtime/_mkmalloc exists in a Go 1.26+ toolchain. Rename the module to avoid the conflict...
[ { "path": "src/runtime/_mkmalloc/go.mod", "patch": "@@ -1,4 +1,4 @@\n-module runtime/_mkmalloc\n+module _mkmalloc\n \n go 1.24\n ", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2026-04-01T16:47:25
vuejs/vue
fabc1cf89f55dd7f3f95fa7890d2540f40e9f845
ce6fc149e3a60d811e19f7b100a5f80fed18018d
fix(types): avoid circular type inference between v2 and v3 instance types fix #12683
[ { "path": "types/v3-component-public-instance.d.ts", "patch": "@@ -179,9 +179,7 @@ interface Vue3Instance<\n ? Partial<Defaults> & Omit<P & PublicProps, keyof Defaults>\n : P & PublicProps\n >,\n- ComponentPublicInstance | null,\n ComponentPublicInstance,\n- ComponentPublicInst...
2022-07-22T02:06:43
mrdoob/three.js
608f75712d745b76d02a13441b4b428fbdd6eafa
d76b5d0031473956a64cd24d248db99985d2f21d
USDLoader: Fix skin binding fallback when geomBindTransform is missing
[ { "path": "examples/jsm/loaders/usd/USDComposer.js", "patch": "@@ -3559,7 +3559,9 @@ class USDComposer {\n \n \t\t\t}\n \n-\t\t\t// Use geomBindTransform if available, otherwise compute from mesh/skeleton alignment\n+\t\t\t// Use geomBindTransform if available, otherwise fall back to identity.\n+\t\t\t// Es...
2026-02-20T06:12:00
denoland/deno
eb436571a488f498237e307e8eed9d4b5512b101
725027149f83d22916d47ecac3923cebec703599
fix(ext/node): rewrite Windows TTY reading to match libuv (console mode, encoding, raw + line mode) (#32999) ## Summary Rewrites the Windows TTY read/write paths to match libuv's behavior, fixing regressions introduced in the `node:tty` rewrite (#32777, landed in v2.7.6). ### Console mode restoration `uv_tty_set_mod...
[ { "path": "libs/core/uv_compat.rs", "patch": "@@ -199,6 +199,16 @@ impl UvLoopInner {\n }\n }\n \n+ /// Wake the event loop so it re-polls on the next tick. Used on\n+ /// Windows to ensure pending TTY write callbacks are processed\n+ /// promptly when there is no async I/O notification mechanism.\...
2026-03-26T15:20:59
golang/go
50f94b1dcd45b88c61d73fce2ec56cedc4c13b14
b5b9e3cdfee825829c95205dcae3e1d528990cd9
cmd/go/internal/doc: follow up to CL 733200 I submitted a rebased variant of the CL that dropped changes in response to Sean Liao and Ian Alexander's comments. Add the bug updates below and re-implement Ian's suggestion. Fixes #34750 For #53446 For #60645 Change-Id: Ie132ac65efd27e811edabfbbb083b6946a6a6964 Reviewe...
[ { "path": "src/cmd/go/internal/doc/doc.go", "patch": "@@ -373,7 +373,7 @@ func parseArgs(ctx context.Context, flagSet *flag.FlagSet, args []string) (pkg *\n \t}\n \tloader := modload.NewState()\n \tif testGOPATH {\n-\t\tloader = modload.DisabledState()\n+\t\tloader = modload.NewDisabledState()\n \t}\n \tif ...
2026-03-31T18:43:38
mrdoob/three.js
022c006347d355c4a93e449e90b07a8ce30a537e
f4f07b2b4a5b5bb0fb0be723b19dc0641ba7f8b7
WebGPURenderer: Fix binding update after dispose a `StorageTexture` (#33028)
[ { "path": "src/renderers/common/Sampler.js", "patch": "@@ -35,7 +35,7 @@ class Sampler extends Binding {\n \t\tthis._onTextureDispose = () => {\n \n \t\t\tthis.generation = null;\n-\t\t\tthis.version = 0;\n+\t\t\tthis.version = - 1;\n \n \t\t};\n \n@@ -47,7 +47,7 @@ class Sampler extends Binding {\n \t\t *\...
2026-02-20T06:09:31
vuejs/vue
ce6fc149e3a60d811e19f7b100a5f80fed18018d
adf3ac8adcf204dcc34b851da6ab4d914bd11cf9
types: fix manual api types for useAttrs/useListeners
[ { "path": "src/v3/apiSetup.ts", "patch": "@@ -181,18 +181,25 @@ export function syncSetupSlots(to: any, from: any) {\n }\n \n /**\n- * @internal use manual type def because it relies on legacy VNode types\n+ * @internal use manual type def because public setup context type relies on\n+ * legacy VNode types\...
2022-07-22T02:05:35
denoland/deno
725027149f83d22916d47ecac3923cebec703599
3f67ba97718a77ba11e20cfc69003fb36549d13e
fix(ext/node): add Symbol.dispose and Symbol.asyncDispose to fs.Dir (#33000) Closes #32966 --------- Signed-off-by: majiayu000 <1835304752@qq.com>
[ { "path": "ext/node/polyfills/_fs/_fs_dir.ts", "patch": "@@ -15,6 +15,8 @@ const {\n Uint8ArrayPrototype,\n PromisePrototypeThen,\n SymbolAsyncIterator,\n+ SymbolAsyncDispose,\n+ SymbolDispose,\n ArrayIteratorPrototypeNext,\n AsyncGeneratorPrototypeNext,\n SymbolIterator,\n@@ -110,6 +112,14 @@...
2026-03-26T14:18:32
golang/go
e3a10fe3749eea3d7d5f284c3a1e57479131176f
836b0984ee0b930c02ca62f9e8801f1016c9b253
net/http/internal/http2: prevent hanging Transport due to bad SETTINGS frame When processing SETTINGS frame, Transport currently only checks if the frame is valid for SETTINGS_ENABLE_CONNECT_PROTOCOL. As a result, a SETTINGS_MAX_FRAME_SIZE with the invalid value of 0 is erroneously accepted. This will then result in T...
[ { "path": "src/net/http/internal/http2/transport.go", "patch": "@@ -2836,6 +2836,9 @@ func (rl *clientConnReadLoop) processSettingsNoWrite(f *SettingsFrame) error {\n \n \tvar seenMaxConcurrentStreams bool\n \terr := f.ForeachSetting(func(s Setting) error {\n+\t\tif err := s.Valid(); err != nil {\n+\t\t\tre...
2026-03-31T19:02:11
mrdoob/three.js
b9d566a0f12252cc3b8242ef53bc9757e295d948
8e5dc00dd78f0e1e07f324db01324f1602753efd
NodeMaterialObserver: Fix typo. (#33024)
[ { "path": "src/materials/nodes/manager/NodeMaterialObserver.js", "patch": "@@ -438,14 +438,14 @@ class NodeMaterialObserver {\n \t\t// check index\n \n \t\tconst index = geometry.index;\n-\t\tconst storedIndexId = storedGeometryData.id;\n+\t\tconst storedIndexId = storedGeometryData.indexId;\n \t\tconst sto...
2026-02-19T13:36:20
vuejs/vue
e8d3a7d7a17f9e66d592fb1ddc4a603af9958d36
67760f8d30778f58afeada3589d4ac4493329ad5
fix(codegen): script setup should not attempt to resolve native elements as component fix #12674
[ { "path": "src/compiler/codegen/index.ts", "patch": "@@ -95,14 +95,15 @@ export function genElement(el: ASTElement, state: CodegenState): string {\n code = genComponent(el.component, el, state)\n } else {\n let data\n- if (!el.plain || (el.pre && state.maybeComponent(el))) {\n+ con...
2022-07-16T14:03:44
denoland/deno
3f67ba97718a77ba11e20cfc69003fb36549d13e
d043fd6fc3aeb31f79462b46ffd5c412629e452c
fix(ext/http): use clone_external in op_http_metric_handle_otel_error (#33005) ## Summary - Fix use-after-take panic in HTTP OTel integration when both metrics and tracing are enabled and the `onError` handler throws - `op_http_metric_handle_otel_error` was using `take_external!` (consuming the pointer), then `op_htt...
[ { "path": "ext/http/http_next.rs", "patch": "@@ -1713,8 +1713,8 @@ pub async fn op_raw_write_vectored(\n #[op2(fast)]\n pub fn op_http_metric_handle_otel_error(external: *const c_void) {\n let http =\n- // SAFETY: external is deleted before calling this op.\n- unsafe { take_external!(external, \"op_...
2026-03-26T13:49:53
mrdoob/three.js
8e5dc00dd78f0e1e07f324db01324f1602753efd
023e96727d3b1d7c30dea62d8be38c412a44e3a2
Examples: Fix sidebar scrolling to selected example (#33023)
[ { "path": "examples/index.html", "patch": "@@ -103,7 +103,7 @@ <h1><a href=\"https://threejs.org\">three.js</a></h1>\n \t\t\t\tif ( validRedirects.has( file ) === true ) {\n \n \t\t\t\t\tselectFile( file );\n-\t\t\t\t\tlinks[ file ].scrollIntoView( { block: 'center' } );\n+\t\t\t\t\tupdateLinkScroll();\n \t...
2026-02-19T06:45:38
vuejs/vue
67760f8d30778f58afeada3589d4ac4493329ad5
ea5d0f3fbfd983cb0275457cbcef344f926381ea
fix(setup): ensure setup context slots can be accessed immediately fix #12672
[ { "path": "src/core/instance/render.ts", "patch": "@@ -25,7 +25,13 @@ export function initRender(vm: Component) {\n const parentVnode = (vm.$vnode = options._parentVnode!) // the placeholder node in parent tree\n const renderContext = parentVnode && (parentVnode.context as Component)\n vm.$slots = res...
2022-07-16T13:45:03
golang/go
974764364aa09a34cad2d74a6b7c52c12a136ea3
2000e27ea6a644ea3623db201d8ba2818e8f5838
runtime: unix: sane exit in dieFromSignal for pid 1 A curious bug was reported to kubernetes[1] and runc[2] recently: sometimes runc init reports exit status of 2. Turns out, Go runtime assumes that on any UNIX system signals such as SIGTERM (or any other that has _sigKill flag set in sigtable) with no signal handler...
[ { "path": "src/runtime/signal_linux_test.go", "patch": "@@ -0,0 +1,95 @@\n+// Copyright 2026 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package runtime_test\n+\n+import (\n+\t\"bufio\"\n+\t\"bytes\"\n+...
2026-03-25T05:18:47
denoland/deno
d043fd6fc3aeb31f79462b46ffd5c412629e452c
6a66ea528cea4ec8e52b0f1d5a1765db116419d1
fix(ext/node): use constant-time comparison for secret key equality (#32994) ## Summary - `KeyObjectHandle::Secret` `PartialEq` impl used standard `==` for byte slice comparison, which short-circuits on first mismatch - Switched to `subtle::ConstantTimeEq` (`ct_eq`) to prevent potential timing side-channels when compa...
[ { "path": "ext/node_crypto/keys.rs", "patch": "@@ -411,7 +411,10 @@ impl PartialEq for KeyObjectHandle {\n match (self, other) {\n (Self::AsymmetricPrivate(a), Self::AsymmetricPrivate(b)) => a == b,\n (Self::AsymmetricPublic(a), Self::AsymmetricPublic(b)) => a == b,\n- (Self::Secret(a),...
2026-03-26T12:59:01
mrdoob/three.js
023e96727d3b1d7c30dea62d8be38c412a44e3a2
e8fe8196378d7c6b3f4bff62b68133bdf4383bc4
Inspector: Fix compatibility with `WebGLBackend` if used as a fallback (#33019)
[ { "path": "examples/jsm/inspector/Inspector.js", "patch": "@@ -198,10 +198,10 @@ class Inspector extends RendererInspector {\n \n \t\t\tif ( this.isAvailable ) {\n \n-\t\t\t\trenderer.backend.trackTimestamp = true;\n-\n \t\t\t\trenderer.init().then( () => {\n \n+\t\t\t\t\trenderer.backend.trackTimestamp = t...
2026-02-18T14:12:48
golang/go
2000e27ea6a644ea3623db201d8ba2818e8f5838
f9d2c2fd692e3aa81b80fbe1d0479866abff54df
cmd/go/internal/doc: use internal go command logic to load packages We've been using go/build to load packages, and that doesn't always do the right thing, because it doesn't have the same context and settings that the go command uses to load packages. Use the go command's loader to load packages. This CL doesn't rem...
[ { "path": "src/cmd/go/internal/doc/dirs.go", "patch": "@@ -15,6 +15,9 @@ import (\n \t\"strings\"\n \t\"sync\"\n \n+\t\"cmd/go/internal/cfg\"\n+\t\"cmd/go/internal/modload\"\n+\n \t\"golang.org/x/mod/semver\"\n )\n \n@@ -41,29 +44,18 @@ var dirs Dirs\n // dirsInit starts the scanning of package directories ...
2025-12-29T18:16:53
vuejs/vue
ea5d0f3fbfd983cb0275457cbcef344f926381ea
25ffdb62d22fe8688aca144d945671d5c82a8887
fix(inject): fix edge case of provided with async-mutated getters fix #12667
[ { "path": "src/core/instance/inject.ts", "patch": "@@ -1,8 +1,7 @@\n import { warn, hasSymbol, isFunction, isObject } from '../util/index'\n import { defineReactive, toggleObserving } from '../observer/index'\n import type { Component } from 'types/component'\n-import { provide } from 'v3/apiInject'\n-impor...
2022-07-16T13:33:48
denoland/deno
6a66ea528cea4ec8e52b0f1d5a1765db116419d1
8f1c7719f6ff0b308144f51c2a37ea788a7c6c61
fix(compile): use execPath for process.argv[1] in standalone binaries (#32990) ## Summary In compiled (standalone) binaries, `process.argv[1]` was set to the internal temp extraction path (e.g. `/tmp/deno-compile-foo/path/to/main.ts`) instead of the binary path. This caused npm CLI tools like `@google/gemini-cli` to ...
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -1332,7 +1332,9 @@ internals.__bootstrapNodeProcess = function (\n if (!warmup) {\n argv0 = argv0Val || \"\";\n argv[0] = argv0;\n- argv[1] = Deno.mainModule?.startsWith(\"file:\")\n+ argv[1] = Deno.build.standalone\n+ ? Deno.execP...
2026-03-26T12:41:05
mrdoob/three.js
6054daa329e3afb003afa9b536ea3850fd673a50
8669014a2b043ba6c846b3b9ae2dcbfd093a93ee
GLSLNodeBuilder: Fix array texture layer support for filtered sampling (#33008)
[ { "path": "src/renderers/webgl-fallback/nodes/GLSLNodeBuilder.js", "patch": "@@ -545,10 +545,13 @@ ${ flowData.code }\n \t * @param {string} textureProperty - The name of the texture uniform in the shader.\n \t * @param {string} uvSnippet - A GLSL snippet that represents texture coordinates used for samplin...
2026-02-16T09:24:57
vuejs/vue
25ffdb62d22fe8688aca144d945671d5c82a8887
46ec64869479393f95b6abda7a4adecf19867d06
fix(watch): fix queueing multiple post watchers fix #12664
[ { "path": "src/core/observer/scheduler.ts", "patch": "@@ -59,6 +59,15 @@ if (inBrowser && !isIE) {\n }\n }\n \n+const sortCompareFn = (a: Watcher, b: Watcher): number => {\n+ if (a.post) {\n+ if (!b.post) return 1\n+ } else if (b.post) {\n+ return -1\n+ }\n+ return a.id - b.id\n+}\n+\n /**\n * ...
2022-07-16T12:46:39
golang/go
f9d2c2fd692e3aa81b80fbe1d0479866abff54df
1582ad41058df1092eaed9dec4d97b7856953ade
test/codegen: forbid commas as separators We need to leave the comma in the regexp so we get the entire comment for processing, but report an error if commas are actually used. Change-Id: Ia19a329deda2524cea292d866a84d1bf3b4518c6 Reviewed-on: https://go-review.googlesource.com/c/go/+/760780 Reviewed-by: Junyang Shao ...
[ { "path": "src/cmd/internal/testdir/testdir_test.go", "patch": "@@ -1489,7 +1489,6 @@ var (\n \t//\t\"[\\s,]+\" matches \" \"\n \t//\tsecond reMatchCheck matches \"`SUB`\"\n \t//\t\")*)\" closes started groups; \"*\" means that there might be other elements in the space-separated list\n-\t// (TODO: remove a...
2026-03-28T15:12:15
mrdoob/three.js
e07553528990fc623b0759fb761b1f20707a3fe9
8efd540f3964477a82197bb5a6ea703fbaa19167
WebGPURenderer: Fix stencilBack not matching stencilFront in pipeline (#33002)
[ { "path": "src/renderers/webgpu/utils/WebGPUPipelineUtils.js", "patch": "@@ -250,7 +250,7 @@ class WebGPUPipelineUtils {\n \t\t\tif ( renderStencil === true ) {\n \n \t\t\t\tdepthStencil.stencilFront = stencilFront;\n-\t\t\t\tdepthStencil.stencilBack = {}; // three.js does not provide an API to configure th...
2026-02-14T10:00:28
denoland/deno
8f1c7719f6ff0b308144f51c2a37ea788a7c6c61
5db85e46e445e5c34adef8a2bd9c085f66815285
fix(ext/node): `util.stripVTControlCharacters` compatibility (#32942) Fixes #32931 `util.stripVTControlCharacters` was not removing OSC 8 hyperlinks because the `ansiPattern` regex only recognized BEL (`\u0007`) as the string terminator for OSC sequences. OSC 8 hyperlinks use `ESC \` (i.e. `\u001B\u005C`) as their te...
[ { "path": "ext/node/polyfills/internal/util/inspect.mjs", "patch": "@@ -282,8 +282,9 @@ const builtInObjects = new SafeSet(\n // Matches all ansi escape code sequences in a string\n const ansiPattern = \"[\\\\u001B\\\\u009B][[\\\\]()#;?]*\" +\n \"(?:(?:(?:(?:;[-a-zA-Z\\\\d\\\\/#&.:=?%@~_]+)*\" +\n- \"|[a...
2026-03-25T18:04:13
golang/go
1582ad41058df1092eaed9dec4d97b7856953ade
d5b6d583c16f60e4a2f80f8b0fe78abab503f84c
test/codegen: fix some unbalanced quotes Change-Id: I081da8c79f0264118e079af21ff58c511ae37e6c Reviewed-on: https://go-review.googlesource.com/c/go/+/760682 Reviewed-by: Junyang Shao <shaojunyang@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Joel Sing...
[ { "path": "src/cmd/internal/testdir/testdir_test.go", "patch": "@@ -1683,6 +1683,8 @@ func (t test) wantedAsmOpcodes(fn string) asmChecks {\n \t\t\ttail := comment[lastUsed:]\n \t\t\tif possibleOpcodeRx.MatchString(tail) {\n \t\t\t\tt.Errorf(\"%s:%d: possible unused assembly pattern: %v\", t.goFileName(), i...
2026-03-28T00:14:43
vuejs/vue
46ec64869479393f95b6abda7a4adecf19867d06
7d4a7722e3a8bc52a0a9b9660b75efa2ff479f39
fix(types): vue.d.ts should use relative import to v3-component-public-instance (#12668) fix #12666
[ { "path": "types/tsconfig.json", "patch": "@@ -9,7 +9,6 @@\n \"jsx\": \"preserve\",\n \"strict\": true,\n \"noEmit\": true,\n- \"baseUrl\": \".\",\n \"paths\": {\n \"vue\": [\"../index.d.ts\"]\n }", "additions": 0, "deletions": 1, "language": "JSON" }, { "pat...
2022-07-16T12:21:07
mrdoob/three.js
022375318b7120177faf415d2601b31e96747305
d55227ba5c8bfe9853cad38abfc9f7a57cd4de27
WebGPURenderer: Reversed depth buffer fixes. (#33000)
[ { "path": "src/cameras/CubeCamera.js", "patch": "@@ -204,7 +204,18 @@ class CubeCamera extends Object3D {\n \t\trenderTarget.texture.generateMipmaps = false;\n \n \t\t// https://github.com/mrdoob/three.js/issues/31413#issuecomment-3095966812\n-\t\tconst reversedDepthBuffer = !! ( renderer.isWebGLRenderer &&...
2026-02-13T13:12:32
mrdoob/three.js
13624b0d86b9e1d8c1cd63db454c0477d4d93f0f
7936309f484ed76e5471fb77b340b5b4713418ad
NodeBuilder: Fix update nodes sequence (#32991)
[ { "path": "examples/jsm/tsl/display/GaussianBlurNode.js", "patch": "@@ -1,5 +1,5 @@\n import { RenderTarget, Vector2, NodeMaterial, RendererUtils, QuadMesh, TempNode, NodeUpdateType } from 'three/webgpu';\n-import { nodeObject, Fn, float, uv, uniform, convertToTexture, vec2, vec4, passTexture, premultiplyAl...
2026-02-11T02:51:29
golang/go
1673075d4bd324e69cb4e6e58760316e2c84e604
9387929d09490ae30a8da75c64d9c64e2c16936d
test/codegen: fix broken syntax A bunch of tests had broken yet undetected syntax errors in their assembly output regexps. Things like mismatched quotes, using ^ instead of - for negation, etc. In addition, since CL 716060 using commas as separators between regexps doesn't work, and ends up just silently dropping eve...
[ { "path": "src/cmd/internal/testdir/testdir_test.go", "patch": "@@ -1394,10 +1394,11 @@ type wantedError struct {\n }\n \n var (\n-\terrRx = regexp.MustCompile(`// (?:GC_)?ERROR (.*)`)\n-\terrAutoRx = regexp.MustCompile(`// (?:GC_)?ERRORAUTO (.*)`)\n-\terrQuotesRx = regexp.MustCompile(`\"([^\"]*)\"`...
2026-03-27T22:12:23
vuejs/vue
fffbb9e856de5e4b3053a6b4d01d1404bfb6f85e
e0a9546ef32fa4bbfc4bede3002b2d6a5be8cf72
fix(types): $refs can also contain ComponentPublicInstance (#12659)
[ { "path": "types/vue.d.ts", "patch": "@@ -14,6 +14,7 @@ import { VNode, VNodeData, VNodeChildren, NormalizedScopedSlot } from './vnode'\n import { PluginFunction, PluginObject } from './plugin'\n import { DefineComponent } from './v3-define-component'\n import { nextTick } from './v3-generated'\n+import { C...
2022-07-15T09:05:04
mrdoob/three.js
97244a7540b5de1175ca4d8b9eae074820cd362e
461515f3594c6da470c0301011f220468e92b81d
WGSLNodeBuilder: Fix array texture layer support for filtered sampling (#32990)
[ { "path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js", "patch": "@@ -112,6 +112,29 @@ fn tsl_biquadraticTexture( map : texture_2d<f32>, coord : vec2f, iRes : vec2u, l\n \n \treturn mix( mix( rg1, rg2, f.x ), mix( rg3, rg4, f.x ), f.y );\n \n+}\n+` ),\n+\tbiquadraticTextureArray: new CodeNode( /* wgsl */...
2026-02-10T12:45:32
golang/go
9387929d09490ae30a8da75c64d9c64e2c16936d
f665ff8bc1ab2576d173cb69c3b2e87916dc74fd
cmd/link, runtime: record size of itabs We were depending on runtime.etypes immediately following the itabs. However, on AIX, runtime.etypes, as a zero-sized symbol, can float when using external linking. It won't necessarily stay right at the end of the itabs. Rather than worry about this, just record the size of the...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -2549,6 +2549,19 @@ func (state *dodataState) dodataSect(ctxt *Link, symn sym.SymKind, syms []loader\n \t\t\tsu.SetUint(ctxt.Arch, ctxt.moduledataItabOffset, uint64(typeSize))\n \t\t}\n \n+\t\titabSize := int64(0)\n+\t\tfor ; i < len(sl); i++ {\n+\t...
2026-03-30T04:05:35
vuejs/vue
e0a9546ef32fa4bbfc4bede3002b2d6a5be8cf72
52a59790a5b6e16c9f8cc737fcd784413dda282d
fix(types): fix missing expose() type on setup context fix #12660
[ { "path": "types/test/v3/setup-test.ts", "patch": "@@ -28,6 +28,9 @@ Vue.extend({\n }\n ctx.emit('foo')\n ctx.slots.default && ctx.slots.default()\n+ ctx.expose({\n+ a: 123\n+ })\n }\n })\n ", "additions": 3, "deletions": 0, "language": "Unknown" }, { "path": "ty...
2022-07-15T08:58:01
mrdoob/three.js
950578f359c319cc8baf9aa3fc1c8ed1f811e4ec
4afd908854ab194ef2810f3dbefc2820ff081441
Fix typo and link in Installation manual (#32972)
[ { "path": "manual/en/installation.html", "patch": "@@ -85,7 +85,7 @@ <h3>Development</h3>\n \n <ol>\n <li>\n- Install [link:https://nodejs.org/ Node.js]. We'll need it to load manage dependencies and to run our build tool.\n+ Install [link:https://nodejs.org/ ...
2026-02-09T08:44:35
golang/go
f665ff8bc1ab2576d173cb69c3b2e87916dc74fd
9002bd9fa1a3b500ca570844ea563967268a3878
cmd/compile: fix wrong label loop during rangefunc rewrite During the rangefunc rewrite, the compiler must correctly identify the target of branch statements. When a label is defined within a nested scope - such as inside a function literal or a closure - it can shadow a label with the same name in the outer scope. I...
[ { "path": "src/cmd/compile/internal/rangefunc/rewrite.go", "patch": "@@ -994,7 +994,14 @@ func (r *rewriter) computeBranchNext() {\n \t\t\t\tl := n.Label.Value\n \t\t\t\tlabels = append(labels, l)\n \t\t\t\tf := forStack[len(forStack)-1]\n-\t\t\t\tr.labelLoop[l] = f\n+\t\t\t\tif _, existed := r.labelLoop[l]...
2026-03-31T11:53:51
vuejs/vue
52a59790a5b6e16c9f8cc737fcd784413dda282d
cdd2df6171963096abb94600987f1706e40d2ab6
fix(types): fix $children and $root instance types fix #12655
[ { "path": "types/test/v3/define-component-test.tsx", "patch": "@@ -1148,6 +1148,7 @@ defineComponent({\n this.$on('foo', () => {})\n this.$ssrContext\n this.$isServer\n+ this.$children[0].$root.$children\n return h('div', {}, [...this.$slots.default!])\n }\n })", "additions": 1, ...
2022-07-15T08:52:27
denoland/deno
2cc7630031a7edfbaf87c65f5966f37f06d028a3
fd3da5a8e5c7c0c309108cf6d1f17b0c5fd7aaa0
chore: add lint plugin to track Deno.* API usage in node polyfills (#32964) Supersedes #31598. ## Summary - Add a Deno lint plugin (`tools/lint_plugins/no_deno_api_in_polyfills.ts`) that flags `Deno.*` API usage in `ext/node/polyfills` - Track expected violation counts per file in `EXPECTED_VIOLATIONS` -- any mismat...
[ { "path": "tools/lint.js", "patch": "@@ -37,6 +37,7 @@ if (rs) {\n if (js) {\n promises.push(dlint());\n promises.push(dlintPreferPrimordials());\n+ promises.push(lintNodePolyfillDenoApis());\n promises.push(ensureCiYmlUpToDate());\n promises.push(ensureNoUnusedOutFiles());\n promises.push(ensure...
2026-03-25T16:31:24
mrdoob/three.js
55358d6073325a4e2a825fcd53bd1c36ff6d7ee5
8d547cdb02b541a0db50a02f5ec53e6d63f80887
TSL: Fix `instancedArray()` `bufferCount` property (#32977)
[ { "path": "src/nodes/accessors/Arrays.js", "patch": "@@ -61,7 +61,7 @@ export const instancedArray = ( count, type = 'float' ) => {\n \t}\n \n \tconst buffer = new StorageInstancedBufferAttribute( count, itemSize, typedArray );\n-\tconst node = storage( buffer, type, count );\n+\tconst node = storage( buffe...
2026-02-08T21:08:37
golang/go
9002bd9fa1a3b500ca570844ea563967268a3878
d9fbe4c90d956f7835224f4de1afcf799e8cc3ed
cmd/compile: ensure map/slice clearing expressions are walked The order pass ensures that initialization operations for clear(expr) are scheduled. However, if 'expr' is a conversion that the walk pass subsequently optimizes away or transforms, the resulting nodes can be left in an un-walked state. These un-walked nod...
[ { "path": "src/cmd/compile/internal/walk/builtin.go", "patch": "@@ -136,17 +136,18 @@ func walkGrowslice(slice *ir.Name, init *ir.Nodes, oldPtr, newLen, oldCap, num i\n }\n \n // walkClear walks an OCLEAR node.\n-func walkClear(n *ir.UnaryExpr) ir.Node {\n+func walkClear(n *ir.UnaryExpr, init *ir.Nodes) ir....
2026-03-30T06:15:38
vuejs/vue
1a2c3c2d77ba96ef496f4c86329b7798026511ae
005e52d0b6f1a5bf9679789c5c4b90afd442d86b
fix(watch): fix deep watch for structures containing raw refs fix #12652
[ { "path": "src/core/observer/traverse.ts", "patch": "@@ -1,6 +1,7 @@\n import { _Set as Set, isObject, isArray } from '../util/index'\n import type { SimpleSet } from '../util/index'\n import VNode from '../vdom/vnode'\n+import { isRef } from '../../v3'\n \n const seenObjects = new Set()\n \n@@ -35,6 +36,8 ...
2022-07-13T03:01:10
denoland/deno
fd3da5a8e5c7c0c309108cf6d1f17b0c5fd7aaa0
bf581bc7e3f97e4a78de9ea5c294a9eb1e7656e6
perf(ops): replace per-op generated slow metrics wrappers with shared dispatch (#32889) ## Summary - Replace N per-op generated `v8_fn_ptr_metrics` functions with a single shared `slow_metrics_dispatch` wrapper in `deno_core` - Add `slow_fn_impl: SlowFnImplRef` field to `OpDecl` storing a function pointer to the op's...
[ { "path": "libs/core/extensions.rs", "patch": "@@ -158,6 +158,15 @@ impl ExtensionFileSource {\n }\n \n pub type OpFnRef = v8::FunctionCallback;\n+/// Function pointer type for the slow op implementation that returns a status code.\n+///\n+/// Status codes:\n+/// - `0`: op completed synchronously without er...
2026-03-25T16:30:26