repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
golang/go
b45c59c443a0aac0abed3f35e8e307ec5e1c587b
174c92bd7428b41b9b5b59274a83f387a12261c9
crypto/tls: fix CurvePreferences comment SecP256r1MLKEM768 appeared twice while the second should have been SecP384r1MLKEM1024. Change-Id: I0587b53248d2948fe7a33313871c39fe76251e9c GitHub-Last-Rev: de535819a33347feacfaa32d984ce58d206613d0 GitHub-Pull-Request: golang/go#77551 Reviewed-on: https://go-review.googlesourc...
[ { "path": "src/crypto/tls/common.go", "patch": "@@ -807,7 +807,7 @@ type Config struct {\n \t// or use the GODEBUG=tlsmlkem=0 environment variable.\n \t//\n \t// From Go 1.26, the default includes the [SecP256r1MLKEM768] and\n-\t// [SecP256r1MLKEM768] hybrid post-quantum key exchanges, too. To disable\n+\t/...
2026-02-11T21:00:12
vuejs/vue
edf7df0c837557dd3ea8d7b42ad8d4b21858ade0
17d8bcb60edc14b2c23f5e6cc92f030897092e21
fix(core): dedupe lifecycle hooks during options merge The fix landed in #9199 causes further extended constructors used as mixins to drop options from its inheritance chain, so a different fix is needed.
[ { "path": "src/core/instance/init.js", "patch": "@@ -117,32 +117,12 @@ export function resolveConstructorOptions (Ctor: Class<Component>) {\n function resolveModifiedOptions (Ctor: Class<Component>): ?Object {\n let modified\n const latest = Ctor.options\n- const extended = Ctor.extendOptions\n const...
2019-01-11T22:51:45
denoland/deno
f5f84cd58b7ae4602d82016a0e58cfeff010564e
507336286804bbbc2b76e421e346563af9875253
fix: process level environment variables should take precedence over env files (#32407)
[ { "path": "cli/util/watch_env_tracker.rs", "patch": "@@ -114,6 +114,20 @@ impl WatchEnvTracker {\n let key_os = OsString::from(key);\n let value_os = OsString::from(value);\n \n+ // Process-level env vars should always take precedence over env files.\n+ ...
2026-03-03T09:05:49
mrdoob/three.js
4047f2e8bfe92ed947eebdb532dc38d22b0c3a0e
105a9940bde9b8a6ee9f3fb1210cbd448143ab18
GLSLNodeBuilder: Fix `texelFetch*()` code generation with depth textures. (#31760) * Add a swizzle when sampling a depth texture * Texture parameter can be null * Rollback to using vec4 for depth texture UV
[ { "path": "src/renderers/webgl-fallback/nodes/GLSLNodeBuilder.js", "patch": "@@ -380,7 +380,7 @@ ${ flowData.code }\n \t/**\n \t * Generates the GLSL snippet that reads a single texel from a texture without sampling or filtering.\n \t *\n-\t * @param {Texture} texture - The texture.\n+\t * @param {?Texture}...
2025-08-27T13:13:53
vuejs/vue
743edacdb6fa0bb711e860b68373274f50c8baa5
d21e93139697be2c0a6fdc4ee74d30d2834a729f
fix(core): fix merged twice bug when passing extended constructor to mixins (#9199) fix #9198
[ { "path": "src/core/util/options.js", "patch": "@@ -376,13 +376,13 @@ export function mergeOptions (\n }\n \n if (typeof child === 'function') {\n- child = child.options\n+ child = child.extendOptions\n }\n \n normalizeProps(child, vm)\n normalizeInject(child, vm)\n normalizeDirectives(chi...
2019-01-10T21:10:54
denoland/deno
507336286804bbbc2b76e421e346563af9875253
df9c814ffad815fb22f3be5565c6c70bdbb90385
fix(ext/node): implement KeyObject.equals, fix createCipheriv with KeyObject/null IV (#32409) ## Summary Builds on top of #32267 (must be merged first). Implements `KeyObject.prototype.equals()` and fixes `createCipheriv`/`createDecipheriv` to accept `KeyObject` keys and `null` IVs. Closes #27211 Closes #27295 Close...
[ { "path": "ext/node/polyfills/internal/crypto/cipher.ts", "patch": "@@ -22,6 +22,7 @@ import {\n op_node_decipheriv_decrypt,\n op_node_decipheriv_final,\n op_node_decipheriv_set_aad,\n+ op_node_export_secret_key,\n op_node_private_decrypt,\n op_node_private_encrypt,\n op_node_public_encrypt,\n@...
2026-03-03T09:00:38
golang/go
fbe55325ddce51a7fc099e1efb0d326e7a2e1ed8
20bc1949722c1fd66de5d568f1422845332d18f3
cmd/compile: replace conditions to CCMP instructions on ARM64 This change introduces a new SSA pass that converts conditionals with logical AND into CMP/CCMP instruction sequences on ARM64. Fixes #71268 Change-Id: I3eba9c05b88ed6eb70350d30f6e805e6a4dddbf1 Reviewed-on: https://go-review.googlesource.com/c/go/+/698099...
[ { "path": "src/cmd/compile/internal/ssa/compile.go", "patch": "@@ -501,7 +501,8 @@ var passes = [...]pass{\n \t{name: \"lowered deadcode\", fn: deadcode, required: true},\n \t{name: \"checkLower\", fn: checkLower, required: true},\n \t{name: \"late phielim and copyelim\", fn: copyelim},\n-\t{name: \"tighten...
2025-08-21T17:09:59
vuejs/vue
d21e93139697be2c0a6fdc4ee74d30d2834a729f
cf42f8e870f34e59e19f9cbf7ac6309c3c9c160c
fix(async component): memory leak after synchronous async loading (#9275) fix #9229
[ { "path": "src/core/vdom/helpers/resolve-async-component.js", "patch": "@@ -78,6 +78,8 @@ export function resolveAsyncComponent (\n // (async resolves are shimmed as synchronous during SSR)\n if (!sync) {\n forceRender(true)\n+ } else {\n+ contexts.length = 0\n }\n ...
2019-01-11T20:46:25
mrdoob/three.js
105a9940bde9b8a6ee9f3fb1210cbd448143ab18
a480a68b0c863841355796a1e37eab4187de8ac7
TSL: Show an error message if no stack defined for assign operation (#31756)
[ { "path": "src/nodes/tsl/TSLCore.js", "patch": "@@ -59,7 +59,15 @@ Node.prototype.assign = function ( ...params ) {\n \n \tif ( this.isStackNode !== true ) {\n \n-\t\tcurrentStack.assign( this, ...params );\n+\t\tif ( currentStack !== null ) {\n+\n+\t\t\tcurrentStack.assign( this, ...params );\n+\n+\t\t} el...
2025-08-26T20:36:38
denoland/deno
df9c814ffad815fb22f3be5565c6c70bdbb90385
7f6915423cd8b642ffc8d4fecf4f64ff0b6dd7f3
fix(compile): store self extracting dir in hidden dir beside executable (#32329)
[ { "path": "cli/rt/binary.rs", "patch": "@@ -179,7 +179,7 @@ fn choose_and_create_extraction_dir(\n \n // try next to the executable first\n if let Some(exe_dir) = current_exe.parent() {\n- let dir = exe_dir.join(format!(\"{}.fs\", exe_name)).join(hash_str);\n+ let dir = exe_dir.join(format!(\".{}\...
2026-03-03T08:50:08
golang/go
20bc1949722c1fd66de5d568f1422845332d18f3
b40f0b118014f8dbc25e8ef4de82ccf78410903f
cmd/link: handle runtime.type based on size, not GOOS When handling type descriptors, we add some space at the start to ensure that offset 0 does not refer to a valid type descriptor. AIX has an initial runtime.types symbol with a non-zero size, so we used that instead of adding some space. In some cases Darwin also ...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -1498,7 +1498,7 @@ func fixZeroSizedSymbols(ctxt *Link) {\n \tdefineRuntimeTypes := func() {\n \t\ttypes := ldr.CreateSymForUpdate(\"runtime.types\", 0)\n \t\ttypes.SetType(sym.STYPE)\n-\t\ttypes.SetSize(8)\n+\t\ttypes.SetSize(int64(ctxt.Arch.PtrSiz...
2026-02-12T05:23:49
vuejs/vue
17d8bcb60edc14b2c23f5e6cc92f030897092e21
7d9cfebe39ffd531e0948668e688474b276cdec1
fix(ssr): should not render invalid numeric style values Reverts part of 7d9cfebe - browsers only auto append units to numbers when in quirksmode, so in standard mode, numbers set to style properties that require units are invalid and should not be rendered.
[ { "path": "src/platforms/web/server/modules/style.js", "patch": "@@ -21,18 +21,11 @@ export function genStyle (style: Object): string {\n }\n \n function normalizeValue(key: string, value: any): string {\n- if (typeof value === 'string') {\n+ if (\n+ typeof value === 'string' ||\n+ (typeof value ===...
2019-01-11T19:54:10
mrdoob/three.js
a480a68b0c863841355796a1e37eab4187de8ac7
9c5ca9b0e36b11dddc96b3c094cb5dd86361745a
Bindings: Fix caching of bindings. (#31755)
[ { "path": "src/renderers/common/Bindings.js", "patch": "@@ -267,6 +267,8 @@ class Bindings extends DataMap {\n \n \t\t\t\t\t\tneedsBindingsUpdate = true;\n \n+\t\t\t\t\t\tcacheBindings = false;\n+\n \t\t\t\t\t}\n \n \t\t\t\t}", "additions": 2, "deletions": 0, "language": "JavaScript" } ]
2025-08-26T20:11:55
golang/go
54c46328ccb9d559fa21c09fd8e2dff22a99c72c
683aa8893a5e2e99ef48fa4502b507a0fe92acc8
internal/poll: avoid race between execIO and DisassociateIOCP This is a step towards deferring adding the handle to IOCP until the first IO operation. There is a small race windows between execIO and DisassociateIOCP where execIO checks if the fd is disassociated before passing the operation to the OS. DisassociateIO...
[ { "path": "src/internal/poll/export_test.go", "patch": "@@ -27,7 +27,7 @@ func (mu *XFDMutex) Decref() bool {\n }\n \n func (mu *XFDMutex) RWLock(read bool) bool {\n-\treturn mu.rwlock(read)\n+\treturn mu.rwlock(read, waitLock)\n }\n \n func (mu *XFDMutex) RWUnlock(read bool) bool {", "additions": 1, ...
2026-02-02T09:42:28
vuejs/vue
7d9cfebe39ffd531e0948668e688474b276cdec1
fe2b27ffb98932ec8e822bd88b4de1666810521c
fix(ssr): properly handle invalid and numeric style properties Ignores values that are not string or numbers, and append px as default unit to appropriate properties. There will still be certain cases where the user simply provides an invalid string value to a property which will be too costly to detect (it's possibl...
[ { "path": "src/platforms/web/server/modules/style.js", "patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-import { escape } from '../util'\n+import { escape, noUnitNumericStyleProps } from '../util'\n import { hyphenate } from 'shared/util'\n import { getStyle } from 'web/util/style'\n \n@@ -11,15 +11,34 @@ expor...
2019-01-11T16:07:40
denoland/deno
7f6915423cd8b642ffc8d4fecf4f64ff0b6dd7f3
f7bcc9694483e4869d39c318aa25dfdb90ddd912
fix(ext/crypto): handle wrong algorithm in subtle.importKey without panicking (#32410) ## Summary - Fixes #30243. Passing a valid PKCS#8 DER key with the wrong algorithm (e.g., an RSA key imported as ECDSA) to `crypto.subtle.importKey` caused a panic due to an `.unwrap()` on a `try_into()` conversion in `import_key_ec...
[ { "path": "ext/crypto/import_key.rs", "patch": "@@ -686,7 +686,7 @@ fn import_key_ec(\n .parameters\n .ok_or(ImportKeyError::MalformedParameters)?\n .try_into()\n- .unwrap();\n+ .map_err(|_| ImportKeyError::MalformedParameters)?;\n \n let pk_named_curve = match na...
2026-03-03T08:33:14
golang/go
456d0fe4092cb794a02027e178486bc31f05a8e0
a430bc1bd73ab9a7d4a0c740add9760914588396
cmd/link: correct libc dynamic linker path Ref: https://github.com/riscv-non-isa/riscv-elf-psabi-doc/issues/114 Fixes #77209 Change-Id: I8b575a95ad4e6a7e792514d7fcf9497599c1e404 Reviewed-on: https://go-review.googlesource.com/c/go/+/737180 Reviewed-by: Pengcheng Wang <wangpengcheng.pp@bytedance.com> Reviewed-by: Qui...
[ { "path": "src/cmd/link/internal/riscv64/obj.go", "patch": "@@ -38,7 +38,8 @@ func Init() (*sys.Arch, ld.Arch) {\n \t\tMachoreloc1: machoreloc1,\n \n \t\tELF: ld.ELFArch{\n-\t\t\tLinuxdynld: \"/lib/ld.so.1\",\n+\t\t\tLinuxdynld: \"/lib/ld-linux-riscv64-lp64d.so.1\",\n+\t\t\tLinuxdynldMusl: \"/lib/ld-mus...
2026-01-17T04:19:13
mrdoob/three.js
168635098a722adb83b2e89a12e75c291f7e78f8
bcbf0311db1971066062e93d7743045cd55442cb
Sampler: Fix dispose. (#31751)
[ { "path": "src/renderers/common/Sampler.js", "patch": "@@ -18,17 +18,6 @@ class Sampler extends Binding {\n \n \t\tsuper( name );\n \n-\t\t/**\n-\t\t * This function is called when the texture is disposed.\n-\t\t * @type {function}\n-\t\t * @private\n-\t\t */\n-\t\tthis._onDisposeTexture = () => {\n-\n-\t\t...
2025-08-26T19:09:02
vuejs/vue
537161779ea329c1d0a993997555f1c692b8cac1
c50bbde41c4a1868a8a0b33df3238346840bd37c
fix(core): fix merged twice bug when passing extended constructor to mixins (#9199) fix #9198
[ { "path": "src/core/util/options.js", "patch": "@@ -382,13 +382,13 @@ export function mergeOptions (\n }\n \n if (typeof child === 'function') {\n- child = child.options\n+ child = child.extendOptions\n }\n \n normalizeProps(child, vm)\n normalizeInject(child, vm)\n normalizeDirectives(chi...
2019-01-10T21:10:54
denoland/deno
f7bcc9694483e4869d39c318aa25dfdb90ddd912
9becb837c6a425124d4423985a415c5c7404e706
fix(ext/node): support Ed25519, X25519, and P-521 keys in X509Certificate.publicKey (#32267) ## Summary - Fixes `X509Certificate.prototype.publicKey` throwing "unsupported x509 public key type" for **Ed25519** and **X25519** certificates - Fixes `X509Certificate.prototype.publicKey` throwing "unsupported ec named cur...
[ { "path": "Cargo.lock", "patch": "@@ -2724,6 +2724,7 @@ dependencies = [\n \"p224\",\n \"p256\",\n \"p384\",\n+ \"p521\",\n \"pbkdf2\",\n \"pkcs8\",\n \"rand 0.8.5\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "Cargo.toml", "patch": "@@ -398,7 +398,7 @...
2026-03-02T16:37:47
mrdoob/three.js
d47d1d8d4e58e5e2b737ba2ea61777dee178de13
4fdb25f556538b5997d61950040f078741b77e7b
Docs: fix null params (#31742) * docs: fix null params * fix all nullable unions --------- Co-authored-by: Samuel Rigaud <rigaud@gmail.com>
[ { "path": "examples/jsm/controls/ArcballControls.js", "patch": "@@ -1315,7 +1315,7 @@ class ArcballControls extends Controls {\n \t *\n \t * @param {'PAN'|'ROTATE'|'ZOOM'|'FOV'} operation - The operation to be performed ('PAN', 'ROTATE', 'ZOOM', 'FOV').\n \t * @param {0|1|2|'WHEEL'} mouse - A mouse button (...
2025-08-25T20:33:45
golang/go
97c48fd93db95f56849395cf8c7447232d56607a
d3ddc4854429185e6e06ca1f7628bb790404abb5
cmd/compile: move likely used values into registers before entering loop When we are about to enter a loop, we try to put values that will be used soon into registers, so we put them into registers once outside the loop instead of N times inside the loop. But we currently don't kick out values we won't use for a whil...
[ { "path": "src/cmd/compile/internal/ssa/func_test.go", "patch": "@@ -260,6 +260,11 @@ func Eq(cond, sub, alt string) ctrl {\n \treturn ctrl{BlockAMD64EQ, cond, []string{sub, alt}}\n }\n \n+// Lt specifies a BlockAMD64LT.\n+func Lt(cond, yes, no string) ctrl {\n+\treturn ctrl{BlockAMD64LT, cond, []string{yes...
2026-02-09T23:38:55
vuejs/vue
b32c4b693535c35ae10742eb3351cbc123b15941
d855027741d4f602cc9f507c18ede75c3e7ce84a
fix: ensure proxied normal slot uses correct key
[ { "path": "src/core/vdom/helpers/normalize-scoped-slots.js", "patch": "@@ -19,7 +19,7 @@ export function normalizeScopedSlots (\n }\n // expose normal slots on scopedSlots\n for (const key in normalSlots) {\n- res[key] = () => normalSlots[key]\n+ res[key] = proxyNormalSlot(normalSlots, key)\n ...
2019-01-10T17:32:06
mrdoob/three.js
4fdb25f556538b5997d61950040f078741b77e7b
65bfbd8e51db937ecd5d4be7f2d93319f6e5ee97
hashBlur: fix repeats arg (#31741) Co-authored-by: Samuel Rigaud <rigaud@gmail.com>
[ { "path": "examples/jsm/tsl/display/hashBlur.js", "patch": "@@ -24,7 +24,7 @@ export const hashBlur = /*#__PURE__*/ Fn( ( [ textureNode, bluramount = float( 0\n \n \ttextureNode = convertToTexture( textureNode );\n \n-\tconst repeats = nodeObject( options.size ) || float( 45 );\n+\tconst repeats = nodeObjec...
2025-08-25T17:28:38
denoland/deno
9becb837c6a425124d4423985a415c5c7404e706
5fb8a4d498c07e0bccef1f5fcfade14501ba45a3
fix(node/crypto): handle empty input in decipher final with auto_pad=false (#31958) ## Summary Fixes a panic in `node:crypto` when using `createDecipheriv` with `setAutoPadding(false)` (denoland/deno#31957). Two cases caused panics in `DecipherContext::final`: 1. **Empty input** — `GenericArray::from_slice` panicked...
[ { "path": "ext/node_crypto/cipher.rs", "patch": "@@ -752,10 +752,13 @@ impl Decipher {\n Ok(())\n }\n (Aes128Cbc(mut decryptor), false) => {\n- decryptor.decrypt_block_b2b_mut(\n- GenericArray::from_slice(input),\n- GenericArray::from_mut_slice(output),\n- ...
2026-03-02T16:33:46
golang/go
86f7959aa6e4cb9a0ac67ccd84c5586701583ca4
0f550bcfc3ad8525331d535d1f1e844d86472cbe
runtime/pprof: fix missing Profile docs CL 688335 accidentally introduced a blank line between the Profile doc comment and the type definition, causing the entire doc to get dropped. Change-Id: I97b1c0e57d142d7caea6e543a0138ed6dcd1c3fe Reviewed-on: https://go-review.googlesource.com/c/go/+/743660 LUCI-TryBot-Result: ...
[ { "path": "src/runtime/pprof/pprof.go", "patch": "@@ -171,7 +171,6 @@ import (\n // holds a lock for 1s while 5 other goroutines are waiting for the entire\n // second to acquire the lock, its unlock call stack will report 5s of\n // contention.\n-\n type Profile struct {\n \tname string\n \tmu sync.Mut...
2026-02-10T00:17:12
vuejs/vue
8b382b3efb14986e9ea5213d0b57c244b70ae0e7
5fb23d4e2971480d14fbee0146e3416a07bc0b9f
fix: allow _ in watch paths (element compat)
[ { "path": "src/core/util/lang.js", "patch": "@@ -30,7 +30,7 @@ export function def (obj: Object, key: string, val: any, enumerable?: boolean) {\n /**\n * Parse simple path.\n */\n-const bailRE = new RegExp(`[^${unicodeLetters}.$]`)\n+const bailRE = new RegExp(`[^${unicodeLetters}.$_]`)\n export function p...
2019-01-10T04:46:38
mrdoob/three.js
65bfbd8e51db937ecd5d4be7f2d93319f6e5ee97
a22c52faee0cb74f77eb277d1be27a7b4bdc83ef
fix-lint-issues (#31738) Co-authored-by: Samuel Rigaud <rigaud@gmail.com>
[ { "path": "examples/jsm/loaders/EXRLoader.js", "patch": "@@ -2515,7 +2515,7 @@ class EXRLoader extends DataTextureLoader {\n \t\t\t\t\t\tEXRDecoder.outputChannels = 1;\n \t\t\t\t\t\tEXRDecoder.decodeChannels = { R: 0 };\n \n-\t\t\t\t\t} else {\n+\t\t\t\t\t} else {\n \n \t\t\t\t\t\tinvalidOutput = true;\n \...
2025-08-25T12:29:15
denoland/deno
5fb8a4d498c07e0bccef1f5fcfade14501ba45a3
968baf725a6d28cd739fd61b1f447fe3de89b622
fix(npm): peerDependency resolution leading to multiple versions being installed + hanging (#32358) Essentially, this PR rewrites our dependency resolution code to use a two-phase approach, which fixes duplicate peer dependencies or hanging installation. Peer deps were resolved inline during BFS traversal, making res...
[ { "path": "tests/specs/npm/info_peer_deps/main_info.out", "patch": "@@ -4,11 +4,11 @@ dependencies: 6 unique\n size: [WILDCARD]\n \n file:///[WILDCARD]/main.ts (171B)\n-├─┬ npm:/@denotest/peer-dep-test-child@1.0.0_@denotest+peer-dep-test-peer@1.0.0 ([WILDCARD])\n+├─┬ npm:/@denotest/peer-dep-test-child@1.0.0...
2026-03-02T15:33:10
golang/go
3048de9d6e5693e09c9885ec8b4673dbcf72c1e6
65ac2afd4b22fb29aa8cbd6a1d26ad7bb2ceeca4
io/fs: document that Sub does not check for existence Also recommend os.Root for constraining access. Fixes #77447 Change-Id: Id8d178163438e9264fe19ed37ba03e1ee5d0bd35 Reviewed-on: https://go-review.googlesource.com/c/go/+/742284 Reviewed-by: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@...
[ { "path": "src/io/fs/sub.go", "patch": "@@ -24,14 +24,16 @@ type SubFS interface {\n // Otherwise, Sub returns a new [FS] implementation sub that,\n // in effect, implements sub.Open(name) as fsys.Open(path.Join(dir, name)).\n // The implementation also translates calls to ReadDir, ReadFile,\n-// ReadLink, ...
2026-02-06T21:06:09
vuejs/vue
5fb23d4e2971480d14fbee0146e3416a07bc0b9f
4c2c6f03dc617e0b7f8ffee7539876d131506cbf
fix: ensure only nromalize a scoped slot when it is present
[ { "path": "src/core/vdom/helpers/normalize-scoped-slots.js", "patch": "@@ -12,7 +12,9 @@ export function normalizeScopedSlots (\n } else {\n res = {}\n for (const key in slots) {\n- res[key] = normalizeScopedSlot(slots[key])\n+ if (slots[key]) {\n+ res[key] = normalizeScopedSlot(s...
2019-01-10T03:47:11
mrdoob/three.js
112421f54d149d50674a4d684c8b7369a86b816f
503b410f3998ed2ab9f629e5df2ef08c973d04a7
fix types (#31733) Co-authored-by: Samuel Rigaud <rigaud@gmail.com>
[ { "path": "examples/jsm/loaders/HDRCubeTextureLoader.js", "patch": "@@ -148,7 +148,7 @@ class HDRCubeTextureLoader extends Loader {\n \t * Sets the texture type.\n \t *\n * @param {(HalfFloatType|FloatType)} value - The texture type to set.\n- * @return {HDRLoader} A reference to this loader.\n+ ...
2025-08-25T08:19:49
denoland/deno
968baf725a6d28cd739fd61b1f447fe3de89b622
826878191feedbf83147bbf6726a8e2984704545
fix(ext/node): support DER-encoded keys in publicEncrypt/privateDecrypt (#32291) ## Summary - `publicEncrypt`, `privateDecrypt`, and `privateEncrypt` only accepted PEM-encoded (text) keys. When passed DER (binary) encoded keys, they failed with `invalid utf-8 sequence of 1 bytes from index 1` because the code tried t...
[ { "path": "ext/node_crypto/lib.rs", "patch": "@@ -33,6 +33,8 @@ use rsa::Oaep;\n use rsa::Pkcs1v15Encrypt;\n use rsa::RsaPrivateKey;\n use rsa::RsaPublicKey;\n+use rsa::pkcs1::DecodeRsaPrivateKey;\n+use rsa::pkcs1::DecodeRsaPublicKey;\n use rsa::pkcs8::DecodePrivateKey;\n use rsa::pkcs8::DecodePublicKey;\n ...
2026-03-02T15:17:41
vuejs/vue
4c2c6f03dc617e0b7f8ffee7539876d131506cbf
8eea6b07c415ac5c7e3a401265e6390f0e18e5b9
build: fix dev:cjs script
[ { "path": "package.json", "patch": "@@ -15,7 +15,7 @@\n \"sideEffects\": false,\n \"scripts\": {\n \"dev\": \"rollup -w -c scripts/config.js --environment TARGET:web-full-dev\",\n- \"dev:cjs\": \"rollup -w -c scripts/config.js --environment TARGET:web-runtime-cjs\",\n+ \"dev:cjs\": \"rollup -w...
2019-01-10T03:26:54
mrdoob/three.js
6b1b60284f364b681c3a8f5bd2215bc728fd4f5a
fd6a1bea903c1f86d4b04f8adac5468595f38397
Fix typo in textureHeight property (#31725)
[ { "path": "examples/webgl_mirror.html", "patch": "@@ -91,7 +91,7 @@\n \t\t\t\tgroundMirror = new Reflector( geometry, {\n \t\t\t\t\tclipBias: 0.003,\n \t\t\t\t\ttextureWidth: size.width,\n-\t\t\t\t\ttextureHeight: size.heignt,\n+\t\t\t\t\ttextureHeight: size.height,\n \t\t\t\t\tcolor: 0xb5b5b5\n \t\t\t\t} )...
2025-08-23T23:57:06
denoland/deno
8c7409882b13fa20ca1a9739d6e4605c2d464241
9a246baac9cb8c2bb4422e18fcea8b1fd880d7ef
fix(test): dedupe discovered workspace test modules (#32380) This PR should address #25949. I fixed duplicate test module execution caused by overlapping discovery entries (e.g., workspace + `deno test .`). IMHO this is a suboptimal but safer fix. The cleaner solution would be to make discovery non-overlapping at me...
[ { "path": "cli/tools/test/mod.rs", "patch": "@@ -129,6 +129,10 @@ pub enum TestMode {\n }\n \n impl TestMode {\n+ fn union(self, other: Self) -> Self {\n+ if self == other { self } else { Self::Both }\n+ }\n+\n /// Returns `true` if the test mode indicates that code snippet extraction is\n /// need...
2026-03-02T14:36:29
mrdoob/three.js
fd6a1bea903c1f86d4b04f8adac5468595f38397
c0625c41bd47996d124dbf75ecd13515dbbccfa8
Examples: Add `webgpu_multiple_elements` (#31724) * fix/improve limits check * add `webgpu_multiple_elements` * Update webgpu_multiple_elements.html * Update webgpu_multiple_elements.jpg
[ { "path": "examples/files.json", "patch": "@@ -381,6 +381,7 @@\n \t\t\"webgpu_morphtargets\",\n \t\t\"webgpu_morphtargets_face\",\n \t\t\"webgpu_mrt\",\n+\t\t\"webgpu_multiple_elements\",\n \t\t\"webgpu_mrt_mask\",\n \t\t\"webgpu_multiple_rendertargets\",\n \t\t\"webgpu_multiple_rendertargets_readback\",", ...
2025-08-23T19:19:22
vuejs/vue
02f897a4bc57fec89301918ed7c3db0c423deaae
d2902ca8ec5fd184fe81479fea1318553fdb8323
chore: fix flow
[ { "path": "src/core/vdom/create-functional-component.js", "patch": "@@ -51,12 +51,12 @@ export function FunctionalRenderContext (\n this.injections = resolveInject(options.inject, parent)\n this.slots = () => resolveSlots(children, parent)\n \n- Object.defineProperty(this, 'scopedSlots', {\n+ Object.d...
2019-01-09T22:41:37
denoland/deno
9a246baac9cb8c2bb4422e18fcea8b1fd880d7ef
e7269534ae4fe4d08258d562738d0cb1aa275733
fix: fix some stack frame dimming, and make the console log more aligned with cli formatting (#32399)
[ { "path": "ext/web/01_console.js", "patch": "@@ -369,6 +369,12 @@ const kArrayExtrasType = 2;\n const coreModuleRegExp = new SafeRegExp(\n /^ {4}at (?:[^/\\\\(]+ \\(|)node:(.+):\\d+:\\d+\\)?$/,\n );\n+const extModuleRegExp = new SafeRegExp(\n+ /^ {4}at (?:[^/\\\\(]+ \\(|)ext:.+:\\d+:\\d+\\)?$/,\n+);\n+co...
2026-03-02T14:21:46
golang/go
ad170e18540be19bd6db012ff221c01e8c9745e9
9fd5a5fa7d9d629ded8d4685dcc5984268258edb
cmd/link: make TestTypePlacement work on AIX The existing code was just wrong. On AIX the go.type section is folded into the .text section (when internally linking), or the .data section (when externally linking). It follows that the data section adjustment is useless when internally linking, which is currently what h...
[ { "path": "src/cmd/link/link_test.go", "patch": "@@ -2416,20 +2416,37 @@ func TestTypePlacement(t *testing.T) {\n \tcase xf != nil:\n \t\tdefer xf.Close()\n \n-\t\tfor _, sec := range xf.Sections {\n-\t\t\tif sec.Name == \".go.type\" {\n-\t\t\t\ttypeStart = sec.VirtualAddress\n-\t\t\t\ttypeEnd = sec.Virtual...
2026-01-31T03:15:31
vuejs/vue
d278da20a008a61ed8d5ec9d92524eb5dc9630cf
bbfeb039f37d8d040bde318fe904761c6bd9386f
test: fix LRU upgrade
[ { "path": "test/ssr/ssr-bundle-render.spec.js", "patch": "@@ -195,7 +195,7 @@ function createAssertions (runInNewContext) {\n })\n \n it('render with cache (nested)', done => {\n- const cache = LRU({ maxAge: Infinity })\n+ const cache = new LRU({ maxAge: Infinity })\n spyOn(cache, 'get').and.c...
2019-01-07T17:15:15
mrdoob/three.js
c0625c41bd47996d124dbf75ecd13515dbbccfa8
36c9890a51885da017ee0dfea3052f09c108f9ba
KTX2Loader: Fix WebGPU feature detection. (#31721)
[ { "path": "examples/jsm/loaders/KTX2Loader.js", "patch": "@@ -191,10 +191,10 @@ class KTX2Loader extends Loader {\n \t\tthis.workerConfig = {\n \t\t\tastcSupported: await renderer.hasFeatureAsync( 'texture-compression-astc' ),\n \t\t\tastcHDRSupported: false, // https://github.com/gpuweb/gpuweb/issues/3856\...
2025-08-23T17:45:11
denoland/deno
e7269534ae4fe4d08258d562738d0cb1aa275733
70497bbf6a7e673b7f9f89b7a112c488fd20e11d
fix(ext/node): make `execPath` named export a real string (#32396) ## Summary - The named ESM export `execPath` from `node:process` was a frozen object with `String.prototype` that pretended to be a string but had `typeof === "object"`. This broke libraries like execa that check `typeof execPath === "string"`, causin...
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -480,20 +480,7 @@ function uncaughtExceptionHandler(err: any, origin: string) {\n process.emit(\"uncaughtException\", err, origin);\n }\n \n-export let execPath: string = Object.freeze({\n- __proto__: String.prototype,\n- toString() {\n- execPat...
2026-03-02T14:15:58
golang/go
9fd5a5fa7d9d629ded8d4685dcc5984268258edb
4fe1203111eeda8a38af4f2a4208e4d4de720c0d
cmd/link: use correct alignment for type descriptors on AIX CL 724261 changed the linker to put all type descriptors that are used for typelinks in a single list. This caused trouble on AIX when linking externally, because the AIX linker aligns symbols individually, rather than honoring the layout of the object file g...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -1469,6 +1469,8 @@ func checkSectSize(sect *sym.Section) {\n \n // fixZeroSizedSymbols gives a few special symbols with zero size some space.\n func fixZeroSizedSymbols(ctxt *Link) {\n+\tldr := ctxt.loader\n+\n \t// The values in moduledata are fill...
2026-01-31T03:06:19
mrdoob/three.js
36c9890a51885da017ee0dfea3052f09c108f9ba
5011da1ae6b2d4fc9f024d40b447ee150a86dc53
TSL: Refine `pow2/3/4` implementation and remove the polyfill for `pow` on Windows (#31720) * Change pow2, pow3, pow4 implementations, remove polyfill * Address non-integer powers of negative bases * E2E: Fix screenshot
[ { "path": "examples/webgpu_tsl_galaxy.html", "patch": "@@ -68,7 +68,7 @@\n \t\t\t\t\tsin( angle )\n \t\t\t\t).mul( radius );\n \n-\t\t\t\tconst randomOffset = range( vec3( - 1 ), vec3( 1 ) ).pow( 3 ).mul( radiusRatio ).add( 0.2 );\n+\t\t\t\tconst randomOffset = range( vec3( - 1 ), vec3( 1 ) ).pow3().mul( ra...
2025-08-23T14:23:18
denoland/deno
70497bbf6a7e673b7f9f89b7a112c488fd20e11d
fd9def342d39cb660de815f760745ea0aacda4e5
fix(ext/node): make `setAutoPadding(false)` a no-op for GCM ciphers (#32290) ## Summary - GCM is a stream cipher mode that doesn't use block padding. In Node.js, `setAutoPadding()` is a no-op for GCM modes, but Deno was throwing `setAutoPadding(false) not supported for Aes128Gcm/Aes256Gcm yet` when called on GCM deci...
[ { "path": "ext/node_crypto/cipher.rs", "patch": "@@ -505,12 +505,6 @@ pub enum DecipherError {\n #[error(\"Failed to authenticate data\")]\n DataAuthenticationFailed,\n #[class(type)]\n- #[error(\"setAutoPadding(false) not supported for Aes128Gcm yet\")]\n- SetAutoPaddingFalseAes128GcmUnsupported,\n...
2026-03-02T13:54:58
golang/go
4fe1203111eeda8a38af4f2a4208e4d4de720c0d
cbb37e310e2edd7148c8501567e190746e6d98d2
cmd/link: align covctrs symbol If we start the covctrs blob at an odd alignment, then covctrs will not be correctly aligned. Each individual entry is aligned properly, but the start marker may be before any padding inserted to enforce that alignment. Fixes #58936 Change-Id: I802fbe40eacfa5a3c8c4864e078b0e078da956d5 ...
[ { "path": "src/cmd/cover/cover_test.go", "patch": "@@ -638,3 +638,12 @@ func main() {\n \t\tt.Errorf(\"unexpected success; want failure due to newline in file path\")\n \t}\n }\n+\n+func TestAlignment(t *testing.T) {\n+\t// Test that cover data structures are aligned appropriately. See issue 58936.\n+\ttest...
2026-01-02T21:42:00
mrdoob/three.js
d40e7529cb2b45808b7caca6cce6a8f61b5cebd1
a3c3c2646af6271b06e5e0535bbdd52eb4d77114
TSL: Add texture offset feature (#31715) * TextureNode: Add offset node * E2E: Fix screenshot * Revert "E2E: Fix screenshot" This reverts commit bdf37a2f3d52275218371f05aead38b8db054a1d.
[ { "path": "src/nodes/accessors/Texture3DNode.js", "patch": "@@ -157,6 +157,19 @@ class Texture3DNode extends TextureNode {\n \n \t}\n \n+\t/**\n+\t * Generates the offset code snippet.\n+\t *\n+\t * @param {NodeBuilder} builder - The current node builder.\n+\t * @param {Node} offsetNode - The offset node to...
2025-08-23T04:01:47
denoland/deno
fd9def342d39cb660de815f760745ea0aacda4e5
84f7a15a880d296faa7a71b108579159952197f8
fix(node): support ECDSA with secp256k1 in `node:crypto` (#32390) ## Summary - Adds secp256k1 ECDSA support to `node:crypto` key generation, signing, verification, and key import/export (DER, PEM, JWK) - Adds `Secp256k1` variant to `EcPrivateKey`/`EcPublicKey` enums using the existing `k256` crate - Enables `ecdh`, `...
[ { "path": "Cargo.toml", "patch": "@@ -391,7 +391,7 @@ ed25519-dalek = \"2.1.1\"\n ed448-goldilocks = \"0.8.3\"\n elliptic-curve = { version = \"0.13.4\", features = [\"alloc\", \"arithmetic\", \"ecdh\", \"std\", \"pem\", \"jwk\"] }\n hkdf = \"0.12.3\"\n-k256 = \"0.13.1\"\n+k256 = { version = \"0.13.1\", fea...
2026-03-02T13:21:03
vuejs/vue
ce35159d6d6e9c3607bd3232e386b5b994d0ec49
c7c13c2a156269d29fd9c9f8f6a3e53a2f2cac3d
chore: fix types
[ { "path": "src/core/vdom/helpers/normalize-scoped-slots.js", "patch": "@@ -2,7 +2,7 @@\n \n import { emptyObject } from 'core/util/index'\n \n-export function normalizeScopedSlots (slots: { [key: string]: Function }) {\n+export function normalizeScopedSlots (slots: { [key: string]: Function } | void): any {...
2018-12-26T22:22:32
golang/go
cbb37e310e2edd7148c8501567e190746e6d98d2
d1ec0ecec956eb10c3daf40160193daf407c7614
net/http: fix WaitGroup race in TestTransportNoReuseAfterEarlyResponse The remaining race reported in go.dev/issue/66519 is that it's possible for copying.Wait to start running before all copying.Add calls complete. It happens infrequently as is, but padding both Wait and Add calls with a 100 ms sleep makes it highly ...
[ { "path": "src/net/http/client_test.go", "patch": "@@ -438,7 +438,6 @@ func testRedirectsByMethod(t *testing.T, mode testMode, method string, table []r\n \t\treq, _ := NewRequest(method, ts.URL+tt.suffix, strings.NewReader(content))\n \t\treq.GetBody = func() (io.ReadCloser, error) { return io.NopCloser(str...
2026-01-24T18:03:14
mrdoob/three.js
a3c3c2646af6271b06e5e0535bbdd52eb4d77114
a656cbd8021ce1ce8670b7964c4962dccd01ede8
TSL: Fixed persistent reference of the first stack (#31717)
[ { "path": "src/nodes/core/NodeBuilder.js", "patch": "@@ -1575,7 +1575,9 @@ class NodeBuilder {\n \n \t\tthis.stack = stack( this.stack );\n \n-\t\tthis.stacks.push( getCurrentStack() || this.stack );\n+\t\tconst previousStack = getCurrentStack();\n+\n+\t\tthis.stacks.push( previousStack );\n \t\tsetCurrentS...
2025-08-23T03:23:31
denoland/deno
84f7a15a880d296faa7a71b108579159952197f8
4f22dcc1a0fbbd38474bd3774202ec3b7d47b3b2
fix(coverage): warn instead of erroring when source files are missing (#32398) When a source file is deleted after coverage was collected (e.g. a build artifact cleaned up before the report runs), `deno coverage` now prints a warning and skips the file instead of failing the entire report. Closes https://github.com/d...
[ { "path": "cli/tools/coverage/mod.rs", "patch": "@@ -620,7 +620,7 @@ pub fn cover_files(\n };\n let get_message = |specifier: &ModuleSpecifier| -> String {\n format!(\n- \"Failed to fetch \\\"{}\\\" from cache. Before generating coverage report, run `deno test --coverage` to ensure consistent s...
2026-03-02T13:20:28
vuejs/vue
c7c13c2a156269d29fd9c9f8f6a3e53a2f2cac3d
d747469e1ae26190d364e5cc9c8112d3d865a0b9
fix(scoped-slots): ensure $scopedSlots calls always return Arrays Also allow render functions to return an Array of a single element. Close #8056
[ { "path": "src/core/instance/render-helpers/resolve-slots.js", "patch": "@@ -55,10 +55,11 @@ export function resolveScopedSlots (\n ): { [key: string]: Function } {\n res = res || {}\n for (let i = 0; i < fns.length; i++) {\n- if (Array.isArray(fns[i])) {\n- resolveScopedSlots(fns[i], res)\n+ ...
2018-12-26T22:17:30
mrdoob/three.js
3e184cdd14494f4cea1d0faeab1046438cc5a06d
0806d8d3732039c4716f3ff76dceee79ead3f5c8
Examples: Add WebGPU KTX2 test demo. (#31714) * Examples: Add WebGPU KTX2 test demo. * E2E: Fix screenshot.
[ { "path": "examples/files.json", "patch": "@@ -358,6 +358,7 @@\n \t\t\"webgpu_loader_gltf_sheen\",\n \t\t\"webgpu_loader_gltf_transmission\",\n \t\t\"webgpu_loader_materialx\",\n+\t\t\"webgpu_loader_texture_ktx2\",\n \t\t\"webgpu_materials\",\n \t\t\"webgpu_materials_alphahash\",\n \t\t\"webgpu_materials_ar...
2025-08-22T09:25:46
golang/go
228c0468d5a0eefddbfd890565ee8253bd70346e
f58a6a8e34d7db14871f2cf9bfd657e44a5c8b7b
internal/poll: optimize socket completion modes FILE_SKIP_SET_EVENT_ON_HANDLE is always safe to use. FILE_SKIP_COMPLETION_PORT_ON_SUCCESS is safe as long as the socket is provided by an IFS provider. While here, stop using the kindFileNet type, it doesn't provide any value. Fixes #77448 Change-Id: Ib3dc0d68c7ff57b6...
[ { "path": "src/internal/poll/export_windows_test.go", "patch": "@@ -0,0 +1,11 @@\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+// Export guts for testing on windows.\n+\n+package poll\...
2026-02-05T12:37:08
denoland/deno
4f22dcc1a0fbbd38474bd3774202ec3b7d47b3b2
b9f68895173ac6722006b38ab72268068cd4f284
fix(ext/node): use internal compileFunction binding in CJS wrap (#32373) Closes #32372 This PR replaces wrapping a CJS module into a function [here](https://github.com/denoland/deno/blob/0d2ef7c3b608350bda07279e845d8cabdedfac9e/ext/node/polyfills/01_require.js#L965-L968) with V8's [CompileFunction](https://v8.github....
[ { "path": "ext/node/lib.rs", "patch": "@@ -173,7 +173,6 @@ deno_core::extension!(deno_node,\n deps = [ deno_io, deno_fs ],\n parameters = [TInNpmPackageChecker: InNpmPackageChecker, TNpmPackageFolderResolver: NpmPackageFolderResolver, TSys: ExtNodeSys],\n ops = [\n- ops::assert::op_node_get_error_s...
2026-03-02T11:38:24
mrdoob/three.js
8c8479d48b62fc86329975591eb5966fd0b13221
7f848acd7dc54062c50fca749211ecea0af8742b
WebGLBackend: Fix manual clear with MSAA render targets. (#31705)
[ { "path": "src/renderers/webgl-fallback/WebGLBackend.js", "patch": "@@ -540,107 +540,8 @@ class WebGLBackend extends Backend {\n \t\t}\n \n \t\tthis._currentContext = previousContext;\n-\t\tconst renderTarget = renderContext.renderTarget;\n-\n-\t\tif ( renderContext.textures !== null && renderTarget ) {\n-\...
2025-08-22T08:25:11
vuejs/vue
7a9290421d511cca66a6563f910beb1fab1b33ee
85d8ad64aa864f4c0800fbb9a895432b5edfdfe3
build: fix chrome headless on CI
[ { "path": "test/unit/karma.cover.config.js", "patch": "@@ -4,7 +4,13 @@ process.env.CHROME_BIN = require('puppeteer').executablePath()\n \n module.exports = function (config) {\n const options = Object.assign(base, {\n- browsers: ['ChromeHeadless'],\n+ browsers: ['ChromeHeadlessCI'],\n+ customLau...
2018-12-26T20:48:19
golang/go
f58a6a8e34d7db14871f2cf9bfd657e44a5c8b7b
9263a71b92e84aa34d0e35887d5c23f5a0a21537
internal/poll: make waitIO more idempontent This is a step towards deferring adding the handle to IOCP until the first IO operation. waitIO should use the overlapped event if it is provided, regardless of whether FD is pollable or not. This simplifies reasoning about the code and makes it more robust to race conditio...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -201,10 +201,7 @@ var operationPool = sync.Pool{\n // waitIO waits for the IO operation to complete,\n // handling cancellation if necessary.\n func (fd *FD) waitIO(o *operation) error {\n-\tif fd.isBlocking {\n-\t\tpanic(\"can't wait on blocking ope...
2026-02-05T12:16:12
denoland/deno
759546d4bcd3c7c4ff298825eb01c6c79845422a
610143913437ee07c935821c365e4feaff875228
test: add regression test for catching error in require(esm) (#32352) Another test case for https://github.com/denoland/deno/issues/32279
[ { "path": "tests/specs/run/npm_pkg_requires_esm_js/__test__.jsonc", "patch": "@@ -1,5 +1,14 @@\n {\n- \"args\": \"run -A main.js\",\n- \"output\": \"output.out\",\n- \"exitCode\": 1\n+ \"tests\": {\n+ \"esm_file_loaded_via_require\": {\n+ \"args\": \"run -A main.js\",\n+ \"output\": \"outpu...
2026-03-02T11:22:14
mrdoob/three.js
3b15b35d26fe1b78c6191312aecd9008cb41d29b
43d3d5e56dd26ccf310a6df84a647ff8f3cadf87
ScreenNode: Fix update type of DPR. (#31706)
[ { "path": "src/nodes/display/ScreenNode.js", "patch": "@@ -26,7 +26,7 @@ class ScreenNode extends Node {\n \t/**\n \t * Constructs a new screen node.\n \t *\n-\t * @param {('coordinate'|'viewport'|'size'|'uv')} scope - The node's scope.\n+\t * @param {('coordinate'|'viewport'|'size'|'uv'|'dpr')} scope - The...
2025-08-21T15:51:44
golang/go
9263a71b92e84aa34d0e35887d5c23f5a0a21537
0430fa977573866f93e66aa61a66b37ff0738aba
database/sql: ensure Null* types have Valid=false when Scan returns error The Scan methods for NullString, NullInt64, NullInt32, NullFloat64, NullBool, and NullTime set Valid=true before calling convertAssign. If convertAssign returns an error, Valid remains true, which creates an inconsistent state where Valid=true b...
[ { "path": "src/database/sql/sql.go", "patch": "@@ -202,8 +202,9 @@ func (ns *NullString) Scan(value any) error {\n \t\tns.String, ns.Valid = \"\", false\n \t\treturn nil\n \t}\n-\tns.Valid = true\n-\treturn convertAssign(&ns.String, value)\n+\terr := convertAssign(&ns.String, value)\n+\tns.Valid = err == ni...
2026-01-26T02:29:30
vuejs/vue
b31a1aa8870474b2ca782c45d55edac2932d4cc2
d08b49f520e0704f9d4e61be4f751e3b2cdac6a8
feat(compiler): output source range for compiler errors (#7127) ref #6338
[ { "path": "flow/compiler.js", "patch": "@@ -18,6 +18,7 @@ declare type CompilerOptions = {\n shouldDecodeTags?: boolean;\n shouldDecodeNewlines?: boolean;\n shouldDecodeNewlinesForHref?: boolean;\n+ outputSourceRange?: boolean;\n \n // runtime user-configurable\n delimiters?: [string, string]; /...
2018-12-22T02:58:32
mrdoob/three.js
43d3d5e56dd26ccf310a6df84a647ff8f3cadf87
cd0540763a35c504a58740bbec67f51d5f9ac478
TSL: Fix type propagation in members (#31699)
[ { "path": "src/nodes/core/StructNode.js", "patch": "@@ -30,11 +30,11 @@ class StructNode extends Node {\n \n \t}\n \n-\tconstructor( structLayoutNode, values ) {\n+\tconstructor( structTypeNode, values ) {\n \n \t\tsuper( 'vec3' );\n \n-\t\tthis.structLayoutNode = structLayoutNode;\n+\t\tthis.structTypeNode...
2025-08-21T15:16:09
denoland/deno
610143913437ee07c935821c365e4feaff875228
64a1d86cb06dcdba20b8b95b75b7fd00b0a40649
fix(ci): fix ordering of platforms in ecosystem_compat_slack (#32393) Results for macOS and linux were swapped
[ { "path": "tools/ecosystem_compat_slack.ts", "patch": "@@ -135,7 +135,7 @@ function createMessage(ecosystemReports: Record<string, EcosystemReport>) {\n },\n ];\n \n- for (const os of [\"darwin\", \"linux\", \"windows\"]) {\n+ for (const os of [\"linux\", \"darwin\", \"windows\"]) {\n ...
2026-03-02T11:15:05
golang/go
0430fa977573866f93e66aa61a66b37ff0738aba
045ceb72406ee725fd0ea9b8267e8bcd4d2afd5b
simd/archsimd: correct algorithm name in SHA256 ops documentation The three SHA256 ops (SHA256Message1, SHA256Message2 and SHA256TwoRounds) all incorrectly referred to the SHA1 algorithm in their documentation rather than SHA256. Change-Id: Id6c1bfe4fee4517c0e498fb063cc9112464bc1e7 Reviewed-on: https://go-review.goog...
[ { "path": "src/simd/archsimd/_gen/simdgen/ops/Others/categories.yaml", "patch": "@@ -83,7 +83,7 @@\n - go: SHA256TwoRounds\n commutative: false\n documentation: !string |-\n- // NAME does 2 rounds of B loop to calculate updated state variables in SHA1 algorithm defined in FIPS 180-4.\n+ // NAME do...
2026-01-11T07:00:06
vuejs/vue
d08b49f520e0704f9d4e61be4f751e3b2cdac6a8
1c105fb16c1b2395790740efce10b137f2f36c19
fix: make transition-group key warning a tip to avoid breaking compilation
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -341,7 +341,8 @@ function processKey (el) {\n if (iterator && iterator === exp && parent && parent.tag === 'transition-group') {\n warn(\n `Do not use v-for index as key on <transition-group> children, ` +\n- `th...
2018-12-21T19:46:18
mrdoob/three.js
e1ea0a0cd74982d325a82b30cf5d3f9e89c7244b
7b2d917042221cb7be8e42bbcafff2f62c9f08aa
PointsNodeMaterial: Fix broken point rendering. (#31702) * PointsNodeMaterial: Fix broken point rendering. * E2E: Update screenshot.
[ { "path": "src/materials/nodes/PointsNodeMaterial.js", "patch": "@@ -1,14 +1,16 @@\n import SpriteNodeMaterial from './SpriteNodeMaterial.js';\n-import { viewportSize, screenSize } from '../../nodes/display/ScreenNode.js';\n+import { viewportSize, screenDPR } from '../../nodes/display/ScreenNode.js';\n impo...
2025-08-21T11:56:01
denoland/deno
64a1d86cb06dcdba20b8b95b75b7fd00b0a40649
cc8c488d03e2fe97fb6f90d2c13fc561a221a363
fix(coverage): correct line and branch counts in coverage reports (#32312) ## Summary Fixes three bugs in `deno coverage` that caused incorrect LCOV output (closes #9865): - **Line counts were inflated** due to summing all covering V8 ranges instead of using the innermost (most specific) range. V8 coverage ranges ar...
[ { "path": "cli/args/flags.rs", "patch": "@@ -1459,6 +1459,11 @@ static ENV_VARS: &[EnvVar] = &[\n description: \"Enable Node.js compatibility mode - extensionless imports, built-in\\nNode.js modules, CommonJS detection and more.\",\n example: None,\n },\n+ EnvVar {\n+ name: \"DENO_COVERAGE_DIR...
2026-03-02T11:09:31
golang/go
045ceb72406ee725fd0ea9b8267e8bcd4d2afd5b
db5882ea9bf63849d554910f486c4c5cfea08852
cmd/compile: allow equal functions to perform unaligned load on loong64 The Go compiler always generates Loong64 binaries, which can execute any processor of LA364, LA464, LA664 or higher core. And these processors support unaligned memory access [1]. goos: linux goarch: loong64 pkg: strings cpu: Loongson-3A6000 @ 25...
[ { "path": "src/cmd/internal/sys/arch.go", "patch": "@@ -143,7 +143,7 @@ var ArchLoong64 = &Arch{\n \tPtrSize: 8,\n \tRegSize: 8,\n \tMinLC: 4,\n-\tAlignment: 8, // Unaligned accesses are not guaranteed to be fast\n+\tAlignment: 1,\n \tCanMergeLoads: true,\n \tCanJumpTable: ...
2026-02-04T07:25:07
vuejs/vue
1c105fb16c1b2395790740efce10b137f2f36c19
3fca52792ef83fa58a5c28882706d9e8a039790d
test: fix test case for #8297
[ { "path": "test/unit/features/directives/bind.spec.js", "patch": "@@ -168,20 +168,25 @@ describe('Directive v-bind', () => {\n \n it('.sync modifier with kebab case event', done => {\n const vm = new Vue({\n- template: `<test :foo-bar.sync=\"bar\"/>`,\n+ template: `<test ref=\"test\" :foo-ba...
2018-12-21T19:29:57
mrdoob/three.js
955946ef3bedb5a575a14e9dc90f601165bbce96
18128b8088a0f33cc3a0649bf411d1fe68edd9c7
WebGPUTextureUtils: Fix `rgb9e5ufloat ` usage and `rg11b10ufloat` constant value. (#31698) * WebGPUTextureUtils: Fix `RGB9E5UFloat` usage. * Fix `rg11b10ufloat` constant value.
[ { "path": "src/renderers/webgpu/utils/WebGPUConstants.js", "patch": "@@ -113,7 +113,7 @@ export const GPUTextureFormat = {\n \t// Packed 32-bit formats\n \tRGB9E5UFloat: 'rgb9e5ufloat',\n \tRGB10A2Unorm: 'rgb10a2unorm',\n-\tRG11B10UFloat: 'rgb10a2unorm',\n+\tRG11B10UFloat: 'rg11b10ufloat',\n \n \t// 64-bit ...
2025-08-20T21:39:24
denoland/deno
cc8c488d03e2fe97fb6f90d2c13fc561a221a363
59bec9b83ebe0241b813c8b93a280e879cc114a5
fix(node): implement process.umask properly (#32385) ## Summary - `process.umask()` was a stub that always returned `0o22` — now it actually gets/sets the process umask via `op_fs_umask` - Validates input with `parseFileMode` (supports numeric and octal string masks) - Masks off bits above `0o777` - Throws `ERR_WORKER...
[ { "path": "ext/fs/std_fs.rs", "patch": "@@ -43,12 +43,23 @@ impl FileSystem for RealFs {\n std::env::set_current_dir(path).map_err(Into::into)\n }\n \n- #[cfg(not(unix))]\n- fn umask(&self, _mask: Option<u32>) -> FsResult<u32> {\n- // TODO implement umask for Windows\n- // see https://github.c...
2026-03-02T11:00:05
golang/go
db5882ea9bf63849d554910f486c4c5cfea08852
f8f87129646ca3821b3926e649c856a960d6bc9e
os: support deleting inaccessible files in RemoveAll windows: retry file open with DELETE access after access denied Additional access rights when opening files, including SYNCHRONIZE, break deletion when the caller has FILE_DELETE_CHILD on the parent directory but not the file. Retry with DELETE only restores correc...
[ { "path": "src/internal/syscall/windows/at_windows.go", "patch": "@@ -246,14 +246,31 @@ func Deleteat(dirfd syscall.Handle, name string, options uint32) error {\n \tvar h syscall.Handle\n \terr := NtOpenFile(\n \t\t&h,\n-\t\tSYNCHRONIZE|FILE_READ_ATTRIBUTES|DELETE,\n+\t\tFILE_READ_ATTRIBUTES|DELETE,\n \t\to...
2026-02-04T09:36:59
mrdoob/three.js
18128b8088a0f33cc3a0649bf411d1fe68edd9c7
7c64dcfb1cc55df86fec09b50b200c1c9249f317
ShadowMapViewerGPU: Fix DepthTexture usage (#31673) * fix shadowmap viewer * cleanup * Update ShadowMapViewerGPU.js Flip the UVs and render with near white, far black. * revert demo --------- Co-authored-by: WestLangley <WestLangley@users.noreply.github.com>
[ { "path": "examples/jsm/utils/ShadowMapViewerGPU.js", "patch": "@@ -7,9 +7,10 @@ import {\n \tOrthographicCamera,\n \tPlaneGeometry,\n \tScene,\n-\tTexture\n+\tDepthTexture,\n+\tVector2\n } from 'three';\n-import { texture } from 'three/tsl';\n+import { uv, uniform, textureLoad } from 'three/tsl';\n \n /**\...
2025-08-20T15:40:51
vuejs/vue
3fca52792ef83fa58a5c28882706d9e8a039790d
0e4e45ec741416e0042c29a53bbc0e58c8663f6e
feat: v-bind.sync also listens for kebab-case update event (#8297) fix #6428
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -5,7 +5,7 @@ import { parseHTML } from './html-parser'\n import { parseText } from './text-parser'\n import { parseFilters } from './filter-parser'\n import { genAssignmentCode } from '../directives/model'\n-import { extend, cached, no, camelize } from ...
2018-12-21T18:34:17
denoland/deno
59bec9b83ebe0241b813c8b93a280e879cc114a5
77653251082b5b3d4aea2f62757a4b25155c3a31
fix(ext/node): make fsPromises.watch() a proper AsyncIterable with close() (#32378) ## Summary - The watcher returned by `node:fs/promises` `watch()` was a plain object with only `[Symbol.asyncIterator]`, missing `next()` and `return()` methods - The returned object now properly implements the `AsyncIterator` protocol...
[ { "path": "ext/node/polyfills/_fs/_fs_watch.ts", "patch": "@@ -171,26 +171,44 @@ export function watchPromise(\n });\n \n if (options?.signal) {\n- options?.signal.addEventListener(\"abort\", () => watcher.close());\n+ if (options.signal.aborted) {\n+ watcher.close();\n+ } else {\n+ o...
2026-03-02T10:48:08
golang/go
f8f87129646ca3821b3926e649c856a960d6bc9e
491da55fdba438284656c370f6d2f3e0b0971a83
crypto/tls: fix broken link in KeyLogWriter documentation The Mozilla developer documentation link for the NSS key log format has been broken since early 2022. Update the documentation to point to the IETF TLS working group draft which is currently in the RFC publication queue. Fixes #63331 Co-Authored-By: Claude Op...
[ { "path": "src/crypto/tls/common.go", "patch": "@@ -825,7 +825,7 @@ type Config struct {\n \t// KeyLogWriter optionally specifies a destination for TLS master secrets\n \t// in NSS key log format that can be used to allow external programs\n \t// such as Wireshark to decrypt TLS connections.\n-\t// See http...
2026-02-03T15:10:47
mrdoob/three.js
f163bfaec4a7e897edda9bc11db5d179c17cfdf4
ca3194a347118ff7b4fdd1414b6c7dd947df78b1
Examples: Add WebGPU check to some compute demos. (#31685) * Example: Add WebGPU check to some compute demos. * Examples: Clean up. * E2E: Add `webgpu_compute_birds` to exception list.
[ { "path": "examples/webgpu_compute_birds.html", "patch": "@@ -43,6 +43,7 @@\n \n \t\t\timport Stats from 'stats-gl';\n \t\t\timport { GUI } from 'three/addons/libs/lil-gui.module.min.js';\n+\t\t\timport WebGPU from 'three/addons/capabilities/WebGPU.js';\n \n \t\t\tlet container, stats;\n \t\t\tlet camera, s...
2025-08-20T08:10:57
vuejs/vue
1933ee80ff808b81a691fa6a135c1588d218bc0a
5ab028a9128b289b0c840bdb6901021fc482e6f5
fix(provide/inject): Merges symbol provides (#7926)
[ { "path": "src/core/util/options.js", "patch": "@@ -4,6 +4,7 @@ import config from '../config'\n import { warn } from './debug'\n import { nativeWatch } from './env'\n import { set } from '../observer/index'\n+import { hasSymbol } from '../util/index'\n \n import {\n ASSET_TYPES,\n@@ -48,9 +49,15 @@ if (p...
2018-12-21T17:49:21
denoland/deno
77653251082b5b3d4aea2f62757a4b25155c3a31
63ff522af860629fed247062c6157dd776af649b
fix(ext/node): return first created path from recursive "node:fs" mkdir call (#32300) ## Summary - Fix `fs.mkdir()`, `fs.mkdirSync()`, and `fs/promises.mkdir()` with `{ recursive: true }` to return the first directory path created, matching Node.js behavior - When all directories already exist, correctly returns `und...
[ { "path": "ext/node/polyfills/_fs/_fs_mkdir.ts", "patch": "@@ -5,12 +5,83 @@\n \n import type { CallbackWithError } from \"ext:deno_node/_fs/_fs_common.ts\";\n import { promisify } from \"ext:deno_node/internal/util.mjs\";\n-import { denoErrorToNodeError } from \"ext:deno_node/internal/errors.ts\";\n+import...
2026-03-02T10:39:11
mrdoob/three.js
e9f7c8b6478293ce3373bdcc70d6e90ae11fd4db
f4abfe0576167c4cf2cd9683a6b09b68d798f72e
fix type of instanceGroup bindingsReference in nodeBuilderState (#31678)
[ { "path": "src/renderers/common/nodes/NodeBuilderState.js", "patch": "@@ -126,7 +126,7 @@ class NodeBuilderState {\n \n \t\t\tif ( shared !== true ) {\n \n-\t\t\t\tconst bindingsGroup = new BindGroup( instanceGroup.name, [], instanceGroup.index, instanceGroup );\n+\t\t\t\tconst bindingsGroup = new BindGroup...
2025-08-19T08:10:24
golang/go
491da55fdba438284656c370f6d2f3e0b0971a83
bd7b8a52c847afcfc15b21741ec8972275a79c34
cmd/compile/internal/ssagen: fix typo GrtCallerSP -> GetCallerSP Fix a typo in findIntrinsic function where "GrtCallerSP" should be "GetCallerSP". This typo was in the condition checking for runtime intrinsic functions that don't have definitions. Fixes #77432 Change-Id: I8667a42456b4b2c4533dfcbca198b46793f71c89 Git...
[ { "path": "src/cmd/compile/internal/ssagen/intrinsics.go", "patch": "@@ -2170,7 +2170,7 @@ func findIntrinsic(sym *types.Sym) intrinsicBuilder {\n \n \tfn := sym.Name\n \tif ssa.IntrinsicsDisable {\n-\t\tif pkg == \"internal/runtime/sys\" && (fn == \"GetCallerPC\" || fn == \"GrtCallerSP\" || fn == \"GetClos...
2026-02-06T08:48:19
vuejs/vue
22ad26615104c15fd09bc69692e3042bb1bb58e9
44940121eef4e2df5f3cb3c21f3f468af8b336bc
fix(runtime): DevTools recommendation shows for all browsers (#8638) Close #8634
[ { "path": "src/platforms/web/runtime/index.js", "patch": "@@ -4,7 +4,7 @@ import Vue from 'core/index'\n import config from 'core/config'\n import { extend, noop } from 'shared/util'\n import { mountComponent } from 'core/instance/lifecycle'\n-import { devtools, inBrowser, isChrome } from 'core/util/index'\...
2018-12-20T22:05:05
denoland/deno
63ff522af860629fed247062c6157dd776af649b
d428817aa77df5dfbcb9e62c6f9240c8b2086ce4
fix(node): preserve AsyncLocalStorage context in stream.finished callback (#32389) ## Summary - Snapshots the async context when `eos()` (the implementation behind `stream.finished`) is called and restores it around the callback invocation - In Node.js this context propagation happens automatically through the native ...
[ { "path": "ext/node/polyfills/internal/streams/end-of-stream.js", "patch": "@@ -3,6 +3,7 @@\n \n import process from \"node:process\";\n import { primordials } from \"ext:core/mod.js\";\n+import { core } from \"ext:core/mod.js\";\n import imported1 from \"ext:deno_node/internal/errors.ts\";\n import { kEmpt...
2026-03-02T10:26:23
golang/go
5f51b092846ae43d03092d866449d9933a8bf42b
b152d9a11808c278d2ccb193d7c82938078007ce
cmd/link: ignore GCC generated .wm4/.wm8 symbols with no type Fixes #77436 Change-Id: I37d852a89678c929156c4765e774c819eb515e6f Reviewed-on: https://go-review.googlesource.com/c/go/+/742220 Reviewed-by: Michael Knyszek <mknyszek@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservice...
[ { "path": "src/cmd/go/testdata/script/cgo_g3.txt", "patch": "@@ -0,0 +1,18 @@\n+[!cgo] skip\n+\n+# Test that -g3 works with cgo.\n+env CGO_CFLAGS=-g3\n+go build\n+\n+-- go.mod --\n+module cgog3\n+\n+go 1.25\n+-- m.go --\n+package main\n+\n+import \"os/user\"\n+\n+func main() {\n+\tuser.Current()\n+}", "...
2026-02-05T04:58:51
vuejs/vue
9432737cf871335c42ce0dc0a0baa21a4d8c3832
0ebb0f39dfee0a5c03adb2f312f617cca37b44d6
fix: cover more cases in v-on inline return value
[ { "path": "src/compiler/codegen/events.js", "patch": "@@ -1,7 +1,7 @@\n /* @flow */\n \n const fnExpRE = /^([\\w$_]+|\\([^)]*?\\))\\s*=>|^function\\s*\\(/\n-const fnInvokeRE = /\\([^)]*?\\)$/\n+const fnInvokeRE = /\\([^)]*?\\);*$/\n const simplePathRE = /^[A-Za-z_$][\\w$]*(?:\\.[A-Za-z_$][\\w$]*|\\['[^']*?'...
2018-12-20T17:20:09
denoland/deno
d428817aa77df5dfbcb9e62c6f9240c8b2086ce4
b4d4a5bc2192e4dcb3ae16319273d9ffa883c7d1
fix(jupyter): handle shutdown and interrupt requests per protocol (#32359) ## Summary - Send `shutdown_reply` on the control channel before exiting, with the `restart` field echoed back from the request - Handle `interrupt_request` by calling `v8::IsolateHandle::terminate_execution()` to actually interrupt running JS...
[ { "path": "cli/tools/jupyter/mod.rs", "patch": "@@ -180,12 +180,20 @@ pub async fn kernel(\n };\n let repl_session_proxy_channels = JupyterReplProxy { tx: tx1, rx: rx2 };\n \n+ let isolate_handle = repl_session_proxy\n+ .repl_session\n+ .worker\n+ .js_runtime\n+ .v8_isolate()\n+ .thread_...
2026-03-02T10:05:00
golang/go
b152d9a11808c278d2ccb193d7c82938078007ce
fc9f22134a870528a7a6d110fa6172431f73cccf
cmd/link: correct error message in loadelf.Load The message said we were ignoring the symbols, but we aren't. We are treating them as an error. For #77436 Change-Id: I5492d81717c539b09f6956b591178f1f3a42893d Reviewed-on: https://go-review.googlesource.com/c/go/+/742060 Reviewed-by: Michael Knyszek <mknyszek@google.c...
[ { "path": "src/cmd/link/internal/loadelf/ldelf.go", "patch": "@@ -627,7 +627,7 @@ func Load(l *loader.Loader, arch *sys.Arch, localSymVersion int, f *bio.Reader,\n \t\t\t\tcontinue\n \t\t\t}\n \n-\t\t\treturn errorf(\"%v: sym#%d (%q): ignoring symbol in section %d (%q) (type %d)\", elfsym.sym, i, elfsym.nam...
2026-02-04T20:42:44
vuejs/vue
0ebb0f39dfee0a5c03adb2f312f617cca37b44d6
b00868c5cb1ca8aa8b42947ff5d2a55e9e298582
fix: return inline invocation return value in v-on handlers close #7628
[ { "path": "src/compiler/codegen/events.js", "patch": "@@ -1,6 +1,7 @@\n /* @flow */\n \n const fnExpRE = /^([\\w$_]+|\\([^)]*?\\))\\s*=>|^function\\s*\\(/\n+const fnInvokeRE = /\\([^)]*?\\)$/\n const simplePathRE = /^[A-Za-z_$][\\w$]*(?:\\.[A-Za-z_$][\\w$]*|\\['[^']*?']|\\[\"[^\"]*?\"]|\\[\\d+]|\\[[A-Za-z_$...
2018-12-20T16:32:06
denoland/deno
b4d4a5bc2192e4dcb3ae16319273d9ffa883c7d1
9c81a2306081a63be4cdbb94b24a2437d0956945
fix:(ext/node): escape simple quotes in node:child_process (#32336)
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -1284,13 +1284,15 @@ function transformDenoShellCommand(\n return a;\n })\n : result.deno_args.map((a) => {\n- // POSIX: args with shell variable refs use double quotes to\n- // preserve variable expansi...
2026-03-02T09:34:45
mrdoob/three.js
c800106fb4cbd8341cd64b35e97206095d2799d9
c0f77e8afe9f3e56b66b79b0ddccbed4d44fc850
TSL: Fix assignment to swizzled for var intent (#31647)
[ { "path": "src/nodes/core/AssignNode.js", "patch": "@@ -97,7 +97,9 @@ class AssignNode extends TempNode {\n \n \t\tconst { targetNode, sourceNode } = this;\n \n-\t\tconst targetProperties = builder.getNodeProperties( targetNode );\n+\t\tconst scope = targetNode.getScope();\n+\n+\t\tconst targetProperties = ...
2025-08-16T16:51:05
golang/go
fc9f22134a870528a7a6d110fa6172431f73cccf
a72a4295edf694395ba9d3b5e7c5393ebf6a415d
net/http: remove hasPort and simplify logic Fixes #76651 Change-Id: I306e127375095bc0caedb01ac458107cfec5f085 Reviewed-on: https://go-review.googlesource.com/c/go/+/725740 Auto-Submit: Sean Liao <sean@liao.dev> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Mich...
[ { "path": "src/net/http/http.go", "patch": "@@ -106,15 +106,15 @@ type contextKey struct {\n \n func (k *contextKey) String() string { return \"net/http context value \" + k.name }\n \n-// Given a string of the form \"host\", \"host:port\", or \"[ipv6::address]:port\",\n-// return true if the string include...
2025-12-02T04:06:09
vuejs/vue
b00868c5cb1ca8aa8b42947ff5d2a55e9e298582
35edc1c1e2515033a07e903580df01bcd43090aa
refactor: extract async error handling logic
[ { "path": "src/core/instance/events.js", "patch": "@@ -4,9 +4,8 @@ import {\n tip,\n toArray,\n hyphenate,\n- handleError,\n formatComponentName,\n- handlePromiseError\n+ invokeWithErrorHandling\n } from '../util/index'\n import { updateListeners } from '../vdom/helpers/index'\n \n@@ -134,13 +133...
2018-12-20T15:26:56
denoland/deno
9c81a2306081a63be4cdbb94b24a2437d0956945
16b2029c7bc723d81115e48a7f362cb680c7659b
fix(ext/console): support iterators in console.table (#32379) ## Summary - Fix `console.table` to properly display data when given iterator objects (e.g., `map.entries()`, `map.values()`, `set.values()`) - Previously iterators rendered as empty tables because `ObjectKeys` returns nothing useful for iterator objects - ...
[ { "path": "ext/web/01_console.js", "patch": "@@ -3741,8 +3741,12 @@ class Console {\n let resultData;\n const isSetObject = isSet(data);\n const isMapObject = isMap(data);\n+ const isIteratorObject = !isSetObject && !isMapObject &&\n+ !ArrayIsArray(data) && typeof data[SymbolIterator] ==...
2026-03-02T08:34:03
mrdoob/three.js
deb748d0915c19696b7d1405d0b6dac7e49c74ab
d8a9927b16e16deede1628d1e01ec98181d4869a
Docs: Update WebXRManager methods (#31657) * Docs: missing WebXRManager methods -> old docs * Docs: WebXRManager JSDoc fixes/clarifications * Update docs/api/en/renderers/webxr/WebXRManager.html Co-authored-by: Vincent Fretin <vincent.fretin@gmail.com> * Update docs/api/en/renderers/webxr/WebXRManager.html Co-aut...
[ { "path": "docs/api/en/renderers/webxr/WebXRManager.html", "patch": "@@ -37,6 +37,24 @@ <h3>[property:Boolean isPresenting]</h3>\n \t\t</p>\n \n \t\t<h2>Methods</h2>\n+\t\t\n+\t\t<h3>[method:XRWebGLLayer getBaseLayer]()</h3>\n+\t\t<p>\n+\t\t\tReturns the current base layer. This is an \n+\t\t\t[link:https:/...
2025-08-15T14:04:29
golang/go
a72a4295edf694395ba9d3b5e7c5393ebf6a415d
38ed6147485232f9562e87970c56f4491c082998
simd/archsimd: remove BUG note about type parameter After CL 742320, using vector type as type parameter now works. Updates #77444 Change-Id: I4f8cd2c9c18e04efbc884cb57dfcf9f2b48306d8 Reviewed-on: https://go-review.googlesource.com/c/go/+/742400 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: Cherry ...
[ { "path": "src/simd/archsimd/doc.go", "patch": "@@ -58,6 +58,4 @@\n // allocate it in the heap, or put it in an aggregate type.\n package archsimd\n \n-// BUG(cherry): Using a vector type as a type parameter may not work.\n-\n // BUG(cherry): Using reflect Call to call a vector function/method may not w...
2026-02-05T16:45:22
vuejs/vue
6e9fcfc81d922a1b188268bf50d7e67c07d6d662
b7f7f2756928f409950186c5d641034f362b392a
feat(errors): sync/async error handling for lifecycle hooks and v-on handlers (#8395) close #6953, close #7653
[ { "path": "src/core/instance/events.js", "patch": "@@ -5,7 +5,8 @@ import {\n toArray,\n hyphenate,\n handleError,\n- formatComponentName\n+ formatComponentName,\n+ handlePromiseError\n } from '../util/index'\n import { updateListeners } from '../vdom/helpers/index'\n \n@@ -135,7 +136,8 @@ export f...
2018-12-20T15:02:28
denoland/deno
16b2029c7bc723d81115e48a7f362cb680c7659b
9cf58520ee80dd88777d3a97e59800163697d1d2
fix(ext/node): handle emoji width correctly in readline (#32383) ## Summary - Characters with the Unicode `Emoji_Presentation` property (like ⚡ U+26A1) are rendered as width 2 in terminals, but `getStringWidth` was returning 1 since they aren't classified as East Asian Wide. This caused cursor positioning issues in `n...
[ { "path": "ext/node/polyfills/internal/util/inspect.mjs", "patch": "@@ -286,6 +286,8 @@ const ansiPattern = \"[\\\\u001B\\\\u009B][[\\\\]()#;?]*\" +\n \"|(?:(?:\\\\d{1,4}(?:;\\\\d{0,4})*)?[\\\\dA-PR-TZcf-ntqry=><~]))\";\n const ansi = new SafeRegExp(ansiPattern, \"g\");\n \n+const reEmojiPresentation = ne...
2026-03-02T08:33:38