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
6048a0d9f7ad3ff02712dbefd16ae07aaf685785
77a23c56ab194226768573f689bb6b01154a653c
fix(napi): remove unimplemented Node-API symbols from napi_sys (#32593) ## Summary - Removes 4 unimplemented Node-API functions from `libs/napi_sys/src/functions.rs`: `node_api_create_property_key_latin1`, `node_api_create_property_key_utf8`, `node_api_create_object_with_properties`, `node_api_create_object_with_name...
[ { "path": "libs/napi_sys/src/functions.rs", "patch": "@@ -815,31 +815,10 @@ generate!(\n length: usize,\n result: *mut napi_value,\n ) -> napi_status;\n- fn node_api_create_property_key_latin1(\n- env: napi_env,\n- str_: *const c_char,\n- length: usize,\n- result: *mut...
2026-03-09T17:57:48
mrdoob/three.js
48ecb7835c6a483793768ffe968ba35304fd7304
d78c8d9a9dc478f710bba4f60adc560294f8c974
Addons: Bitonic Sort (#31852) * change bitonic sort examplke * bitonic sort * fix swap local set algo * fix local sort * strip out timestamp and unecessary buffers * fix left side display, remove timestamps * slow down sort * add additional comments to bitonicSort class * lint * lint
[ { "path": "examples/jsm/gpgpu/BitonicSort.js", "patch": "@@ -0,0 +1,662 @@\n+import { Fn, uvec2, If, instancedArray, instanceIndex, invocationLocalIndex, Loop, workgroupArray, workgroupBarrier, workgroupId, uint, select, min, max } from 'three/tsl';\n+\n+const StepType = {\n+\tNONE: 0,\n+\t// Swap all value...
2025-09-23T13:18:42
vuejs/vue
7a8de91cd78f523fabe8452652513250871a01c6
173042bb8e07c5ce3a0857063445bf4dc1d1d846
fix(compiler): handle negative length in codeframe repeat
[ { "path": "src/compiler/codeframe.js", "patch": "@@ -38,11 +38,13 @@ export function generateCodeFrame (\n \n function repeat (str, n) {\n let result = ''\n- while (true) { // eslint-disable-line\n- if (n & 1) result += str\n- n >>>= 1\n- if (n <= 0) break\n- str += str\n+ if (n > 0) {\n+ ...
2019-02-21T19:27:33
golang/go
8d5e57474c4fe6d653327a49d460d4010c1d1d9b
4afaf67ab44508258995371b09d16efd3c29edb0
builtin: update new function comment The function comment for new does not reflect the recent change in behaviour since Go 1.26. Fixes #77584 Change-Id: I501d701adb5a1c2ff4b559c243ba07bbef4940d9 Reviewed-on: https://go-review.googlesource.com/c/go/+/746561 Reviewed-by: Alan Donovan <adonovan@google.com> Auto-Submit:...
[ { "path": "src/builtin/builtin.go", "patch": "@@ -122,6 +122,10 @@ type Type int\n // invocation.\n type Type1 int\n \n+// TypeOrExpr is here for the purposes of documentation only. It is a stand-in\n+// for either a Go type or an expression.\n+type TypeOrExpr int\n+\n // IntegerType is here for the purpose...
2026-02-18T16:12:31
denoland/deno
98ca4505b31683a9bbf4d28418c0c7359b1c7d2c
e0b19336112b9576817a0501b73bbf8f452ea9c3
fix(ext/node): emit DEP0198 warning for SHAKE digests without outputLength (#32521) ## Summary - Emit `DeprecationWarning` (DEP0198) when creating SHAKE128/256 digests without an explicit `options.outputLength`, matching Node.js behavior with `--pending-deprecation` - Enables `test-crypto-default-shake-lengths.js` an...
[ { "path": "ext/node/polyfills/internal/crypto/hash.ts", "patch": "@@ -43,6 +43,7 @@ import {\n NodeError,\n } from \"ext:deno_node/internal/errors.ts\";\n import LazyTransform from \"ext:deno_node/internal/streams/lazy_transform.js\";\n+import process from \"node:process\";\n import {\n getDefaultEncodi...
2026-03-09T16:26:24
mrdoob/three.js
5a1c63ccee020fbd9583e2218ed27bba018af43e
ffbce3a688a52f3a6c048afe73c2e6b74ac9b2ec
NodeMaterial: Fix alpha discard. (#31927)
[ { "path": "src/materials/nodes/NodeMaterial.js", "patch": "@@ -12,7 +12,7 @@ import { materialReference } from '../../nodes/accessors/MaterialReferenceNode.j\n import { positionLocal, positionView } from '../../nodes/accessors/Position.js';\n import { skinning } from '../../nodes/accessors/SkinningNode.js';...
2025-09-22T15:32:03
vuejs/vue
2f3020e9cc1ad5c878606b56bb73a30b1d9bb7d9
8a80a23ecba23f92f278d664388050ffcd121385
fix(#9511): avoid promise catch multiple times (#9526) * fix(#9511): avoid promise catch multiple times * fix(#9511): add a test case for util/error/invokeWithErrorHandling * fix(#9511): update test case for util/error/invokeWithErrorHandling
[ { "path": "src/core/util/error.js", "patch": "@@ -44,7 +44,9 @@ export function invokeWithErrorHandling (\n try {\n res = args ? handler.apply(context, args) : handler.call(context)\n if (res && !res._isVue && isPromise(res)) {\n- res.catch(e => handleError(e, vm, info + ` (Promise/async)`))\...
2019-02-21T19:01:53
golang/go
8438ace20738cbb1faab5708837e57a50aa774d3
c2fabf1a268f0480d78bede82fc6a9d3a63fcace
cmd/compile: avoid panic in ternary rewrite on checked instructions The replace function in rewritetern.go was panicing when encountering instructions that had already been processed. This adds a check to ensure we don't trigger a panic on these instructions. Fixes #77582 Change-Id: I0b38312109b9cedaa1cb1320015097d6...
[ { "path": "src/cmd/compile/internal/ssa/issue77582_test.go", "patch": "@@ -0,0 +1,29 @@\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+//go:build goexperiment.simd && amd64\n+\n+package...
2026-02-13T19:44:32
denoland/deno
059640555276854bc38567b5678df26dfe42ad97
7cf4753c4835fcd43ecf1e167d08433b48e2d32b
fix(ext/node): improve getCipherInfo and allow repeated Hmac digest() (#32522) ## Summary - **getCipherInfo**: Add proper cipher info table with OpenSSL NIDs, `blockSize`, and full metadata. Support NID-based lookup. Import missing `validateInt32`/`validateObject` for argument validation. - **Hmac.digest()**: Allow r...
[ { "path": "ext/node/polyfills/internal/crypto/hash.ts", "patch": "@@ -259,7 +259,19 @@ class HmacImpl extends Transform {\n digest(): Buffer;\n digest(encoding: BinaryToTextEncoding): string;\n digest(encoding?: BinaryToTextEncoding): Buffer | string {\n- const result = this.#hash.digest();\n+ l...
2026-03-09T15:11:52
mrdoob/three.js
bbaee482da542486fbb8865fd20c940e219b68d9
6dff7ce5a8dcb3678fc1a91fffed49546a88ba03
WebGPURenderer: Fix change the current canvas samples (#31924)
[ { "path": "src/renderers/webgpu/WebGPUBackend.js", "patch": "@@ -328,15 +328,16 @@ class WebGPUBackend extends Backend {\n \t\tconst renderer = this.renderer;\n \t\tconst canvasTarget = renderer.getCanvasTarget();\n \t\tconst canvasData = this.get( canvasTarget );\n+\t\tconst samples = renderer.currentSampl...
2025-09-21T02:14:50
vuejs/vue
8a80a23ecba23f92f278d664388050ffcd121385
cd3d202edb606ec941d5e4fff63a90a9223652d0
fix: avoid errors thrown during dom props update breaking the entire app fix #9459
[ { "path": "src/platforms/web/runtime/modules/dom-props.js", "patch": "@@ -38,7 +38,7 @@ function updateDOMProps (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n }\n }\n \n- if (key === 'value') {\n+ if (key === 'value' && elm.tagName !== 'PROGRESS') {\n // store value as _value as w...
2019-02-21T18:54:28
mrdoob/three.js
8d43f7a9912d7b6c6ea64ed8e3581a4a32956748
cb8a1dad54da66b85f9f178538a645c127b03045
Examples: Add WebGPU HDR Example (#31893) * Examples: Add WebGPU HDR Example * fix lint issue * fix: prevent mobile scrolling during touch interactions in WebGPU HDR example * fix * update aa example * Update param type * removed unused import * Update AfterImageNode.js Wrap `damp` into `nodeObject()`. * Upda...
[ { "path": "examples/files.json", "patch": "@@ -329,6 +329,7 @@\n \t\t\"webgpu_depth_texture\",\n \t\t\"webgpu_display_stereo\",\n \t\t\"webgpu_equirectangular\",\n+\t\t\"webgpu_hdr\",\n \t\t\"webgpu_instance_mesh\",\n \t\t\"webgpu_instance_path\",\n \t\t\"webgpu_instance_points\",", "additions": 1, ...
2025-09-18T09:21:23
denoland/deno
7cf4753c4835fcd43ecf1e167d08433b48e2d32b
f123d84e7d6e8036c3c38ecec6e25deb87a8829b
fix(ext/node): implement ECDH.convertKey and fix related ECDH bugs (#32532) ## Summary - Implement `ECDH.convertKey()` static method supporting compressed, uncompressed, and hybrid point formats - Fix `setPrivateKey()` not decoding string keys with encoding parameter - Fix `getPublicKey()` not supporting hybrid format...
[ { "path": "ext/node/polyfills/internal/crypto/diffiehellman.ts", "patch": "@@ -15,12 +15,12 @@ import {\n op_node_gen_prime,\n } from \"ext:core/ops\";\n \n-import { notImplemented } from \"ext:deno_node/_utils.ts\";\n import {\n isAnyArrayBuffer,\n isArrayBufferView,\n } from \"ext:deno_node/internal...
2026-03-09T12:13:56
vuejs/vue
7ec4627902020cccd7b3f4fbc63e1b0d6b9798cd
d9b27a92bd5277ee23a4e68a8bd31ecc72f4c99b
fix: ensure generated scoped slot code is compatible with 2.5 fix #9545
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -409,9 +409,9 @@ function genScopedSlots (\n .join(',')\n \n return `scopedSlots:_u([${generatedSlots}]${\n- needsForceUpdate ? `,true` : ``\n+ needsForceUpdate ? `,null,true` : ``\n }${\n- !needsForceUpdate && needsKey ? `,false,${has...
2019-02-21T13:52:15
mrdoob/three.js
eac5acce91a6d91fc256cbd99fbbdf2d392b7652
f25b5a6778005169171d0608c54d292ea3dd92f9
KTX2Loader: Fix ETC1S/UASTC prioritization (#31871) Due to a historical accident, the list of formats for ETC1S was sorted using UASTC priority. This change fixes that. However, this exposes a problem that already exists for UASTC to ETC1S as well: on Linux, Mesa drivers for various Intel and AMD GPUs expose support ...
[ { "path": "examples/jsm/loaders/KTX2Loader.js", "patch": "@@ -194,7 +194,7 @@ class KTX2Loader extends Loader {\n \t * Async version of {@link KTX2Loader#detectSupport}.\n \t *\n \t * @async\n-\t * @param {WebGPURenderer|WebGLRenderer} renderer - The renderer.\n+\t * @param {WebGPURenderer} renderer - The r...
2025-09-17T08:05:02
denoland/deno
f123d84e7d6e8036c3c38ecec6e25deb87a8829b
0d1c07eb545a0dd4456131eb510018bd3d4c06c3
fix(ext/otel): remove panicking unwraps in telemetry code (#32557) ## Summary - Replace `.unwrap()` calls on `OTEL_GLOBALS.get()` and isolate slot accesses with graceful error handling throughout `ext/telemetry/lib.rs` - GC prologue/epilogue callbacks now return early if the isolate slot is missing (can happen du...
[ { "path": "ext/telemetry/lib.rs", "patch": "@@ -1433,12 +1433,14 @@ impl OtelTracer {\n \n #[static_method]\n #[cppgc]\n- fn builtin() -> OtelTracer {\n+ fn builtin() -> Result<OtelTracer, JsErrorBox> {\n let OtelGlobals {\n builtin_instrumentation_scope,\n ..\n- } = OTEL_GLOBALS.ge...
2026-03-09T12:10:10
mrdoob/three.js
7ac88e41cdfda7c22719c1e9bca250c745ac9db7
b641d6d5b316fa184e1df0d622fd8c97e5e8de49
Examples: Update with the new style and inspector (#31907) * PassNode: Rename `setResolution()` to `setResolutionScale()` * PassNode: Improve name in inspector * Parameters: Add `.addFolder()` and `addColor()`, fix slider default value * BloomNode: Improve name in inspector * Examples: update with the new style an...
[ { "path": "examples/jsm/inspector/Inspector.js", "patch": "@@ -155,25 +155,31 @@ class Inspector extends RendererInspector {\n \n \tsetRenderer( renderer ) {\n \n+\t\tsuper.setRenderer( renderer );\n+\n \t\tif ( renderer !== null ) {\n \n \t\t\tsetConsoleFunction( this.resolveConsole.bind( this ) );\n \n-\t...
2025-09-15T19:16:22
golang/go
01b795bc4c6ea54648c60ade6691ad306c0405d3
370513491ab89fe25afb8a4864c409a3dff836b1
log/syslog: document that this package no longer works after macOS 12.0 Per https://developer.apple.com/documentation/os/logging, Apple's syslog no longer uses the legacy syslog and Apple System Logger (ASL) APIs as of macOS 12.X (Monterey), 13.X (Ventura) and thus this package no longer works and no longer listens on...
[ { "path": "src/log/syslog/doc.go", "patch": "@@ -22,3 +22,8 @@ package syslog\n // see https://golang.org/issue/1108.\n \n // BUG(akumar): This package is not implemented on Plan 9.\n+\n+// BUG(odeke-em): As of Darwin's macOS 12.X (Monterey), Apple's syslog daemon no\n+// longer listens on a UNIX domain soc...
2025-12-25T07:35:27
vuejs/vue
d9b27a92bd5277ee23a4e68a8bd31ecc72f4c99b
b3bd3116351eb53cf98254652ee2a01f440b62d8
fix: ensure scoped slots update in conditional branches close #9534
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -375,6 +375,13 @@ function genScopedSlots (\n containsSlotChild(slot) // is passing down slot from parent which may be dynamic\n )\n })\n+\n+ // #9534: if a component with scoped slots is inside a conditional branch,\n+ // it's possible f...
2019-02-21T02:48:33
denoland/deno
0d1c07eb545a0dd4456131eb510018bd3d4c06c3
22258fb3f01f25376890de292339fcab290b21d4
fix: ensure binaries distributed in `@deno/...` npm packages are exectuable (#32581) Bit of a cleanup more than anything.
[ { "path": ".github/workflows/npm_publish.yml", "patch": "@@ -38,11 +38,14 @@ jobs:\n - name: Build npm packages\n run: ./tools/release/npm/build.ts ${{ inputs.version || '' }}\n \n+ - name: Tar npm dist (preserves permissions)\n+ run: tar cf tools/release/npm/dist.tar -C tools/rele...
2026-03-09T12:08:49
mrdoob/three.js
b641d6d5b316fa184e1df0d622fd8c97e5e8de49
d9eec4fcc4da100dce2b0c16c8f9cbf27803837c
WebGPURenderer: Fix rendering morphed meshes. (#31904)
[ { "path": "src/materials/nodes/manager/NodeMaterialObserver.js", "patch": "@@ -465,13 +465,14 @@ class NodeMaterialObserver {\n \n \t\t\t\tif ( renderObjectData.morphTargetInfluences[ i ] !== object.morphTargetInfluences[ i ] ) {\n \n+\t\t\t\t\trenderObjectData.morphTargetInfluences[ i ] = object.morphTarge...
2025-09-15T15:44:27
golang/go
370513491ab89fe25afb8a4864c409a3dff836b1
0bd25dc875a3157974c06ba8d4fb33f95ac2dfdd
internal/profile: fix error message casing for function ID not found Go convention: error messages should not be capitalized Change-Id: I021f54791b7c12ffffa7106532a33cd0ee2e9377 GitHub-Last-Rev: dfa6e0ff5212deb105c747ed80041eff5efc4447 GitHub-Pull-Request: golang/go#77013 Reviewed-on: https://go-review.googlesource.c...
[ { "path": "src/internal/profile/encode.go", "patch": "@@ -232,7 +232,7 @@ func (p *Profile) postDecode() error {\n \t\t\tif id := ln.functionIDX; id != 0 {\n \t\t\t\tl.Line[i].Function = functions[id]\n \t\t\t\tif l.Line[i].Function == nil {\n-\t\t\t\t\treturn fmt.Errorf(\"Function ID %d not found\", id)\n+...
2025-12-27T14:26:09
vuejs/vue
8f004ea44e06d7764fa884212fa95c2033515928
bb0aab664c52006ff79d0802631cf59e65fbbe0d
fix: scoped slots should update when inside v-for fix #9506
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -375,12 +375,18 @@ function genScopedSlots (\n containsSlotChild(slot) // is passing down slot from parent which may be dynamic\n )\n })\n- // OR when it is inside another scoped slot (the reactivity is disconnected)\n- // #9438\n+ // OR...
2019-02-18T22:17:47
mrdoob/three.js
3e8df0a1ce9eaace0ba2bb1b2ebf8a482fc9438c
fc8fc0d5154675c5bcc818956d4c9bf16ed090bd
*TimestampQueryPool: Fix `frame` property reference - https://github.com/mrdoob/three.js/issues/31869
[ { "path": "src/renderers/webgl-fallback/utils/WebGLTimestampQueryPool.js", "patch": "@@ -244,7 +244,7 @@ class WebGLTimestampQueryPool extends TimestampQueryPool {\n \t\t\t}\n \n \t\t\t// Return the total duration of the last frame\n-\t\t\tconst totalDuration = framesDuration[ this.frames[ this.frames.lengt...
2025-09-14T22:47:33
denoland/deno
22258fb3f01f25376890de292339fcab290b21d4
25f1c99f712304b1697d9b6d8c4259085f816c5b
feat: --cpu-prof flags for CPU profiles (#31909) This PR adds `--cpu-prof`, `--cpu-prof-dir`, `--cpu-prof-md`, `--cpu-prof-name` and `--cpu-prof-interval` Example usage: ```sh > target/debug/deno -A --cpu-prof --cpu-prof-md getrandom.js > cat CPU.1769017882255.25986.md # CPU Profile | Duration | Samples | Interval ...
[ { "path": "cli/args/flags.rs", "patch": "@@ -263,6 +263,14 @@ pub struct DocFlags {\n pub filter: Option<String>,\n }\n \n+#[derive(Clone, Debug, Eq, PartialEq, Default)]\n+pub struct CpuProfFlags {\n+ pub dir: Option<String>,\n+ pub name: Option<String>,\n+ pub interval: Option<u32>,\n+ pub md: bool,...
2026-03-09T08:07:44
golang/go
bdd4c38ce3c568efaf274281c40ecc6288c655a6
5e6a6840ae64c60a14d4c027720af5d82710e39f
runtime/cgo: fix setg_gcc call on aix/ppc64 aix/ppc64 uses function descriptors instead of function pointers. CL 708235 assumed the latter, which caused a crash when calling setg_gcc. Fix the call by dereferencing the function descriptor to get the entry point and TOC. Tested using gomote, as LUCI builders still don...
[ { "path": "src/runtime/cgo/gcc_aix_ppc64.S", "patch": "@@ -40,8 +40,11 @@ crosscall1:\n \tmr\t30, 5\n \n \t// Call setg_gcc(g)\n+\t// Function pointers are function descriptors.\n+\t// Dereference setg_gcc to get the entry point and TOC.\n \tmr\t3, 5 // arg g\n-\tmr\t12, 4 // setg_gcc\n+\tld\t12, 0...
2026-02-23T09:56:29
vuejs/vue
1d3316615bfdab021474c248f38ef255e5cc88d5
ee29e41ef469b3ca3c793f04289075e3b128447f
chore: bump webpack (fix PR build cache)
[ { "path": "package.json", "patch": "@@ -137,7 +137,7 @@\n \"shelljs\": \"^0.8.1\",\n \"terser\": \"^3.10.2\",\n \"typescript\": \"^3.1.3\",\n- \"webpack\": \"^4.22.0\",\n+ \"webpack\": \"^4.29.5\",\n \"weex-js-runtime\": \"^0.23.6\",\n \"weex-styler\": \"^0.3.0\",\n \"yorkie\":...
2019-02-18T21:34:46
mrdoob/three.js
147ad8a72d9481985c06df6157ec0e3b8d0b0b7b
f8b2cba09091c6ef1de96e0c31472281f761fc7a
TRAANode: Reduce Ghosting/Smearing (#31895) * Solve for world position * Make basic movement rejection a thing * Fix the issue with edges * Update TRAANode.js * Adjust comment formatting * Resolve unused vars, formatting, and debug nitpicks * Update TRAANode.js Clean up. * Update TRAANode.js - Store previous ...
[ { "path": "examples/jsm/tsl/display/TRAANode.js", "patch": "@@ -1,5 +1,5 @@\n-import { HalfFloatType, Vector2, RenderTarget, RendererUtils, QuadMesh, NodeMaterial, TempNode, NodeUpdateType, Matrix4 } from 'three/webgpu';\n-import { add, float, If, Loop, int, Fn, min, max, clamp, nodeObject, texture, uniform...
2025-09-13T16:36:24
golang/go
e1e73b316c6b67ebbd55542b01f5581db62046d5
ca94cf12479f2a2c065215218f6a3f5fc7bfe1f4
runtime: printquoted: fix decoderune call go.dev/cl/742305 had a stale signature for decoderune, which was updated in go.dev/cl/725101 (converting an argument and return value from int to uint). Add appropriate conversions. Change-Id: Ia4e5bcbab4275d5a988c9dce552cd7590474b995 Reviewed-on: https://go-review.googlesou...
[ { "path": "src/runtime/print.go", "patch": "@@ -217,7 +217,7 @@ func printquoted(s string) {\n \t\t\tcontinue\n \t\tcase runeError:\n \t\t\t// Distinguish errors from a valid encoding of U+FFFD.\n-\t\t\tif _, j := decoderune(s, i); j == i+1 {\n+\t\t\tif _, j := decoderune(s, uint(i)); j == uint(i+1) {\n \t\...
2026-02-24T00:42:32
vuejs/vue
ee29e41ef469b3ca3c793f04289075e3b128447f
a702d1947b856cf3b9d6ca5fb27b2271a78a9a5b
fix: avoid possible infinite loop by accessing observables in error handler (#9489)
[ { "path": "src/core/util/error.js", "patch": "@@ -4,25 +4,33 @@ import config from '../config'\n import { warn } from './debug'\n import { inBrowser, inWeex } from './env'\n import { isPromise } from 'shared/util'\n+import { pushTarget, popTarget } from '../observer/dep'\n \n export function handleError (er...
2019-02-18T18:56:17
denoland/deno
25f1c99f712304b1697d9b6d8c4259085f816c5b
f7d492de83bbeed74dc3734b4cba53a459e151bb
refactor(ext/node): consolidate node:fs modules (part 5) (#32573) ## Summary Follow-up to #32555. Consolidates four more `node:fs` polyfill modules into `fs.ts` and `internal/fs/promises.ts`: - `_fs/_fs_mkdir.ts` → inlined `mkdir`, `mkdirSync` + helpers (`fixMkdirError`, `findFirstNonExistent`) - `_fs/_fs_mkdtemp.ts...
[ { "path": "ext/node/lib.rs", "patch": "@@ -387,10 +387,6 @@ deno_core::extension!(deno_node,\n \"_fs/_fs_glob.ts\",\n \"_fs/_fs_lstat.ts\",\n \"_fs/_fs_lutimes.ts\",\n- \"_fs/_fs_mkdir.ts\",\n- \"_fs/_fs_mkdtemp.ts\",\n- \"_fs/_fs_open.ts\",\n- \"_fs/_fs_opendir.ts\",\n \"_fs/_fs...
2026-03-09T07:31:31
mrdoob/three.js
2c8c13719d1c5c1adbb9d5cafc744206751dc53b
ecaced55b80978c09151869aad51cfb177b4d408
SSGIExample: Add Cornell Box-Inspired Scene (#31897) * SSGIExample: Add Cornell Box Inspired Scene * Improve the naming of everything * Fix some minor shadow biasing artifacts
[ { "path": "examples/webgpu_postprocessing_ssgi.html", "patch": "@@ -10,8 +10,6 @@\n \n \t\t<div id=\"info\">\n \t\t\t<a href=\"https://threejs.org\" target=\"_blank\" rel=\"noopener\">three.js</a> WebGPU - Post-Processing - SSGI<br />\n-\t\t\t<a href=\"https://skfb.ly/YZoC\" target=\"_blank\" rel=\"noopener...
2025-09-13T07:58:56
golang/go
215a070a049ce449480ca6948e7fafdeb7b16920
54ebdf61517436a15f3119d1c117cf367a483ad2
net/smtp: prevent test failures due to expired test certificate The current localhostCert used for testing seems to have its expiry date mistakenly set to Mar 18 19:27:54 2026 GMT. To prevent test failures, use fixed time in tests. Also, regenerate the certificate so we can fix the time to UNIX epoch (the current cer...
[ { "path": "src/net/smtp/smtp_test.go", "patch": "@@ -1125,6 +1125,7 @@ func init() {\n \ttestRootCAs.AppendCertsFromPEM(localhostCert)\n \ttestHookStartTLS = func(config *tls.Config) {\n \t\tconfig.RootCAs = testRootCAs\n+\t\tconfig.Time = func() time.Time { return time.Unix(0, 0) }\n \t}\n }\n \n@@ -1138,5...
2026-02-10T22:17:19
vuejs/vue
29c348f3cf60c50a52cc98123f8c54fa8f5672fc
21fca2fffc3a75235a6656eb85ae40835e04bf69
fix: fix keyCode check for Chrome autofill fake key events close #9441
[ { "path": "src/compiler/codegen/events.js", "patch": "@@ -163,7 +163,13 @@ function genHandler (handler: ASTElementHandler | Array<ASTElementHandler>): str\n }\n \n function genKeyFilter (keys: Array<string>): string {\n- return `if(('keyCode' in $event)&&${keys.map(genFilterCode).join('&&')})return null;`...
2019-02-12T03:54:35
mrdoob/three.js
ecaced55b80978c09151869aad51cfb177b4d408
aa3e118a674f4972cbf0d06d0b90c3563945f401
Node Frame - Simplify Caching (#31896) * simplify nodeFrame * fix comment spacing
[ { "path": "src/nodes/core/NodeFrame.js", "patch": "@@ -124,8 +124,8 @@ class NodeFrame {\n \t\tif ( maps === undefined ) {\n \n \t\t\tmaps = {\n-\t\t\t\trenderMap: new WeakMap(),\n-\t\t\t\tframeMap: new WeakMap()\n+\t\t\t\trenderId: 0,\n+\t\t\t\tframeId: 0,\n \t\t\t};\n \n \t\t\treferenceMap.set( nodeRef, m...
2025-09-13T00:53:21
denoland/deno
55b7691d798e71895321e4ce57a1edc93789042c
574272ded08b82c7dec64da2120be8442a1f7636
fix(lsp): properly sync root files with tsgo (#32455)
[ { "path": "cli/lsp/analysis.rs", "patch": "@@ -904,17 +904,17 @@ pub fn ts_changes_to_edit(\n module: &DocumentModule,\n language_server: &language_server::Inner,\n ) -> Result<Option<lsp::WorkspaceEdit>, AnyError> {\n- let mut text_document_edits = Vec::new();\n+ let mut edits_by_uri = HashMap::with_...
2026-03-08T14:13:49
golang/go
54ebdf61517436a15f3119d1c117cf367a483ad2
04772f022a1cb19f2596fa241ecc24bcb7f4dce5
cmd/compile: fix a typo in startRegs drop condition Fix startRegs drop condition: it used `== 1` instead of `!= 0`, causing the startRegs optimization to only work for register R0. This left unnecessary register bits in startRegs, resulting in extra shuffle-generated OpLoadReg operations on merge edges. The practical...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -507,7 +507,7 @@ func (s *regAllocState) allocReg(mask regMask, v *Value) register {\n \t// and now then there is no reason to even request it on entry. We can\n \t// drop from startRegs in that case.\n \tif s.usedSinceBlockStart&(regMask(1)...
2026-02-14T07:38:17
vuejs/vue
21fca2fffc3a75235a6656eb85ae40835e04bf69
11deaa932eb51e9af11fd32e72c8cab3cd55ec67
fix: ensure scoped slot containing passed down slot content updates properly
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -368,7 +368,12 @@ function genScopedSlots (\n // for example if the slot contains dynamic names, has v-if or v-for on them...\n let needsForceUpdate = Object.keys(slots).some(key => {\n const slot = slots[key]\n- return slot.slotTargetDynami...
2019-02-11T16:30:14
mrdoob/three.js
5a4d5a8f8fb24b5660212fd8d5558c4910767b9a
df8b3e1ae9d21235815d0b01f98b5c05c12bbfe7
Update webgpu_reflection.html Fix deprecation warning.
[ { "path": "examples/webgpu_reflection.html", "patch": "@@ -98,7 +98,7 @@\n \t\t\t\tconst floorUV = uv().mul( 15 );\n \t\t\t\tconst floorNormalOffset = texture( floorNormal, floorUV ).xy.mul( 2 ).sub( 1 ).mul( .02 );\n \n-\t\t\t\tconst reflection = reflector( { resolution: 0.2 } );\n+\t\t\t\tconst reflection...
2025-09-12T20:38:21
denoland/deno
524b86411c11d293e0fd3a0eafe0cd8df2812c14
6b73c27c8d6a786456041017fa7d8eae0b5d4037
refactor: use sys_traits deno_dotenv (#32542) Will fix flaky tests on main.
[ { "path": "Cargo.lock", "patch": "@@ -2173,6 +2173,9 @@ dependencies = [\n [[package]]\n name = \"deno_dotenv\"\n version = \"0.6.0\"\n+dependencies = [\n+ \"sys_traits\",\n+]\n \n [[package]]\n name = \"deno_error\"", "additions": 3, "deletions": 0, "language": "Unknown" }, { "path": "c...
2026-03-06T17:37:56
golang/go
4e693d1ec52c86b262ac23f0d6cee6b60fef4fb0
9697bd96bcc98cbe201d0f57033d9f2dab66b9f6
go/token: add File.String method It returns a brief, unspecified, human-readable description of the File. + test, doc, relnote Fixes #76285 Change-Id: I8b0705cf20eaac095bc9dfba7f1181774544f02c Reviewed-on: https://go-review.googlesource.com/c/go/+/743280 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou...
[ { "path": "api/next/76285.txt", "patch": "@@ -0,0 +1 @@\n+pkg go/token, method (*File) String() string #76285", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/go/token/76285.md", "patch": "@@ -0,0 +1 @@\n+[File] now has a String meth...
2026-02-09T15:33:22
vuejs/vue
e7d49cdcf2fd9a612e0dac7a7bea318824210881
060686d6ea4d013129b4d2e93d7d2e5c93e09686
fix: allow passing multiple arguments to scoped slot fix #9468 Note: the usage is NOT recommended
[ { "path": "src/core/vdom/helpers/normalize-scoped-slots.js", "patch": "@@ -48,8 +48,8 @@ export function normalizeScopedSlots (\n }\n \n function normalizeScopedSlot(normalSlots, key, fn) {\n- const normalized = scope => {\n- let res = fn(scope || {})\n+ const normalized = function () {\n+ let res =...
2019-02-11T03:24:18
golang/go
6435bf46c17dccb2eb5f7bab7dd8aa4972252b21
439a82ad25e9549d0cc330075ae160f7a9ba69f8
cmd/compile: pointer-shaped types are SSAable even if lots of 0-sized fields Normally we don't SSA-ify variables with types that have more than 4 fields. But we really do want to SSA-ify them if they are pointer shaped. An odd case, but the compiler shouldn't barf on them. Failure probably started with CL 714421. F...
[ { "path": "src/cmd/compile/internal/ssa/decompose.go", "patch": "@@ -363,20 +363,20 @@ func decomposeUserPhi(v *Value) {\n func decomposeStructPhi(v *Value) {\n \tt := v.Type\n \tn := t.NumFields()\n-\tvar fields [MaxStruct]*Value\n+\tfields := make([]*Value, 0, MaxStruct)\n \tfor i := 0; i < n; i++ {\n-\t\...
2026-02-11T01:44:08
denoland/deno
e99c9b99ee7768752ce732e3ab0055b2ea6ea912
3a4ece2ed446448e63baee8ded7d2c660a444495
fix: support value substitution when loading environment variable files (#32495)
[ { "path": "cli/standalone/binary.rs", "patch": "@@ -1266,7 +1266,9 @@ fn get_file_env_vars(\n file_path: &Path,\n ) -> Result<IndexMap<String, String>, deno_dotenv::Error> {\n let mut file_env_vars = IndexMap::new();\n- for item in deno_dotenv::from_path_sanitized_iter(file_path)? {\n+ for item in\n+ ...
2026-03-06T16:04:02
mrdoob/three.js
df8b3e1ae9d21235815d0b01f98b5c05c12bbfe7
1c02d876d0fcd6f0c545e9b70df511b6ba7c0932
Update AnimationMixer.js Fix typo.
[ { "path": "src/animation/AnimationMixer.js", "patch": "@@ -641,7 +641,7 @@ class AnimationMixer extends EventDispatcher {\n \t/**\n \t * Deactivates all previously scheduled actions on this mixer.\n \t *\n-\t * @return {AnimationMixer} A reference to thi animation mixer.\n+\t * @return {AnimationMixer} A re...
2025-09-12T20:30:16
vuejs/vue
060686d6ea4d013129b4d2e93d7d2e5c93e09686
0bad7e2a3508b55abaa8aec2a1bd9c1127305cb4
fix: do not cache scoped slots when mixed with normal slots
[ { "path": "src/core/vdom/helpers/normalize-scoped-slots.js", "patch": "@@ -15,8 +15,14 @@ export function normalizeScopedSlots (\n } else if (slots._normalized) {\n // fast path 1: child component re-render only, parent did not change\n return slots._normalized\n- } else if (slots.$stable && prev...
2019-02-11T03:23:22
mrdoob/three.js
1c02d876d0fcd6f0c545e9b70df511b6ba7c0932
3ecd1c38720d5f95ca2a74f961d003b02e4ce258
Improve SSGI Temporal Noise (#31890) * Improve SSGI Temporal Noise * Fix bug toggling temporal filtering in AO/GI Mode * Update SSGINode.js * Make it mathematically equivalent to using frameId * Update SSGINode.js Add PR number. --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "examples/jsm/tsl/display/SSGINode.js", "patch": "@@ -576,7 +576,8 @@ class SSGINode extends TempNode {\n \n \t\t\tconst noiseOffset = spatialOffsets( screenCoordinate );\n \t\t\tconst noiseDirection = gradientNoise( screenCoordinate );\n-\t\t\tconst initialRayStep = fract( noiseOffset.add( this._...
2025-09-12T08:11:30
golang/go
439a82ad25e9549d0cc330075ae160f7a9ba69f8
841fafcd583b37ba316a66fc388f966a5be8de80
cmd/compile: add flag for emitting diagnostics unsorted The prove pass uses warnings with locations that are sorted before they are emitted. When debugging on level 3, this sorting can obscure which log lines happened before each other, obscuring the flow of control. This gets doubly confusing when debugging issues th...
[ { "path": "src/cmd/compile/internal/base/flag.go", "patch": "@@ -78,6 +78,7 @@ type CmdFlags struct {\n \tLowerR CountFlag \"help:\\\"debug generated wrappers\\\"\"\n \tLowerT bool \"help:\\\"enable tracing for debugging the compiler\\\"\"\n \tLowerW CountFlag \"help:\\\"debug type checking\\\"\"\n+...
2026-02-05T13:42:00
denoland/deno
a6e66a80b1c8b5e33cc87df01e31542d75c1d8fe
7fee0367f524253963979a61a421061c9d8b065d
fix(ext/node): make TTY stdout/stderr indestructible (#32530) ## Summary - Libraries like `mute-stream` (used by `@inquirer/prompts`) call `destroy()` or `end()` on `process.stdout`, which previously closed the underlying Deno resource (rid 1/2). This broke subsequent `console.log` calls with `BadResource: Bad resour...
[ { "path": "ext/node/polyfills/internal/tty.js", "patch": "@@ -338,6 +338,28 @@ export class WriteStream extends Socket {\n }\n cb();\n };\n+\n+ // Prevent actually closing stdout/stderr. Libraries like mute-stream\n+ // (used by @inquirer/prompts) call destroy()/end() on the ...
2026-03-06T11:22:40
vuejs/vue
0bad7e2a3508b55abaa8aec2a1bd9c1127305cb4
c1989500450c06cde7750850c87a6082c0725b54
fix: bail out of event blocking for iOS bug close #9462
[ { "path": "src/platforms/web/runtime/modules/events.js", "patch": "@@ -61,9 +61,17 @@ function add (\n const original = handler\n handler = original._wrapper = function (e) {\n if (\n+ // no bubbling, should always fire.\n+ // this is just a safety net in case event.timeStamp is ...
2019-02-09T06:16:41
mrdoob/three.js
3ecd1c38720d5f95ca2a74f961d003b02e4ce258
1d4d2a7e1f35283d062a7ab5fafc4f9c08b61c0e
Playground: Fix usage of `timerLocal`. (#31889)
[ { "path": "playground/editors/TimerEditor.js", "patch": "@@ -1,12 +1,12 @@\n import { NumberInput, LabelElement, Element, ButtonInput } from 'flow';\n import { BaseNodeEditor } from '../BaseNodeEditor.js';\n-import { timerLocal } from 'three/tsl';\n+import { time } from 'three/tsl';\n \n export class TimerE...
2025-09-11T20:16:28
golang/go
841fafcd583b37ba316a66fc388f966a5be8de80
34b9742c817d1c689f09af71364f52711524cc09
runtime/secret: run crash tests under memory validating modes The crashing test for runtime/secret does not run afoul of the memory validators like the standard tests does. Pass through to the crashing binary to shake out as many problems as possible. Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-asan-clang15...
[ { "path": "src/runtime/secret/crash_test.go", "patch": "@@ -10,6 +10,9 @@ import (\n \t\"bytes\"\n \t\"debug/elf\"\n \t\"fmt\"\n+\t\"internal/asan\"\n+\t\"internal/msan\"\n+\t\"internal/race\"\n \t\"internal/testenv\"\n \t\"io\"\n \t\"os\"\n@@ -120,7 +123,18 @@ func TestCore(t *testing.T) {\n \t\tt.Fatalf(\...
2025-12-01T15:13:08
denoland/deno
6d084821ca18bdb3e6cc58586fa8daff5a4e6889
885ad240ecd08040f5419d2cc51db87bcebf0a3d
fix(ext/node): support des-ede3-cbc cipher and allow Cipheriv/Decipheriv without new (#32519) ## Summary - Add `des` crate and implement `des-ede3-cbc` (Triple DES CBC) cipher for both encrypt and decrypt paths in `ext/node_crypto` - Convert `Cipheriv`/`Decipheriv` from ES6 classes to function constructors so they ca...
[ { "path": "Cargo.lock", "patch": "@@ -2685,6 +2685,7 @@ dependencies = [\n \"deno_crypto_provider\",\n \"deno_error\",\n \"der\",\n+ \"des\",\n \"digest\",\n \"dsa\",\n \"ecb\",\n@@ -3644,6 +3645,15 @@ dependencies = [\n \"syn 2.0.117\",\n ]\n \n+[[package]]\n+name = \"des\"\n+version = \"0.8.1\"\n+s...
2026-03-06T10:39:01
vuejs/vue
b2a093fa03704b2f0c6b2e9ee4d10b7ed156698d
9011b83db79cf2f3563f8fccb2e41b5b863c3ee9
chore: fix e2e test in phantomjs
[ { "path": "src/core/vdom/helpers/normalize-scoped-slots.js", "patch": "@@ -34,7 +34,7 @@ export function normalizeScopedSlots (\n }\n // avoriaz seems to mock a non-extensible $scopedSlots object\n // and when that is passed down this would cause an error\n- if (Object.isExtensible(slots)) {\n+ if (...
2019-02-08T21:32:22
mrdoob/three.js
c2ce3dd65fb71133b8e57228ee522d4309bf2529
c604c09f5e9e9bf8bb622657c0b25338c2ae882e
SSGINode: Improve GI Blending (#31882) * Improve GI Blending Consider if SSRT3's Blending is necessary * Also fix the TRAA Toggle * Add missing semi-colon * Fix Radius Changing with Step Count This bug is also present here: https://github.com/cdrinmatane/SSRT3/blob/main/HDRP/Shaders/Resources/SSRTCS.compute#L239-...
[ { "path": "examples/jsm/tsl/display/SSGINode.js", "patch": "@@ -471,7 +471,7 @@ class SSGINode extends TempNode {\n \n \t\t\tIf( this.useScreenSpaceSampling.equal( true ), () => {\n \n-\t\t\t\tstepRadius.assign( RADIUS.mul( this._resolution.x.div( 2 ) ).div( float( STEP_COUNT ) ) );\n+\t\t\t\tstepRadius.ass...
2025-09-11T17:09:32
golang/go
34b9742c817d1c689f09af71364f52711524cc09
0bf3f64c6b91df0b7665ecf0875757985b5b2bee
net: convert wildcard address to local on freebsd Starting in FreeBSD 15, connecting to INADDR_ANY no longer works as an alias for localhost. From the release notes [1]: "Making a connection to INADDR_ANY, i.e., using it as an alias for localhost, is now disabled by default. This functionality can be re-enabled by se...
[ { "path": "src/net/ipsock_posix.go", "patch": "@@ -158,7 +158,7 @@ func favoriteAddrFamily(network string, laddr, raddr sockaddr, mode string) (fam\n \n func internetSocket(ctx context.Context, net string, laddr, raddr sockaddr, sotype, proto int, mode string, ctrlCtxFn func(context.Context, string, string,...
2026-02-19T15:43:45
denoland/deno
b05f53cb6e9613e3a58c8e9c59c5d0a5ea51fff4
dd0728d4cfeb39f8b4fd42d7f0f64ee3c1123537
fix: normalize `capture` to boolean in `removeEventListener` options (#32508) Fixes #29681 --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: bartlomieju <13602871+bartlomieju@users.noreply.github.com>
[ { "path": "ext/web/02_event.js", "patch": "@@ -830,6 +830,7 @@ function invokeEventListeners(tuple, eventImpl) {\n }\n }\n \n+// https://dom.spec.whatwg.org/#dom-eventtarget-removeeventlistener\n function normalizeEventHandlerOptions(\n options,\n ) {\n@@ -838,7 +839,9 @@ function normalizeEventHandlerO...
2026-03-06T08:33:49
vuejs/vue
9011b83db79cf2f3563f8fccb2e41b5b863c3ee9
8a800867fe61e5aa642e1e3da91bb890d07312f7
fix: avoid breaking avoriaz edge case
[ { "path": "src/core/vdom/helpers/normalize-scoped-slots.js", "patch": "@@ -32,7 +32,9 @@ export function normalizeScopedSlots (\n res[key] = proxyNormalSlot(normalSlots, key)\n }\n }\n- if (slots) {\n+ // avoriaz seems to mock a non-extensible $scopedSlots object\n+ // and when that is passed...
2019-02-08T21:11:41
mrdoob/three.js
ad556420d43cc1170a7b3febf09926e5e71ef3b5
4ff594b8705db967a22141f14cc2eb20d889d42c
SSGINode: Fix clear color. (#31881)
[ { "path": "examples/jsm/tsl/display/SSGINode.js", "patch": "@@ -354,7 +354,7 @@ class SSGINode extends TempNode {\n \n \t\t// clear\n \n-\t\trenderer.setClearColor( 0xffffff, 1 );\n+\t\trenderer.setClearColor( 0x000000, 1 );\n \n \t\t// gi\n ", "additions": 1, "deletions": 1, "language": "JavaSc...
2025-09-10T20:58:53
denoland/deno
98d269319c52d723ae5679c55f1506c86bbc8374
c826feeaad1865db233085c0164a92f0b32766d0
chore: better structured Slack output for issue_pr_insights (#32503) ## Summary - Truncate long titles (55 chars) with ellipsis to prevent Slack line wrapping - Add age indicator per item (e.g. `2h`, `1d`) for at-a-glance urgency - Add 🔥 **Hot issues** section — surfaces issues with 3+ recent comments (e.g. bugs repr...
[ { "path": "tools/issue_pr_insights.ts", "patch": "@@ -45,6 +45,16 @@ interface GitHubItem {\n pull_request?: unknown;\n }\n \n+interface GitHubComment {\n+ created_at: string;\n+ user?: { login: string };\n+}\n+\n+interface HotIssue {\n+ item: GitHubItem;\n+ recentComments: number;\n+}\n+\n async func...
2026-03-06T08:07:12
vuejs/vue
8a800867fe61e5aa642e1e3da91bb890d07312f7
099f3ba60085a089ff369442bdb835f3868e47c0
fix: new syntax slots without scope should also be exposed on functional slots()
[ { "path": "src/core/vdom/create-functional-component.js", "patch": "@@ -49,7 +49,15 @@ export function FunctionalRenderContext (\n this.parent = parent\n this.listeners = data.on || emptyObject\n this.injections = resolveInject(options.inject, parent)\n- this.slots = () => this.$slots || (this.$slots...
2019-02-08T19:45:45
mrdoob/three.js
47c6359dcf6a4dbe0d9f9f4fff71090ad15d32b2
832291bdf04c2c38bb6778a90dcc1dc4d6bb0c1e
WebGPU: Fix `Renderer` not being garbage collected (#31798) * Fix leak * Revert "Fix leak" This reverts commit a70d4864b672d030edc9e6e55c59727b03b9df1f. * Fix leak on Geometries * Change to map, remove redundant conditional, add comment * Rename to be more specific
[ { "path": "src/renderers/common/Geometries.js", "patch": "@@ -117,6 +117,14 @@ class Geometries extends DataMap {\n \t\t */\n \t\tthis.attributeCall = new WeakMap();\n \n+\t\t/**\n+\t\t * Stores the event listeners attached to geometries.\n+\t\t *\n+\t\t * @private\n+\t\t * @type {Map<BufferGeometry,Functio...
2025-09-10T13:40:44
golang/go
0bf3f64c6b91df0b7665ecf0875757985b5b2bee
f3755d9eba1147eb2cc3257689764f0cd8aac77b
mime: make TypeByExtension follow Chrome+Firefox's precedence for webm->video and weba->audio This CL updates TypeByExtension to correctly follow the precedence rules that Chrome and Firefox use, whereby "webm" maps to "video/webm" and "weba" maps to "audio/webm" per: https://chromium.googlesource.com/chromium/src.gi...
[ { "path": "src/mime/type.go", "patch": "@@ -115,7 +115,8 @@ var builtinTypesLower = map[string]string{\n \t\".vtt\": \"text/vtt; charset=utf-8\",\n \t\".wasm\": \"application/wasm\",\n \t\".wav\": \"audio/wav\",\n-\t\".webm\": \"audio/webm\",\n+\t\".weba\": \"audio/webm\",\n+\t\".webm\": \"video/web...
2026-02-19T22:41:07
vuejs/vue
0e8560d0fc1c0fbf3a52464939701e0e44543b00
ca57920edb56000bfc87bb64f4e5e3450c03e13a
fix: expose v-slot slots without scope on this.$slots fix #9421, fix #9458
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -411,7 +411,9 @@ function genScopedSlot (\n : genChildren(el, state) || 'undefined'\n : genElement(el, state)\n }}`\n- return `{key:${el.slotTarget || `\"default\"`},fn:${fn}}`\n+ // reverse proxy v-slot without scope on this.$slots...
2019-02-08T18:47:17
denoland/deno
c826feeaad1865db233085c0164a92f0b32766d0
ff1d9b69087b33bbda97130c14bd5b5a245022a6
fix: set `process.features.openssl_is_boringssl` to `true` (#32512) Enables `test-crypto-certificate.js` Node compat test. --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: bartlomieju <13602871+bartlomieju@users.noreply.github.com>
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -959,8 +959,9 @@ const features = {\n // deno-lint-ignore camelcase\n tls_ocsp: true,\n tls: true,\n+ // Deno uses aws-lc, which is BoringSSL-based.\n // deno-lint-ignore camelcase\n- openssl_is_boringssl: false,\n+ openssl_is_boringssl: tru...
2026-03-06T08:02:47
mrdoob/three.js
77cc69802330ac10015c871ec111b4ec53e4db7d
bface43c1da1bb4c3f14b8353b8cee8a62cf8b1f
SSGINode: Fix wrong bitfield typecast. (#31873)
[ { "path": "examples/jsm/tsl/display/SSGINode.js", "patch": "@@ -1,5 +1,5 @@\n import { RenderTarget, Vector2, TempNode, QuadMesh, NodeMaterial, RendererUtils, MathUtils } from 'three/webgpu';\n-import { clamp, normalize, reference, nodeObject, Fn, NodeUpdateType, uniform, vec4, passTexture, uv, logarithmicD...
2025-09-10T12:04:34
golang/go
839cd82fa53ec481ffcd02e139b3d77c2724892e
06dc5db75d4c2548c0187f34ce79389678be7ca0
cmd/cgo/internal/test: add a test for C calling into Go before init done Test that C code can call back into Go (on a separate thread) before init is done. The callback should wait for the init done. And this should not cause a false race. This corresponds to the runtime fix in CL 746581. Change-Id: I10e6a9d5fe056be...
[ { "path": "src/cmd/cgo/internal/test/cgo_test.go", "patch": "@@ -78,6 +78,7 @@ func TestBoolAlign(t *testing.T) { testBoolAlign(t) }\n func TestCallGoWithString(t *testing.T) { testCallGoWithString(t) }\n func TestCallback(t *testing.T) { testCallback(t) }\n func TestC...
2026-02-18T20:25:22
vuejs/vue
ca57920edb56000bfc87bb64f4e5e3450c03e13a
57bc80a546acb2bd092edd393228324b453ae4e2
fix: avoid logging same error twice when thrown by user in global handler fix #9445
[ { "path": "src/core/util/error.js", "patch": "@@ -49,7 +49,11 @@ function globalHandleError (err, vm, info) {\n try {\n return config.errorHandler.call(null, err, vm, info)\n } catch (e) {\n- logError(e, null, 'config.errorHandler')\n+ // if the user intentionally throws the original...
2019-02-07T15:17:28
denoland/deno
ff1d9b69087b33bbda97130c14bd5b5a245022a6
d26e5c48f5d58a4dc077f92ff477c205dc3aabdf
test: add expected failure support to node_compat test harness (#32451) ## Summary Extends the node_compat test harness to support **expected failures** — tests that are known to fail with a specific exit code and/or output pattern. This avoids disabling tests entirely when we know they fail in a predictable way. ##...
[ { "path": "tests/node_compat/config.jsonc", "patch": "@@ -1,4 +1,5 @@\n {\n+ \"$schema\": \"./schema.json\",\n \"tests\": {\n \"abort/test-addon-register-signal-handler.js\": {},\n \"abort/test-addon-uv-handle-leak.js\": {},\n@@ -1646,10 +1647,9 @@\n \"parallel/test-zlib-brotli-from-brotli.js...
2026-03-06T07:47:46
mrdoob/three.js
f1688d0c89f068631fb1f084a142d8abc28dd459
65abfad2f26a8271919223f99817030f54f9c438
Change npm install to npm ci in contributing guide (#31859) `ci` installs exactly what's in `package-lock.json` where as `install` installs compatible versions. Given today's [issue](https://www.aikido.dev/blog/npm-debug-and-chalk-packages-compromised) it's probably best to tell uses to use `ci` and not `install`
[ { "path": ".github/CONTRIBUTING.md", "patch": "@@ -18,7 +18,7 @@ It is assumed that you know a little about Node.js and Git. If not, [here's some\n \n * Install the dependencies\n \n- npm install\n+ npm ci\n \n ## Next Steps\n ", "additions": 1, "deletions": 1, "language": "Markdown" ...
2025-09-10T09:01:31
golang/go
06dc5db75d4c2548c0187f34ce79389678be7ca0
a8032d4c781f14fa0bd561d96e719492aee08c23
cmd/compile, go/*: move method type parameter checks from parsers to type checkers The parsers (cmd/compile/internal/syntax and go/parser) always accepted type parameters on methods for parser robustness but reported an error. With this change, the parsers accept the type parameters on methods, and then the type chec...
[ { "path": "src/cmd/compile/internal/syntax/parser.go", "patch": "@@ -797,9 +797,9 @@ func (p *parser) funcDeclOrNil() *FuncDecl {\n \tf.pos = p.pos()\n \tf.Pragma = p.takePragma()\n \n-\tvar context string\n+\thasRecv := false\n \tif p.got(_Lparen) {\n-\t\tcontext = \"method\"\n+\t\thasRecv = true\n \t\trcv...
2026-01-23T00:16:17
mrdoob/three.js
8c698fb9e4c9574ec4fc47ab651cc4e531541d4d
253163650b905d41fe5c7e4d2fbff5b7028d4bfb
TSL: Fix `onDispose` listener not being removed in `Sampler` (#31868) * Move onDispose to class field * Rename method to be more specific * Change listener to arrow function * Fix undefined callback and it points to a wrong sampler
[ { "path": "src/renderers/common/Sampler.js", "patch": "@@ -21,8 +21,24 @@ class Sampler extends Binding {\n \t\t/**\n \t\t * The texture the sampler is referring to.\n \t\t *\n+\t\t * @private\n \t\t * @type {?Texture}\n \t\t */\n+\t\tthis._texture = null;\n+\n+\t\t/**\n+\t\t * An event listener which is ad...
2025-09-09T21:57:17
vuejs/vue
57bc80a546acb2bd092edd393228324b453ae4e2
4015debe951c6b022dee5fc16869561b6c9981b4
fix: empty scoped slot should return undefined fix #9452
[ { "path": "src/core/vdom/helpers/normalize-scoped-slots.js", "patch": "@@ -33,10 +33,13 @@ export function normalizeScopedSlots (\n \n function normalizeScopedSlot(fn: Function): Function {\n return scope => {\n- const res = fn(scope)\n- return res && typeof res === 'object' && !Array.isArray(res)\n...
2019-02-07T15:03:13
denoland/deno
d26e5c48f5d58a4dc077f92ff477c205dc3aabdf
8e31633863a0da4b545a0f48e8e226599527e3fe
fix(ext/node): implement proper `resourceLimits` for `node:worker_threads` (#32430) ## Summary Implements proper `resourceLimits` support for `node:worker_threads`, matching Node.js behavior: - **Individual V8 ResourceConstraints**: Uses `set_max_old_generation_size_in_bytes`, `set_max_young_generation_size_in_bytes...
[ { "path": "cli/lib/worker.rs", "patch": "@@ -369,6 +369,54 @@ impl<TSys: DenoLibSys> LibWorkerFactorySharedState<TSys> {\n bundle_provider: shared.bundle_provider.clone(),\n };\n let maybe_initial_cwd = shared.options.maybe_initial_cwd.clone();\n+ // Apply resource limits to v8::Cre...
2026-03-06T07:33:05
golang/go
a8032d4c781f14fa0bd561d96e719492aee08c23
87a956bf8cdf9004108942247af8ae0243c5609a
cmd/link: use bfd ld 2.36+ on linux/arm64 instead of gold The bfd linker has been fixed for a while. In the mean time gold got deprecated and has stopped receiving new features. Add runtime version checking and only use gold, if bfd ld 2.35 and lower is detected. This enables using `-buildmode=shared` on arm64 withou...
[ { "path": "src/cmd/link/internal/ld/lib.go", "patch": "@@ -1700,22 +1700,48 @@ func (ctxt *Link) hostlink() {\n \t\t}\n \n \t\tif ctxt.Arch.InFamily(sys.ARM64) && buildcfg.GOOS == \"linux\" {\n-\t\t\t// On ARM64, the GNU linker will fail with\n-\t\t\t// -znocopyreloc if it thinks a COPY relocation is\n-\t\t...
2026-01-29T04:30:42
mrdoob/three.js
253163650b905d41fe5c7e4d2fbff5b7028d4bfb
9f3ff3cff81b244a9af790d1a445c4acd57d2606
SSGINode: Fix Sampling Asymmetry (#31867) * SSGINode: Fix Sampling Asymmetry Make the SSGI pass work closer to the way it was intended to... Also enables panning in the demo scene (to better examine the GI). * Undo erroneous change * Fix duplicate import
[ { "path": "examples/jsm/tsl/display/SSGINode.js", "patch": "@@ -1,5 +1,5 @@\n import { RenderTarget, Vector2, TempNode, QuadMesh, NodeMaterial, RendererUtils, MathUtils } from 'three/webgpu';\n-import { clamp, normalize, reference, nodeObject, Fn, NodeUpdateType, uniform, vec4, passTexture, uv, logarithmicD...
2025-09-09T20:00:31
denoland/deno
f19102c59100b1bb719e28c5187f57b4695b5c16
f02065564c1d86362167888431ba6c3262689e72
fix(core): switch to V8 Explicit microtask policy for correct nextTick ordering (#32466) ## Summary - Switches deno_core from V8's **Auto** microtask policy to **Explicit** so that `process.nextTick` callbacks run before `Promise.then` callbacks, matching Node.js behavior - Guards pre-drain `perform_microtask_checkpoi...
[ { "path": "ext/ffi/callback.rs", "patch": "@@ -190,6 +190,10 @@ unsafe extern \"C\" fn deno_ffi_callback(\n if tc_scope.exception().is_some() {\n log::error!(\"Illegal unhandled exception in nonblocking callback\");\n }\n+ // Flush microtasks queued by the callback b...
2026-03-05T15:19:21
vuejs/vue
dae7e4182fbbb41e599953cc22e5d54dbb164070
d5ade28652b07303ac6b713813792752ae5e4e04
fix: skip microtask fix if event is fired from different document fix #9448
[ { "path": "src/platforms/web/runtime/modules/events.js", "patch": "@@ -60,7 +60,12 @@ function add (\n const attachedTimestamp = currentFlushTimestamp\n const original = handler\n handler = original._wrapper = function (e) {\n- if (e.timeStamp >= attachedTimestamp) {\n+ if (\n+ ...
2019-02-06T20:57:06
mrdoob/three.js
b4e22070373b1dc8155109a8a269313ab7d7899b
bd256a8382ee08bb7a3d2bec411ba42760f5cd10
SSGINode: Fix linear thickness computation. (#31863)
[ { "path": "examples/jsm/tsl/display/SSGINode.js", "patch": "@@ -493,7 +493,7 @@ class SSGINode extends TempNode {\n \n \t\t\t\tconst sampleViewPosition = getViewPosition( sampleUV, sampleDepth( sampleUV ), this._cameraProjectionMatrixInverse ).toConst();\n \t\t\t\tconst pixelToSample = sampleViewPosition.su...
2025-09-09T15:20:11
denoland/deno
f02065564c1d86362167888431ba6c3262689e72
0c8469433a80aa3b2513c9c462c55b0b6804319c
test: modernize "node_compat" test runner (#32482) ## Summary Modernizes the node compat test runner (`tests/node_compat/mod.rs`) with three improvements: ### 1. Simplified test filtering Any test from the Node.js suite can now be run directly with a filter, **regardless of whether it's listed in `config.jsonc`**: ...
[ { "path": "tests/node_compat/mod.rs", "patch": "@@ -13,16 +13,19 @@ use file_test_runner::collection::CollectedCategoryOrTest;\n use file_test_runner::collection::CollectedTest;\n use file_test_runner::collection::CollectedTestCategory;\n use regex::Regex;\n+use report::CollectedResult;\n+use report::ErrorI...
2026-03-05T14:50:17
vuejs/vue
7bc88f30c3eadded07dd5b460d1e7cb9342d017c
96a09aad99bdecbcc0e5c420077bf41893d4a745
fix: skip microtask fix in Firefix <= 53 fix #9446
[ { "path": "src/core/util/env.js", "patch": "@@ -15,6 +15,7 @@ export const isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform ===\n export const isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios')\n export const isChrome = UA && /chrome\\/\\d+/.test(UA) && !isEdge\n expor...
2019-02-06T20:04:24
golang/go
a01a4f98026f834311f9029573030c3e1799646b
fb0c8e16c329da6f0caafa2d5ae48e625a00b652
runtime/cgo: rename and update ppc64x and s390x croscall1 functions crosscall1 has the same signature and behavior on all platforms except for ppc64x and s390x, fix that. Cq-Include-Trybots: luci.golang.try:gotip-linux-ppc64le_power9,gotip-linux-ppc64_power8,gotip-linux-s390x Change-Id: Iead8b578a45787bb1fb2dd2dcfcb1...
[ { "path": "src/runtime/asm_ppc64x.s", "patch": "@@ -197,9 +197,9 @@ TEXT runtime·breakpoint(SB),NOSPLIT|NOFRAME,$0-0\n TEXT runtime·asminit(SB),NOSPLIT|NOFRAME,$0-0\n \tRET\n \n-// Any changes must be reflected to runtime/cgo/gcc_aix_ppc64.S:.crosscall_ppc64\n+// Any changes must be reflected to runtime/cgo...
2025-10-01T08:33:17
mrdoob/three.js
8683d9657d3d9b83e9055025c95edcff71281be9
8e2c9b0e1f73ac19fa8c530cb0b4670e391c5b63
RenderTarget: Fix resize of 3D textures. (#31854)
[ { "path": "src/core/RenderTarget.js", "patch": "@@ -294,7 +294,16 @@ class RenderTarget extends EventDispatcher {\n \t\t\t\tthis.textures[ i ].image.width = width;\n \t\t\t\tthis.textures[ i ].image.height = height;\n \t\t\t\tthis.textures[ i ].image.depth = depth;\n-\t\t\t\tthis.textures[ i ].isArrayTextur...
2025-09-08T16:09:17
vuejs/vue
96a09aad99bdecbcc0e5c420077bf41893d4a745
4d4d22a3f6017c46d08b67afe46af43027b06629
fix(compiler): fix v-bind dynamic arguments on slot outlets fix #9444
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -501,7 +501,14 @@ function genSlot (el: ASTElement, state: CodegenState): string {\n const slotName = el.slotName || '\"default\"'\n const children = genChildren(el, state)\n let res = `_t(${slotName}${children ? `,${children}` : ''}`\n- const a...
2019-02-06T18:58:09
golang/go
50b63f6cb90a1437ca6756ede016f1918e721da6
45929774c3d5c084cc478afba63c77cf67a68bd7
cmd/link: don't pass -Wl,-S on illumos The change in CL 707096 to exclude GOOS=solaris needs to also be applied for GOOS=illumos, which shares the same linker lineage. Fixes #77530 Change-Id: Ifc2047595af2db52870f9fb0a9faf646666d9e61 Reviewed-on: https://go-review.googlesource.com/c/go/+/746560 LUCI-TryBot-Result: G...
[ { "path": "src/cmd/link/dwarf_test.go", "patch": "@@ -426,7 +426,7 @@ func TestFlagW(t *testing.T) {\n \t\t{\"-s\", false}, // -s implies -w\n \t\t{\"-s -w=0\", true}, // -w=0 negates the implied -w\n \t}\n-\tif testenv.HasCGO() && runtime.GOOS != \"solaris\" { // Solaris linker doesn't support the -S f...
2026-02-18T14:24:18
denoland/deno
0c8469433a80aa3b2513c9c462c55b0b6804319c
f1d7d0c2a75e1754920048f65a2c1526ff6d5ddf
fix(ext/node): implement `node:v8` heap APIs (#32483) Implements `v8.getHeapSpaceStatistics()`, `v8.getHeapCodeStatistics()`, `v8.getHeapSnapshot()`, and `v8.writeHeapSnapshot()` from the `node:v8` module Enabled node compat tests: `test-heapdump.js`, `test-v8-getheapsnapshot-twice.js`, `test-v8-stats.js` --------- ...
[ { "path": "Cargo.lock", "patch": "@@ -10864,9 +10864,9 @@ dependencies = [\n \n [[package]]\n name = \"v8\"\n-version = \"146.1.0\"\n+version = \"146.3.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"70bb6bcbb6a406fd720dad66d85337bd401d8276c7276f6a86164af6e1c57118\"\n...
2026-03-05T14:20:13
mrdoob/three.js
8e2c9b0e1f73ac19fa8c530cb0b4670e391c5b63
440ea54253666daaa918e0c7cbd38fddb1b20130
Docs: Modifying TextGeometry URL document error. (#31856)
[ { "path": "manual/en/align-html-elements-to-3d.html", "patch": "@@ -33,7 +33,7 @@ <h1>Aligning HTML Elements to 3D</h1>\n each with pluses and minuses.</p>\n <ul>\n <li><p>Use 3D text</p>\n-<p>If you look at the <a href=\"primitives.html\">primitives article</a> you'll see <a href=\"/docs/#api/en/geometries...
2025-09-08T16:07:01
vuejs/vue
4d4d22a3f6017c46d08b67afe46af43027b06629
b6247fc9d7442c50d60ccf366a7cb183a4d02129
fix: bail out scoped slot optimization when there are nested scopes fix #9438
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -4,6 +4,7 @@ import { genHandlers } from './events'\n import baseDirectives from '../directives/index'\n import { camelize, no, extend } from 'shared/util'\n import { baseWarn, pluckModuleFunction } from '../helpers'\n+import { emptySlotScopeToken } fr...
2019-02-06T17:29:00
denoland/deno
f1d7d0c2a75e1754920048f65a2c1526ff6d5ddf
fb44def9e21e113ad2a679a44e54cd8f3a022665
fix: prevent panic on dynamic import with non-string error name (#32498) Fixes a panic where a dynamic import rejecting with an Error whose `name` property is a non-string type (Number, Object, Symbol) would panic and terminate the Deno process. --------- Co-authored-by: kaju <kajukitli@users.noreply.github.com>
[ { "path": "libs/core/error.rs", "patch": "@@ -996,10 +996,14 @@ impl JsError {\n let mut out = Vec::with_capacity(arr.length() as usize);\n \n for i in 0..arr.length() {\n- let key = arr.get_index(scope, i).unwrap();\n+ let Some(key) = arr.get_index(scope, i) else {\n+ ...
2026-03-05T14:16:36
golang/go
45929774c3d5c084cc478afba63c77cf67a68bd7
93b6475e1de0f055139bd0926048ee8e36aa7c42
internal/runtime/gc/scan: require popcnt for x86 The GOAMD64=v1 test disables popcnt instructions, which is a feature this package's amd64 assembly uses. Fixes #77674 Change-Id: I7be9bb665838f5da50275f96ef3df398412bb44a Reviewed-on: https://go-review.googlesource.com/c/go/+/746640 LUCI-TryBot-Result: Go LUCI <golang...
[ { "path": "src/internal/runtime/gc/scan/scan_amd64.go", "patch": "@@ -38,4 +38,5 @@ var avx512ScanPackedReqsMet = cpu.X86.HasAVX512VL &&\n \tcpu.X86.HasAVX512BW &&\n \tcpu.X86.HasGFNI &&\n \tcpu.X86.HasAVX512BITALG &&\n-\tcpu.X86.HasAVX512VBMI\n+\tcpu.X86.HasAVX512VBMI &&\n+\tcpu.X86.HasPOPCNT", "additi...
2026-02-18T17:09:57
mrdoob/three.js
440ea54253666daaa918e0c7cbd38fddb1b20130
eeec0f48f4e696a2fbbba90bdeddcfc99fe7ee4d
Examples: fix instancedArray call in WebGPU compute reduce (#31855) Co-authored-by: Samuel Rigaud <rigaud@gmail.com>
[ { "path": "examples/webgpu_compute_reduce.html", "patch": "@@ -936,7 +936,7 @@ <h3 id=\"panel-title\" style=\"flex: 0 0 auto;\">Subgroup Reduction Explanation</h3>\n \t\t\t\t} ) );\n \n \t\t\t\t// Represents array of data as uints in compute shader.\n-\t\t\t\tconst inputStorage = instancedArray( array, 'uin...
2025-09-08T12:51:03
vuejs/vue
24b4640c1f268722f5ab8f03e68e2df897cfbdf6
54e6a121e992f20c03f104533caa4c59e59b1ee7
fix: avoid exposing internal flags on $scopedSlots ref #9443
[ { "path": "src/core/instance/lifecycle.js", "patch": "@@ -233,6 +233,7 @@ export function updateChildComponent (\n (parentVnode.data.scopedSlots && !parentVnode.data.scopedSlots.$stable) ||\n (vm.$scopedSlots !== emptyObject && !vm.$scopedSlots.$stable)\n )\n+\n // Any static slot children from ...
2019-02-06T16:34:37
golang/go
a09c908cc6e63a89a6206eadb12f8e2800326465
6fd52a57f8f88e18247b9741278a126ab65cdb47
internal/syscall/windows: correct some enums and syscall signatures This CL corrects code submitted in CL 741040. Fixes #77402 Change-Id: I1c22c1a9f77028f3c2a8e3905f2ec5b071b5445e GitHub-Last-Rev: 2bfb07310b4707484b5bdce96ad367db567741c4 GitHub-Pull-Request: golang/go#77525 Reviewed-on: https://go-review.googlesourc...
[ { "path": "src/internal/syscall/windows/at_windows_test.go", "patch": "@@ -131,7 +131,7 @@ func makeFileNotReadable(t *testing.T, name string) {\n \t\t\tInheritance: windows.SUB_CONTAINERS_AND_OBJECTS_INHERIT,\n \t\t\tTrustee: windows.TRUSTEE{\n \t\t\t\tTrusteeForm: windows.TRUSTEE_IS_SID,\n-\t\t\t\tN...
2026-02-13T18:19:04
denoland/deno
ffdbefb7331321dd8bc21272ea1631165e310b73
576871afb297c36af300bcb6009bb59a53d8ace4
fix(deploy): correctly handle version lookup (#32489)
[ { "path": "cli/tools/deploy.rs", "patch": "@@ -47,7 +47,7 @@ pub async fn deploy(\n let file = factory\n .file_fetcher()?\n .fetch_bypass_permissions(\n- &registry_url.join(\"@deploy/deno/meta.json\").unwrap(),\n+ &registry_url.join(\"@deno/deploy/meta.json\").unwrap(...
2026-03-05T11:12:30
mrdoob/three.js
22e1b94bebb5b182c65da687abf1d91ea30d9d97
642dd50630c3867638c87812d4034f481aa5f201
SSGINode: New node for screen-space global illumination. (#31839) * SSGINode: New node for screen-space global illumination. * E2E: Add example to exception list. * Example: Improve presets.
[ { "path": "examples/files.json", "patch": "@@ -418,6 +418,7 @@\n \t\t\"webgpu_postprocessing_smaa\",\n \t\t\"webgpu_postprocessing_sobel\",\n \t\t\"webgpu_postprocessing_ssaa\",\n+\t\t\"webgpu_postprocessing_ssgi\",\n \t\t\"webgpu_postprocessing_ssr\",\n \t\t\"webgpu_postprocessing_traa\",\n \t\t\"webgpu_po...
2025-09-08T07:39:31
vuejs/vue
54e6a121e992f20c03f104533caa4c59e59b1ee7
b9de23b1008b52deca7e7df40843e318a42f3f53
fix(types): add Vue.version to types (#9431)
[ { "path": "types/vue.d.ts", "patch": "@@ -122,6 +122,7 @@ export interface VueConstructor<V extends Vue = Vue> {\n observable<T>(obj: T): T;\n \n config: VueConfiguration;\n+ version: string;\n }\n \n export const Vue: VueConstructor;", "additions": 1, "deletions": 0, "language": "Unknown" ...
2019-02-06T03:20:03
denoland/deno
576871afb297c36af300bcb6009bb59a53d8ace4
cc53b5ff396a1d40f3f88712a506395356fb57bc
ci: maybe fix spec test timeout (#32487)
[ { "path": "tests/util/lib/builders.rs", "patch": "@@ -385,9 +385,16 @@ impl TestContext {\n \n fn kill_process(pid: u32) {\n #[cfg(unix)]\n- // SAFETY: We're sending SIGKILL to a process we spawned.\n- unsafe {\n- libc::kill(pid as i32, libc::SIGKILL);\n+ {\n+ // kill the process tree by first ki...
2026-03-05T10:47:07
golang/go
6fd52a57f8f88e18247b9741278a126ab65cdb47
a00f0ed521f32c704b9a5bf8886848829dd13415
crypto: don't overwrite existing GODEBUG settings Some tests set GODEBUG by calling t.Setenv("GODEBUG", "foo=bar"). This overwrites any existing GODEBUG settings, which is undesirable. Instead, append the new setting to any existing GODEBUG settings. As this operation is quite common, add a helper function testenv.Se...
[ { "path": "src/crypto/fips140/fips140_test.go", "patch": "@@ -6,46 +6,30 @@ package fips140\n \n import (\n \t\"internal/godebug\"\n-\t\"os\"\n+\t\"internal/testenv\"\n \t\"testing\"\n )\n \n func TestImmutableGODEBUG(t *testing.T) {\n-\tdefer func(v string) { os.Setenv(\"GODEBUG\", v) }(os.Getenv(\"GODEBUG...
2026-01-07T09:14:43
mrdoob/three.js
b6eab2d3f9dfc53f48f50c8bd9e994b9e7c81f71
f653c76f4b300bb58462b42442d1d0ae8f156f68
Fix url (#31844)
[ { "path": "examples/css3d_mixed.html", "patch": "@@ -86,7 +86,7 @@\n \t\t\t\tiframe.style.width = '1028px';\n \t\t\t\tiframe.style.height = '768px';\n \t\t\t\tiframe.style.border = '0px';\n-\t\t\t\tiframe.src = '/examples/#webgl_animation_keyframes';\n+\t\t\t\tiframe.src = './#webgl_animation_keyframes';\n ...
2025-09-07T20:55:56
vuejs/vue
b9de23b1008b52deca7e7df40843e318a42f3f53
2ef67f868dc4ca95453a091a589bab24e226f045
fix: async component should use render owner as force update context Previously, an async component uses its lexical owner as the force update context. This works when the async component is rendered in a scoped slot because in the past parent components always force update child components with any type of slots. Aft...
[ { "path": "src/core/instance/render.js", "patch": "@@ -51,6 +51,13 @@ export function initRender (vm: Component) {\n }\n }\n \n+export let currentRenderingInstance: Component | null = null\n+\n+// for testing only\n+export function setCurrentRenderingInstance (vm: Component) {\n+ currentRenderingInstance...
2019-02-06T03:16:55