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
efcca9afd25e508f78c8714e93bac0a2cac4b844
d1e71ae2aa709cee66a34f0f521c9089b298f8cd
TSL: Ensure 4 byte alignment for `instancedArray()` and `attributeArray()` (#31146) * fix ensure 4 byte alignment * cleanup
[ { "path": "src/extras/DataUtils.js", "patch": "@@ -207,6 +207,23 @@ class DataUtils {\n \n \t}\n \n+\t/**\n+\t * Aligns a given byte length to the nearest 4-byte boundary.\n+\t *\n+\t * This function ensures that the returned byte length is a multiple of 4,\n+\t * which is often required for memory alignmen...
2025-05-22T05:24:17
vuejs/vue
db584931e20f9ad4b423cfc14d587f9d0240a565
550c3c0d14af5485bb7e507c504664a7136e9bf9
fix(v-model): handle trailing whitespaces in expression (#7737)
[ { "path": "src/compiler/directives/model.js", "patch": "@@ -15,8 +15,8 @@ export function genComponentModel (\n if (trim) {\n valueExpression =\n `(typeof ${baseValueExpression} === 'string'` +\n- `? ${baseValueExpression}.trim()` +\n- `: ${baseValueExpression})`\n+ `? ${baseV...
2018-03-08T22:01:38
golang/go
ca8effbde150257847f90de220686786aa091f90
0b06b68e21a3fbc75b3dd87c644da94828483a36
internal/coverage/decodemeta: correct wording in unknown version error Correct the wording in the error message returned by readFileHeader when encountering a meta-data file with an unsupported version. Change-Id: I49be1bb1509ccc64e8384103bd7f19382b536c26 GitHub-Last-Rev: 2ab8e05a21443c45635e42d788946bec2478ca99 GitH...
[ { "path": "src/internal/coverage/decodemeta/decodefile.go", "patch": "@@ -75,7 +75,7 @@ func (r *CoverageMetaFileReader) readFileHeader() error {\n \t// Vet the version. If this is a meta-data file from the future,\n \t// we won't be able to read it.\n \tif r.hdr.Version > coverage.MetaFileVersion {\n-\t\tr...
2025-12-24T17:39:35
denoland/deno
163e95d7d809fcd0e806086e997f4049576cd865
f88d88fc5458f383fa8b36e73d43b58e2707a571
fix(compile): use a temporary directory with a node_modules folder when compiling npm specifiers (#32084)
[ { "path": "cli/main.rs", "patch": "@@ -112,26 +112,28 @@ fn spawn_subcommand<F: Future<Output = T> + 'static, T: SubcommandOutput>(\n }\n \n async fn run_subcommand(\n- flags: Arc<Flags>,\n+ flags: Flags,\n unconfigured_runtime: Option<UnconfiguredRuntime>,\n roots: LibWorkerFactoryRoots,\n ) -> Resul...
2026-02-09T16:50:00
mrdoob/three.js
cd3aa0d2a453bd0e8091c0818778e550f6fe38dc
83bc6547e9628629f4e84e450a02077dd1f5032e
Examples: Add `webgpu_compute_cloth` (#31123) * Add webgpu_compute_cloth example * fix render calls * remove metalness * Add exception to puppeteer.js * Fix the cloth demo in WebGL2 Fallback * update normalView replacement approach * cleanup * update method ---------
[ { "path": "examples/files.json", "patch": "@@ -309,6 +309,7 @@\n \t\t\"webgpu_clipping\",\n \t\t\"webgpu_compute_audio\",\n \t\t\"webgpu_compute_birds\",\n+\t\t\"webgpu_compute_cloth\",\n \t\t\"webgpu_compute_geometry\",\n \t\t\"webgpu_compute_particles\",\n \t\t\"webgpu_compute_particles_rain\",", "add...
2025-05-18T15:38:44
vuejs/vue
550c3c0d14af5485bb7e507c504664a7136e9bf9
144bf5a99e2ebd644f80bc8ab61cd1bf0366961a
fix(model): fix array index binding for v-model checkbox (#7671) Closes #7670
[ { "path": "src/platforms/web/compiler/directives/model.js", "patch": "@@ -86,8 +86,8 @@ function genCheckboxModel (\n 'if(Array.isArray($$a)){' +\n `var $$v=${number ? '_n(' + valueBinding + ')' : valueBinding},` +\n '$$i=_i($$a,$$v);' +\n- `if($$el.checked){$$i<0&&(${value}=$$a.con...
2018-03-08T21:54:33
mrdoob/three.js
5223683d0e03b89e620b8ce1a1410549d702bcf4
b654763d3e1e96567b1c27cc118e8b3d96c92fdc
fix layer colorcorrection (#31124)
[ { "path": "src/renderers/common/XRManager.js", "patch": "@@ -637,6 +637,8 @@ class XRManager extends EventDispatcher {\n \t\t\t\tresolveStencilBuffer: false\n \t\t\t} );\n \n+\t\trenderTarget.autoAllocateDepthBuffer = true;\n+\n \t\tconst material = new MeshBasicMaterial( { color: 0xffffff, side: FrontSide ...
2025-05-18T08:36:30
golang/go
9cb3edbfe9eb68113453cdaa436db31d28577ab8
b3ed0627ce2476d438711e8fceafb39f3bd14b4e
regexp: standardize error message format in find_test.go This change updates the test error messages in find_test.go to follow the Go standard 'got, want' format. It also replaces 'expected/should be' terminology with the project's preferred style and improves the clarity of failure logs by using %q to quote string v...
[ { "path": "src/regexp/find_test.go", "patch": "@@ -159,23 +159,23 @@ func TestFind(t *testing.T) {\n \tfor _, test := range findTests {\n \t\tre := MustCompile(test.pat)\n \t\tif re.String() != test.pat {\n-\t\t\tt.Errorf(\"String() = `%s`; should be `%s`\", re.String(), test.pat)\n+\t\t\tt.Errorf(\"re.Stri...
2025-12-26T17:13:09
denoland/deno
f88d88fc5458f383fa8b36e73d43b58e2707a571
0a6b424b9ae713271afa1bf1b21fd1cfd3e55e59
fix(ext/node): serialize workerData before resolving worker filename (#32091) Fixes `parallel/test-worker-invalid-workerdata.js`
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -169,27 +169,10 @@ class NodeWorker extends EventEmitter {\n \"node:worker_threads support only 'file:' and 'data:' URLs\",\n );\n }\n- if (options?.eval) {\n- const code = typeof specifier === \"string\"\n- ? en...
2026-02-09T15:07:38
vuejs/vue
144bf5a99e2ebd644f80bc8ab61cd1bf0366961a
68b51f2620a8245398d7c95b8afd523d0917d10b
fix(types): prefer normal component over functional one (#7687)
[ { "path": "types/options.d.ts", "patch": "@@ -31,20 +31,21 @@ export type Accessors<T> = {\n [K in keyof T]: (() => T[K]) | ComputedOptions<T[K]>\n }\n \n+type DataDef<Data, Props, V> = Data | ((this: Readonly<Props> & V) => Data)\n /**\n * This type should be used when an array of strings is used for a ...
2018-03-08T18:55:52
mrdoob/three.js
b654763d3e1e96567b1c27cc118e8b3d96c92fdc
5bf53eec7836b1dc4ebaff478929e1970c258d92
USDZExporter: Fix Object indentation level (#31126)
[ { "path": "examples/jsm/exporters/USDZExporter.js", "patch": "@@ -315,16 +315,16 @@ function buildXform( object, geometry, material ) {\n \n \t}\n \n-\treturn `def Xform \"${ name }\" (\n-\tprepend references = @./geometries/Geometry_${ geometry.id }.usda@</Geometry>\n-\tprepend apiSchemas = [\"MaterialBind...
2025-05-18T08:35:19
golang/go
b3ed0627ce2476d438711e8fceafb39f3bd14b4e
3dcb48d2982e064ac8b5be01fe6847133fe56b88
tests: improve consistency and clarity of test diagnostics Minor updates to test diagnostics for consistency and readability: - Corrected an incorrect identifier - Standardized float formatting No behavior changes. Change-Id: I3d3633a7cc487209341ea92101f8c67848212080 GitHub-Last-Rev: b2822e846a91ce2563445f90f8d57686...
[ { "path": "test/cmplxdivide.go", "patch": "@@ -35,7 +35,7 @@ func main() {\n \t\t\t\tfmt.Printf(\"BUG\\n\")\n \t\t\t\tbad = true\n \t\t\t}\n-\t\t\tfmt.Printf(\"%v/%v: expected %v error; got %v\\n\", t.f, t.g, t.out, x)\n+\t\t\tfmt.Printf(\"%v/%v: got %v, want %v\\n\", t.f, t.g, x, t.out)\n \t\t}\n \t}\n \ti...
2025-12-29T19:39:04
denoland/deno
0a6b424b9ae713271afa1bf1b21fd1cfd3e55e59
131b706bcfadea4d50e6c87bed3fc165b9f02d84
fix(ext/node): `fs.writeFile` and `FileHandle.writeFile` compatibility (#32077)
[ { "path": "ext/node/polyfills/_fs/_fs_common.ts", "patch": "@@ -1,18 +1,12 @@\n // Copyright 2018-2026 the Deno authors. MIT license.\n \n import { primordials } from \"ext:core/mod.js\";\n-const {\n- StringPrototypeToLowerCase,\n- ArrayPrototypeIncludes,\n- ReflectApply,\n- Error,\n-} = primordials;\n+...
2026-02-09T14:49:03
vuejs/vue
68b51f2620a8245398d7c95b8afd523d0917d10b
6931a47c5c5664d4df2a99dd5c1b275ccef625bc
chore: fix comment grammar mistake (#7739)
[ { "path": "src/core/observer/index.js", "patch": "@@ -27,10 +27,10 @@ export const observerState = {\n }\n \n /**\n- * Observer class that are attached to each observed\n- * object. Once attached, the observer converts target\n+ * Observer class that is attached to each observed\n+ * object. Once attached, ...
2018-03-08T17:21:57
mrdoob/three.js
5bf53eec7836b1dc4ebaff478929e1970c258d92
f7ad64495252915dd4a2d88deb0f3bcc9e87c38b
NodeMaterialObserver: Fix missing intensity uniform updates. (#31120)
[ { "path": "examples/webgpu_materials_lightmap.html", "patch": "@@ -24,13 +24,17 @@\n \t\t\timport * as THREE from 'three';\n \t\t\timport { vec4, color, positionLocal, mix } from 'three/tsl';\n \n-\t\t\timport Stats from 'three/addons/libs/stats.module.js';\n+\t\t\timport { GUI } from 'three/addons/libs/lil...
2025-05-16T20:53:15
golang/go
f7b7e94b0a2798bab26e9906df823a0fe5bcddfd
e790d5967424b4230978f63d16ecc5033269dd02
test: clarify log message for surrogate UTF-8 check The current log message "does not error" is slightly ambiguous. This change clarifies the output. Change-Id: I5c2327b9fa3d3e28ce43ce1189f8b1b7663fe0d3 GitHub-Last-Rev: bb2b03fc909f0bae29ab540776ae1d28165a603a GitHub-Pull-Request: golang/go#76998 Reviewed-on: https:/...
[ { "path": "test/stringrange.go", "patch": "@@ -59,7 +59,7 @@ func main() {\n \n \tfor _, c := range \"a\\xed\\xa0\\x80a\" {\n \t\tif c != 'a' && c != utf8.RuneError {\n-\t\t\tfmt.Printf(\"surrogate UTF-8 does not error: %U\\n\", c)\n+\t\t\tfmt.Printf(\"surrogate UTF-8 does not produce an error: %U\\n\", c)\...
2025-12-26T14:39:48
denoland/deno
131b706bcfadea4d50e6c87bed3fc165b9f02d84
23b14d5d5b6ebb26ef21500dafc0adcbb53e3731
fix(ext/node): emit close on both paired MessagePorts (#32092) Ref https://nodejs.org/api/worker_threads.html#portclose Fixes `test-worker-message-channel.js`
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -20,6 +20,7 @@ import {\n MessagePortPrototype,\n MessagePortReceiveMessageOnPortSymbol,\n nodeWorkerThreadCloseCb,\n+ nodeWorkerThreadCloseCbInvoked,\n refMessagePort,\n serializeJsMessageData,\n unrefParentPort,\n@@ -67,6 +68,7 @@...
2026-02-09T14:31:33
vuejs/vue
6b8516b2dde52be643ee6855b45b253a17ed0461
2b0fc381fcc2888b05fbbdf314b8450d3f31d396
fix(types): fix wrong errorCaptured type (#7712)
[ { "path": "types/options.d.ts", "patch": "@@ -80,7 +80,7 @@ export interface ComponentOptions<\n updated?(): void;\n activated?(): void;\n deactivated?(): void;\n- errorCaptured?(): boolean | void;\n+ errorCaptured?(err: Error, vm: Vue, info: string): boolean | void;\n \n directives?: { [key: stri...
2018-03-08T17:05:03
golang/go
f4cec7917cc53c8c7ef2ea456b4bf0474c41189a
ca13fe02c48db993a34d441d87180cf665d5b288
cmd: fix unused errors reported by ineffassign Updates golang/go#35136 Change-Id: I36d26089d29933e363d9fa50f3174530b698450e Reviewed-on: https://go-review.googlesource.com/c/go/+/731040 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Florian Lehner <lehner.floria...
[ { "path": "src/cmd/internal/bootstrap_test/overlaydir_test.go", "patch": "@@ -43,6 +43,9 @@ func overlayDir(dstRoot, srcRoot string) error {\n \t\tdstPath := filepath.Join(dstRoot, suffix)\n \n \t\tinfo, err := entry.Info()\n+\t\tif err != nil {\n+\t\t\treturn err\n+\t\t}\n \t\tperm := info.Mode() & os.Mode...
2025-12-18T05:05:26
denoland/deno
23b14d5d5b6ebb26ef21500dafc0adcbb53e3731
c0857ab2ae6b1dfedeaf86b92792afc51c751468
fix(ext/webgpu): GPUQuene writeBuffer size given in elements of TA (#32031) Fixes https://github.com/denoland/deno/issues/31212
[ { "path": "ext/webgpu/queue.rs", "patch": "@@ -9,6 +9,7 @@ use deno_core::WebIDL;\n use deno_core::cppgc::Ref;\n use deno_core::futures::channel::oneshot;\n use deno_core::op2;\n+use deno_core::v8;\n use deno_error::JsErrorBox;\n \n use crate::Instance;\n@@ -128,19 +129,62 @@ impl GPUQueue {\n \n #[requir...
2026-02-09T14:06:41
mrdoob/three.js
f7ad64495252915dd4a2d88deb0f3bcc9e87c38b
64b50b0910427c1bbeae01888ddc5be896dae227
USDZExporter: Fix JSDoc to match default value (#31119)
[ { "path": "examples/jsm/exporters/USDZExporter.js", "patch": "@@ -827,7 +827,7 @@ function buildCamera( camera ) {\n *\n * @typedef {Object} USDZExporter~Options\n * @property {number} [maxTextureSize=1024] - The maximum texture size that is going to be exported.\n- * @property {boolean} [includeAnchorin...
2025-05-16T08:43:28
vuejs/vue
b2092dbff9ab0ccfa8e59ed3ca540cca0715c683
ec9152f67ac6b910012059df7f3a67e5517e205f
fix(types): make render option in functional components to optional (#7663)
[ { "path": "types/options.d.ts", "patch": "@@ -110,7 +110,7 @@ export interface FunctionalComponentOptions<Props = DefaultProps, PropDefs = Pro\n props?: PropDefs;\n inject?: InjectOptions;\n functional: boolean;\n- render(this: undefined, createElement: CreateElement, context: RenderContext<Props>): ...
2018-03-08T16:55:27
golang/go
7971fcdf537054608b2443a32f0fbb6dd4eba12a
0f620776d739f3de2c459c42d7ae2338ece35e67
test/codegen: tidy tests for bits Use Go idiomatic function names, use a common prefix, attempt to maintain some consistency, avoid naming functions based upon machine specific instructions and combine a duplicate test that likely exists due to this confusion. Change-Id: I996e9efd7497821edef94c1997d4a310d9d79a71 Revi...
[ { "path": "test/codegen/bits.go", "patch": "@@ -8,11 +8,11 @@ package codegen\n \n import \"math/bits\"\n \n-/************************************\n- * 64-bit instructions\n- ************************************/\n+//\n+// 64 bit instructions\n+//\n \n-func bitcheck64_constleft(a uint64) (n int) {\n+func bi...
2025-12-23T12:43:15
denoland/deno
c0857ab2ae6b1dfedeaf86b92792afc51c751468
29e64f0e19397664881c7658978fcbe0788a55c1
fix(ext/node): read from stdin when spawns node with no args (#32088) When child_process.spawn(process.execPath, []) is used (equivalent to running `node` with no args), the CLI arg translator produced `deno run -A` which fails because no script is specified. In Node.js, `node` with no args and piped stdin reads and ...
[ { "path": "ext/node/ops/node_cli_parser.rs", "patch": "@@ -72,10 +72,12 @@ pub fn op_node_translate_cli_args(\n #[serde] args: Vec<String>,\n script_in_npm_package: bool,\n ) -> Result<TranslatedArgs, CliParserError> {\n- // If no args, return early with run -A\n+ // If no args, return early with run ...
2026-02-09T12:32:27
mrdoob/three.js
a593f54a2ee458334ec0ef7ddb98e16656ef92bd
088df26e83d6dabb57c954d0f773f85ae3759678
WebGPURenderer: Fix runtime errors introduced by texture array refactor. (#31108) * fix runtime errors introduced by texture array refactor * add render pass for xr layers
[ { "path": "src/core/RenderTarget.js", "patch": "@@ -294,12 +294,7 @@ class RenderTarget extends EventDispatcher {\n \t\t\t\tthis.textures[ i ].image.width = width;\n \t\t\t\tthis.textures[ i ].image.height = height;\n \t\t\t\tthis.textures[ i ].image.depth = depth;\n-\n-\t\t\t\tif ( this.textures[ i ].image...
2025-05-15T08:54:41
vuejs/vue
db1b18ceec51761f1bcd6160c51e02b36b86a9c2
dc97a39c2f41ce57431d42d8b41811866f8e105c
fix(types): add missing `listeners` type on RenderContext (#7584)
[ { "path": "types/options.d.ts", "patch": "@@ -119,6 +119,7 @@ export interface RenderContext<Props=DefaultProps> {\n slots(): any;\n data: VNodeData;\n parent: Vue;\n+ listeners: { [key: string]: Function | Function[] };\n injections: any\n }\n ", "additions": 1, "deletions": 0, "langua...
2018-03-08T16:52:01
golang/go
0f620776d739f3de2c459c42d7ae2338ece35e67
a5fe8c07ae7ae96049f692c43008ad2f770924c7
simd/archsimd: fix "go generate" command Correct the generate command for test helpers. There is no longer a genfiles.go. Also correct the generated file headers to match the current generator layout. Change-Id: Ifb9a8c394477359020ff44290dbaabe7a2d59aca Reviewed-on: https://go-review.googlesource.com/c/go/+/732280 LU...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -1,4 +1,4 @@\n-// Code generated by x/arch/internal/simdgen using 'go run . -xedPath $XED_PATH -o godefs -goroot $GOROOT go.yaml types.yaml categories.yaml'; DO NOT EDIT.\n+// Code generated by 'simdgen -o godefs -goroot $GOROOT -xedPath $X...
2025-12-23T16:31:36
denoland/deno
29e64f0e19397664881c7658978fcbe0788a55c1
c996d21a962f334e0007eaac96964d2a51f4abf9
fix(ext/node): unref stdin on pause to allow process exit (#32086) When process.stdin is a pipe without a _handle (PIPE/TCP type), calling pause() did not unref the underlying Deno stdin resource. This caused pending reads to keep the event loop alive, preventing the process from exiting even after stdin was paused. ...
[ { "path": "ext/node/polyfills/_process/streams.mjs", "patch": "@@ -170,6 +170,7 @@ function _guessStdinType(fd) {\n }\n \n const _read = function (size) {\n+ io.stdin?.[io.REF]();\n const p = Buffer.alloc(size || 16 * 1024);\n PromisePrototypeThen(io.stdin?.read(p), (length) => {\n // deno-lint-ign...
2026-02-09T12:31:57
mrdoob/three.js
088df26e83d6dabb57c954d0f773f85ae3759678
7703433fca8aa2af2ffefe1c83dd17139298f2ce
LightsNode: Fix `castShadow` regression. (#31106) * LightsNode: Fix `castShadow` regression. * Update AnalyticLightNode.js
[ { "path": "src/nodes/lighting/AnalyticLightNode.js", "patch": "@@ -3,7 +3,6 @@ import { NodeUpdateType } from '../core/constants.js';\n import { uniform } from '../core/UniformNode.js';\n import { Color } from '../../math/Color.js';\n import { renderGroup } from '../core/UniformGroupNode.js';\n-import { has...
2025-05-15T08:39:09
vuejs/vue
dc97a39c2f41ce57431d42d8b41811866f8e105c
013d98092868a0c6721831e91616c64f99119b74
fix(codegen): support filters with () in older browsers (#7545) Fix #7544 Make sure no extra , is added at the end of the call so it also work with older browsers
[ { "path": "src/compiler/parser/filter-parser.js", "patch": "@@ -92,6 +92,6 @@ function wrapFilter (exp: string, filter: string): string {\n } else {\n const name = filter.slice(0, i)\n const args = filter.slice(i + 1)\n- return `_f(\"${name}\")(${exp},${args}`\n+ return `_f(\"${name}\")(${ex...
2018-03-08T16:24:09
golang/go
a23d1a4ebe5ca1f4964ad51a92d99edf5a95d530
866e461b9689d03dbbf2df19b86cace21270865b
bytes: improve consistency in split test messages This change improves consistency in the error messages used by TestSplit and TestSplitAfter in bytes_test.go Change-Id: Idc4e77a516037ce17cbb1bdffe3ac00bcde5de42 GitHub-Last-Rev: 8c4a35186851004251e8eee71c88ca1c822851c1 GitHub-Pull-Request: golang/go#76970 Reviewed-on...
[ { "path": "src/bytes/bytes_test.go", "patch": "@@ -961,7 +961,7 @@ func TestSplit(t *testing.T) {\n \t\tif tt.n < 0 {\n \t\t\tb := sliceOfString(Split([]byte(tt.s), []byte(tt.sep)))\n \t\t\tif !slices.Equal(result, b) {\n-\t\t\t\tt.Errorf(\"Split disagrees withSplitN(%q, %q, %d) = %v; want %v\", tt.s, tt.se...
2025-12-23T18:11:53
mrdoob/three.js
fa53b27bd141f4cedfae7c17e8da11e65844444b
abf99f5836815cf792e1bbb501947878f637bd2d
SkeletonHelper: fix typo in JSDoc (#31113)
[ { "path": "src/helpers/SkeletonHelper.js", "patch": "@@ -81,7 +81,7 @@ class SkeletonHelper extends LineSegments {\n \t\tthis.root = object;\n \n \t\t/**\n-\t\t * he list of bones that the helper visualizes.\n+\t\t * The list of bones that the helper visualizes.\n \t\t *\n \t\t * @type {Array<Bone>}\n \t\t ...
2025-05-15T08:29:19
vuejs/vue
013d98092868a0c6721831e91616c64f99119b74
733c1be7f5983cdd9e8089a8088b235ba21a4dee
fix(show): prevent transitions from starting on change truthy values (#7524) Closes #7523
[ { "path": "src/platforms/web/runtime/directives/show.js", "patch": "@@ -27,7 +27,7 @@ export default {\n \n update (el: any, { value, oldValue }: VNodeDirective, vnode: VNodeWithData) {\n /* istanbul ignore if */\n- if (value === oldValue) return\n+ if (!value === !oldValue) return\n vnode =...
2018-03-08T16:19:08
denoland/deno
c996d21a962f334e0007eaac96964d2a51f4abf9
db748af2053d8f348244042e7a47991da803a98f
fix(test): user input clearing test runner output (#32082) I noticed that we don't sanitise output in the test runner when printing it. This allows clearing the output from the test runner itself through "destructive" ansi codes. Ran into this on the Fresh code base. Before: <img width="586" height="235" alt="Screens...
[ { "path": "cli/tools/test/reporters/pretty.rs", "patch": "@@ -1,8 +1,11 @@\n // Copyright 2018-2026 the Deno authors. MIT license.\n \n+use std::io::IsTerminal;\n+\n use super::common;\n use super::fmt::to_relative_path_or_remote_url;\n use super::*;\n+use crate::util::console::filter_destructive_ansi;\n \n...
2026-02-09T11:58:41
golang/go
08dc8393d7d04f250b317cad5183415962ea56d5
43ebed88cc661e37bf01d5336b5de13fba6e51c7
time: skip test that will fail with GO111MODULE=off The test is designed to ensure that behavior introduced in Go 1.23 to garbage collect async timed channels is working correctly. If GO111MODULE=off is set (or GODEBUG=asynctimerchan=1) Go reverts to the Go 1.20 behavior of not garbage collecting these channels, which...
[ { "path": "src/time/export_test.go", "patch": "@@ -40,6 +40,7 @@ var (\n \tTzset = tzset\n \tTzsetName = tzsetName\n \tTzsetOffset = tzsetOffset\n+\tAsynctimerChan = asynctimerchan\n )\n \n func LoadFromEmbeddedTZData(zone string) (string, error) {", "add...
2025-12-23T06:07:32
mrdoob/three.js
abf99f5836815cf792e1bbb501947878f637bd2d
5f3c69c3086e8e05a314109098ec38fb78675fc0
Examples: Add `webgpu_reflection_blurred` (#31116) * fix clear texture and facing away if `bounce` is `false` * add `premult`, `unpremult` * cleanup * add `hashBlur` options { mask, premultipliedAlpha } * add docs and cleanup * add `webgpu_reflection_blurred` example * update webgpu_reflection_blurred * update ...
[ { "path": "examples/files.json", "patch": "@@ -414,6 +414,7 @@\n \t\t\"webgpu_postprocessing\",\n \t\t\"webgpu_procedural_texture\",\n \t\t\"webgpu_reflection\",\n+\t\t\"webgpu_reflection_blurred\",\n \t\t\"webgpu_refraction\",\n \t\t\"webgpu_rendertarget_2d-array_3d\",\n \t\t\"webgpu_rtt\",", "addition...
2025-05-15T08:10:02
vuejs/vue
733c1be7f5983cdd9e8089a8088b235ba21a4dee
e98d12d232af49b8e127375b6237013e01b77dda
fix(inject): use hasOwn instead of 'in' for provideKey check (#7460) fix #7284 * fix(Injection with Symbol polyfill): hasOwn instead of 'in' Symbol polyfill adds a setter on the Object prototype so the 'in' check evaluated to true on every object * test(Injected properties): Ensures prototype properties aren...
[ { "path": "src/core/instance/inject.js", "patch": "@@ -3,6 +3,7 @@\n import { warn } from '../util/index'\n import { hasSymbol } from 'core/util/env'\n import { defineReactive, observerState } from '../observer/index'\n+import { hasOwn } from 'shared/util'\n \n export function initProvide (vm: Component) {\...
2018-03-08T16:15:35
mrdoob/three.js
72a887f404d722c666ed4b2f9aeaf2c4edd131d3
54e36651073664b2d70a8315410d3337c8f9b450
TSL: Add `hashBlur()` options `{repeats,mask,premultipliedAlpha}` (#31115) * fix clear texture and facing away if `bounce` is `false` * add `premult`, `unpremult` * cleanup * add `hashBlur` options { mask, premultipliedAlpha } * add docs and cleanup
[ { "path": "examples/jsm/tsl/display/hashBlur.js", "patch": "@@ -1,4 +1,4 @@\n-import { float, Fn, vec2, uv, sin, rand, degrees, cos, Loop, vec4 } from 'three/tsl';\n+import { float, Fn, vec2, uv, sin, rand, degrees, cos, Loop, vec4, premult, unpremult } from 'three/tsl';\n \n /**\n * Applies a hash blur ef...
2025-05-15T06:51:49
denoland/deno
db748af2053d8f348244042e7a47991da803a98f
6c4ced6b360579e04be45deef958f7ec785d3c6b
fix(ext/node): add `threadName` to worker_threads module (#32072) ## Summary Adds the `threadName` export and `Worker.threadName` getter to the worker_threads module for Node.js compatibility. - `threadName` module export: returns the name of the current thread (empty string for main thread, worker's name inside a w...
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -237,6 +237,7 @@ class NodeWorker extends EventEmitter {\n workerData: options?.workerData,\n environmentData: environmentData,\n env: env_,\n+ name: this.#name,\n isEval: !!options?.eval,\n isWorkerThread: tru...
2026-02-09T10:48:25
golang/go
81283ad33985958c63e43ada6c168da49e62de0f
3e0e1667f694e989371e021dd8f269dae5a78e9f
runtime: fix nGsyscallNoP accounting CL 726964 has two bugs. One is fairly obvious. Where there was previous a decrement of nGsyscallNoP in exitsyscallTryGetP, it added a call to addGSyscallNoP. Oops. The other is more subtle. In needm we set isExtraInC to false very early. This will cause exitsyscall (via cgocallba...
[ { "path": "src/runtime/metrics_cgo_test.go", "patch": "@@ -12,7 +12,7 @@ import (\n \t\"testing\"\n )\n \n-func TestNotInGoMetricCallback(t *testing.T) {\n+func TestNotInGoMetric(t *testing.T) {\n \tswitch runtime.GOOS {\n \tcase \"windows\", \"plan9\":\n \t\tt.Skip(\"unsupported on Windows and Plan9\")\n@@...
2025-12-23T17:16:17
vuejs/vue
80e650cfdf9f8127405592d64ba5af1e6e13ce86
9b22d86ab315a3c6061a6a4776eab1964304f92e
chore: fix formatting
[ { "path": "test/unit/modules/compiler/compiler-options.spec.js", "patch": "@@ -9,17 +9,18 @@ describe('compile options', () => {\n <input type=\"text\" v-model=\"msg\" required max=\"8\" v-validate:field1.group1.group2>\n </div>\n `, {\n- directives: {\n- validate (el, dir)...
2018-03-08T14:52:27
mrdoob/three.js
54e36651073664b2d70a8315410d3337c8f9b450
02d84d2c807e8ae9d2872e31522b502c8c931cf4
TSL: Add `premult` and `unpremult` (#31114) * fix clear texture and facing away if `bounce` is `false` * add `premult`, `unpremult` * cleanup
[ { "path": "examples/jsm/tsl/display/GaussianBlurNode.js", "patch": "@@ -1,36 +1,10 @@\n import { RenderTarget, Vector2, NodeMaterial, RendererUtils, QuadMesh, TempNode, NodeUpdateType } from 'three/webgpu';\n-import { nodeObject, Fn, If, float, uv, uniform, convertToTexture, vec2, vec4, passTexture, mul } f...
2025-05-15T06:24:36
denoland/deno
6c4ced6b360579e04be45deef958f7ec785d3c6b
501c6592c9268291b2d6e5479a2f4498f12807f0
fix(ext/node): set exitCode/signalCode correctly for killed child processes (#32081) ## Summary - When a child process was killed by a signal (e.g., SIGTERM from a timeout), `exitCode` was unconditionally set to the raw OS exit code (e.g., 143 for SIGTERM) instead of `null` - In Node.js, `exitCode` and `signalCode` ar...
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -542,12 +542,15 @@ export class ChildProcess extends EventEmitter {\n \n (async () => {\n const status = await this.#process.status;\n- this.exitCode = status.code;\n+ this.signalCode = this.signalCode || stat...
2026-02-08T22:07:30
golang/go
3faf988f217f59630509c057f48549f59a02c25e
2485a0bc2cf87837d5e610eed584d8d7ab5831d0
errors: add a test verifying join does not flatten errors For #76961 Change-Id: Ib81f3202074bf83a5b204b32706445f051f837a8 Reviewed-on: https://go-review.googlesource.com/c/go/+/732360 Auto-Submit: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> ...
[ { "path": "src/errors/join_test.go", "patch": "@@ -25,6 +25,7 @@ func TestJoinReturnsNil(t *testing.T) {\n func TestJoin(t *testing.T) {\n \terr1 := errors.New(\"err1\")\n \terr2 := errors.New(\"err2\")\n+\tmerr := multiErr{errors.New(\"err3\")}\n \tfor _, test := range []struct {\n \t\terrs []error\n \t\tw...
2025-12-23T17:42:37
vuejs/vue
9b22d86ab315a3c6061a6a4776eab1964304f92e
3d431a5ddc62fac77a0d0466e13427dd7985901d
fix: install ssr helpers for functional context during SSR close #7443, ref nuxt/nuxt.js#2565
[ { "path": "flow/component.js", "patch": "@@ -16,6 +16,8 @@ declare interface Component {\n static directive: (id: string, def?: Function | Object) => Function | Object | void;\n static component: (id: string, def?: Class<Component> | Object) => Class<Component>;\n static filter: (id: string, def?: Fun...
2018-03-08T14:51:03
mrdoob/three.js
02d84d2c807e8ae9d2872e31522b502c8c931cf4
d51e356deb8267e5be2972eec501fdff3db3b7ee
TSL: Fix `reflector()` clear texture and stop update if `bounce` is `false` (#31110)
[ { "path": "src/nodes/utils/ReflectorNode.js", "patch": "@@ -292,6 +292,17 @@ class ReflectorBaseNode extends Node {\n \t\t */\n \t\tthis.forceUpdate = false;\n \n+\t\t/**\n+\t\t * Whether the reflector has been rendered or not.\n+\t\t *\n+\t\t * When the reflector is facing away from the camera,\n+\t\t * th...
2025-05-15T04:41:57
denoland/deno
501c6592c9268291b2d6e5479a2f4498f12807f0
1c4204cc254671da16e777b13a9ae2bdcf268bad
fix(ext/node): emit error event for worker with missing main module (#32062) Fixes `test-worker-esm-missing-main.js` test --------- Signed-off-by: Divy <dj.srivastava23@gmail.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "ext/node/ops/worker_threads.rs", "patch": "@@ -86,21 +86,17 @@ pub fn op_worker_threads_filename<TSys: ExtNodeSys + 'static>(\n let path = ensure_read_permission(state, Cow::Borrowed(path))\n .map_err(WorkerThreadsFilenameError::Permission)?;\n let sys = state.borrow::<TSys>();\n- ...
2026-02-07T15:07:13
golang/go
8254d66eab23bf334d619d888dc98630c1c5c5fd
1b3db48db7afc3fe17440af28cdeac67a0d048f1
cmd/asm/internal/asm: abort end to end test if assembly failed If errors are encountered during assembly, do not attempt to perform verification. In this case the output is unlikely to be correct and all verification fails, which means the real issue gets lost in the noise. Change-Id: I62c1bf09fa025b0df4c06f0bfa424fb...
[ { "path": "src/cmd/asm/internal/asm/endtoend_test.go", "patch": "@@ -199,6 +199,11 @@ Diff:\n \t}\n \tobj.Flushplist(ctxt, pList, nil)\n \n+\tif !ok {\n+\t\t// If we've encountered errors, the output is unlikely to be sane.\n+\t\tt.FailNow()\n+\t}\n+\n \tfor p := top; p != nil; p = p.Link {\n \t\tif p.As ==...
2025-12-21T03:39:20
mrdoob/three.js
ac8d338cc4de9c9529cbdb0d256eb0fc50a86a93
12d1cc51ad7d678ab530ef52fea20853fb8dee62
Fix classification (#31107)
[ { "path": "examples/files.json", "patch": "@@ -59,7 +59,6 @@\n \t\t\"webgl_lightprobe_cubecamera\",\n \t\t\"webgl_lights_hemisphere\",\n \t\t\"webgl_lights_physical\",\n-\t\t\"webgpu_lights_pointlights\",\n \t\t\"webgl_lights_spotlight\",\n \t\t\"webgl_lights_spotlights\",\n \t\t\"webgl_lights_rectarealight...
2025-05-14T18:31:39
vuejs/vue
1c0b4af5fd2f9e8173b8f4718018ee80a6313872
f7ca21eab1e0d661945aa6070fc988028c90966f
fix: skip v-model & value binding collision check with dynamic type binding (#7406) * fix #7404
[ { "path": "src/platforms/web/compiler/directives/model.js", "patch": "@@ -130,9 +130,11 @@ function genDefaultModel (\n const type = el.attrsMap.type\n \n // warn if v-bind:value conflicts with v-model\n+ // except for inputs with v-bind:type\n if (process.env.NODE_ENV !== 'production') {\n const...
2018-03-07T22:44:55
denoland/deno
84339a857ff49edbd4db464399fd832b7795ed1f
6d18b1bb18b26870be026bf0d3c552b70e8702dc
fix(ext/node): unref child_process stdio streams by default (#32071) With this fix, Pipe.unref() also propagates to the stream in `[kStreamBaseField]`, so esbuild's unref calls reach the StreamResource and the event loop can exit properly.
[ { "path": "ext/node/polyfills/internal_binding/pipe_wrap.ts", "patch": "@@ -416,12 +416,20 @@ export class Pipe extends ConnectionWrap {\n if (this.#listener) {\n this.#listener.ref();\n }\n+ const stream = this[kStreamBaseField];\n+ if (stream && typeof stream.ref === \"function\") {\n+...
2026-02-06T13:03:06
golang/go
1b3db48db7afc3fe17440af28cdeac67a0d048f1
b6b8b2fe6ef8ceb727c7a157750cdd4e61393489
Revert "errors: optimize errors.Join for single unwrappable errors" This reverts CL 635115. Reason for revert: The new behavior does not match the function documentation. Fixes #76961 Change-Id: If2450aa4efba28c7a12887a5b306c231a836e740 Reviewed-on: https://go-review.googlesource.com/c/go/+/731981 Reviewed-by: Dmit...
[ { "path": "src/errors/join.go", "patch": "@@ -27,16 +27,6 @@ func Join(errs ...error) error {\n \tif n == 0 {\n \t\treturn nil\n \t}\n-\tif n == 1 {\n-\t\tfor _, err := range errs {\n-\t\t\tif _, ok := err.(interface {\n-\t\t\t\tUnwrap() []error\n-\t\t\t}); ok {\n-\t\t\t\treturn err\n-\t\t\t}\n-\t\t}\n-\t}\...
2025-12-23T00:35:42
mrdoob/three.js
e23e4572a64649d3d451d18859d32c1b16cf78b0
0eed4b5ec3084fe29401dd83cf03e57e5fb2f129
ShadowNode: Fix VSM with point lights. (#31103)
[ { "path": "src/nodes/lighting/ShadowNode.js", "patch": "@@ -417,7 +417,7 @@ class ShadowNode extends ShadowBaseNode {\n \n \t\t// VSM\n \n-\t\tif ( shadowMapType === VSMShadowMap ) {\n+\t\tif ( shadowMapType === VSMShadowMap && light.isPointLight !== true ) {\n \n \t\t\tdepthTexture.compareFunction = null; ...
2025-05-14T15:18:13
vuejs/vue
f7ca21eab1e0d661945aa6070fc988028c90966f
3eb37acf98e2d9737de897ebe7bdb7e9576bcc21
fix: always install composition event listeners Previously the installation was skipped on Android because it was not needed for Chinese IME - however some IMEs such as Japanese exhibits the same behavior as on other browers. So it is safer to always enable the check. Closes #7367
[ { "path": "src/platforms/web/runtime/directives/model.js", "patch": "@@ -6,7 +6,7 @@\n import { isTextInputType } from 'web/util/element'\n import { looseEqual, looseIndexOf } from 'shared/util'\n import { mergeVNodeHook } from 'core/vdom/helpers/index'\n-import { warn, isAndroid, isIE9, isIE, isEdge } from...
2018-03-07T21:50:38
denoland/deno
22b7401bb499c5dae4cfe231301aafba34264a41
cc6422dc6605424a3d32a4c39071f5e894bc6578
fix: support loading `npm:` and `jsr:` specifiers in required ES modules (#31974)
[ { "path": "Cargo.lock", "patch": "@@ -1905,9 +1905,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.383.0\"\n+version = \"0.385.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"ee60c193b9e93726558e20dca14b36db7fccfebdf4479271e834e52709d101c...
2026-02-06T01:18:18
golang/go
b6b8b2fe6ef8ceb727c7a157750cdd4e61393489
2cd0371a0a61e0dec6034239b1a92a20968c8522
cmd/compile: handle propagating an out-of-range jump table index For an out-of-range jump table index, the constant facts should not be propagated to the destinations. Fixes #76950 Change-Id: Iff29814cb466c7aaa432cec212e5387665c45afc Reviewed-on: https://go-review.googlesource.com/c/go/+/731860 Auto-Submit: Cuong Ma...
[ { "path": "src/cmd/compile/internal/ssa/sccp.go", "patch": "@@ -507,6 +507,10 @@ func (t *worklist) propagate(block *Block) {\n \t\t\t\tbranchIdx = 1 - condLattice.val.AuxInt\n \t\t\t} else {\n \t\t\t\tbranchIdx = condLattice.val.AuxInt\n+\t\t\t\tif branchIdx < 0 || branchIdx >= int64(len(block.Succs)) {\n+...
2025-12-22T11:49:17
mrdoob/three.js
a4fb5e0cc23fa44b01ef7dfca819f8cbaa97f4f6
e04f92e17234ad17e1cdbc15c9d5c2a08fd5d929
Fix issues in WebXR caused by texture array work (#31099)
[ { "path": "src/renderers/common/Renderer.js", "patch": "@@ -2225,6 +2225,21 @@ class Renderer {\n \n \t}\n \n+\t/**\n+\t * Resets the renderer to the initial state before WebXR started.\n+\t *\n+\t */\n+\tXRResetState() {\n+\n+\t\tthis.backend.setXRTarget( null );\n+\t\tthis.setOutputRenderTarget( null );\n...
2025-05-14T08:09:05
vuejs/vue
3eb37acf98e2d9737de897ebe7bdb7e9576bcc21
aeebf0de906e7030282d59734ad30d69548cb521
fix: fix ssr env detection in weex (#7375)
[ { "path": "src/core/util/env.js", "patch": "@@ -38,7 +38,7 @@ let _isServer\n export const isServerRendering = () => {\n if (_isServer === undefined) {\n /* istanbul ignore if */\n- if (!inBrowser && typeof global !== 'undefined') {\n+ if (!inBrowser && !inWeex && typeof global !== 'undefined') ...
2018-03-07T20:37:14
golang/go
2cd0371a0a61e0dec6034239b1a92a20968c8522
91435be1531727f3220a8fdebb7e4894f39edb41
debug/pe: avoid panic in File.ImportedSymbols This change skips symbols where dt.OriginalFirstThunk is less than ds.VirtualAddress. The variable types are uint32, and (dt.OriginalFirstThunk-ds.VirtualAddress) becomes very large number when dt.OriginalFirstThunk < ds.VirtualAddress. Fixes #73548. Fixes #76721. Fixes ...
[ { "path": "src/debug/pe/file.go", "patch": "@@ -379,7 +379,11 @@ func (f *File) ImportedSymbols() ([]string, error) {\n \t}\n \n \t// seek to the virtual address specified in the import data directory\n-\td = d[idd.VirtualAddress-ds.VirtualAddress:]\n+\tseek := idd.VirtualAddress - ds.VirtualAddress\n+\tif ...
2025-06-24T05:18:28
denoland/deno
cc6422dc6605424a3d32a4c39071f5e894bc6578
cb0b84c4dedf600db7089018b28f4b43ec996a3e
fix(ext/node): fix 'test-worker-process-{argv,env}.js' tests (#32065) Done with @claude
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -49,16 +49,16 @@ const {\n encodeURIComponent,\n Error,\n FunctionPrototypeCall,\n- JSONParse,\n- JSONStringify,\n NumberIsFinite,\n ObjectHasOwn,\n+ ObjectKeys,\n ObjectPrototypeIsPrototypeOf,\n PromiseReject,\n PromiseResolv...
2026-02-05T23:56:54
mrdoob/three.js
e04f92e17234ad17e1cdbc15c9d5c2a08fd5d929
c35b17794d15382ca3b446c1214654a7a1d1cd35
Improved webgpu_compute_particles example (#31092) * Improved webgpu_compute_particles example. * Indentation fix. * Indentation fix. * Potential fix for code scanning alert no. 3517: Unused variable, import, function or class Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@us...
[ { "path": "examples/webgpu_compute_particles.html", "patch": "@@ -38,16 +38,17 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three';\n-\t\t\timport { Fn, uniform, texture, instancedArray, instanceIndex, float, hash, vec3, If } from 'three/tsl';\n+\t\t\timport { Fn, If, uniform, float,...
2025-05-14T07:25:06
vuejs/vue
7392dfcc1d5fd7b257df5ae134f9eb2f0cc0a51e
f7311c90b35da6ee680dacb0566a276bff907ccb
fix(observer): do not invoke getters on initial observation (#7302) fix #7280
[ { "path": "src/core/observer/index.js", "patch": "@@ -61,7 +61,7 @@ export class Observer {\n walk (obj: Object) {\n const keys = Object.keys(obj)\n for (let i = 0; i < keys.length; i++) {\n- defineReactive(obj, keys[i], obj[keys[i]])\n+ defineReactive(obj, keys[i])\n }\n }\n \n@@ ...
2018-03-07T19:58:12
golang/go
91435be1531727f3220a8fdebb7e4894f39edb41
c1efada1d20a0f4af6ffc2be17706713af11b3b0
runtime: revert entry point on freebsd/arm64 CL 706175 unified some arm64 entry points. However, the entry point for freebsd/arm64 is incorrect and builds now fail. This change reverts the freebsd/arm64 entry point and adds additional context for the future. Fixes #76958 Change-Id: Ib9e9b7844706f7b0ef54bd449411fefc8...
[ { "path": "src/runtime/rt0_freebsd_arm64.s", "patch": "@@ -4,9 +4,12 @@\n \n #include \"textflag.h\"\n \n-// On FreeBSD argc/argv are passed in R0, not RSP\n+// FreeBSD passes a pointer to the argument block in R0, not RSP,\n+// so _rt0_arm64 cannot be used.\n TEXT _rt0_arm64_freebsd(SB),NOSPLIT,$0\n-\tJMP\...
2025-12-22T21:25:08
denoland/deno
cb0b84c4dedf600db7089018b28f4b43ec996a3e
42f9bf7b2a7de796ae47c5eb33866ddb1d08f4d7
fix(ext/otel): use correct severity for `console.trace` (#32068) Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "ext/telemetry/lib.rs", "patch": "@@ -1277,7 +1277,8 @@ fn op_otel_log<'s>(\n ..=0 => Severity::Debug,\n 1 => Severity::Info,\n 2 => Severity::Warn,\n- 3.. => Severity::Error,\n+ 3 | 5.. => Severity::Error,\n+ 4 => Severity::Trace,\n };\n \n let mut log_record = LogRecord:...
2026-02-05T23:25:36
mrdoob/three.js
c35b17794d15382ca3b446c1214654a7a1d1cd35
7896d65833a6da9a9816b9cf2113024e87229ed7
TSL: Fix `.toVarying()` analyze for optimization (#31090) * fix cache of varying inside a conditional of fragment stage * add `isAssignNode` * improve optimization system for varyings * cleanup * second approach * Update StackNode.js
[ { "path": "src/nodes/core/AssignNode.js", "patch": "@@ -40,6 +40,15 @@ class AssignNode extends TempNode {\n \t\t */\n \t\tthis.sourceNode = sourceNode;\n \n+\t\t/**\n+\t\t * This flag can be used for type testing.\n+\t\t *\n+\t\t * @type {boolean}\n+\t\t * @readonly\n+\t\t * @default true\n+\t\t */\n+\t\tt...
2025-05-13T19:51:35
vuejs/vue
1c8e2e88ed2d74a02178217b318564b73a096c18
50b711af43708426e63b4ea529436b49fafc3f2e
fix: support KeyboardEvent.key in built-in keyboard event modifiers (#7121) fix #6900
[ { "path": "src/core/instance/render-helpers/check-keycodes.js", "patch": "@@ -3,6 +3,26 @@\n import config from 'core/config'\n import { hyphenate } from 'shared/util'\n \n+const keyNames: { [key: string]: string | Array<string> } = {\n+ esc: 'Escape',\n+ tab: 'Tab',\n+ enter: 'Enter',\n+ space: ' ',\n+...
2018-03-07T19:38:41
mrdoob/three.js
3589a128b43677707f6b82c7cabdeef653dcf222
f8959047ab89e53f911b065ca616370f86a80b72
ImageBitmapLoader: Make error handling more robust. (#31088) * ImageBitmapLoader: Make error handling more robust. * ImageBitmapLoader: Simplify code. * ImageBitmapLoader: Improve comment. * ImageBitmapLoader: Improve docs.
[ { "path": "src/loaders/ImageBitmapLoader.js", "patch": "@@ -1,6 +1,8 @@\n import { Cache } from './Cache.js';\n import { Loader } from './Loader.js';\n \n+const _errorMap = new WeakMap();\n+\n /**\n * A loader for loading images as an [ImageBitmap]{@link https://developer.mozilla.org/en-US/docs/Web/API/Ima...
2025-05-12T21:37:16
denoland/deno
42f9bf7b2a7de796ae47c5eb33866ddb1d08f4d7
5afc23e70d382be37938c4be69b422d7a8b7d1e1
fix(ext/node): validate execArgv and NODE_OPTIONS in worker_threads (#32066) Fixes `test-worker-execargv-invalid.js` test --------- Signed-off-by: Divy <dj.srivastava23@gmail.com>
[ { "path": "ext/node/polyfills/internal/errors.ts", "patch": "@@ -5,7 +5,6 @@\n * ERR_MANIFEST_ASSERT_INTEGRITY\n * ERR_QUICSESSION_VERSION_NEGOTIATION\n * ERR_REQUIRE_ESM\n- * ERR_WORKER_INVALID_EXEC_ARGV\n * ERR_WORKER_PATH\n * ERR_QUIC_ERROR\n * ERR_SYSTEM_ERROR //System error, shouldn't ever happen...
2026-02-05T18:09:03
vuejs/vue
50b711af43708426e63b4ea529436b49fafc3f2e
c57ffb768def2b8a409472eab2715579fc3f047d
fix: do not special case attributes for custom elements close #6864, close #6885
[ { "path": "src/platforms/web/runtime/modules/attrs.js", "patch": "@@ -59,7 +59,9 @@ function updateAttrs (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n }\n \n function setAttr (el: Element, key: string, value: any) {\n- if (isBooleanAttr(key)) {\n+ if (el.tagName.indexOf('-') > -1) {\n+ baseSetAtt...
2018-03-07T17:03:31
mrdoob/three.js
b9ba3b456f2d2b56a1a56199cc53aa2ab4283139
d011a5dfe5877ffc038319fc173d61d7085c2cf7
ShadowMaskModel: Fix usage with non shadow casting light. (#31081) * ShadowMaskModel: Fix usage with non shadow casting light. * Examples: Move Jolt demo to WebGPU. * E2E: Update screenshot.
[ { "path": "examples/physics_jolt_instancing.html", "patch": "@@ -15,7 +15,9 @@\n \t\t<script type=\"importmap\">\n \t\t\t{\n \t\t\t\t\"imports\": {\n-\t\t\t\t\t\"three\": \"../build/three.module.js\",\n+\t\t\t\t\t\"three\": \"../build/three.webgpu.js\",\n+\t\t\t\t\t\"three/webgpu\": \"../build/three.webgpu....
2025-05-10T14:24:35
golang/go
c1efada1d20a0f4af6ffc2be17706713af11b3b0
3d77a0b15ea2a6d2f7b3e2ba483f148d7c6ee174
simd/archsimd: correct documentation for pairwise operations For Add/SubPairs(Saturated?), the documented result element order is wrong. Corrected. Also, for 256-bit vectors, this is a grouped operation. So name it with the Grouped suffix to be clear. Change-Id: Idfd0975cb4a332b2e28c898613861205d26f75b0 Reviewed-on:...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -250,12 +250,12 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPADDQ256,\n \t\tssa.OpAMD64VPADDQ512,\n \t\tssa.OpAMD64VHADDPS128,\n-\t\tssa.OpAMD64VHADDPS256,\n \t\tssa.OpAMD64VHADDPD128,\n-\t\tssa.OpAMD64VH...
2025-12-22T19:52:57
denoland/deno
5afc23e70d382be37938c4be69b422d7a8b7d1e1
0baa1a65746e97dd030e291f65c3013b936b0462
fix(ext/node): emit error event for worker_threads terminal errors (#32052)
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -246,6 +246,16 @@ class NodeWorker extends EventEmitter {\n switch (type) {\n case 1: { // TerminalError\n this.#status = \"CLOSED\";\n+ if (this.listenerCount(\"error\") > 0) {\n+ const err = new Erro...
2026-02-05T12:09:45
vuejs/vue
c57ffb768def2b8a409472eab2715579fc3f047d
d6200d70261c4a8943190900e0721ede1c4a4f2b
chore: fix README.md vulnerable target="_blank" links (#7689) * README: add rel noopener and noreferrer Add to all "_blank" links rel noopener and noreferrer to prevent vulnerability * Update README.md
[ { "path": "README.md", "patch": "@@ -1,4 +1,4 @@\n-<p align=\"center\"><a href=\"https://vuejs.org\" target=\"_blank\"><img width=\"100\" src=\"https://vuejs.org/images/logo.png\" alt=\"Vue logo\"></a></p>\n+<p align=\"center\"><a href=\"https://vuejs.org\" target=\"_blank\" rel=\"noopener noreferrer\"><img...
2018-03-07T14:03:07
mrdoob/three.js
6bcfbf5a7e1541fa04e1df29aebe312df86c5aeb
11ff5590f96aa3b4a148810b64905319b3a42d8a
TSL: Fix auto-cache if using multiple conditionals (#31076) * fix flow * prevent re-update outputNode * Update ContextNode.js
[ { "path": "src/nodes/core/ContextNode.js", "patch": "@@ -80,8 +80,14 @@ class ContextNode extends Node {\n \n \tanalyze( builder ) {\n \n+\t\tconst previousContext = builder.getContext();\n+\n+\t\tbuilder.setContext( { ...builder.context, ...this.value } );\n+\n \t\tthis.node.build( builder );\n \n+\t\tbuil...
2025-05-10T03:33:23
golang/go
3d77a0b15ea2a6d2f7b3e2ba483f148d7c6ee174
7ecb1f36acab7b48d77991d58d456a34074a2d0e
os/exec: second call to Cmd.Start is always an error Previously it would return an error only if the first call resulted in process creation, contra the intent of the comment at exec.Cmd: // A Cmd cannot be reused after calling its [Cmd.Start], [Cmd.Run], // [Cmd.Output], or [Cmd.CombinedOutput] methods. Also, clear...
[ { "path": "src/os/exec/exec.go", "patch": "@@ -102,6 +102,7 @@ import (\n \t\"runtime\"\n \t\"strconv\"\n \t\"strings\"\n+\t\"sync/atomic\"\n \t\"syscall\"\n \t\"time\"\n )\n@@ -354,6 +355,9 @@ type Cmd struct {\n \t// the work of resolving the extension, so Start doesn't need to do it again.\n \t// This is...
2025-12-09T15:06:23
denoland/deno
0baa1a65746e97dd030e291f65c3013b936b0462
f7cb82042ad14573ceb1dac261607f7a5ff764c4
fix(ext/node): add `worker.cpuUsage([prev])` API (#32050)
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -4,6 +4,7 @@\n import { core, internals, primordials } from \"ext:core/mod.js\";\n import {\n op_create_worker,\n+ op_host_get_worker_cpu_usage,\n op_host_post_message,\n op_host_recv_ctrl,\n op_host_recv_message,\n@@ -25,6 +26,12 @@ im...
2026-02-05T12:09:13
vuejs/vue
d6200d70261c4a8943190900e0721ede1c4a4f2b
990374bacbaa75ae2535370583714f1032e768a1
feat(weex): update weex recycle-list compiler (#7610) + Support v-once + Generate @templateId on the root element of each component + Add binding-expression attribute on recycle-list + Fix the compile result of v-else-if and v-else
[ { "path": "src/platforms/weex/compiler/modules/recycle-list/component-root.js", "patch": "@@ -10,6 +10,7 @@ export function postTransformComponentRoot (\n if (!el.parent) {\n // component root\n addAttr(el, '@isComponentRoot', 'true')\n+ addAttr(el, '@templateId', '_uid')\n addAttr(el, '@co...
2018-03-05T03:59:21
mrdoob/three.js
0e317c0b91654f4f854aac43228ef5365ea96338
8c666732fa26cc5084e9e71997b1e172675caf18
Examples: Fix memory leak in FBX demo. (#31068)
[ { "path": "examples/webgl_loader_fbx.html", "patch": "@@ -128,6 +128,12 @@\n \n \t\t\t\t\t\tobject.traverse( function ( child ) {\n \n+\t\t\t\t\t\t\tif ( child.isSkinnedMesh ) {\n+\n+\t\t\t\t\t\t\t\tchild.skeleton.dispose();\n+\n+\t\t\t\t\t\t\t}\n+\n \t\t\t\t\t\t\tif ( child.material ) {\n \n \t\t\t\t\t\t\t...
2025-05-08T21:26:18
golang/go
7ecb1f36acab7b48d77991d58d456a34074a2d0e
70c22e0ad7d89504ab26fb157864f61a79cd4d47
simd/archsimd: add HasAVX2() guards to tests that need them This may not be complete, because some 256-bit float operations may be implemented with integer simd instead (in some cases there is no float op). (And some tests may have just been overlooked.) Fixes #76866. Change-Id: I90b1dfe039c322c484af916436fc6f6c50a...
[ { "path": "src/simd/archsimd/internal/simd_test/binary_test.go", "patch": "@@ -17,23 +17,29 @@ func TestAdd(t *testing.T) {\n \ttestFloat64x2Binary(t, archsimd.Float64x2.Add, addSlice[float64])\n \ttestFloat64x4Binary(t, archsimd.Float64x4.Add, addSlice[float64])\n \n-\ttestInt16x16Binary(t, archsimd.Int16x...
2025-12-19T20:50:57
denoland/deno
f7cb82042ad14573ceb1dac261607f7a5ff764c4
83d7b0c5ec1248d6af17bd73f061bce576e96e64
fix(ext/node): propagate worker exit code from process.exit() (#32061) Enables `test-worker-esm-exit.js` test --------- Signed-off-by: Divy <dj.srivastava23@gmail.com>
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -249,7 +249,7 @@ class NodeWorker extends EventEmitter {\n this.#status = \"CLOSED\";\n if (!this.#exited) {\n this.#exited = true;\n- this.emit(\"exit\", 0);\n+ this.emit(\"exit\", data ?? 0...
2026-02-05T09:05:17
mrdoob/three.js
3a21dee9cdb9d50e8ba783c9c59c9871a586ca5d
9b25b7c291d087271d3c6b21cf991326f9c06e73
PCDLoader: implement binary PCD data type parsing (#31061) * feat: implement binary PCD data type parsing * chore: code format * chore: add verification file * chore: add file select widget * fix: destroy gui
[ { "path": "examples/jsm/loaders/PCDLoader.js", "patch": "@@ -97,6 +97,71 @@ class PCDLoader extends Loader {\n \n \t}\n \n+\t/**\n+\t * Get dataview value by field type and size.\n+\t *\n+\t * @param {DataView} dataview - The DataView to read from.\n+\t * @param {number} offset - The offset to start reading...
2025-05-08T14:00:00
vuejs/vue
cd334070f3b82d3f5892c4999cc290ccd4f56fd8
1fa4a5e0fb2191e5b48b72710c92feaf51b3a979
fix: address potential regex backtrack
[ { "path": "src/compiler/codegen/events.js", "patch": "@@ -1,7 +1,7 @@\n /* @flow */\n \n-const fnExpRE = /^\\s*([\\w$_]+|\\([^)]*?\\))\\s*=>|^function\\s*\\(/\n-const simplePathRE = /^\\s*[A-Za-z_$][\\w$]*(?:\\.[A-Za-z_$][\\w$]*|\\['.*?']|\\[\".*?\"]|\\[\\d+]|\\[[A-Za-z_$][\\w$]*])*\\s*$/\n+const fnExpRE = ...
2018-02-21T18:11:11
golang/go
70c22e0ad7d89504ab26fb157864f61a79cd4d47
42cda7c1dfcc1ab109766f2016efe2331b3d0aab
simd/archsimd: delete DotProductQuadruple methods for now The DotProductQuadruple methods are currently defined on Int8 vectors. There are some problems for that. 1. We defined a DotProductQuadrupleSaturated method, but the dot product part does not need saturation, as it cannot overflow. It is the addition part of V...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -1324,12 +1324,6 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPERMI2Q256,\n \t\tssa.OpAMD64VPERMI2PD512,\n \t\tssa.OpAMD64VPERMI2Q512,\n-\t\tssa.OpAMD64VPDPBUSD128,\n-\t\tssa.OpAMD64VPDPBUSD256,\n-\t\tssa....
2025-12-19T22:05:03
denoland/deno
83d7b0c5ec1248d6af17bd73f061bce576e96e64
2a46e203ddbbff5840cbb14ee2a77893c05bdb24
fix(ext/node): Fix `.only` tests compatibilty (#32043) Only tests in Node.js are filtered from running instead of erroring out. This patch adds an option in Deno's test runner to skip santizing only tests.
[ { "path": "cli/js/40_test.js", "patch": "@@ -314,6 +314,7 @@ function testInner(\n testDesc.location.lineNumber,\n testDesc.location.columnNumber,\n registerTestIdRetBufU8,\n+ testDesc.sanitizeOnly ?? true,\n );\n testDesc.id = registerTestIdRetBuf[0];\n testDesc.origin = cachedOrigin;"...
2026-02-05T09:03:22
mrdoob/three.js
4b29a47474b994dd72e146c7e037ad94564e4003
6c29a50ffa870b6d6e9fcf410683679a37412810
TSL: Fix `getBitangent()`. (#31059) * TSL: Fix `getBitangent()`. * E2E: Update screenshot.
[ { "path": "src/nodes/accessors/Bitangent.js", "patch": "@@ -19,7 +19,7 @@ const getBitangent = /*@__PURE__*/ Fn( ( [ crossNormalTangent, varyingName ], bu\n \n \tif ( builder.material.flatShading !== true ) {\n \n-\t\tbitangent = varying( crossNormalTangent, varyingName );\n+\t\tbitangent = varying( bitange...
2025-05-08T00:08:04
vuejs/vue
e396eb3445904f11232f2355f03e8356173d0e31
4e6d6379ee35f986a842c95964615dc27afa832f
fix(ref): allow ref key to be zero (#7676) prevents missing elements when :ref value is "0" fix #7669
[ { "path": "src/core/vdom/modules/ref.js", "patch": "@@ -1,6 +1,6 @@\n /* @flow */\n \n-import { remove } from 'shared/util'\n+import { remove, isDef } from 'shared/util'\n \n export default {\n create (_: any, vnode: VNodeWithData) {\n@@ -19,7 +19,7 @@ export default {\n \n export function registerRef (vn...
2018-02-21T15:21:51
mrdoob/three.js
7ee2f21b7f369bc396d36504ae3294b5ae243129
c7d733e4587507812c294d9d53d5bf0cb1f12e22
WGSLNodeBuilder: Fix use of sampler for vertex stage (#31052)
[ { "path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js", "patch": "@@ -248,13 +248,9 @@ class WGSLNodeBuilder extends NodeBuilder {\n \n \t\t\t}\n \n-\t\t} else if ( this.isFilteredTexture( texture ) ) {\n-\n-\t\t\treturn this.generateFilteredTexture( texture, textureProperty, uvSnippet );\n-\n \t\t} else...
2025-05-05T20:56:57
denoland/deno
f84c762373bb2248924781e6a907847e54880fba
533c5058380616b1755f1b42fb3c9a4c37a52f1c
fix(ext/node): handle raw fd instead rid in isatty (#31912) Previously, isatty(fd) was calling core.isTerminal(fd) which expected a Deno resource ID, but Node.js APIs pass raw OS file descriptors. For fd 0, 1, 2 (stdin/stdout/stderr) this happened to work because rid === fd, but it would fail for higher fds.
[ { "path": "ext/node/lib.rs", "patch": "@@ -369,6 +369,7 @@ deno_core::extension!(deno_node,\n ops::require::op_require_package_imports_resolve<TInNpmPackageChecker, TNpmPackageFolderResolver, TSys>,\n ops::require::op_require_break_on_next_statement,\n ops::util::op_node_guess_handle_type,\n+ ...
2026-02-04T20:03:29
golang/go
42cda7c1dfcc1ab109766f2016efe2331b3d0aab
baa0ae3aaacfcef6ae04beba78a2d2b06776e423
simd/archsimd: add Grouped for 256- and 512-bit SaturateTo(U)Int16Concat, and fix type They operate on 128-bit groups, so name them Grouped to be clear, and consistent with other grouped operations. Reword the documentation, mention the grouping only for grouped versions. Also, SaturateToUnt16Concat(Grouped) is a sig...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -739,12 +739,12 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPRORVQMasked128,\n \t\tssa.OpAMD64VPRORVQMasked256,\n \t\tssa.OpAMD64VPRORVQMasked512,\n-\t\tssa.OpAMD64VPACKSSDWMasked128,\n \t\tssa.OpAMD64VPA...
2025-12-19T20:21:15
mrdoob/three.js
c7d733e4587507812c294d9d53d5bf0cb1f12e22
e367e2b6c97a43a31187a196ac6f220b271d2a79
Editor: Fix minor bugs. (#31050)
[ { "path": "editor/js/Menubar.View.js", "patch": "@@ -84,6 +84,16 @@ function MenubarView( editor ) {\n \n \toptions.add( option );\n \n+\t// new helpers are visible by default, the global visibility state\n+\t// of helpers is managed in this component. every time a helper is added,\n+\t// we request a viewp...
2025-05-05T15:12:22
denoland/deno
533c5058380616b1755f1b42fb3c9a4c37a52f1c
943b45b4bc5de51bfddf5e7a1eb9d68939d8bb23
feat(upgrade): add context to error messages for better troubleshooting (#32018) Fixes denoland/deno#31995 --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: bartlomieju <13602871+bartlomieju@users.noreply.github.com> Co-authored-by: Bartek Iwańczuk <biwancz...
[ { "path": "cli/tools/upgrade.rs", "patch": "@@ -484,7 +484,8 @@ pub async fn upgrade(\n let factory = CliFactory::from_flags(flags);\n let http_client_provider = factory.http_client_provider();\n let client = http_client_provider.get_or_create()?;\n- let current_exe_path = std::env::current_exe()?;\n...
2026-02-04T18:42:26
golang/go
25ed6c7f9b1985688cc9b09b2afdda54fc8932bd
4411edf9721cb4cdb0a5b81b9511ff7472581519
cmd/go/internal/doc: update pkgsite version Fixes #76827 For #36905 Change-Id: I3f855a75efc9272105f0a352c54600cd6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/731460 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Matloob <matloob@google....
[ { "path": "src/cmd/go/internal/doc/pkgsite.go", "patch": "@@ -71,7 +71,7 @@ func doPkgsite(urlPath, fragment string) error {\n \t\tenv = append(env, \"GOPROXY=\"+gomodcache+\",\"+goproxy)\n \t}\n \n-\tconst version = \"v0.0.0-20250714212547-01b046e81fe7\"\n+\tconst version = \"v0.0.0-20251215153041-4eb0af2c...
2025-12-19T18:00:33
mrdoob/three.js
e367e2b6c97a43a31187a196ac6f220b271d2a79
984ca4a6d02725051dcbaca277a0f4a21774abdd
FBXLoader: Use `getHandler()` for custom texture loaders. (#31032) * add capable of custom texture loader * replace factory to setXXXLoader * Update FBXLoader.js * fix indent * use manager.getHandler * fix loader variable name * fix url * use getHandler for all extensions * Update FBXLoader.js Clean up. ----...
[ { "path": "examples/jsm/loaders/FBXLoader.js", "patch": "@@ -437,21 +437,10 @@ class FBXTreeParser {\n \t// load a texture specified as a blob or data URI, or via an external URL using TextureLoader\n \tloadTexture( textureNode, images ) {\n \n-\t\tconst nonNativeExtensions = new Set( [ 'tga', 'tif', 'tiff'...
2025-05-05T08:23:07
vuejs/vue
2d168f1ba11d77cb2f2caa3356de86e99aba8da6
8053eb1fba4202274efed11044679e011a1e525b
test(types): update TS version and fix types test (#7597)
[ { "path": "package-lock.json", "patch": "@@ -9580,9 +9580,9 @@\n \"dev\": true\n },\n \"typescript\": {\n- \"version\": \"2.6.2\",\n- \"resolved\": \"https://registry.npmjs.org/typescript/-/typescript-2.6.2.tgz\",\n- \"integrity\": \"sha1-PFtv1/beCRQmkCfwPAlGdY92c6Q=\",\n+ ...
2018-02-03T19:02:25
denoland/deno
943b45b4bc5de51bfddf5e7a1eb9d68939d8bb23
846c34e119d4c8600ff41f42446e3633c7bd3a75
fix(ext/node): implement Symbol.asyncDispose for node Worker (#32051) Fixes parallel/test-worker-dispose.mjs test
[ { "path": "ext/node/polyfills/worker_threads.ts", "patch": "@@ -49,6 +49,7 @@ const {\n StringPrototypeStartsWith,\n StringPrototypeTrim,\n Symbol,\n+ SymbolAsyncDispose,\n SymbolFor,\n SymbolIterator,\n TypeError,\n@@ -339,6 +340,10 @@ class NodeWorker extends EventEmitter {\n return Promi...
2026-02-04T17:10:05
golang/go
d00e96d3aeccb11c373d125418316f0b019f4fb0
cfc024daebb84b1864f538d60659691ccf3acf30
internal/cpu: repair VNNI feature check This is a pain to test. Also the original test was never executed, because it was wrong. It looks like processors that might lack this features include Intel 11th generation and AMD Zen 4. These might or might not have bit 2 set in the 7th cpuid "leaf" (SM4) which is what the ...
[ { "path": "src/internal/cpu/cpu_x86.go", "patch": "@@ -219,7 +219,7 @@ func doinit() {\n \tif eax7 >= 1 {\n \t\teax71, _, _, _ := cpuid(7, 1)\n \t\tif X86.HasAVX {\n-\t\t\tX86.HasAVXVNNI = isSet(4, eax71)\n+\t\t\tX86.HasAVXVNNI = isSet(eax71, cpuid_AVXVNNI)\n \t\t}\n \t}\n ", "additions": 1, "deleti...
2025-12-18T18:18:14
mrdoob/three.js
984ca4a6d02725051dcbaca277a0f4a21774abdd
a8536871e792cc9a8329634d4345ea83a07bc235
Add FXAAPass class (#31044) * Added FXAAPass class * Updated JSDocs and indentation * Fixed typo in docs * Update FXAAPass.js * Update FXAAPass.js Fix code style. --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "examples/jsm/postprocessing/FXAAPass.js", "patch": "@@ -0,0 +1,40 @@\n+import { FXAAShader } from '../shaders/FXAAShader.js';\n+import { ShaderPass } from './ShaderPass.js';\n+\n+/**\n+ * A pass for applying FXAA.\n+ *\n+ * ```js\n+ * const fxaaPass = new FXAAPass();\n+ * composer.addPass( fxaaPa...
2025-05-05T07:47:55
vuejs/vue
ced00b1dec8326a653cce225133927fe5b4a3109
4746256e553b19d4e37f264bf0c050fe0823d876
fix: fix config.productionTip fix #7565
[ { "path": "src/platforms/web/runtime/index.js", "patch": "@@ -44,32 +44,34 @@ Vue.prototype.$mount = function (\n \n // devtools global hook\n /* istanbul ignore next */\n-Vue.nextTick(() => {\n- if (config.devtools) {\n- if (devtools) {\n- devtools.emit('init', Vue)\n- } else if (\n- proce...
2018-01-31T07:53:25
denoland/deno
4f776721191a91d58845ded6a4236ca84f04cf22
60814fb3995f096bab2713f052e740b2049ef41d
fix: `deno info` npm subpath import (#32056) Prevent circular redirects in the output of `deno info --json`
[ { "path": "cli/tools/info.rs", "patch": "@@ -345,8 +345,11 @@ fn add_npm_packages_to_json(\n .map(|path| format!(\"/{}\", path))\n .unwrap_or_default()\n );\n- redirects_to_add\n- .push((specifier.to_string(), new_specifier.clone()));\n+ ...
2026-02-04T16:53:27
golang/go
b8c4cc63e77bd457dffa6ec83a3ff65382dac94b
8564fede8929df5bbf9f10d35ff9d3620683ca80
runtime: keep track of secret allocation size During a naive attempt to test the new runtime/secret package, I tried wrapping the entire handshake in a secret.Do call. This lead to a panic because some of the allocator logic had been previously untested. freeSpecial takes p and size, but they can be misleading. They ...
[ { "path": "src/runtime/malloc.go", "patch": "@@ -1213,7 +1213,7 @@ func mallocgc(size uintptr, typ *_type, needzero bool) unsafe.Pointer {\n \tif goexperiment.RuntimeSecret && gp.secret > 0 {\n \t\t// Mark any object allocated while in secret mode as secret.\n \t\t// This ensures we zero it immediately when...
2025-12-16T13:50:57