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
745f7d9d93fa49ca238951ccc93af2e31e5a1300
8b8b10dd147929a02f94f276cff7bd1e4e60c861
fix(ext/node): `createServer().listen().address()` returns port 0 (#32248) ## Summary - Bind the TCP/TLS port synchronously in `Server.listen()` so that `address()` immediately returns the OS-assigned port, matching Node.js behavior - Previously the port binding was deferred to `nextTick` via `Deno.serve()`, causing ...
[ { "path": "ext/node/polyfills/http.ts", "patch": "@@ -70,7 +70,8 @@ import {\n } from \"ext:deno_node/internal/errors.ts\";\n import { getTimerDuration } from \"ext:deno_node/internal/timers.mjs\";\n import { getIPFamily } from \"ext:deno_node/internal/net.ts\";\n-import { serve, upgradeHttpRaw } from \"ext...
2026-02-24T13:16:31
golang/go
35c5deb1d43b245c19059d1532929ee087e44a84
afae85307206cb56851c31652bd9ae45ba60c800
all: switch linux-ppc64 target to ELFv2 ABI Go is only capable of producing internally linked, static binaries on linux-ppc64. As such, binaries should run in either ELFv1 or ELFv2 ppc64 userspaces today. This opens the door to enabling cgo and external linking which will require ELFv2 support and userspace, eventual...
[ { "path": "src/cmd/link/internal/ld/elf.go", "patch": "@@ -178,14 +178,7 @@ func Elfinit(ctxt *Link) {\n \n \tswitch ctxt.Arch.Family {\n \t// 64-bit architectures\n-\tcase sys.PPC64, sys.S390X:\n-\t\tif ctxt.Arch.ByteOrder == binary.BigEndian && ctxt.HeadType != objabi.Hopenbsd {\n-\t\t\tehdr.Flags = 1 // ...
2026-01-07T19:48:53
vuejs/vue
530ca1b2db315fbd0e360807b2031d26665c5d3d
097f6229dffc34af452b106ad2a3b58845588807
fix(core): properly handle reused vnodes This also removes the restrictions on rendering the same slot multiple times. close #7913
[ { "path": "src/core/instance/render-helpers/render-slot.js", "patch": "@@ -26,19 +26,7 @@ export function renderSlot (\n }\n nodes = scopedSlotFn(props) || fallback\n } else {\n- const slotNodes = this.$slots[name]\n- // warn duplicate slot usage\n- if (slotNodes) {\n- if (process.en...
2018-12-02T02:07:18
denoland/deno
8b8b10dd147929a02f94f276cff7bd1e4e60c861
f817b31ed21ed0ba8cc59f26e5fa3356a430b9db
feat(compile): add `--self-extracting` flag (#32227) Adds a `--self-extracting` flag to `deno compile`. Instead of serving files from the in-memory virtual file system, the compiled binary extracts all embedded files to disk on first run and uses real file system operations at runtime. This unlocks full Node API supp...
[ { "path": "Cargo.lock", "patch": "@@ -3356,6 +3356,7 @@ dependencies = [\n \"deno_terminal\",\n \"import_map\",\n \"indexmap 2.9.0\",\n+ \"junction\",\n \"libsui\",\n \"log\",\n \"memmap2\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "cli/args/flags.rs", ...
2026-02-24T13:03:13
golang/go
bae9486d07706bcc216961f504e75d1fb5c5aec8
c08f6a5b2651b2ce4a9510952fb88739719fe5a4
cmd/compile/internal/bloop: avoid extraneous heap allocs in b.Loop body due to autotmp variable scope The motivating example I created for #73137 still seems to heap allocate in go1.26rc2 when used in a b.Loop body. │ go1.25 │ go1.26rc2 │ │ allocs...
[ { "path": "src/cmd/compile/internal/bloop/bloop.go", "patch": "@@ -155,6 +155,10 @@ func preserveCallResults(curFn *ir.Func, call *ir.CallExpr) ir.Node {\n \n \tassign := typecheck.AssignExpr(ir.NewAssignListStmt(call.Pos(), ir.OAS2, lhs, ir.Nodes{call})).(*ir.AssignListStmt)\n \tassign.Def = true\n+\tfor _...
2026-01-23T20:59:40
vuejs/vue
097f6229dffc34af452b106ad2a3b58845588807
ef8524ab7db8d64ac449ce74f5858aa9d91357ad
fix(core): avoid mutating original children when cloning vnode The on-demand clone strategy introduced in 956756b mutates the owner array of the cloned vnode. This causes the newly cloned vnode to be destroyed when the parent node is destroyed. This is fixed by cloning the children array when cloning a vnode. fix #79...
[ { "path": "src/core/vdom/vnode.js", "patch": "@@ -90,7 +90,10 @@ export function cloneVNode (vnode: VNode): VNode {\n const cloned = new VNode(\n vnode.tag,\n vnode.data,\n- vnode.children,\n+ // #7975\n+ // clone children array to avoid mutating original in case of cloning\n+ // a chi...
2018-12-01T22:05:36
denoland/deno
c5919892439aa3a6527ea3e18fa0ae32bbcfd027
f6a619fe0bcc000f7d161c2e3dacd171cc448de6
fix(lsp): implement remaining tsgo resolver callbacks (#32303)
[ { "path": "cli/lsp/documents.rs", "patch": "@@ -1296,7 +1296,7 @@ impl DocumentModules {\n module\n }\n \n- pub fn module_for_tsgo_referrer(\n+ pub fn module_for_tsgo_document(\n &self,\n uri: &Uri,\n compiler_options_key: &CompilerOptionsKey,\n@@ -1314,7 +1314,7 @@ impl DocumentModules ...
2026-02-24T07:55:26
mrdoob/three.js
a0daeb5b9f1d798ac8354b18d4024736fe76a6d4
5d4eeb4ca76ae43102429e54c19467fc3f33f911
Improved MaterialX example (#31541) * Improved MaterialX example. * Potential fix for code scanning alert no. 3610: Unused variable, import, function or class Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * MaterialXLoader: Set transparent/side when ...
[ { "path": "examples/jsm/loaders/MaterialXLoader.js", "patch": "@@ -893,21 +893,16 @@ class MaterialXNode {\n \n \t\t}\n \n-\t\t// Auto-enable transparency when opacity or transmission is non-default\n-\t\tconst hasNonDefaultOpacity = opacityNode && opacityNode.value !== undefined && opacityNode.value < 1.0;...
2025-07-31T18:46:18
golang/go
c08f6a5b2651b2ce4a9510952fb88739719fe5a4
14a4cb13e389d8dbc1ba3ba0097e208f1436a22a
cmd/link: put type:* at the start of the type descriptors That used to happen naturally because the symbol had zero size. After CL 724261 we need to force it. Fixes #77372 Change-Id: Ia8eef989bc9cbad5459b60ff6535136e7e0c6cab Reviewed-on: https://go-review.googlesource.com/c/go/+/740400 Reviewed-by: Keith Randall <kh...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -2395,6 +2395,9 @@ func (state *dodataState) dodataSect(ctxt *Link, symn sym.SymKind, syms []loader\n \t\t// sorted by type string. The reflect package will use\n \t\t// this to ensure that type descriptor pointers are unique.\n \n+\t\t// We define ...
2026-01-29T22:50:05
vuejs/vue
ef8524ab7db8d64ac449ce74f5858aa9d91357ad
0b31647c41b0c916d40b962723b1de06672d0e01
fix(compiler): wrap scoped slots v-if conditions in parens (#9119) fix #9114
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -367,7 +367,7 @@ function genScopedSlot (\n const fn = `function(${String(el.slotScope)}){` +\n `return ${el.tag === 'template'\n ? el.if\n- ? `${el.if}?${genChildren(el, state) || 'undefined'}:undefined`\n+ ? `(${el.if})?${ge...
2018-12-01T05:33:59
mrdoob/three.js
26750486d6addf8916d83b70e486c5258ab649f9
ba0568f4f51644ec2b6c81e177bd4a1ad4c1db52
TSL: Fix blocky gaussian blur (#31528) * Fix for blocky gaussian blur Calculate a proper sigma from kernel-size to avoid blocky gaussian blur. * Remove weightSum * Remove 'mul' import * Provide screenshots for checks * Double kernel-radii for BloomNode * Add comment to explain change of kernel-sizes * Change de...
[ { "path": "examples/jsm/tsl/display/BloomNode.js", "patch": "@@ -364,7 +364,9 @@ class BloomNode extends TempNode {\n \n \t\t// gaussian blur materials\n \n-\t\tconst kernelSizeArray = [ 3, 5, 7, 9, 11 ];\n+\t\t// These sizes have been changed to account for the altered coefficents-calculation to avoid bloc...
2025-07-31T16:06:41
denoland/deno
f6a619fe0bcc000f7d161c2e3dacd171cc448de6
265cbd8732aea413ce01810e0e0f39df635ca561
fix(ext/node): add `host_arch` to `process.config.variables` (#32265) ## Summary - Adds `host_arch` property to `process.config.variables` to match Node.js behavior - Changes `process.config` to use a lazy getter so `arch` is available at access time (not during snapshot creation) - Fixes packages like `neo4j-driver` ...
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -676,14 +676,24 @@ Object.defineProperty(process, \"argv0\", {\n process.chdir = chdir;\n \n /** https://nodejs.org/api/process.html#processconfig */\n-process.config = Object.freeze({\n- target_defaults: Object.freeze({\n- default_configuration: \...
2026-02-24T06:57:04
golang/go
14a4cb13e389d8dbc1ba3ba0097e208f1436a22a
ee7a2119ac17ea2a6bbf12b4c8001bf39c388166
cmd/compile: make prove use non-equality in subtraction for a stronger bound Given: s := /* slice */ k := /* proved valid index in s (0 <= k < len(s)) */ v := s[k:] len(v) >= 1, so v[0] needs no bounds check. However, for len(v) = len(s) - k, we only checked if len(s) >= k and so could only prove len(v) >= 0, t...
[ { "path": "src/cmd/compile/internal/ssa/prove.go", "patch": "@@ -2187,24 +2187,22 @@ func (ft *factsTable) detectSubRelations(v *Value) {\n \t\treturn // x-y might overflow\n \t}\n \n-\t// Subtracting a positive number only makes\n-\t// things smaller.\n-\tif yLim.min >= 0 {\n+\t// Subtracting a positive no...
2026-01-29T19:45:27
vuejs/vue
0b31647c41b0c916d40b962723b1de06672d0e01
0d62bb84ffa1af7a4826aecc11c429c7a020645c
chore: fix grammar in core/observer/index.js comments (#9116)
[ { "path": "src/core/observer/index.js", "patch": "@@ -37,7 +37,7 @@ export function toggleObserving (value: boolean) {\n export class Observer {\n value: any;\n dep: Dep;\n- vmCount: number; // number of vms that has this object as root $data\n+ vmCount: number; // number of vms that have this object ...
2018-12-01T05:29:37
mrdoob/three.js
95febf473cc326ac2029c51442b2fea3348c5321
0f93b6f0a5cff38650452e888305be57306d376d
WebXRManager: Add Raw Camera Access module. (#31487) * WebXRManager: Add raw camera access module support * Remove unused test variables * Raw Texture class * Improve example * Flip bool * Address deleteTexture changes * Update RawTexture.js Improve JSDoc. * Update RawTexture.js Remove opaque property. * Upd...
[ { "path": "examples/files.json", "patch": "@@ -475,6 +475,7 @@\n \t\t\"webaudio_visualizer\"\n \t],\n \t\"webxr\": [\n+\t\t\"webxr_ar_camera_access\",\n \t\t\"webxr_ar_cones\",\n \t\t\"webxr_ar_hittest\",\n \t\t\"webxr_ar_lighting\",", "additions": 1, "deletions": 0, "language": "JSON" }, { ...
2025-07-30T20:40:36
denoland/deno
265cbd8732aea413ce01810e0e0f39df635ca561
636f697ed3488e8c7d055d554c1ea01f08ae5f3c
fix(node/buffer): fix latin1Slice and hexSlice returning wrong results (#32277) ## Summary - Fix `Buffer.prototype.latin1Slice` and `Buffer.prototype.hexSlice` having an extraneous `string` parameter that shifted all arguments passed to the underlying `_latin1Slice`/`_hexSlice` functions - Fix `_latin1Slice` not handl...
[ { "path": "ext/node/polyfills/internal/buffer.mjs", "patch": "@@ -1011,16 +1011,12 @@ Buffer.prototype.hexWrite = function hexWrite(string, offset, length) {\n );\n };\n \n-Buffer.prototype.hexSlice = function hexSlice(string, offset, length) {\n- return _hexSlice(this, string, offset, length);\n+Buffer....
2026-02-24T06:56:13
golang/go
ee7a2119ac17ea2a6bbf12b4c8001bf39c388166
48788436b8c9a87d056e52cf90d493940b610b4d
cmd/link: remove AIX special case for first type descriptor It doesn't seem to be necessary, and removing it seems cleaner than adding an AIX case to the code in runtime.moduleTypelinks. Fixes #77365 Change-Id: I59fa56abf42e18017bd112481ea09d0cca47d105 Reviewed-on: https://go-review.googlesource.com/c/go/+/740220 Re...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -2182,7 +2182,7 @@ func (state *dodataState) allocateDataSections(ctxt *Link) {\n \tcreateRelroSect := func(name string, symn sym.SymKind) *sym.Section {\n \t\tsect := state.allocateNamedDataSection(segRelro, genrelrosecname(name), []sym.SymKind{sym...
2026-01-29T08:51:32
mrdoob/three.js
0f93b6f0a5cff38650452e888305be57306d376d
d786e5e1ab9d1787b0373be4dfd484aa9953b670
PointsNodeMaterial: Clarify docs for `sizeNode`. (#31529) * PointsNodeMaterial: Clarify docs for `sizeNode`. * Update PointsNodeMaterial.js Fix typo. * Update PointsNodeMaterial.js
[ { "path": "src/materials/nodes/PointsNodeMaterial.js", "patch": "@@ -35,6 +35,11 @@ class PointsNodeMaterial extends SpriteNodeMaterial {\n \t\t/**\n \t\t * This node property provides an additional way to set the point size.\n \t\t *\n+\t\t * Note that WebGPU only supports point primitives with 1 pixel siz...
2025-07-30T08:47:42
vuejs/vue
0d62bb84ffa1af7a4826aecc11c429c7a020645c
b0ccb8618382b6ee143d68cf4498d6b3ec18aa81
fix: actually disable dep collection when invoking lifecycle hooks (#9095) fix #9046
[ { "path": "src/core/observer/dep.js", "patch": "@@ -55,11 +55,12 @@ export default class Dep {\n Dep.target = null\n const targetStack = []\n \n-export function pushTarget (_target: ?Watcher) {\n- if (Dep.target) targetStack.push(Dep.target)\n- Dep.target = _target\n+export function pushTarget (target: ?W...
2018-12-01T05:24:30
denoland/deno
636f697ed3488e8c7d055d554c1ea01f08ae5f3c
87f304049da7a95941276560942e607d66775c19
feat(ext/bundle): Add `--keep-names` flag (#32285) Exposes the esbuild flag `--keep-names` to users of `deno bundle` Moving forward with this as there has been no response to my questions in the issue so far. If you want to discuss this further, feel free to add your feedback. Fixes #32109
[ { "path": "cli/args/flags.rs", "patch": "@@ -592,6 +592,7 @@ pub struct BundleFlags {\n pub external: Vec<String>,\n pub format: BundleFormat,\n pub minify: bool,\n+ pub keep_names: bool,\n pub code_splitting: bool,\n pub inline_imports: bool,\n pub packages: PackageHandling,\n@@ -2536,6 +2537,...
2026-02-24T02:01:23
golang/go
48788436b8c9a87d056e52cf90d493940b610b4d
5593ea463498dce06a1b52dce2918912a9db6c4e
go/token: simplify fixOffset Each time I go to definition of this I am deeply confused at what I am looking, so let's clean this a bit with modern Go. Change-Id: I8f44e78f0cdde9b970388f9b98a2720e6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/738341 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-proj...
[ { "path": "src/go/token/position.go", "patch": "@@ -276,26 +276,12 @@ func (f *File) AddLineColumnInfo(offset int, filename string, line, column int)\n \n // fixOffset fixes an out-of-bounds offset such that 0 <= offset <= f.size.\n func (f *File) fixOffset(offset int) int {\n-\tswitch {\n-\tcase offset < 0...
2026-01-23T15:12:27
mrdoob/three.js
1fffae9003d196023c7441a9ff0ca75514a490d4
0eb4c7a14e23351ebdaa67eb5b5090077ba6bfed
Src: Make `camera.reversedDepth` private (#31512) * Make camera.reversedDepth private * Update Camera.js Fix JSDoc. * Add getter for reversedDepth * Access reversedDepth via getter --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "src/cameras/Camera.js", "patch": "@@ -29,14 +29,6 @@ class Camera extends Object3D {\n \n \t\tthis.type = 'Camera';\n \n-\t\t/**\n-\t\t * The flag that indicates whether the camera uses a reversed depth buffer.\n-\t\t *\n-\t\t * @type {boolean}\n-\t\t * @default false\n-\t\t */\n-\t\tthis.reverse...
2025-07-28T09:04:57
vuejs/vue
b111de486b1bdc747fe0f5795fe22697d151bb8c
33e669b22f69a1f9c9147528360fe0bba85534f0
fix: make sure global state is restored in the case of an exception in macrotask callback (#9093)
[ { "path": "src/core/util/next-tick.js", "patch": "@@ -81,9 +81,11 @@ if (typeof Promise !== 'undefined' && isNative(Promise)) {\n export function withMacroTask (fn: Function): Function {\n return fn._withTask || (fn._withTask = function () {\n useMacroTask = true\n- const res = fn.apply(null, argum...
2018-12-01T05:07:46
denoland/deno
87f304049da7a95941276560942e607d66775c19
5122966a00611627e2abd9787acf29889a522300
fix(node): preserve AsyncLocalStorage context in unhandledRejection handlers (#32264) ## Summary - Fixes `AsyncLocalStorage.getStore()` returning `undefined` inside `unhandledRejection` / `unhandledrejection` event handlers - Now matches Node.js behavior where the async context active at the time of rejection is pres...
[ { "path": "tests/specs/node/async_local_storage_unhandled_rejection/__test__.jsonc", "patch": "@@ -0,0 +1,8 @@\n+{\n+ \"tests\": {\n+ \"async_local_storage_unhandled_rejection\": {\n+ \"args\": \"run main.mjs\",\n+ \"output\": \"rejectionValue => data\\n\"\n+ }\n+ }\n+}", "additions": ...
2026-02-23T21:25:50
golang/go
10ed9b6ed5ffadf16151d98a188a4242515b62e9
11722941452d04aa0364a5c6b60acffaa2776b1c
runtime: use smaller max align for arm32 Maybe fixes a dashboard build failure for linux/arm32 casued by CL 724261. This value comes from cmd/link/internal/arm/l.go (and in general, maxAlign in cmd/link/internal/$ARCH/<something>.go). Change-Id: I4d02cd41072da1b6ad6c7405044bd7788626b013 Reviewed-on: https://go-revie...
[ { "path": "src/runtime/type.go", "patch": "@@ -526,7 +526,11 @@ func moduleTypelinks(md *moduledata) []*_type {\n \tfor td < etypedesc {\n \t\t// TODO: The fact that type descriptors are aligned to\n \t\t// 0x20 does not make sense.\n-\t\ttd = alignUp(td, 0x20)\n+\t\tif GOARCH == \"arm\" {\n+\t\t\ttd = alig...
2026-01-28T23:39:46
vuejs/vue
33e669b22f69a1f9c9147528360fe0bba85534f0
f43ae6d151de3ab00a5fbd1bb5fd3fabf454de85
fix(ssr): computed properties should pass vm as first argument in ssr (#9090) fix #8977
[ { "path": "src/core/instance/state.js", "patch": "@@ -216,13 +216,13 @@ export function defineComputed (\n if (typeof userDef === 'function') {\n sharedPropertyDefinition.get = shouldCache\n ? createComputedGetter(key)\n- : userDef\n+ : createGetterInvoker(userDef)\n sharedProperty...
2018-12-01T05:05:13
denoland/deno
5122966a00611627e2abd9787acf29889a522300
578cb26ba9ef0b954387bcbb6e2e8b83eeb0236b
test: add timeout support to spec tests (#32292) ## Summary - Adds a `timeout` field (in seconds) to spec test `__test__.jsonc` files - When a test step's process exceeds the timeout, it is killed and the test fails with a "Test command timed out" panic - Timeout can be set at the multi-test level (propagates to all ...
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -989,7 +989,7 @@ const buildJobs = buildItems.map((rawBuildItem) => {\n `test ${testMatrix.test_crate} ${testMatrix.shard_label}${buildItem.profile} ${buildItem.os}-${buildItem.arch}`,\n needs: [buildJob],\n runsOn: buildIt...
2026-02-23T20:06:47
mrdoob/three.js
fe5f4b298d35e373c95213d36a15dbe145fa3444
490c70a527d53891817b9177445ac76369eb28ac
Improved MaterialX import support to align with Blender's MaterialX exporter. (#31439) * add determinant and inverse TSL nodes. * add new materialx node support: ln, transform matrix, transpose, determinant, invert matrix, creatematrix, length, crossproduct, floor, place2d, reflect, refract, ifgreater, ifgreatereq, i...
[ { "path": "examples/jsm/loaders/MaterialXLoader.js", "patch": "@@ -1,20 +1,26 @@\n-import { FileLoader, Loader, TextureLoader, RepeatWrapping, MeshBasicNodeMaterial, MeshPhysicalNodeMaterial } from 'three/webgpu';\n+import {\n+\tFileLoader, Loader, TextureLoader, RepeatWrapping, MeshBasicNodeMaterial,\n+\tM...
2025-07-27T22:42:37
golang/go
11722941452d04aa0364a5c6b60acffaa2776b1c
2bd7f15dd7423b6817939b199cd2c8032e3b79cc
runtime, cmd/link: store type descriptor length, not end Storing the type descriptor length lets us save a relocation. It also avoids a problem for Darwin dynamic linking. For #6853 Fixes #77350 Change-Id: If5c94330fe10d75690325f3d0b0658060ef3eb2d Reviewed-on: https://go-review.googlesource.com/c/go/+/739681 Reviewe...
[ { "path": "src/cmd/link/internal/ld/data.go", "patch": "@@ -1535,10 +1535,6 @@ func fixZeroSizedSymbols(ctxt *Link) {\n \ttypes.SetSize(8)\n \tldr.SetAttrSpecial(types.Sym(), false)\n \n-\tetypedesc := ldr.CreateSymForUpdate(\"runtime.etypedesc\", 0)\n-\tetypedesc.SetType(sym.STYPE)\n-\tldr.SetAttrSpecial(e...
2026-01-28T01:34:46
vuejs/vue
f43ae6d151de3ab00a5fbd1bb5fd3fabf454de85
05e8bcfe5d308f280f3640df96bd170fbcf1a9b5
chore(typo): fix typo (#9085)
[ { "path": "types/options.d.ts", "patch": "@@ -68,7 +68,7 @@ export interface ComponentOptions<\n \n el?: Element | string;\n template?: string;\n- // hack is for funcitonal component type inference, should not used in user code\n+ // hack is for functional component type inference, should not be used ...
2018-12-01T04:58:58
denoland/deno
578cb26ba9ef0b954387bcbb6e2e8b83eeb0236b
4e6470ab22c27064e2a4c0eec6a4006831f58f09
fix: format wasm stack traces per W3C spec (#32246) ## Summary - Update wasm stack trace formatting to use the W3C WebAssembly Web API spec format: `wasm-function[<funcIndex>]:0x<hexOffset>` instead of the generic `line:col` format - Update existing `wasm_url` test expectation to match - Add new integration test (`wa...
[ { "path": "tests/specs/run/wasm_stack_trace/__test__.jsonc", "patch": "@@ -0,0 +1,5 @@\n+{\n+ \"args\": \"run --quiet wasm_stack_trace.js\",\n+ \"output\": \"wasm_stack_trace.out\",\n+ \"exitCode\": 0\n+}", "additions": 5, "deletions": 0, "language": "Unknown" }, { "path": "tests/spec...
2026-02-23T20:02:02
mrdoob/three.js
3bd02e1aaee0f0b3c9bcda5fc31a5da3f9172be7
9d7dfe77cc75185e4912331d7b0cca04cdf6e88b
TSL Transpiler: Fix operator precedence of `GLSLDecoder` (#31515)
[ { "path": "examples/jsm/transpiler/GLSLDecoder.js", "patch": "@@ -11,7 +11,7 @@ const arithmeticOperators = [\n ];\n \n const precedenceOperators = [\n-\t'*', '/', '%',\n+\t'/', '*', '%',\n \t'-', '+',\n \t'<<', '>>',\n \t'<', '>', '<=', '>=',", "additions": 1, "deletions": 1, "language": "JavaS...
2025-07-27T20:54:48
golang/go
15882523a18cf7653c17e7c91aeaa1174a23702b
3c924059e66427eface8d357adcf1566e3be847a
go/parser: use (*Scanner).End in error testing Updates #74958 Change-Id: I43dcbff6ec828bddf157b2e6ec80df526a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/738700 Reviewed-by: Alan Donovan <adonovan@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Rev...
[ { "path": "src/go/parser/error_test.go", "patch": "@@ -81,6 +81,8 @@ func expectedErrors(fset *token.FileSet, filename string, src []byte) map[token.\n \n \tfor {\n \t\tpos, tok, lit := s.Scan()\n+\t\tend := s.End()\n+\n \t\tswitch tok {\n \t\tcase token.EOF:\n \t\t\treturn errors\n@@ -104,13 +106,7 @@ func...
2026-01-23T09:19:18
vuejs/vue
05e8bcfe5d308f280f3640df96bd170fbcf1a9b5
1129d184482720bb52fa61f0a309645b7caaddd9
fix: fix server env detection in wechat mini program (#9075)
[ { "path": "src/core/util/env.js", "patch": "@@ -41,7 +41,7 @@ export const isServerRendering = () => {\n if (!inBrowser && !inWeex && typeof global !== 'undefined') {\n // detect presence of vue-server-renderer and avoid\n // Webpack shimming the process\n- _isServer = global['process']...
2018-12-01T04:58:29
mrdoob/three.js
a1d8dde96682b797db51a0d6d4d2e270e866168d
206a1383ba4dc090c0640eedecb2a007d60bbe48
TSL: Introduce `boolean` for `uniform()` (#31507) * introduce `boolean` for `uniform()` * fix type
[ { "path": "src/nodes/core/UniformNode.js", "patch": "@@ -140,6 +140,20 @@ class UniformNode extends InputNode {\n \n \t}\n \n+\tgetInputType( builder ) {\n+\n+\t\tlet type = super.getInputType( builder );\n+\n+\t\tif ( type === 'bool' ) {\n+\n+\t\t\ttype = 'uint';\n+\n+\t\t}\n+\n+\t\treturn type;\n+\n+\t}\n...
2025-07-26T03:58:26
denoland/deno
4e6470ab22c27064e2a4c0eec6a4006831f58f09
dcc2fe2ff7f96319becfc5586652f0a3da44c0e2
fix(ext/node): remove fs.promises.fstat, not a public Node.js API (#32289) Closes https://github.com/denoland/deno/issues/27423 `fs.promises` in Node.js does not expose `fstat` or other `f`-prefixed APIs. The promise-based equivalent is `FileHandle.stat()`, which is already supported via `handle.ts`. This removes th...
[ { "path": "ext/node/polyfills/fs.ts", "patch": "@@ -24,7 +24,7 @@ import { exists, existsSync } from \"ext:deno_node/_fs/_fs_exists.ts\";\n import { fchmod, fchmodSync } from \"ext:deno_node/_fs/_fs_fchmod.ts\";\n import { fchown, fchownSync } from \"ext:deno_node/_fs/_fs_fchown.ts\";\n import { fdatasync, ...
2026-02-23T19:56:04
golang/go
3c924059e66427eface8d357adcf1566e3be847a
7f0f67195194cb07122315d5ab563eb617dbe21a
go/scanner: add End method to Scanner Fixes #74958 Change-Id: I50ef64ae9ae6a762a7aada3d29914bae6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/738681 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Alan Donovan <adonovan@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-proj...
[ { "path": "api/next/74958.txt", "patch": "@@ -0,0 +1 @@\n+pkg go/scanner, method (*Scanner) End() token.Pos #74958", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/go/scanner/74958.md", "patch": "@@ -0,0 +1 @@\n+The scanner now allow...
2026-01-23T08:09:49
vuejs/vue
97086f365808a040f6cf1ddb12e2b3f63d7769bf
76443803e8878dc13a31ebed119abfd31573e7f1
fix(types): fix vm.$once argument type (#8995) vm.$once should accept an event or array of events as first parameter. fix #8983
[ { "path": "types/vue.d.ts", "patch": "@@ -53,7 +53,7 @@ export interface Vue {\n options?: WatchOptions\n ): (() => void);\n $on(event: string | string[], callback: Function): this;\n- $once(event: string, callback: Function): this;\n+ $once(event: string | string[], callback: Function): this;\n ...
2018-12-01T04:41:27
mrdoob/three.js
206a1383ba4dc090c0640eedecb2a007d60bbe48
e117b283555e0ccc5034fa5193b951bc987280ed
TSL: Double-check on the parents of the `atomic functions` to prevent errors (#31509) * Double-check on the parents of the atomic functions to prevent errors. * Update WGSLNodeBuilder.js
[ { "path": "src/nodes/gpgpu/AtomicFunctionNode.js", "patch": "@@ -113,7 +113,7 @@ class AtomicFunctionNode extends Node {\n \t\t}\n \n \t\tconst methodSnippet = `${ builder.getMethod( method, type ) }( ${ params.join( ', ' ) } )`;\n-\t\tconst isVoid = parents.length === 1 && parents[ 0 ].isStackNode === true...
2025-07-26T03:57:55
denoland/deno
c095dd46fdd994c94b2f8332a68106b976a7fa6e
c25bfa70d1cb05bdfce6b8c0ab48c03344167463
fix: format wasm stack traces correctly, preserve context in unhandled rejection, improve cppgc inheritance perf (#32293) Fixes https://github.com/denoland/deno/issues/30135 Fixes https://github.com/denoland/deno/issues/32239
[ { "path": "Cargo.lock", "patch": "@@ -1929,9 +1929,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.385.0\"\n+version = \"0.386.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"e348ea58ad12f6bee5407768b571a8af09756246a45c83dfd27a5aeeb338c5e...
2026-02-23T19:02:57
vuejs/vue
76443803e8878dc13a31ebed119abfd31573e7f1
3cd4af4af0a8a67f5887d5fc967147d433c8612c
Typings: Improve $slots and $scopedSlots type to prevent unchecked access to undefined (#8946) * fix(types): Declare $scopedSlots as potentially undefined to enable stricter TS checks * fix(types): Fix tests * fix(types): declare $slots option as potentially undefined declare $slots option as potentially unde...
[ { "path": "types/test/options-test.ts", "patch": "@@ -304,8 +304,8 @@ Vue.component('component-with-scoped-slot', {\n child: {\n render (this: Vue, h: CreateElement) {\n return h('div', [\n- this.$scopedSlots['default']({ msg: 'hi' }),\n- this.$scopedSlots['item']({ msg: ...
2018-12-01T04:31:45
golang/go
83b232b0af1bd498d3df099eb68e3b1e40df2527
6aef900af4eeb4a35d3ff1237a41cf3f63c56c24
cmd/compile, simd: capture VAES instructions and fix AVX512VAES feature The code previously filters out VAES-only instructions, this CL added them back. This CL added the VAES feature check following the Intel xed data: XED_ISA_SET_VAES: vaes.7.0.ecx.9 # avx.1.0.ecx.28 This CL also found out that the...
[ { "path": "src/cmd/compile/internal/ssa/_gen/simdAMD64ops.go", "patch": "@@ -28,16 +28,16 @@ func simdAMD64Ops(v11, v21, v2k, vkv, v2kv, v2kk, v31, v3kv, vgpv, vgp, vfpv, vf\n \t\t{name: \"VADDSUBPS128\", argLength: 2, reg: v21, asm: \"VADDSUBPS\", commutative: false, typ: \"Vec128\", resultInArg0: false},\...
2026-01-22T17:44:32
mrdoob/three.js
76ff87ad2a00cc3a76394be3b224604a20015ca9
fa035e8814826eb6ef38543b638b7afa506a9e16
Fix(OutlinePass):Exclude Line2 objects from outline computation (#31503)
[ { "path": "examples/jsm/postprocessing/OutlinePass.js", "patch": "@@ -494,37 +494,37 @@ class OutlinePass extends Pass {\n \n \t\tfunction VisibilityChangeCallBack( object ) {\n \n-\t\t\tif ( object.isMesh || object.isSprite ) {\n+\t\t\tif ( object.isPoints || object.isLine || object.isLine2 ) {\n \n-\t\t\t...
2025-07-25T19:32:23
denoland/deno
13457aff18e73222a2d39c0aece82825f3956c5f
6998e65d6866348677e45d5a370361a11c519ed8
fix(ext/node): enable test-zlib-invalid-input-memory and test-zlib-un… (#32284) Fixes two previously disabled zlib Node.js compatibility tests. - **`parallel/test-zlib-invalid-input-memory.js`** — enabled and passing. Root cause was a two-layer problem: 1. `AsyncResource` in `async_hooks.ts` did not call `emitIni...
[ { "path": "ext/node/polyfills/async_hooks.ts", "patch": "@@ -8,6 +8,8 @@ import { core, primordials } from \"ext:core/mod.js\";\n import { validateFunction } from \"ext:deno_node/internal/validators.mjs\";\n import {\n AsyncHook,\n+ emitDestroy as emitDestroyHook,\n+ emitInit,\n executionAsyncId as in...
2026-02-23T16:16:52
golang/go
6aef900af4eeb4a35d3ff1237a41cf3f63c56c24
026fa9dc597ea8e5280d7531ce7f193ed157cad0
runtime/metrics: fix panic in Read with empty slice Calling Read with a nil or empty slice previously caused a panic with "index out of range" because the function unconditionally accessed the first element of the slice (via &m[0]) to pass the pointer to the runtime. This change adds a check for len(m) == 0 to return...
[ { "path": "src/runtime/metrics/description_test.go", "patch": "@@ -156,3 +156,10 @@ func TestDocs(t *testing.T) {\n \t\tfmt.Fprintf(os.Stderr, \"go test -generate: doc.go already up-to-date\\n\")\n \t}\n }\n+\n+func TestReadEmptySlice(t *testing.T) {\n+\t// Test that Read does not panic when given an empty ...
2026-01-28T01:14:53
vuejs/vue
3cd4af4af0a8a67f5887d5fc967147d433c8612c
0ba79e2588309ba386f570ed84d372611c4dd165
fix(types): support typing $el as SVGElement (#8809)
[ { "path": "types/test/vue-test.ts", "patch": "@@ -19,6 +19,7 @@ class Test extends Vue {\n }\n \n // test property reification\n+ $el!: HTMLElement | SVGElement;\n $refs!: {\n vue: Vue,\n element: HTMLInputElement,", "additions": 1, "deletions": 0, "language": "Unknown" }, { ...
2018-12-01T04:30:31
mrdoob/three.js
3752bd2796d0af59df4198c659eda434b0bfda5e
a4d93efe86b5a63995e3dc111c0398069279307f
WebGPURenderer: Improve and fix texture bindings manager (#31497) * improve texture bindings * cleanup * Update webgpu_volume_lighting.jpg * cleanup
[ { "path": "src/renderers/common/Bindings.js", "patch": "@@ -246,18 +246,29 @@ class Bindings extends DataMap {\n \n \t\t\t} else if ( binding.isSampledTexture ) {\n \n-\t\t\t\tconst texturesTextureData = this.textures.get( binding.texture );\n-\n-\t\t\t\tif ( binding.needsBindingsUpdate( texturesTextureData...
2025-07-25T14:38:38
denoland/deno
6998e65d6866348677e45d5a370361a11c519ed8
12df8252d604c690a974f8b75d6a3b4ae6ef298d
fix(ext/node): support URL in child_process.fork modulePath (#32268) ## Summary - Adds support for passing `URL` objects as the `modulePath` argument to `child_process.fork()`, matching Node.js behavior - Converts URL to file path using `toPathIfFileURL()` before string validation - Adds unit test for `fork()` with a ...
[ { "path": "ext/node/polyfills/child_process.ts", "patch": "@@ -45,6 +45,7 @@ import {\n convertToValidSignal,\n kEmptyObject,\n } from \"ext:deno_node/internal/util.mjs\";\n+import { toPathIfFileURL } from \"ext:deno_node/internal/url.ts\";\n import { kNeedsNpmProcessState } from \"ext:deno_process/40_p...
2026-02-23T16:16:27
mrdoob/three.js
173555e053225eaaf3b94ab227d55910a349edea
e4139cf1eb119525616d85912f3710f7ff4815c8
USDLoader: Fixed USDZ parsing.
[ { "path": "examples/jsm/loaders/USDLoader.js", "patch": "@@ -113,7 +113,7 @@ class USDLoader extends Loader {\n \t\t\t\t\t} else {\n \n \t\t\t\t\t\tconst text = fflate.strFromU8( zip[ filename ] );\n-\t\t\t\t\t\tdata[ filename ] = usda.parse( text, data );\n+\t\t\t\t\t\tdata[ filename ] = usda.parseText( te...
2025-07-24T13:16:32
golang/go
134035855cbc84e25765c2a4af3d152aaf430c5c
f65fe3216ef67b4318f8da475ec59418dfc4fb5d
cmd/compile: simplify slice/array range loops on loong64 loong64 supports R+R addressing ({st,ld}x.{b,h,w,d} instructions) and has implemented the relevant lowering rules (only width is 1). Removes 1616 instructions from the go binary on loong64. file before after Δ % asm 575366 5...
[ { "path": "src/cmd/compile/internal/walk/range.go", "patch": "@@ -23,7 +23,7 @@ func cheapComputableIndex(width int64) bool {\n \t// MIPS does not have R+R addressing\n \t// Arm64 may lack ability to generate this code in our assembler,\n \t// but the architecture supports it.\n-\tcase sys.PPC64, sys.S390X:...
2026-01-22T02:44:19
vuejs/vue
0ba79e2588309ba386f570ed84d372611c4dd165
ac217d2472bb92ce901ef1f46595b44a1b5d1a18
fix(types): accept `number` type as key on Vue.set/delete (#8707) (#8709)
[ { "path": "types/test/vue-test.ts", "patch": "@@ -87,8 +87,10 @@ class Test extends Vue {\n this.nextTick(() => {});\n this.nextTick().then(() => {});\n this.set({}, \"\", \"\");\n+ this.set({}, 1, \"\");\n this.set([true, false, true], 1, true);\n this.delete({}, \"\");\n+ this.de...
2018-12-01T04:28:52
denoland/deno
12df8252d604c690a974f8b75d6a3b4ae6ef298d
52a2337fbc6230922576d7d8aeff5d6dd1fc0f3d
fix(ext/node): support ipv6 host in `node:http` (#32258) Closes #21864. Full reproduction of the bug: ```ts import { once } from "node:events"; import { request } from "node:http"; await using _server = Deno.serve({ hostname: "::1" }, () => new Response()); const req = request("http://[::1]:8000").end(); const [res]...
[ { "path": "ext/node/polyfills/http.ts", "patch": "@@ -98,8 +98,12 @@ import { methods as METHODS } from \"node:_http_common\";\n import { deprecate } from \"node:util\";\n \n const { internalRidSymbol } = core;\n-const { ArrayIsArray, StringPrototypeToLowerCase, SafeArrayIterator } =\n- primordials;\n+cons...
2026-02-23T15:46:00
mrdoob/three.js
960880c75c805ca37a400121bef0b7b8ddff41b4
a9a97866a0ce37faad926c18651260e51402aa5c
TSL: Add `debug()` for the stack when running outside the code flow (#31486)
[ { "path": "src/nodes/utils/DebugNode.js", "patch": "@@ -77,6 +77,6 @@ export default DebugNode;\n * @param {?Function} [callback=null] - Optional callback function to handle the debug output.\n * @returns {DebugNode}\n */\n-export const debug = ( node, callback = null ) => nodeObject( new DebugNode( node...
2025-07-23T15:45:39
golang/go
a0796d8af67e147f54e06952272745aa3410c291
481ab86aafe0cac177df793c9946c5ef2126137c
reflect: allow conversions between slices of named {byte,rune} and string So the reflect behavior matches that of the language. These conversions are allowed: []myByte <-> string []myRune <-> string []myByte <-> myString []myRune <-> myString And even if the left-hand-side is named, e.g. myBytes([]myByte) <-> stri...
[ { "path": "src/reflect/all_test.go", "patch": "@@ -4177,6 +4177,9 @@ type MyBytesArray [4]byte\n type MyRunes []int32\n type MyFunc func()\n type MyByte byte\n+type MyRune rune\n+type MyBytes2 []MyByte\n+type MyRunes2 []MyRune\n \n type IntChan chan int\n type IntChanRecv <-chan int\n@@ -4480,6 +4483,38 @@ ...
2026-01-27T19:06:18
mrdoob/three.js
cc8051edfd370bc4514ebd9e560e5b24b5f2532c
0d9c7b86d6febeba22df2848b854f69cd3a83567
Improved webgpu reflection example (#31409) * Improved webgpu reflection example. * Clean up. * Added normalMap to floor. * Updated screenshot. * Potential fix for code scanning alert no. 3582: Unused variable, import, function or class Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-secur...
[ { "path": "examples/webgpu_reflection.html", "patch": "@@ -10,7 +10,7 @@\n \n \t\t<div id=\"info\">\n \t\t\t<a href=\"https://threejs.org\" target=\"_blank\" rel=\"noopener\">three.js</a> webgpu - reflection<br/>\n-\t\t\tBased on <a href=\"https://web.archive.org/web/20210101053442/http://oos.moxiecode.com/...
2025-07-23T11:21:05
denoland/deno
52a2337fbc6230922576d7d8aeff5d6dd1fc0f3d
8cd0019f5b45b7a7219ae7412dacca5ebf932cae
fix(ext/node): add `openAsBlob` export to `node:fs` (#32261) ## Summary - Implements `fs.openAsBlob()` which reads a file and returns a `Promise<Blob>`, matching the Node.js API - Adds the function to both named and default exports of `node:fs` - Adds unit tests covering basic usage, the `type` option, and error handl...
[ { "path": "ext/node/polyfills/fs.ts", "patch": "@@ -141,9 +141,19 @@ import {\n } from \"ext:deno_node/internal/fs/streams.mjs\";\n import {\n Dirent,\n+ getValidatedPath,\n toUnixTimestamp as _toUnixTimestamp,\n } from \"ext:deno_node/internal/fs/utils.mjs\";\n import { glob, globPromise, globSync } f...
2026-02-23T15:38:02
golang/go
251f3aa6ee6fc3925fe8e64cd4b403bfa73b93ab
5ec5fdc093979c55c9605931d668e209cc1e1b00
os/exec: document blocking Stdin/Stdout/Stderr WaitDelay only handles writes to Stdin and reads from Stdout/Stderr. If Stdin is set to a blocking Reader, or Stdout/Stderr are set to a blocking Writer, Wait can hang indefinitely. I don't see any way to fix this with the current API, as there is no general way that the ...
[ { "path": "src/os/exec/exec.go", "patch": "@@ -203,6 +203,11 @@ type Cmd struct {\n \t// stops copying, either because it has reached the end of Stdin\n \t// (EOF or a read error), or because writing to the pipe returned an error,\n \t// or because a nonzero WaitDelay was set and expired.\n+\t//\n+\t// Rega...
2026-01-27T04:03:30
vuejs/vue
ac217d2472bb92ce901ef1f46595b44a1b5d1a18
c711ec189aaf46399756e34d933ba5e0b6576c36
fix(types): fix `renderError`arguments type (#8636) fix #8635
[ { "path": "types/options.d.ts", "patch": "@@ -70,7 +70,7 @@ export interface ComponentOptions<\n template?: string;\n // hack is for funcitonal component type inference, should not used in user code\n render?(createElement: CreateElement, hack: RenderContext<Props>): VNode;\n- renderError?: (h: () =>...
2018-12-01T04:28:29
mrdoob/three.js
62e89317f55921a24b63dc41f0c6672741203818
868515ff410eb2ca4bb153f949d456e08076203a
Fix parameters description for `Spherical#setFromCartesianCoords` (#31475)
[ { "path": "src/math/Spherical.js", "patch": "@@ -107,8 +107,8 @@ class Spherical {\n \t * Sets the spherical components from the given Cartesian coordinates.\n \t *\n \t * @param {number} x - The x value.\n-\t * @param {number} y - The x value.\n-\t * @param {number} z - The x value.\n+\t * @param {number} ...
2025-07-22T10:07:03
mrdoob/three.js
a880e764539fdb7e33ec224f86e7f2537f0ba2f8
1388d164873663bfca604a71a77f4a3899d47278
ProjectorLightNode: Fix back-projection. (#31473) * ProjectorLightNode: Fix back-projection. * ProjectorLightNode: Clean up.
[ { "path": "src/nodes/lighting/ProjectorLightNode.js", "patch": "@@ -1,8 +1,10 @@\n import SpotLightNode from './SpotLightNode.js';\n \n-import { Fn, vec2 } from '../tsl/TSLCore.js';\n+import { float, Fn, If, vec2 } from '../tsl/TSLCore.js';\n import { length, min, max, saturate, acos } from '../math/MathNod...
2025-07-22T09:32:52
vuejs/vue
c711ec189aaf46399756e34d933ba5e0b6576c36
613cb52bf3e5fd6caee0a94fab953ac9fdd37924
fix(types): support chain call for Vue.use and Vue.mixin (#8595)
[ { "path": "flow/global-api.js", "patch": "@@ -8,8 +8,8 @@ declare interface GlobalAPI {\n set: <T>(target: Object | Array<T>, key: string | number, value: T) => T;\n delete: <T>(target: Object| Array<T>, key: string | number) => void;\n nextTick: (fn: Function, context?: Object) => void | Promise<*>;\...
2018-12-01T04:27:24
mrdoob/three.js
1388d164873663bfca604a71a77f4a3899d47278
a681a5f9b2f6c0c63b58b385d14a7c6e00df5443
TSL: Introduce automatic use of `.toVar()` to `assign()` (#31459) * introduce automatic use of `.toVar()` to `assign()` * fix nodeObj return * move `builder.getArrayCount()` -> `node.getArrayCount()` * Update NodeBuilder.js * add `builder.flowBuildStage()` * add docs and rename `intention` -> `intent` * rename `...
[ { "path": "src/Three.TSL.js", "patch": "@@ -519,6 +519,7 @@ export const uvec2 = TSL.uvec2;\n export const uvec3 = TSL.uvec3;\n export const uvec4 = TSL.uvec4;\n export const Var = TSL.Var;\n+export const VarIntent = TSL.VarIntent;\n export const varying = TSL.varying;\n export const varyingProperty = TSL.v...
2025-07-22T01:33:32
vuejs/vue
a7658e03a16dc507f0abeba41aee705f773727d0
05001e695ebd0b0504d664197a4771463a0f5328
fix(data): skip recursive call if values are identical (#8967)
[ { "path": "src/core/util/options.js", "patch": "@@ -55,7 +55,11 @@ function mergeData (to: Object, from: ?Object): Object {\n fromVal = from[key]\n if (!hasOwn(to, key)) {\n set(to, key, fromVal)\n- } else if (isPlainObject(toVal) && isPlainObject(fromVal)) {\n+ } else if (\n+ toVal...
2018-11-30T23:04:05
golang/go
0f72aff835111bb0e7998bdb6de3f02a1483afe7
03a6a2074086e186071fbc362bbb6c630f9bc84b
simd/archsimd: fix typo in the SHA256Message1 documentation string Change-Id: I8bc5fec0475bfaebc0469d0efb2ba89af4b3f150 Reviewed-on: https://go-review.googlesource.com/c/go/+/738640 Reviewed-by: Junyang Shao <shaojunyang@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.c...
[ { "path": "src/simd/archsimd/_gen/simdgen/ops/Others/categories.yaml", "patch": "@@ -95,7 +95,7 @@\n - go: SHA256Message1\n commutative: false\n documentation: !string |-\n- // NAME does the sigma and addtion of 1 in SHA1 algorithm defined in FIPS 180-4.\n+ // NAME does the sigma and addition of 1...
2026-01-22T22:34:17
denoland/deno
8cd0019f5b45b7a7219ae7412dacca5ebf932cae
9e7fb63fe12f68e8e268756b14abce99dda0ae75
fix: detect bound require reexports in cjs analysis (#32163) Part of https://github.com/denoland/deno/issues/31347 Fixes https://github.com/denoland/deno/issues/27898 This update solves the module resolution. So the behaviour of stdio output of `redocly` becomes the same as Node.js. However, the problem of hanging i...
[ { "path": "Cargo.lock", "patch": "@@ -1780,9 +1780,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_ast\"\n-version = \"0.53.0\"\n+version = \"0.53.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"8ac5df28715465cff3f03294564f38c9cd3c24c4cfb965a32fd1327efa111b02\"...
2026-02-23T15:27:18
mrdoob/three.js
74efc689abd19b40fed44c4d199358837d8e444e
04a597cce2417f44e2a4f2545e5616fd7fcd895f
NodeMaterial: Fix fog. (#31463) * NodeMaterial: Fix fog. * NodeBuilder: Clean up. * E2E: Update screenshots. * E2E: Update screenshot.
[ { "path": "src/materials/nodes/NodeMaterial.js", "patch": "@@ -1071,7 +1071,7 @@ class NodeMaterial extends Material {\n \n \t\t\toutput.assign( outputNode );\n \n-\t\t\toutputNode = vec4( fogNode );\n+\t\t\toutputNode = vec4( fogNode.toStack() );\n \n \t\t}\n ", "additions": 1, "deletions": 1, ...
2025-07-21T15:28:34
vuejs/vue
05001e695ebd0b0504d664197a4771463a0f5328
2bb3199da718be4e3150b5555bbf12364c3987be
fix(compiler): should keep newline after unary tags in <pre> (#8965) fix #8950
[ { "path": "src/compiler/parser/html-parser.js", "patch": "@@ -106,7 +106,7 @@ export function parseHTML (html, options) {\n const startTagMatch = parseStartTag()\n if (startTagMatch) {\n handleStartTag(startTagMatch)\n- if (shouldIgnoreFirstNewline(lastTag, html)) {\n+ ...
2018-11-30T23:02:54
golang/go
03a6a2074086e186071fbc362bbb6c630f9bc84b
ffb50fb7169f93c502e07868724b1f392267f696
cmd/link: handle SRODATALRELRO in xcoffUpdateOuterSize This is a followup to CL 723580. This fixes cgo builds on AIX. For #76038 Change-Id: Idea959615891f3f6e33932fae7a9043778db3366 Reviewed-on: https://go-review.googlesource.com/c/go/+/738920 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gser...
[ { "path": "src/cmd/link/internal/ld/xcoff.go", "patch": "@@ -583,7 +583,7 @@ func xcoffUpdateOuterSize(ctxt *Link, size int64, stype sym.SymKind) {\n \tswitch stype {\n \tdefault:\n \t\tErrorf(\"unknown XCOFF outer symbol for type %s\", stype.String())\n-\tcase sym.SRODATA, sym.SFUNCTAB, sym.SSTRING:\n+\tca...
2026-01-24T00:20:43
mrdoob/three.js
7ff0f18c4f63976ee75c51970f2f5b77cc4517c6
35ad995297592c90946c5d3df4b876b1d2563daa
Docs: fix types (#31450) * Docs: fix types * Update Backend.js --------- Co-authored-by: Samuel Rigaud <rigaud@gmail.com> Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "examples/jsm/capabilities/WebGPU.js", "patch": "@@ -2,7 +2,7 @@ let isAvailable = ( typeof navigator !== 'undefined' && navigator.gpu !== undefi\n \n if ( typeof window !== 'undefined' && isAvailable ) {\n \n-\tisAvailable = await navigator.gpu.requestAdapter();\n+\tisAvailable = Boolean( await n...
2025-07-21T08:37:17
denoland/deno
9e7fb63fe12f68e8e268756b14abce99dda0ae75
38f3ffe3630c2f796fb7e9d9e1de58da21047f60
fix(ext/node): implement timeout and killSignal for spawn() (#32283) Fixes the `timeout` and `killSignal` options for `child_process.spawn()` (and `fork()`, which delegates to `spawn()`). Previously these options were accepted but silently ignored. The fix sets a `setTimeout` after spawning that kills the child with ...
[ { "path": "ext/node/polyfills/child_process.ts", "patch": "@@ -222,9 +222,27 @@ export function spawn(\n options = normalizeSpawnArguments(command, args, options);\n \n validateAbortSignal(options?.signal, \"options.signal\");\n+ validateTimeout(options?.timeout);\n \n const child = new ChildProcess(...
2026-02-23T14:37:46
vuejs/vue
758524134e71ae025238e16a4c1f2b30a1310fe8
80f17fa498f5df0388412877799dbd7573c44b2d
fix: v-bind object should be overridable with kebab-cased props (#8845) In addition .sync should generate camelCased event name
[ { "path": "src/core/instance/render-helpers/bind-object-props.js", "patch": "@@ -6,7 +6,8 @@ import {\n warn,\n isObject,\n toObject,\n- isReservedAttribute\n+ isReservedAttribute,\n+ camelize\n } from 'core/util/index'\n \n /**\n@@ -43,12 +44,13 @@ export function bindObjectProps (\n ?...
2018-11-30T22:56:41
mrdoob/three.js
6a0dab07a302c2cd1a508aad80e6b22721d0a5e1
250c5f6d93b946f18103feb5a8b3dce70d1f4acd
BatchedMesh: Fix `setInstanceCount()`. (#31458) * fix BatchedMesh.setInstanceCount * Cleanup
[ { "path": "src/objects/BatchedMesh.js", "patch": "@@ -1251,7 +1251,7 @@ class BatchedMesh extends Mesh {\n \t\tconst availableInstanceIds = this._availableInstanceIds;\n \t\tconst instanceInfo = this._instanceInfo;\n \t\tavailableInstanceIds.sort( ascIdSort );\n-\t\twhile ( availableInstanceIds[ availableIn...
2025-07-21T08:21:26
golang/go
64e8b238a1e5ce4cc47eec561db0ccf904e29e50
a977717393fd779921ca258988230dbc741f5912
runtime: rename aeshashbody to runtime.aeshashbody Currently this is a raw symbol name with no package component, which is confusing when seen in profilers or similar tools. This function does not follow a Go ABI, and thus should not have a Go function declaration. go vet requires declaration for standard assembly fu...
[ { "path": "src/runtime/asm_386.s", "patch": "@@ -954,7 +954,7 @@ TEXT runtime·memhash(SB),NOSPLIT,$0-16\n \tMOVL\tp+0(FP), AX\t// ptr to data\n \tMOVL\ts+8(FP), BX\t// size\n \tLEAL\tret+12(FP), DX\n-\tJMP\taeshashbody<>(SB)\n+\tJMP\truntime·aeshashbody<>(SB)\n noaes:\n \tJMP\truntime·memhashFallback(SB)\n ...
2026-01-22T16:47:42
denoland/deno
1c5a7189e57cd1d3d0cc3ce7a2f6725ac5ede3ea
5ebbfc4a83fff688222857629af8942bccc3b18b
fix(audit): gracefully handle malformed response (#32234) Fixes an issue where `deno audit` fails to deserialize npm registry responses when the `actions` field is missing. ## Changes Made - Added `#[serde(default)]` attribute to the `actions` field in `AuditResponse` struct in `cli/tools/pm/audit.rs` - this makes t...
[ { "path": "cli/tools/pm/audit.rs", "patch": "@@ -603,6 +603,7 @@ mod npm {\n \n #[derive(Debug, Deserialize)]\n pub struct AuditResponse {\n+ #[serde(default)]\n pub actions: Vec<AuditAction>,\n pub advisories: HashMap<i32, AuditAdvisory>,\n pub metadata: AuditMetadata,\n@@ -920,3 +921,30...
2026-02-22T02:32:21
vuejs/vue
80f17fa498f5df0388412877799dbd7573c44b2d
374861f72b8b8fda5aa5d54f96bc2f297c775719
fix(core): skip mixins and extends if child is already merged (#8870) fix #8865
[ { "path": "src/core/util/options.js", "patch": "@@ -378,15 +378,22 @@ export function mergeOptions (\n normalizeProps(child, vm)\n normalizeInject(child, vm)\n normalizeDirectives(child)\n- const extendsFrom = child.extends\n- if (extendsFrom) {\n- parent = mergeOptions(parent, extendsFrom, vm)\n...
2018-11-30T22:54:16
mrdoob/three.js
cf58904c83428d4745535faaafeb9711eec1f7fc
4870f070c717d6c0afad0c58e39ba33fbc7fdd86
Upgrade meshopt_decoder.module.js to 0.22 (#31449) This brings in fixes and latency optimizations for WebWorkers, and minor optimizations in the WebAssembly code. The file is taken as is from GH zeux/meshoptimizer@v0.22
[ { "path": "examples/jsm/libs/meshopt_decoder.module.js", "patch": "@@ -1,32 +1,36 @@\n // This file is part of meshoptimizer library and is distributed under the terms of MIT License.\n-// Copyright (C) 2016-2022, by Arseny Kapoulkine (arseny.kapoulkine@gmail.com)\n-var MeshoptDecoder = (function() {\n-\t\"...
2025-07-20T08:08:57
denoland/deno
5ebbfc4a83fff688222857629af8942bccc3b18b
28d94f497698d9ad36ce2a49119d96466c9a59d1
fix(lsp): qualify diagnostic source and message from tsgo (#32251)
[ { "path": "cli/lsp/tsgo.rs", "patch": "@@ -886,6 +886,16 @@ impl TsGoServerInner {\n }\n }\n \n+fn qualify_tsgo_diagnostic(diagnostic: &mut lsp::Diagnostic) {\n+ diagnostic.source = Some(\"deno-ts\".to_string());\n+ if let Some(lsp::NumberOrString::Number(code)) = &diagnostic.code {\n+ diagnostic.mes...
2026-02-21T17:38:33
golang/go
2d1f571c6b420757b2a72b9e53d486840a1317f9
f532f87a9895afc60b6ab17969c67e33d1ed1564
cmd/compile, runtime: avoid improper control transfer instruction hints on riscv64 On RISC-V the JAL and JALR instructions provide Return Address Stack(RAS) prediction hints based on the registers used (as per section 2.5.1 of the RISC-V ISA manual). When a JALR instruction uses X1 or X5 as the source register, it hin...
[ { "path": "src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go", "patch": "@@ -118,6 +118,7 @@ func init() {\n \tregCtxt := regNamed[\"X26\"]\n \tcallerSave := gpMask | fpMask | regNamed[\"g\"]\n \tr5toR6 := regNamed[\"X5\"] | regNamed[\"X6\"]\n+\tregX5 := regNamed[\"X5\"]\n \n \tvar (\n \t\tgpstore = regInfo{...
2025-12-04T11:06:20
vuejs/vue
e29fbad0aceeb51a3e528fa8f2898522df4e0a0f
2e472c5e5e559a7a4083b4164ffe0c3911ce0651
chore: fix lint
[ { "path": "src/core/vdom/create-functional-component.js", "patch": "@@ -124,7 +124,7 @@ function cloneAndMarkFunctionalResult (vnode, data, contextVm, options, renderCo\n clone.fnContext = contextVm\n clone.fnOptions = options\n if (process.env.NODE_ENV !== 'production') {\n- ;(clone.devtoolsMeta =...
2018-11-30T22:37:30
mrdoob/three.js
4870f070c717d6c0afad0c58e39ba33fbc7fdd86
849b524a213daf0b2bfb1916c94f439af0ea8267
fix typos (#31447) Co-authored-by: Samuel Rigaud <rigaud@gmail.com>
[ { "path": "examples/jsm/transpiler/GLSLDecoder.js", "patch": "@@ -861,7 +861,7 @@ class GLSLDecoder {\n \n \t\tconst switchDeterminantTokens = this.readTokensUntil( ')' );\n \n-\t\t// Parse expresison between parentheses. Index 1: char after '('. Index -1: char before ')'\n+\t\t// Parse expression between p...
2025-07-19T16:03:02
golang/go
cf0c42c2ca04c3ae9fa20ce9dd4f6bce301bd37b
bb221e8954b639e8790fd1d4a8cd35ff3a9340aa
cmd/compile/internal/reflectdata: fix divide by zero for zero-size array elements When generating equality signatures for arrays with zero-size ASPECIAL elements (e.g., [3]struct{_ [0]float64}), the compiler crashed with a divide by zero error when computing the loop unroll factor. Skip comparison code generation for...
[ { "path": "src/cmd/compile/internal/reflectdata/alg.go", "patch": "@@ -785,6 +785,9 @@ func (e *eqSigBuilder) build(t *types.Type) {\n \t\t\t// The generated loops are kind of inefficient as well,\n \t\t\t// so unroll the loop a bit.\n \t\t\tconst unrollSize = 32 // make loop body compare around this many b...
2026-01-25T14:59:25
denoland/deno
28d94f497698d9ad36ce2a49119d96466c9a59d1
a29b955a86990be8795778a456b38cc09086575b
fix(install): support `--allow-scripts` with `deno install -g --compile ...` (#32249)
[ { "path": "cli/args/flags.rs", "patch": "@@ -6587,6 +6587,7 @@ fn install_parse(\n \n if compile {\n flags.type_check_mode = TypeCheckMode::Local;\n+ allow_scripts_arg_parse(flags, matches)?;\n }\n \n flags.subcommand =", "additions": 1, "deletions": 0, "language": "Rust" ...
2026-02-20T22:17:15
vuejs/vue
2e472c5e5e559a7a4083b4164ffe0c3911ce0651
5f6ef15fb2879411797aee0287b811977f6ebb42
fix(component): clean up memory leak after loading async component completes (fix #8740) (#8755) * fix(component): clean up memory leak after loading async component completes * fix(async component): accounting for async components with loading property * refactor(component): simplifying memory cleanup logic
[ { "path": "src/core/vdom/helpers/resolve-async-component.js", "patch": "@@ -61,10 +61,14 @@ export function resolveAsyncComponent (\n const contexts = factory.contexts = [context]\n let sync = true\n \n- const forceRender = () => {\n+ const forceRender = (renderCompleted: boolean) => {\n ...
2018-11-30T22:36:08
mrdoob/three.js
849b524a213daf0b2bfb1916c94f439af0ea8267
8a318e456d2c788040c5671ec6e3c78394d2130e
USDZExporter: object names fix (#31444)
[ { "path": "examples/jsm/exporters/USDZExporter.js", "patch": "@@ -381,7 +381,12 @@ class USDZExporter {\n function getName( object, namesSet ) {\n \n \tlet name = object.name;\n-\tname = name.replace( /[^A-Za-z0-9-_]/g, '' );\n+\tname = name.replace( /[^A-Za-z0-9_]/g, '' );\n+\tif ( /^[0-9]/.test( name ) ) ...
2025-07-19T08:21:42
golang/go
cc6923e839ff10581223a600fca805203d56acd5
f809faeb8e2534da29e980ebd98dfbd4e8a7f4ba
cmd/compile: reduce lock/scheduler contention During the parallel section of compilation, we limit the amount of parallelism to prevent scheduler churn. We do this with a worker scheduler, but it does not have insight on when a compilation is blocked due to lock contention. The symbol table was protected with a lock....
[ { "path": "src/cmd/compile/internal/gc/compile.go", "patch": "@@ -142,73 +142,47 @@ func compileFunctions(profile *pgoir.Profile) {\n \t\t// Compile the longest functions first,\n \t\t// since they're most likely to be the slowest.\n \t\t// This helps avoid stragglers.\n+\t\t// Since we remove from the end ...
2025-12-01T09:40:16
denoland/deno
a29b955a86990be8795778a456b38cc09086575b
cb0c6d565c0d16916d292914d24237362c712013
fix(ext/node): enable test-stdio-closed tests (#32237) - Fix `child_process` shell command translation to handle shell redirections (`1>&-`, `< file`), piped commands (`cmd1 | cmd2`), and shell variable prefixes (`"$NODE"`, `${NODE}`). Previously shell operators were passed to the CLI arg translator, causing parse fai...
[ { "path": "ext/node/ops/node_cli_parser.rs", "patch": "@@ -51,8 +51,13 @@ pub struct TranslatedArgs {\n fn translate_to_deno_args(\n parsed_args: ParseResult,\n script_in_npm_package: bool,\n+ wrap_eval: bool,\n ) -> TranslatedArgs {\n- let options = TranslateOptions::for_child_process();\n+ let opti...
2026-02-20T21:36:26
vuejs/vue
5624278fbe5d85cfe578d749da12b1e73c3e61a9
4ecc21c29ec12bb33d3b426cb4d42c579e9b0f2d
fix(ssr): check js assets more accurate in ssr webpack plugin (#8639)
[ { "path": "src/server/webpack-plugin/server.js", "patch": "@@ -43,7 +43,7 @@ export default class VueSSRServerPlugin {\n }\n \n stats.assets.forEach(asset => {\n- if (asset.name.match(/\\.js$/)) {\n+ if (isJS(asset.name)) {\n bundle.files[asset.name] = compilation.assets[...
2018-11-30T22:32:28
mrdoob/three.js
0fbaef05876088bb25ba0affdfcdfce199ef2a86
1bac6346777cd45e1d4ab5071f9527c86be62b81
TSL: Fix `pass()` build during `sample()` call using `Mesh` (#31431)
[ { "path": "src/nodes/display/PassNode.js", "patch": "@@ -49,7 +49,7 @@ class PassTextureNode extends TextureNode {\n \n \tsetup( builder ) {\n \n-\t\tif ( builder.object.isQuadMesh ) this.passNode.build( builder );\n+\t\tthis.passNode.build( builder );\n \n \t\treturn super.setup( builder );\n ", "addit...
2025-07-16T16:11:17
golang/go
30dff416e42b0bd44237b7658eafc7063dda6b63
f8b72802d7a7dd2bcb81bdaead80be802e16351b
cmd/compile: redo how equality functions are generated Instead of generating an equality function for each type that needs it, generate one per "signature". A "signature" is a summary of the comparisons needed to check a type for equality. For instance, the type type S struct { i int32 j uint32 s str...
[ { "path": "src/cmd/compile/internal/reflectdata/alg.go", "patch": "@@ -6,6 +6,9 @@ package reflectdata\n \n import (\n \t\"fmt\"\n+\t\"go/constant\"\n+\t\"strconv\"\n+\t\"strings\"\n \n \t\"cmd/compile/internal/base\"\n \t\"cmd/compile/internal/compare\"\n@@ -14,7 +17,6 @@ import (\n \t\"cmd/compile/interna...
2025-11-29T01:17:24
vuejs/vue
2686818beb5728e3b7aa22f47a3b3f0d39d90c8e
7b7164c11cbb74ed44ee086f0a82acfcc1ff47a2
fix(error handling): handle errors on immediate watcher execution (#8581) The handle callback call should be wrapped in a try/catch that explicitly calls handleError fix #8567
[ { "path": "src/core/instance/state.js", "patch": "@@ -351,7 +351,11 @@ export function stateMixin (Vue: Class<Component>) {\n options.user = true\n const watcher = new Watcher(vm, expOrFn, cb, options)\n if (options.immediate) {\n- cb.call(vm, watcher.value)\n+ try {\n+ cb.call(...
2018-11-29T23:14:28
mrdoob/three.js
71f36f2080c1b984b2fd321ef84786ae7c973de0
d7e1cc79270424ac73f328b3949c02cb6ae57a0a
TRAANode: New TRAA implementation. (#31421) * TRAANode: New TRAA implementation. * TRAANode: Fix first frame. * introduce post-processing context * add for renderAsync * TRAANode: Fix resize darkening bug. * TRAANode: Fix render target selection. --------- Co-authored-by: sunag <sunagbrasil@gmail.com>
[ { "path": "examples/jsm/tsl/display/TRAANode.js", "patch": "@@ -1,5 +1,5 @@\n-import { Color, Vector2, NearestFilter, Matrix4, RendererUtils, PassNode, QuadMesh, NodeMaterial } from 'three/webgpu';\n-import { add, float, If, Loop, int, Fn, min, max, clamp, nodeObject, texture, uniform, uv, vec2, vec4, lumin...
2025-07-16T09:09:39
denoland/deno
2e293c82032011d78c4ed8c17f405b0fd84c543b
fa9d25ab6682f8f9fe843451c23cd5edaf3b2a71
fix: deno install --force --compile (#32242)
[ { "path": "cli/tools/installer/mod.rs", "patch": "@@ -972,10 +972,28 @@ async fn install_global_compiled(\n };\n \n let output_path = PathBuf::from(&output);\n- if output_path.is_file() && !install_flags_global.force {\n- return Err(anyhow!(\n- \"Existing installation found. Aborting (Use -f to...
2026-02-20T20:38:26
golang/go
f8b72802d7a7dd2bcb81bdaead80be802e16351b
b408256be720c51ff1730d7a97389a975744a312
encoding/json: fix typo in package doc. Change-Id: Id5520757e4d73e56e533e4de4f5f303105c4339e Reviewed-on: https://go-review.googlesource.com/c/go/+/738180 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Auto-Submit: David Symonds <dsymonds@golang.org> Reviewed-by: Carlos Amedee <carlos@golang.org> Reviewed-by: Dav...
[ { "path": "src/encoding/json/encode.go", "patch": "@@ -26,7 +26,7 @@\n //\n // Due to the Go Backwards Compatibility promise (https://go.dev/doc/go1compat)\n // there are a number of behaviors this package exhibits that may cause\n-// interopability issues, but cannot be changed. In particular the following...
2026-01-22T00:25:18
vuejs/vue
7b7164c11cbb74ed44ee086f0a82acfcc1ff47a2
69730fac8f2c1f43e56a82c8b2ce24827a2a5e1e
fix(v-model): avoid duplicate model transforms This happens when a component directly passes down its own data object to a child component. Fix #8436.
[ { "path": "src/core/vdom/create-component.js", "patch": "@@ -252,9 +252,17 @@ function transformModel (options, data: any) {\n const event = (options.model && options.model.event) || 'input'\n ;(data.props || (data.props = {}))[prop] = data.model.value\n const on = data.on || (data.on = {})\n- if (is...
2018-11-29T23:09:37
mrdoob/three.js
96662caece43868dbf029768757be7222b2fb721
e3853edf2e66d30b748f6c0bd3b86a7d6af34ad2
Textures: Fix dimensions of video frames. (#31425) * Textures: Fix dimensions of video frames. * Source: Fix `getSize()`. * Source: Fix z coordinate for video-like sources.
[ { "path": "src/renderers/common/Textures.js", "patch": "@@ -372,6 +372,12 @@ class Textures extends DataMap {\n \t\t\t\ttarget.height = image.videoHeight || 1;\n \t\t\t\ttarget.depth = 1;\n \n+\t\t\t} else if ( image instanceof VideoFrame ) {\n+\n+\t\t\t\ttarget.width = image.displayWidth || 1;\n+\t\t\t\tta...
2025-07-15T22:47:53
denoland/deno
fa9d25ab6682f8f9fe843451c23cd5edaf3b2a71
498d6efc6c6564fa68be273d6b403f7ccc881f41
feat(fmt): add --fail-fast flag to deno fmt --check (#31438) Adds a `--fail-fast` flag to `deno fmt --check` that stops checking files immediately after finding the first formatting error, matching the behavior of `deno test --fail-fast`.
[ { "path": "cli/args/flags.rs", "patch": "@@ -269,6 +269,7 @@ pub struct EvalFlags {\n #[derive(Clone, Default, Debug, Eq, PartialEq)]\n pub struct FmtFlags {\n pub check: bool,\n+ pub fail_fast: bool,\n pub files: FileFlags,\n pub permit_no_files: bool,\n pub use_tabs: Option<bool>,\n@@ -3142,6 +31...
2026-02-20T16:55:14
golang/go
b408256be720c51ff1730d7a97389a975744a312
27fcec4d8f3041e845762303d85d868cc3e351e8
cmd/compile: fix loopvar version detection with line directives The Go loop variable semantics changed in Go 1.22: loop variables are now created per-iteration instead of per-loop. The compiler decides which semantics to use based on the Go version in go.mod. When go.mod specifies go 1.21 and the code is built with a...
[ { "path": "src/cmd/compile/internal/loopvar/loopvar_test.go", "patch": "@@ -6,6 +6,7 @@ package loopvar_test\n \n import (\n \t\"internal/testenv\"\n+\t\"os\"\n \t\"os/exec\"\n \t\"path/filepath\"\n \t\"regexp\"\n@@ -381,3 +382,62 @@ func TestLoopVarVersionDisableGoBuild(t *testing.T) {\n \t\tt.Errorf(\"err...
2026-01-21T06:57:14
mrdoob/three.js
8cd01795a0b8dfcd55332fd1dae5775cf4a84dd7
f2e958a35276d86a24b455b00b7ef3e4d325651e
Update GTAOPass.js Fix code style.
[ { "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.isLine2) object.visible = false;\n+\t\t\tif ( object.isPoints || object.isLine || object...
2025-07-15T18:23:19
vuejs/vue
d483a49c86874b2e75863b661f81feecd46ae721
59d4351ad8fc042bc263a16ed45a56e9ff5b013e
fix(compiler): normalize potential functional component children in v-for (#8558) fix #8468
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -406,7 +406,10 @@ export function genChildren (\n el.tag !== 'template' &&\n el.tag !== 'slot'\n ) {\n- return (altGenElement || genElement)(el, state)\n+ // because el may be a functional component and return an Array instead...
2018-10-24T18:02:45
golang/go
27fcec4d8f3041e845762303d85d868cc3e351e8
478d86446e88dc9e0b46e08914cb564d7c705d1e
runtime: speed up cheaprand and cheaprand64 The current cheaprand performs 128-bit multiplication on 64-bit numbers and truncate the result to 32 bits, which is inefficient. A 32-bit specific implementation is more performant because it performs 64-bit multiplication on 32-bit numbers instead. The current cheaprand6...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -273,6 +273,10 @@ func CountPagesInUse() (pagesInUse, counted uintptr) {\n \treturn\n }\n \n+func Blocksampled(cycles, rate int64) bool { return blocksampled(cycles, rate) }\n+\n+func Cheaprand() uint32 { return cheaprand() }\n+func Cheaprand64() ...
2026-01-23T03:44:50