repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
denoland/deno
7fa991eba96e14bc35429c223e3d009afa5191aa
7e58228ebde1f2813ae6537ddbe7aa323e5fb3eb
fix(ext/crypto): support structuredClone for CryptoKey (#32674) ## Summary - Enables `structuredClone()` and `postMessage()` for `CryptoKey` objects using the cloneable resource registry from #32672 - Works for all key types (AES, RSA, HMAC, EC, Ed25519, X25519, X448) including **non-extractable** keys - Clones intern...
[ { "path": "ext/crypto/00_crypto.js", "patch": "@@ -65,6 +65,7 @@ const {\n JSONStringify,\n MathCeil,\n ObjectAssign,\n+ ObjectDefineProperty,\n ObjectHasOwn,\n ObjectPrototypeIsPrototypeOf,\n SafeArrayIterator,\n@@ -438,9 +439,35 @@ function constructKey(type, extractable, usages, algorithm, h...
2026-03-13T09:50:19
golang/go
ef160abf2dc24fbf8d8c34a7ca18b2c1d2f60e7f
07e487bc5ceb05d5fdbbec3c66f75a8a36460038
cmd/go: avoid repetitive "invalid version" error on go get When go get encounters an invalid version string like "branch/with/slash", the error message redundantly repeats the version information: go get: pkg@branch/with/slash: invalid version: version "branch/with/slash" invalid: disallowed version string This ha...
[ { "path": "src/cmd/go/internal/modfetch/proxy.go", "patch": "@@ -238,13 +238,17 @@ func (p *proxyRepo) CheckReuse(ctx context.Context, old *codehost.Origin) error\n // versionError returns err wrapped in a ModuleError for p.path.\n func (p *proxyRepo) versionError(version string, err error) error {\n \tif v...
2026-02-12T11:32:16
vuejs/vue
e68f83d0b5f9cf5203374d42f52a5df5dee5e500
a59e05c2ffe7d10dc55782baa41cb2c1cd605862
chore: fix typo in `bind-dynamic-keys.js` comment (#11262)
[ { "path": "src/core/instance/render-helpers/bind-dynamic-keys.js", "patch": "@@ -3,7 +3,7 @@\n // helper to process dynamic keys for dynamic arguments in v-bind and v-on.\n // For example, the following template:\n //\n-// <div id=\"foo\" :[key]=\"value\">\n+// <div id=\"app\" :[key]=\"value\">\n //\n // co...
2020-03-30T09:44:33
denoland/deno
7e58228ebde1f2813ae6537ddbe7aa323e5fb3eb
92ca1fe1bf13032703b419314d6ddc2ab442318f
perf(fmt): speed up file diffing (#30644) This swaps out dissimilar for imara which is substantially faster at diffing strings. Note that this is a proof of concept and I did not have enough time to make the output pretty. I just shows that the diff is fast. Applying colors should be doable without changing much abou...
[ { "path": "Cargo.lock", "patch": "@@ -3119,9 +3119,9 @@ dependencies = [\n \"deno_semver\",\n \"deno_terminal\",\n \"deno_unsync\",\n- \"dissimilar\",\n \"futures\",\n \"http 1.4.0\",\n+ \"imara-diff\",\n \"import_map\",\n \"indexmap 2.12.0\",\n \"jsonc-parser 0.28.0\",\n@@ -5917,14 +5917,24 @@ depe...
2026-03-13T08:30:01
golang/go
07e487bc5ceb05d5fdbbec3c66f75a8a36460038
e36ae89c186a5220075ef3ee0b7e2a41470fa6dc
cmd/go: exclude vendor directories in go work use -r When using "go work use -r" to recursively add modules, vendor directories are incorrectly included. Modules under vendor/ are managed by "go mod vendor" and should not be added to go.work. The WalkDir callback in workUse did not skip directories named "vendor", un...
[ { "path": "src/cmd/go/internal/workcmd/use.go", "patch": "@@ -163,6 +163,9 @@ func workUse(ctx context.Context, s *modload.State, gowork string, wf *modfile.W\n \t\t\t\t}\n \t\t\t\treturn nil\n \t\t\t}\n+\t\t\tif d.Name() == \"vendor\" {\n+\t\t\t\treturn filepath.SkipDir\n+\t\t\t}\n \t\t\tlookDir(path)\n \t...
2026-02-12T10:50:43
vuejs/vue
98b9270ab50fe393111dd1e57f9259636e0d980c
caa33e0a2324c978ab992740dbbabb523884464b
chore: fix svg logos
[ { "path": "README.md", "patch": "@@ -1,12 +1,12 @@\n <p align=\"center\"><a href=\"https://vuejs.org\" target=\"_blank\" rel=\"noopener noreferrer\"><img width=\"100\" src=\"https://vuejs.org/images/logo.png\" alt=\"Vue logo\"></a></p>\n \n <p align=\"center\">\n- <a href=\"https://circleci.com/gh/vuejs/vu...
2020-03-11T01:07:39
denoland/deno
92ca1fe1bf13032703b419314d6ddc2ab442318f
1ea5ff00c943fbca3c0b850118460fb21d4776e6
fix(ext/node): remove extra properties from node:fs exports (#32670) ## Summary - Remove 18 flag constants (`F_OK`, `R_OK`, `W_OK`, `X_OK`, `O_RDONLY`, `O_WRONLY`, etc.) from `node:fs` default and named exports — Node.js only exposes these via `fs.constants`, not as top-level properties - Remove internal promise hel...
[ { "path": "ext/node/polyfills/fs.ts", "patch": "@@ -155,27 +155,6 @@ const {\n Uint8Array,\n } = primordials;\n \n-const {\n- F_OK,\n- R_OK,\n- W_OK,\n- X_OK,\n- O_RDONLY,\n- O_WRONLY,\n- O_RDWR,\n- O_NOCTTY,\n- O_TRUNC,\n- O_APPEND,\n- O_DIRECTORY,\n- O_NOFOLLOW,\n- O_SYNC,\n- O_DSYNC,\n- ...
2026-03-13T07:28:43
mrdoob/three.js
6618a69400ac6c42338ca5b8e8024351c53675fe
061ae57acb642f1131c98c50cafd02c4b937d638
Added new docs generated with JSDocs (#32118) * New Docs: Add translation disable flags. * Clean up. * Improved tables rendering. * Exclude WebGPURenderer.Nodes.js for now. * Changed jsdocs destination folder to docs. * Fixed navigation indentation. * Generated docs. * Replaced prettify.js with highlight.js * ...
[ { "path": "docs/pages/AMFLoader.html", "patch": "@@ -0,0 +1,106 @@\n+<!DOCTYPE html>\n+<html lang=\"en\">\n+<head>\n+\t<meta charset=\"utf-8\">\n+\t<title>AMFLoader - Three.js Docs</title>\n+\t<meta name=\"viewport\" content=\"width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0\">\n+\...
2025-10-23T18:00:19
golang/go
0359353574980629e42c73f7ed54397f7fdff321
6c083034f82ddb2a91d3fbe0f96e39f1ecd194d8
net/url: add Values.Clone This change implements a method Clone on Values that creates a deep copy of all of the subject's consistent values. CL 746800 added URL.Clone and this one therefore closes out the feature. Fixes #73450 Change-Id: I6fb95091c856e43063ab641c03034e1faaff8ed6 Reviewed-on: https://go-review.goog...
[ { "path": "api/next/73450.txt", "patch": "@@ -1 +1,2 @@\n pkg net/url, method (*URL) Clone() *URL #73450\n+pkg net/url, method (Values) Clone() Values #73450", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/net/url/73450.md", "patch"...
2026-02-18T23:12:01
vuejs/vue
841bb084ca288e142b1958346bb1182bf6f0a564
7d8c4f69d319cb265ce49770900d727eacb074a2
chore: fix typo in element test (#11085)
[ { "path": "test/unit/modules/vdom/patch/element.spec.js", "patch": "@@ -41,7 +41,7 @@ describe('vdom patch: element', () => {\n expect(elm.innerHTML).toBe('hello world')\n })\n \n- it('should create create an elements which having span and text content', () => {\n+ it('should create an elements whic...
2020-02-06T16:22:26
denoland/deno
1ea5ff00c943fbca3c0b850118460fb21d4776e6
4650330ddb81f5a7622540e4560d9f944dac9aca
fix(ext/node): emit "connect" event on http.Server for CONNECT requests (#32599) ## Summary - Deno's `node:http` Server polyfill never emitted the `"connect"` event for HTTP CONNECT method requests - This broke HTTP proxy libraries (e.g. `proxy-chain`, used by Crawlee/Playwright) that rely on this event to handle tun...
[ { "path": "ext/http/00_serve.ts", "patch": "@@ -29,6 +29,8 @@ import {\n op_http_set_response_trailers,\n op_http_try_wait,\n op_http_upgrade_raw,\n+ op_http_upgrade_raw_connect,\n+ op_http_upgrade_raw_get_head,\n op_http_upgrade_websocket_next,\n op_http_wait,\n } from \"ext:core/ops\";\n@@ -15...
2026-03-12T21:33:40
mrdoob/three.js
89b6cd1f8673fd345df94736a0a50eda97b99618
4bd6e36a194bddb505aaf2bf43f18e22411f433f
TSL: Refactor `positionViewDirection` to handle orthographic camera cases (#32088) * WebGPU: Refactor positionViewDirection to handle orthographic camera cases * Update WebGPU screenshots after positionViewDirection fix * Review comment: https://github.com/mrdoob/three.js/pull/32088#discussion_r2445229182
[ { "path": "src/nodes/accessors/Position.js", "patch": "@@ -1,5 +1,6 @@\n import { attribute } from '../core/AttributeNode.js';\n import { Fn } from '../tsl/TSLCore.js';\n+import { vec3 } from '../tsl/TSLBase.js';\n import { modelWorldMatrix } from './ModelNode.js';\n \n /**\n@@ -71,4 +72,20 @@ export const ...
2025-10-21T14:37:27
golang/go
6c083034f82ddb2a91d3fbe0f96e39f1ecd194d8
73db2f85aab25c06f47c832364600d2c5e243ffa
testing: fix construction of the testing artifacts path The existing implementation had a few problems: - It constructs a path which starts with a forward slash, which is then immediately rejected by filepath.Localize() as invalid. - It did not correctly remove the module path from the import path if the test was in t...
[ { "path": "src/testing/testing.go", "patch": "@@ -1363,6 +1363,21 @@ func (c *common) makeArtifactDir() (string, error) {\n \t\treturn c.makeTempDir()\n \t}\n \n+\tartifactBase := filepath.Join(artifactDir, c.relativeArtifactBase())\n+\tif err := os.MkdirAll(artifactBase, 0o777); err != nil {\n+\t\treturn \...
2026-03-05T00:46:20
vuejs/vue
468c323af1f7e296886d5df1a05d3793f60f9e8f
b07087deae060244fe5d9651b38dc5f1e79667a9
docs: fix typo (#11050)
[ { "path": "dist/README.md", "patch": "@@ -9,7 +9,7 @@\n \n ### Terms\n \n-- **Full**: builds that contains both the compiler and the runtime.\n+- **Full**: builds that contain both the compiler and the runtime.\n \n - **Compiler**: code that is responsible for compiling template strings into JavaScript rend...
2020-01-26T14:08:17
denoland/deno
3d05945878003ef2db2763c97298a913d05645b2
8cf29d5da0c90654922ca35769eb6b11dbdb5a50
fix(ext/node): use non-blocking write in fs.writev (#32673) fs.writev inner async function was calling io.writeSync (blocking) instead of io.write (async). \ This switches to the non-blocking variant. Also, enables 4 node compat tests: - test-fs-writev.js - test-fs-writev-promises.js - test-fs-writev-sync.js - test-p...
[ { "path": "ext/node/polyfills/fs.ts", "patch": "@@ -2096,7 +2096,7 @@ function writev(\n let currentOffset = 0;\n // deno-lint-ignore prefer-primordials\n while (currentOffset < buffer.byteLength) {\n- currentOffset += await io.writeSync(fd, buffer.subarray(currentOffset));\n+ currentO...
2026-03-12T21:01:15
golang/go
bf1b0973db38346afae460e80d18020fa7de4e8c
252a8adbc08f5b8ae97d2a857bf12810da54a11c
cmd/compile/internal/typecheck: simplify tcSliceHeader types2 handles all constant-related bounds checks in user Go code now, so it's safe to remove all constants checking in tcSliceHeader function. Fixed #77919 Change-Id: Ibc137c84792d4898eb073cdeabac175684f73746 Reviewed-on: https://go-review.googlesource.com/c/go...
[ { "path": "src/cmd/compile/internal/typecheck/expr.go", "patch": "@@ -7,7 +7,6 @@ package typecheck\n import (\n \t\"fmt\"\n \t\"go/constant\"\n-\t\"go/token\"\n \t\"internal/types/errors\"\n \t\"strings\"\n \n@@ -826,18 +825,6 @@ func tcSliceHeader(n *ir.SliceHeaderExpr) ir.Node {\n \tn.Len = DefaultLit(Ex...
2026-03-03T16:10:05
mrdoob/three.js
4bd6e36a194bddb505aaf2bf43f18e22411f433f
eeda2145a8dd587436b49b365d376517bceb85a0
E2E: Revised exception list (#32090) * Testing e2e with fixed RAF. * Updated screenshots. * Updated exception list. * Updated exceptions list. * Add css3d_youtube to exception list Added 'css3d_youtube' test case to investigate CI crashes. * Added webgpu_materials_video to exceptions list * Simplified puppeteer...
[ { "path": "test/e2e/puppeteer.js", "patch": "@@ -5,264 +5,87 @@ import pixelmatch from 'pixelmatch';\n import { Jimp } from 'jimp';\n import * as fs from 'fs/promises';\n \n-class PagePool {\n-\n-\tconstructor( pages ) {\n-\n-\t\tthis.pages = pages;\n-\t\tthis.available = [ ...pages ];\n-\t\tthis.waiting = ...
2025-10-21T11:07:44
vuejs/vue
4821149b8bbd4650b1d9c9c3cfbb539ac1e24589
9f5563c0e1a4f32188a293e72052bc48a340d4b1
fix(types): fix prop constructor type inference (#10779)
[ { "path": "package.json", "patch": "@@ -74,7 +74,7 @@\n \"@babel/plugin-transform-flow-strip-types\": \"^7.0.0\",\n \"@babel/preset-env\": \"^7.0.0\",\n \"@babel/register\": \"^7.0.0\",\n- \"@types/node\": \"^10.12.18\",\n+ \"@types/node\": \"^12.12.0\",\n \"@types/webpack\": \"^4.4.22...
2019-10-30T14:45:29
denoland/deno
2353a5abeb584ad0a8a2fc5a68ed80a9ab058628
e8a3cfafb61ea6cb31b65df63761c73b8dee0f98
fix(ext/node): wrap non-Error unhandled rejections in ERR_UNHANDLED_REJECTION (#32535) ## Summary - When a promise is rejected with a non-Error value (e.g. `Promise.reject(null)`) and there are no `unhandledRejection` listeners, Node.js wraps the rejection reason in an `ERR_UNHANDLED_REJECTION` error before routing i...
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -1086,7 +1086,29 @@ function synchronizeListeners() {\n // listeners.\n \n event.preventDefault();\n- uncaughtExceptionHandler(event.reason, \"unhandledRejection\");\n+\n+ let reason = event.reason;\n+ // If the rej...
2026-03-12T18:08:51
golang/go
252a8adbc08f5b8ae97d2a857bf12810da54a11c
e7a09d1ffb8745350cb9b5ba9c495b5e066e09ab
internal/runtime/maps/: devirtualize hashing for specialized maps This change improves performance of specialized maps and opens opportunity for further improvement by inlining hashing calls in the future (right now we can't inline functions from GOASM). MapAccessBenchmarks goos: linux goarch: amd64 pkg: runtime cpu:...
[ { "path": "src/internal/runtime/maps/runtime.go", "patch": "@@ -14,6 +14,18 @@ import (\n )\n \n // Functions below pushed from runtime.\n+//\n+//go:noescape\n+//go:linkname memhash32 runtime.memhash32\n+func memhash32(p unsafe.Pointer, h uintptr) uintptr\n+\n+//go:noescape\n+//go:linkname memhash64 runtime...
2026-02-24T12:16:35
mrdoob/three.js
ebc584918a92fda2530009bd306992f2fb3dd23b
a4ee1080dcf5732f9eeefc917041d19009ffa4b7
Add exception to exceptionList for css3d_mixed
[ { "path": "test/e2e/puppeteer.js", "patch": "@@ -84,6 +84,9 @@ const parseTime = 1; // 1 second per megabyte\n \n const exceptionList = [\n \n+\t// Need more time\n+\t'css3d_mixed',\n+\t\n \t// tiles not loaded in time for screenshot\n \t'webgl_loader_3dtiles',\n ", "additions": 3, "deletions": 0, ...
2025-10-21T01:34:58
vuejs/vue
d7d8ff06b70cf1a2345e3839c503fdb08d75ba49
e8ca21ff1d7af92649902952c97418ad3ffd014f
chore: fix typo in `next-tick.js` comment (#10607)
[ { "path": "src/core/util/next-tick.js", "patch": "@@ -72,7 +72,7 @@ if (typeof Promise !== 'undefined' && isNative(Promise)) {\n isUsingMicroTask = true\n } else if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {\n // Fallback to setImmediate.\n- // Techinically it leverages the (macr...
2019-10-08T08:41:17
denoland/deno
e8a3cfafb61ea6cb31b65df63761c73b8dee0f98
b31680f5515c3a6bdadce1d64f6bf61a1aaa4bd8
chore(npm): fix debug panic in DepEntryCache (#32668) Closes https://github.com/denoland/deno/issues/32622
[ { "path": "libs/npm/resolution/graph.rs", "patch": "@@ -1050,17 +1050,19 @@ struct DepEntryCache(HashMap<Rc<PackageNv>, Rc<Vec<NpmDependencyEntry>>>);\n impl DepEntryCache {\n pub fn store(\n &mut self,\n- nv: Rc<PackageNv>,\n+ nv: &Rc<PackageNv>,\n version_info: &NpmPackageVersionInfo,\n ...
2026-03-12T17:21:28
mrdoob/three.js
7dec10bb10968448260f442729a794075945991d
8409754fc4e752ca0341cdcdf5158727cc60048b
TSL: Ensure `nodeProxyIntent` always sets intent: true (fix spread order) (#32092) Co-authored-by: sunag <sunagbrasil@gmail.com>
[ { "path": "src/nodes/tsl/TSLCore.js", "patch": "@@ -928,7 +928,7 @@ export const nodeObjects = ( val, altType = null ) => new ShaderNodeObjects( val\n export const nodeArray = ( val, altType = null ) => new ShaderNodeArray( val, altType );\n export const nodeProxy = ( NodeClass, scope = null, factor = null,...
2025-10-21T00:59:34
golang/go
e7a09d1ffb8745350cb9b5ba9c495b5e066e09ab
50d988e4e037d9d41ac223a62706dfea47a100e4
cmd/compile: use tail calls for wrappers for embedded interfaces type I interface { foo() } type S struct { I } Because I is embedded in S, S needs a foo method. We generate a wrapper function to implement (*S).foo. It just loads the embedded field I out of S and calls foo on it. When the thing in S.I its...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -1306,14 +1306,14 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\t}\n \t\tr := v.Reg()\n \t\tgetgFromTLS(s, r)\n-\tcase ssa.OpAMD64CALLstatic, ssa.OpAMD64CALLtail:\n+\tcase ssa.OpAMD64CALLstatic, ssa.OpAMD64CALLtail, ssa.OpAMD64CALLt...
2026-03-05T00:07:30
vuejs/vue
e8ca21ff1d7af92649902952c97418ad3ffd014f
78aefcf6d5f56935e67d6c2b6443342f8c381d67
chore: fix sponsor link
[ { "path": "BACKERS.md", "patch": "@@ -21,7 +21,7 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu\n <img width=\"260px\" src=\"https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/stdlib.png\">\n </a>\n </p>\n- \n+\n <!--special end-->\n...
2019-10-07T14:49:43
mrdoob/three.js
b3dde01ebb2509893dc41a9d29bd6dfba1794731
3a987fad398939a7b6a2c4e9b7d2dd5df99ffa50
e2e: Fixed RAF bug in deterministic-injection.js
[ { "path": "test/e2e/deterministic-injection.js", "patch": "@@ -35,7 +35,7 @@\n \n \t\t\tsetTimeout( function () {\n \n-\t\t\t\trequestAnimationFrame( cb );\n+\t\t\t\tRAF( cb );\n \n \t\t\t}, 50 );\n ", "additions": 1, "deletions": 1, "language": "JavaScript" } ]
2025-10-20T08:18:17
denoland/deno
b31680f5515c3a6bdadce1d64f6bf61a1aaa4bd8
7698bccccc54241d8be1c50cd22b3c4af0360998
fix(runtime): reduce memory retention after web worker termination (#32617) ## Summary Addresses #26058 — Web Workers use significantly more RSS than Chrome, and terminating them doesn't release the memory back to the OS. Two targeted changes: - **Call `malloc_trim(0)` on Linux after each worker thread exits.** Whe...
[ { "path": "runtime/ops/worker_host.rs", "patch": "@@ -269,7 +269,20 @@ fn op_create_worker(\n .await\n };\n \n- create_and_run_current_thread(fut)\n+ let _ = create_and_run_current_thread(fut);\n+\n+ // After the worker's tokio runtime and JsRuntime/V8 isolate have been\n+ // dropped, ...
2026-03-12T17:01:09
golang/go
50d988e4e037d9d41ac223a62706dfea47a100e4
bf84b002d64d0b150818268e520fee0172a5c462
runtime: when panicking, skip ahead to previous panic While looking up the stack for a defer to run, if we come across a panic frame we can skip ahead (up) to where the previous panic was looking for a defer to run. Switch from keeping LR (the caller's pc) to PC (the frame's PC). Seems easier to reason about. Fixes ...
[ { "path": "src/runtime/panic.go", "patch": "@@ -920,7 +920,7 @@ func (p *_panic) start(pc uintptr, sp unsafe.Pointer) {\n \t// caller instead, we avoid needing to unwind through an extra\n \t// frame. It also somewhat simplifies the terminating condition for\n \t// deferreturn.\n-\tp.lr, p.fp = pc, sp\n+\tp...
2026-01-12T23:05:24
vuejs/vue
3dcd85b82693765b13e866132bcaa318ef086fe5
235064ebe19648420295f5ee57cf5ed5b72bbc16
chore: fix typo in <template v-slot> warning (#10585)
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -654,7 +654,7 @@ function processSlotContent (el) {\n if (el.parent && !maybeComponent(el.parent)) {\n warn(\n `<template v-slot> can only appear at the root level inside ` +\n- `the receiving the compone...
2019-10-01T07:07:36
mrdoob/three.js
7f5f8c833252f1198ecdd4e71f46c07de6eb5975
5bf960214b54235ec6f04ffc5d686696a0fe3029
fix logic, typo ... (#32083)
[ { "path": "examples/webgpu_postprocessing_sss.html", "patch": "@@ -172,7 +172,7 @@\n \t\t\t\t\toutput: 0\n \t\t\t\t};\n \n-\t\t\t\tconst types = { 'Sceen with Shadow Maps + SSS': 0, 'Scene with Shadow Maps': 1, 'SSS': 2, };\n+\t\t\t\tconst types = { 'Scene with Shadow Maps + SSS': 0, 'Scene with Shadow Maps...
2025-10-19T14:57:46
denoland/deno
7698bccccc54241d8be1c50cd22b3c4af0360998
9eed28a85df7d142be3ab93b5072d9dcdce2acd0
fix(runtime): display proper error when throwing in event handlers (#32663) ## Summary - Fixes `"Uncaught null"` being displayed instead of the actual error when throwing in `unload`, `beforeunload`, `load`, or process `exit`/`beforeExit` event handlers - Root cause: `reportException` in JS calls `op_dispatch_excepti...
[ { "path": "libs/core/error.rs", "patch": "@@ -1313,7 +1313,7 @@ pub(crate) fn exception_to_err_result<'s, 'i, T>(\n Err(exception_to_err(scope, exception, in_promise, clear_error))\n }\n \n-pub(crate) fn exception_to_err<'s, 'i>(\n+pub fn exception_to_err<'s, 'i>(\n scope: &mut v8::PinScope<'s, 'i>,\n ...
2026-03-12T16:42:00
golang/go
bf84b002d64d0b150818268e520fee0172a5c462
51a8f213cdedcf2a6368437c136897d6b09a442d
crypto/x509: add more test cases for name constraints. This version of the code passes the tests, however, Go 1.25 currently fails. See I747e51edc16c1111f6a114de33af35f618793c90 for a backport of the test cases to Go 1.25 and a fix for the issue discovered there. Found as part of https://issues.chromium.org/issues/4...
[ { "path": "src/crypto/x509/name_constraints_test.go", "patch": "@@ -1656,6 +1656,174 @@ var nameConstraintsTests = []nameConstraintsTest{\n \t\t\tsans: []string{\"dns:\"},\n \t\t},\n \t},\n+\n+\t{\n+\t\tname: \"subdomain excluded constraints preclude outer wildcard names\",\n+\t\troots: []constraintsSpec{\n...
2026-03-02T09:48:29
mrdoob/three.js
5bf960214b54235ec6f04ffc5d686696a0fe3029
4c5847308543d0593b909c33ee11a6740c3d88a0
fix (#32080)
[ { "path": "editor/js/commands/SetMaterialRangeCommand.js", "patch": "@@ -24,7 +24,7 @@ class SetMaterialRangeCommand extends Command {\n \n \t\tconst material = ( object !== null ) ? editor.getObjectMaterial( object, materialSlot ) : null;\n \n-\t\tthis.oldRange = ( material !== null && material[ attributeN...
2025-10-19T14:33:23
vuejs/vue
5bbb077cd9d79eabab0002c459d373d75e532ef0
95d8afa07c4a84d6c178e220913cec4b1afcf21d
docs: fix link to point to ModuleOptions lines (#10531)
[ { "path": "packages/vue-template-compiler/README.md", "patch": "@@ -81,7 +81,7 @@ Note the returned function code uses `with` and thus cannot be used in strict mo\n \n It's possible to hook into the compilation process to support custom template features. **However, beware that by injecting custom compile...
2019-09-19T07:52:32
denoland/deno
aa6ee7d5bbf4ae534e101ccdd86102284d4f9fcd
5b9986dd605081f6a8e04b4f8d2fcdba26bc19ec
fix(ext/napi): call wrap/ref finalizers at shutdown (#32592) - Track NAPI finalizer callbacks (from `napi_wrap`, `napi_create_external`, `napi_add_finalizer`, `napi_set_instance_data`) in a `PendingNapiFinalizer` list shared between `NapiState` and `Env` - Call tracked finalizers in LIFO order during `MainWorker` shut...
[ { "path": "cli/lib/worker.rs", "patch": "@@ -853,6 +853,11 @@ impl LibMainWorker {\n self.worker.dispatch_process_exit_event()\n }\n \n+ #[inline]\n+ pub fn run_napi_ref_finalizers(&mut self) {\n+ self.worker.run_napi_ref_finalizers()\n+ }\n+\n pub async fn execute_main_module(&mut self) -> Re...
2026-03-12T16:07:58
golang/go
cbab448de1c562e417b179d29f99758f4680630b
2ebb15729599c71c4bb9ea83849315e214c81b78
crypto/x509: fix name constraint checking panic Apparently we allow empty dNSName SANs (e.g. a domain name of ""), which causes the excluded domain name wildcard checking to panic, because we assume names are always non-empty. RFC 5280 appears to say the empty string should not be accepted, although confusingly refers...
[ { "path": "src/crypto/x509/constraints.go", "patch": "@@ -375,7 +375,7 @@ func (dnc *dnsConstraints) query(s string) (string, bool) {\n \t\treturn constraint, true\n \t}\n \n-\tif !dnc.permitted && s[0] == '*' {\n+\tif !dnc.permitted && len(s) > 0 && s[0] == '*' {\n \t\ttrimmed := trimFirstLabel(s)\n \t\tif...
2026-02-11T22:49:13
mrdoob/three.js
97b4c515bcaea68f345fb3981828694f062be5cc
e0fdb2476fa43f3bd11ac850fc98c2e17ad14ff4
Nodes: Fix size computations in FX/RTT nodes. (#32077)
[ { "path": "src/nodes/display/PassNode.js", "patch": "@@ -786,8 +786,8 @@ class PassNode extends TempNode {\n \t\tthis._width = width;\n \t\tthis._height = height;\n \n-\t\tconst effectiveWidth = this._width * this._pixelRatio * this._resolutionScale;\n-\t\tconst effectiveHeight = this._height * this._pixelR...
2025-10-18T13:21:23
vuejs/vue
78c3ce0ce0c2230f657cb7772a84fc7aa7ce0825
f1d29d7f45022f0edd20081dea8387043c96b30d
chore: fix prefixed data properties warning typo (#10327)
[ { "path": "src/core/instance/proxy.js", "patch": "@@ -28,7 +28,7 @@ if (process.env.NODE_ENV !== 'production') {\n warn(\n `Property \"${key}\" must be accessed with \"$data.${key}\" because ` +\n 'properties starting with \"$\" or \"_\" are not proxied in the Vue instance to ' +\n- 'pr...
2019-07-31T07:52:42
denoland/deno
5b9986dd605081f6a8e04b4f8d2fcdba26bc19ec
c0c896b17a62f37a81e30865069307db7d629720
fix(ext/node): improve crypto.generateKeyPair validation (#32620) ## Summary - Restructures `generateKeyPair` to call `createJob` synchronously so validation errors throw synchronously (matching Node.js behavior) - Adds key encoding validation (format, type, cipher, passphrase) with proper Node.js error codes (`ERR_IN...
[ { "path": "ext/node/polyfills/internal/crypto/cipher.ts", "patch": "@@ -594,10 +594,30 @@ function _lazyInitDecipherDecoder(self: any, encoding: string) {\n }\n }\n \n+const ENCRYPT_UNSUPPORTED_KEY_TYPES = new Set([\n+ \"rsa-pss\",\n+ \"dsa\",\n+ \"ec\",\n+ \"ed25519\",\n+ \"ed448\",\n+ \"x25519\",\...
2026-03-12T16:05:27
golang/go
2ebb15729599c71c4bb9ea83849315e214c81b78
fb16297ae571a232e46a67e6e40027f1f82ef6ec
crypto/x509: fix full email constraint matching For full email addresses (local@domain), we stored a map between the case sensitive local portion to the case insensitive domain portion, and used that to check if a email SAN matched the constraint. This could be abused, because it was a map[string]string, meaning if an...
[ { "path": "src/crypto/x509/constraints.go", "patch": "@@ -58,11 +58,11 @@ import (\n // of nameConstraintsSet, to handle constraints which define full email\n // addresses (i.e. 'test@example.com'). For bare domain constraints, we use the\n // dnsConstraints type described above, querying the domain portion...
2026-02-11T23:16:38
mrdoob/three.js
d5ffcf9c89402257d8451cbcda725c70e7e20219
b140fba01d7b71d461c2d9842867aef82684a4e5
TSL: Fix recursive cache key (#32070)
[ { "path": "src/materials/nodes/NodeMaterial.js", "patch": "@@ -1,7 +1,7 @@\n import { Material } from '../Material.js';\n import { NormalBlending } from '../../constants.js';\n \n-import { getNodeChildren, getCacheKey } from '../../nodes/core/NodeUtils.js';\n+import { hashArray, hashString } from '../../nod...
2025-10-17T17:47:01
vuejs/vue
b7c2d9366cf731a1551286b8ac712e6e0905070e
a99c6672d6e58183013be338cb7affe14a23c9d8
fix(security) upgrade lodash.template (#10257) That's it. https://github.com/lodash/lodash/pull/4336
[ { "path": "packages/vue-server-renderer/package.json", "patch": "@@ -22,7 +22,7 @@\n \"chalk\": \"^1.1.3\",\n \"hash-sum\": \"^1.0.2\",\n \"he\": \"^1.1.0\",\n- \"lodash.template\": \"^4.4.0\",\n+ \"lodash.template\": \"^4.5.0\",\n \"lodash.uniq\": \"^4.5.0\",\n \"resolve\": \"^1.2...
2019-07-15T14:31:39
golang/go
fb16297ae571a232e46a67e6e40027f1f82ef6ec
36d8b15842748194c4a2ce7e9cf46c65a958283c
html/template: properly escape URLs in meta content attributes The meta tag can include a content attribute that contains URLs, which we currently don't escape if they are inserted via a template action. This can plausibly lead to XSS vulnerabilities if untrusted data is inserted there, the http-equiv attribute is set...
[ { "path": "doc/godebug.md", "patch": "@@ -160,6 +160,13 @@ and the [go command documentation](/cmd/go#hdr-Build_and_test_caching).\n \n Go 1.27 removed the `gotypesalias` setting, as noted in the [Go 1.22][#go-122] section.\n \n+Go 1.27 added a new `htmlmetacontenturlescape` setting that controls whether\n+...
2026-01-09T19:12:01
mrdoob/three.js
bca53e60926c4afb05c6d16672c00554d9c8bbde
060342f443a31cdc78bbb83831dabbc0d0892602
MaterialXLoader: Fixed flipped textures.
[ { "path": "examples/jsm/loaders/MaterialXLoader.js", "patch": "@@ -429,7 +429,6 @@ class MaterialXNode {\n \n \t\tconst texture = new Texture();\n \t\ttexture.wrapS = texture.wrapT = RepeatWrapping;\n-\t\ttexture.flipY = false;\n \n \t\tthis.materialX.textureCache.set( uri, texture );\n ", "additions": ...
2025-10-16T11:26:00
vuejs/vue
8f7133c8fa64a11fa12ee7ec511f174c48051570
bbdaaf480c00b25d7d900cae79c03ef8d5ca7d53
chore: fix sponsor url [ci skip]
[ { "path": "BACKERS.md", "patch": "@@ -21,7 +21,7 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu\n <img width=\"260px\" src=\"https://raw.githubusercontent.com/vuejs/vuejs.org/master/themes/vue/source/images/stdlib.png\">\n </a>\n </p>\n- \n+\n <!--special end-->\n...
2019-06-12T14:39:51
denoland/deno
c0c896b17a62f37a81e30865069307db7d629720
089589763706db9b1915b605918b2bd81f487e53
fix(cli): update typescript-go to 2026-03-09 (#32656)
[ { "path": "cli/build.rs", "patch": "@@ -26,7 +26,6 @@ fn compress_decls(out_dir: &Path) {\n \"lib.deno_cache.d.ts\",\n \"lib.deno_net.d.ts\",\n \"lib.deno_broadcast_channel.d.ts\",\n- \"lib.temporal.d.ts\",\n \"lib.decorators.d.ts\",\n \"lib.decorators.legacy.d.ts\",\n \"lib.dom.a...
2026-03-12T13:55:02
golang/go
36d8b15842748194c4a2ce7e9cf46c65a958283c
4270a44ed749c581457eed30239ad79195ff39c9
net/url: reject IPv6 literal not at start of host This change rejects IPv6 literals that do not appear at the start of the host subcomponent of a URL. For example: http://example.com[::1] -> rejects http://[::1] -> accepts Thanks to Masaki Hara (https://github.com/qnighy) of Wantedly. Fixes #77578. F...
[ { "path": "src/net/url/url.go", "patch": "@@ -547,7 +547,9 @@ func parseAuthority(scheme, authority string) (user *Userinfo, host string, err\n // parseHost parses host as an authority without user\n // information. That is, as host[:port].\n func parseHost(scheme, host string) (string, error) {\n-\tif open...
2026-01-28T20:29:52
mrdoob/three.js
3a0a8d98bc918bd9740191a386defe4e85a6d68e
2746aaed212ded35792c91226b4cd064ec8322f4
Examples: fix incorrect field assignment (#32056) * Fix field assignment * Additionally rename class field and option * undo unintentional change
[ { "path": "examples/jsm/objects/WaterMesh.js", "patch": "@@ -51,7 +51,7 @@ class WaterMesh extends Mesh {\n \t\t * @type {number}\n \t\t * @default 0.5\n \t\t */\n-\t\tthis.resolution = options.resolution !== undefined ? options.resolution : 0.5;\n+\t\tthis.resolutionScale = options.resolutionScale !== unde...
2025-10-15T17:56:48
vuejs/vue
f64765fa03c1eb1d37f3301ea5beb4d18e57158a
ff911c9ffef16c591b25df05cb2322ee737d13e0
chore(typo): fix comment typo (#10101)
[ { "path": "src/core/instance/render.js", "patch": "@@ -84,7 +84,7 @@ export function renderMixin (Vue: Class<Component>) {\n // render self\n let vnode\n try {\n- // There's no need to maintain a stack becaues all render fns are called\n+ // There's no need to maintain a stack because ...
2019-06-04T09:51:19
mrdoob/three.js
1225f52302fc071d6411080e75e051677870c418
f972284e08c85ce2fc2294b64da2be02dacb2043
FontLoader: Add text direction. (#31683) * Rebase from latest dev branch * Change random color to fix * Revert webgl_loader_ttf example * Move location of MPLUS font and rename * Fix font path * zip MPLUSRounded1c to reduce size * Fix un-used class * Update TextGeometry.js * Update FontLoader.js --------- Co...
[ { "path": "examples/fonts/MPLUSRounded1c/OFL.txt", "patch": "@@ -0,0 +1,91 @@\n+This Font Software is licensed under the SIL Open Font License, Version 1.1.\n+This license is copied below, and is also available with a FAQ at:\n+https://openfontlicense.org\n+\n+\n+--------------------------------------------...
2025-10-15T08:03:15
golang/go
460522ed1d987f05db04dec5c099887a07115337
b16360470c1eb574e8b7fa7a606810bf7cb6df7c
net/http: restore accidentally removed package doc Remove a blank line which accidentally crept in between the package doc comment and the package line. Fixes #77948 Change-Id: I6b513c1e9ea97d2a4b3c6f7b9b10092a6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/751520 LUCI-TryBot-Result: Go LUCI <golang-...
[ { "path": "src/net/http/doc.go", "patch": "@@ -105,5 +105,4 @@ Alternatively, the following GODEBUG settings are currently supported:\n The \"omithttp2\" build tag may be used to disable the HTTP/2 implementation\n contained in the http package.\n */\n-\n package http", "additions": 0, "deletions": ...
2026-03-04T21:22:44
denoland/deno
089589763706db9b1915b605918b2bd81f487e53
bbd5282f849f0b1372d55594fc0083d668f3a4d3
fix: wake event loop when V8 posts foreground tasks from background threads (#32450) When V8 background threads post foreground tasks (module compilation callbacks, Atomics.waitAsync timeouts, worker lifecycle events), the event loop had no way to know it should wake up and pump those tasks. This caused stalls where p...
[ { "path": "Cargo.lock", "patch": "@@ -11161,9 +11161,9 @@ dependencies = [\n \n [[package]]\n name = \"v8\"\n-version = \"146.3.0\"\n+version = \"146.4.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"8741c1f33d1ebf6c81f53fbb0c66fdd7a2b55feeead0ec40ec9468b387d67176\"\n...
2026-03-12T13:36:08
vuejs/vue
0caebfe905bc1e587fb583de778287c2362bba1a
1137e415c9e8701d1b0a25e5812f8c4dffeeeaaa
chore(typo): fix README tag mismatch (#9934)
[ { "path": "README.md", "patch": "@@ -92,7 +92,7 @@ Funds donated via Patreon go directly to support Evan You's full-time work on Vu\n </table>\n <!--special-china end-->\n \n-<h3 align=\"center\">Gold Sponsors</h4>\n+<h3 align=\"center\">Gold Sponsors</h3>\n \n <!--gold start-->\n <table>", "additions":...
2019-05-14T10:15:42
golang/go
b16360470c1eb574e8b7fa7a606810bf7cb6df7c
50126a8e44f76134349edf5ba3cc94efabc61c80
cmd/compile: fix ICE when indexing zero-sized arrays of non-SSAable types Fixes #77868 Change-Id: I3348825e24a71595c514113497db365a6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/749881 Reviewed-by: Keith Randall <khr@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gse...
[ { "path": "src/cmd/compile/internal/ssagen/ssa.go", "patch": "@@ -3555,9 +3555,9 @@ func (s *state) exprCheckPtr(n ir.Node, checkPtrOK bool) *ssa.Value {\n \t\t\t\t\t// use constants for the bounds check.\n \t\t\t\t\tz := s.constInt(types.Types[types.TINT], 0)\n \t\t\t\t\ts.boundsCheck(z, z, ssa.BoundsIndex...
2026-02-28T11:05:10
denoland/deno
bbd5282f849f0b1372d55594fc0083d668f3a4d3
f0dfb89720bf05d401d082bad87babe78ac036aa
fix(npm): support npmrc certfile + keyfile (#32655) This PR implements the missing support for `certfile` and `keyfile` options. Now when both are set, it creates an HTTP client with the client certificate attached.
[ { "path": "cli/http_util.rs", "patch": "@@ -1,8 +1,11 @@\n // Copyright 2018-2026 the Deno authors. MIT license.\n \n+use std::io::BufReader;\n+use std::path::Path;\n use std::sync::Arc;\n \n use boxed_error::Boxed;\n+use dashmap::DashMap;\n use deno_cache_dir::file_fetcher::RedirectHeaderParseError;\n use ...
2026-03-12T12:54:58
vuejs/vue
1137e415c9e8701d1b0a25e5812f8c4dffeeeaaa
26bd80774fd70625b2ec44ddd9c967571ef4a884
chore(typo): fix typo in comments (#9995)
[ { "path": "src/compiler/parser/html-parser.js", "patch": "@@ -22,7 +22,7 @@ const startTagOpen = new RegExp(`^<${qnameCapture}`)\n const startTagClose = /^\\s*(\\/?)>/\n const endTag = new RegExp(`^<\\\\/${qnameCapture}[^>]*>`)\n const doctype = /^<!DOCTYPE [^>]+>/i\n-// #7298: escape - to avoid being pased...
2019-05-08T15:08:29
golang/go
50126a8e44f76134349edf5ba3cc94efabc61c80
7aeb2f7e285006ad68789581dedf2b35ba444dbf
runtime, cmd/compile: use preemptible memclr for large pointer-free clears Large memory clearing operations (via clear() or large slice allocation) currently use non-preemptible assembly loops. This blocks the Garbage Collector from performing a Stop The World (STW) event, leading to significant tail latency or even i...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -1598,11 +1598,13 @@\n => (AndB (MemEq p q (Const64 <typ.Int64> [16]) mem)\n (MemEq (OffPtr <p.Type> p [16]) (OffPtr <q.Type> q [16]) (Const64 <typ.Int64> [c-16]) mem))\n \n-// Turn known-size calls to memclrNoHeapPointer...
2026-03-01T23:53:03
denoland/deno
9d246e77dd1afbdda4f21f7377ad6528048e4f7b
40b56f77c3798065de8150b4380549985ba83c51
fix(npm): retain authorization header on http->https redirect (#29878) Fixes #29869. ## Summary When an npm registry is configured with `http://` in `.npmrc` and the server redirects to `https://`, the authorization header was being stripped. This happened because the previous origin-based check (`url.origin() != ne...
[ { "path": "cli/http_util.rs", "patch": "@@ -351,8 +351,7 @@ impl HttpClient {\n let mut req = self.get(new_url.clone())?.build();\n \n let mut headers = headers.clone();\n- // SECURITY: Do NOT forward auth headers to a new origin\n- if new_url.origin() != url.origin() {\n+ ...
2026-03-12T11:16:14
vuejs/vue
569b728ab19d1956bf935a98c9c65a03d92ac85f
ab50e8e1da2f4f944af683252481728485fedf16
fix: fix function expression regex (#9922) fix #9920
[ { "path": "src/compiler/codegen/events.js", "patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-const fnExpRE = /^([\\w$_]+|\\([^)]*?\\))\\s*=>|^function\\s*(?:[\\w$]+)?\\s*\\(/\n+const fnExpRE = /^([\\w$_]+|\\([^)]*?\\))\\s*=>|^function(?:\\s+[\\w$]+)?\\s*\\(/\n const fnInvokeRE = /\\([^)]*?\\);*$/\n const simple...
2019-04-25T13:04:36
mrdoob/three.js
f972284e08c85ce2fc2294b64da2be02dacb2043
2b5ea3047752969bd69cd594002cbb4d71b515d6
DRACOLoader: Implement data alignment for WebGPU (#31991) * DRACOLoader: Implement data alignment for WebGPU * clean up * fix typo
[ { "path": "examples/jsm/loaders/DRACOLoader.js", "patch": "@@ -6,7 +6,9 @@ import {\n \tFileLoader,\n \tLoader,\n \tLinearSRGBColorSpace,\n-\tSRGBColorSpace\n+\tSRGBColorSpace,\n+\tInterleavedBuffer,\n+\tInterleavedBufferAttribute\n } from 'three';\n \n const _taskCache = new WeakMap();\n@@ -273,16 +275,25 ...
2025-10-15T07:58:51
golang/go
7aeb2f7e285006ad68789581dedf2b35ba444dbf
44ec057a3e89482cf775f5eaaf03b0b5fcab1fa4
cmd/go: update go help entries to focus on modules Some of the go help entries, especially go help packages, primarily explained GOPATH mode behavior. While building legacy projects in GOPATH mode will continue to be supported by the go command, it is now a very niche use case, and the docs should focus on modules. Th...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -267,12 +267,14 @@\n // prints the disassembly for fmt and all its dependencies.\n //\n // For more about specifying packages, see 'go help packages'.\n-// For more about where packages and binaries are installed,\n-// run 'go help gopath'.\n+// For more about...
2025-04-07T20:35:52
denoland/deno
40b56f77c3798065de8150b4380549985ba83c51
b8d9580c8eb528c581ef592ba6a014c9bfd29c19
perf(ext/web): reduce promise allocations in streams (#32652) ## Summary - Collapses `uponPromise`'s double `.then()` chain into a single `.then()` — the second chain only caught internal assertion errors, now handled via try/catch in wrapped handlers - Converts `setPromiseIsHandledToTrue(PromisePrototypeThen(...))` ...
[ { "path": "ext/web/06_streams.js", "patch": "@@ -220,10 +220,31 @@ function uponRejection(promise, onRejected) {\n * @returns {void}\n */\n function uponPromise(promise, onFulfilled, onRejected) {\n+ // Optimized: single .then() instead of double promise chain.\n+ // The original code was:\n+ // Prom...
2026-03-12T07:49:15
vuejs/vue
ab50e8e1da2f4f944af683252481728485fedf16
085d188379af98e9f482d7e2009ebfd771bd7ca5
fix(types): fix global namespace declaration for UMD bundle (#9912)
[ { "path": "types/index.d.ts", "patch": "@@ -1,9 +1,8 @@\n import { Vue } from \"./vue\";\n+import \"./umd\";\n \n export default Vue;\n \n-export as namespace Vue;\n-\n export {\n CreateElement,\n VueConstructor", "additions": 1, "deletions": 2, "language": "Unknown" }, { "path": "ty...
2019-04-25T03:18:07
mrdoob/three.js
2b5ea3047752969bd69cd594002cbb4d71b515d6
2cfd5739550a1221b783e17bf00ad675a728aea7
Renderer: Fix transmission flicker. (#32043)
[ { "path": "src/renderers/webgpu/WebGPUBackend.js", "patch": "@@ -777,8 +777,7 @@ class WebGPUBackend extends Backend {\n \n \t\t\tif ( renderContext.scissor ) {\n \n-\t\t\t\tconst { x, y, width, height } = renderContext.scissorValue;\n-\t\t\t\tcurrentPass.setScissorRect( x, y, width, height );\n+\t\t\t\tthi...
2025-10-15T07:51:56
golang/go
44ec057a3e89482cf775f5eaaf03b0b5fcab1fa4
f4afab14d0375d93115134f19fb90006dd664682
cmd/go: revert update default go directive in mod or work init This restores the previous behavior of setting go directive to the toolchain's version as per #77653. Fixes #77653 Change-Id: Ie9d2de025a75f39fd8d6d01776d0cf4e5da954f9 Reviewed-on: https://go-review.googlesource.com/c/go/+/749980 Reviewed-by: Dmitri Shur...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -29,7 +29,6 @@ import (\n \t\"cmd/go/internal/lockedfile\"\n \t\"cmd/go/internal/modfetch\"\n \t\"cmd/go/internal/search\"\n-\tigover \"internal/gover\"\n \n \t\"golang.org/x/mod/modfile\"\n \t\"golang.org/x/mod/module\"\n@@ -838,7 +837,7 @@ func...
2026-02-27T18:03:36
denoland/deno
7c84b09f35bc13aec624921dd9507637d505527d
9e682be240965f2edab07363f2a72750bf250ac8
fix(ext/signals): prevent panic on FreeBSD (#32518) This PR fixes a panic in Deno on FreeBSD. The issue occurs because the signal dictionary for FreeBSD incorrectly includes SIGLIBRT (signal 33), which is not defined on FreeBSD, leading to an EINVAL error when attempting to bind or handle signals. Fixes #31087
[ { "path": "ext/signals/dict.rs", "patch": "@@ -104,8 +104,7 @@ signal_dict!(\n (29, \"SIGINFO\"),\n (30, \"SIGUSR1\"),\n (31, \"SIGUSR2\"),\n- (32, \"SIGTHR\"),\n- (33, \"SIGLIBRT\")\n+ (32, \"SIGTHR\")\n );\n \n #[cfg(target_os = \"openbsd\")]", "additions": 1, "deletions": 2, "languag...
2026-03-11T22:33:12
vuejs/vue
085d188379af98e9f482d7e2009ebfd771bd7ca5
861aea16615a9736eab6af6d05fa5500ae4d6c37
fix(compiler): Remove the warning for valid v-slot value (#9917)
[ { "path": "src/compiler/error-detector.js", "patch": "@@ -36,6 +36,8 @@ function checkNode (node: ASTNode, warn: Function) {\n const range = node.rawAttrsMap[name]\n if (name === 'v-for') {\n checkFor(node, `v-for=\"${value}\"`, warn, range)\n+ } else if (name === 'v...
2019-04-25T03:17:39
mrdoob/three.js
bd3fe1f75001e9ec1322a97e39a10ecd2cec4927
c2a5593b6b5b144b8f9873673ef50d7c1e387422
WebGLRenderer: Try DFG LUT instead of Analytical approximation. (#32054) * WebGLRenderer: Try DFG LUT instead of Analytical approximation. * Potential fix for code scanning alert no. 3676: Unused variable, import, function or class Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]...
[ { "path": "build/three.module.js", "patch": "@@ -3,8 +3,8 @@\n * Copyright 2010-2025 Three.js Authors\n * SPDX-License-Identifier: MIT\n */\n-import { Matrix3, Vector2, Color, mergeUniforms, Vector3, CubeUVReflectionMapping, Mesh, BoxGeometry, ShaderMaterial, BackSide, cloneUniforms, Euler, Matrix4, Colo...
2025-10-15T03:57:33
golang/go
f4afab14d0375d93115134f19fb90006dd664682
76ebf6330787131e68390699da11c1dfcf742194
cmd/link: support Mach-O UNSIGNED relocations for dynamic imports on darwin When internally linking darwin binaries, the linker rejected Mach-O UNSIGNED (pointer) relocations targeting dynamic import symbols, producing errors like: unexpected reloc for dynamic symbol _swift_FORCE_LOAD_$_swiftIOKit These relocati...
[ { "path": "src/cmd/cgo/internal/test/cgo_darwin_test.go", "patch": "@@ -8,4 +8,5 @@ package cgotest\n \n import \"testing\"\n \n-func TestIssue76023(t *testing.T) { issue76023(t) }\n+func TestIssue76023(t *testing.T) { issue76023(t) }\n+func TestGlobalDataDynimport(t *testing.T) { unsignedRelocDyni...
2026-02-13T11:26:12
denoland/deno
e0464f494ee846121c0dbbaf37e3bf270a9cb8e9
3249c98a5527fbaadc3549fe393fef4fcd803e16
fix(ext/fetch): retry on stale pooled HTTP/1.1 connections (#32566) ## Summary Fixes #31955 When a server shuts down and restarts on the same port, the fetch client's connection pool may still hold a stale keep-alive connection. Reusing it causes `connection closed before message completed` errors on every other req...
[ { "path": "ext/fetch/lib.rs", "patch": "@@ -1514,6 +1514,30 @@ fn is_error_retryable(err: &(dyn std::error::Error + 'static)) -> bool {\n }\n }\n \n+ // HTTP/1.1: The connection was closed before the message completed.\n+ // This happens when a pooled keep-alive connection is stale (e.g. the\n+ // ...
2026-03-11T20:08:18
vuejs/vue
bd6cea0973247e2a8e1d4a2250614c0bf44f0b26
43b98fe25151b0b6bacd36f3ee27c5d61add5fdb
test: fix running e2e test on windows (#9909)
[ { "path": "test/e2e/nightwatch.config.js", "patch": "@@ -50,7 +50,8 @@ module.exports = {\n 'desiredCapabilities': {\n 'browserName': 'phantomjs',\n 'javascriptEnabled': true,\n- 'acceptSslCerts': true\n+ 'acceptSslCerts': true,\n+ 'phantomjs.binary.path': require(...
2019-04-25T02:35:16
mrdoob/three.js
c2a5593b6b5b144b8f9873673ef50d7c1e387422
df5aa82a1433b1748bd4776d0d3baf21138f2c07
TSL: Fix auto type conversion for layout parameters (#32059)
[ { "path": "src/nodes/core/Node.js", "patch": "@@ -749,7 +749,12 @@ class Node extends EventDispatcher {\n \n \t\t} else if ( buildStage === 'generate' ) {\n \n-\t\t\tconst isGenerateOnce = this.generate.length === 1;\n+\t\t\t// If generate has just one argument, it means the output type is not required.\n+\...
2025-10-15T03:27:06
golang/go
76ebf6330787131e68390699da11c1dfcf742194
c918cbd5561c14edc3caf04a007c4fabbbb896a1
syscall: make plan9 Errno implement the error interface The Errno type was added to plan9 in CL 750680 but without methods, so it didn't satisfy the error interface. Add Error, Temporary, and Timeout methods to match all other platforms and the Go 1 API contract (api/go1.txt's "pkg syscall, method (Errno) Error() stri...
[ { "path": "src/syscall/syscall_plan9.go", "patch": "@@ -14,6 +14,7 @@ package syscall\n import (\n \t\"errors\"\n \t\"internal/oserror\"\n+\t\"internal/strconv\"\n \t\"runtime\"\n \t\"unsafe\"\n )\n@@ -30,6 +31,10 @@ const bitSize16 = 2\n // without build-tagged files, using runtime.GOOS checks instead.\n t...
2026-03-03T18:05:17
vuejs/vue
a9a303009a4267b7f12b956741b4e34dfdc6566f
29e745f99f43d0629df547da80b016996ae70872
chore: fix SimpleSet export
[ { "path": "src/core/util/env.js", "patch": "@@ -87,11 +87,10 @@ if (typeof Set !== 'undefined' && isNative(Set)) {\n }\n }\n \n-interface SimpleSet {\n+export interface SimpleSet {\n has(key: string | number): boolean;\n add(key: string | number): mixed;\n clear(): void;\n }\n \n export { _Set }\n-e...
2019-04-25T02:00:51
denoland/deno
3249c98a5527fbaadc3549fe393fef4fcd803e16
b2ecb43e6229bad75498023c03c8b7f6abf73048
chore: fix windows build with latest msvc (#32644)
[ { "path": "Cargo.lock", "patch": "@@ -1870,7 +1870,7 @@ dependencies = [\n \"http-body 1.0.0\",\n \"http-body-util\",\n \"import_map\",\n- \"indexmap 2.9.0\",\n+ \"indexmap 2.12.0\",\n \"jsonc-parser 0.28.0\",\n \"jupyter-protocol\",\n \"keyring\",\n@@ -2064,7 +2064,7 @@ dependencies = [\n \"deno_med...
2026-03-11T19:08:23
mrdoob/three.js
cadb42b1c3ac539d43a697a8471c9fde1b5600fa
21009ebc442a3566e76ba0f4d9b8b19a5c910c7d
Update SSGINode.js Fix description.
[ { "path": "examples/jsm/tsl/display/SSGINode.js", "patch": "@@ -51,7 +51,7 @@ class SSGINode extends TempNode {\n \t/**\n \t * Constructs a new SSGI node.\n \t *\n-\t * @param {TextureNode} beautyNode - The texture node that represents the input of the effect.\n+\t * @param {TextureNode} beautyNode - A text...
2025-10-13T12:05:36
golang/go
c918cbd5561c14edc3caf04a007c4fabbbb896a1
30d873462fd42c7fc940fe96ca68dfe396f350c7
runtime: fix value of ENOSYS on mips from 38 to 89 Fixes #77730 Change-Id: I8b68b2d4353344e70f970d48a2d50c1a3bd7f273 Reviewed-on: https://go-review.googlesource.com/c/go/+/747664 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Cherry Mui <cherryyz@google.com> Rev...
[ { "path": "src/runtime/defs_linux_mips64x.go", "patch": "@@ -12,7 +12,7 @@ const (\n \t_EINTR = 0x4\n \t_EAGAIN = 0xb\n \t_ENOMEM = 0xc\n-\t_ENOSYS = 0x26\n+\t_ENOSYS = 0x59\n \n \t_PROT_NONE = 0x0\n \t_PROT_READ = 0x1", "additions": 1, "deletions": 1, "language": "Go" }, { "path": "s...
2026-02-22T00:47:45
mrdoob/three.js
a02ba14525946ce991a6a119449b7ea9c04f358e
c861af13ea6b691dfe3cc3f48b90644efa60a7b2
New Docs: Fixed examples layout breakage.
[ { "path": "files/main.css", "patch": "@@ -448,7 +448,7 @@ iframe#viewer {\n }\n \n #viewer {\n-\tpadding-left: 0;\n+\tpadding-left: var(--panel-width);\n }\n \n #button {", "additions": 1, "deletions": 1, "language": "CSS" }, { "path": "utils/docs/template/static/index.html", "patch"...
2025-10-13T10:46:01
vuejs/vue
91b8cda0b28d6774d7319d646c999e04d948a8cd
15704ce6ef274f30b05b9fc89337a18bbe48ff57
docs(contributing): fix a grammar error (#9858)
[ { "path": ".github/CONTRIBUTING.md", "patch": "@@ -59,7 +59,7 @@ $ npm run dev:test\n # build all dist files, including npm packages\n $ npm run build\n \n-# run the full test suite, include linting/type checking\n+# run the full test suite, including linting/type checking\n $ npm test\n ```\n ", "addit...
2019-04-10T15:45:47
denoland/deno
a395e3630d753bac2f8668a8e8e86198ac4b3c3d
cbdfed1dfe9a6664184fbb7e07608d841b8fafe7
refactor(ext/node): consolidate `node:fs` (part 7) (#32631) ## Summary Follow-up to #32588. Continues the node:fs consolidation series by inlining 4 more separate files into the main `fs.ts` polyfill: - `_fs/_fs_truncate.ts` → `truncate()`, `truncateSync()` - `_fs/_fs_utimes.ts` → `utimes()`, `utimesSync()`, `getVal...
[ { "path": "ext/node/lib.rs", "patch": "@@ -394,10 +394,6 @@ deno_core::extension!(deno_node,\n \"_fs/_fs_realpath.ts\",\n \"_fs/_fs_stat.ts\",\n \"_fs/_fs_statfs.ts\",\n- \"_fs/_fs_symlink.ts\",\n- \"_fs/_fs_truncate.ts\",\n- \"_fs/_fs_utimes.ts\",\n- \"_fs/_fs_watch.ts\",\n \"_n...
2026-03-11T13:32:48
golang/go
30d873462fd42c7fc940fe96ca68dfe396f350c7
0b9bcbc58c4cf127d5a42989d08cc0236faa71cc
image/jpeg: add support for non-standard chroma subsampling ratios Add "flex mode" decoding for JPEG images with non-standard YCbCr subsampling ratios that do not match the predefined YCbCrSubsampleRatio values. This includes cases where: 1. Cb and Cr components have different sampling factors 2. The Y component does ...
[ { "path": "src/image/jpeg/reader.go", "patch": "@@ -28,10 +28,12 @@ var errUnsupportedSubsamplingRatio = UnsupportedError(\"luma/chroma subsampling r\n \n // Component specification, specified in section B.2.2.\n type component struct {\n-\th int // Horizontal sampling factor.\n-\tv int // Vertical sa...
2026-01-22T07:04:46
mrdoob/three.js
1c2d462f93d6082dbef19ec97ae90bba033fb180
ecad1ec504436c3b2e1dd1461b4a3a9a6fa92c0e
GlitchPass: fix heightMap member name (#32047)
[ { "path": "examples/jsm/postprocessing/GlitchPass.js", "patch": "@@ -61,7 +61,7 @@ class GlitchPass extends Pass {\n \t\t// internals\n \n \t\tthis._heightMap = this._generateHeightmap( dt_size );\n-\t\tthis.uniforms[ 'tDisp' ].value = this.heightMap;\n+\t\tthis.uniforms[ 'tDisp' ].value = this._heightMap;\...
2025-10-13T08:28:00
denoland/deno
cbdfed1dfe9a6664184fbb7e07608d841b8fafe7
7bcaaa2a124f505b87fa6f9c84e13abeb0a8c9de
fix(npm): handle read-only bin files when setting up node_modules/.bin (#32632) ## Summary - Some npm tarballs ship bin files with read+execute but **no write** permission (e.g. `@formatjs/cli@2.15.0` uses mode `555`). `make_executable_if_exists()` was opening these files with `O_RDWR` unconditionally, causing `EACCE...
[ { "path": "libs/npm_installer/bin_entries.rs", "patch": "@@ -382,11 +382,12 @@ fn make_executable_if_exists(\n path: &Path,\n ) -> Result<bool, std::io::Error> {\n let sys = sys.with_paths_in_errors();\n- let mut open_options = sys_traits::OpenOptions::new();\n- open_options.read = true;\n- open_opti...
2026-03-11T13:28:01
golang/go
fdf3bee34261f383e394a06b1e4cf87fff684c1b
0856d46fd1f5d882e9033af813b0e2acfc31889f
net: treat EPERM/EACCES in IPv6 probe as supported When a BPF/seccomp filter denies the bind in the IPv6 capability probe with EPERM or EACCES, the probe incorrectly reports IPv6 as unsupported even though socket creation and setsockopt succeeded. This causes Listen on [::] to silently fall back to IPv4-only. Treat E...
[ { "path": "src/net/ipsock_posix.go", "patch": "@@ -70,7 +70,13 @@ func (p *ipStackCapabilities) probe() {\n \t\t\tcontinue\n \t\t}\n \t\tif err := syscall.Bind(s, sa); err != nil {\n-\t\t\tcontinue\n+\t\t\t// If the bind was denied by a security policy (BPF, seccomp,\n+\t\t\t// SELinux, etc.), the kernel st...
2026-02-07T19:39:15
mrdoob/three.js
28dcaf5f9db3326dc40eb98d377b48e72afbf771
a33da3ceec9fd47e8cea4042ed597b066d29f7e1
New Docs: Fixed left padding / media queries.
[ { "path": "files/main.css", "patch": "@@ -448,7 +448,7 @@ iframe#viewer {\n }\n \n #viewer {\n-\tpadding-left: var(--panel-width);\n+\tpadding-left: 0;\n }\n \n #button {", "additions": 1, "deletions": 1, "language": "CSS" }, { "path": "utils/docs/template/static/styles/page.css", "p...
2025-10-12T13:28:20
denoland/deno
7bcaaa2a124f505b87fa6f9c84e13abeb0a8c9de
693607582b02998bcf81a47d61176fd4c6046f1f
fix(ext/node): handle signal 0 in child_process.kill() (#32294) ## Summary - `child_process.kill(0)` threw `Unknown signal: 0` because `toDenoSignal()` didn't recognize signal 0 - In POSIX, signal 0 checks if a process exists without sending a signal (`kill(pid, 0)`) - Now handles signal `0` (both numeric and string ...
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -576,6 +576,17 @@ export class ChildProcess extends EventEmitter {\n return this.killed;\n }\n \n+ // Signal 0 is a special case: it checks if the process exists\n+ // without sending a signal (POSIX kill(pid, 0)).\n+ ...
2026-03-11T13:15:29
golang/go
0856d46fd1f5d882e9033af813b0e2acfc31889f
a7958c664fbb6c292783372a1bc6d2997f17d604
doc/go_spec: add max and min to forbidden expression statements list The expression statements section omitted max and min from the list of built-ins that are not permitted in statement context. Fixes #77896 Change-Id: I1f3d4b1d2465bde156ff751a9a7b5a212509e9a5 Reviewed-on: https://go-review.googlesource.com/c/go/+/7...
[ { "path": "doc/go_spec.html", "patch": "@@ -6046,7 +6046,7 @@ <h3 id=\"Expression_statements\">Expression statements</h3>\n </p>\n \n <pre>\n-append cap complex imag len make new real\n+append cap complex imag len make max min new real\n unsafe.Add unsafe.Alignof unsafe.Offsetof unsafe.Sizeof unsafe.Slice u...
2026-03-03T06:01:06
mrdoob/three.js
a33da3ceec9fd47e8cea4042ed597b066d29f7e1
2ab339085fd21cd720ba3da0adf9ac4501865be4
New Docs: Generate old docs system and design (#32036) * New Docs: Generate old doc system. * New Docs: Added THREE instance and ASCII Art. * New Docs: Templates clean up. * New Docs: Clean up. * New Docs: Avoid generating redundant tags. * New Docs: Fixed search results and link colors. * New Docs: Implemented ...
[ { "path": "examples/jsm/tsl/display/DenoiseNode.js", "patch": "@@ -259,6 +259,7 @@ export default DenoiseNode;\n /**\n * Generates denoise samples based on the given parameters.\n *\n+ * @private\n * @param {number} numSamples - The number of samples.\n * @param {number} numRings - The number of rings.\...
2025-10-12T12:59:16
denoland/deno
26972e65e0c74699f313f3b1181adb6243e6aeaf
9bb8552cf9d6bed5233007d135c4b0523522e672
fix(ext/node): fix TLS JSStreamSocket resource leak causing process hang (#32325) Closes https://github.com/denoland/deno/issues/30556 When `tls.connect({ socket })` receives a non-`net.Socket` stream (e.g. mssql/tedious wrapping TDS framing in a Duplex via native-duplexpair), Deno creates a `JSStreamSocket` to br...
[ { "path": "ext/node/ops/tls.rs", "patch": "@@ -336,6 +336,8 @@ struct JSDuplexResource {\n readable: Arc<Mutex<tokio::sync::mpsc::Receiver<Bytes>>>,\n writable: tokio::sync::mpsc::Sender<Bytes>,\n read_buffer: Arc<Mutex<VecDeque<Bytes>>>,\n+ closed: AtomicBool,\n+ close_notify: tokio::sync::Notify,\...
2026-03-11T13:10:26
golang/go
a7958c664fbb6c292783372a1bc6d2997f17d604
1a0e1fb616c997ffdb10b30a1c51397d803616da
time: mention Reset in Ticker.Stop doc Fixes #72968 Change-Id: Ia7bab559738ff66e19a030e031c157d344a35036 Reviewed-on: https://go-review.googlesource.com/c/go/+/659695 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Michael Pratt <mpratt@google.com> Auto-Submit: Ian Lance Taylor <iant@golang.org> Revi...
[ { "path": "src/time/tick.go", "patch": "@@ -47,8 +47,9 @@ func NewTicker(d Duration) *Ticker {\n }\n \n // Stop turns off a ticker. After Stop, no more ticks will be sent.\n-// Stop does not close the channel, to prevent a concurrent goroutine\n-// reading from the channel from seeing an erroneous \"tick\"....
2025-03-20T18:35:23
vuejs/vue
f11449d916a468651d4fd5024c37e3eebbc9941f
02d21c265c239682e73b2b3f98028f2da5e7205d
fix(core): only unset dom prop when not present fix #9650
[ { "path": "src/platforms/web/runtime/modules/dom-props.js", "patch": "@@ -19,10 +19,11 @@ function updateDOMProps (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n }\n \n for (key in oldProps) {\n- if (isUndef(props[key])) {\n+ if (!(key in props)) {\n elm[key] = ''\n }\n }\n+\n fo...
2019-03-20T06:13:23
mrdoob/three.js
00d1804cfdfe5dc0e41e7cda030e97b368cd0735
eeda755f0da15713b785da1866631bfc1bb061f1
Examples: Update deprecate async methods. (#32033) * fixes * remove init * add more examples * add more examples * improve inspector for particles snow * Update webgpu_instance_mesh.jpg * add more examples * Update webgpu_compute_texture_pingpong.html * Update webgpu_instance_mesh.jpg * updates * Update webg...
[ { "path": "examples/webgpu_compute_audio.html", "patch": "@@ -56,7 +56,7 @@\n \n \t\t\t\t// compute audio\n \n-\t\t\t\tawait renderer.computeAsync( computeNode );\n+\t\t\t\trenderer.compute( computeNode );\n \n \t\t\t\tconst wave = new Float32Array( await renderer.getArrayBufferAsync( waveArray.value ) );\n...
2025-10-11T18:48:30
denoland/deno
9bb8552cf9d6bed5233007d135c4b0523522e672
0238181e8a95be0885da93bbc99997988d07bff0
fix(ext/node): handle cargo features during publish (#32636) hot fix for v2.7.5 release that broke during `cargo publish` step.
[ { "path": "ext/node/ops/fs.rs", "patch": "@@ -9,6 +9,7 @@ use std::rc::Rc;\n use deno_core::OpState;\n use deno_core::ResourceId;\n use deno_core::op2;\n+#[cfg(feature = \"sync_fs\")]\n use deno_core::unsync::spawn_blocking;\n use deno_fs::FileSystemRc;\n use deno_fs::FsFileType;\n@@ -20,8 +21,24 @@ use den...
2026-03-11T12:38:55
golang/go
aa80d7a7e6bf97aa27a74cc5056ef270a2a0c2f4
ba057f7950f93a7cbd249ad79ed763a526a9cbbf
cmd/compile, simd/archsimd: add VPSRL immeidate peepholes Before this CL, the simdgen contains a sign check to selectively enable such rules for deduplication purposes. This left out `VPSRL` as it's only available in unsigned form. This CL fixes that. It looks like the previous documentation fix to SHA instruction mi...
[ { "path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules", "patch": "@@ -1067,14 +1067,23 @@\n (ShiftAllRightInt64x8 ...) => (VPSRAQ512 ...)\n (VPSRAQ512 x (MOVQconst [c])) => (VPSRAQ512const [uint8(c)] x)\n (ShiftAllRightUint16x8 ...) => (VPSRLW128 ...)\n+(VPSRLW128 x (MOVQconst [c])) => (VPSRLW128cons...
2026-02-24T22:34:44
vuejs/vue
02d21c265c239682e73b2b3f98028f2da5e7205d
bf5ceb759a0c9dfc8a9fa05b024f3d9aa4ea70e4
fix(core): cleanup timeouts for async components (#9649) close #9648
[ { "path": "src/core/vdom/helpers/resolve-async-component.js", "patch": "@@ -65,6 +65,8 @@ export function resolveAsyncComponent (\n if (owner && !isDef(factory.owners)) {\n const owners = factory.owners = [owner]\n let sync = true\n+ let timerLoading = null\n+ let timerTimeout = null\n \n ...
2019-03-20T05:55:37
mrdoob/three.js
eeda755f0da15713b785da1866631bfc1bb061f1
195f172ccefd2fded6bb05121128079db68b33d9
Docs: Fix errors in the zh docs' example code and translate code comments (#32041)
[ { "path": "docs/examples/zh/helpers/RectAreaLightHelper.html", "patch": "@@ -31,7 +31,7 @@ <h2>代码示例</h2>\n \t\t<code>\n \t\tconst light = new THREE.RectAreaLight( 0xffffbb, 1.0, 5, 5 );\n \t\tconst helper = new RectAreaLightHelper( light );\n-\t\tscene.add( helper );\n+\t\tlight.add( helper ); // 辅助对象必须作为子对...
2025-10-11T09:23:44
denoland/deno
e55b986c1c895e44f23be5b388b52460b2591088
4b0fdb1ca0ff8fbefd30b9e3a3f93e3593cc4b8e
fix(ext/node): handle generateKeyPair 2-arg call and enable PQC tests (#32619) ## Summary - `generateKeyPair(type, callback)` without options was throwing `ERR_INVALID_ARG_TYPE` because the callback was being treated as the options argument. Now properly detects when the second argument is a function and shifts ...
[ { "path": "ext/node/polyfills/internal/crypto/keygen.ts", "patch": "@@ -568,16 +568,20 @@ export function generateKeyPair(\n export function generateKeyPair(\n type: KeyType,\n options: unknown,\n- callback: (\n+ callback?: (\n err: Error | null,\n publicKey: any,\n privateKey: any,\n ) ...
2026-03-11T08:01:10
golang/go
ba057f7950f93a7cbd249ad79ed763a526a9cbbf
cc1241f353abbac2df2baf7abe09506be27782e8
cmd/compile: add concurrency-ok property to some compiler debug flags The property was missing from some flags that we potentially care about. This change only affects flags supplied in the command line (not explicitly changed within the compiler) but nonetheless it seems like a good idea to get them right -- we migh...
[ { "path": "src/cmd/compile/internal/base/debug.go", "patch": "@@ -12,6 +12,8 @@ var Debug DebugFlags\n // DebugFlags defines the debugging configuration values (see var Debug).\n // Each struct field is a different value, named for the lower-case of the field name.\n // Each field must be an int or string a...
2022-11-22T21:59:43
vuejs/vue
df4af4bd1906b9f23b62816142fdfbd6336d3d2f
22790b250cd5239a8379b4ec8cc3a9b570dac4bc
fix(types): allow using functions on the PropTypes (#9733) close #9692
[ { "path": "types/options.d.ts", "patch": "@@ -144,7 +144,7 @@ export interface RenderContext<Props=DefaultProps> {\n injections: any\n }\n \n-export type Prop<T> = { (): T } | { new(...args: any[]): T & object }\n+export type Prop<T> = { (): T } | { new(...args: any[]): T & object } | { new(...args: strin...
2019-03-19T04:54:27