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
97a701cb933762d79067f1918e7491463660edad
cca89e6dd0dcc83c82b91fb41d20d20578e7015f
test: prevent Claude from running entire spec suite (#32797) I can't make Claude stop doing this, so I'm gonna punish it with a panic.
[ { "path": "tests/specs/mod.rs", "patch": "@@ -264,6 +264,18 @@ struct StepMetaData {\n }\n \n pub fn main() {\n+ // When running from Claude Code, require a test filter (additional arg)\n+ // to prevent accidentally running the entire spec test suite.\n+ if std::env::var_os(\"CLAUDE_CODE_ENTRYPOINT\").is...
2026-03-18T08:16:30
golang/go
8afbae3e51ca0a22121bdf34ac65e0d4c9d888b7
0a56bf885884d07f6391afcbb122041f193eebb2
cmd/compile: allow multiple induction variables in one block in prove In this CL, the restriction that each block can only have one induction variable has been removed. This reduces missed optimizations. Fixes #76269 Change-Id: I14043182a40cc7887c5b6d9c1a5df8ea3a1bfedc Reviewed-on: https://go-review.googlesource.com...
[ { "path": "src/cmd/compile/internal/ssa/downward_counting_loop.go", "patch": "@@ -4,8 +4,6 @@\n \n package ssa\n \n-import \"fmt\"\n-\n // maybeRewriteLoopToDownwardCountingLoop tries to rewrite the loop to a\n // downward counting loop checking against start if the loop body does\n // not depend on ind or ...
2025-11-12T09:38:27
mrdoob/three.js
f57f64429ea1a1b0c151a58f31fa0695bd08b58f
e6aeb3c99b102e9e8f34bf8cbc130ee7e840f0a4
Update Sphere.js Fix type in `fromJSON()`.
[ { "path": "src/math/Sphere.js", "patch": "@@ -405,7 +405,7 @@ class Sphere {\n \t * Returns a serialized structure of the bounding sphere.\n \t *\n \t * @param {Object} json - The serialized json to set the sphere from.\n-\t * @return {Box3} A reference to this bounding sphere.\n+\t * @return {Sphere} A ref...
2025-11-28T11:00:53
vuejs/vue
86f8b52822c7cd6a9b4cc14755c69c51bb289107
05d05c0e69f446c9bb4ee911fb9004bd386c76ce
chore: fix typo (#12360) [skip ci]
[ { "path": "test/unit/features/global-api/set-delete.spec.js", "patch": "@@ -14,7 +14,7 @@ describe('Global API: set/delete', () => {\n }).then(done)\n })\n \n- it('should update a observing object', done => {\n+ it('should update an observing object', done => {\n const vm = new Vue({\n...
2021-11-17T09:16:58
denoland/deno
cca89e6dd0dcc83c82b91fb41d20d20578e7015f
6f4d5e91b234e41247fd24d527aac424fb35595e
fix(ext/node): improve worker_threads path validation and error handling (#32791) ## Summary - Implement `ERR_WORKER_PATH` error class for proper Node.js-compatible path validation in `worker_threads.Worker` - Reject string URL specifiers (`file://`, `data:`, `http://`, `https://`) with `ERR_WORKER_PATH` (must use `n...
[ { "path": "ext/node/polyfills/internal/errors.ts", "patch": "@@ -5,7 +5,6 @@\n * ERR_MANIFEST_ASSERT_INTEGRITY\n * ERR_QUICSESSION_VERSION_NEGOTIATION\n * ERR_REQUIRE_ESM\n- * ERR_WORKER_PATH\n * ERR_QUIC_ERROR\n * ERR_SYSTEM_ERROR //System error, shouldn't ever happen inside Deno\n * ERR_TTY_INIT_FAI...
2026-03-18T06:19:34
golang/go
a481ef071e0b30b33b2857919957be151b2d2a6d
a61fd428974822a8c57a2b2840fc237e6711b24d
net/url: allow commas in hostnames for mongodb urls A valid MongoDB URL can contain commas to include multiple host:port pairs. The current parseHost function splits the port starting from the first colon (:), but for MongoDB URLs that contain multiple host:port pairs, it needs to split from the last colon (:). Fixes...
[ { "path": "src/net/url/url.go", "patch": "@@ -617,6 +617,13 @@ func parseHost(scheme, host string) (string, error) {\n \t\t\t\t// continue to permit it for postgres:// URLs only.\n \t\t\t\t// https://go.dev/issue/75223\n \t\t\t\ti = lastColon\n+\t\t\t} else if scheme == \"mongodb\" || scheme == \"mongodb+sr...
2026-03-13T03:04:12
mrdoob/three.js
7b82fad194690ab02bc0e0795482ce6eeb2f868b
122c7c84bc1ec17b1c1403b4d9c0ce3fee5a6f1c
Revert "Revert "Physics Addons: Add errors when trying to use `getShape()` for unsupported geometry types."" (#32394)
[ { "path": "examples/jsm/physics/AmmoPhysics.js", "patch": "@@ -66,6 +66,8 @@ async function AmmoPhysics() {\n \n \t\t}\n \n+\t\tconsole.error( 'AmmoPhysics: Unsupported geometry type:', geometry.type );\n+\n \t\treturn null;\n \n \t}", "additions": 2, "deletions": 0, "language": "JavaScript" }...
2025-11-27T20:54:50
vuejs/vue
93bd4406ac4b07339a9c623f7e4ceaa11bfdbf40
abfbf2d43054e15f7a6b90f252b50555e7f816a2
fix typos (#12348)
[ { "path": "packages/weex-vue-framework/index.js", "patch": "@@ -28,7 +28,7 @@ function createInstanceContext (\n data: data\n };\n \n- // Each instance has a independent `Vue` module instance\n+ // Each instance has an independent `Vue` module instance\n var Vue = instance.Vue = createVueModuleIns...
2021-11-06T22:43:57
denoland/deno
6f4d5e91b234e41247fd24d527aac424fb35595e
9f327bb9ab0dd08ae5999678f21b6befd4a3b6f9
fix(ext/node): fix TLA stall with native TTY handles and make stdio indestructible (#32792) ## Summary - Fix TLA (top-level await) stall detection to account for active native libuv-compat TTY handles. Without this, any `await` on readline/stdin with a non-stdout output stream (like `@inquirer/prompts`' MuteStrea...
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -1244,6 +1244,22 @@ internals.__bootstrapNodeProcess = function (\n if (io.stdout.isTerminal()) {\n /** https://nodejs.org/api/process.html#process_process_stdout */\n stdout = process.stdout = new TTYWriteStream(1);\n+ // Match No...
2026-03-18T06:06:08
golang/go
a92edd97bfb9b383acb934fa0564bcad948bbb20
5978090f9d4c45b63c2c749174e04594ca39b064
cmd/compile: simplify the implementation of LoweredZeroLoop on loong64 Removes 6484 instructions from the go binary on loong64. before after delta asm 561517 561225 -292 cgo 480929 480493 -436 compile 2887121 2886277 -844 cover 530429 530125 -304 fix ...
[ { "path": "src/cmd/compile/internal/loong64/ssa.go", "patch": "@@ -576,7 +576,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\t}\n \tcase ssa.OpLOONG64LoweredZeroLoop:\n \t\tptrReg := v.Args[0].Reg()\n-\t\tcountReg := v.RegTmp()\n+\t\tendReg := v.RegTmp()\n \t\tflagReg := int16(loong64.REGTMP)\n...
2026-03-11T02:11:35
mrdoob/three.js
122c7c84bc1ec17b1c1403b4d9c0ce3fee5a6f1c
58d9d506e5bbc59a9c2d6583013c06460dd54299
Revert "Physics Addons: Add errors when trying to use `getShape()` for unsupported geometry types." (#32393)
[ { "path": "examples/jsm/physics/AmmoPhysics.js", "patch": "@@ -66,8 +66,6 @@ async function AmmoPhysics() {\n \n \t\t}\n \n-\t\tconsole.error( 'AmmoPhysics: Unsupported geometry type:', geometry.type );\n-\n \t\treturn null;\n \n \t}", "additions": 0, "deletions": 2, "language": "JavaScript" }...
2025-11-27T20:49:41
vuejs/vue
531b7619b137aecd71441e1ea53dae3066d71bc8
30a43afa10e3ae461edc1152beb11b1e61dc4469
chore: fix typo in test (#12291)
[ { "path": "test/ssr/ssr-basic-renderer.spec.js", "patch": "@@ -52,7 +52,7 @@ describe('SSR: basicRenderer', () => {\n })\n \n // #5941\n- it('should work peoperly when accessing $ssrContext in root component', done => {\n+ it('should work properly when accessing $ssrContext in root component', done =>...
2021-09-22T13:58:08
golang/go
5978090f9d4c45b63c2c749174e04594ca39b064
adf9c27874d8b59b9632a23d9148db4faef36d98
cmd/internal/obj/loong64: correcting spelling errors in the comments Change-Id: I8773f3d00a529d11009c4682a191b3b75b15f396 Reviewed-on: https://go-review.googlesource.com/c/go/+/754060 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Carlos Amedee <carlos@golang.org...
[ { "path": "src/cmd/internal/obj/loong64/instOp.go", "patch": "@@ -327,47 +327,47 @@ var oprrr = map[obj.As]uint32{\n \tAVMADDWEVWH: 0x0e159 << 15, // vmaddwev.w.h\n \tAVMADDWEVVW: 0x0e15a << 15, // vmaddwev.d.w\n \tAVMADDWEVQV: 0x0e15b << 15, // vmaddwev.q.d\n-\tAVMADDWODHB: 0x...
2026-03-11T09:24:15
denoland/deno
6aa3354a7faa644abe89bdcb66c04fde72830cd3
e4ae3116eb983ef4a0f2776218abfd8f31d2f893
fix(ext/node): fix Buffer.concat, expose internal/buffer, implement markAsUntransferable (#32760) ## Summary Fixes 3 Buffer compat tests from #32706 and fixes #31824. - **Buffer.concat**: Use `TypedArrayPrototypeGetByteLength` instead of `.length` to prevent spoofed length getters from causing uninitialized memory e...
[ { "path": "ext/node/lib.rs", "patch": "@@ -184,6 +184,7 @@ deno_core::extension!(deno_node,\n ops::blocklist::op_blocklist_add_subnet,\n ops::blocklist::op_blocklist_check,\n \n+ ops::buffer::op_mark_as_untransferable,\n ops::buffer::op_is_ascii,\n ops::buffer::op_is_utf8,\n ops::buff...
2026-03-17T21:09:27
mrdoob/three.js
5240f294f9ce655d05eaeabf3c8f5491a3a1d335
9a0da1a5de93f61f092d878bb44e6ccaeda50285
StructTypeNode: Fix memory length calculations (#32377)
[ { "path": "src/nodes/core/NodeUtils.js", "patch": "@@ -181,22 +181,22 @@ export function getMemoryLengthFromType( type ) {\n }\n \n /**\n- * Returns the byte boundary for the given data type.\n+ * Returns the alignment requirement for the given data type.\n *\n * @private\n * @method\n * @param {string}...
2025-11-26T21:25:55
vuejs/vue
515467a618479792abedf01a7b1dcef2ac2a17ed
4f6f39a26cfc0d78d6b09fd6d3802d45aabb758e
feat(compiler): condenses staticClass whitespace (fix #12113) (#12195) * feat(compiler): template staticClass no longer preserves whitespace Template static classes used to preserve whitespace after compilation, resulting in builds that had bigger file outputs with whitespace in component's staticClass attributes ...
[ { "path": "src/platforms/web/compiler/modules/class.js", "patch": "@@ -23,7 +23,7 @@ function transformNode (el: ASTElement, options: CompilerOptions) {\n }\n }\n if (staticClass) {\n- el.staticClass = JSON.stringify(staticClass)\n+ el.staticClass = JSON.stringify(staticClass.replace(/\\s+/g, ...
2021-09-08T09:23:49
mrdoob/three.js
17fd5bf424395d4a40b2cb8db21363c6b9f09542
39d47057351aac9af7ef68ffb27897ee831aba8f
Dev: Fix high severity vulnerability. (#32374)
[ { "path": "package-lock.json", "patch": "@@ -1722,7 +1722,6 @@\n \"integrity\": \"sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==\",\n \"dev\": true,\n \"license\": \"MIT\",\n- \"peer\": true,\n \"dependencies\": {\n \"@typ...
2025-11-26T12:21:46
golang/go
cd2fa3b48dc059203aa724474e19096928b3f71f
a6949e942c4287fcccf3264b8df6190c88609cb7
runtime: fix memclrNoHeapPointersPreemptible memclrNoHeapPointersChunked was originally written for clearing fresh allocations. It converts to uintptr early and thus doesn't handle the case where the pointer points to the stack. At the preemption point, the buffer being pointed to might be on the stack and copied to a...
[ { "path": "src/runtime/malloc.go", "patch": "@@ -2184,22 +2184,27 @@ func reusableSize(size uintptr) bool {\n // Use this with care; if the data being cleared is tagged to contain\n // pointers, this allows the GC to run before it is all cleared.\n func memclrNoHeapPointersChunked(size uintptr, x unsafe.Poi...
2026-03-17T18:13:16
vuejs/vue
3d29ba863b89fd90dabd0856c0507eacdf5fef22
509de2af793a770c7c29897980b27dfe5278d274
fix(v-on): add removing all dom event listeners when vnode destroyed (#10085)
[ { "path": "src/platforms/web/runtime/modules/events.js", "patch": "@@ -5,6 +5,7 @@ import { updateListeners } from 'core/vdom/helpers/index'\n import { isIE, isFF, supportsPassive, isUsingMicroTask } from 'core/util/index'\n import { RANGE_TOKEN, CHECKBOX_RADIO_TOKEN } from 'web/compiler/directives/model'\n...
2021-08-05T09:21:12
denoland/deno
e4ae3116eb983ef4a0f2776218abfd8f31d2f893
922a9cafafc54d6f1aee1d4ba4dfd87a11abef85
fix(ext/node): rewrite node:tty on top of uv compat (#32777) Fixed https://github.com/denoland/deno/issues/30075 A decent chunk of this is written by claude, mostly uv_tty.
[ { "path": "ext/node/lib.rs", "patch": "@@ -352,11 +352,15 @@ deno_core::extension!(deno_node,\n ops::udp::op_node_udp_leave_source_specific,\n ops::udp::op_node_udp_send,\n ops::udp::op_node_udp_recv,\n+ ops::stream_wrap::op_stream_base_register_state,\n+ ops::tty_wrap::op_tty_check_fd_per...
2026-03-17T19:55:36
mrdoob/three.js
a95af48c45ed2400cbce960f30b22c9aab0034a4
7c3d020650e36b57a49bd015d7e8b8bd91f129f0
Update GTAONode.js Fix typo.
[ { "path": "examples/jsm/tsl/display/GTAONode.js", "patch": "@@ -29,7 +29,7 @@ let _rendererState;\n * postProcessing.outputNod = aoPass.getTextureNode().mul( scenePassColor );\n * ```\n *\n- * Reference: [Practical Real-Time Strategies for Accurate Indirect Occlusionnpmm](https://www.activision.com/cdn/r...
2025-11-26T11:49:41
golang/go
a6949e942c4287fcccf3264b8df6190c88609cb7
e0ebb4c646ade3ab83708d1772bce452398888b3
go/types, types2: handle unconstrained type parameters correctly in a few places When iterating over a type set via a range clause, am unconstrained type set produces a single (nil, nil) result. This was not properly accounted for in a few places: - In the code for the append and copy built-in, handle the (nil, nil) ...
[ { "path": "src/cmd/compile/internal/types2/builtins.go", "patch": "@@ -112,7 +112,7 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\t\t\tfor _, u := range typeset(y.typ()) {\n \t\t\t\t\tif s, _ := u.(*Slice); s != nil && Identical(s.elem, universeByte) {\n \t\t\t\t\t...
2026-03-12T02:02:07
mrdoob/three.js
7c3d020650e36b57a49bd015d7e8b8bd91f129f0
3b0c9cd4760c0b75f3fa4ce1ac5f882e37f68fd3
Update GTAONode.js Fix link.
[ { "path": "examples/jsm/tsl/display/GTAONode.js", "patch": "@@ -29,7 +29,7 @@ let _rendererState;\n * postProcessing.outputNod = aoPass.getTextureNode().mul( scenePassColor );\n * ```\n *\n- * Reference: {@link https://www.activision.com/cdn/research/Practical_Real_Time_Strategies_for_Accurate_Indirect_O...
2025-11-26T11:49:24
denoland/deno
9be5e367e0e902e343de48f1b72528110fa887d1
21a81528207918a0df439698ab1c946748ae453b
fix(ext/node): allow passing `FileHandle` as `fd` argument for `WriteStream` and `ReadStream` (#32770) Towards #29972 Allows the following tests to pass: - https://github.com/nodejs/node/blob/v25.8.1/test/parallel/test-fs-read-stream-file-handle.js - https://github.com/nodejs/node/blob/v25.8.1/test/parallel/test-fs-w...
[ { "path": "ext/node/polyfills/internal/fs/handle.ts", "patch": "@@ -98,8 +98,8 @@ const kRefs = Symbol(\"kRefs\");\n const kClosePromise = Symbol(\"kClosePromise\");\n const kCloseResolve = Symbol(\"kCloseResolve\");\n const kCloseReject = Symbol(\"kCloseReject\");\n-const kRef = Symbol(\"kRef\");\n-const k...
2026-03-17T16:08:02
vuejs/vue
c52427b0d2c1d203deea6eb69f2b4b181d56022c
80e7730946538e0371e213100a0fe81299c2f4b2
fix(types): async Component types (#11906) * Update options.d.ts * Create async-component-test.ts * add generics to Component ad EsModuleComponent * remove not needed , and ; * revert unrelated changes * revert unrelated changes * revert unrelated changes * revert unrelated changes * optimize E...
[ { "path": "types/options.d.ts", "patch": "@@ -12,9 +12,10 @@ export type Component<Data=DefaultData<never>, Methods=DefaultMethods<never>, Co\n | FunctionalComponentOptions<Props>\n | ComponentOptions<never, Data, Methods, Computed, Props>\n \n-interface EsModuleComponent {\n- default: Component\n-}\n+...
2021-06-03T13:13:33
golang/go
e0ebb4c646ade3ab83708d1772bce452398888b3
ab1a2c8874e470b251a6c2469eabf36b389a0a02
cmd/compile: use 128-bit arm64 vector ops for Move expansion Update Move rewrite rules to use FMOVQload/store and FLDPQ/FSTPQ for medium-sized copies (16-64 bytes). This generates fewer and wider instructions than the previous approach using LDP/STP pairs. Executable Base .text go1 Change ------...
[ { "path": "src/cmd/compile/internal/ssa/_gen/ARM64.rules", "patch": "@@ -434,33 +434,25 @@\n (Move [15] dst src mem) =>\n \t(MOVDstore [7] dst (MOVDload [7] src mem)\n \t\t(MOVDstore dst (MOVDload src mem) mem))\n-(Move [16] dst src mem) =>\n-\t(STP dst (Select0 <typ.UInt64> (LDP src mem)) (Select1 <typ.UIn...
2026-01-21T20:29:59
mrdoob/three.js
3b1e4d534d2d1959cf533a5a8ee7c8c75297c0ef
0537b25f3f448dfa2837da778b358d8940dd732c
DecalGeometry: Fix typo (#32366)
[ { "path": "examples/jsm/geometries/DecalGeometry.js", "patch": "@@ -35,7 +35,7 @@ class DecalGeometry extends BufferGeometry {\n \t * @param {Mesh} [mesh] - The base mesh the decal should be projected on.\n \t * @param {Vector3} [position] - The position of the decal projector.\n \t * @param {Euler} [orient...
2025-11-25T22:42:21
denoland/deno
21a81528207918a0df439698ab1c946748ae453b
832fbcf1099396fc0d98917d40ae1373ae9257d8
fix(process): allow unref'd child processes to outlive parent (#32563) ## Summary - Fixes `child_process.unref()` killing the child process when the parent exits, instead of letting it continue running independently (Node.js behavior) - Replaces tokio's `kill_on_drop(true)` with a custom `Drop` on `ChildResource` tha...
[ { "path": "ext/process/40_process.js", "patch": "@@ -6,6 +6,8 @@ import {\n op_run,\n op_run_status,\n op_spawn_child,\n+ op_spawn_child_ref,\n+ op_spawn_child_unref,\n op_spawn_kill,\n op_spawn_sync,\n op_spawn_wait,\n@@ -401,12 +403,18 @@ class ChildProcess {\n core.refOpPromise(this.#wa...
2026-03-17T16:03:03
vuejs/vue
38f71de380d566e4eef60968a8eca6bd6f482dd5
67901e78ef9d31809ea154f359f0512c5a913bf4
fix(v-slot): fix scoped slot normalization combined with v-if (#12104)
[ { "path": "src/core/vdom/helpers/normalize-scoped-slots.js", "patch": "@@ -61,10 +61,10 @@ function normalizeScopedSlot(normalSlots, key, fn) {\n res = res && typeof res === 'object' && !Array.isArray(res)\n ? [res] // single vnode\n : normalizeChildren(res)\n- let vnode: VNode = res && r...
2021-06-02T12:44:18
mrdoob/three.js
aff821740942de1368d8d2a2fc426d4a4e06b747
53e74515e3a4d18d1ca84d5b5973c8fae593a2eb
WebGPURenderer: Fix point light shadows. (#32365)
[ { "path": "src/nodes/lighting/PointShadowNode.js", "patch": "@@ -6,12 +6,57 @@ import { texture } from '../accessors/TextureNode.js';\n import { max, abs, sign } from '../math/MathNode.js';\n import { sub, div } from '../math/OperatorNode.js';\n import { renderGroup } from '../core/UniformGroupNode.js';\n+i...
2025-11-25T21:36:31
denoland/deno
974c6da2e9f587ca8a5ba44ca46911a345947815
40c1da687a9457ac48c9d711b99596e784e17be7
fix(core): don't panic in to_v8_error when JS error builder callback fails (#32749) ## Summary - When the JS error builder callback in `to_v8_error` throws (e.g. due to stack overflow or `Object.prototype` / `Array.prototype` pollution), fall back to returning the plain message string instead of panicking - Adds a uni...
[ { "path": "libs/core/error.rs", "patch": "@@ -333,19 +333,14 @@ pub fn to_v8_error<'s, 'i>(\n match maybe_exception {\n Some(exception) => exception,\n None => {\n- let mut msg =\n- \"Custom error class must have a builder registered\".to_string();\n+ // The JS error builder callb...
2026-03-17T15:06:27
vuejs/vue
0ff1356ef7922f9c082a11fd2ec9124539468a6b
f2a6a1b8d3d43065056b8eb956804ff1f75e3f0b
chore: fix typo in README.md [ci skip] (#12064)
[ { "path": "README.md", "patch": "@@ -17,7 +17,7 @@ Vue.js is an MIT-licensed open source project with its ongoing development made\n \n - [Become a backer or sponsor on Patreon](https://www.patreon.com/evanyou).\n - [Become a backer or sponsor on Open Collective](https://opencollective.com/vuejs).\n-- [One-...
2021-05-08T06:48:32
mrdoob/three.js
7aae387bd300ccf0bc299a882df81a64334acad4
877fc4388b452366d464b198fd9fcb67289ba8c6
Inspector: Fix value update of number and checkbox elements. (#32355)
[ { "path": "examples/jsm/inspector/ui/Values.js", "patch": "@@ -157,6 +157,14 @@ class ValueNumber extends Value {\n \n \t}\n \n+\tsetValue( val ) {\n+\n+\t\tthis.input.value = val;\n+\n+\t\treturn super.setValue( val );\n+\n+\t}\n+\n \tgetValue() {\n \n \t\treturn parseFloat( this.input.value );\n@@ -194,6 ...
2025-11-25T17:06:45
denoland/deno
40c1da687a9457ac48c9d711b99596e784e17be7
457de64d2d322e448b171f614afa743c9fcd0123
feat(ext/signals): support additional signals on Windows (#32689) ## Summary - Add SIGTERM, SIGQUIT, SIGKILL, and SIGABRT to the Windows signal dictionary, matching libuv's signal definitions - `Deno.addSignalListener("SIGTERM", ...)` and `Deno.addSignalListener("SIGQUIT", ...)` now work on Windows - `Deno.kill()` on...
[ { "path": "cli/tsc/dts/lib.deno.ns.d.ts", "patch": "@@ -3694,8 +3694,8 @@ declare namespace Deno {\n * );\n * ```\n *\n- * _Note_: On Windows only `\"SIGINT\"` (CTRL+C) and `\"SIGBREAK\"` (CTRL+Break)\n- * are supported.\n+ * _Note_: On Windows only `\"SIGINT\"` (CTRL+C), `\"SIGBREAK\"` (CTRL...
2026-03-17T14:47:03
vuejs/vue
df4e385c8f9fe9ec21e6304b1c470f7a718cc447
bb9190b30234da895df570027489d63521efad7d
chore: fix opencollective silver sponsors in backers.md [ci skip]
[ { "path": "BACKERS.md", "patch": "@@ -330,6 +330,13 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu\n <a href=\"https://opencollective.com/vuejs/tiers/silver-sponsors/0/website\" target=\"_blank\" rel=\"noopener noreferrer\"><img src=\"https://opencollective.com/vuejs/tie...
2021-05-03T13:30:00
mrdoob/three.js
46521a47496742fd1f9697b77fef7a5be3a4b855
701e16e3e318a2ac9fd5627dcd40c7ac940cd813
Update Raycaster.js Fix copy/paste error.
[ { "path": "src/core/Raycaster.js", "patch": "@@ -38,7 +38,7 @@ class Raycaster {\n \t\tthis.near = near;\n \n \t\t/**\n-\t\t * All results returned are further away than near. Near can't be negative.\n+\t\t * All results returned are closer than far. Far can't be lower than near.\n \t\t *\n \t\t * @type {nu...
2025-11-25T14:17:50
golang/go
ff7ecb4efc2f754709ec018ae822fb411fcfa5a9
8e1ecee49120359594cad3b3e6e6464eb3945f49
os/exec: document that Cmd.Wait must not be called concurrently Clarify in the Wait documentation that it must not be called concurrently from multiple goroutines. Also note that a custom Cmd.Cancel function should not call Wait because Cancel may be invoked by watchCtx in a separate goroutine. Fixes #78046 Change-I...
[ { "path": "src/os/exec/exec.go", "patch": "@@ -929,6 +929,9 @@ func (e *ExitError) Error() string {\n // If any of c.Stdin, c.Stdout or c.Stderr are not an [*os.File], Wait also waits\n // for the respective I/O loop copying to or from the process to complete.\n //\n+// Wait must not be called concurrently ...
2026-03-10T17:58:14
denoland/deno
457de64d2d322e448b171f614afa743c9fcd0123
44301a6b8e8559f59454e07ebd6d132371a1cc40
fix(repl): fix panic when pressing Tab at beginning of line (#32750) ## Summary - Fixes a panic (usize underflow) in the REPL when pressing Tab at the beginning of a line that contains text - The `get_expr_from_line_at_pos` function was looking at text *after* the cursor to determine the completion expression, then su...
[ { "path": "cli/tools/repl/editor.rs", "patch": "@@ -169,15 +169,8 @@ fn is_word_boundary(c: char) -> bool {\n \n fn get_expr_from_line_at_pos(line: &str, cursor_pos: usize) -> &str {\n let start = line[..cursor_pos].rfind(is_word_boundary).unwrap_or(0);\n- let end = line[cursor_pos..]\n- .rfind(is_wor...
2026-03-17T14:46:07
mrdoob/three.js
a893a58c6d74baedad531e347e9f86290f78f628
e48e7eb3a0f6ce22e76b9fae9307fbc7248fcde0
Update/fix restitution param desc in physics addons (#32341)
[ { "path": "examples/jsm/physics/JoltPhysics.js", "patch": "@@ -305,7 +305,7 @@ async function JoltPhysics() {\n \t\t * @name JoltPhysics#addMesh\n \t\t * @param {Mesh} mesh The mesh to add.\n \t\t * @param {number} [mass=0] The mass in kg of the mesh.\n-\t\t * @param {number} [restitution=0] The restitution...
2025-11-24T19:32:14
golang/go
8e1ecee49120359594cad3b3e6e6464eb3945f49
65f76a20a32fc2a63f22f681591813e568506c9d
context: fix package doc description of WithDeadlineCause and WithTimeoutCause The package documentation incorrectly states that WithCancelCause, WithDeadlineCause, and WithTimeoutCause all return a CancelCauseFunc. In fact, only WithCancelCause returns a CancelCauseFunc. WithDeadlineCause and WithTimeoutCause accept ...
[ { "path": "src/context/context.go", "patch": "@@ -24,11 +24,12 @@\n // child and its children until the parent is canceled. The go vet tool\n // checks that CancelFuncs are used on all control-flow paths.\n //\n-// The [WithCancelCause], [WithDeadlineCause], and [WithTimeoutCause] functions\n-// return a [C...
2026-02-09T06:12:22
denoland/deno
4ba47aaff3e9d9abecfb655b36cf736dfef3546a
3998494368e93e46d8151e51d1b42152831b8b73
perf(ext/web): add write buffering for FsFile.writable streams (#32676) ## Summary - Add opt-in write buffering to `writableStreamForRid()` via a new `bufferSize` option - Enable 64KB buffering for `FsFile.writable` streams only — network sockets, stdin, QUIC, and WebTransport remain unbuffered - Small chunks are acc...
[ { "path": "ext/fs/30_fs.js", "patch": "@@ -663,7 +663,12 @@ class FsFile {\n \n get writable() {\n if (this.#writable === undefined) {\n- this.#writable = writableStreamForRid(this.#rid);\n+ this.#writable = writableStreamForRid(\n+ this.#rid,\n+ true,\n+ undefined,\n+ ...
2026-03-17T14:42:20
mrdoob/three.js
56ad6e05ab0e29e647f18dddf8dd0e491e209660
e3be204eb54969e6fa7208576ec75537e7a869d7
Controls: Fix stuck state when releasing mouse outside window (#32323)
[ { "path": "examples/jsm/controls/OrbitControls.js", "patch": "@@ -482,8 +482,8 @@ class OrbitControls extends Controls {\n \tdisconnect() {\n \n \t\tthis.domElement.removeEventListener( 'pointerdown', this._onPointerDown );\n-\t\tthis.domElement.removeEventListener( 'pointermove', this._onPointerMove );\n-\...
2025-11-21T10:05:09
golang/go
75fdbda51799a9f867b58a61004685d8637413e6
105b1e2757e8c0da9058a45c1e31c57849aedeae
cmd/go: update urls in documentation to go.dev Update the urls in user facing documentation and error messages to consistently use go.dev instead of golang.org Change-Id: I48866eb03036221035bcf204a892d9a3b4c214bb Reviewed-on: https://go-review.googlesource.com/c/go/+/754460 LUCI-TryBot-Result: Go LUCI <golang-scoped@...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -199,7 +199,7 @@\n //\t\tBy default, if a vendor directory is present and the go version in go.mod\n //\t\tis 1.14 or higher, the go command acts as if -mod=vendor were set.\n //\t\tOtherwise, the go command acts as if -mod=readonly were set.\n-//\t\tSee https...
2026-03-11T19:51:44
denoland/deno
3998494368e93e46d8151e51d1b42152831b8b73
c6656936dd49e26df913d4af6c936429116beb38
fix(ext/node): signal listeners added via `process.once` can now be removed (#32606) ## Summary - Fix `process.once("SIGINT", handler)` followed by `process.removeListener("SIGINT", handler)` not actually removing the Deno-level signal listener - When `EventEmitter.once()` wraps a handler, `Process.prototype.off` now...
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -484,6 +484,31 @@ function Process(this: any) {\n }\n Process.prototype = Object.create(EventEmitter.prototype);\n \n+// Look up the actual registered listener for a signal event. When `once()` is\n+// used, EventEmitter wraps the listener in a functio...
2026-03-17T13:17:57
mrdoob/three.js
e3be204eb54969e6fa7208576ec75537e7a869d7
37dc48cd6471161c8acb01f8175a274f9167d322
WebGPURenderer: Fix VSM shadow artifacts. (#32327)
[ { "path": "src/nodes/lighting/ShadowNode.js", "patch": "@@ -123,7 +123,7 @@ const VSMPassVertical = /*@__PURE__*/ Fn( ( { samples, radius, size, shadowPass,\n \tmean.divAssign( samples );\n \tsquaredMean.divAssign( samples );\n \n-\tconst std_dev = sqrt( squaredMean.sub( mean.mul( mean ) ) );\n+\tconst std_...
2025-11-21T09:40:20
vuejs/vue
e7baaa12055231c9367fa1c7bf917e534bd8a739
2b93e86aa1437168476cbb5100cfb3bbbac55efa
fix(keep-alive): cache what is really needed not the whole VNode data (#12015) Co-authored-by: zrh122 <1229550935@qq.com>
[ { "path": "src/core/components/keep-alive.js", "patch": "@@ -3,7 +3,13 @@\n import { isRegExp, remove } from 'shared/util'\n import { getFirstComponentChild } from 'core/vdom/helpers/index'\n \n-type VNodeCache = { [key: string]: ?VNode };\n+type CacheEntry = {\n+ name: ?string;\n+ tag: ?string;\n+ compo...
2021-04-16T17:19:29
golang/go
c697e0fc482de62da72d4470ac082bf5e5720642
f3966c1ada0a0ddaea873f979ee9165649eb11b7
spec: fix prose in rule for keys of struct composite literals Use "promoted" rather than "embedded" because the selector provides access to a promoted field. For #9859. Change-Id: If62c5260ab7bdfef3d6ea4ff770543ad668ac9b6 Reviewed-on: https://go-review.googlesource.com/c/go/+/755782 LUCI-TryBot-Result: Go LUCI <gola...
[ { "path": "doc/go_spec.html", "patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Language version go1.27 (March 5, 2026)\",\n+\t\"Subtitle\": \"Language version go1.27 (March 16, 2026)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -3211,13 +321...
2026-03-16T22:30:40
denoland/deno
c6656936dd49e26df913d4af6c936429116beb38
66db846d664561ad12b1535154c6f177a532e3c8
fix(ext/telemetry): add exception.* attributes to OTEL log records (#32726) ## Summary - When a single Error object is logged via `console.log`/`console.error`/etc., the OTEL log record now includes `exception.type`, `exception.message`, and `exception.stacktrace` attributes per the [OpenTelemetry semantic convention...
[ { "path": "ext/telemetry/lib.rs", "patch": "@@ -1324,12 +1324,27 @@ macro_rules! attr {\n };\n }\n \n+/// Convert the integer log level that ext/console uses to the corresponding\n+/// OpenTelemetry log severity.\n+fn severity_from_level(level: i32) -> Severity {\n+ match level {\n+ ..=0 => Severity::...
2026-03-17T12:44:34
mrdoob/three.js
8acf22c7e9232dac7ea327e6e92af8cd025f5c3f
64c9ad89858633cd37b782a95119199e86bd522b
Fix iridescence energy conservation for mixed materials (#32309)
[ { "path": "src/nodes/functions/PhysicalLightingModel.js", "patch": "@@ -468,6 +468,22 @@ class PhysicalLightingModel extends LightingModel {\n \t\t */\n \t\tthis.iridescenceF0 = null;\n \n+\t\t/**\n+\t\t * The iridescence F0 dielectric.\n+\t\t *\n+\t\t * @type {?Node}\n+\t\t * @default null\n+\t\t */\n+\t\t...
2025-11-19T23:04:20
vuejs/vue
2b93e86aa1437168476cbb5100cfb3bbbac55efa
52608302e9bca84fb9e9f0499e89acade78d3d07
fix(types): make $refs undefined possible (#11112) Added undefined as a return type of $refs as it was quite hard to convince typescript that something COULD be undefined if you type in a ref that doesn't exist, I also changed the two array statements from `Element[] | Vue[]` to `(Element | Vue)[]` because it's not g...
[ { "path": "types/vue.d.ts", "patch": "@@ -26,7 +26,7 @@ export interface Vue {\n readonly $parent: Vue;\n readonly $root: Vue;\n readonly $children: Vue[];\n- readonly $refs: { [key: string]: Vue | Element | Vue[] | Element[] };\n+ readonly $refs: { [key: string]: Vue | Element | (Vue | Element)[] |...
2021-04-16T15:59:37
golang/go
dbb3793b59371828cd1463bd3796f586ad4e6433
5262546d8296a6bed3fcd385385db51bd3e5f48b
slices: document that Delete, DeleteFunc, Replace, Insert modify the slice Rephrase the opening doc comments for Delete, DeleteFunc, Replace, and Insert to clarify that these functions modify s in place and return the modified slice, following the pattern used by Compact. Fixes #64329 Change-Id: I82c381a350b71efc819...
[ { "path": "src/slices/slices.go", "patch": "@@ -125,8 +125,8 @@ func ContainsFunc[S ~[]E, E any](s S, f func(E) bool) bool {\n \treturn IndexFunc(s, f) >= 0\n }\n \n-// Insert inserts the values v... into s at index i,\n-// returning the modified slice.\n+// Insert modifies s in place by inserting the value...
2026-02-17T01:13:17
mrdoob/three.js
64c9ad89858633cd37b782a95119199e86bd522b
fb06fb0a5b9d46d4543e97997da3c17173b025a9
WebGPURenderer: Fix textured backgrounds with ortho cameras. (#32313)
[ { "path": "src/renderers/common/Background.js", "patch": "@@ -1,6 +1,6 @@\n import DataMap from './DataMap.js';\n import Color4 from './Color4.js';\n-import { vec4, context, normalWorldGeometry, backgroundBlurriness, backgroundIntensity, backgroundRotation, modelViewProjection } from '../../nodes/TSL.js';\n...
2025-11-19T21:27:36
denoland/deno
66db846d664561ad12b1535154c6f177a532e3c8
14bb3e72d971ce6b83d45d169aeac2a6f0db57eb
fix(ext/web): upgrade QuotaExceededError to DOMException derived interface (#32244) Implements the WebIDL spec change (https://github.com/whatwg/webidl/pull/1465) that upgrades `QuotaExceededError` from a `DOMException` error name to a proper derived class extending `DOMException`. --------- Co-authored-by: Bartek I...
[ { "path": "cli/tsc/dts/lib.deno_web.d.ts", "patch": "@@ -69,6 +69,31 @@ declare var DOMException: {\n readonly DATA_CLONE_ERR: 25;\n };\n \n+/** @category Platform */\n+interface QuotaExceededErrorOptions {\n+ quota?: number;\n+ requested?: number;\n+}\n+\n+/**\n+ * Represents an error when a quota has ...
2026-03-17T12:39:20
vuejs/vue
52608302e9bca84fb9e9f0499e89acade78d3d07
e4dea59f84dfbf32cda1cdd832380dd90b1a6fd1
fix(core): fix sameVnode for async component (#11107) Co-authored-by: mac2 <mac2@example.com>
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -34,15 +34,15 @@ const hooks = ['create', 'activate', 'update', 'remove', 'destroy']\n \n function sameVnode (a, b) {\n return (\n- a.key === b.key && (\n+ a.key === b.key &&\n+ a.asyncFactory === b.asyncFactory && (\n (\n a.tag === b...
2021-04-16T15:58:02
golang/go
5262546d8296a6bed3fcd385385db51bd3e5f48b
a8a5b81473c00e857dd9963dc027dc1c10016d79
cmd/go/internal/test: enable stdversion by default Also, update the list of available checks, including using the non-deprecated names. Updates #18085 Fixes #77729 Change-Id: Ic31a53fda5628f0de85c7f447182f0d4b1cdcdb2 Reviewed-on: https://go-review.googlesource.com/c/go/+/755240 Reviewed-by: Michael Matloob <matloob@...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1875,11 +1875,11 @@\n // and its test source files to identify significant problems. If go vet\n // finds any problems, go test reports those and does not run the test\n // binary. Only a high-confidence subset of the default go vet checks are\n-// used. That...
2026-03-13T21:05:17
mrdoob/three.js
a0944f94b8b239e192c83a27b0b2a561d546a2e6
701c52ec1712f53111f7a53f4160085d7548b156
PMREMGenerator: Fix black HDRIs when processing textures of different sizes (#32310)
[ { "path": "src/extras/PMREMGenerator.js", "patch": "@@ -314,6 +314,7 @@ class PMREMGenerator {\n \t\t\t( { lodMeshes: this._lodMeshes, sizeLods: this._sizeLods, sigmas: this._sigmas } = _createPlanes( _lodMax ) );\n \n \t\t\tthis._blurMaterial = _getBlurShader( _lodMax, width, height );\n+\t\t\tthis._ggxMat...
2025-11-19T04:52:00
denoland/deno
14bb3e72d971ce6b83d45d169aeac2a6f0db57eb
5e966f128d68cdd9b030821be59ae6b4907a1557
fix(test): allow test functions to override reported location (#32732) Fixes #20047. --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "cli/js/40_test.js", "patch": "@@ -20,9 +20,13 @@ const {\n DateNow,\n Error,\n Map,\n+ NumberIsNaN,\n MapPrototypeGet,\n MapPrototypeSet,\n SafeArrayIterator,\n+ StringPrototypeLastIndexOf,\n+ StringPrototypeSlice,\n+ SymbolFor,\n SymbolToStringTag,\n TypeError,\n } = primordi...
2026-03-17T12:27:02
vuejs/vue
e4dea59f84dfbf32cda1cdd832380dd90b1a6fd1
3ad60fea73d042fc9a127d19de8329948d3f2ef0
fix(errorHandler): async error handling for watchers (#9484) Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com>
[ { "path": "src/core/instance/state.js", "patch": "@@ -25,7 +25,8 @@ import {\n validateProp,\n isPlainObject,\n isServerRendering,\n- isReservedAttribute\n+ isReservedAttribute,\n+ invokeWithErrorHandling\n } from '../util/index'\n \n const sharedPropertyDefinition = {\n@@ -357,12 +358,9 @@ export ...
2021-04-16T15:57:25
golang/go
a8a5b81473c00e857dd9963dc027dc1c10016d79
655aa335c951c3b1a61560016ad2cd2f6eac1684
cmd/go: ensure go.mod and go.sum are consistent after `go get -tool` The issue was that `go get -tool` could trigger module upgrades (due to the tool's own requirements) that were not correctly captured by the final consistency check in `checkPackageProblems`. This happened because `updateTools` was being called after...
[ { "path": "src/cmd/go/internal/modget/get.go", "patch": "@@ -402,14 +402,14 @@ func runGet(ctx context.Context, cmd *base.Command, args []string) {\n \t\t}\n \t}\n \n+\tif *getTool {\n+\t\tupdateTools(moduleLoaderState, ctx, r, queries, &opts)\n+\t}\n+\n \t// If a workspace applies, checkPackageProblems wil...
2026-02-24T17:00:40
denoland/deno
230941513aa42a2b89d9a74adaa031cf9ce6a3a0
4b0474c13e88da5aa57c58a1d07255c06074c030
fix(ext/node): fix send() validation in child_process IPC (#32779) Two validation issues in the IPC send() function: 1. Used `new TypeError("ERR_MISSING_ARGS")` instead of the proper `ERR_MISSING_ARGS` error class, so the error had the code as its message instead of the correct message and code properties. 2. Missin...
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -47,6 +47,7 @@ import {\n ERR_INVALID_SYNC_FORK_INPUT,\n ERR_IPC_CHANNEL_CLOSED,\n ERR_IPC_SYNC_FORK,\n+ ERR_MISSING_ARGS,\n ERR_UNKNOWN_SIGNAL,\n } from \"ext:deno_node/internal/errors.ts\";\n import { Buffer } from \"node:buff...
2026-03-17T11:59:23
vuejs/vue
c6d7a6fce795ffbd6b8a599787eca986bb260a25
ce457f9f4d48548d5e8763c47d013e23c2b65c12
fix(v-on): avoid events with empty keyCode (autocomplete) (#11326)
[ { "path": "src/core/instance/render-helpers/check-keycodes.js", "patch": "@@ -31,4 +31,5 @@ export function checkKeyCodes (\n } else if (eventKeyName) {\n return hyphenate(eventKeyName) !== key\n }\n+ return eventKeyCode === undefined\n }", "additions": 1, "deletions": 0, "language": "J...
2021-04-16T15:53:45
golang/go
48bbe7996d1e53c39188fba941bc3f9e523c8b94
6614616b7576a8011053c4b50fbb5e64d469837b
net/http/internal/http2: deflake TestServer_Rejects_Too_Many_Streams This test contains a race condition in the server handler: inHandler <- streamID <-leaveHandler We assume that all requests queue reading from leaveHandler in order, but it is possible for the second request (stream id 3) to arrive at leaveHandle...
[ { "path": "src/net/http/internal/http2/server_test.go", "patch": "@@ -2386,18 +2386,7 @@ func TestServer_Rejects_Too_Many_Streams(t *testing.T) {\n \tsynctestTest(t, testServer_Rejects_Too_Many_Streams)\n }\n func testServer_Rejects_Too_Many_Streams(t testing.TB) {\n-\tinHandler := make(chan uint32)\n-\tlea...
2026-03-13T21:43:22
denoland/deno
4b0474c13e88da5aa57c58a1d07255c06074c030
b8c4441beab7b04f7db630ba67d7db39db2df551
fix(ext/node): improve Node.js crypto compatibility (#32690) ## Summary - Implement `crypto.publicDecrypt` and fix `crypto.privateEncrypt` to use correct RSA private key operation (PKCS1 type 1 padding) - Support `KeyObject` in `publicEncrypt`/`privateDecrypt` options object - Support options object in `crypto.hash()...
[ { "path": "ext/node/polyfills/crypto.ts", "patch": "@@ -191,7 +191,10 @@ function getRandomValues(typedArray) {\n function hash(\n algorithm: string,\n data: BinaryLike,\n- outputEncoding: BinaryToTextEncoding = \"hex\",\n+ outputEncodingOrOptions: BinaryToTextEncoding | {\n+ outputEncoding?: Binar...
2026-03-17T11:48:15
vuejs/vue
ce457f9f4d48548d5e8763c47d013e23c2b65c12
77b5330c5498a6b14a83197371e9a2dbf9939a9c
fix(slot): add a function to return the slot fallback content (#12014) Co-authored-by: zrh122 <1229550935@qq.com>
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -547,7 +547,7 @@ export function genComment (comment: ASTText): string {\n function genSlot (el: ASTElement, state: CodegenState): string {\n const slotName = el.slotName || '\"default\"'\n const children = genChildren(el, state)\n- let res = `_t(...
2021-04-16T15:37:35
mrdoob/three.js
3228287ee85a815420a6e4c10c7a7b09abfd06fe
887eb828fde33dc07e4ab8a049bfedae0ca52393
stylesheet jsName vs svgName fix (#32119) Co-authored-by: jhlggit <24849064@student.uwa.edu.au>
[ { "path": "examples/jsm/loaders/SVGLoader.js", "patch": "@@ -1082,7 +1082,7 @@ class SVGLoader extends Loader {\n \t\t\t\t};\n \n \t\t\t\tif ( node.hasAttribute( svgName ) ) style[ jsName ] = adjustFunction( node.getAttribute( svgName ) );\n-\t\t\t\tif ( stylesheetStyles[ svgName ] ) style[ jsName ] = adjus...
2025-11-17T09:51:56
denoland/deno
b8c4441beab7b04f7db630ba67d7db39db2df551
764ce2fb77bbdf8a55fb4f6c0215f7b85865cebb
fix(core): prevent panic when multiple lazy-loaded ESM modules are loaded during TLA (#32769) Fixes: https://github.com/denoland/deno/issues/32758
[ { "path": "libs/core/modules/map.rs", "patch": "@@ -237,6 +237,10 @@ pub(crate) struct ModuleMap {\n pending_tla_waiters:\n RefCell<HashMap<ModuleId, Vec<v8::Global<v8::PromiseResolver>>>>,\n pending_mod_evaluation: Cell<bool>,\n+ /// Set to `true` while inside `module.evaluate()` in `mod_evaluate`...
2026-03-17T11:03:50
golang/go
9ce4f3876e89a43dbd8508cb2762a2e4644dfe84
b3ee07636a1fe4ba5129705fd4692b442cf6b6f0
cmd/compile: keep blank nodes alive in b.loop The current bloop pass implementation skips blank nodes silently. This CL makes it aware of that and keep them alive in temps. Fixes #77654. Change-Id: Iaffa5194ba1f0fe8d7c80a4c8e5c9a65a47bf534 Reviewed-on: https://go-review.googlesource.com/c/go/+/754920 LUCI-TryBot-Res...
[ { "path": "src/cmd/compile/internal/bloop/bloop.go", "patch": "@@ -216,11 +216,49 @@ func preserveCallArgs(curFn *ir.Func, call *ir.CallExpr) ir.Node {\n func preserveStmt(curFn *ir.Func, stmt ir.Node) ir.Node {\n \tswitch n := stmt.(type) {\n \tcase *ir.AssignStmt:\n+\t\t// If the left hand side is blank, ...
2026-03-12T20:56:24
vuejs/vue
77b5330c5498a6b14a83197371e9a2dbf9939a9c
af54514cf97e724d224408c1ecc6c81ddccd4b75
fix: force update between two components with and without slot (#11795)
[ { "path": "src/core/instance/lifecycle.js", "patch": "@@ -234,7 +234,8 @@ export function updateChildComponent (\n const hasDynamicScopedSlot = !!(\n (newScopedSlots && !newScopedSlots.$stable) ||\n (oldScopedSlots !== emptyObject && !oldScopedSlots.$stable) ||\n- (newScopedSlots && vm.$scopedS...
2021-04-16T15:34:34
mrdoob/three.js
c15da082c28c263338d0813befbc902b62b7877f
57f07c465ac74cc620fd85a03b1b7eec275948ed
Update Raycaster.js Fix intersection normal JSDoc.
[ { "path": "src/core/Raycaster.js", "patch": "@@ -167,7 +167,7 @@ class Raycaster {\n \t * @property {Object3D} object - The 3D object that has been intersected.\n \t * @property {Vector2} uv - U,V coordinates at point of intersection.\n \t * @property {Vector2} uv1 - Second set of U,V coordinates at point o...
2025-11-16T12:50:44
denoland/deno
764ce2fb77bbdf8a55fb4f6c0215f7b85865cebb
f0e7923a50d7f54413a6ac92fd9d3a52656f84b7
fix(ext/ffi): retain backing store references in nonblocking calls (#32775) Nonblocking FFI calls extract raw pointers from ArrayBuffer backing stores and send them to a background thread via spawn_blocking, but without retaining a reference to the backing store. If V8's garbage collector runs before the background th...
[ { "path": "ext/ffi/call.rs", "patch": "@@ -320,19 +320,29 @@ where\n };\n \n let symbol = PtrSymbol::new(pointer, &def)?;\n- let call_args = ffi_parse_args(scope, parameters, &def.parameters)?;\n- let out_buffer_ptr = out_buffer_as_ptr(scope, out_buffer);\n+ let mut backing_store_holder = BackingStor...
2026-03-16T18:43:51
golang/go
b3ee07636a1fe4ba5129705fd4692b442cf6b6f0
0dc89195f9aece70476320be3fc9d6d657904056
net/http/internal/http2: drop benchmarks which use synctest Drop a number of low-level benchmarks which use internal test APIs that now use synctest. Synctest and benchmarks don't really mix; we don't necessarily expect bubbled code to perform in the same fashion as unbubbled code. Fixes #78114 Change-Id: I23f0a5d29...
[ { "path": "src/net/http/internal/http2/export_test.go", "patch": "@@ -166,10 +166,6 @@ func SummarizeFrame(f Frame) string {\n \treturn summarizeFrame(f)\n }\n \n-func SetTestHookGetServerConn(t testing.TB, f func(*serverConn)) {\n-\tSetForTest(t, &testHookGetServerConn, f)\n-}\n-\n func init() {\n \ttestHo...
2026-03-12T21:44:28
mrdoob/three.js
340b0b9bc9153303ac1ad8cca0ab12270732ccc3
9707164c2cba5ae0340d61b89c87c55a547fc87e
PMREMGenerator.js: Fix options field name in docstring (#32285)
[ { "path": "src/extras/PMREMGenerator.js", "patch": "@@ -103,7 +103,7 @@ class PMREMGenerator {\n \t * @param {number} [far=100] - The far plane distance.\n \t * @param {Object} [options={}] - The configuration options.\n \t * @param {number} [options.size=256] - The texture size of the PMREM.\n-\t * @param ...
2025-11-16T08:55:19
vuejs/vue
af54514cf97e724d224408c1ecc6c81ddccd4b75
0603ff695d2f41286239298210113cbe2b209e28
fix: handle async placeholders in normalizeScopedSlot (#11963) Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com>
[ { "path": "src/core/vdom/helpers/normalize-scoped-slots.js", "patch": "@@ -3,6 +3,7 @@\n import { def } from 'core/util/lang'\n import { normalizeChildren } from 'core/vdom/helpers/normalize-children'\n import { emptyObject } from 'shared/util'\n+import { isAsyncPlaceholder } from './is-async-placeholder'\n...
2021-04-16T15:33:56
denoland/deno
954edda350c7691f6c34dbc9f7eed15e66f10392
f7a43a20069fa23b82a2fd7ed631a39e4dc95680
fix(ext/node): require --allow-net for udp.send (#32774)
[ { "path": "ext/node/ops/udp.rs", "patch": "@@ -460,6 +460,13 @@ pub async fn op_node_udp_send(\n #[string] hostname: String,\n #[smi] port: u16,\n ) -> Result<usize, NodeUdpError> {\n+ {\n+ state\n+ .borrow_mut()\n+ .borrow_mut::<PermissionsContainer>()\n+ .check_net(&(&hostname, Some...
2026-03-16T18:07:21
golang/go
9e2189ef8e04d2745d18ac870ae54dcdcbc008db
75cfb36608a3457f182eb3284d99cd677f463dcb
cmd/go: isolate some very long tests These tests are exceptionally slow. Move them out of the normal cmd/go test suite to try to make it more reasonable to run 'go test cmd/go' in a regular dev cycle. More tests can be moved here as needed. (Hopefully this can also help longtest sharding) Change-Id: I4ca0696d0afe72aa...
[ { "path": "src/cmd/go/internal/verylongtest/script_test.go", "patch": "@@ -0,0 +1,26 @@\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 verylongtest\n+\n+import (\n+\t\"cmd/inter...
2026-03-10T21:34:02
mrdoob/three.js
3b13f6ce4d40ecb6988d79d53238443abe6878a7
73c425277a97b7596ad9b1e8ff0152db49c9b5c5
Update LDrawLoader.js Fix link.
[ { "path": "examples/jsm/loaders/LDrawLoader.js", "patch": "@@ -1749,7 +1749,7 @@ function createObject( loader, elements, elementSize, isConditionalSegments = fa\n /**\n * A loader for the LDraw format.\n *\n- * [LDraw](https://ldraw.org/} (LEGO Draw) is an [open format specification]{@link https://ldraw....
2025-11-15T22:46:45
vuejs/vue
3fd8bb4e0fc3114863d0fca6bcd253da87fe4443
180474dc17b20f28818a0e1cecab9e806b057e8c
fix test:weex
[ { "path": ".babelrc.js", "patch": "@@ -1,23 +1,23 @@\n-const babelPresetFlowVue = {\n- plugins: [\n- require('@babel/plugin-proposal-class-properties'),\n- // require('@babel/plugin-syntax-flow'), // not needed, included in transform-flow-strip-types\n- require('@babel/plugin-transform-flow-strip-...
2021-04-07T13:41:48
denoland/deno
f7a43a20069fa23b82a2fd7ed631a39e4dc95680
262cb595cbfaf35439e946729ca2dee1166e2f1d
fix(ext/node): validate handle type in child_process send() (#32711) When `send(msg, handle)` is called with an invalid handle type (e.g. a string), Node.js throws ERR_INVALID_HANDLE_TYPE. Deno was hitting a generic `notImplemented()` error instead, since the handle validation was missing before the not-implemented gu...
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -43,6 +43,7 @@ import {\n AbortError,\n ERR_INVALID_ARG_TYPE,\n ERR_INVALID_ARG_VALUE,\n+ ERR_INVALID_HANDLE_TYPE,\n ERR_INVALID_SYNC_FORK_INPUT,\n ERR_IPC_CHANNEL_CLOSED,\n ERR_IPC_SYNC_FORK,\n@@ -66,7 +67,8 @@ import proce...
2026-03-16T15:03:41
golang/go
81908597a8787b09b1da90e7c6d3461b4302820f
2cd24ace83bb8055280b9302efb1a21a14d7c763
net/http/internal/http2: skip TestTransportNewClientConnCloseOnWriteError Rewrote this test to use newTestClientConn, discovered that the assertion that it's supposed to make (if a write to a conn fails, the conn is closed) doesn't hold for all writes. Skip the amended test for now. For #67810 Change-Id: I1b696afcd...
[ { "path": "src/net/http/internal/http2/transport_test.go", "patch": "@@ -3850,31 +3850,36 @@ func testTransportBodyLargerThanSpecifiedContentLength(t testing.TB, body *chunk\n \t}\n }\n \n-type fakeConnErr struct {\n-\tnet.Conn\n-\twriteErr error\n-\tclosed bool\n-}\n-\n-func (fce *fakeConnErr) Write(b []...
2026-03-10T21:02:10
mrdoob/three.js
a5d8232fc79d194f349bf7147aad77a2a9e8dc76
4b73129803e87d9eb316f4842cc2ec26d8b44030
Material: Fix copy method to include allowOverride property (#32269) Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "src/materials/Material.js", "patch": "@@ -832,6 +832,7 @@ class Material extends EventDispatcher {\n \t\tif ( this.alphaToCoverage === true ) data.alphaToCoverage = true;\n \t\tif ( this.premultipliedAlpha === true ) data.premultipliedAlpha = true;\n \t\tif ( this.forceSinglePass === true ) data....
2025-11-15T10:17:21
denoland/deno
262cb595cbfaf35439e946729ca2dee1166e2f1d
39a07b283ea8cb6756ad68d389031135ad2c26cd
fix(ext/node): fix IPC message prototype for child_process JSON (#32731) Deno's serde_v8 layer deserializes JSON objects with null prototype (Object.create(null)), but Node.js IPC messages should have Object.prototype (as if from JSON.parse). This caused assert.deepStrictEqual to fail when comparing IPC messages. For...
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -1517,6 +1517,21 @@ function buildCommand(\n return [file, args, includeNpmProcessState];\n }\n \n+// deno-lint-ignore no-explicit-any\n+function restorePrototype(obj: any) {\n+ if (obj === null || typeof obj !== \"object\") return;\n...
2026-03-16T15:03:32
golang/go
a8a0dc9ea2e8cd37f667614e1b9a6dd5fc0af040
29ada7aa481930fbddab626e0686f84c1fcd63a2
net/http/internal/http2: make server write errors sticky After encountering a write error on a server's connection, remember the error and reuse it for future writes. Fixes a rare flakiness in TestServerWriteByteTimeout, where we can sometimes attempt to flush the write buffer after encountering a write timeout. Chan...
[ { "path": "src/net/http/internal/http2/http2.go", "patch": "@@ -258,6 +258,7 @@ type bufferedWriter struct {\n \tconn net.Conn // immutable\n \tbw *bufio.Writer // non-nil when data is buffered\n \tbyteTimeout time.Duration // immutable, WriteByteTimeout\n+\twerr error\n }\n \n f...
2026-03-10T16:38:22
mrdoob/three.js
eb43d94e6f7ab1c3071fa4dbd2d96b97836e3e78
02201339d5429a610a71ec19f5bf36eb4e7d2b04
TSLEncoder: Fix Fn layout generation when generating a function with no input parameters (#32272)
[ { "path": "examples/jsm/transpiler/TSLEncoder.js", "patch": "@@ -798,7 +798,8 @@ ${ this.tab }}`;\n \n \t\tif ( node.layout !== false && hasPointer === false ) {\n \n-\t\t\tfuncStr += ', { ' + inputs.join( ', ' ) + ', return: \\'' + type + '\\' }';\n+\t\t\tconst inputsStr = inputs.length > 0 ? inputs.join( ...
2025-11-15T04:02:05
vuejs/vue
180474dc17b20f28818a0e1cecab9e806b057e8c
e643e44daf3f0fd26093fe7201260c245c89e69e
fix "he" dep thanks @sodatea
[ { "path": "dist/vue.common.dev.js", "patch": "@@ -4749,9 +4749,9 @@ Vue.version = '2.6.12';\n // during template compilation\n var isReservedAttr = makeMap('style,class');\n // attributes that should be using props for binding\n-var acceptValue = makeMap('input,textarea,option,select,progress');\n-var mustU...
2021-04-07T13:02:42
mrdoob/three.js
161ed13751ccc8a5b47d72e06acaf3ac1e4271f8
d31f77158e2e4d11af15b49cde6a7c7b2dc0d56d
Fix shadowing of error function (#32245)
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -398,10 +398,10 @@ class WebGLRenderer {\n \n \t\t\t}\n \n-\t\t} catch ( error ) {\n+\t\t} catch ( e ) {\n \n-\t\t\terror( 'WebGLRenderer: ' + error.message );\n-\t\t\tthrow error;\n+\t\t\terror( 'WebGLRenderer: ' + e.message );\n+\t\t\tthrow e;\n \n ...
2025-11-11T21:19:50
golang/go
26d5e160750b34a537cce0f1bfd47f663a110d27
6b7763407c83e9014c94997f1d454b175a6ea601
runtime/cgo: clarify pinning requirement in Handle example Add a comment to the void* example in the Handle documentation highlighting that if the C code keeps the pointer after the call returns, runtime.Pinner should be used to pin it. The existing documentation already mentions this requirement in prose (lines 69-7...
[ { "path": "src/runtime/cgo/handle.go", "patch": "@@ -97,6 +97,9 @@ import (\n //\tfunc main() {\n //\t\tval := \"hello Go\"\n //\t\th := cgo.NewHandle(val)\n+//\t\t// In this example, unsafe.Pointer(&h) is valid because myprint\n+//\t\t// does not keep a copy of the pointer. If the C code keeps the\n+//\t\t...
2026-02-03T14:34:08
denoland/deno
4a19007d8164dafbb1ee9b8db9767260619728d3
60edd7860aa82fbb4037a642d9e8ec48cd6387b5
perf(core): optimize V8-to-Rust string conversion with ValueView (#32688) ## Summary Leverages new APIs from rusty_v8 v146.5.0 (denoland/rusty_v8#1927) to optimize how deno_core converts V8 strings to Rust strings. Implements follow-up optimizations D, and G from that PR's roadmap. ### Changes **D. Thread-local reu...
[ { "path": "Cargo.lock", "patch": "@@ -11173,9 +11173,9 @@ dependencies = [\n \n [[package]]\n name = \"v8\"\n-version = \"146.4.0\"\n+version = \"146.5.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"d97bcac5cdc5a195a4813f1855a6bc658f240452aac36caa12fd6c6f16026ab1\"\n...
2026-03-16T11:50:03
mrdoob/three.js
173cf531637c38e7b9c3078560e6311ca6869595
fde61b48b46e5348323d6b6d7a14caffd780646b
ShaderMaterial: Fix copy method to include missing properties (#32219) * ShaderMaterial: Fix copy method to include missing properties The copy method was missing several properties that are defined in the constructor: - defaultAttributeValues - index0AttributeName - uniformsNeedUpdate This fix ensures all ShaderMat...
[ { "path": "src/materials/ShaderMaterial.js", "patch": "@@ -279,6 +279,12 @@ class ShaderMaterial extends Material {\n \n \t\tthis.glslVersion = source.glslVersion;\n \n+\t\tthis.defaultAttributeValues = Object.assign( {}, source.defaultAttributeValues );\n+\n+\t\tthis.index0AttributeName = source.index0Attr...
2025-11-08T10:31:38
vuejs/vue
0603ff695d2f41286239298210113cbe2b209e28
5c459f0fd6911daca09ad205aecf5423a9d05698
fix(warns): modify `maybeComponent` function in parser (#10167) fixes #10152
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -86,8 +86,12 @@ export function parse (\n platformMustUseProp = options.mustUseProp || no\n platformGetTagNamespace = options.getTagNamespace || no\n const isReservedTag = options.isReservedTag || no\n- maybeComponent = (el: ASTElement) => !!el.c...
2021-04-07T12:38:13
golang/go
6b7763407c83e9014c94997f1d454b175a6ea601
3fc4af70d04682ab42744e4ce78f95025688996d
testing: recognize helper functions that use range-over-function This assumes the current behavior of the gc compiler: range functions use a suffix of -rangeNNNN. Fixes #72794 Change-Id: I3c10c60829853cf2cb4c17a75f6243def0313ae9 Reviewed-on: https://go-review.googlesource.com/c/go/+/656775 LUCI-TryBot-Result: Go LUC...
[ { "path": "src/testing/helper_test.go", "patch": "@@ -85,6 +85,28 @@ func TestTBHelperParallel(t *testing.T) {\n \t}\n }\n \n+// Issue 72794.\n+func TestHelperRange(t *testing.T) {\n+\tif os.Getenv(\"GO_WANT_HELPER_PROCESS\") == \"1\" {\n+\t\trangeHelperHelper(t)\n+\t\treturn\n+\t}\n+\n+\tt.Parallel()\n+\n+...
2025-03-11T17:10:57
denoland/deno
60edd7860aa82fbb4037a642d9e8ec48cd6387b5
895fa89a809c60a069535f91ddb93ef7325b4288
fix(ext/node): fix multiple deepEqual comparison issues (#32763) ## Summary Fixes `test-assert-deep.js` compat test from #32706. - **Invalid dates**: Fix `NaN !== NaN` comparison by using `NumberIsNaN` for `Date.getTime()` results, so two invalid dates with the same properties are considered deeply equal - **Date ty...
[ { "path": "ext/node/polyfills/internal/util/comparisons.ts", "patch": "@@ -16,6 +16,7 @@ import {\n isKeyObject,\n isMap,\n isNumberObject,\n+ isPromise,\n isRegExp,\n isSet,\n isStringObject,\n@@ -59,6 +60,7 @@ const {\n Int8Array,\n Map,\n Number,\n+ NumberIsNaN,\n NumberPrototypeVal...
2026-03-16T05:24:28
mrdoob/three.js
f0628f6adbff6bd9874287d70620d29a20be7dbe
5a8d2969e47e3df2428688eb3d3c9d8a4b692a84
Manual: Fix formatting in `prerequisites.html`. (#32217)
[ { "path": "manual/resources/lesson.js", "patch": "@@ -51,7 +51,7 @@\n \tconst parts = window.location.href.split( '/' );\n \tconst filename = parts[ parts.length - 1 ];\n \n-\tif ( filename !== 'primitives.html' ) {\n+\tif ( filename !== 'primitives.html' && filename !== 'prerequisites.html' ) {\n \n \t\tle...
2025-11-07T16:07:25
vuejs/vue
b3de21c2ba3c9ab14cde719f92f85368aca0e6f9
69a1bc909b342259b74b5f9c3c596ba9bded7207
fix ts-check
[ { "path": "tsconfig.json", "patch": "@@ -31,7 +31,7 @@\n \"vue\": [\"src/platforms/web/entry-runtime-with-compiler\"]\n }\n },\n- \"include\": [\"src\", \"test-dts\", \"typescript\", \"test\"],\n+ \"include\": [\"src\", \"test-dts\", \"typescript\"],\n \n- \"exclude\": [\"flow\", \"node_modul...
2021-04-07T11:07:59
golang/go
3fc4af70d04682ab42744e4ce78f95025688996d
c43088c7a6b58861078eb96617c7fc12764dbf76
net/http: document which headers Request.Write handles specially Document that Header values for Host, Content-Length, Transfer-Encoding, and Trailer are not used by Write, as these are derived from other Request fields. Also document that User-Agent defaults to "Go-http-client/1.1" if not set in Header. Fixes #68635...
[ { "path": "src/net/http/request.go", "patch": "@@ -558,6 +558,11 @@ const defaultUserAgent = \"Go-http-client/1.1\"\n // If Body is present, Content-Length is <= 0 and [Request.TransferEncoding]\n // hasn't been set to \"identity\", Write adds \"Transfer-Encoding:\n // chunked\" to the header. Body is close...
2026-02-27T22:13:56
denoland/deno
895fa89a809c60a069535f91ddb93ef7325b4288
24bc84eb9cc812d9f3bf2f4ff9184e099eafb51e
fix(ext/console): make timer and counter state per-instance to fix OTEL console wrapping (#32719) ## Summary - Fixes `console.time` / `console.timeEnd` / `console.count` / `console.countReset` producing spurious warnings when OTEL is enabled (`OTEL_DENO=true`) - Root cause: `timerMap` and `countMap` were module-level...
[ { "path": "ext/web/01_console.js", "patch": "@@ -3639,8 +3639,6 @@ function createStylizeWithColor(styles, colors) {\n };\n }\n \n-const countMap = new SafeMap();\n-const timerMap = new SafeMap();\n const isConsoleInstance = Symbol(\"isConsoleInstance\");\n \n /** @param noColor {boolean} */\n@@ -3654,6 +...
2026-03-15T16:16:07
mrdoob/three.js
5a8d2969e47e3df2428688eb3d3c9d8a4b692a84
43324e6a8abeefbc3ffe3289f1c5bb8e2eb2a52b
Renderer: Fix return type in compileAsync method documentation (#32205) * Renderer: Fix return type in compileAsync method documentation * Review comment: https://github.com/mrdoob/three.js/pull/32205#discussion_r2502265739
[ { "path": "src/renderers/common/Renderer.js", "patch": "@@ -835,7 +835,7 @@ class Renderer {\n \t * @param {Object3D} scene - The scene or 3D object to precompile.\n \t * @param {Camera} camera - The camera that is used to render the scene.\n \t * @param {?Scene} targetScene - If the first argument is a 3D ...
2025-11-07T12:11:20
vuejs/vue
5c459f0fd6911daca09ad205aecf5423a9d05698
6ec33f70d9949ec4dd02d7fa5af1f6b84021cb5b
fix(types): allow symbol & boolean for vnode key (#11914)
[ { "path": "types/vnode.d.ts", "patch": "@@ -20,7 +20,7 @@ export interface VNode {\n elm?: Node;\n ns?: string;\n context?: Vue;\n- key?: string | number;\n+ key?: string | number | symbol | boolean;\n componentOptions?: VNodeComponentOptions;\n componentInstance?: Vue;\n parent?: VNode;", ...
2021-04-07T09:37:53
golang/go
3d7681ebab6fca8f859d8fc7d6c02c90ef379c05
a8f99ef1f6e550d5d73e9c8f792337ad001bdcf4
cmd/link: fix macOS 13 build Write our own load command for macOS builds, to make sure we can put the versions in. Builds on older macOS were seeing an LC_VERSION_MIN instead and scribbling over fields that didn't exist. Fixes #78070. Change-Id: If338d0506b1156b133253e496f29818a29a22a91 Reviewed-on: https://go-revie...
[ { "path": "src/cmd/link/internal/ld/macho.go", "patch": "@@ -461,14 +461,9 @@ func (ctxt *Link) domacho() {\n \t\tif err != nil {\n \t\t\tExitf(\"%v\", err)\n \t\t}\n-\t\tif load != nil {\n-\t\t\tmachoPlatform = load.platform\n+\t\tif load != nil && load.platform != PLATFORM_MACOS {\n \t\t\tml := newMachoLo...
2026-03-11T16:52:44
mrdoob/three.js
a8418f3f68852e86701cea2d54522ab4bb69b335
473ac041375c4c9aa6f265070d1fc996de3cd6c6
WebGPURenderer: Fix furnace test energy loss for intermediate metalness values (#32201) * WebGPURenderer: Fix furnace test energy loss for intermediate metalness values. * Removed unused vec4 import from MeshStandardNodeMaterial * PhysicalLightingModel: Use specularColorBlended for iridescence baseF0. * Updated scr...
[ { "path": "src/materials/nodes/MeshPhysicalNodeMaterial.js", "patch": "@@ -1,4 +1,4 @@\n-import { clearcoat, clearcoatRoughness, sheen, sheenRoughness, iridescence, iridescenceIOR, iridescenceThickness, specularColor, specularF90, diffuseColor, metalness, roughness, anisotropy, alphaT, anisotropyT, anisotro...
2025-11-07T03:26:22
denoland/deno
24bc84eb9cc812d9f3bf2f4ff9184e099eafb51e
62a57bcb8e38b707966838888c9e1552cad8bc1e
fix(runtime): apply source maps to CPU profiler output (#32634) ## Summary - Apply source maps to CPU profile call frames before writing, so `--cpu-prof` reports original TypeScript line/column numbers instead of transpiled JavaScript positions - Reuses the existing `SourceMapper` infrastructure from `deno_core` (same...
[ { "path": "libs/core/lib.rs", "patch": "@@ -182,7 +182,9 @@ pub use crate::runtime::SharedArrayBufferStore;\n pub use crate::runtime::V8_WRAPPER_OBJECT_INDEX;\n pub use crate::runtime::V8_WRAPPER_TYPE_INDEX;\n pub use crate::runtime::stats;\n+pub use crate::source_map::SourceMapApplication;\n pub use crate:...
2026-03-15T15:27:08