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
59d4351ad8fc042bc263a16ed45a56e9ff5b013e
8c2674ea6a742173d278f3d6c3c75f4999b84293
fix(transition): handle local-formatted floats in toMs function. (#8495) fix #4894
[ { "path": "src/platforms/web/runtime/transition-util.js", "patch": "@@ -181,6 +181,10 @@ function getTimeout (delays: Array<string>, durations: Array<string>): number {\n }))\n }\n \n+// Old versions of Chromium (below 61.0.3163.100) formats floating pointer numbers\n+// in a locale-dependent way, using a...
2018-10-24T17:58:25
denoland/deno
498d6efc6c6564fa68be273d6b403f7ccc881f41
dde0741dc94351724169250acbc3901fed71b0ae
fix(ext/node): `util.parseEnv` and `process.loadEnvFile` compatibility (#32183)
[ { "path": ".github/workflows/ci.yml", "patch": "@@ -1347,7 +1347,7 @@ jobs:\n if: '!startsWith(github.ref, ''refs/tags/'')'\n env:\n CARGO_PROFILE_DEV_DEBUG: 0\n- run: cargo test --locked --lib -p deno -p denort -p node_shim -p deno_lib -p deno_snapshots -p deno_bundle_runti...
2026-02-20T15:44:02
golang/go
478d86446e88dc9e0b46e08914cb564d7c705d1e
8f739162e6479e98b0950ac9dc2f69cd79031be2
cmd/compile: on amd64 use 32bits copies for 64bits copies of 32bits values Fixes #76449 This saves a single byte for the REX prefix per OpCopy it triggers on. Change-Id: I1eab364d07354555ba2f23ffd2f9c522d4a04bd0 Reviewed-on: https://go-review.googlesource.com/c/go/+/731640 Reviewed-by: Michael Pratt <mpratt@google.c...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -43,6 +43,10 @@ func ssaMarkMoves(s *ssagen.State, b *ssa.Block) {\n \t}\n }\n \n+func isGPReg(r int16) bool {\n+\treturn x86.REG_AL <= r && r <= x86.REG_R15\n+}\n+\n func isFPReg(r int16) bool {\n \treturn x86.REG_X0 <= r && r <= x86.REG_Z31\n...
2025-12-20T13:11:35
vuejs/vue
eb604529c62e9954305889122f34499ad75b3b45
002acbe678a76efb57be2b80e4e6e54d8d82b08c
fix: support modifier combination of click.right + .once (#8492)
[ { "path": "src/compiler/helpers.js", "patch": "@@ -65,6 +65,18 @@ export function addHandler (\n )\n }\n \n+ // normalize click.right and click.middle since they don't actually fire\n+ // this is technically browser-specific, but at least for now browsers are\n+ // the only target envs that have ri...
2018-10-24T17:55:33
denoland/deno
08d2450c90cef5ca8abe52e389fee6e5221ca159
ff153750f2b240b910b56cf36aea8c94cc603c00
fix(ci): use noble apt repo for LLVM 21 packages (#32241) The CI was configured to install LLVM 21 from the jammy (Ubuntu 22.04) apt repository, but the runners use Ubuntu 24.04 (Noble). The mismatched distro codename caused 404 errors when downloading packages.
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -117,8 +117,8 @@ sudo apt-get -qq remove \\\n 'clang-12*' 'clang-13*' 'clang-14*' 'clang-15*' 'clang-16*' 'clang-17*' 'clang-18*' 'clang-19*' 'llvm-12*' 'llvm-13*' 'llvm-14*' 'llvm-15*' 'llvm-16*' 'llvm-17*' 'llvm-18*' 'llvm-19*' 'lld-12*' 'lld-13...
2026-02-20T04:20:28
mrdoob/three.js
f2e958a35276d86a24b455b00b7ef3e4d325651e
b38ac17fe20266251647c6082d08a4acda06cad5
fix(GTAOPass): exclude Line2 objects from AO calculation (#31422)
[ { "path": "examples/jsm/postprocessing/GTAOPass.js", "patch": "@@ -657,7 +657,7 @@ class GTAOPass extends Pass {\n \n \t\t\tcache.set( object, object.visible );\n \n-\t\t\tif ( object.isPoints || object.isLine ) object.visible = false;\n+\t\t\tif ( object.isPoints || object.isLine || object.isLine2) object....
2025-07-15T18:22:47
golang/go
3443ae086314e8cb7994166a5b63a8ab056b6c44
ca5ffe0092363f21df2c57b50144ba056f260049
net: fix some ineffectual assignments reported by ineffassign Updates #35136 Change-Id: I5422a50dde51c0a57f135c83f4963053285a9bc2 GitHub-Last-Rev: 6db1a88da60fce3e4fd6697d5db75d55d53b2b49 GitHub-Pull-Request: golang/go#76704 Reviewed-on: https://go-review.googlesource.com/c/go/+/727080 Reviewed-by: Florian Lehner <le...
[ { "path": "src/net/dial_test.go", "patch": "@@ -1088,14 +1088,16 @@ func TestDialContext(t *testing.T) {\n \t\t\tvar c Conn\n \t\t\tswitch network {\n \t\t\tcase \"tcp\", \"tcp4\", \"tcp6\":\n-\t\t\t\traddr, err := netip.ParseAddrPort(ln.Addr().String())\n+\t\t\t\tvar raddr netip.AddrPort\n+\t\t\t\traddr, e...
2025-12-06T01:35:22
vuejs/vue
0b16927c9d382b9cf134b131b898350340c2ee41
8f04135dbaa5f5f0500d42c0968beba8043f5363
fix(transition): check existence of `el.parentNode` (#8422) fix #8199 * fix(transition): check existence of `el.parentNode` If the new parentNode gets a `textContent` or `innerHTML` property during patching, the `transition` node would have been detached early, which means `el.parentNode` no longer exists. ...
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -32,13 +32,20 @@ export const emptyNode = new VNode('', {}, [])\n \n const hooks = ['create', 'activate', 'update', 'remove', 'destroy']\n \n+function childrenIgnored (vnode) {\n+ return vnode && vnode.data && vnode.data.domProps && (\n+ vnode.data.domPro...
2018-10-24T17:26:20
denoland/deno
ff153750f2b240b910b56cf36aea8c94cc603c00
964288509b72a5f4217f61bb85e104f41ef09c24
fix(lsp): typescript-go basic resolution (#32016)
[ { "path": "cli/lsp/documents.rs", "patch": "@@ -1296,6 +1296,49 @@ impl DocumentModules {\n module\n }\n \n+ pub fn module_for_tsgo_referrer(\n+ &self,\n+ uri: &Uri,\n+ compiler_options_key: &CompilerOptionsKey,\n+ ) -> Option<Arc<DocumentModule>> {\n+ let document = self.documents.get(u...
2026-02-19T17:50:21
mrdoob/three.js
f2e0aed17ff888dc53286bde56e17be4021d6777
1d91bc3827e88c3666a11a7965711f5135097da8
FBXLoader: Fix vertex color check. (#31420)
[ { "path": "examples/jsm/loaders/FBXLoader.js", "patch": "@@ -1784,7 +1784,7 @@ class GeometryParser {\n \t\tgeoInfo.vertexPositions = ( geoNode.Vertices !== undefined ) ? geoNode.Vertices.a : [];\n \t\tgeoInfo.vertexIndices = ( geoNode.PolygonVertexIndex !== undefined ) ? geoNode.PolygonVertexIndex.a : [];\...
2025-07-15T09:34:12
golang/go
b291c3c35c41ddd2db75c3b3ce8ae476fe11ea7b
d774ced6a97d3e354d92e874861fb24d7527e3cb
cmd/compile: fix typos in types2 api_test.go Change-Id: Ifee1b0f590ebb6671efd61a289c8884a225f5d6b GitHub-Last-Rev: 175ae95847b0108949459b881c2cd2144e74353e GitHub-Pull-Request: golang/go#76782 Reviewed-on: https://go-review.googlesource.com/c/go/+/728980 Reviewed-by: Jorropo <jorropo.pgm@gmail.com> Auto-Submit: Jorrop...
[ { "path": "src/cmd/compile/internal/types2/api_test.go", "patch": "@@ -1015,13 +1015,13 @@ func (r *N[C]) n() { }\n \t\tt.Errorf(`N.Method(...) returns %v for \"m\", but Info.Defs has %v`, gm, dm)\n \t}\n \tif gn != dn {\n-\t\tt.Errorf(`N.Method(...) returns %v for \"m\", but Info.Defs has %v`, gm, dm)\n+\...
2025-12-10T17:52:23
vuejs/vue
8f04135dbaa5f5f0500d42c0968beba8043f5363
a64ff1957c35270b818aa9cfdfb2acb6e42ce2a9
fix(parser): allow CRLFs in string interpolations (#8408) fix #8103
[ { "path": "src/compiler/parser/text-parser.js", "patch": "@@ -3,7 +3,7 @@\n import { cached } from 'shared/util'\n import { parseFilters } from './filter-parser'\n \n-const defaultTagRE = /\\{\\{((?:.|\\n)+?)\\}\\}/g\n+const defaultTagRE = /\\{\\{((?:.|\\r?\\n)+?)\\}\\}/g\n const regexEscapeRE = /[-.*+?^${}...
2018-10-24T17:24:55
denoland/deno
964288509b72a5f4217f61bb85e104f41ef09c24
e64ffe6a4f61e0ddeaaff6fb5b4cea6b0264c45f
fix(ext/node): handle shell redirections in child_process exec (#32087) When child_process.exec() runs a shell command like "deno" "script.js" < "input.txt", transformDenoShellCommand failed to add run -A because shell redirections (<, >, |) were included in the args passed to the CLI parser, triggering the metacharac...
[ { "path": "ext/node/lib.rs", "patch": "@@ -291,6 +291,7 @@ deno_core::extension!(deno_node,\n ops::process::op_process_abort,\n ops::process::op_node_process_constrained_memory<TSys>,\n ops::node_cli_parser::op_node_translate_cli_args,\n+ ops::shell::op_node_parse_shell_args,\n ops::tls::...
2026-02-19T17:48:40
mrdoob/three.js
7d3562fc04ee6fc501e9924ff3f48839d2122a97
e5a695b3db89ea1deff5c0f304ff61e38a29ef7a
fix test
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -2382,8 +2382,7 @@ class WebGLRenderer {\n \n \t\t\t\tconst reverseDepthBuffer = state.buffers.depth.getReversed();\n \n-\t\t\t\tif ( reverseDepthBuffer && camera.reversedDepth === false ) {\n-\n+\t\t\t\tif ( reverseDepthBuffer && camera.reversedDepth...
2025-07-13T02:04:16
golang/go
d774ced6a97d3e354d92e874861fb24d7527e3cb
6d89ab44cc783abb68d511e88723c2b8ebf4ca3b
cmd/go/internal/vcs: support git worktrees Fixes golang/go#58218 Change-Id: Ia155b26514557cf822caf37e727e5a410b0a36a6 Reviewed-on: https://go-review.googlesource.com/c/go/+/736260 Reviewed-by: Michael Pratt <mpratt@google.com> Reviewed-by: Junyang Shao <shaojunyang@google.com> LUCI-TryBot-Result: Go LUCI <golang-scop...
[ { "path": "src/cmd/go/internal/vcs/vcs.go", "patch": "@@ -35,10 +35,10 @@ import (\n // A Cmd describes how to use a version control system\n // like Mercurial, Git, or Subversion.\n type Cmd struct {\n-\tName string\n-\tCmd string // name of binary to invoke command\n-\tEnv []string ...
2026-01-14T00:45:30
vuejs/vue
a64ff1957c35270b818aa9cfdfb2acb6e42ce2a9
a71853bfc5b6ee117af05408f4d75c80893d44e2
fix(lifecycle): updated should not be called after component being destroyed (#8381) fix #8076
[ { "path": "src/core/observer/scheduler.js", "patch": "@@ -98,7 +98,7 @@ function callUpdatedHooks (queue) {\n while (i--) {\n const watcher = queue[i]\n const vm = watcher.vm\n- if (vm._watcher === watcher && vm._isMounted) {\n+ if (vm._watcher === watcher && vm._isMounted && !vm._isDestroye...
2018-10-24T17:24:31
mrdoob/three.js
e5a695b3db89ea1deff5c0f304ff61e38a29ef7a
2f1c6c03e6b4a1bd8c08fa44ba6baf8f60c6809d
Update WebGLRenderer.js Fix warning.
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -2385,7 +2385,7 @@ class WebGLRenderer {\n \t\t\t\tif ( reverseDepthBuffer && camera.reversedDepth === false ) {\n \n \t\t\t\t\t// @deprecated, r179\n-\t\t\t\t\twarnOnce( 'THREE.WebGLRenderer: reverseDepthBuffer must be used with `camera.reversedDepth...
2025-07-12T21:33:23
denoland/deno
8e15a1f450b91aa44a6f6b9881c9be717575e750
3239a3fe2d1da2cd93df4cbd099c8d0973699fa0
feat: add `navigator.platform` (#30795) Fixes https://github.com/denoland/deno/issues/24117 --------- Signed-off-by: Bedis Nbiba <bedisnbiba@gmail.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "cli/tsc/dts/lib.deno.window.d.ts", "patch": "@@ -362,6 +362,7 @@ interface Navigator {\n readonly userAgent: string;\n readonly language: string;\n readonly languages: string[];\n+ readonly platform: string;\n }\n \n /**", "additions": 1, "deletions": 0, "language": "Unknown" ...
2026-02-19T08:19:17
golang/go
021d5ca042775537d707c6f5ae2f53f57dac243f
c04335e33a6915ae4edc9c9f94a909a46557f99a
cmd/compile: avoid extending when already sufficiently shifted on loong64 This reduces 744 instructions from the go toolchain binary on loong64. file before after Δ % asm 599282 599222 -60 -0.0100% cgo 513606 513534 -72 -0.0140% compile 2939250 ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/LOONG64.rules", "patch": "@@ -843,6 +843,11 @@\n \n (MOVBUreg (ANDconst [c] x)) => (ANDconst [c&0xff] x)\n \n+// Avoid extending when already sufficiently shifted.\n+(MOVBUreg x:(SRLconst [c] y)) && c >= 24 => x\n+(MOVHUreg x:(SRLconst [c] y)) && c >= 16 => x\n+(...
2025-12-01T06:46:23
vuejs/vue
a71853bfc5b6ee117af05408f4d75c80893d44e2
504d5da7eff1c77117c2f57b0c4238e56de80fc5
fix(v-pre): skip compiling custom component tags in v-pre blocks (fix #8286) (#8376)
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -52,6 +52,10 @@ export function generate (\n }\n \n export function genElement (el: ASTElement, state: CodegenState): string {\n+ if (el.parent) {\n+ el.pre = el.pre || el.parent.pre\n+ }\n+\n if (el.staticRoot && !el.staticProcessed) {\n re...
2018-10-24T17:24:07
mrdoob/three.js
300b0fa760832d62391007a8cf1aab0c0b58c11f
ea7b0ce25104af6a5789103d1c9cd67fdb08090f
Update Line3.js Fix JSDoc.
[ { "path": "src/math/Line3.js", "patch": "@@ -176,8 +176,8 @@ class Line3 {\n \t * Returns the closest squared distance between this line segment and the given one.\n \t *\n \t * @param {Line3} line - The line segment to compute the closest squared distance to.\n-\t * @param {?Vector3} c1 - The closest point...
2025-07-10T10:50:24
denoland/deno
e945e5c74ada0a249d26d89dc0a71dd024333b7f
cad67da32d917bf1437b0f66ebdaee07f815a384
ci: fix saving wpt cache (#32228)
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -1171,6 +1171,15 @@ const buildJobs = buildItems.map((rawBuildItem) => {\n }\n \n if (buildItem.wpt.isPossiblyTrue()) {\n+ const buildCacheSteps = createRestoreAndSaveCacheSteps({\n+ name: \"wpt and autobahn test run hashes\",\n+ pa...
2026-02-19T00:41:18
golang/go
a1150b5017b789c6dc22d2c3939f7df10baf3dff
6b7206feb2df3116bd5c471813353ffec1ff25fe
cmd/compile/internal/pgo: error parsing profile (for pgo) after scaling If a valid profile is scaled such that the samples/counts become 0, an empty graph in which the compiler complain that we never saw a start line since the graph has no nodes which is a misleading error message. src/cmd/internal/pgo/pprof.go was m...
[ { "path": "src/cmd/compile/internal/test/pgo_inl_test.go", "patch": "@@ -365,3 +365,53 @@ func TestPGOHash(t *testing.T) {\n \t\tt.Errorf(\"output contains unexpected source line, out:\\n%s\", out)\n \t}\n }\n+\n+// TestPGOZeroValues tests that a profile with all sample values scaled to zero\n+// is treated...
2025-11-28T08:27:09
vuejs/vue
504d5da7eff1c77117c2f57b0c4238e56de80fc5
96b833bc5da5e5179bd56f1352cda84560451b89
fix(transition): transition-group should only listen for first-level children's end events (#8374)
[ { "path": "src/platforms/web/runtime/components/transition-group.js", "patch": "@@ -116,6 +116,9 @@ export default {\n addTransitionClass(el, moveClass)\n s.transform = s.WebkitTransform = s.transitionDuration = ''\n el.addEventListener(transitionEndEvent, el._moveCb = function cb (e...
2018-10-24T17:23:12
mrdoob/three.js
ea7b0ce25104af6a5789103d1c9cd67fdb08090f
963882db975141c84533c24902e8d8469c44b409
WebGPUBackend: Fix manual `clear()` regression. (#31388)
[ { "path": "src/renderers/webgpu/WebGPUBackend.js", "patch": "@@ -1236,7 +1236,7 @@ class WebGPUBackend extends Backend {\n \n \t\t}\n \n-\t\tif ( supportsDepth && depthStencilAttachment && depthStencilAttachment.depthLoadOp === undefined ) {\n+\t\tif ( supportsDepth && depthStencilAttachment ) {\n \n \t\t\t...
2025-07-10T09:18:23
denoland/deno
ec11e5416eaca5c3b3db3ff836a6398c427eb83a
409b1d4ffadcca8f67f2b424f49f8b67c4c0cfae
fix(ext/node): preserve streaming body on stale keepalive retry (#32215) Streaming writes (e.g. pipeline, node-fetch) bypass outputData and go directly to _bodyWriter, so they were lost when a stale keepalive connection triggered a retry. This caused timeouts for libraries like node-fetch and gaxios that use pipeline(...
[ { "path": "ext/node/polyfills/_http_outgoing.ts", "patch": "@@ -530,7 +530,13 @@ Object.defineProperties(\n }\n \n const { data, encoding, callback } = this.outputData.shift();\n- const ret = this._writeRaw(data, encoding, callback);\n+ this._flushingBuffer = true;\n+ let ret;\n+ ...
2026-02-18T13:03:10
vuejs/vue
5cfdf1a2484fa73b572eae4afd196dcf9e1912ba
038ed86967b70a8b7305104e63afaa586857af48
fix: handle undefined style properties in jsdom (fix #7444) (#8281)
[ { "path": "src/platforms/web/runtime/transition-util.js", "patch": "@@ -122,11 +122,12 @@ export function getTransitionInfo (el: Element, expectedType?: ?string): {\n hasTransform: boolean;\n } {\n const styles: any = window.getComputedStyle(el)\n- const transitionDelays: Array<string> = styles[transit...
2018-10-24T17:06:17
mrdoob/three.js
963882db975141c84533c24902e8d8469c44b409
b9ce407722a91c1a47336a25744846af3cc5c229
Line3: Add method for computing closest squared distance between line segments. (#31384) * Add implementation of closestDistanceToLine from RTCD. Add simple tests covering corner cases * Support clampToLine parameter. Add tests for not clamped version * Extact function that returns shortest segment * Extract shorte...
[ { "path": "src/math/Line3.js", "patch": "@@ -4,6 +4,12 @@ import { clamp } from './MathUtils.js';\n const _startP = /*@__PURE__*/ new Vector3();\n const _startEnd = /*@__PURE__*/ new Vector3();\n \n+const _d1 = /*@__PURE__*/ new Vector3();\n+const _d2 = /*@__PURE__*/ new Vector3();\n+const _r = /*@__PURE__*...
2025-07-10T07:47:23
golang/go
6edb9f9c51f4f9042563f6fcf68701d1fed33c8f
819c53c25f2992113c202644045b93bd3a578f54
go/types, types2: remove support for gotypesalias GODEBUG flag For #76472. Change-Id: Ia51b41639637b1de916625e73c26f625382be305 Reviewed-on: https://go-review.googlesource.com/c/go/+/736441 Reviewed-by: Alan Donovan <adonovan@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceacc...
[ { "path": "src/cmd/compile/internal/noder/irgen.go", "patch": "@@ -56,7 +56,6 @@ func checkFiles(m posMap, noders []*noder) (*types2.Package, *types2.Info, map[*\n \t\tIgnoreBranchErrors: true, // parser already checked via syntax.CheckBranches mode\n \t\tImporter: &importer,\n \t\tSizes: ...
2026-01-15T00:10:00
mrdoob/three.js
b9ce407722a91c1a47336a25744846af3cc5c229
965b51ca9c63db299a5e22d33163b7a2c099010f
TTFLoader: Fix when TTF has different unicode assign to same glyph index (#31386) * TTFLoader - Fix when TTF has different unicode assign to same glyph index * Update TTFLoader.js Clean up. * Change to isArray --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "examples/jsm/loaders/TTFLoader.js", "patch": "@@ -152,7 +152,19 @@ class TTFLoader extends Loader {\n \n \t\t\t\t\t} );\n \n-\t\t\t\t\tglyphs[ String.fromCodePoint( glyph.unicode ) ] = token;\n+\t\t\t\t\tif ( Array.isArray( glyph.unicodes ) && glyph.unicodes.length > 0 ) {\n+\t\t\t\t\t\t\n+\t\t\t...
2025-07-10T07:45:43
denoland/deno
409b1d4ffadcca8f67f2b424f49f8b67c4c0cfae
d590fb60f6e1f1069c392bf69ec55faaf9da160e
fix(audit): properly handle npm registries in subpaths (#32164) Fixes #32106
[ { "path": "cli/tools/pm/audit.rs", "patch": "@@ -149,7 +149,7 @@ mod npm {\n npm_url: Url,\n body: serde_json::Value,\n ) -> Result<AuditResponse, AnyError> {\n- let url = npm_url.join(\"/-/npm/v1/security/audits\").unwrap();\n+ let url = npm_url.join(\"-/npm/v1/security/audits\").unwrap();\...
2026-02-18T13:01:11
vuejs/vue
46b8d2c59dc259995a71662229ed52b8b8beeb38
ecac831691d27cf7a10ec73a004d3fbad7623d1a
fix(server): use path.posix.join to generate public path (#8177) fix #8167
[ { "path": "src/server/template-renderer/index.js", "patch": "@@ -60,7 +60,7 @@ export default class TemplateRenderer {\n // extra functionality with client manifest\n if (options.clientManifest) {\n const clientManifest = this.clientManifest = options.clientManifest\n- this.publicPath = c...
2018-10-24T17:02:11
golang/go
819c53c25f2992113c202644045b93bd3a578f54
c7258178cda55e3903ad8e4b6cc51861fb689457
cmd/compile: ensure ops have the expected argument widths The generic SSA representation uses explicit extension and truncation operations to change widths of values. The map intrinsics were playing somewhat fast and loose with this requirement. Fix that, and add a check to make sure we don't regress. I don't think t...
[ { "path": "src/cmd/compile/internal/ssa/_gen/divmod.rules", "patch": "@@ -223,7 +223,7 @@\n (Rsh64Ux64 <typ.UInt64>\n (Avg64u\n (Lsh64x64 <typ.UInt64> (ZeroExt32to64 x) (Const64 <typ.UInt64> [32]))\n- (Mul64 <typ.UInt64> (ZeroExt32to64 x) (Const64 <typ.UInt32> [int64(umagic32(c).m)]...
2025-12-18T20:29:39
mrdoob/three.js
42bd20050773c9ff64d582e0a4b88e30952026d2
d9a24afcdf0e4c8a19822017f24662007bc1f5e6
Update Line3.js Fix typo.
[ { "path": "src/math/Line3.js", "patch": "@@ -151,11 +151,11 @@ class Line3 {\n \t}\n \n \t/**\n-\t * Returns the closets point on the line for a given point.\n+\t * Returns the closest point on the line for a given point.\n \t *\n \t * @param {Vector3} point - The point to compute the closest point on the l...
2025-07-08T09:11:10
denoland/deno
d590fb60f6e1f1069c392bf69ec55faaf9da160e
476f0d9e93f0abea761c95e92eda908abb85d802
fix(ext/node): add missing `process.constrainedMemory()` API (#32209) ## Summary - Extracts the cgroup v1/v2 parsing logic used by `process.constrainedMemory()` into a shared public `cgroup` module in `ext/node/ops/process.rs` - Reuses the shared parser from `cli/lib/worker.rs` (V8 heap limit configuration) instead o...
[ { "path": "cli/lib/worker.rs", "patch": "@@ -155,6 +155,9 @@ pub fn create_isolate_create_params<TSys: DenoLibSys>(\n \n #[cfg(any(target_os = \"android\", target_os = \"linux\"))]\n mod linux {\n+ use deno_runtime::deno_node::ops::process::cgroup::CgroupVersion;\n+ use deno_runtime::deno_node::ops::proce...
2026-02-18T11:50:11
vuejs/vue
ecac831691d27cf7a10ec73a004d3fbad7623d1a
61c32cc6732aaf225d868cee79872d9d9fdd5dcc
fix(compiler): templates inside v-pre should be rendered to HTML (#8146) close #8041
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -18,6 +18,7 @@ export class CodegenState {\n maybeComponent: (el: ASTElement) => boolean;\n onceId: number;\n staticRenderFns: Array<string>;\n+ pre: boolean;\n \n constructor (options: CompilerOptions) {\n this.options = options\n@@ -29,6...
2018-10-24T17:01:29
golang/go
a006e17162ddf70b7ee23a8ec2e3e064d0102bd5
858d4bf8511a7741cf5c21f1d51b23ed180fd450
syscall: document Sendfile semantics syscall.Sendfile behavior differs significantly between operating systems. Document the platform-specific behavior for the offset argument and partial write reporting on Linux versus BSD-derived systems. Fixes #64044 Change-Id: I93f740c3e2df911a10bf0884ffab218d4bb4e5fc GitHub-La...
[ { "path": "src/syscall/syscall_unix.go", "patch": "@@ -525,6 +525,22 @@ func Socketpair(domain, typ, proto int) (fd [2]int, err error) {\n \treturn\n }\n \n+// Sendfile copies up to count bytes from file descriptor infd to file descriptor outfd.\n+//\n+// It wraps the sendfile system call. The behavior vari...
2026-01-18T14:11:05
mrdoob/three.js
36c2b6665b8d460751f398f8a084e24eeefbb252
ea90d92d150dba90abed495b4793fabfd103a438
WebGLRenderer: Add `ReversedCoordinateSystem`, fix shadows with `reverseDepthBuffer`. (#31370)
[ { "path": "examples/jsm/shaders/UnpackDepthRGBAShader.js", "patch": "@@ -43,8 +43,21 @@ const UnpackDepthRGBAShader = {\n \n \t\tvoid main() {\n \n-\t\t\tfloat depth = 1.0 - unpackRGBAToDepth( texture2D( tDiffuse, vUv ) );\n-\t\t\tgl_FragColor = vec4( vec3( depth ), opacity );\n+\t\t\tfloat depth = unpackRG...
2025-07-07T14:04:11
denoland/deno
951455ed1774e275b20e223e4bf3e649f6fb76a2
f01347e771191b0aa486e9a057c981d933c3f861
fix(bundle): let esbuild handle data urls (#32213) Fixes #32206. Instead of resolving them (which forces us to load them), just let esbuild handle them
[ { "path": "cli/tools/bundle/mod.rs", "patch": "@@ -1235,6 +1235,9 @@ impl DenoPluginHandler {\n kind,\n with\n );\n+ if path.starts_with(\"data:\") {\n+ return Ok(None);\n+ }\n let mut resolve_dir = resolve_dir.unwrap_or(\"\").to_string();\n let resolver = self.resolver.cl...
2026-02-17T23:23:19
vuejs/vue
61c32cc6732aaf225d868cee79872d9d9fdd5dcc
e9fc04ba50782c15703392272322e277fb92dd9a
Fix: block unnecessary input event on input tag placeholder in IE (#8140)
[ { "path": "src/platforms/web/runtime/modules/attrs.js", "patch": "@@ -97,7 +97,7 @@ function baseSetAttr (el, key, value) {\n /* istanbul ignore if */\n if (\n isIE && !isIE9 &&\n- el.tagName === 'TEXTAREA' &&\n+ (el.tagName === 'TEXTAREA' || el.tagName === 'INPUT') &&\n key ==...
2018-10-24T17:01:02
golang/go
858d4bf8511a7741cf5c21f1d51b23ed180fd450
8e3104dc269b959083f7e7133841e3366a477ef1
debug/elf: return FormatError when reading short files NewFile returns the raw error from ReadAt when failing to read the ELF identifier, typically io.EOF for empty or short files. This breaks the API contract that all parsing failures should return *FormatError. Wrap the error in FormatError for consistency with oth...
[ { "path": "src/debug/elf/file.go", "patch": "@@ -290,7 +290,7 @@ func NewFile(r io.ReaderAt) (*File, error) {\n \t// Read and decode ELF identifier\n \tvar ident [16]uint8\n \tif _, err := r.ReadAt(ident[0:], 0); err != nil {\n-\t\treturn nil, err\n+\t\treturn nil, &FormatError{0, \"cannot read ELF identifi...
2026-01-15T12:19:10
mrdoob/three.js
348c91b0eaa2cb6504ce61ca5d3e799eab4beb07
38de8801b76c0e5fdce8b2aae5257aae42284ccf
VideoTexture: Cancel rVFC on Dispose (#31375) * fix * lint * 0 * lint
[ { "path": "src/textures/VideoTexture.js", "patch": "@@ -53,18 +53,28 @@ class VideoTexture extends Texture {\n \t\t */\n \t\tthis.generateMipmaps = false;\n \n+\t\t/**\n+\t\t * The video frame request callback identifier, which is a positive integer.\n+\t\t *\n+\t\t * Value of 0 represents no scheduled rVFC...
2025-07-07T08:56:07
denoland/deno
f01347e771191b0aa486e9a057c981d933c3f861
3550a052e718bac916576fb91ec83d559cf915b7
ci: fix release rebuilding on prs (#32210)
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -769,8 +769,8 @@ const buildJobs = buildItems.map((rawBuildItem) => {\n sysRootStep,\n )(\n {\n+ // do this on PRs as well as main so that PRs can use the cargo build cache from main\n nam...
2026-02-17T21:10:17
vuejs/vue
e9fc04ba50782c15703392272322e277fb92dd9a
aef2a5f3dbd5e52ec9d5ce026d7b858539057186
test: fix assertion
[ { "path": "test/unit/modules/compiler/parser.spec.js", "patch": "@@ -512,7 +512,7 @@ describe('parser', () => {\n \n it('empty v-bind expression', () => {\n parse('<div :empty-msg=\"\"></div>', baseOptions)\n- expect('The value for a v-bind expression cannot be empty. Found in \"empty-msg\"').toHav...
2018-10-24T16:58:21
mrdoob/three.js
0201031d1a0bda66006149e4cbaaf753866014d8
32c4f23e12f1922bfb67c7a5f6a4ebe5ade79d99
USDCParser: Fix import.
[ { "path": "examples/jsm/loaders/usd/USDCParser.js", "patch": "@@ -1,3 +1,7 @@\n+import {\n+\tGroup\n+} from 'three';\n+\n class USDCParser {\n \n \tparse( buffer ) {\n@@ -10,4 +14,4 @@ class USDCParser {\n \n }\n \n-export { USDCParser };\n\\ No newline at end of file\n+export { USDCParser };", "additio...
2025-07-05T06:09:24
golang/go
8e3104dc269b959083f7e7133841e3366a477ef1
eaf6650c2bff2fe466621f8fa23844dcbbdbcee8
simd/archsimd/_gen/simdgen: fix typos in error messages simdgen: fix typos in error messages Change-Id: I921eea63c4847b2af43a1d5a1ea075e86f58aa77 GitHub-Last-Rev: 8c9dae51fd906aee04f52a5d44c6d4c923fc52d0 GitHub-Pull-Request: golang/go#77012 Reviewed-on: https://go-review.googlesource.com/c/go/+/732880 Reviewed-by: Ke...
[ { "path": "src/simd/archsimd/_gen/simdgen/gen_utility.go", "patch": "@@ -157,7 +157,7 @@ func (op *Operation) shape() (shapeIn inShape, shapeOut outShape, maskType maskS\n \t\t\tif shapeOut != OneVregOutAtIn && in.AsmPos == 0 && in.Class == \"vreg\" {\n \t\t\t\tshapeOut = OneVregOutAtIn\n \t\t\t} else {\n-\...
2025-12-27T14:09:40
denoland/deno
3550a052e718bac916576fb91ec83d559cf915b7
ac8f443b94a288fb6d0ea6503d9135933ff50644
fix(ext/node): improve process event handling and add missing APIs (#32200) ## Summary - Freeze `process.config` and its nested objects for Node.js compatibility (immutability) - Add `process.availableMemory()` using `Deno.systemMemoryInfo().available` - Fix `process.on/off/emit/prependListener` to handle Symbol even...
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -346,6 +346,10 @@ memoryUsage.rss = function (): number {\n return memoryUsage().rss;\n };\n \n+export function availableMemory(): number {\n+ return Deno.systemMemoryInfo().available;\n+}\n+\n // Returns a negative error code than can be recognized...
2026-02-17T19:30:22
vuejs/vue
aef2a5f3dbd5e52ec9d5ce026d7b858539057186
f5b5b3c96f00a321e0ba41f0d33a42b2338ef750
fix(compiler): maybeComponent should return true when "is" attribute exists (#8114) close #8101
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -26,7 +26,7 @@ export class CodegenState {\n this.dataGenFns = pluckModuleFunction(options.modules, 'genData')\n this.directives = extend(extend({}, baseDirectives), options.directives)\n const isReservedTag = options.isReservedTag || no\n-...
2018-10-24T16:50:42
mrdoob/three.js
937d157507f22f74f3ea1f188906cbe3bc888a82
6b2f433272da1f756c0dc621146515e5b80efcc9
LightProbeGenerator: Support `FloatType` in `fromCubeRenderTarget()`. (#31349) * LightProbeGenerator: Support `FloatType` in `fromCubeRenderTarget()`. * E2E: Move unstable example to exception list.
[ { "path": "examples/jsm/lights/LightProbeGenerator.js", "patch": "@@ -8,7 +8,8 @@ import {\n \tNoColorSpace,\n \tHalfFloatType,\n \tDataUtils,\n-\tWebGLCoordinateSystem\n+\tWebGLCoordinateSystem,\n+\tFloatType\n } from 'three';\n \n /**\n@@ -178,7 +179,11 @@ class LightProbeGenerator {\n \n \t\tif ( rendere...
2025-07-01T14:49:38
golang/go
eaf6650c2bff2fe466621f8fa23844dcbbdbcee8
1b7e5836ad2ae6bc5466e3b1916294d20403386c
test: use lower-case error message in heapsampling.go According to Go style guidelines, error strings should not be capitalized. Change-Id: Iacfb3f5192b7be40da99b6b7e4801f1ae1169efc GitHub-Last-Rev: 440396e0946edb18c422442ea235b5c57c2899af GitHub-Pull-Request: golang/go#76999 Reviewed-on: https://go-review.googlesour...
[ { "path": "test/heapsampling.go", "patch": "@@ -205,7 +205,7 @@ func checkAllocations(records []runtime.MemProfileRecord, leafFrame string, fram\n // consistently far from the expected value.\n func checkValue(fname string, ln int, testName string, want int64, got []int64) error {\n \tif got == nil {\n-\t\t...
2025-12-26T14:48:24
denoland/deno
7659f3c7d7e06220cf835865fa7e96558dfa4927
a8f201f9e8552bd5ea0823ec6454ce251fedb48f
fix(ext/node): normalize trailing dot in TLS servername (#32166) Fixes #30170 Node.js strips trailing dots from FQDN server names before TLS certificate verification, but Deno was passing the servername with the trailing dot directly to rustls. This caused certificate validation failures when connecting with a traili...
[ { "path": "ext/node/polyfills/_tls_wrap.js", "patch": "@@ -86,8 +86,14 @@ export class TLSSocket extends net.Socket {\n constructor(socket, opts = kEmptyObject) {\n const tlsOptions = { ...opts };\n \n- const hostname = opts.servername ?? opts.host ?? socket?._host ??\n+ let hostname = opts.serv...
2026-02-17T12:22:50
vuejs/vue
ecc239e47516d7f9a93b2cd49da4a2000960b8f7
1b69cbde74fd1d183a0c8afd72e774b8bf1daa89
fix(for): use IE compatible regex in v-for regex (#8048) Closes #7946
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -21,7 +21,7 @@ import {\n \n export const onRE = /^@|^v-on:/\n export const dirRE = /^v-|^@|^:/\n-export const forAliasRE = /([^]*?)\\s+(?:in|of)\\s+([^]*)/\n+export const forAliasRE = /([\\s\\S]*?)\\s+(?:in|of)\\s+([\\s\\S]*)/\n export const forIterato...
2018-10-24T16:48:07
mrdoob/three.js
6b2f433272da1f756c0dc621146515e5b80efcc9
5737a9b96cd7e68091e703031ea6233bdb62b6e5
RoundedBoxGeometry: add type, parameters and toJSON (#31340) * Enhance RoundedBoxGeometry: add type, update parameters and override toJSON * Update RoundedBoxGeometry.js Clean up. * Fix create box geometry with 1x1x1 dimensions to avoid normal/shading issues --------- Co-authored-by: Michael Herzog <michael.herzo...
[ { "path": "examples/jsm/geometries/RoundedBoxGeometry.js", "patch": "@@ -59,21 +59,40 @@ class RoundedBoxGeometry extends BoxGeometry {\n \t * @param {number} [width=1] - The width. That is, the length of the edges parallel to the X axis.\n \t * @param {number} [height=1] - The height. That is, the length o...
2025-07-01T14:01:48
golang/go
1b7e5836ad2ae6bc5466e3b1916294d20403386c
e9e05687dee08ba0f0fb07b076f1c3f47bb57f34
cmd/compile: speedup large init function compile time Fixes #77153 Change-Id: Ia3906e4d686281be78b65daf7a7a4fd1b2b2483d Reviewed-on: https://go-review.googlesource.com/c/go/+/737880 Reviewed-by: Keith Randall <khr@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Re...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -3342,6 +3342,9 @@ func (r *reader) pkgInitOrder(target *ir.Package) {\n \t// Outline (if legal/profitable) global map inits.\n \tstaticinit.OutlineMapInits(fn)\n \n+\t// Split large init function.\n+\tstaticinit.SplitLargeInit(fn)\n+\n \tta...
2026-01-21T11:11:29
mrdoob/three.js
4f67fd3767c0b22eead0540fbd80366b523b99c8
e9277b2678a1c45a02107b437c545c18a04a5013
Editor: Fix crash when geometry lacks position attribute. (#31334) * Fix crash when geometry lacks position attribute in Viewport.Info This patch prevents a runtime error in Viewport.Info.js that occurs when importing a GLB file containing geometries without a position attribute. Previously, the code assumed all geom...
[ { "path": "editor/js/Viewport.Info.js", "patch": "@@ -60,18 +60,25 @@ function ViewportInfo( editor ) {\n \t\t\t\tif ( object.isMesh || object.isPoints ) {\n \n \t\t\t\t\tconst geometry = object.geometry;\n+\t\t\t\t\tconst positionAttribute = geometry.attributes.position;\n \n-\t\t\t\t\tvertices += geometry...
2025-06-30T21:10:29
denoland/deno
a8f201f9e8552bd5ea0823ec6454ce251fedb48f
cd14853b7f67821df990eec8d43a4c772b5019bb
fix(ext/node): use primordials in ext/node/polyfills/_fs/_fs_lchown.ts (#32195) Towards #24236 Use primordials in `ext/node/polyfills/_fs/_fs_lchown.ts`. Changes: - Remove `prefer-primordials` lint ignore directive - Use `getValidatedPathToString` instead of `getValidatedPath().toString()` - Use `PromisePrototypeThe...
[ { "path": "ext/node/polyfills/_fs/_fs_lchown.ts", "patch": "@@ -1,20 +1,20 @@\n // Copyright 2018-2026 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n import {\n type CallbackWithError,\n makeCallba...
2026-02-17T10:39:50
vuejs/vue
db7287c23b11bdc032fb0786e6617f3c6c40c835
7597bb06e0d9ba142f894de5b90b2bf2d7765e08
fix(shared): check dates in looseEqual (#7940) Fix #7928 thanks to @w3cj for the initial version. This one is using getTime instead of toUTCString because it is much faster to compare
[ { "path": "src/shared/util.js", "patch": "@@ -286,6 +286,8 @@ export function looseEqual (a: any, b: any): boolean {\n return a.length === b.length && a.every((e, i) => {\n return looseEqual(e, b[i])\n })\n+ } else if (a instanceof Date && b instanceof Date) {\n+ return...
2018-10-24T16:45:06
golang/go
1996c22f0a58a32f5f415e1a6c84bcb305f04c36
c61a48619ff2d26543d0f4874ab495bbbfdc701f
syscall: return early on error in Recvmsg Currently, Recvmsg may access the rsa buffer even if the underlying syscall returns an error. Following the same change done for x/sys/unix.Recvmsg in CL 734740. For golang/go#76848 Change-Id: I2a145d822442a2033a76f4717317a39010b17bd5 Reviewed-on: https://go-review.googleso...
[ { "path": "src/syscall/syscall_unix.go", "patch": "@@ -385,6 +385,9 @@ func recvmsgInet6(fd int, p, oob []byte, flags int, from *SockaddrInet6) (n, oob\n func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags int, from Sockaddr, err error) {\n \tvar rsa RawSockaddrAny\n \tn, oobn, recvflags,...
2026-01-10T14:56:01
mrdoob/three.js
009726fd8c306a3fc33f3bf2edd3b2431493a625
e9a17272a3d98467f9d848f3bb606bfdf13f64ca
TSL Transpiler: Introduce `WGSLEncoder` (#31329) * Introduce `WGSLEncoder` * fix * cleanup code style * ignore break in switch-case * cleanup
[ { "path": "examples/jsm/transpiler/AST.js", "patch": "@@ -1,10 +1,13 @@\n+import { toFloatType } from './TranspilerUtils.js';\n+\n export class ASTNode {\n \n \tconstructor() {\n \n \t\tthis.isASTNode = true;\n \n \t\tthis.linker = {\n+\t\t\treference: null,\n \t\t\taccesses: [],\n \t\t\tassignments: []\n \...
2025-06-29T02:58:32
denoland/deno
cd14853b7f67821df990eec8d43a4c772b5019bb
bdbe8bea09dd02712c03db0c28d244dad604cb44
ci: fix mtime cache for node types (#32205) The CI was rebuilding due to the node types directory being watched and the mtimes cache not working with directories.
[ { "path": "cli/build.rs", "patch": "@@ -155,8 +155,6 @@ fn process_node_types(out_dir: &Path) {\n Ok(())\n }\n \n- println!(\"cargo:rerun-if-changed={}\", node_dir.display());\n-\n let mut paths = Vec::new();\n visit_dirs(&node_dir, &mut |path| {\n paths.push(path.to_path_buf());\n@@ -166,6 +...
2026-02-17T04:47:47
vuejs/vue
7597bb06e0d9ba142f894de5b90b2bf2d7765e08
9d2f9a034f9c40d5ba6d8b1e131b1bfb675dc1cf
test: fix ssr tests
[ { "path": "test/ssr/compile-with-webpack.js", "patch": "@@ -4,6 +4,7 @@ import MemoryFS from 'memory-fs'\n \n export function compileWithWebpack (file, extraConfig, cb) {\n const config = Object.assign({\n+ mode: 'development',\n entry: path.resolve(__dirname, 'fixtures', file),\n module: {\n ...
2018-10-24T16:42:53
golang/go
d2aad0df601df3a48ee4823309872cd224d91aa3
bfb851c31eaf385649263e42e1a8620e2df01158
runtime: guard unexpected return pc gp.m dereference If stack scanning reaches here while scanning a waiting goroutine, gp.m will be nil. We are going to crash anyway because the stack is corrupt, but we still want to reach the print below for context rather than dying with a SIGSEGV here. For #64030. Change-Id: I6a...
[ { "path": "src/runtime/traceback.go", "patch": "@@ -456,7 +456,7 @@ func (u *unwinder) next() {\n \t\t// get everything, so crash loudly.\n \t\tfail := u.flags&(unwindPrintErrors|unwindSilentErrors) == 0\n \t\tdoPrint := u.flags&unwindSilentErrors == 0\n-\t\tif doPrint && gp.m.incgo && f.funcID == abi.FuncI...
2025-12-03T20:42:03
vuejs/vue
9d2f9a034f9c40d5ba6d8b1e131b1bfb675dc1cf
76fd45c9fd611fecfa79997706a5d218de206b68
fix(sfc): avoid deindent when pad option is specified (#7647)
[ { "path": "src/sfc/parser.js", "patch": "@@ -83,11 +83,15 @@ export function parseComponent (\n function end (tag: string, start: number) {\n if (depth === 1 && currentBlock) {\n currentBlock.end = start\n- let text = deindent(content.slice(currentBlock.start, currentBlock.end))\n+ let...
2018-10-24T16:10:58
denoland/deno
25b79aab0267bbff2889c5ba1a9ba2f8112e1a95
8012d48ec911d2e8619a3530008496d06da01dc1
fix(node/http): preserve request body on stale keepalive retry (#32148) Closes https://github.com/denoland/deno/issues/32006 When a reused keepAlive socket goes stale, the retry logic was not re-sending the request body for POST/PUT/PATCH requests. The body data in outputData was consumed by _flushBuffer() before the...
[ { "path": "ext/node/polyfills/http.ts", "patch": "@@ -572,6 +572,11 @@ class ClientRequest extends OutgoingMessage {\n this._bodyWriteRid,\n baseConnRid,\n );\n+ // Save body data before flushing so it can be restored if\n+ // a stale keepAlive socket fails during t...
2026-02-16T19:26:51
mrdoob/three.js
fcddfd2e1d345e0b378ea8729f3e5ff287cc9eaa
0af81f41f92407931adc4a4d7052d5932e4e9a38
TSL Transpiler: Introduce `Linker` and improvements (#31314) * updates * cleanup * fix hasAssignment * fix float import * fix negate * improve numeric expression
[ { "path": "examples/jsm/transpiler/AST.js", "patch": "@@ -1,19 +1,119 @@\n-export class Program {\n+export class ASTNode {\n \n \tconstructor() {\n \n-\t\tthis.body = [];\n+\t\tthis.isASTNode = true;\n+\n+\t\tthis.linker = {\n+\t\t\taccesses: [],\n+\t\t\tassignments: []\n+\t\t};\n+\n+\t\tthis.parent = null;...
2025-06-27T15:10:35
golang/go
0152075d5aba0f198ac67fb426a0fc4c16e2b363
a53589662719d0186e3ce3b965c082b829d0ce4c
encoding/json/v2: remove issue reference in Duration formatting error The json/v2 working group decided to commit to no default representation for time.Duration for the foreseeable future. Thus, we can remove the issue reference in the error message. If JavaScript (TC39) formally adopts the Temporal.Duration type, wh...
[ { "path": "src/encoding/json/v2/arshal_time.go", "patch": "@@ -54,7 +54,7 @@ func makeTimeArshaler(fncs *arshaler, t reflect.Type) *arshaler {\n \t\t\t\treturn marshalNano(enc, va, mo)\n \t\t\t} else {\n \t\t\t\t// TODO(https://go.dev/issue/71631): Decide on default duration representation.\n-\t\t\t\treturn...
2026-01-09T01:27:59
mrdoob/three.js
cac652a6078318d935a2fc97562c401381102ffa
681a4fd3d9f223bfedce82bccf10e2e7d655fb46
RoundedBoxGeometry: Fix parameters of the parent class (#31319)
[ { "path": "examples/jsm/geometries/RoundedBoxGeometry.js", "patch": "@@ -70,7 +70,7 @@ class RoundedBoxGeometry extends BoxGeometry {\n \t\t// ensure radius isn't bigger than shortest side\n \t\tradius = Math.min( width / 2, height / 2, depth / 2, radius );\n \n-\t\tsuper( 1, 1, 1, segments, segments, segme...
2025-06-27T07:44:55
vuejs/vue
af819a07dd8c2afc94e670e81b5e248f82794334
5e912976c45ca19d8524657bffe6883723027ed2
refactor(shared-utils): Improve readability and consistency in code comments (#8529) Improvements that apply to all comments: - Consistent use of periods - Consistent use of commas - Consistent capitalization - Correct use of articles (a, an, the) Improvements to specific comments: - Correct pluralization in t...
[ { "path": "src/shared/util.js", "patch": "@@ -2,8 +2,8 @@\n \n export const emptyObject = Object.freeze({})\n \n-// these helpers produces better vm code in JS engines due to their\n-// explicitness and function inlining\n+// These helpers produce better VM code in JS engines due to their\n+// explicitness ...
2018-10-23T19:53:47
denoland/deno
8012d48ec911d2e8619a3530008496d06da01dc1
b248af44b755036bd0da339ae62d1a90fa049434
fix(test): throw when Deno.test() is called during test execution (#32184) Fixes #30787. `Deno.test()` was being accepted even when called from inside a running test callback. That means nested registrations could silently be ignored and tests looked like they passed. Now `Deno.test()` calls made from inside a runni...
[ { "path": "cli/ops/testing.rs", "patch": "@@ -132,7 +132,7 @@ fn op_register_test(\n };\n state\n .borrow_mut::<TestContainer>()\n- .register(description, function);\n+ .register(description, function)?;\n ret_buf.copy_from_slice(&(id as u32).to_le_bytes());\n Ok(())\n }", "additions":...
2026-02-16T17:50:06
golang/go
dae71067ce7ee41ebe752a4ee3c544506e74f824
adb64adfd74470a0653dde9214a1acb0ddf72268
cmd/compile: fix mis-compilation for static array initialization The bug was first introduced when the compiler is still written in C, with CL 2254041. The static array was laid out with the wrong context, causing a stack pointer will be stored in global object. Fixes #61730 Fixes #77193 Change-Id: I22c8393314d251be...
[ { "path": "src/cmd/compile/internal/walk/complit.go", "patch": "@@ -567,11 +567,7 @@ func anylit(n ir.Node, var_ ir.Node, init *ir.Nodes) {\n \t\t\t// lay out static data\n \t\t\tvstat := readonlystaticname(t)\n \n-\t\t\tctxt := inInitFunction\n-\t\t\tif n.Op() == ir.OARRAYLIT {\n-\t\t\t\tctxt = inNonInitFu...
2026-01-21T07:39:20
vuejs/vue
99a51b452fa13fc4392e87215a8c3024adf5f710
4dec3b52c9b71f816e6b86d42ea53e9f2e559646
fix(types): make VNodeDirective properties optional, fix #8013 (#8003)
[ { "path": "types/options.d.ts", "patch": "@@ -160,9 +160,13 @@ export interface WatchOptionsWithHandler<T> extends WatchOptions {\n handler: WatchHandler<T>;\n }\n \n+export interface DirectiveBinding extends Readonly<VNodeDirective> {\n+ readonly modifiers: { [key: string]: boolean };\n+}\n+\n export ty...
2018-10-22T20:09:23
denoland/deno
b248af44b755036bd0da339ae62d1a90fa049434
8dc2fbf7884b8a08f144aba73259306595ff9b4e
fix(ext/node): export File class from node:buffer module (#32182) Node.js 20+ exports the `File` class from the `buffer` module. Currently Deno's `node:buffer` polyfill exports `Blob` but not `File`, which causes runtime errors like: ``` Error: Attempt to export a nullable value for "File" ``` This breaks frameworks...
[ { "path": "ext/node/polyfills/buffer.ts", "patch": "@@ -7,6 +7,7 @@ export {\n Buffer,\n constants,\n default,\n+ File,\n INSPECT_MAX_BYTES,\n isAscii,\n isUtf8,", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "ext/node/polyfills/internal/buffer.d.ts", ...
2026-02-16T17:46:23
golang/go
2d37c2077854e225204a7c4c26c10453a20de6d1
455282911aba7512e2ba045ffd9244eb97756247
go/types, types2: better error when selecting field on type rather than value Fixes #6814. Change-Id: I659670998f8e89400d03d40189e8c54f7e705cdc Reviewed-on: https://go-review.googlesource.com/c/go/+/738040 Reviewed-by: Alan Donovan <adonovan@google.com> Auto-Submit: Robert Griesemer <gri@google.com> LUCI-TryBot-Resul...
[ { "path": "src/cmd/compile/internal/types2/call.go", "patch": "@@ -835,6 +835,7 @@ func (check *Checker) selector(x *operand, e *syntax.SelectorExpr, wantType bool\n \t\tcheck.errorf(e.Sel, MissingFieldOrMethod, \"%s.%s undefined (%s)\", x.expr, sel, why)\n \t\tgoto Error\n \t}\n+\t// obj != nil\n \n \t// m...
2026-01-21T22:40:04
vuejs/vue
9d19f84d4e7a281484a6eb3f92e6a266a1adc243
79cabadeace0e01fb63aa9f220f41193c0ca93af
docs(readme): grammar fix, extra 'the' (#8887)
[ { "path": "README.md", "patch": "@@ -290,7 +290,7 @@ To check out [live examples](https://vuejs.org/v2/examples/) and docs, visit [vu\n \n ## Questions\n \n-For questions and support please use the [the official forum](http://forum.vuejs.org) or [community chat](https://chat.vuejs.org/). The issue list of t...
2018-10-02T05:56:24
denoland/deno
02c6d3d30142236d75c1de969dd342ec8c2f6f3b
48c89eea2405f7df71f00f76ab839ba955826012
fix(ext/node): `assert.ok` compatibility (#32173) Allows https://github.com/nodejs/node/blob/v24.12.0/test/parallel/test-assert-first-line.js to pass --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "Cargo.lock", "patch": "@@ -2512,6 +2512,7 @@ dependencies = [\n \"brotli\",\n \"bytes\",\n \"data-encoding\",\n+ \"deno_ast\",\n \"deno_core\",\n \"deno_error\",\n \"deno_fetch\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "ext/node/Cargo.toml",...
2026-02-16T14:58:54
golang/go
a8291eb61402d4549b69803fc8f834ded45b1f6c
4edaaf2b529219ff219798914f730ca5a0ab018b
cmd/compile/internal/staticinit: fix bug in global new(expr) The StaticInit pass asserts that the operand of &v is a global, but this is not so for the &autotemp desugaring of new(expr). (The variable has by that point escaped to the heap, so the object code calls runtime.newobject. A future optimization would be to ...
[ { "path": "src/cmd/compile/internal/staticinit/sched.go", "patch": "@@ -228,6 +228,9 @@ func (s *Schedule) staticcopy(l *ir.Name, loff int64, rn *ir.Name, typ *types.Ty\n \tcase ir.OADDR:\n \t\tr := r.(*ir.AddrExpr)\n \t\tif a, ok := r.X.(*ir.Name); ok && a.Op() == ir.ONAME {\n+\t\t\tif a.Class != ir.PEXTER...
2026-01-20T21:18:59
mrdoob/three.js
5ad8fee1a12c25a3f21ef6ce47302a1b5cfc5977
87c88a4d9e9a6ec2fade1552390f731810f65ed5
Manual: Fix links to homepage. (#31301)
[ { "path": "manual/examples/resources/editor.html", "patch": "@@ -242,7 +242,7 @@\n <button class=\"button-fullscreen\">&nbsp;</button>\n </div>\n <div class=\"panelogo\">\n- <div><a href=\"/\"><span data-subst=\"textContent|name\"></span>&nbsp;</a><a href=\"/\"><img data...
2025-06-22T08:16:27
vuejs/vue
79cabadeace0e01fb63aa9f220f41193c0ca93af
6b1d431a89f3f7438d01d8cc98546397f0983287
chore: fix OpenCollective silver tier
[ { "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/codexyz.png\">\n </a>\n </p>\n- \n+\n <!--special end-->\...
2018-09-19T18:18:17
denoland/deno
5c8a33e3cffbae7437f44dabf54cc44b410d437f
0f2fecf35ce2beb82c8a23f154ac4a395ae4ce83
ci: fix mtime cache (#32193)
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -16,7 +16,7 @@ import {\n // Bump this number when you want to purge the cache.\n // Note: the tools/release/01_bump_crate_versions.ts script will update this version\n // automatically via regex, so ensure that this line maintains this format.\n-co...
2026-02-16T05:40:48
golang/go
7251c9e0f00a6d7d37bb441f3e823c160131e9b5
532e3203492ebcac67b2f3aa2a52115f49d51997
doc: fix urlmaxqueryparams typos Updates #77101. Change-Id: I6a6a636cd58e1bd01943066368cb1424db6c6a92 Reviewed-on: https://go-review.googlesource.com/c/go/+/737040 Reviewed-by: Damien Neil <dneil@google.com> Auto-Submit: Michael Pratt <mpratt@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-account...
[ { "path": "doc/godebug.md", "patch": "@@ -167,8 +167,8 @@ Go 1.26 added a new `urlmaxqueryparams` setting that controls the maximum number\n of query parameters that net/url will accept when parsing a URL-encoded query string.\n If the number of parameters exceeds the number set in `urlmaxqueryparams`,\n pa...
2026-01-16T17:20:39
mrdoob/three.js
b1d24bdc37bc89354c0eb9ac034ba96a20474a51
8f21de2b812bc63d94044ef334ea6925b2f8326d
TSL Transpiler: Add simplified `Fn()` layout (#31299) * fix arithmetic operators check * add simplified layout
[ { "path": "examples/jsm/transpiler/GLSLDecoder.js", "patch": "@@ -4,6 +4,10 @@ const unaryOperators = [\n \t'+', '-', '~', '!', '++', '--'\n ];\n \n+const arithmeticOperators = [\n+\t'*', '/', '%', '+', '-', '<<', '>>'\n+];\n+\n const precedenceOperators = [\n \t'*', '/', '%',\n \t'-', '+',\n@@ -328,7 +332,...
2025-06-21T23:59:11
vuejs/vue
a9eb198413e7b1baaf364e93ec3c093734529fe8
1e1ce0cac7d6c22c980021cbd3cb207a47e85dfb
fix(types): relax the return type of props default option (#8537)
[ { "path": "types/options.d.ts", "patch": "@@ -133,7 +133,7 @@ export type PropValidator<T> = PropOptions<T> | Prop<T> | Prop<T>[];\n export interface PropOptions<T=any> {\n type?: Prop<T> | Prop<T>[];\n required?: boolean;\n- default?: T | null | undefined | (() => object);\n+ default?: T | null | und...
2018-09-18T02:33:58
denoland/deno
1951149659c32b26c9f1dfb557eecc20a278e298
21461bd0bf6cb3105e10f07e349ed07ede9a6f34
fix(ext/node): process.exit() in worker immediately halts execution (#32169) ## Summary In Node.js, `process.exit()` inside a worker immediately stops all JS execution at the C++ level. In Deno, it called `workerClose()` which triggered V8's `terminate_execution()`, but JS continued running because V8 only checks the...
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -128,6 +128,21 @@ export const exit = (code?: number | string) => {\n // Any valid thing `process.exitCode` set is already held in Deno.exitCode.\n // At this point, we don't have to pass around Node's raw/string exit value.\n process.reallyExit(...
2026-02-15T21:18:35
golang/go
532e3203492ebcac67b2f3aa2a52115f49d51997
bb7c0c717c8b3517210dce8f38cb2c91694af4e2
go/types,cmd/compile/internal/types2: better diagnostic for type shadowing This change causes the "x is not a type" diagnostic to describe x's actual kind, helping to reveal when shadowing is at work. (The kind description could improve other errors too.) Fixes #76877 Change-Id: Ia3484998bb384ff570c20b6792cf8461c60...
[ { "path": "src/cmd/compile/internal/types2/object.go", "patch": "@@ -671,3 +671,52 @@ func writeFuncName(buf *bytes.Buffer, f *Func, qf Qualifier) {\n \t}\n \tbuf.WriteString(f.name)\n }\n+\n+// objectKind returns a description of the object's kind.\n+func objectKind(obj Object) string {\n+\tswitch obj := o...
2025-12-18T17:27:11
mrdoob/three.js
37c98fa6bcf0289083926677eacea650ab6d6186
4f796737b89d61d5f7006b68e3f746a2a53e37fb
TSL Transpiler: Fix unary negate after arithmetic operator (#31297) * fix negate * cleanup * Update GLSLDecoder.js
[ { "path": "examples/jsm/transpiler/GLSLDecoder.js", "patch": "@@ -327,6 +327,9 @@ class GLSLDecoder {\n \n \t\t\t\tif ( ! token.isOperator || i === 0 || i === tokens.length - 1 ) return;\n \n+\t\t\t\t// important for negate operator after arithmetic operator: a * -1, a * -( b )\n+\t\t\t\tif ( ( inverse && t...
2025-06-21T23:11:59
vuejs/vue
1e1ce0cac7d6c22c980021cbd3cb207a47e85dfb
3b43c81216c2e29bd519c447e930d6512b5782e8
fix: replace hardcoded .parentNode with abstract ops, fix #8713 (#8714)
[ { "path": "src/core/vdom/patch.js", "patch": "@@ -272,7 +272,7 @@ export function createPatchFunction (backend) {\n function insert (parent, elm, ref) {\n if (isDef(parent)) {\n if (isDef(ref)) {\n- if (ref.parentNode === parent) {\n+ if (nodeOps.parentNode(ref) === parent) {\n ...
2018-09-09T21:28:20
denoland/deno
21461bd0bf6cb3105e10f07e349ed07ede9a6f34
bc1e7e2b203362296cb24268fb7c07f47c3aeafc
chore: fix deno_features rebuilding when unnecessary (#32186)
[ { "path": "runtime/features/build.rs", "patch": "@@ -8,6 +8,12 @@ mod data;\n mod structs;\n \n fn main() {\n+ // only rerun if the build script or its input modules change,\n+ // not when any file in the package changes (the default)\n+ println!(\"cargo:rerun-if-changed=build.rs\");\n+ println!(\"cargo...
2026-02-15T21:04:41
golang/go
bb7c0c717c8b3517210dce8f38cb2c91694af4e2
2dcaaa751295597e1f603b7488c4624db6a84d2b
archive/zip: reduce CPU usage in index construction Constructing the zip index (which is done once when first opening a file in an archive) can consume large amounts of CPU when processing deeply-nested directory paths. Switch to a less inefficient algorithm. Thanks to Jakub Ciolek for reporting this issue. goos: ...
[ { "path": "src/archive/zip/reader.go", "patch": "@@ -834,7 +834,16 @@ func (r *Reader) initFileList() {\n \t\t\t\tcontinue\n \t\t\t}\n \n-\t\t\tfor dir := path.Dir(name); dir != \".\"; dir = path.Dir(dir) {\n+\t\t\tdir := name\n+\t\t\tfor {\n+\t\t\t\tif idx := strings.LastIndex(dir, \"/\"); idx < 0 {\n+\t\t...
2025-11-05T01:00:33
mrdoob/three.js
7858b59e2b169a4fd86135ab1c37e1f2444253d7
f7157ee9708c149d1a1e4b3b4517fc814f3074e4
RapierPhysics: Add removeMesh() (#31296) * RapierPhysics: Add removeMesh() * Update RapierPhysics.js Fix JSDoc. --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "examples/jsm/physics/RapierPhysics.js", "patch": "@@ -1,6 +1,6 @@\n import { Clock, Vector3, Quaternion, Matrix4 } from 'three';\n \n-const RAPIER_PATH = 'https://cdn.skypack.dev/@dimforge/rapier3d-compat@0.12.0';\n+const RAPIER_PATH = 'https://cdn.skypack.dev/@dimforge/rapier3d-compat@0.17.3';\n...
2025-06-21T08:22:56
vuejs/vue
c21b89ebeda4c45024c2a71bc7a292d47ebc7ee1
59860b0a756526f37468655598c68d119f0e74bd
fix(ssr): fix double escaping of staticClass values (#7859) (#8037)
[ { "path": "src/server/optimizing-compiler/modules.js", "patch": "@@ -92,7 +92,7 @@ export function genClassSegments (\n classBinding: ?string\n ): Array<StringSegment> {\n if (staticClass && !classBinding) {\n- return [{ type: RAW, value: ` class=${staticClass}` }]\n+ return [{ type: RAW, value: `...
2018-08-20T21:49:18
denoland/deno
afa1646de07c4a60f7eb94c58362d4b01f312477
ad9c6cac029a095d5fb79e3b2d8fa0aac0dc7bfd
fix(ext/node): `fs.rmdir` compatibility (#32144) Closes #32116 --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "cli/rt/file_system.rs", "patch": "@@ -269,6 +269,15 @@ impl FileSystem for DenoRtSys {\n RealFs.remove_async(path, recursive).await\n }\n \n+ fn rmdir_sync(&self, path: &CheckedPath) -> FsResult<()> {\n+ self.error_if_in_vfs(path)?;\n+ RealFs.rmdir_sync(path)\n+ }\n+ async fn rmdir...
2026-02-15T13:11:00
mrdoob/three.js
b8c03ae2fc20ba395dcdb0c0cabb245a9e70bb79
1c78abf303de8356e94faf7bc81e987c9bf353f8
TSL: Introduce `textureBicubicLevel()` (#31288) * fix texture uv reference * add `textureBicubicLevel` * cleanup * cleanup
[ { "path": "src/Three.TSL.js", "patch": "@@ -477,6 +477,7 @@ export const texture = TSL.texture;\n export const texture3D = TSL.texture3D;\n export const textureBarrier = TSL.textureBarrier;\n export const textureBicubic = TSL.textureBicubic;\n+export const textureBicubicLevel = TSL.textureBicubicLevel;\n ex...
2025-06-20T18:28:49
golang/go
2dcaaa751295597e1f603b7488c4624db6a84d2b
5e1ad12db93611b13d2be176fdc276330dc52b98
net/url: add urlmaxqueryparams GODEBUG to limit the number of query parameters net/url does not currently limit the number of query parameters parsed by url.ParseQuery or URL.Query. When parsing a application/x-www-form-urlencoded form, net/http.Request.ParseForm will parse up to 10 MB of query parameters. An input c...
[ { "path": "doc/godebug.md", "patch": "@@ -163,6 +163,13 @@ will fail early. The default value is `httpcookiemaxnum=3000`. Setting\n number of cookies. To avoid denial of service attacks, this setting and default\n was backported to Go 1.25.2 and Go 1.24.8.\n \n+Go 1.26 added a new `urlmaxqueryparams` settin...
2025-11-03T22:28:47
vuejs/vue
3d36a443c755bf16f2656a8595dda9076f021a4a
5a255d946c6c70218f6ebc0ddbf31029db696813
fix: fix potential xss vulnerability in ssr when using v-bind
[ { "path": "src/platforms/web/server/modules/attrs.js", "patch": "@@ -14,6 +14,8 @@ import {\n isFalsyAttrValue\n } from 'web/util/attrs'\n \n+import { isSSRUnsafeAttr } from 'web/server/util'\n+\n export default function renderAttrs (node: VNodeWithData): string {\n let attrs = node.data.attrs\n let r...
2018-08-01T19:33:47
denoland/deno
ad9c6cac029a095d5fb79e3b2d8fa0aac0dc7bfd
3127eab864feedc4f88bef6b97210581d174c1e6
fix(ext/node): support O_RDONLY | O_CREAT in fs.openSync (#32152) ## Description POSIX allows `O_RDONLY | O_CREAT` to create a file if it doesn't exist and then open it for reading only. Node.js and other runtimes support this combination. However, Rust's `std::fs::OpenOptions` requires write or append access when `c...
[ { "path": "ext/fs/std_fs.rs", "patch": "@@ -1029,13 +1029,49 @@ fn open_options(options: OpenOptions) -> fs::OpenOptions {\n open_options\n }\n \n-#[inline(always)]\n pub fn open_with_checked_path(\n- options: OpenOptions,\n+ opts: OpenOptions,\n path: &CheckedPath,\n ) -> FsResult<std::fs::File> {\n-...
2026-02-15T13:10:48
mrdoob/three.js
1c78abf303de8356e94faf7bc81e987c9bf353f8
fa5da939ac7a7deb9df4e4cca2e450177bd7aa6b
WebGLPrograms: Fix cache key with gradient maps. (#31292)
[ { "path": "src/renderers/webgl/WebGLPrograms.js", "patch": "@@ -515,6 +515,8 @@ function WebGLPrograms( renderer, cubemaps, cubeuvmaps, extensions, capabilities\n \t\t\t_programLayers.enable( 20 );\n \t\tif ( parameters.batchingColor )\n \t\t\t_programLayers.enable( 21 );\n+\t\tif ( parameters.gradientMap )...
2025-06-20T10:27:41
golang/go
5e1ad12db93611b13d2be176fdc276330dc52b98
94a1296a457387d1fd6eca1a9bcd44e89bdd9d55
cmd/go/internal/work: sanitize flags before invoking 'pkg-config' The addition of CgoPkgConfig allowed execution with flags not matching the safelist. In order to prevent potential arbitrary code execution at build time, ensure that flags are validated prior to invoking the 'pkg-config' binary. Thank you to RyotaK (h...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -1788,6 +1788,14 @@ func (b *Builder) getPkgConfigFlags(a *Action, p *load.Package) (cflags, ldflags\n \t\t\t\treturn nil, nil, fmt.Errorf(\"invalid pkg-config package name: %s\", pkg)\n \t\t\t}\n \t\t}\n+\n+\t\t// Running 'pkg-config' can cause exe...
2025-12-04T17:30:39
mrdoob/three.js
fa5da939ac7a7deb9df4e4cca2e450177bd7aa6b
91de2913aa40268ed01286ebbc024ca80536680a
fixed scenegraph example typo (#31289)
[ { "path": "manual/en/scenegraph.html", "patch": "@@ -91,7 +91,7 @@ <h1>Scene Graph</h1>\n represents light that emanates from a single point.</p>\n <pre class=\"prettyprint showlinemods notranslate lang-js\" translate=\"no\">{\n const color = 0xFFFFFF;\n- const intensity = 3;\n+ const intensity = 500;\n...
2025-06-20T08:02:22
denoland/deno
3127eab864feedc4f88bef6b97210581d174c1e6
0c839b0891e84faba19a3a27c772bd75e6f232d4
fix(ext/node): add parentPath to Dirent from fs.opendir and support Buffer paths in lstat (#32178) Closes https://github.com/denoland/deno/issues/32175 ## Summary - **Fix `fs.opendir` Dirent `parentPath`**: `Dir.read()` and `Dir.readSync()` now pass the directory path to `direntFromDeno()`, so Dirents correctly have...
[ { "path": "ext/node/polyfills/_fs/_fs_dir.ts", "patch": "@@ -50,12 +50,16 @@ export default class Dir {\n AsyncGeneratorPrototypeNext(this.#asyncIterator),\n (iteratorResult) => {\n resolve(\n- iteratorResult.done ? null : direntFromDeno(iteratorResult.value),\n+ ...
2026-02-15T13:05:32
golang/go
94a1296a457387d1fd6eca1a9bcd44e89bdd9d55
bba24719a4cad5cc8d771fc9cfff5a38019d554a
cmd/go: update VCS commands to use safer flag/argument syntax In various situations, the toolchain invokes VCS commands. Some of these commands take arbitrary input, either provided by users or fetched from external sources. To prevent potential command injection vulnerabilities or misinterpretation of arguments as fl...
[ { "path": "src/cmd/go/internal/modcmd/edit.go", "patch": "@@ -328,7 +328,10 @@ func runEdit(ctx context.Context, cmd *base.Command, args []string) {\n \n // parsePathVersion parses -flag=arg expecting arg to be path@version.\n func parsePathVersion(flag, arg string) (path, version string) {\n-\tbefore, afte...
2025-12-10T13:13:07