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
mrdoob/three.js
4ec743df6500ae6fc93f3a28ed02a9912e01f443
1f603c32b8a21d43102e9b31dc8bf271679784bc
TSL Transpiler: Add Support for Switch Statements (#31272) * init branch * work on switch transpiler * work * alternate approach * remove logs, add default case * rework switch to use parseBody and getGroupDelta * fix read bug * remove comments, add continue and break * add import and improve code style * ski...
[ { "path": "examples/jsm/transpiler/AST.js", "patch": "@@ -214,6 +214,26 @@ export class Discard {\n \n }\n \n+export class Continue {\n+\n+\tconstructor() {\n+\n+\t\tthis.isContinue = true;\n+\n+\t}\n+\n+}\n+\n+export class Break {\n+\n+\tconstructor() {\n+\n+\t\tthis.isBreak = true;\n+\n+\t}\n+\n+}\n+\n ex...
2025-06-18T16:50:21
denoland/deno
0c839b0891e84faba19a3a27c772bd75e6f232d4
e3fda850d5215d4a78e95fbc0ae86096c2f12546
fix(ext/node): fix worker.terminate() return value and exit code (#32168) ## Summary Two fixes to `worker.terminate()` behavior to match Node.js: - **Return `undefined` when worker already exited**: In Node.js, calling `worker.terminate()` after the worker has already exited resolves to `undefined` (the internal han...
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -601,7 +601,7 @@ class NodeWorker extends EventEmitter {\n // https://nodejs.org/api/worker_threads.html#workerterminate\n terminate() {\n if (this.#status === \"TERMINATED\") {\n- return PromiseResolve(0);\n+ return PromiseRes...
2026-02-15T13:04:43
golang/go
bba24719a4cad5cc8d771fc9cfff5a38019d554a
9ef26e96e3ae1e3a3d5e01a9b7fd1fa4dc5d6dd5
crypto/tls: don't copy auto-rotated session ticket keys in Config.Clone Once a tls.Config is used, it is not safe to mutate. We provide the Clone method in order to allow users to copy and modify a Config that is in use. If Config.SessionTicketKey is not populated, and if Config.SetSessionTicketKeys has not been call...
[ { "path": "src/crypto/tls/common.go", "patch": "@@ -980,6 +980,10 @@ const maxSessionTicketLifetime = 7 * 24 * time.Hour\n \n // Clone returns a shallow clone of c or nil if c is nil. It is safe to clone a [Config] that is\n // being used concurrently by a TLS client or server.\n+//\n+// If Config.SessionTi...
2026-01-06T22:36:01
mrdoob/three.js
6e73a322e3888052a472cea70dff73c35434a85d
db897c4fe66edd638da126f6bae53b1f479def04
TSL: Fix `convertToTexture()` auto resize (#31277) * fix auto resize update * rename `autoSize` to `autoResize`
[ { "path": "src/nodes/utils/RTTNode.js", "patch": "@@ -131,7 +131,7 @@ class RTTNode extends TextureNode {\n \t * @readonly\n \t * @default true\n \t */\n-\tget autoSize() {\n+\tget autoResize() {\n \n \t\treturn this.width === null;\n \n@@ -188,13 +188,21 @@ class RTTNode extends TextureNode {\n \n \t\t//\n...
2025-06-17T04:12:59
vuejs/vue
575b6e77ab82b0bbc581aec3ea9b07135d2d1fcd
ae6dcd63a017059644502f8741d8a514f3e9cf84
fix(ssr): render initial and used async css chunks (#7902) compatibility with webpack 4 + mini CSS extraction close #7897
[ { "path": "src/server/template-renderer/index.js", "patch": "@@ -108,13 +108,13 @@ export default class TemplateRenderer {\n }\n \n renderStyles (context: Object): string {\n- const cssFiles = this.clientManifest\n- ? this.clientManifest.all.filter(isCSS)\n- : []\n+ const initial = this....
2018-04-07T04:22:22
denoland/deno
e3fda850d5215d4a78e95fbc0ae86096c2f12546
c3fe9932581c7396d50c1b228012eb6c9102f817
fix(ext/node): add worker_threads stdin support (#32165) ## Summary - Adds `worker.stdin` support when `{ stdin: true }` is passed to the `Worker` constructor - Parent creates a `Writable` stream (`worker.stdin`) that sends `WORKER_STDIN` / `WORKER_STDIN_END` messages to the worker via `postMessage` - Worker replaces...
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -38,7 +38,7 @@ import {\n validateObject,\n } from \"ext:deno_node/internal/validators.mjs\";\n import { EventEmitter } from \"node:events\";\n-import { Readable } from \"node:stream\";\n+import { Readable, Writable } from \"node:stream\";\n i...
2026-02-14T18:26:38
golang/go
e2429619605951b137e25f6a51fbc39d9f0f1e9b
9ef1692c93bf96328bcaf7a5c8a46094748da7f3
simd/archsimd: 128- and 256-bit FMA operations do not require AVX-512 Currently, all FMA operations are marked as requiring AVX512, even on smaller vector widths. This is happening because the narrower FMA operations are marked as extension "FMA" in the XED. Since this extension doesn't start with "AVX", we filter the...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -1959,23 +1959,11 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPERMI2Q256load,\n \t\tssa.OpAMD64VPERMI2PD512load,\n \t\tssa.OpAMD64VPERMI2Q512load,\n-\t\tssa.OpAMD64VFMADD213PS128load,\n-\t\tssa.OpAMD64VFM...
2026-01-13T19:18:14
mrdoob/three.js
db897c4fe66edd638da126f6bae53b1f479def04
827509127ad164159064d4d149cb8dc2029c0e5d
TSL: Remove `transformed*` prefix (#31271) * remove `transformed*`prefix * update examples * Update webgpu_pmrem_equirectangular.html * revisions * revision * Update MeshBasicNodeMaterial.js * Update webgpu_tsl_earth.html * cleanup
[ { "path": "examples/webgpu_animation_retargeting.html", "patch": "@@ -25,7 +25,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three';\n-\t\t\timport { color, screenUV, hue, reflector, time, Fn, vec2, length, atan, float, sin, cos, vec3, sub, mul, pow, blendDodge, normalWorld } from '...
2025-06-16T19:41:02
denoland/deno
c3fe9932581c7396d50c1b228012eb6c9102f817
021eb21b09d85e4fb8b29f4e7a0efb78397daf28
fix(ext/node): make worker_threads ref/unref idempotent like Node.js (#32161) Closes #31871 ## Summary - Changes `Worker.ref()`/`Worker.unref()` from a reference counter to an idempotent boolean toggle, matching Node.js semantics - In Node.js, `ref()`/`unref()` are idempotent: calling `ref()` multiple times is the sa...
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -160,7 +160,7 @@ const privateWorkerRef = Symbol(\"privateWorkerRef\");\n class NodeWorker extends EventEmitter {\n #id = 0;\n #name = \"\";\n- #refCount = 1;\n+ #refed = true;\n #messagePromise = undefined;\n #controlPromise = undefin...
2026-02-14T17:34:10
vuejs/vue
ae6dcd63a017059644502f8741d8a514f3e9cf84
805a4fd67602f1ac2a063284c4e2ce35be07815e
fix(ssr): remove trailing hash in webpack module identifier when generating client manifest
[ { "path": "src/server/webpack-plugin/client.js", "patch": "@@ -43,7 +43,8 @@ export default class VueSSRClientPlugin {\n if (!chunk || !chunk.files) {\n return\n }\n- const files = manifest.modules[hash(m.identifier)] = chunk.files.map(fileToIndex)\n+ const ...
2018-04-05T00:08:12
mrdoob/three.js
26a27685d0f26989c3b17d19306930754450f1f1
7526943fd11d711bbf885771dfaf7b1a417f0024
TSL: Fix `outgoingLight` redeclaration (#31266)
[ { "path": "src/nodes/lighting/LightsNode.js", "patch": "@@ -1,5 +1,5 @@\n import Node from '../core/Node.js';\n-import { nodeObject, vec3 } from '../tsl/TSLBase.js';\n+import { nodeObject, property, vec3 } from '../tsl/TSLBase.js';\n import { hashArray } from '../core/NodeUtils.js';\n \n const sortLights = ...
2025-06-15T03:15:01
golang/go
9ef1692c93bf96328bcaf7a5c8a46094748da7f3
e2fef50def98b87107ab963f657d43d7869b8463
simd/archsimd/_gen/simdgen: feature implications This simplifies our handling of XED features, adds a table of which features imply which other features, and adds this information to the documentation of the CPU features APIs. As part of this we fix an issue around the "AVXAES" feature. AVXAES is defined as the combi...
[ { "path": "src/simd/archsimd/_gen/simdgen/gen_simdTypes.go", "patch": "@@ -189,6 +189,7 @@ type X86Features struct {}\n var X86 X86Features\n \n {{range .}}\n+{{$f := .}}\n {{- if eq .Feature \"AVX512\"}}\n // {{.Feature}} returns whether the CPU supports the AVX512F+CD+BW+DQ+VL features.\n //\n@@ -199,11 +...
2026-01-13T14:34:53
mrdoob/three.js
7526943fd11d711bbf885771dfaf7b1a417f0024
7b80b9626c1f12f9b6b1c7aec9c73da1e9f068c2
Fix Typos in Documentation and Comments (#31265) * Update ColladaLoader.js * Update WebGLRenderer.js
[ { "path": "examples/jsm/loaders/ColladaLoader.js", "patch": "@@ -108,7 +108,7 @@ class ColladaLoader extends Loader {\n \t}\n \n \t/**\n-\t * Parses the given Collada data and returns a result oject holding the parsed scene,\n+\t * Parses the given Collada data and returns a result object holding the parsed...
2025-06-14T20:02:27
vuejs/vue
8227fb35240ab1f301c30a6ad5d4d25071fa7996
1bd6196fb234c28754d9a27095afe0b5b84990ad
fix: add missing `asyncMeta` during VNode cloning (#7861)
[ { "path": "src/core/vdom/vnode.js", "patch": "@@ -103,6 +103,7 @@ export function cloneVNode (vnode: VNode): VNode {\n cloned.fnContext = vnode.fnContext\n cloned.fnOptions = vnode.fnOptions\n cloned.fnScopeId = vnode.fnScopeId\n+ cloned.asyncMeta = vnode.asyncMeta\n cloned.isCloned = true\n retu...
2018-03-23T23:13:10
golang/go
e2fef50def98b87107ab963f657d43d7869b8463
7f6418bb4e44b1b11d428d402dd6935a2a1ea335
runtime: rename mallocTiny* to mallocgcTinySize* This makes it easier to identify which functions are used for memory allocation by looking for functions that start with mallocgc. The Size suffix is added so that the isSpecializedMalloc function in cmd/compile/internal/ssa can distinguish between the generated functio...
[ { "path": "src/cmd/compile/internal/ssa/rewrite.go", "patch": "@@ -480,7 +480,7 @@ func isSpecializedMalloc(aux Aux) bool {\n \tname := fn.String()\n \treturn strings.HasPrefix(name, \"runtime.mallocgcSmallNoScanSC\") ||\n \t\tstrings.HasPrefix(name, \"runtime.mallocgcSmallScanNoHeaderSC\") ||\n-\t\tstrings...
2026-01-12T19:37:39
denoland/deno
fd7ab8a43abfc932d9a679acd8b1234683500328
f08c376cad1898753f400eba47be10b93632b1d7
Revert "fix(compile): use SHT_NOTE to prevent `strip` from removing deno compiler data" (#32171) Reverts denoland/deno#32102
[ { "path": "Cargo.lock", "patch": "@@ -6090,14 +6090,13 @@ dependencies = [\n \n [[package]]\n name = \"libsui\"\n-version = \"0.13.0\"\n+version = \"0.12.6\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"4dd268ef2098e102e82c67d9de9076a2f1cef12ae284a7a35635ea30fa2dda9e\"...
2026-02-14T14:04:26
mrdoob/three.js
4dd9c05c1a4f5f7e8ccfa9f8a5a338d70f3a1efc
ca6d896fd81df7a9e13a5715e331d75219d034bf
ImageLoader: Optimize caching. (#31258) * ImageLoader: Optimize caching. * ImageLoader: Fix timing of cached callbacks. * ImageLoader: Move `item*()` calls. * ImageLoader: Fix `onError()` argument.
[ { "path": "src/loaders/ImageLoader.js", "patch": "@@ -2,6 +2,8 @@ import { Cache } from './Cache.js';\n import { Loader } from './Loader.js';\n import { createElementNS } from '../utils.js';\n \n+const _loading = new WeakMap();\n+\n /**\n * A loader for loading images. The class loads images with the HTML ...
2025-06-13T11:13:17
vuejs/vue
1bd6196fb234c28754d9a27095afe0b5b84990ad
7a145d86430bad65271f4d6ab1344b215fefe52a
fix(codegen): support IE11 and Edge use of "Esc" key (#7887) Closes #7880
[ { "path": "src/compiler/codegen/events.js", "patch": "@@ -18,7 +18,8 @@ const keyCodes: { [key: string]: number | Array<number> } = {\n \n // KeyboardEvent.key aliases\n const keyNames: { [key: string]: string | Array<string> } = {\n- esc: 'Escape',\n+ // #7880: IE11 and Edge use `Esc` for Escape key name...
2018-03-23T23:08:55
golang/go
7f6418bb4e44b1b11d428d402dd6935a2a1ea335
c16402d15b42cf494774796e606aba66c90d3d6b
all: fix misspellings in comments Change-Id: I121847e7f68c602dd8e9ecddfc41b547f8a86f10 Reviewed-on: https://go-review.googlesource.com/c/go/+/734361 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Robert Griesemer <gri@google.com> Reviewed-by: Junyang Shao <shaoju...
[ { "path": "src/cmd/compile/internal/ssagen/ssa.go", "patch": "@@ -7795,7 +7795,7 @@ func AddrAuto(a *obj.Addr, v *ssa.Value) {\n // Call returns a new CALL instruction for the SSA value v.\n // It uses PrepareCall to prepare the call.\n func (s *State) Call(v *ssa.Value) *obj.Prog {\n-\tpPosIsStmt := s.pp.P...
2026-01-07T05:46:43
denoland/deno
f08c376cad1898753f400eba47be10b93632b1d7
fb701ea348214d960dc79d8f4edf94264744d3fb
fix(compile): use SHT_NOTE to prevent `strip` from removing deno compiler data (#32102) Fixes https://github.com/denoland/deno/issues/22556 > Data is stored in ELF notes using a section of type SHT_NOTE and a program header of type PT_NOTE. The .note.sui section is placed inside a PT_LOAD segment so it is mapped at r...
[ { "path": "Cargo.lock", "patch": "@@ -6090,13 +6090,14 @@ dependencies = [\n \n [[package]]\n name = \"libsui\"\n-version = \"0.12.6\"\n+version = \"0.13.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"e2b6d6bbf43ba95540d1681826c8d7acb9744708398463ccbcd3c3a5d04c2fdc\"...
2026-02-14T11:32:30
mrdoob/three.js
8faa0688fb512c2af52011ea24a48339c70e476f
88cf6d03da0a2701353c4df80287ccb704c7ca56
TSL: Fix inconsistent chaining for `.step()` (Parameter order) (#31241) * fix inconsistent chaining for `step` and `smoothstep` * update examples * Update webgpu_tsl_vfx_tornado.html
[ { "path": "examples/webgpu_tsl_halftone.html", "patch": "@@ -145,10 +145,8 @@\n \n \t\t\t\t\t// mask\n \n-\t\t\t\t\tconst mask = gridUv\n-\t\t\t\t\t\t.sub( 0.5 )\n-\t\t\t\t\t\t.length()\n-\t\t\t\t\t\t.step( orientationStrength.mul( radius ).mul( 0.5 ) )\n+\t\t\t\t\tconst mask = orientationStrength.mul( radi...
2025-06-10T03:02:56
vuejs/vue
7a145d86430bad65271f4d6ab1344b215fefe52a
653aac2c57d15f0e93a2c1cc7e6fad156658df19
fix(observer): invoke getters on initial observation if setter defined (#7828)
[ { "path": "src/core/observer/index.js", "patch": "@@ -147,10 +147,10 @@ export function defineReactive (\n \n // cater for pre-defined getter/setters\n const getter = property && property.get\n- if (!getter && arguments.length === 2) {\n+ const setter = property && property.set\n+ if ((!getter || set...
2018-03-23T23:08:02
golang/go
b7e6d8b923ad06538c800d635d3ede90d3d0b782
cbe153806e67a16e362a1cdbbf1741d4ce82e98a
os/exec_test: fix test on Plan 9 Error strings vary across OSes when trying to execute a file that does not exist. Since matching them is not the point of the test, ignore them. Fixes #76965 Change-Id: I6d220bc2d0289070f3441adb48983c13b2a3e597 Reviewed-on: https://go-review.googlesource.com/c/go/+/732940 LUCI-TryBot...
[ { "path": "src/os/exec/exec_test.go", "patch": "@@ -1845,23 +1845,13 @@ func TestStart_twice(t *testing.T) {\n \ttestenv.MustHaveExec(t)\n \n \tcmd := exec.Command(\"/bin/nonesuch\")\n-\tfor i, want := range []string{\n-\t\tcond(runtime.GOOS == \"windows\",\n-\t\t\t`exec: \"/bin/nonesuch\": executable file ...
2025-12-28T00:08:26
denoland/deno
7a048f40f980f63a646444e3386e3e92d0e6a0c1
db1386570f5fdfa7712de275ca41d1501c17dec8
fix(ext/node): forward stdout from worker_threads to parent (#32160) Closes #31889 ## Summary - Adds `stdout` and `stderr` as `Readable` streams on the `Worker` class, and `stdin` (null by default), matching the Node.js API surface - Forwards `process.stdout.write()` and `process.stderr.write()` from worker threads t...
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -38,6 +38,7 @@ import {\n validateObject,\n } from \"ext:deno_node/internal/validators.mjs\";\n import { EventEmitter } from \"node:events\";\n+import { Readable } from \"node:stream\";\n import {\n BroadcastChannel as WebBroadcastChannel,\n...
2026-02-14T10:03:25
mrdoob/three.js
e9f3ce47312b6c99a6ab46bf33880bb61ab7061a
f5b96f823d9a7d6fa50a2ab08076647e64a98b1d
TSL: Introduce Chromatic Aberration (#31236) * Chromatic aberration TSL node Example page for ca node * Fix comma * Remove unused delta from render loop in ca example * Rename CANode.js to ChromaticAberrationNode.js Add nodeObject in ca params, for ability to use a procedural node Update example gui to toggle pr...
[ { "path": "examples/files.json", "patch": "@@ -405,6 +405,7 @@\n \t\t\"webgpu_postprocessing_fxaa\",\n \t\t\"webgpu_postprocessing_lensflare\",\n \t\t\"webgpu_postprocessing_masking\",\n+\t\t\"webgpu_postprocessing_ca\",\n \t\t\"webgpu_postprocessing_motion_blur\",\n \t\t\"webgpu_postprocessing_outline\",\n...
2025-06-08T04:09:24
vuejs/vue
f43ce3a5d8f73e273f2d03c9d86ea5662cda481a
b7445a2b945dcded287601ace8e711ab5cf35ab5
fix: invoke component node create hooks before insertion (#7823) fix #7531
[ { "path": "flow/options.js", "patch": "@@ -2,8 +2,6 @@ declare type InternalComponentOptions = {\n _isComponent: true;\n parent: Component;\n _parentVnode: VNode;\n- _parentElm: ?Node;\n- _refElm: ?Node;\n render?: Function;\n staticRenderFns?: Array<Function>\n };\n@@ -81,8 +79,6 @@ declare typ...
2018-03-23T23:03:17
golang/go
cbe153806e67a16e362a1cdbbf1741d4ce82e98a
30d0b4026410da3486ba841bb7f13c1d9074e91d
net: fix socket duplication error handling on Windows Calls to dupSocket may fail, but the error is not properly handled because the surrounding code incorrectly checks for nil error instead of non-nil error. I'm not aware of any code paths that would trigger this error, and I haven't been able to create a test case ...
[ { "path": "src/net/fd_windows.go", "patch": "@@ -248,7 +248,7 @@ func (fd *netFD) dup() (*os.File, error) {\n \terr := fd.pfd.RawControl(func(fd uintptr) {\n \t\th, syserr = dupSocket(syscall.Handle(fd))\n \t})\n-\tif err != nil {\n+\tif err == nil {\n \t\terr = syserr\n \t}\n \tif err != nil {", "addit...
2026-01-08T14:50:15
mrdoob/three.js
b916c16acc5334005b7cbd35649008941ca91318
82cab04339a57d7abf6751d2d8fdab082efca6ac
RenderObject: Check attributes version of the geometry (#31227) * check attributes version of the geometry * update approach * fix pbo * Update webgpu_skinning_points.html * Update webgpu_skinning_points.html * Update webgpu_tsl_compute_attractors_particles.jpg * Update RenderObject.js * Update RenderObject.js ...
[ { "path": "examples/webgpu_skinning_points.html", "patch": "@@ -78,7 +78,7 @@\n \t\t\t\t\t\t\tmaterialPoints.sizeNode = pointSpeedAttribute.length().exp().min( 5 ).mul( 5 ).add( 1 );\n \t\t\t\t\t\t\tmaterialPoints.sizeAttenuation = false;\n \n-\t\t\t\t\t\t\tmaterialPoints.positionNode = Fn( () => {\n+\t\t\t...
2025-06-06T16:27:23
denoland/deno
0ea7d9f8130a2f803258d15ea641133a743ba410
1108e77020c560c5a777e585c1464e891ed67b0f
feat(ext/tls): add `SSLKEYLOGFILE` support for TLS key logging (#31867) Adds support for the `SSLKEYLOGFILE` environment variable, enabling TLS session key logging for debugging encrypted traffic. When `SSLKEYLOGFILE` is set to a file path, Deno writes TLS session keys in NSS Key Log format, which can be used by tool...
[ { "path": "Cargo.lock", "patch": "@@ -3119,6 +3119,7 @@ dependencies = [\n \"deno_core\",\n \"deno_error\",\n \"deno_native_certs\",\n+ \"log\",\n \"rustls\",\n \"rustls-pemfile\",\n \"rustls-tokio-stream\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "cli/...
2026-02-13T16:01:10
vuejs/vue
b7445a2b945dcded287601ace8e711ab5cf35ab5
de42278d34f6a800cec5c7eb781c1b8b83a829dd
fix: beforeUpdate should be called before render and allow state mutation (#7822) fix #7481
[ { "path": "src/core/instance/lifecycle.js", "patch": "@@ -50,9 +50,6 @@ export function initLifecycle (vm: Component) {\n export function lifecycleMixin (Vue: Class<Component>) {\n Vue.prototype._update = function (vnode: VNode, hydrating?: boolean) {\n const vm: Component = this\n- if (vm._isMount...
2018-03-23T23:03:00
golang/go
30d0b4026410da3486ba841bb7f13c1d9074e91d
5741608de26f06488e771fd7b3b35ca2ca4c93a6
net: don't ignore getsockname errors in newFileFD newFileFD is called when creating a net FD from an existing socket handle. That socket might not be bound yet, in which case getsockname returns a useful error that is currently ignored and replaced with a potentially misleading EPROTONOSUPPORT error later on. Updates...
[ { "path": "src/net/file_posix.go", "patch": "@@ -23,7 +23,11 @@ func newFileFD(f *os.File) (*netFD, error) {\n \t\tpoll.CloseFunc(s)\n \t\treturn nil, os.NewSyscallError(\"getsockopt\", err)\n \t}\n-\tlsa, _ := syscall.Getsockname(s)\n+\tlsa, err := syscall.Getsockname(s)\n+\tif err != nil {\n+\t\tpoll.Clos...
2026-01-08T14:44:51
mrdoob/three.js
f31ed46939faaee8f161866c200f0c972f0100fa
c7b6f81b608cbbb2b729f67b110dac50e82d96da
Examples: Fix `instancedArray()` usage of `webgpu_compute_birds` (#31230) * fix `instancedArray()` usage * Update webgpu_compute_birds.jpg
[ { "path": "examples/webgpu_compute_birds.html", "patch": "@@ -37,7 +37,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three';\n-\t\t\timport { uniform, varying, vec4, add, sub, max, dot, sin, mat3, uint, negate, attributeArray, cameraProjectionMatrix, cameraViewMatrix, positionLocal,...
2025-06-06T05:02:46
denoland/deno
1108e77020c560c5a777e585c1464e891ed67b0f
f72ef98854679bf50d2b479743fb98171df94869
chore: split up deno_node to improve compile times (#32142) I let claude loose on improving compile times and it suggested splitting up `deno_node` by extracting the crypto stuff and node sqlite. And the other change is getting rid of all unused constants in `winerror.rs`. That changes it from 17k lines down to 240. ...
[ { "path": ".github/workflows/ci.yml", "patch": "@@ -506,17 +506,17 @@ jobs:\n if: '!(matrix.skip) && matrix.job == ''test'' && matrix.profile == ''debug'' && !startsWith(github.ref, ''refs/tags/'') && runner.os == ''Linux'''\n env:\n CARGO_PROFILE_DEV_DEBUG: 0\n- run: cargo ...
2026-02-13T15:48:57
golang/go
5741608de26f06488e771fd7b3b35ca2ca4c93a6
df6c351aa4bbc8805406bfef979e62f59fc76da9
net: don't ignore errors in TestUnixUnlink TestUnixUnlink calls some functions and methods that can fail, but it ignores the returned errors. This test is flaky on Windows, and those errors should be checked to help diagnose the problem. Updates #75282 Updates #76582 Updates #77038 Change-Id: Ia868762a4c0b94a7255d57...
[ { "path": "src/net/unixsock_test.go", "patch": "@@ -375,6 +375,17 @@ func TestUnixUnlink(t *testing.T) {\n \t\t}\n \t\treturn l.(*UnixListener)\n \t}\n+\tfileListener := func(t *testing.T, l *UnixListener) (*os.File, Listener) {\n+\t\tf, err := l.File()\n+\t\tif err != nil {\n+\t\t\tt.Fatal(err)\n+\t\t}\n+\...
2026-01-08T09:25:44
vuejs/vue
de42278d34f6a800cec5c7eb781c1b8b83a829dd
a7d190d2491a573e8bdfcc05d70d341d191ea213
fix: ensure init/prepatch hooks are still repsected this address a regression introduced in 984927a which causes vue-router#1338 to resurface.
[ { "path": "src/core/vdom/create-component.js", "patch": "@@ -238,8 +238,21 @@ function installComponentHooks (data: VNodeData) {\n const hooks = data.hook || (data.hook = {})\n for (let i = 0; i < hooksToMerge.length; i++) {\n const key = hooksToMerge[i]\n- hooks[key] = componentVNodeHooks[key]\n...
2018-03-23T23:01:24
mrdoob/three.js
c7b6f81b608cbbb2b729f67b110dac50e82d96da
7b31083d56bfa14347c89a480b1995f89631737e
Update Object3DNode.js (#31224) Fix JSDoc for objectRadius to match implementation
[ { "path": "src/nodes/accessors/Object3DNode.js", "patch": "@@ -263,6 +263,6 @@ export const objectViewPosition = /*@__PURE__*/ nodeProxy( Object3DNode, Object3\n * @tsl\n * @function\n * @param {?Object3D} [object3d] - The 3D object.\n- * @returns {Object3DNode<vec3>}\n+ * @returns {Object3DNode<float>}\...
2025-06-04T16:17:29
denoland/deno
f72ef98854679bf50d2b479743fb98171df94869
cf25db5ce03f61c3455b85833558278c4199bad1
tests(node/ext): ignore zlib kmaxlength tests (#32137) Deno pre-loads polyfills as ESM, so kMaxLength is a live binding that can't be snapshotted like Node.js CJS require Ignore 3 node_compat tests: - test-zlib-kmaxlength-rangeerror - test-zlib-brotli-kmaxlength-rangeerror - test-zlib-zstd-kmaxlength-rangeerror
[ { "path": "tests/node_compat/config.jsonc", "patch": "@@ -1595,7 +1595,12 @@\n \"parallel/test-zlib-brotli-flush.js\": {},\n \"parallel/test-zlib-brotli-from-brotli.js\": {},\n \"parallel/test-zlib-brotli-from-string.js\": {},\n- // \"parallel/test-zlib-brotli-kmaxlength-rangeerror.js\": {},\...
2026-02-13T14:32:39
golang/go
fed3b0a298464457c58d1150bdb3942f22bd6220
55ab5bba17a5221a51df244c8a3aeb1898cbdf1a
cmd/dist: fix goroot typo in panic message Change-Id: I636a029eedaab0967b774648670710d1303a1f7c GitHub-Last-Rev: 519faedc5b8327696efeeb431ef66e9fd29f0db7 GitHub-Pull-Request: golang/go#77081 Reviewed-on: https://go-review.googlesource.com/c/go/+/734080 Reviewed-by: Ian Lance Taylor <iant@golang.org> LUCI-TryBot-Result...
[ { "path": "src/cmd/dist/imports.go", "patch": "@@ -259,6 +259,6 @@ func resolveVendor(imp, srcDir string) string {\n \t} else if strings.HasPrefix(srcDir, filepath.Join(goroot, \"src\")) {\n \t\treturn path.Join(\"vendor\", imp)\n \t} else {\n-\t\tpanic(fmt.Sprintf(\"srcDir %q not in GOOROT/src\", srcDir))\...
2026-01-05T22:59:29
mrdoob/three.js
7b31083d56bfa14347c89a480b1995f89631737e
7b8e83f915c8e068f1f938249c5ba1bc91a524fb
NodeBuilder - Fix Interpolation (#31222) * init branch * fix * remove comment * Update GLSLNodeBuilder.js Clean up. --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "examples/webgpu_centroid_sampling.html", "patch": "@@ -158,8 +158,8 @@\n \n \t\t\t\t};\n \n-\t\t\t\tconst withFlatFirstShader = createShader( THREE.InterpolationSamplingType.FLAT, THREE.InterpolationSamplingMode.FLAT_FIRST );\n-\t\t\t\tconst withFlatEitherShader = createShader( THREE.Interpolatio...
2025-06-04T08:43:33
denoland/deno
cf25db5ce03f61c3455b85833558278c4199bad1
6393dc0f7e34d2fb13f4c489b6211173bce08f35
fix(ext/node): validate execArgv flags in worker_threads instead of rejecting all (#32145) ## Summary - Validate `execArgv` flags against `process.allowedNodeEnvironmentFlags` and a set of worker-disallowed per-process flags, instead of rejecting all non-empty `execArgv` arrays - Pass `execArgv` through worker me...
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -59,9 +59,13 @@ const {\n PromiseReject,\n PromiseResolve,\n SafeMap,\n+ SafeRegExp,\n SafeSet,\n SafeWeakMap,\n String,\n+ StringPrototypeIndexOf,\n+ StringPrototypeSlice,\n+ StringPrototypeSplit,\n StringPrototypeStartsWith,\...
2026-02-13T10:13:39
vuejs/vue
7b387390aa917edffc0eabce0b4186ea1ef40e2c
17d7a5f6bd28dda247ddeb02ed66ebc92182ded9
fix: correct the `has` implementation in the `_renderProxy` (#7878) It's feasible that someone might ask if something other than a string is in the proxy such as a `Symbol` that lacks a `charAt` method. This aligns the implementation with the `getHandler`.
[ { "path": "src/core/instance/proxy.js", "patch": "@@ -45,7 +45,7 @@ if (process.env.NODE_ENV !== 'production') {\n const hasHandler = {\n has (target, key) {\n const has = key in target\n- const isAllowed = allowedGlobals(key) || key.charAt(0) === '_'\n+ const isAllowed = allowedGlobal...
2018-03-22T13:53:28
mrdoob/three.js
26b3fa29b5bba8270a1dd37c303d1eff46f7a918
c1c0eab62274bc4a6537cd82fe786f720a7ad6c1
fix texture path (#31217)
[ { "path": "examples/webgpu_sandbox.html", "patch": "@@ -67,7 +67,7 @@\n \t\t\t\t\t.setTranscoderPath( 'jsm/libs/basis/' )\n \t\t\t\t\t.detectSupportAsync( renderer );\n \n-\t\t\t\tconst ktxTexture = await ktxLoader.loadAsync( './textures/compressed/sample_uastc_zstd.ktx2' );\n+\t\t\t\tconst ktxTexture = awa...
2025-06-03T07:47:23
golang/go
108b333d510c1f60877ac917375d7931791acfe6
2bbb2ace346a26e0b1f7e32f1cdc645db8170d1c
cmd/go: only use check cache action's dependencies to build vet config We manipulate the dependencies of the build action when adding the non-test variant of the package being tested as a dependency for the test, so the set of deps of the build package doesn't correctly represent the dependencies of the package that h...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -627,7 +627,7 @@ func (b *Builder) checkCacheForBuild(a, buildAction *Action, covMetaFileName str\n \t// If we are going to do a full build anyway,\n \t// we're going to regenerate the files in the build action anyway.\n \tif need == needVet {\n-\t\...
2026-01-08T17:45:34
mrdoob/three.js
a1db039706a81bca955f15032b088fdb2b603409
8644296c1053bece1532a42f9b8fcd3942034e35
TSL: Fix `Fn` as parameter (#31214)
[ { "path": "src/nodes/tsl/TSLCore.js", "patch": "@@ -175,7 +175,7 @@ const ShaderNodeObject = function ( obj, altType = null ) {\n \n \t} else if ( type === 'shader' ) {\n \n-\t\treturn Fn( obj );\n+\t\treturn obj.isFn ? obj : Fn( obj );\n \n \t}\n \n@@ -652,6 +652,8 @@ export const Fn = ( jsFunc, layout = n...
2025-06-01T21:36:43
vuejs/vue
62a922e865f5e578f67b386cb614abfc173d7851
9084747e307dc9b415ff8e2a788c6a585a2a8f6c
fix: fix wrongly matched named slots in functional components This is a subtle edge case caused when a stateful component triggers a self re-render, which reuses cached slot nodes. The cached slot nodes, if returned from a functional render fn, gets the fnContext property which causes subsequent slot resolving to not ...
[ { "path": "src/core/vdom/create-functional-component.js", "patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-import VNode from './vnode'\n+import VNode, { cloneVNode } from './vnode'\n import { createElement } from './create-element'\n import { resolveInject } from '../instance/inject'\n import { normalizeChildre...
2018-03-13T21:48:52
denoland/deno
cb8326224826ec684229f9c99bb5ccfd2e8650fe
db4ebb78e898660c11e6c7ac64855ee44fa52895
fix(lsp): replace lsp-types with tower-lsp-community/ls-types (#32138)
[ { "path": "Cargo.lock", "patch": "@@ -685,6 +685,12 @@ dependencies = [\n \"generic-array\",\n ]\n \n+[[package]]\n+name = \"borrow-or-share\"\n+version = \"0.2.4\"\n+source = \"registry+https://github.com/rust-lang/crates.io-index\"\n+checksum = \"dc0b364ead1874514c8c2855ab558056ebfeb775653e7ae45ff72f28f8...
2026-02-12T19:56:04
mrdoob/three.js
8a7655db1ac612c7aeba6ce8630ef03a39a1c810
54e359164f74a945813110586312a6f7683bc1e6
WebGLTextureUtils: Clean up. (#31195) * WebGLTextureUtils: Clean up. * clean up * fix eslint error * Update WebGLTextureUtils.js --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "src/renderers/webgl-fallback/utils/WebGLTextureUtils.js", "patch": "@@ -497,25 +497,6 @@ class WebGLTextureUtils {\n \t\tif ( texture.isRenderTargetTexture || ( textureGPU === undefined /* unsupported texture format */ ) )\n \t\t\treturn;\n \n-\t\tconst getImage = ( source ) => {\n-\n-\t\t\tif ( ...
2025-05-29T21:12:18
vuejs/vue
9084747e307dc9b415ff8e2a788c6a585a2a8f6c
1a979c44d6543d89f8a7e26ad7f995b1bf2aee3c
fix(core): Make set/delete warning condition for undefined, null and (#7818) primitive values more precise. Corrects #7452
[ { "path": "src/core/observer/index.js", "patch": "@@ -10,6 +10,8 @@ import {\n hasProto,\n isObject,\n isPlainObject,\n+ isPrimitive,\n+ isUndef,\n isValidArrayIndex,\n isServerRendering\n } from '../util/index'\n@@ -195,10 +197,9 @@ export function defineReactive (\n */\n export function set (...
2018-03-13T15:09:49
denoland/deno
db4ebb78e898660c11e6c7ac64855ee44fa52895
6869ed4737f0225e4f14a801ae66b9e4a97810e9
chore: error when creating error message in lint script (#32143) There is no `.join()` on `Set`.
[ { "path": "tools/lint.js", "patch": "@@ -382,7 +382,7 @@ async function ensureNoNewTopLevelEntries() {\n throw new Error(\n `New top-level entries detected: ${newEntries.join(\", \")}. ` +\n `Only the following top-level entries are allowed: ${\n- allowed.join(\", \")\n+ ...
2026-02-12T15:55:47
mrdoob/three.js
54e359164f74a945813110586312a6f7683bc1e6
8146d0a8ba323b80f9401ffb2efee0b19d67f136
fix issues with xr rendering (#31198)
[ { "path": "src/renderers/common/Renderer.js", "patch": "@@ -1260,6 +1260,7 @@ class Renderer {\n \t\tframeBufferTarget.scissorTest = this._scissorTest;\n \t\tframeBufferTarget.multiview = outputRenderTarget !== null ? outputRenderTarget.multiview : false;\n \t\tframeBufferTarget.resolveDepthBuffer = outputR...
2025-05-29T21:08:35
vuejs/vue
1a979c44d6543d89f8a7e26ad7f995b1bf2aee3c
a6169d1eb71d64eacddf1738e72d21725e2bff00
fix(ssr): fix v-show inline style rendering when style binding is array (#7814) fix #7813
[ { "path": "src/platforms/web/server/directives/show.js", "patch": "@@ -3,6 +3,10 @@\n export default function show (node: VNodeWithData, dir: VNodeDirective) {\n if (!dir.value) {\n const style: any = node.data.style || (node.data.style = {})\n- style.display = 'none'\n+ if (Array.isArray(style)...
2018-03-13T15:07:58
denoland/deno
0d86c74f9cbec8262f3a6b9dafad8736fa7eb9e6
b42e616c87840dd51d4433d0b338a78eec82a42b
fix(compile): remove data.is_empty() check (#32125) This check is not needed
[ { "path": "cli/standalone/binary.rs", "patch": "@@ -185,7 +185,6 @@ pub fn is_standalone_binary(exe_path: &Path) -> bool {\n libsui::utils::is_elf(&data)\n || libsui::utils::is_pe(&data)\n || libsui::utils::is_macho(&data)\n- || data.is_empty()\n }\n \n pub struct WriteBinOptions<'a> {", "a...
2026-02-12T10:45:22
golang/go
2bbb2ace346a26e0b1f7e32f1cdc645db8170d1c
6b2505c79cb3838c6e27cf47ac09980fe51c83c2
runtime/trace: fix documentation comment Correct documentation comment for mul function Change-Id: I8b90f02bf0aaba9bb5813833d1b9dd1ebb7d71f4 GitHub-Last-Rev: e91af64af9bad9cd2574dc3dd7ed88123a288be8 GitHub-Pull-Request: golang/go#77082 Reviewed-on: https://go-review.googlesource.com/c/go/+/734100 Reviewed-by: Michael...
[ { "path": "src/runtime/trace/recorder.go", "patch": "@@ -112,7 +112,7 @@ func runtime_traceClockNow() uint64\n // frequency is nanoseconds per timestamp unit.\n type frequency float64\n \n-// mul multiplies an unprocessed to produce a time in nanoseconds.\n+// mul multiplies an unprocessed timestamp to prod...
2026-01-05T23:08:44
mrdoob/three.js
8146d0a8ba323b80f9401ffb2efee0b19d67f136
c0088a72c24b4914467471ed4f0aea917842da2d
fix: check if OffscreenCanvas in window before accessing (#31194)
[ { "path": "src/renderers/webgl-fallback/utils/WebGLTextureUtils.js", "patch": "@@ -506,7 +506,7 @@ class WebGLTextureUtils {\n \t\t\t} else if ( ( typeof HTMLImageElement !== 'undefined' && source instanceof HTMLImageElement ) ||\n \t\t\t\t( typeof HTMLCanvasElement !== 'undefined' && source instanceof HTML...
2025-05-29T09:34:54
vuejs/vue
a6169d1eb71d64eacddf1738e72d21725e2bff00
6dd73e9ee44c09f04d3f616fcce18750a55e2e4f
fix(model): fix static input type being overwritten by v-bind object (#7819) fix #7811
[ { "path": "src/platforms/web/compiler/modules/model.js", "patch": "@@ -34,7 +34,7 @@ function preTransformNode (el: ASTElement, options: CompilerOptions) {\n if (map[':type'] || map['v-bind:type']) {\n typeBinding = getBindingAttr(el, 'type')\n }\n- if (!typeBinding && map['v-bind']) {\n+ ...
2018-03-13T15:05:58
denoland/deno
1b2a9f1615f227d354b49e391cae590f3267b500
53b9903d811a9451cf225e5444fe1c8308c9b432
fix(ext/node): fix worker exit code propagation in `worker_threads` (#32124) ## Summary - Properly propagate `process.exitCode` from Node `worker_threads` to the parent, matching Node.js behavior. Previously exit codes were hardcoded to 0 (natural exit) or 1 (error exit), ignoring `process.exitCode` set by the worker....
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -696,6 +696,17 @@ process.reallyExit = (code: number) => {\n \n process._exiting = _exiting;\n \n+// deno-lint-ignore no-explicit-any\n+process._fatalException = function (err: any, fromPromise?: boolean) {\n+ const origin = fromPromise ? \"unhandledR...
2026-02-12T09:38:40
mrdoob/three.js
c421357d4384e99a6e5500665b72a58a547cf8a8
21cbe6c0b390ee6caa756d3ca4fa1e7b59ba1d80
README: Removed DeepScan and fixed DeepWiki
[ { "path": "README.md", "patch": "@@ -3,9 +3,8 @@\n [![NPM Package][npm]][npm-url]\n [![Build Size][build-size]][build-size-url]\n [![NPM Downloads][npm-downloads]][npmtrends-url]\n-[![DeepScan][deepscan]][deepscan-url]\n+[![DeepWiki][deepwiki]][deepwiki-url]\n [![Discord][discord]][discord-url]\n-[![Ask Dee...
2025-05-28T10:28:49
golang/go
6b2505c79cb3838c6e27cf47ac09980fe51c83c2
4b89bcb8b7141c7e4ef1a7dbb4c3f17f589d89c0
cmd/go: remove user-content from doc strings in cgo ASTs. Thank you to RyotaK (https://ryotak.net) of GMO Flatt Security Inc. for reporting this issue. Updates golang/go#76697 Fixes CVE-2025-61732 Change-Id: I1121502f1bf1e91309eb4bd41cc3a09c39366d36 Reviewed-on: https://go-review.googlesource.com/c/go/+/734220 Revie...
[ { "path": "src/cmd/cgo/ast.go", "patch": "@@ -301,17 +301,12 @@ func (f *File) saveExport(x any, context astContext) {\n \t\t\terror_(c.Pos(), \"export comment has wrong name %q, want %q\", name, n.Name.Name)\n \t\t}\n \n-\t\tdoc := \"\"\n-\t\tfor _, c1 := range n.Doc.List {\n-\t\t\tif c1 != c {\n-\t\t\t\td...
2026-01-06T21:09:19
vuejs/vue
6dd73e9ee44c09f04d3f616fcce18750a55e2e4f
215f877d1b7eb6583f7adf15676ead8611f07379
fix: named slots for nested functional components Named slots should be respecred when passing raw children down multiple layers of functional components. fix #7710
[ { "path": "src/core/vdom/create-functional-component.js", "patch": "@@ -10,6 +10,7 @@ import { installRenderHelpers } from '../instance/render-helpers/index'\n import {\n isDef,\n isTrue,\n+ hasOwn,\n camelize,\n emptyObject,\n validateProp\n@@ -23,6 +24,21 @@ export function FunctionalRenderCont...
2018-03-12T19:39:39
mrdoob/three.js
2dba5a8116e266c9e9a59495d67c80cceb4204d9
b801c8fdf6e651d658f975135912ecdce5f0b957
CSMShadowNode: Fix toggle of `castShadow`. (#31186) * CSMShadowNode: Fix toggle of `castShadow`. * CSMShadowNode: Add comment.
[ { "path": "examples/jsm/csm/CSMShadowNode.js", "patch": "@@ -163,7 +163,6 @@ class CSMShadowNode extends ShadowBaseNode {\n \t\tthis.mainFrustum = new CSMFrustum( data );\n \n \t\tconst light = this.light;\n-\t\tconst parent = light.parent;\n \n \t\tfor ( let i = 0; i < this.cascades; i ++ ) {\n \n@@ -175,9...
2025-05-28T08:18:59
denoland/deno
53b9903d811a9451cf225e5444fe1c8308c9b432
7b43bca73e176f5ff6bbc7e8760eca296d5bf55f
fix(ext/web): recheck state after signaling abort on writable stream (#32129) See the note under [WritableStreamAbort](https://streams.spec.whatwg.org/#writable-stream-abort).
[ { "path": "ext/web/06_streams.js", "patch": "@@ -4308,11 +4308,12 @@ function transformStreamUnblockWrite(stream) {\n * @returns {Promise<void>}\n */\n function writableStreamAbort(stream, reason) {\n- const state = stream[_state];\n+ let state = stream[_state];\n if (state === \"closed\" || state ===...
2026-02-12T09:13:09
golang/go
4b89bcb8b7141c7e4ef1a7dbb4c3f17f589d89c0
8ac4477d83672af8c3d39399685731ee6b81ce2f
lib/fips140: freeze v1.26.0 FIPS 140-3 module Fixes #76770 Change-Id: Ia617f01ea9be0d1759147b6cca0403c56a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/731840 Reviewed-by: Roland Shoemaker <roland@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto...
[ { "path": "lib/fips140/fips140.sum", "patch": "@@ -10,4 +10,4 @@\n #\tgo test cmd/go/internal/fips140 -update\n #\n v1.0.0-c2097c7c.zip daf3614e0406f67ae6323c902db3f953a1effb199142362a039e7526dfb9368b\n-v1.1.0-rc1.zip ea94f8c3885294c9efe1bd8f9b6e86daeb25b6aff2aeb20707cd9a5101f6f54e\n+v1.26.0.zip 9b28f847fdf...
2025-12-19T22:14:36
vuejs/vue
215f877d1b7eb6583f7adf15676ead8611f07379
4378fc5124067c2b3a3517dd7f527edd9be2ad37
fix(keep-alive): run prune after render for correct active component check fix #7566
[ { "path": "src/core/components/keep-alive.js", "patch": "@@ -71,13 +71,13 @@ export default {\n }\n },\n \n- watch: {\n- include (val: string | RegExp | Array<string>) {\n+ mounted () {\n+ this.$watch('include', val => {\n pruneCache(this, name => matches(val, name))\n- },\n- exclu...
2018-03-12T17:05:31
mrdoob/three.js
b801c8fdf6e651d658f975135912ecdce5f0b957
7cb0f654bba5fbe83e8192e7d796475620f53158
WebGPURenderer: Fix blend factor nomenclature (#31188)
[ { "path": "src/renderers/webgpu/utils/WebGPUConstants.js", "patch": "@@ -227,7 +227,7 @@ export const GPUBlendFactor = {\n \tSrcAlpha: 'src-alpha',\n \tOneMinusSrcAlpha: 'one-minus-src-alpha',\n \tDst: 'dst',\n-\tOneMinusDstColor: 'one-minus-dst',\n+\tOneMinusDst: 'one-minus-dst',\n \tDstAlpha: 'dst-alpha',...
2025-05-28T04:28:28
denoland/deno
7b43bca73e176f5ff6bbc7e8760eca296d5bf55f
82b506dbccc0be9f352da65796a9e2774b0d3b5f
fix(deploy): bypass minimumDependencyAge (#32136) Closes #32135
[ { "path": "cli/tools/deploy.rs", "patch": "@@ -2,6 +2,7 @@\n \n use std::sync::Arc;\n \n+use deno_config::deno_json::NewestDependencyDate;\n use deno_config::deno_json::NodeModulesDirMode;\n use deno_core::error::AnyError;\n use deno_core::url::Url;\n@@ -22,6 +23,7 @@ pub async fn deploy(\n ) -> Result<i32,...
2026-02-12T02:31:17
golang/go
874d8b98eba8129559b97d2fdfa02ddeb88b95f9
d1e7f49e3d1eb039d9d2aed3ba923459bd42aa7c
cmd/go/internal/work: decrement concurrentProcesses when action finishes This fixes a bug where we only incremented concurrentProcesses but never decremented it, causing us to run out of tokens and give all compiles -c=1 after a point. Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64_c2s16-perf_vs_parent,gotip-l...
[ { "path": "src/cmd/go/internal/work/exec.go", "patch": "@@ -248,6 +248,11 @@ func (b *Builder) Do(ctx context.Context, root *Action) {\n \n \twg.Wait()\n \n+\tif tokens != totalTokens || concurrentProcesses != 0 {\n+\t\tbase.Fatalf(\"internal error: tokens not restored at end of build: tokens: %d, totalToke...
2026-01-06T22:18:48
mrdoob/three.js
a5a4983fd399af344a82bc6b3554e74570e1356f
3b98b80ddaa3e1f51fe3102ebd4a3dac43efcde2
KTX2Loader: Support ETC2, BCn, and ASTC 4x4 sRGB (#31155) * KTX2Loader: Support .setPath() * KTX2Loader: Add compressed formats * Examples: Organize KTX2 example in sections * update examples, fix missing formats * clean up * clean up * clean up * remove unused textures * remove ktx2 example from E2E :(
[ { "path": "examples/jsm/loaders/KTX2Loader.js", "patch": "@@ -1,60 +1,76 @@\n import {\n-\tCompressedTexture,\n \tCompressedArrayTexture,\n \tCompressedCubeTexture,\n+\tCompressedTexture,\n \tData3DTexture,\n \tDataTexture,\n \tFileLoader,\n \tFloatType,\n \tHalfFloatType,\n-\tNoColorSpace,\n \tLinearFilter...
2025-05-27T22:38:01
vuejs/vue
4378fc5124067c2b3a3517dd7f527edd9be2ad37
984927a1a98d10ad8af44f2accfb08d34d517610
fix: fix keyName checking for arrow keys in IE11 fix #7806
[ { "path": "src/compiler/codegen/events.js", "patch": "@@ -22,10 +22,11 @@ const keyNames: { [key: string]: string | Array<string> } = {\n tab: 'Tab',\n enter: 'Enter',\n space: ' ',\n- up: 'ArrowUp',\n- left: 'ArrowLeft',\n- right: 'ArrowRight',\n- down: 'ArrowDown',\n+ // #7806: IE11 uses key na...
2018-03-12T15:40:35
denoland/deno
82b506dbccc0be9f352da65796a9e2774b0d3b5f
8cabe269e9335ddec286ad59504936ad769422fc
fix(node/ext): make zlib write callback async to match node behavior (#32130) Deno's zlib `Zlib::write` was calling `processCallback` synchronously, while Node.js runs compression on the libuv threadpool and calls it asynchronously. This caused several issues: - destroy() couldn't propagate before subsequent write ca...
[ { "path": "ext/node/ops/zlib/mod.rs", "patch": "@@ -473,7 +473,7 @@ impl Zlib {\n #[smi] out_off: u32,\n #[smi] out_len: u32,\n ) -> Result<(), ZlibError> {\n- let (err_info, callback) = {\n+ let err_info = {\n let mut zlib = self.inner.borrow_mut();\n let zlib = zlib.as_mut().ok...
2026-02-12T01:02:19
golang/go
d1e7f49e3d1eb039d9d2aed3ba923459bd42aa7c
f6ebd91129e13ef7f495550a4fc8fa74769f6a2d
internal/trace: fix recorder.Write return value for header-only buffers Fix issue #77083 Change-Id: I9189d1e3a6efea8478224164e820f50c818abcd5 GitHub-Last-Rev: bb24cbda95f0b5b10aeae9a5ee8cbe215ba6d4eb GitHub-Pull-Request: golang/go#77092 Reviewed-on: https://go-review.googlesource.com/c/go/+/734300 Reviewed-by: Michae...
[ { "path": "src/runtime/trace/recorder.go", "patch": "@@ -39,7 +39,7 @@ func (w *recorder) Write(b []byte) (n int, err error) {\n \t\tw.headerReceived = true\n \t}\n \tif len(b) == n {\n-\t\treturn 0, nil\n+\t\treturn n, nil\n \t}\n \tba, nb, err := readBatch(b[n:]) // Every write from the runtime is guarant...
2026-01-06T22:47:07
mrdoob/three.js
ec03eb7a264c40a2a113e8925f6c16ff82f96f8d
c548fe9ea9fcc462a8eef5599769c968f6202400
ArcballControls: Fix state data for reset. (#31184)
[ { "path": "examples/jsm/controls/ArcballControls.js", "patch": "@@ -196,6 +196,7 @@ class ArcballControls extends Controls {\n \t\tthis._farPos0 = 0;\n \t\tthis._cameraMatrixState0 = new Matrix4();\n \t\tthis._gizmoMatrixState0 = new Matrix4();\n+\t\tthis._target0 = new Vector3();\n \n \t\t//pointers array\...
2025-05-27T08:21:19
vuejs/vue
984927a1a98d10ad8af44f2accfb08d34d517610
cf0b1b745f6b98f4e010f2e0b4c2351bb5a7b812
fix: fix regression on duplicate component init when using shared data objects fix #7805
[ { "path": "src/core/vdom/create-component.js", "patch": "@@ -32,7 +32,7 @@ import {\n renderRecyclableComponentTemplate\n } from 'weex/runtime/recycle-list/render-component-template'\n \n-// hooks to be invoked on component VNodes during patch\n+// inline hooks to be invoked on component VNodes during pat...
2018-03-12T14:50:27
denoland/deno
133d02e064a8e07cabab226d815d0b3ba684fc88
c6ed5f01c5b0361fd582a4b19f97aa5f2effad36
fix(node): unconditionally call `Module.prototype._compile` with the file content in `loadMaybeCjs` (#32131)
[ { "path": "ext/node/polyfills/01_require.js", "patch": "@@ -1080,9 +1080,8 @@ Module._extensions[\".mjs\"] = loadESMFromCJS;\n Module._extensions[\".wasm\"] = loadESMFromCJS;\n \n function loadMaybeCjs(module, filename) {\n- const isMaybeCjs = op_require_is_maybe_cjs(filename);\n- const format = isMaybeCj...
2026-02-11T21:08:15
golang/go
d1d0fc7a97539206e33f04bac935f6450597137c
9b2e3b9a02bd8872bdbf5c6086674fa6b4bc8ef9
os/exec: avoid atomic.Bool for Cmd.startCalled An atomic.Bool isn't necessary here since, unless otherwise specified, the methods of an object are not concurrency-safe w.r.t. each other. Using an atomic causes the copylocks vet check to warn about copying of Cmd, which is not wrong, because one shouldn't be copying op...
[ { "path": "src/os/exec/exec.go", "patch": "@@ -357,7 +357,9 @@ type Cmd struct {\n \tcachedLookExtensions struct{ in, out string }\n \n \t// startCalled records that Start was attempted, regardless of outcome.\n-\tstartCalled atomic.Bool\n+\t// (Until go.dev/issue/77075 is resolved, we use atomic.SwapInt32,...
2026-01-06T19:48:31
mrdoob/three.js
c548fe9ea9fcc462a8eef5599769c968f6202400
6260c7fac3b6cfe5358482923f0b25a9587ebdbd
TSL: Fix object-as-parameter checking for `Fn()` (#31176)
[ { "path": "src/nodes/tsl/TSLCore.js", "patch": "@@ -629,7 +629,9 @@ export const Fn = ( jsFunc, layout = null ) => {\n \n \t\tnodeObjects( params );\n \n-\t\tif ( params[ 0 ] && params[ 0 ].isNode ) {\n+\t\tconst isArrayAsParameter = params[ 0 ] && ( params[ 0 ].isNode || Object.getPrototypeOf( params[ 0 ] ...
2025-05-26T17:28:05
vuejs/vue
702000971c5a355c937607edb930b67311c78f5d
35dc8c2555da884bfb65451391887966bc411a98
chore: fix typo
[ { "path": "src/server/render.js", "patch": "@@ -191,7 +191,8 @@ function renderAsyncComponent (node, isRoot, context) {\n tag\n )\n if (resolvedNode) {\n- if (resolvedNode.componnetInstance) {\n+ if (resolvedNode.componentOptions) {\n+ // normal component\n renderCompo...
2018-03-12T13:27:50
golang/go
f8ee0f84753b22254d217bf28ce8ecca7db7025c
b094749bad125db5b89e48248bbb9c7dc1292a95
cmd/go/testdata/vcstest/git: use git commands that work on older git versions On older versions of git (such as 2.25.1), `git branch -M master` fails after `git init` - use `git checkout -b master` instead, which works across multiple versions. Fixes tests on the rather outdated linux/mips* builders. Change-Id: Id86...
[ { "path": "src/cmd/go/testdata/vcstest/git/legacytest.txt", "patch": "@@ -6,7 +6,7 @@ env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME\n env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL\n \n git init\n-git branch -M master\n+git checkout -b master\n \n at 2018-07-17T12:41:39-04:00\n cp x_cf92c7b.go x.go", "additions": ...
2025-12-12T08:03:05
denoland/deno
512d9196c5056933ff032a3c52efb4e8fae95d0d
652d4d2055e7ef2e9c41c9346051db5101aa01bc
fix(install): cleanup `node_modules` folder on install (#32058) This is only for `deno install/add/remove`. We don't do this for other commands because it could cause problems (ex. two deno subprocesses running at the same time with "lazy npm deps" or whatever it's called) and also it would add more startup time.
[ { "path": "Cargo.lock", "patch": "@@ -9528,9 +9528,9 @@ dependencies = [\n \n [[package]]\n name = \"sys_traits\"\n-version = \"0.1.22\"\n+version = \"0.1.24\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"4121e69c72108134f9daf82cf6580269f018f5d8fb8cd3063df17699fbb84cb1...
2026-02-11T20:08:25
mrdoob/three.js
796181063ab8061a39de3a706401102abdafb3f8
0fce901c76a9aa216444528c803b9e7e830eb818
Examples: Fix memory leak in SVG. (#31170)
[ { "path": "examples/webgl_loader_svg.html", "patch": "@@ -142,6 +142,10 @@\n \n \t\t\t\t//\n \n+\t\t\t\tif ( scene ) disposeScene( scene );\n+\n+\t\t\t\t//\n+\n \t\t\t\tscene = new THREE.Scene();\n \t\t\t\tscene.background = new THREE.Color( 0xb0b0b0 );\n \n@@ -250,6 +254,21 @@\n \n \t\t\t}\n \n+\t\t\tfunct...
2025-05-26T09:05:17
vuejs/vue
882e7199fd8eee039291c4b9f7f324dcf46f32fd
666cdbd71e15de01e4b4468cb5b52ec882cae159
fix(ssr): fix SSR for async functional components fix #7784
[ { "path": "src/server/render-context.js", "patch": "@@ -67,13 +67,18 @@ export class RenderContext {\n }\n switch (lastState.type) {\n case 'Element':\n+ case 'Fragment':\n const { children, total } = lastState\n const rendered = lastState.rendered++\n if (rendered...
2018-03-11T21:09:51
golang/go
b28808d838682b2911698fcb934813b02f39fa69
d64add4d60b69973e5cae62f07983f91435de58b
cmd/go/internal/modindex: fix obvious bug using failed type assertion adonovan pointed out this bug in the review of CL 733320 and this seems to be the cause of all those list_empty_importpath flakes. It makes sense that something nondeterministic would be tied up with the module index because the state of the cache c...
[ { "path": "src/cmd/go/internal/modindex/scan.go", "patch": "@@ -112,10 +112,10 @@ func parseErrorToString(err error) string {\n \t\treturn \"\"\n \t}\n \tvar p parseError\n-\tif e, ok := err.(scanner.ErrorList); ok {\n-\t\tp.ErrorList = &e\n+\tif errlist, ok := err.(scanner.ErrorList); ok {\n+\t\tp.ErrorLis...
2025-12-30T20:41:41
denoland/deno
652d4d2055e7ef2e9c41c9346051db5101aa01bc
d09571c95ed9e56fb870abc82bb876cbadf02ea3
fix(ext/web): prevent GC of AbortSignal.any() (#32118) The new exposed `AbortSignal.any()`, stores dependent signals via `WeakRef` in the source signal's `dependentSignals` set. When the dependent signal is created as a temporary (e.g. `AbortSignal.any([...]).addEventListener("abort", cb)`), there are no strong refere...
[ { "path": "ext/web/03_abort_signal.js", "patch": "@@ -79,6 +79,7 @@ const sourceSignals = Symbol(\"[[sourceSignals]]\");\n const dependentSignals = Symbol(\"[[dependentSignals]]\");\n const signal = Symbol(\"[[signal]]\");\n const timerId = Symbol(\"[[timerId]]\");\n+const activeDependents = Symbol(\"[[acti...
2026-02-11T15:17:41
vuejs/vue
71b4b25375fa4bcd929e1161c35cab133e4a7c23
af5453cd5e90461531f1711b5ecb6bd47136e7b0
fix: allow multiline expression in v-for fix #7792
[ { "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+(?:in|of)\\s+([^]*)/\n export const forIteratorRE = /,([^,\\...
2018-03-11T15:51:51
golang/go
fd45d70799853ef5980a559e206353574108d8da
df4e08ac65e94041367785783ec1482e8bed2397
all: fix some minor grammatical issues in the comments Change-Id: I0459f05e7f6abd9738813c65d993114e931720d5 Reviewed-on: https://go-review.googlesource.com/c/go/+/731000 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Ch...
[ { "path": "src/archive/tar/reader_test.go", "patch": "@@ -787,7 +787,7 @@ type readBadSeeker struct{ io.ReadSeeker }\n \n func (rbs *readBadSeeker) Seek(int64, int) (int64, error) { return 0, fmt.Errorf(\"illegal seek\") }\n \n-// TestReadTruncation test the ending condition on various truncated files and\n...
2025-12-18T02:36:50
denoland/deno
d09571c95ed9e56fb870abc82bb876cbadf02ea3
77c1c1920fb5236dc98748b56a55e7f3ce622a86
fix(ext/napi): don't mark accessor properties as read-only in napi_define_class (#32105) ## Summary - In `napi_define_class`, accessor properties (getter/setter) were incorrectly marked `READ_ONLY` when `napi_writable` was not set in the property attributes. Per the Node-API spec, `napi_writable` only applies to data...
[ { "path": "ext/napi/js_native_api.rs", "patch": "@@ -285,13 +285,6 @@ fn napi_define_class<'s>(\n let setter = p\n .setter\n .map(|s| create_function_template(scope, env_ptr, None, s, p.data));\n- if getter.is_some()\n- && setter.is_some()\n- && (p.attributes & napi_...
2026-02-11T07:38:42
vuejs/vue
84a9a9d61057f6f40a9ad2bee456b39ef0a8f001
387d2567ebec83db47d2049eec006a1ffc83451a
fix: do not traverse VNodes when regsitering dependencies fix #7786
[ { "path": "src/core/observer/traverse.js", "patch": "@@ -2,6 +2,7 @@\n \n import { _Set as Set, isObject } from '../util/index'\n import type { SimpleSet } from '../util/index'\n+import VNode from '../vdom/vnode'\n \n const seenObjects = new Set()\n \n@@ -18,7 +19,7 @@ export function traverse (val: any) {\...
2018-03-10T18:39:29
golang/go
df4e08ac65e94041367785783ec1482e8bed2397
cd668d744f77da06ca9565f41c63c3a5251469ee
test/codegen: fix a tab in comparisons.go to ensure pattern works Fix a pattern in test/codegen/comparisons.go to use whitespace instead of a tab. The test needs a whitespace to properly fail if the regalloc change from CL686655 would be missing (in that case we would have a spill immediately after call to memequal, w...
[ { "path": "test/codegen/comparisons.go", "patch": "@@ -660,13 +660,13 @@ func equalVarString8(a string) bool {\n \treturn a[:8] == b\n }\n \n-func equalVarStringNoSpill(a,b string) bool {\n+func equalVarStringNoSpill(a, b string) bool {\n \ts := string(\"ZZZZZZZZZ\")\n \t// arm64:\".*memequal\"\n \tmemeq1 :...
2025-12-06T13:43:55
denoland/deno
77c1c1920fb5236dc98748b56a55e7f3ce622a86
1f36bf720d0458285b6893339c9cbd300104e4cf
fix(ext/node): fix `test-worker-process-argv.js` test (#32074) Done with @claude
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -44,9 +44,11 @@ import {\n } from \"ext:deno_web/01_broadcast_channel.js\";\n import { untransferableSymbol } from \"ext:deno_node/internal_binding/util.ts\";\n import process from \"node:process\";\n+import { fileURLToPath } from \"node:url\";\...
2026-02-11T07:27:51
mrdoob/three.js
36ea6dbc7215d33a2e70eb1d7c437248871159bd
cacaad1e20a87b395a87dcea777dd9195e8e242b
WebGPUBackend: Fix `copyFramebufferToTexture`() generated mipmaps twice
[ { "path": "src/renderers/webgpu/WebGPUBackend.js", "patch": "@@ -2356,8 +2356,6 @@ class WebGPUBackend extends Backend {\n \t\t\t]\n \t\t);\n \n-\t\tif ( texture.generateMipmaps ) this.textureUtils.generateMipmaps( texture );\n-\n \t\tif ( renderContextData.currentPass ) {\n \n \t\t\tconst { descriptor } = ...
2025-05-25T16:37:30
vuejs/vue
81e1e47cabbd479e2a285f03120944f1efffe749
a2cd412876c68ff0fac8e70c82676684c6f82770
fix: respect type order when boolean casting multi-typed props fix #7485
[ { "path": "src/core/util/props.js", "patch": "@@ -27,12 +27,18 @@ export function validateProp (\n const prop = propOptions[key]\n const absent = !hasOwn(propsData, key)\n let value = propsData[key]\n- // handle boolean props\n- if (isType(Boolean, prop.type)) {\n+ // boolean casting\n+ const bool...
2018-03-09T19:46:00
golang/go
cd668d744f77da06ca9565f41c63c3a5251469ee
06eff0f7c3027a78088d45efdaec8ac3ed636481
cmd/compile: disable inlining for functions using runtime.deferrangefunc The rangefunc rewrite pass implements defer using deferrangefunc and deferproccat. The loop body is rewritten into a closure, it cannot be inlined due to defer call. But the outer function may still be inlined in certain scenarios (e.g., with PGO...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -516,6 +516,9 @@ opSwitch:\n \t\t\t\t\t\tbreak opSwitch\n \t\t\t\t\tcase \"panicrangestate\":\n \t\t\t\t\t\tcheap = true\n+\t\t\t\t\tcase \"deferrangefunc\":\n+\t\t\t\t\t\tv.reason = \"defer call in range func\"\n+\t\t\t\t\t\treturn true\n \t\...
2025-12-23T08:12:04
mrdoob/three.js
cacaad1e20a87b395a87dcea777dd9195e8e242b
87723dd4309fe589035df7d2e0988628b6b99962
WebGPUBackend: Fix `generateMipmaps` when used `copyFramebufferToTexture()` (#31163)
[ { "path": "src/renderers/webgpu/WebGPUBackend.js", "patch": "@@ -2394,6 +2394,12 @@ class WebGPUBackend extends Backend {\n \n \t\t}\n \n+\t\tif ( texture.generateMipmaps ) {\n+\n+\t\t\tthis.textureUtils.generateMipmaps( texture );\n+\n+\t\t}\n+\n \t}\n \n }", "additions": 6, "deletions": 0, "la...
2025-05-25T04:09:40
vuejs/vue
318f29fcdf3372ff57a09be6d1dc595d14c92e70
d7d9b002fd60d246b1ef65f71b55b45f46563b4d
fix(core): disable dependency collection in lifecycle hooks and data getter (#7596) This fixes the parent being updated more than necessary due to collecting child props as dependencies during its own update computation. fix #7573
[ { "path": "src/core/instance/lifecycle.js", "patch": "@@ -7,6 +7,7 @@ import { createEmptyVNode } from '../vdom/vnode'\n import { observerState } from '../observer/index'\n import { updateComponentListeners } from './events'\n import { resolveSlots } from './render-helpers/resolve-slots'\n+import { pushTarg...
2018-03-09T18:13:16
mrdoob/three.js
87723dd4309fe589035df7d2e0988628b6b99962
605fb3b39f8baa9821d94aa578c2233e5d64b072
TSL: Fix `mat2` boundary size (#31162)
[ { "path": "src/nodes/core/NodeUtils.js", "patch": "@@ -270,7 +270,7 @@ export function getByteBoundaryFromType( type ) {\n \tif ( /vec2/.test( type ) ) return 8;\n \tif ( /vec3/.test( type ) ) return 16;\n \tif ( /vec4/.test( type ) ) return 16;\n-\tif ( /mat2/.test( type ) ) return 16;\n+\tif ( /mat2/.test...
2025-05-25T03:31:59
golang/go
76dddce29302681bdddafd4cbc27db66802414dd
6ecdd2fc6e58c0cd2b788032a85f7845af10c922
simd/archsimd: remove redundant suffix of ExtendLo operations For methods like ExtendLo2ToInt64x2, the last "x2" is redundant, as it is already mentioned in "Lo2". Remove it, so it is just ExtendLo2ToInt64. Change-Id: I490afd818c40bb7a4ef15c249723895735bd6488 Reviewed-on: https://go-review.googlesource.com/c/go/+/733...
[ { "path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules", "patch": "@@ -376,26 +376,26 @@\n (ExpandUint64x2 x mask) => (VPEXPANDQMasked128 x (VPMOVVec64x2ToM <types.TypeMask> mask))\n (ExpandUint64x4 x mask) => (VPEXPANDQMasked256 x (VPMOVVec64x4ToM <types.TypeMask> mask))\n (ExpandUint64x8 x mask) => ...
2025-12-29T16:30:33
vuejs/vue
d7d9b002fd60d246b1ef65f71b55b45f46563b4d
6bc75cacb72c0cc7f3d1041b5d9ff447ac2f5f69
chore: fix typo (#7781)
[ { "path": "src/core/vdom/vnode.js", "patch": "@@ -26,7 +26,7 @@ export default class VNode {\n ssrContext: Object | void;\n fnContext: Component | void; // real context vm for functional nodes\n fnOptions: ?ComponentOptions; // for SSR caching\n- fnScopeId: ?string; // functioanl scope id support\n+ ...
2018-03-09T13:54:55
mrdoob/three.js
f714027c0c08999614c49c70bb5f7b377ec5ae1a
c9bb8004c6f28c94fa5077bcf2d7102a879ff3cf
Examples: Add webgpu_compute_particles_fluid (#31148) * begin work on webgpu_compute_particles_fluid * add mouse interaction * cleanup, add rounded box constraints, add ao, improve stability * removing `.setPBO()` * Update webgpu_compute_particles_fluid.html Fix formatting. ---------
[ { "path": "examples/files.json", "patch": "@@ -312,6 +312,7 @@\n \t\t\"webgpu_compute_cloth\",\n \t\t\"webgpu_compute_geometry\",\n \t\t\"webgpu_compute_particles\",\n+\t\t\"webgpu_compute_particles_fluid\",\n \t\t\"webgpu_compute_particles_rain\",\n \t\t\"webgpu_compute_particles_snow\",\n \t\t\"webgpu_com...
2025-05-23T18:54:58
vuejs/vue
6bc75cacb72c0cc7f3d1041b5d9ff447ac2f5f69
db584931e20f9ad4b423cfc14d587f9d0240a565
fix(v-on): return handler value when using modifiers (#7704)
[ { "path": "src/compiler/codegen/events.js", "patch": "@@ -132,9 +132,9 @@ function genHandler (\n code += genModifierCode\n }\n const handlerCode = isMethodPath\n- ? handler.value + '($event)'\n+ ? `return ${handler.value}($event)`\n : isFunctionExpression\n- ? `(${handl...
2018-03-08T22:09:53
golang/go
08369369e5a4b27d8f6d21ea571ea5027b9a2b46
ca8effbde150257847f90de220686786aa091f90
reflect: document Call/CallSlice panic when v is unexported field Fixes #74377 Change-Id: I250d67ef2a4bf4dac939be669eeaf1091523ac06 Reviewed-on: https://go-review.googlesource.com/c/go/+/690617 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Roland Shoemaker <rol...
[ { "path": "src/reflect/value.go", "patch": "@@ -362,6 +362,7 @@ func (v Value) CanSet() bool {\n // type of the function's corresponding input parameter.\n // If v is a variadic function, Call creates the variadic slice parameter\n // itself, copying in the corresponding values.\n+// It panics if the Value ...
2025-07-26T05:44:12
denoland/deno
61a034e3db89c648e337c7ebeabe095d2ff7dc8d
163e95d7d809fcd0e806086e997f4049576cd865
fix(repl): handle EOF gracefully in JSON REPL mode (#32108) Closes the JSON REPL cleanly when the IPC pipe is closed (e.g. ctrl+d / EOF) instead of printing `error: unexpected end of file` and exiting with code 1.
[ { "path": "cli/tools/repl/mod.rs", "patch": "@@ -310,15 +310,25 @@ async fn run_json(mut repl_session: ReplSession) -> Result<i32, AnyError> {\n \n loop {\n let mut line_fut = std::pin::pin!(async {\n- let len = receiver.read_u32_le().await?;\n- let mut buf = vec![0; len as _];\n+ let l...
2026-02-10T08:33:34