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
vuejs/vue
73486cb5f5862a443b42c2aff68b82320218cbcd
e428d891456eeb6d34cfac070c423694dcda8806
chore: fix link broken (#13192) * chore: fix link broken Signed-off-by: snoppy <michaleli@foxmail.com> * Update packages/template-compiler/README.md [skip ci] --------- Signed-off-by: snoppy <michaleli@foxmail.com> Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com>
[ { "path": "packages/template-compiler/README.md", "patch": "@@ -130,7 +130,7 @@ This is only useful at runtime with pre-configured builds, so it doesn't accept\n \n Same as `compiler.compile` but generates SSR-specific render function code by optimizing parts of the template into string concatenation in ord...
2024-06-14T12:52:12
mrdoob/three.js
446f223ae6405f885b7c754a394168ad75b8899a
1401e3efb76d5d906f7cf30f4b4b30a33cab98cc
FBXLoader: Fix morph deltas. (#33350)
[ { "path": "examples/jsm/loaders/FBXLoader.js", "patch": "@@ -2364,6 +2364,13 @@ class GeometryParser {\n \t\tparentGeo.morphAttributes.position = [];\n \t\t// parentGeo.morphAttributes.normal = []; // not implemented\n \n+\t\t// Morph attribute positions are stored as deltas (morphTargetsRelative = true), s...
2026-04-10T11:11:12
golang/go
6064169e0507e71305e7b600e607e357fc842dd9
11655d2c1420dcc869a8e43087668221b657c67f
debug/elf: use saferio.SliceCap for segment slice This avoids using a lot of memory for an invalid segment count. No test case because the problem can only happen for invalid ata. Let the fuzzer find cases like this. For #47653 Fixes #78611 Change-Id: I649f5446496bfa46668e7a3e5c84c82131e1d136 Reviewed-on: https://g...
[ { "path": "src/debug/elf/file.go", "patch": "@@ -467,7 +467,14 @@ func NewFile(r io.ReaderAt) (*File, error) {\n \t}\n \n \t// Read program headers\n-\tf.Progs = make([]*Prog, phnum)\n+\tc := saferio.SliceCap[*Prog](uint64(phnum))\n+\tif c < 0 {\n+\t\treturn nil, &FormatError{0, \"too many segments\", phnum...
2026-04-09T21:43:28
denoland/deno
1ececcbcd1a1d541bb6598c2d9aeb86b13451d48
ce2e62bef11d6243f4812acc9a302ead80ef7af9
fix(core): fix uv_pipe_open handle lifecycle to match libuv (#33225) ## Summary Fix pipe handle lifecycle to match libuv's semantics. Two changes: 1. **Don't set `UV_HANDLE_ACTIVE` in `uv_pipe_open`** -- In libuv, `uv_pipe_open` only associates an fd with the handle. The handle becomes active only when `uv_read_star...
[ { "path": "libs/core/uv_compat/pipe.rs", "patch": "@@ -232,7 +232,11 @@ pub unsafe fn uv_pipe_open(pipe: *mut uv_pipe_t, fd: c_int) -> c_int {\n if let Ok(afd) = tokio::io::unix::AsyncFd::new(RawFdWrapper(fd)) {\n (*pipe).internal_async_fd = Some(afd);\n }\n- (*pipe).flags |= UV_HANDLE_ACTI...
2026-04-09T16:26:44
vuejs/vue
56ce7f8c573116ed6683149206cf35c987249d42
305e4ae9dce0a05a422b675ff555f17878e86063
fix(lifecycle): esnure component effect scopes are disconnected close #13134
[ { "path": "src/core/instance/init.ts", "patch": "@@ -34,6 +34,9 @@ export function initMixin(Vue: typeof Component) {\n vm.__v_skip = true\n // effect scope\n vm._scope = new EffectScope(true /* detached */)\n+ // #13134 edge case where a child component is manually created during the\n+ /...
2023-12-24T14:40:05
mrdoob/three.js
84335585d465607cb53006581624dff46ad38010
f1103c4e48a11bb67f85c1789faaf8f2d976a65c
GLTFExporter: Make attribute prefix more robust. (#33357)
[ { "path": "examples/jsm/exporters/GLTFExporter.js", "patch": "@@ -1848,7 +1848,7 @@ class GLTFWriter {\n \t\t\tconst validVertexAttributes =\n \t\t\t\t\t/^(POSITION|NORMAL|TANGENT|TEXCOORD_\\d+|COLOR_\\d+|JOINTS_\\d+|WEIGHTS_\\d+)$/;\n \n-\t\t\tif ( ! validVertexAttributes.test( attributeName ) ) attributeN...
2026-04-09T09:06:00
golang/go
11655d2c1420dcc869a8e43087668221b657c67f
27c0ad865c944a7c7c637fd0f97f48a422ca6fae
net: drop always nil (*netFD).netFD error return value Drop the always-nil error to simplify callers. This was missed in CL 764620. Change-Id: I7a93640b5422d7441234e226aa8b541888b2ebea Reviewed-on: https://go-review.googlesource.com/c/go/+/765220 Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com> LUCI-TryBot-Resu...
[ { "path": "src/net/ipsock_plan9.go", "patch": "@@ -249,8 +249,8 @@ func listenPlan9(ctx context.Context, net string, laddr Addr) (fd *netFD, err er\n \treturn newFD(proto, name, nil, f, nil, laddr, nil), nil\n }\n \n-func (fd *netFD) netFD() (*netFD, error) {\n-\treturn newFD(fd.net, fd.n, fd.listen, fd.ctl...
2026-04-10T08:26:09
vuejs/vue
db9c566032da0ec5cd758a3e8525e9733874c1e5
895669ffa01f8075a326308caa8ad6a5f69a1919
fix: account for nested render calls close #13131
[ { "path": "src/core/instance/render.ts", "patch": "@@ -15,7 +15,7 @@ import VNode, { createEmptyVNode } from '../vdom/vnode'\n \n import { isUpdatingChildComponent } from './lifecycle'\n import type { Component } from 'types/component'\n-import { setCurrentInstance } from 'v3/currentInstance'\n+import { cur...
2023-12-14T01:21:11
denoland/deno
301e2245161ee6db43b5aea9eadc4da8e8934f91
f66ec66c048858b70c8bbe5fe19408c41d56d7d7
fix(core): handle WouldBlock in op_print for non-blocking stdio (#33221) ## Summary Replace `write_all` in the core `op_print` with a manual write loop that retries on `WouldBlock` and `Interrupted`. When Node's `process.stdout`/`process.stderr` opens stdio fds via `uv_pipe_open` or `uv_tty_init`, it sets `O_NONBLOC...
[ { "path": "libs/core/ops_builtin.rs", "patch": "@@ -220,13 +220,28 @@ pub fn op_print(\n #[string] msg: &str,\n is_err: bool,\n ) -> Result<(), std::io::Error> {\n- if is_err {\n- stderr().write_all(msg.as_bytes())?;\n- stderr().flush().unwrap();\n+ let mut out: Box<dyn Write> = if is_err {\n+ ...
2026-04-09T12:59:53
mrdoob/three.js
8b169b04fffa5fdaf546b7c53159c78288dd69f3
e4110f5aeaf202c7ef61875d80b444837be14552
Revert "MathNode: Fix `transformDirection()`." (#33349)
[ { "path": "src/nodes/accessors/Normal.js", "patch": "@@ -1,5 +1,5 @@\n import { attribute } from '../core/AttributeNode.js';\n-import { cameraViewMatrix, cameraWorldMatrix } from './Camera.js';\n+import { cameraViewMatrix } from './Camera.js';\n import { modelNormalMatrix, modelWorldMatrix } from './ModelNo...
2026-04-07T12:42:07
golang/go
4478774aa2b1069774c274ebc2ee2ae029030b0f
2f3c778b232dd53c41e1b623d25cd9f4ab28aaa5
cmd/compile: fix typo Change-Id: Ia9ee618aa68aad5bab73ee62eea176084ee162da GitHub-Last-Rev: 4cc005d3cd1ae4e5eaa283b1799c7be26b2279f5 GitHub-Pull-Request: golang/go#78625 Reviewed-on: https://go-review.googlesource.com/c/go/+/765280 Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@goo...
[ { "path": "src/cmd/compile/internal/ssa/check.go", "patch": "@@ -198,7 +198,7 @@ func checkFunc(f *Func) {\n \t\t\t\tcanHaveAux = true\n \t\t\tcase auxCCop:\n \t\t\t\tif opcodeTable[Op(v.AuxInt)].name == \"OpInvalid\" {\n-\t\t\t\t\tf.Fatalf(\"value %v has an AuxInt value that is a valid opcode\", v)\n+\t\t\...
2026-04-10T14:34:47
vuejs/vue
895669ffa01f8075a326308caa8ad6a5f69a1919
73bdf14ef5c9979dcba18ede3410515cecbe2f2f
fix(types): export more types for v3 alignment (jsx / component options) close #13078 close #13128
[ { "path": "types/index.d.ts", "patch": "@@ -1,6 +1,7 @@\n import { Vue } from './vue'\n import './umd'\n import './jsx'\n+export * from './jsx'\n \n export default Vue\n \n@@ -49,7 +50,12 @@ export {\n ComputedOptions as ComponentComputedOptions,\n MethodOptions as ComponentMethodOptions,\n ComponentP...
2023-12-14T00:33:45
denoland/deno
f66ec66c048858b70c8bbe5fe19408c41d56d7d7
241d11f9a39f63c45e5d5bda30dc711f5ba67591
test: prevent task/signals spec test from hanging in CI (#33020) ## Summary - The `task/signals` spec test registers signal handlers for **all** signals including SIGTERM in `listener.ts`, which means the test harness cannot kill it when the timeout fires — causing 30+ minute CI hangs - Added a 30s hard timeout in `s...
[ { "path": "tests/specs/task/signals/__test__.jsonc", "patch": "@@ -1,5 +1,5 @@\n {\n- \"timeout\": 60,\n+ \"timeout\": 45,\n // signals don't really exist on windows\n \"if\": \"unix\",\n // this runs a deno task", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path"...
2026-04-09T12:44:52
mrdoob/three.js
e4110f5aeaf202c7ef61875d80b444837be14552
2a4e27e261b48fc5d8060e7aa733713970c4e388
MathNode: Fix `transformDirection()`. (#33347)
[ { "path": "src/nodes/accessors/Normal.js", "patch": "@@ -1,5 +1,5 @@\n import { attribute } from '../core/AttributeNode.js';\n-import { cameraViewMatrix } from './Camera.js';\n+import { cameraViewMatrix, cameraWorldMatrix } from './Camera.js';\n import { modelNormalMatrix, modelWorldMatrix } from './ModelNo...
2026-04-07T11:33:07
vuejs/vue
e0747f40a879b4000a1959d21377b51d1f1ed988
2632249925e632e56f6dfc8fdbcf682c82e4081b
fix(keep-alive): fix memory leak without breaking transition tests
[ { "path": "src/core/components/keep-alive.ts", "patch": "@@ -33,10 +33,15 @@ function matches(\n }\n \n function pruneCache(\n- keepAliveInstance: { cache: CacheEntryMap; keys: string[]; _vnode: VNode },\n+ keepAliveInstance: {\n+ cache: CacheEntryMap\n+ keys: string[]\n+ _vnode: VNode\n+ $vno...
2023-12-07T09:07:15
golang/go
926a1bef08ae6b93b50a96eedb15210e1d8c4733
0e31741044d519065f62a5e96499909d6cd230dc
cmd/asm, cmd/internal/obj/arm64: add GP and SIMD reg support for SVE The GP registers and SIMD registers are comforming to the existing Go syntax: they are V or R registers, their widths are specified in the Opcode, the rules to specify them is: - if that instruction only contains one GP or SIMD register: If it's 3...
[ { "path": "src/cmd/asm/internal/asm/testdata/arm64sveenc.s", "patch": "@@ -34,8 +34,8 @@ TEXT asmtest(SB),DUPOK|NOSPLIT,$-8\n \tPPTRUE PN14.S // 1678a025\n \tPPUNPKHI P14.B, P0.H // c0413105\n \tPPUNPKLO P14.B, P0.H ...
2026-03-25T19:05:16
denoland/deno
241d11f9a39f63c45e5d5bda30dc711f5ba67591
acdf3904eca57f4d5a2d231b62abd98409f84658
fix(permissions): check deny rules against resolved IPs to prevent numeric hostname bypass (#33203) Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
[ { "path": "ext/net/ops.rs", "patch": "@@ -267,6 +267,17 @@ pub async fn op_net_send_udp(\n .next()\n .ok_or(NetError::NoResolvedAddress)?;\n \n+ {\n+ state\n+ .borrow_mut()\n+ .borrow_mut::<PermissionsContainer>()\n+ .check_net_resolved(\n+ &addr.ip(),\n+ addr.port()...
2026-04-09T12:18:29
vuejs/vue
2632249925e632e56f6dfc8fdbcf682c82e4081b
3650c12f7d3a20f3155bc1fd2b068e84289e0d33
fix(keep-alive): fix keep-alive memory leak close #12827
[ { "path": "src/core/vdom/create-component.ts", "patch": "@@ -62,6 +62,8 @@ const componentVNodeHooks = {\n vnode, // new parent vnode\n options.children // new children\n )\n+ // #12187 unset children reference after use to avoid memory leak\n+ options.children = undefined\n },\n \n ...
2023-12-07T08:12:36
mrdoob/three.js
2a4e27e261b48fc5d8060e7aa733713970c4e388
c73eff8c53663621ba6bf2cbb9bb288a3f0d730b
Added new DevTools (#30870) Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Co-authored-by: Chris Smoak <chris.smoak+@gmail.com> Co-authored-by: Jasiel Guillén <darkensses@gmail.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
[ { "path": "devtools/README.md", "patch": "@@ -0,0 +1,98 @@\n+# Three.js DevTools Extension\n+\n+This Chrome DevTools extension provides debugging capabilities for Three.js applications. It allows you to inspect scenes, objects, materials, and renderers.\n+\n+## Installation\n+\n+1. **Development Mode**:\n+ ...
2026-04-07T10:22:58
golang/go
0e31741044d519065f62a5e96499909d6cd230dc
824a8a315668598436072566727cc5b28ac2f8c9
runtime: fix AIX library initialization On AIX, libInit passes a function descriptor instead of the function pointer to pthread_create. This is a regression from CL 706417. Change-Id: I660175eb992a41ef61b1927c51392887a724cd76 Reviewed-on: https://go-review.googlesource.com/c/go/+/761780 Reviewed-by: Ian Lance Taylor ...
[ { "path": "src/runtime/libinit.go", "patch": "@@ -11,6 +11,13 @@ import (\n \t\"unsafe\"\n )\n \n+// rt0LibGoFn holds the function pointer to rt0_lib_go suitable for thread\n+// creation. On most platforms it is zero, meaning the raw code address should\n+// be used. On AIX it is set by libpreinit to a func...
2026-04-01T14:07:46
denoland/deno
acdf3904eca57f4d5a2d231b62abd98409f84658
c16785b435e56f2cef7d6665868942e18592d8fb
fix(io): remove global stdio statics, handle non-blocking stdin (#33219) ## Summary - Remove `STDIN_HANDLE`/`STDOUT_HANDLE`/`STDERR_HANDLE` global `Lazy<StdFile>` statics that wrapped raw stdio fds 0/1/2 - Replace with local `stdio_fd()` helper + `Drop` impl that leaks stdio fds to prevent closing them at shutdown - A...
[ { "path": "cli/util/console.rs", "patch": "@@ -19,8 +19,7 @@ use super::draw_thread::DrawThread;\n \n /// Gets the console size.\n pub fn console_size() -> Option<ConsoleSize> {\n- let stderr = &deno_runtime::deno_io::STDERR_HANDLE;\n- deno_runtime::ops::tty::console_size(stderr).ok()\n+ deno_runtime::op...
2026-04-09T12:15:02
mrdoob/three.js
c73eff8c53663621ba6bf2cbb9bb288a3f0d730b
b75d0c368f797502f5bd0c75404ee50f39474fd4
BufferGeometryUtils: Fix two bugs. (#33338)
[ { "path": "examples/jsm/utils/BufferGeometryUtils.js", "patch": "@@ -286,8 +286,7 @@ function mergeGeometries( geometries, useGroups = false ) {\n \tfor ( const name in morphAttributes ) {\n \n \t\tconst numMorphTargets = morphAttributes[ name ][ 0 ].length;\n-\n-\t\tif ( numMorphTargets === 0 ) break;\n+\t...
2026-04-06T21:39:24
vuejs/vue
3650c12f7d3a20f3155bc1fd2b068e84289e0d33
83d95351a9f809311d624fc3398e7f6829b72447
fix(types): provide types for built-in components close #13002
[ { "path": "types/built-in-components.d.ts", "patch": "@@ -0,0 +1,63 @@\n+import { DefineComponent } from './v3-define-component'\n+\n+type Hook<T = () => void> = T | T[]\n+\n+export interface TransitionProps {\n+ name?: string\n+ appear?: boolean\n+ css?: boolean\n+ mode?: 'in-out' | 'out-in' | 'default...
2023-12-07T06:41:10
golang/go
76ddc5b92ba644c91908b5ffc62bfb9e8a822d70
2393d14061ea07d26be70091196bbe7c8c12a402
crypto/internal/fips140/pbkdf2: fix typo in error message Change-Id: I24a44b0f06b02fe99c8364afa2a9c04ff5435c0e Reviewed-on: https://go-review.googlesource.com/c/go/+/765001 Reviewed-by: Robert Griesemer <gri@google.com> Auto-Submit: Neal Patel <nealpatel@google.com> Reviewed-by: Carlos Amedee <carlos@golang.org> LUCI-...
[ { "path": "src/crypto/internal/fips140/pbkdf2/pbkdf2.go", "patch": "@@ -24,7 +24,7 @@ func Key[Hash hash.Hash](h func() Hash, password string, salt []byte, iter, keyL\n \tsetServiceIndicator(salt, keyLength)\n \n \tif keyLength <= 0 {\n-\t\treturn nil, errors.New(\"pkbdf2: keyLength must be larger than 0\")...
2026-04-09T21:22:13
mrdoob/three.js
a6ef8f570264b88997426fdfd633361cd8d8f336
37a0863cc7ce723922c67feb9cca30cdb5d2a637
WebGPURenderer: Fix WebGPU render bundle reuse across render contexts (#33335)
[ { "path": "src/renderers/common/RenderBundle.js", "patch": "@@ -11,11 +11,13 @@ class RenderBundle {\n \t *\n \t * @param {BundleGroup} bundleGroup - The bundle group.\n \t * @param {Camera} camera - The camera the bundle group is rendered with.\n+\t * @param {RenderContext} renderContext - The render conte...
2026-04-05T07:48:55
vuejs/vue
83d95351a9f809311d624fc3398e7f6829b72447
24fcf69624a633d43dfc0aa5fa6b93d11de7fad5
fix(compiler-sfc): check template `ref` usage, (#12985) close #12984
[ { "path": "packages/compiler-sfc/src/compileScript.ts", "patch": "@@ -1818,6 +1818,8 @@ function resolveTemplateUsageCheckString(sfc: SFCDescriptor, isTS: boolean) {\n if (value) {\n code += `,${processExp(value, isTS, baseName)}`\n }\n+ } else if (name === 'ref') {\n+...
2023-12-07T06:14:27
golang/go
0eb3e5736d2134b1ed2d14b3b25c831bd6adbec6
be193f3a97dce50bad1cf6100aa662c2f6ba57f7
spec: fix prose in Instantiatons section For #77273. Change-Id: Idf5b81f77115e4e30921476f7424769fdf604ef4 Reviewed-on: https://go-review.googlesource.com/c/go/+/764920 Reviewed-by: Alan Donovan <adonovan@google.com> TryBot-Bypass: Robert Griesemer <gri@google.com> Auto-Submit: Robert Griesemer <gri@google.com> Review...
[ { "path": "doc/go_spec.html", "patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Language version go1.27 (April 7, 2026)\",\n+\t\"Subtitle\": \"Language version go1.27 (April 9, 2026)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -4398,8 +4398,...
2026-04-09T19:34:27
denoland/deno
1d69e90ed958eb30e4148bc2c973842d44cbd83c
b1acf1c32b0ab2734e6d7e76594d987c236487a7
fix(ext/napi): use per-isolate Private key for napi_wrap/napi_unwrap (#33204) ## Summary - **Root cause**: Each `op_napi_open` call created a unique `v8::Private` symbol for `napi_wrap` and `type_tag`. Since `v8::Private::new()` always creates a distinct symbol, objects wrapped by one native addon could not be unwrap...
[ { "path": "ext/napi/lib.rs", "patch": "@@ -326,6 +326,12 @@ pub struct NapiState {\n /// Matches Node.js `finalizing_reflist` / `reflist` behavior.\n pub ref_tracker: Rc<RefCell<Vec<PendingNapiFinalizer>>>,\n pub env_shared_ptrs: Vec<*mut EnvShared>,\n+ /// Per-isolate V8 Private key for napi_wrap/na...
2026-04-09T10:19:07
mrdoob/three.js
4a5f5b33f903c17260f14da9f33b836971b8f227
6b0c51ece53d5e1c7e4f491651f6daaa18556ed3
Dev: Execute `npm audit fix`. (#33333)
[ { "path": "package-lock.json", "patch": "@@ -1214,9 +1214,9 @@\n \"license\": \"MIT\"\n },\n \"node_modules/brace-expansion\": {\n- \"version\": \"1.1.12\",\n- \"resolved\": \"https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz\",\n- \"integrity\": \"sha512-9...
2026-04-04T10:00:18
golang/go
be193f3a97dce50bad1cf6100aa662c2f6ba57f7
28c56bb5fb438d46d921a37f2e172ecf198f75c2
cmd/go: use fsys.ReadDir for IsStandardPackage FIPS140 crypto files will be bound into the virtual filesystem using the fsys package. So IsStandardPackage needs to use fsys.ReadDir to check that the fips140 packages are standard packages rather than os.ReadDir because os.ReadDir doesn't know about the overlay. It wou...
[ { "path": "src/cmd/go/internal/modindex/read.go", "patch": "@@ -680,7 +680,7 @@ func (rp *IndexPackage) Import(bctxt build.Context, mode build.ImportMode) (p *b\n // and otherwise falling back to internal/goroot.IsStandardPackage\n func IsStandardPackage(goroot_, compiler, path string) bool {\n \tif !enable...
2026-04-03T19:03:36
denoland/deno
34ed78ae521a5bc18ef9c28cab96aad5fa94d359
928e94414db217f0b38002a0de618509fe987b26
feat(ext/node): add llhttp-based HTTPParser with native cppgc binding (#33202) ## Summary Add a native HTTP/1.1 parser based on Node.js's llhttp library, exposed as a cppgc `HTTPParser` object matching Node's `internalBinding('http_parser')` API. This is the foundation for replacing hyper-based HTTP processing with l...
[ { "path": "Cargo.lock", "patch": "@@ -2751,6 +2751,7 @@ dependencies = [\n \"boxed_error\",\n \"brotli\",\n \"bytes\",\n+ \"cc\",\n \"data-encoding\",\n \"deno_ast\",\n \"deno_core\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "ext/node/Cargo.toml", "p...
2026-04-09T07:34:40
vuejs/vue
24fcf69624a633d43dfc0aa5fa6b93d11de7fad5
6d857f5bee275dc98106e3b2cbc7722f5ec0cfc0
fix(types): type VNodeChildren should allow type number (#13067) close #12973
[ { "path": "types/vnode.d.ts", "patch": "@@ -22,6 +22,7 @@ type ScopedSlotReturnValue =\n | VNode\n | string\n | boolean\n+ | number\n | null\n | undefined\n | ScopedSlotReturnArray\n@@ -37,6 +38,7 @@ export type VNodeChildren =\n | [ScopedSlot]\n | string\n | boolean\n+ | number\n | nu...
2023-12-07T05:59:43
mrdoob/three.js
e62f72d7de74e82d73ab43ab4830effe642ac22d
9c53443573a19e588770eff2c8655f9899e932f5
FBXLoader: Fix opacity fallback. (#33325)
[ { "path": "examples/jsm/loaders/FBXLoader.js", "patch": "@@ -601,7 +601,8 @@ class FBXTreeParser {\n \n \t\t}\n \n-\t\t// the transparency handling is implemented based on Blender/Unity's approach: https://github.com/sobotka/blender-addons/blob/7d80f2f97161fc8e353a657b179b9aa1f8e5280b/io_scene_fbx/import_fb...
2026-04-03T14:37:21
golang/go
28c56bb5fb438d46d921a37f2e172ecf198f75c2
f6d825cd3a7f98fbb48880b791b4c2be8cecddf3
cmd/go: build pkgsite doc command in same go command invocation Instead of running go run. This is enabled by Ian Alexander's work to remove global state in the loader package. This also fixes an issue where we can't build and run the pkgsite binary because, with our GOPROXY setting, if pkgsite module is available in...
[ { "path": "src/cmd/go/internal/doc/doc.go", "patch": "@@ -222,16 +222,16 @@ func do(ctx context.Context, writer io.Writer, flagSet *flag.FlagSet, args []str\n \t\t\tmod, err := runCmd(append(os.Environ(), \"GOWORK=off\"), \"go\", \"list\", \"-m\")\n \t\t\tif err == nil && mod != \"\" && mod != \"command-lin...
2026-04-07T21:15:10
denoland/deno
928e94414db217f0b38002a0de618509fe987b26
d62e2fd77e338b573354233e7e58b67a3171093d
fix(runtime): cache canonicalized watch paths, fix spurious events (#33123) ## Summary - Pre-canonicalize watched paths once at `op_fs_events_open` time instead of calling `canonicalize()` on both the event path and the watched path on every filesystem event for every watcher - Previously `starts_with_canonicalized` d...
[ { "path": "runtime/ops/fs_events.rs", "patch": "@@ -92,31 +92,93 @@ impl From<NotifyEvent> for FsEvent {\n }\n }\n \n-type WatchSender = (Vec<PathBuf>, mpsc::Sender<Result<FsEvent, NotifyError>>);\n+struct WatchSender {\n+ /// Original paths as provided by the caller.\n+ paths: Vec<PathBuf>,\n+ /// Pre...
2026-04-08T19:45:21
vuejs/vue
6d857f5bee275dc98106e3b2cbc7722f5ec0cfc0
a174c29dab2cf655b06f7870e0ac5a78ef35ec8a
fix(watch): new property addition should trigger deep watcher with getter close #12967 close #12972
[ { "path": "src/v3/apiWatch.ts", "patch": "@@ -185,8 +185,11 @@ function doWatch(\n }\n \n const instance = currentInstance\n- const call = (fn: Function, type: string, args: any[] | null = null) =>\n- invokeWithErrorHandling(fn, null, args, instance, type)\n+ const call = (fn: Function, type: strin...
2023-12-06T16:13:31
golang/go
f6d825cd3a7f98fbb48880b791b4c2be8cecddf3
b67dcb53be7f779cbea922688bf336fad6adc24d
crypto/internal/fips140/edwards25519/field: fix Invert comment Pointed out by Alexander Yastrebov in FiloSottile/edwards25519#48. Change-Id: I8ff0b761ff49ad454159f749e3e07ed86a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/745900 Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> Reviewed-by: Juny...
[ { "path": "src/crypto/internal/fips140/edwards25519/field/fe.go", "patch": "@@ -116,7 +116,7 @@ func (v *Element) Negate(a *Element) *Element {\n // If z == 0, Invert returns v = 0.\n func (v *Element) Invert(z *Element) *Element {\n \t// Inversion is implemented as exponentiation with exponent p − 2. It us...
2026-02-15T20:27:08
vuejs/vue
a174c29dab2cf655b06f7870e0ac5a78ef35ec8a
f5ef882a781b8a62c9ca00e95006d07636567c8e
fix(types): fix shallowRef's return type (#12979) close #12978
[ { "path": "src/v3/reactivity/ref.ts", "patch": "@@ -40,9 +40,7 @@ export function isRef(r: any): r is Ref {\n return !!(r && (r as Ref).__v_isRef === true)\n }\n \n-export function ref<T extends object>(\n- value: T\n-): [T] extends [Ref] ? T : Ref<UnwrapRef<T>>\n+export function ref<T extends Ref>(value...
2023-12-06T15:51:56
denoland/deno
b06fcf884ee1b729645b9e4719aadfbe6ee746d2
7cd968cb16253c4019474d7aaa33fca685a2eaf0
Revert "feat(add/install): default to npm registry for unprefixed packages (#33156) (#33214) This reverts commit 6b44f6d6babb98778177bf0738962c764e41fc5f. This will be relanded for Deno v2.8.
[ { "path": "cli/args/flags.rs", "patch": "@@ -6056,9 +6056,7 @@ fn add_parse_inner(\n } else if matches.get_flag(\"jsr\") {\n Some(DefaultRegistry::Jsr)\n } else {\n- // Default to npm when no --npm or --jsr flag is provided.\n- // This allows `deno add express` to work without requiring `npm:`...
2026-04-08T18:26:28
mrdoob/three.js
29ee96253ecee0c42edbd30e40370e536a120322
965f22fd423b4b5847647d3423e85872b01617d8
FBXLoader: Fix rotation animations. (#33323)
[ { "path": "examples/jsm/loaders/FBXLoader.js", "patch": "@@ -2779,7 +2779,13 @@ class AnimationParser {\n \n \t\t\t\t\t\t\t\t\t\t\tnode.transform = child.matrix;\n \n-\t\t\t\t\t\t\t\t\t\t\tif ( child.userData.transformData ) node.eulerOrder = child.userData.transformData.eulerOrder;\n+\t\t\t\t\t\t\t\t\t\t\t...
2026-04-03T13:05:29
golang/go
b67dcb53be7f779cbea922688bf336fad6adc24d
86241330242b57fd73f13014556cbd7ba4c1c1bc
crypto/internal/fips140/edwards25519: fix zero coeff. skip optimization This was reported first by Adrian Grigore in private and then by github.com/shaharcohen1 in FiloSottile/edwards25519#53. fips140: off goos: linux goarch: amd64 pkg: crypto/internal/fips140/edwards25519 cpu: AMD EPYC 7443P 24-Core Processor ...
[ { "path": "src/crypto/internal/fips140/edwards25519/scalarmult.go", "patch": "@@ -167,10 +167,11 @@ func (v *Point) VarTimeDoubleScalarBaseMult(a *Scalar, A *Point, b *Scalar) *Poi\n \n \t// Find the first nonzero coefficient.\n \ti := 255\n-\tfor j := i; j >= 0; j-- {\n-\t\tif aNaf[j] != 0 || bNaf[j] != 0 ...
2026-02-15T19:52:50
vuejs/vue
f5ef882a781b8a62c9ca00e95006d07636567c8e
d6468c4c383184acd66f3c9091005e83836a43f3
fix(style): always set new styles close #12901 close #12946
[ { "path": "src/platforms/web/runtime/modules/style.ts", "patch": "@@ -91,10 +91,8 @@ function updateStyle(oldVnode: VNodeWithData, vnode: VNodeWithData) {\n }\n for (name in newStyle) {\n cur = newStyle[name]\n- if (cur !== oldStyle[name]) {\n- // ie9 setting to null has no effect, must use ...
2023-12-06T15:17:02
denoland/deno
7cd968cb16253c4019474d7aaa33fca685a2eaf0
5085a59aef53fa90dc58c8859e4feb887f0a742a
fix(core): free UvLoopInner on uv_loop_t drop to prevent worker memory leak (#33200) ## Summary - Add `Drop` impl for `uv_loop_t` to free the `UvLoopInner` allocation that was previously leaked on every Web Worker teardown - Each worker's `JsRuntime` creates a `uv_loop_t` via `uv_loop_init`, which heap-allocates a `U...
[ { "path": "libs/core/uv_compat.rs", "patch": "@@ -102,6 +102,22 @@ pub struct uv_loop_t {\n stop_flag: Cell<bool>,\n }\n \n+impl Drop for uv_loop_t {\n+ fn drop(&mut self) {\n+ if !self.internal.is_null() {\n+ // SAFETY: `internal` was allocated by `uv_loop_init` as\n+ // `Box::into_raw(Box:...
2026-04-08T14:10:47
mrdoob/three.js
965f22fd423b4b5847647d3423e85872b01617d8
582a03b74d843d2c99082aa84589a228b480d262
FBXLoader: Fix `penumbra` computation. (#33321)
[ { "path": "examples/jsm/loaders/FBXLoader.js", "patch": "@@ -1290,21 +1290,24 @@ class FBXTreeParser {\n \n \t\t\t\tcase 2: // Spot\n \t\t\t\t\tlet angle = Math.PI / 3;\n+\t\t\t\t\tlet penumbra = 0;\n \n-\t\t\t\t\tif ( lightAttribute.InnerAngle !== undefined ) {\n+\t\t\t\t\tif ( lightAttribute.OuterAngle !=...
2026-04-03T09:51:57
golang/go
6c087a167e562242d21c702b2b66fc8329a14322
15da1c91cd35ccf8129464ee10997622eac7cdc5
net: remove always-nil newFD error return value newFD never returns an error on any of the platforms that define it. Drop the always-nil error to simplify callers. Change-Id: I727e95a0dac51ef70497ea1295276a8a6dce7f08 Reviewed-on: https://go-review.googlesource.com/c/go/+/764620 LUCI-TryBot-Result: Go LUCI <golang-sco...
[ { "path": "src/net/fd_plan9.go", "patch": "@@ -27,7 +27,7 @@ type netFD struct {\n \n var netdir = \"/net\" // default network\n \n-func newFD(net, name string, listen, ctl, data *os.File, laddr, raddr Addr) (*netFD, error) {\n+func newFD(net, name string, listen, ctl, data *os.File, laddr, raddr Addr) *net...
2026-04-09T14:07:19
vuejs/vue
25f97a5033187372e7b8c591c79336197ee5c833
10c2a87c7038f2f80df23044c48a130bea253bf8
fix(compiler-sfc): fix rewriteDefault edge cases close #13060 close #12892 close #12906
[ { "path": "packages/compiler-sfc/src/compileScript.ts", "patch": "@@ -1575,7 +1575,7 @@ function extractRuntimeEmits(\n }\n \n function extractEventNames(\n- eventName: Identifier | RestElement,\n+ eventName: ArrayPattern | Identifier | ObjectPattern | RestElement,\n emits: Set<string>\n ) {\n if (", ...
2023-12-06T09:25:12
denoland/deno
5085a59aef53fa90dc58c8859e4feb887f0a742a
8295a2cf2aabe2ecd9ccce8a802d0d5d61095a2e
fix(ext/node): throw on cipher update with input >= 2^31-1 bytes (#33201) ## Summary - Adds size validation in `Cipheriv.prototype.update` and `Decipheriv.prototype.update` to throw when input length >= 2^31 - 1 bytes - Matches Node.js/OpenSSL behavior where `EVP_EncryptUpdate`/`EVP_DecryptUpdate` use `int` for input ...
[ { "path": "ext/node/polyfills/internal/crypto/cipher.ts", "patch": "@@ -321,6 +321,12 @@ Cipheriv.prototype.update = function (\n if (typeof data === \"string\") {\n buf = Buffer.from(data, inputEncoding);\n }\n+\n+ // Match Node.js/OpenSSL behavior: reject inputs >= INT_MAX bytes\n+ if (buf.lengt...
2026-04-08T14:10:16
mrdoob/three.js
582a03b74d843d2c99082aa84589a228b480d262
90aeab4fe7e1c352d0a35d9c57036d165dae57e8
fix: dispose variable ShaderMaterials in GPUComputationRenderer.dispose() (#33318) Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
[ { "path": "examples/jsm/misc/GPUComputationRenderer.js", "patch": "@@ -339,6 +339,8 @@ class GPUComputationRenderer {\n \n \t\t\t\t}\n \n+\t\t\t\tvariable.material.dispose();\n+\n \t\t\t}\n \n \t\t};", "additions": 2, "deletions": 0, "language": "JavaScript" } ]
2026-04-03T08:13:46
golang/go
15da1c91cd35ccf8129464ee10997622eac7cdc5
e122bcdc9d567c21a72ba5851488edbd073d7bfe
cmd/go/internal/modload: fix logged filename for 'go mod init -modfile' Fix 'go mod init -modfile=tools.mod module' which prints 'creating new go.mod' instead of 'creating new tools.mod'. Note that -modfile already works, but isn't yet documented and this is the subject of proposal #78503, so this patch is the minima...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -1203,7 +1203,11 @@ func CreateModFile(ld *Loader, ctx context.Context, modPath string) {\n \t}\n \tcheckModulePath(modPath)\n \n-\tfmt.Fprintf(os.Stderr, \"go: creating new go.mod: module %s\\n\", modPath)\n+\tif cfg.ModFile != \"\" {\n+\t\tfmt....
2026-04-02T11:06:28
vuejs/vue
ae3e4b1c706b8d61a4a312ca5d23441df021b4b4
de0b97b3eadae120eda505b45df2de2115dcb6f0
fix(utils): unwrap refs when stringifying values in template close #12884 close #12888
[ { "path": "src/shared/util.ts", "patch": "@@ -90,10 +90,18 @@ export function toString(val: any): string {\n return val == null\n ? ''\n : Array.isArray(val) || (isPlainObject(val) && val.toString === _toString)\n- ? JSON.stringify(val, null, 2)\n+ ? JSON.stringify(val, replacer, 2)\n : ...
2023-12-06T08:38:16
denoland/deno
8295a2cf2aabe2ecd9ccce8a802d0d5d61095a2e
3ec37cc7e012dc091fb7f592dcbb971fd207f926
fix(node): validate resolved main path stays within package directory (#33170) ## Summary - Adds path validation to `legacy_main_resolve` to ensure the resolved `main` field from `package.json` doesn't resolve outside the package directory - This matches the existing validation already present in `resolve_package_targ...
[ { "path": "ext/node/polyfills/01_require.js", "patch": "@@ -359,6 +359,22 @@ function tryPackage(requestPath, exts, isMain, originalPath) {\n }\n \n const filename = pathResolve(requestPath, pkg);\n+ // Ensure the resolved main path doesn't escape the package directory\n+ // via path traversal (e.g. \...
2026-04-08T07:43:14
mrdoob/three.js
13a06fc663fcf35de89a1044f64b40ef499e6f2e
d2d9d4069320de51d2e7f36855375f4640578ecb
FBXLoader: Add skinning fixes. (#33316)
[ { "path": "examples/jsm/loaders/FBXLoader.js", "patch": "@@ -824,8 +824,6 @@ class FBXTreeParser {\n \t\t\t\tindices: [],\n \t\t\t\tweights: [],\n \t\t\t\ttransformLink: new Matrix4().fromArray( boneNode.TransformLink.a ),\n-\t\t\t\t// transform: new Matrix4().fromArray( boneNode.Transform.a ),\n-\t\t\t\t//...
2026-04-02T14:48:29
golang/go
e122bcdc9d567c21a72ba5851488edbd073d7bfe
c4cb9a90f6b5bf0dbe8b8fe3bf994c0c50c08aaf
cmd/go: respect -short flag when documenting individual symbols The -short flag was ignored when documenting individual symbols (functions, types, or variables) with "go doc -short package.symbol". This change adds short flag checks to symbolDoc, typeDoc, and valueDoc functions. Fixes #77192 Change-Id: I66935ceb5ffb...
[ { "path": "src/cmd/go/internal/doc/pkg.go", "patch": "@@ -808,9 +808,14 @@ func (pkg *Package) symbolDoc(symbol string) bool {\n \tfor _, fun := range pkg.findFuncs(symbol) {\n \t\t// Symbol is a function.\n \t\tdecl := fun.Decl\n+\t\tfound = true\n+\t\tif short {\n+\t\t\tpkg.Printf(\"%s\\n\", pkg.oneLineNo...
2026-04-08T15:07:16
vuejs/vue
de0b97b3eadae120eda505b45df2de2115dcb6f0
45d6ad6645e960a3ee52ad9667520a1625f10dfd
fix(types): fix type augmentation and compiler-sfc types w/moduleResolution: bundler (#13107) close #13106
[ { "path": "package.json", "patch": "@@ -18,19 +18,20 @@\n ],\n \"exports\": {\n \".\": {\n+ \"types\": \"./types/index.d.ts\",\n \"import\": {\n \"node\": \"./dist/vue.runtime.mjs\",\n \"default\": \"./dist/vue.runtime.esm.js\"\n },\n- \"require\": \"./dist/vue....
2023-12-06T07:52:18
mrdoob/three.js
75ae80b3aa4326b23fce73ebb11b85412073859c
cbf6fff0287c3d259a17af418a549f8598eb47ed
Update incorrect documentation for setMatrixAt (#33310)
[ { "path": "src/objects/InstancedMesh.js", "patch": "@@ -341,7 +341,7 @@ class InstancedMesh extends Mesh {\n \n \t/**\n \t * Sets the given local transformation matrix to the defined instance. Make sure you set the `needsUpdate` flag of\n-\t * {@link InstancedMesh#instanceMatrix} to `true` after updating al...
2026-04-02T07:57:22
golang/go
c4cb9a90f6b5bf0dbe8b8fe3bf994c0c50c08aaf
b3c54d2e597ee67939f9abc2ec8aaca841fb1138
cmd/internal/tesdir: fix Test/codegen/switch on loong64 loong64 uses ALSLV the compute the lookup index. Fixes #78575 Change-Id: Ied90a4f811cc19ffec4d304333546d1fa430ccc0 Reviewed-on: https://go-review.googlesource.com/c/go/+/764180 Reviewed-by: abner chenc <chenguoqi@loongson.cn> Reviewed-by: Keith Randall <khr@gol...
[ { "path": "test/codegen/switch.go", "patch": "@@ -134,7 +134,6 @@ func floatLookup(x int) float64 {\n func stringLookup(x int) string {\n \t// amd64:`LEAQ .*\\(SB\\)` -`JMP \\(.*\\)\\(.*\\)$`\n \t// arm64:-`JMP \\(R.*\\)$`\n-\t// loong64:-`ALSLV`\n \tswitch x {\n \tcase 1:\n \t\treturn \"a\"\n@@ -161,7 +160...
2026-04-08T16:14:28
denoland/deno
3ec37cc7e012dc091fb7f592dcbb971fd207f926
b8ec8611217c6bdd0a1821c16a45869489910358
refactor(ext/node): wire up native TLSWrap from JS (#33184) Replace the `kStreamBaseField`-based TLS implementation with a native `TLSWrap` cppgc object backed by rustls. This eliminates the async stream-swap pattern where TLS upgrades worked by swapping `handle[kStreamBaseField]` from a `TcpConn` to a `TlsConn`. Key...
[ { "path": "ext/node/lib.rs", "patch": "@@ -444,6 +444,7 @@ deno_core::extension!(deno_node,\n \"internal_binding/string_decoder.ts\",\n \"internal_binding/symbols.ts\",\n \"internal_binding/tcp_wrap.ts\",\n+ \"internal_binding/tls_wrap.ts\",\n \"internal_binding/tty_wrap.ts\",\n \"int...
2026-04-08T07:15:23
vuejs/vue
0ad8e8d94f3a3bf4429f25850c85a6bbb2b81364
d30f6fd25f90973a84fadb43eef75a54c4b42ea2
fix(shallowReactive): should track value if already reactive when set in shallowReactive
[ { "path": "src/core/instance/state.ts", "patch": "@@ -110,10 +110,10 @@ function initProps(vm: Component, propsOptions: Object) {\n )\n }\n },\n- true\n+ true /* shallow */\n )\n } else {\n- defineReactive(props, key, value, undefined, true)\n+ ...
2023-12-06T07:45:15
mrdoob/three.js
be5aee80df446c5100ec2014e7418a34f3b343da
8ad5f7cb6feacb4bcecee18a938e287ced8142e2
WGSLNodeBuilder: Fix `textureDimensions()` cache scope (#33312)
[ { "path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js", "patch": "@@ -436,7 +436,7 @@ class WGSLNodeBuilder extends NodeBuilder {\n \t */\n \tgenerateTextureDimension( texture, textureProperty, levelSnippet ) {\n \n-\t\tconst textureData = this.getDataFromNode( texture, this.shaderStage, this.globalCache...
2026-04-02T03:30:55
vuejs/vue
d30f6fd25f90973a84fadb43eef75a54c4b42ea2
08382f008016c3b3b93f84594266f2e191fee91d
test: fix tests
[ { "path": "packages/compiler-sfc/test/__snapshots__/compileScript.spec.ts.snap", "patch": "@@ -93,7 +93,7 @@ exports[`SFC compile <script setup> > <script> and <script setup> co-usage > scr\n \"import { defineComponent as _defineComponent } from 'vue'\n \n const __default__ = {\n- name: \\\\\"t...
2023-12-06T07:21:00
golang/go
455d4f41fb1c2bf48645b4904a8ee293272c90db
996b985008c7615004c0dbe8b031928faff3c993
cmd/compile: run CondSelect into math rules on all arches Fixes #78558 I've also added tests to make sure PPC still generate ISEL when the constant isn't 1. This is to make sure we aren't generating a sequence that wouldn't work right now. But it does not mean we couldn't try to optimize other constants on PPC64 if ...
[ { "path": "src/cmd/compile/internal/ssa/rewrite.go", "patch": "@@ -2834,6 +2834,9 @@ func rewriteCondSelectIntoMath(config *Config, op Op, constant int64) bool {\n \t\t\t\treturn true\n \t\t\t}\n \t\t}\n+\tdefault:\n+\t\t// TODO: fine tune for other architectures.\n+\t\treturn constant == 1\n \t}\n \treturn...
2026-04-07T09:57:56
denoland/deno
b8ec8611217c6bdd0a1821c16a45869489910358
a55464066dc4fe9814d633e9c87592a140a62930
fix(ext/webgpu): accept `ArrayBuffer` in `GPUQueue.writeBuffer()` as data source (#33152) Fixes #33151
[ { "path": "ext/webgpu/queue.rs", "patch": "@@ -159,6 +159,13 @@ impl GPUQueue {\n // SAFETY: the slice is within the bounds of the backing store\n unsafe { std::slice::from_raw_parts(ptr as *const u8, byte_len) };\n (buf, bpe)\n+ } else if let Ok(ab) = v8::Local::<v8::ArrayBuffe...
2026-04-08T06:57:01
mrdoob/three.js
967be2b709a9715f46199ddb2cfcb97a867bce9a
1e144d8784851c9512465084328eee096aac5676
Update GTAONode.js Fix docs.
[ { "path": "examples/jsm/tsl/display/GTAONode.js", "patch": "@@ -26,7 +26,7 @@ let _rendererState;\n *\n * const aoPass = ao( scenePassDepth, scenePassNormal, camera );\n *\n- * renderPipeline.outputNode = aoPass.getTextureNode().mul( scenePassColor );\n+ * renderPipeline.outputNode = scenePassColor.mul( ...
2026-04-01T18:50:18
golang/go
996b985008c7615004c0dbe8b031928faff3c993
e67d773034fde21e6f726c4add5eeba5882198ae
cmd/compile: improve stp merging for non-sequent cases Original algorithm merges stores with the first mergeable store in the chain, but it misses some cases. Additionally, creating list of STs, which store data to adjacent memory cells allows merging them according to the direction of increase of their addresses. I ...
[ { "path": "src/cmd/compile/internal/ssa/pair.go", "patch": "@@ -320,10 +320,70 @@ func memoryBarrierTest(b *Block) bool {\n \treturn false\n }\n \n+// pairStores merges store instructions.\n+// It collects stores into a buffer where they can be freely reordered.\n+// When encountering an instruction that ca...
2026-03-27T10:15:45
vuejs/vue
08382f008016c3b3b93f84594266f2e191fee91d
947993f7e8e445b9032dd59d7f484593c3174452
fix(props): should not unwrap props that are raw refs close #12930
[ { "path": "src/core/instance/state.ts", "patch": "@@ -95,19 +95,25 @@ function initProps(vm: Component, propsOptions: Object) {\n vm\n )\n }\n- defineReactive(props, key, value, () => {\n- if (!isRoot && !isUpdatingChildComponent) {\n- warn(\n- `Avoid ...
2023-12-06T07:10:49
mrdoob/three.js
077dd13c0e869d9f3dbe55875686f920367de457
f3fd5697e361007dda39bd4fe0cecff688f58f5e
USDComposer: Fix uv data for multi-material meshes. (#33297)
[ { "path": "examples/jsm/loaders/usd/USDComposer.js", "patch": "@@ -1998,10 +1998,17 @@ class USDComposer {\n \n \t\t// Triangulate original data using consistent pattern\n \t\tconst { indices: origIndices, pattern: triPattern } = this._triangulateIndicesWithPattern( faceVertexIndices, faceVertexCounts, poin...
2026-03-31T12:01:55
denoland/deno
a55464066dc4fe9814d633e9c87592a140a62930
9df8007ebc67af49f4055b465b81570dd0faf845
fix(core): use c_char instead of i8 in uv_buf_t base cast (#33179) Ran into this in nixpkgs, build fails for `aarch64-linux`: https://github.com/NixOS/nixpkgs/issues/506707 🤖 Generated with [Claude Code](https://claude.com/claude-code)
[ { "path": "libs/core/uv_compat/tests.rs", "patch": "@@ -2,6 +2,7 @@\n \n use std::cell::Cell;\n use std::cell::RefCell;\n+use std::ffi::c_char;\n use std::ffi::c_void;\n use std::future::poll_fn;\n use std::rc::Rc;\n@@ -1791,7 +1792,7 @@ async fn tcp_close_cancels_pending_writes() {\n unsafe {\n (...
2026-04-08T06:52:49
vuejs/vue
c22363425ae246ccbb8418342e94edfa270d93e5
51fef2ca69459c1175e105991f60511f1996e0c8
fix(patch): clone insert hooks to avoid being mutated during iteration (#12905)
[ { "path": "src/core/vdom/patch.ts", "patch": "@@ -878,8 +878,11 @@ export function createPatchFunction(backend) {\n const insert = ancestor.data.hook.insert\n if (insert.merged) {\n // start at index 1 to avoid re-invoking component mounted hook\n- ...
2023-10-23T07:11:13
golang/go
7c5ab4118014acd1e7c0fc67028186a4985c0a28
5d6aa23e5b6151d25955a512532383c28c745e18
net: document LookupSRV cname return value Document that the first return value of LookupSRV is the canonical name of the DNS target that was looked up, which may differ from the input name due to CNAME records. Fixes #49982 Change-Id: I574e0f5cdc381d3d9b11b5bd7a5acbea2c9e185d GitHub-Last-Rev: 9c756d48d55587f373c7cf...
[ { "path": "src/net/lookup.go", "patch": "@@ -487,6 +487,11 @@ func (r *Resolver) LookupCNAME(ctx context.Context, host string) (string, error)\n // publishing SRV records under non-standard names, if both service\n // and proto are empty strings, LookupSRV looks up name directly.\n //\n+// The returned cnam...
2026-02-09T02:43:54
mrdoob/three.js
f3fd5697e361007dda39bd4fe0cecff688f58f5e
332ec85f5fa8b861209142103711d8553421cb8e
WebGPURenderer: Fix texture issues. (#33296)
[ { "path": "src/renderers/common/Info.js", "patch": "@@ -3,7 +3,7 @@ import {\n \tByteType, UnsignedByteType, ShortType, UnsignedShortType, HalfFloatType,\n \tIntType, UnsignedIntType, FloatType,\n \tAlphaFormat, RedFormat, RedIntegerFormat, DepthFormat, DepthStencilFormat,\n-\tRGBFormat,\n+\tRGFormat, RGInt...
2026-03-31T10:03:55
denoland/deno
9df8007ebc67af49f4055b465b81570dd0faf845
2c4f99e0e715002e732a4e1fbe154b9c582f7f2c
fix(ext/node): add dns.getDefaultResultOrder() API (#33197) ## Summary - Adds the missing `getDefaultResultOrder()` export to `dns`, `dns.promises`, and `dns/promises` Node.js compat modules - This API exists in Node.js and returns the current default DNS result ordering (`"ipv4first"`, `"ipv6first"`, or `"verbatim"`)...
[ { "path": "ext/node/polyfills/dns.ts", "patch": "@@ -1003,6 +1003,7 @@ export const CANCELLED = \"ECANCELLED\";\n \n const promises = {\n ...promisesBase,\n+ getDefaultResultOrder: getDefaultDnsOrder,\n setDefaultResultOrder,\n setServers,\n \n@@ -1033,6 +1034,8 @@ const promises = {\n CANCELLED,\n...
2026-04-08T06:24:16
vuejs/vue
51fef2ca69459c1175e105991f60511f1996e0c8
b8c8b3fc7a211744fdabd237a1a986a1f80b7c43
fix(compiler-sfc): add semicolon after `defineProps` statement (#12879)
[ { "path": "packages/compiler-sfc/src/compileScript.ts", "patch": "@@ -1125,15 +1125,15 @@ export function compileScript(\n startOffset,\n `\\nconst ${propsIdentifier} = __props${\n propsTypeDecl ? ` as ${genSetupPropsType(propsTypeDecl)}` : ``\n- }\\n`\n+ };\\n`\n )\n }\n...
2023-10-23T07:09:23
golang/go
5d6aa23e5b6151d25955a512532383c28c745e18
352d76b2912b20ede8b3238fc2ed7b697bc2695b
cmd/go: use MkdirTemp to create temp directory for "go bug" Don't use a predictable, potentially attacker-controlled filename in /tmp. Fixes #78584 Fixes CVE-2026-39819 Change-Id: I72116aa6dd8fa50f65b6dc0292a15a8c6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/763882 Reviewed-by: Nicholas Husin <husi...
[ { "path": "src/cmd/go/internal/bug/bug.go", "patch": "@@ -184,14 +184,14 @@ func firstLine(buf []byte) []byte {\n // printGlibcVersion prints information about the glibc version.\n // It ignores failures.\n func printGlibcVersion(w io.Writer) {\n-\ttempdir := os.TempDir()\n-\tif tempdir == \"\" {\n+\ttempdi...
2026-04-08T16:55:54
mrdoob/three.js
332ec85f5fa8b861209142103711d8553421cb8e
e48228fe1d65a214cd2ecfb8bbacb2063d9dc076
USDComposer: Fix reference parsing. (#33294)
[ { "path": "examples/jsm/loaders/usd/USDComposer.js", "patch": "@@ -625,56 +625,71 @@ class USDComposer {\n \t\t\tconst typeName = spec.fields.typeName;\n \n \t\t\t// Check for references/payloads\n-\t\t\tconst refValue = this._getReference( spec );\n-\t\t\tif ( refValue ) {\n+\t\t\tconst refValues = this._g...
2026-03-31T08:49:41
denoland/deno
2c4f99e0e715002e732a4e1fbe154b9c582f7f2c
e5150f526de240155f225a194a38222d6a6b2377
fix(otel): add timeout to OTEL HTTP exporter to prevent hangs (#33159) ## Summary - Fixes #33157 — `deno run` with `OTEL_DENO=true` hangs indefinitely when no OTEL collector is running - The OTEL HTTP exporter had no timeout on requests, so during shutdown it would block forever trying to connect to `localhost:4317` -...
[ { "path": "ext/telemetry/lib.rs", "patch": "@@ -510,6 +510,7 @@ mod hyper_client {\n use std::fmt::Debug;\n use std::pin::Pin;\n use std::task::Poll;\n+ use std::time::Duration;\n \n use deno_net::tunnel::TunnelConnection;\n use deno_net::tunnel::TunnelStream;\n@@ -753,9 +754,22 @@ mod hyper_clie...
2026-04-08T06:21:49
vuejs/vue
b8c8b3fc7a211744fdabd237a1a986a1f80b7c43
d27c128b7cb1640f3aa185a5ecdea4ff35763794
fix(compiler-sfc): Resolve object expression parsing errors in `v-on` (#12862)
[ { "path": "packages/compiler-sfc/src/compileScript.ts", "patch": "@@ -1841,7 +1841,7 @@ function processExp(exp: string, isTS: boolean, dir?: string): string {\n if (dir === 'slot') {\n exp = `(${exp})=>{}`\n } else if (dir === 'on') {\n- exp = `()=>{${exp}}`\n+ exp = `()=>{return ${...
2023-10-23T07:08:58
mrdoob/three.js
c0553ae6966096947e2b84499e788c52503a5a2e
87c407b70235a6cdf64f96fa3f74d6fb9b0ccbbc
WebGLOutput: Add DepthTexture to scene render target Attach a DepthTexture to the primary render target so post-processing effects passed to setEffects() can read scene depth. Also fix a missing dispose call for the depth texture. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
[ { "path": "src/renderers/webgl/WebGLOutput.js", "patch": "@@ -15,6 +15,7 @@ import { Float32BufferAttribute } from '../../core/BufferAttribute.js';\n import { RawShaderMaterial } from '../../materials/RawShaderMaterial.js';\n import { Mesh } from '../../objects/Mesh.js';\n import { OrthographicCamera } from...
2026-03-31T02:04:03
golang/go
1ea7966042731bae941511fb2b261b9536ad268f
22f65d37c46d8eb087d764a734693d0abe39080f
crypto/tls: prevent deadlock when client sends multiple key update messages When we made setReadTrafficSecret send an alert when there are pending handshake messages, we introduced a deadlock when the client sends multiple key update messages that request a response, as handleKeyUpdate will lock the mutex, and defer t...
[ { "path": "src/crypto/tls/conn.go", "patch": "@@ -1362,7 +1362,7 @@ func (c *Conn) handleKeyUpdate(keyUpdate *keyUpdateMsg) error {\n \t}\n \n \tnewSecret := cipherSuite.nextTrafficSecret(c.in.trafficSecret)\n-\tif err := c.setReadTrafficSecret(cipherSuite, QUICEncryptionLevelInitial, newSecret); err != nil...
2026-03-23T18:54:41
denoland/deno
e5150f526de240155f225a194a38222d6a6b2377
daeaf3c495d89a0234417b2eb4d6bd45cfe26cc2
fix(schema): fix the `publish: false` of deno.json schema (#33196) Fixed a bug that was overlooked in #30852
[ { "path": "cli/schemas/config-file.v1.json", "patch": "@@ -952,8 +952,7 @@\n }\n }, {\n \"description\": \"Disable publishing this package with deno publish\",\n- \"type\": \"boolean\",\n- \"const\": \"false\"\n+ \"const\": false\n }]\n },\n \"bench\"...
2026-04-08T06:06:32
vuejs/vue
d27c128b7cb1640f3aa185a5ecdea4ff35763794
bb59751dd4e45afcaafd607f22505a724b1ef841
fix(compiler-sfc): fix macro usage in multi-variable declaration (#12873)
[ { "path": "packages/compiler-sfc/src/compileScript.ts", "patch": "@@ -910,11 +910,11 @@ export function compileScript(\n } else {\n let start = decl.start! + startOffset\n let end = decl.end! + startOffset\n- if (i < total - 1) {\n- // not ...
2023-10-23T07:08:34
mrdoob/three.js
11e6acb93e826c62deb1e18cc251f6812e889cac
e13523a796b5cd4e4bcbb1fac9db96c410f05fd4
Examples: Fix links missing target="_blank" in webgl_loader_3dtiles example Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
[ { "path": "examples/webgl_loader_3dtiles.html", "patch": "@@ -36,12 +36,12 @@\n \t\t\t<a href=\"https://threejs.org\" target=\"_blank\" rel=\"noopener\">three.js</a> 3d tiles - <a href=\"https://github.com/NASA-AMMOS/3DTilesRendererJS\" target=\"_blank\" rel=\"noopener\">3d-tiles-renderer</a><br/>\n \t\t\tS...
2026-03-30T10:59:41
golang/go
22f65d37c46d8eb087d764a734693d0abe39080f
f5b77a7e2fa0f7ff346c665974a8eded367b1bc2
cmd/go: disallow cgo trust boundary bypass The cgo compiler implicitly trusts generated files with 'cgo' prefixes; thus, SWIG files containing 'cgo' in their names will cause bypass of the trust boundary, leading to code smuggling or arbitrary code execution. The cgo compiler will now produce an error if it encounter...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -3463,6 +3463,10 @@ func (b *Builder) swigIntSize(objdir string) (intsize string, err error) {\n \n // Run SWIG on one SWIG input file.\n func (b *Builder) swigOne(a *Action, file, objdir string, pcCFLAGS []string, cxx bool, intgosize string) error ...
2026-02-24T23:05:34
denoland/deno
b9434ee387bbbfecef06da2c2d4bc4ce7701da67
11db67aaa38dd552925c49d519bbc754fd3104f5
fix(repl): surface CDP protocol errors and fix race in wait_for_response (#33190) ## Summary - The REPL's `wait_for_response` silently swallowed CDP error responses (responses with an `"error"` field instead of `"result"`), converting them to `null`. This made the `npm_packages` test failure on Windows ARM64 impossib...
[ { "path": "cli/tools/repl/session.rs", "patch": "@@ -260,21 +260,35 @@ impl ReplSessionState {\n }\n \n async fn wait_for_response(&self, msg_id: i32) -> serde_json::Value {\n- if let Some(message_state) = self.0.lock().messages.remove(&msg_id) {\n- let InspectorMessageState::Ready(mut value) = ...
2026-04-07T06:36:49
vuejs/vue
bb59751dd4e45afcaafd607f22505a724b1ef841
099401e227fd5ed496ff615528d1a9b3b64d4fbf
fix(compiler-sfc): Optimize the value of emitIdentifier (#12851)
[ { "path": "packages/compiler-sfc/src/compileScript.ts", "patch": "@@ -414,7 +414,10 @@ export function compileScript(\n }\n \n if (declId) {\n- emitIdentifier = scriptSetup!.content.slice(declId.start!, declId.end!)\n+ emitIdentifier =\n+ declId.type === 'Identifier'\n+ ? d...
2023-10-23T07:08:17
mrdoob/three.js
e13523a796b5cd4e4bcbb1fac9db96c410f05fd4
d0d5c3675fb6d111640afd1ec8fe0542fc5c39bf
Bayer node: fix web worker usage (#33279) Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "examples/jsm/tsl/math/Bayer.js", "patch": "@@ -1,4 +1,4 @@\n-import { TextureLoader } from 'three';\n+import { ImageBitmapLoader, Texture } from 'three';\n import { Fn, int, ivec2, textureLoad, screenUV, screenSize, mod, floor, float, vec3 } from 'three/tsl';\n \n /**\n@@ -25,7 +25,18 @@ export c...
2026-03-30T09:08:41
golang/go
f5b77a7e2fa0f7ff346c665974a8eded367b1bc2
3985ca0b6264835c049e601900a8072b5d1b13b4
cmd/compile: fix loopbce overflow check logic addWillOverflow and subWillOverflow has an implicit assumption that y is positive, using it outside of addU and subU is really incorrect. This CL fixes those incorrect usage to use the correct logic in place. Thanks to Jakub Ciolek for reporting this issue. Fixes #78333 ...
[ { "path": "src/cmd/compile/internal/ssa/loopbce.go", "patch": "@@ -235,9 +235,11 @@ nextblock:\n \t\t\t\t\t\t\tif init.AuxInt > v {\n \t\t\t\t\t\t\t\treturn false\n \t\t\t\t\t\t\t}\n+\t\t\t\t\t\t\t// TODO(1.27): investigate passing a smaller-magnitude overflow limit to addU\n+\t\t\t\t\t\t\t// for addWillOve...
2026-03-06T00:03:45
vuejs/vue
099401e227fd5ed496ff615528d1a9b3b64d4fbf
67c1d26cb0af3eb2db0a11fc7768a8299e7f7d58
fix(types/sfc): improve the type inference using `withDefaults` (#12872)
[ { "path": "types/test/setup-helpers-test.ts", "patch": "@@ -19,25 +19,35 @@ describe('defineProps w/ type declaration + withDefaults', () => {\n arr?: string[]\n obj?: { x: number }\n fn?: (e: string) => void\n- x?: string\n genStr?: string\n+ x?: string\n+ y?: string\...
2023-10-23T07:06:28
denoland/deno
3ec851496663011690b94a5555d82e56fd8c8bb1
00d46fe27611060fd87432010c401bbb3ca55a6e
fix(ext/node): implement uv_ref for native TCP handles (#33174) ## Summary - Adds `ref()` method to the native libuv TCP class (`uv_ref`), matching the existing `unref()` (`uv_unref`) - Updates `TCP.ref()` in `tcp_wrap.ts` to call through to the native handle instead of being a no-op - Removes both TODO comments from ...
[ { "path": "ext/node/ops/libuv_stream.rs", "patch": "@@ -725,6 +725,18 @@ impl TCP {\n self.handle_data.replace(None);\n }\n \n+ #[fast]\n+ #[rename(\"ref\")]\n+ fn ref_handle(&self) {\n+ let tcp = self.raw();\n+ // SAFETY: tcp handle pointer is valid and initialized\n+ unsafe {\n+ if ...
2026-04-04T16:14:15
mrdoob/three.js
7a77bfe6c45c1fc398b2a57ee8ce4d06ae8352c7
82b371fb82bf9b39bc15818d4f66a430c19d5ac1
Fix: preserve multiview in RenderTarget.copy() (#33285)
[ { "path": "src/core/RenderTarget.js", "patch": "@@ -369,6 +369,7 @@ class RenderTarget extends EventDispatcher {\n \t\tif ( source.depthTexture !== null ) this.depthTexture = source.depthTexture.clone();\n \n \t\tthis.samples = source.samples;\n+\t\tthis.multiview = source.multiview;\n \n \t\treturn this;\n...
2026-03-29T13:50:24
golang/go
3985ca0b6264835c049e601900a8072b5d1b13b4
4978c2029c3ff66da8f1dfe32ac6770ce1514fe8
cmd/compile: fix mem access overlap detection When a no-op interface conversion is wrapped around the rhs of an assignment, the memory overlap detection logic in the compiler failed to peel down conversion to see the actual pointer, causing an incorrect no-overlapping determination. Thanks to Jakub Ciolek for reporti...
[ { "path": "src/cmd/compile/internal/ssagen/ssa.go", "patch": "@@ -1654,6 +1654,16 @@ func (s *state) stmtList(l ir.Nodes) {\n \t}\n }\n \n+func peelConvNop(n ir.Node) ir.Node {\n+\tif n == nil {\n+\t\treturn n\n+\t}\n+\tfor n.Op() == ir.OCONVNOP {\n+\t\tn = n.(*ir.ConvExpr).X\n+\t}\n+\treturn n\n+}\n+\n // ...
2026-03-12T21:36:33
vuejs/vue
67c1d26cb0af3eb2db0a11fc7768a8299e7f7d58
74ca5a13ba12a31580f1567e7c6d789e96730e46
fix(types): correct serverPrefetch this type (#13068) close #12488
[ { "path": "types/options.d.ts", "patch": "@@ -210,7 +210,7 @@ export interface ComponentOptions<\n activated?(): void\n deactivated?(): void\n errorCaptured?(err: Error, vm: Vue, info: string): boolean | void\n- serverPrefetch?(this: V): Promise<void>\n+ serverPrefetch?(): Promise<void>\n renderTr...
2023-10-23T06:58:47
denoland/deno
00d46fe27611060fd87432010c401bbb3ca55a6e
ad725eea313df6204d342d84ace4af1b11cc341f
fix(ext/node): remove dead legacy TCP server accept path (#33172) ## Summary - Removes the legacy `Deno.listen()`/`Deno.Listener.accept()` server accept path from `TCP` in `tcp_wrap.ts` — since `bind()`/`bind6()` always set `kUseNativeWrap = true` before `listen()`, this was unreachable dead code - Removes `#listenLeg...
[ { "path": "ext/node/polyfills/internal_binding/tcp_wrap.ts", "patch": "@@ -50,13 +50,8 @@ import {\n } from \"ext:deno_node/internal_binding/stream_wrap.ts\";\n import { ownerSymbol } from \"ext:deno_node/internal_binding/symbols.ts\";\n import { codeMap } from \"ext:deno_node/internal_binding/uv.ts\";\n-im...
2026-04-04T15:38:44
mrdoob/three.js
2baf31e360d060220548713b3c577a92054bed25
065e7ad9ad88479f2472f39dd76b363128b89c32
UniformsGroup: Fix incorrect index in Vector4 dirty check (#33276) Co-authored-by: Mridul <iammridul012@gamil.com>
[ { "path": "src/renderers/common/UniformsGroup.js", "patch": "@@ -369,7 +369,7 @@ class UniformsGroup extends UniformBuffer {\n \t\tconst offset = uniform.offset;\n \t\tconst type = uniform.getType();\n \n-\t\tif ( a[ offset + 0 ] !== v.x || a[ offset + 1 ] !== v.y || a[ offset + 2 ] !== v.z || a[ offset + 4...
2026-03-28T22:15:48
vuejs/vue
74ca5a13ba12a31580f1567e7c6d789e96730e46
1399ee6aa0aa3e44a70780cfd0aca3d384c97fa4
fix(lifecycle): scope might changed when call hook (#13070)
[ { "path": "src/core/instance/lifecycle.ts", "patch": "@@ -18,6 +18,7 @@ import {\n invokeWithErrorHandling\n } from '../util/index'\n import { currentInstance, setCurrentInstance } from 'v3/currentInstance'\n+import { getCurrentScope } from 'v3/reactivity/effectScope'\n import { syncSetupProxy } from 'v3/...
2023-10-22T02:52:10
golang/go
4978c2029c3ff66da8f1dfe32ac6770ce1514fe8
199c4d1c3c9d509a51f777c81cb17d4b17728097
crypto/x509: fix wildcard constraint map case sensitivity When applying excluded constraints to wildcard DNS SANs, the constraint checking implementation did not normalize the case of the constraint nor the SAN, which could lead to incorrect constraint checking results. This change lowercases both the constraint and t...
[ { "path": "src/crypto/x509/constraints.go", "patch": "@@ -351,6 +351,7 @@ func newDNSConstraints(l []string, permitted bool) interface{ query(string) (str\n \tif !permitted {\n \t\tparentConstraints := map[string]string{}\n \t\tfor _, name := range nc.constraints.set {\n+\t\t\tname = strings.ToLower(name)\n...
2026-03-23T17:22:34
mrdoob/three.js
153f630f910459a2cd8644d1d9bbb3c47116267b
112ba9b71c29e984e339dd95ab42584b43029940
Docs: Fix typos in TessellateModifier and LineMaterial (#33272)
[ { "path": "examples/jsm/lines/LineMaterial.js", "patch": "@@ -647,7 +647,7 @@ class LineMaterial extends ShaderMaterial {\n \n \t/**\n \t * The size of the viewport, in screen pixels. This must be kept updated to make\n-\t * screen-space rendering accurate.The `LineSegments2.onBeforeRender` callback\n+\t * ...
2026-03-28T16:51:54
denoland/deno
43deeb2cdbbb8687bf6e9136f4809c6ce32fa1ff
fee058926971273db03f1596235c1a51a7c9d628
fix(ext/node): implement timeout, killSignal, and pid for child_process spawnSync (#32810) ## Summary - Implements `timeout` and `killSignal` options for `spawnSync`/`execSync`/`execFileSync` - Spawns a condvar-based timer thread that kills the child process (and its process group on Unix) after the deadline, then fla...
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -76,8 +76,10 @@ import {\n kExtraStdio,\n kInputOption,\n kIpc,\n+ kKillSignalOption,\n kNeedsNpmProcessState,\n kSerialization,\n+ kTimeoutOption,\n } from \"ext:deno_process/40_process.js\";\n \n export function mapValues<T...
2026-04-03T13:01:56
golang/go
199c4d1c3c9d509a51f777c81cb17d4b17728097
d7b6fb44b5f39cb0f551ed7eb62498089b604a88
html/template: properly track JS template literal brace depth across contexts Properly track JS template literal brace depth across branches/ranges, and prevent accidental re-use of escape analysis by including the brace depth in the stringification/mangling for contexts. Fixes #78331 Fixes CVE-2026-32289 Change-Id:...
[ { "path": "src/html/template/context.go", "patch": "@@ -6,6 +6,7 @@ package template\n \n import (\n \t\"fmt\"\n+\t\"slices\"\n \t\"text/template/parse\"\n )\n \n@@ -37,7 +38,7 @@ func (c context) String() string {\n \tif c.err != nil {\n \t\terr = c.err\n \t}\n-\treturn fmt.Sprintf(\"{%v %v %v %v %v %v %v}...
2026-03-23T20:34:23
vuejs/vue
78ef6271d237e83fbd647567f2b79a5786f09d3d
6149048ce95bda9be7c14abed45859b743842ce7
test: upgrade vitest + fix ssr tests for Node 18+
[ { "path": "package.json", "patch": "@@ -99,7 +99,7 @@\n \"conventional-changelog-cli\": \"^2.2.2\",\n \"cross-spawn\": \"^7.0.3\",\n \"enquirer\": \"^2.3.6\",\n- \"esbuild\": \"^0.14.43\",\n+ \"esbuild\": \"^0.19.5\",\n \"execa\": \"^4.1.0\",\n \"he\": \"^1.2.0\",\n \"jasmine-c...
2023-10-22T02:32:47
denoland/deno
fee058926971273db03f1596235c1a51a7c9d628
607c73fa98f914309afd6105173caf51fba19845
feat: disable ops and resources sanitizers by default in deno test (#33158) ## Summary Changes the default for `sanitizeOps` and `sanitizeResources` from `true` to `false` in `Deno.test()`. This aligns with what most users expect -- tests no longer fail due to leaked async ops or resources unless explicitly opted in....
[ { "path": "cli/args/flags.rs", "patch": "@@ -559,6 +559,8 @@ pub struct TestFlags {\n pub filter: Option<String>,\n pub shuffle: Option<u64>,\n pub trace_leaks: bool,\n+ pub sanitize_ops: bool,\n+ pub sanitize_resources: bool,\n pub watch: Option<WatchFlagsWithPaths>,\n pub reporter: TestReporte...
2026-04-03T13:00:21