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
golang/go
a8f99ef1f6e550d5d73e9c8f792337ad001bdcf4
96d6d38872a56eba26cd2e3dbd65bab138f9c599
go/printer: use architecture-independent math for alignment decisions The `exprList` function uses a geometric mean of expression sizes to decide whether to break column alignment in composite literals. Previously, this was computed using `math.Exp` and `math.Log`, which are not guaranteed to produce bit-for-bit ident...
[ { "path": "src/go/printer/math.go", "patch": "@@ -0,0 +1,28 @@\n+// Copyright 2026 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package printer\n+\n+import \"math\"\n+\n+// log2ish returns a crude approx...
2026-03-09T10:08:36
vuejs/vue
69a1bc909b342259b74b5f9c3c596ba9bded7207
6c86065307db74425cc0d6cf5b4aabf6da605c1f
eslint fixes
[ { "path": ".eslintrc.js", "patch": "@@ -22,6 +22,15 @@ module.exports = {\n WXEnvironment: true,\n },\n rules: {\n+ 'no-unused-vars': [\n+ 'error',\n+ // we are only using this rule to check for unused arguments since TS\n+ // catches unused variables but not args.\n+ { varsIg...
2021-04-06T16:21:58
mrdoob/three.js
c01ab58b75fbaecd6deb1869999faaa8fc9a162f
a0de70add6f2b72c748465a0fe1d771fe2f7de73
Fix index and attribute updates in BatchedMesh.prototype.optimize for proper rendering (#32185)
[ { "path": "src/objects/BatchedMesh.js", "patch": "@@ -925,6 +925,7 @@ class BatchedMesh extends Mesh {\n \n \t\t\t\t\tindex.array.copyWithin( nextIndexStart, indexStart, indexStart + reservedIndexCount );\n \t\t\t\t\tindex.addUpdateRange( nextIndexStart, reservedIndexCount );\n+\t\t\t\t\tindex.needsUpdate =...
2025-11-06T14:48:41
denoland/deno
ad32e930739ad61dfbe6ca4e2c7e56991dd94823
2989e306433c84551cf9f33886d9b4eb15d37d9a
fix(coverage): don't mark lines uncovered when zero-count range only partially overlaps (#32601) ## Summary Fixes #13781 — `finally` blocks (and `if` condition lines) were incorrectly marked as uncovered when all branches in `try`/`catch` had `return` statements. ## Root cause The coverage line count algorithm has ...
[ { "path": "cli/tools/coverage/mod.rs", "patch": "@@ -336,7 +336,11 @@ fn generate_coverage_report(\n }\n }\n \n- // We reset the count if any block with a zero count overlaps with the line range.\n+ // Reset the count if a zero-count range overlaps the line and reaches\n+ // at ...
2026-03-15T13:26:57
golang/go
d3651c588846e1147e5a72f71c133dc8288e1e13
97d643045888d1af2004410365a00bafe1713f47
runtime/poll: fix race condition in Window's SendFile The destination of SendFile is a socket, which doesn't support file offsets. There is no need to keep track of the file offset, and doing so causes a race between SendFile and Read. While here, make sure that SendFile tests do call poll.SendFile. Fixes #78015 Cq...
[ { "path": "src/internal/poll/sendfile_windows.go", "patch": "@@ -68,8 +68,8 @@ func SendFile(fd *FD, src uintptr, size int64) (written int64, err error, handle\n \t\t\tchunkSize = size\n \t\t}\n \n-\t\tfd.setOffset(startpos + written)\n \t\tn, err := fd.execIO('w', func(o *operation) (uint32, error) {\n+\t\...
2026-03-08T13:18:04
vuejs/vue
5f4763e5983ebd07b490361f382566257afd9cc4
0af78c57b3dbe6bf5296f87b7be542a475a26e12
fix keepalive to ts
[ { "path": "dist/vue.runtime.common.dev.js", "patch": "@@ -5,7 +5,6 @@\n */\n 'use strict';\n \n-/* @flow */\n var emptyObject = Object.freeze({});\n // These helpers produce better VM code in JS engines due to their\n // explicitness and function inlining.\n@@ -316,7 +315,6 @@ var LIFECYCLE_HOOKS = [\n ...
2021-04-06T16:12:14
mrdoob/three.js
ce5d63840326b99b08d269e8e45092773a4a3ec5
22c9a6dfac7a9f3569f30e041e432e404af9af7c
Fix furnace test energy loss for intermediate metalness values (#32190) * Fix furnace test energy loss for intermediate metalness values The furnace test was losing energy when metalness was between 0 and 1. This was due to incorrect application of the Fdez-Agüera multiscattering formula, which is designed for pure d...
[ { "path": "src/renderers/shaders/ShaderChunk/lights_fragment_begin.glsl.js", "patch": "@@ -41,7 +41,7 @@ vec3 geometryClearcoatNormal = vec3( 0.0 );\n \n \tif ( material.iridescence > 0.0 ) {\n \n-\t\tmaterial.iridescenceFresnel = evalIridescence( 1.0, material.iridescenceIOR, dotNVi, material.iridescenceTh...
2025-11-06T07:48:20
denoland/deno
2989e306433c84551cf9f33886d9b4eb15d37d9a
622a15e46b86db9b3dc9214377b1c6d986e43ebf
fix(ext/telemetry): add `log.iostream` attribute to console logs (#32723) ## Summary - Add `log.iostream` semantic convention attribute to OTel log records from console methods - `console.warn` / `console.error` → `log.iostream: "stderr"` - `console.log` / `console.info` / `console.debug` / `console.trace` → `log.ios...
[ { "path": "ext/telemetry/lib.rs", "patch": "@@ -1291,6 +1291,16 @@ fn op_otel_log<'s>(\n log_record.set_body(owned_string(scope, message).into());\n log_record.set_severity_number(severity);\n log_record.set_severity_text(severity.name());\n+\n+ // console.warn (level 2) and console.error (level 3) w...
2026-03-15T12:07:47
vuejs/vue
9c70fc0ec3ad78449e118dd3e33e0c8dbaabbb42
63f9077de4f2930eede3d46eb50f520ae0c1cfaa
fix unit tests
[ { "path": "package.json", "patch": "@@ -74,6 +74,8 @@\n \"@babel/plugin-transform-flow-strip-types\": \"^7.0.0\",\n \"@babel/preset-env\": \"^7.0.0\",\n \"@babel/register\": \"^7.0.0\",\n+ \"@types/jasmine\": \"^3.6.9\",\n+ \"@types/mocha\": \"^8.2.2\",\n \"@types/node\": \"^12.12.0\",...
2021-04-03T16:32:18
golang/go
97d643045888d1af2004410365a00bafe1713f47
45c6fb4b9bff9eaaaae000ff223452403b9def4e
cmd/compile: fix arm direct tail call CL 752560 accidentally niled out the target symbol. Re-initialize the target symbol field when doing a direct tail call. Fixes #78053 Change-Id: I007471587a38077b52daa134640d09c7b8b6becb Reviewed-on: https://go-review.googlesource.com/c/go/+/753840 Reviewed-by: Keith Randall <kh...
[ { "path": "src/cmd/internal/obj/arm/obj5.go", "patch": "@@ -367,6 +367,8 @@ func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \t\t\t\t\tp.From = obj.Addr{}\n \t\t\t\t\tif retSym != nil { // retjmp\n \t\t\t\t\t\tp.To.Type = obj.TYPE_BRANCH\n+\t\t\t\t\t\tp.To.Name = obj.NAME_EXTERN\...
2026-03-10T21:02:13
mrdoob/three.js
22c9a6dfac7a9f3569f30e041e432e404af9af7c
b72bc57ae5e32187877281a9d76fee5ccf5618e2
Update rollup.config.js Fix `configOnlyModule` usage.
[ { "path": "utils/build/rollup.config.js", "patch": "@@ -198,4 +198,4 @@ const builds = [\n \t}\n ];\n \n-export default ( args ) => args.configOnlyModule ? builds.slice( 0, 4 ) : builds;\n+export default ( args ) => args.configOnlyModule ? builds.slice( 0, 3 ) : builds;", "additions": 1, "deletions"...
2025-11-05T21:47:57
denoland/deno
622a15e46b86db9b3dc9214377b1c6d986e43ebf
408ddbe208d518eb7efa8478f9a4128efb3dc09b
fix(ext/otel): don't mark server spans as error for 4xx responses (#32722) ## Summary - Per [OTel HTTP semantic conventions](https://opentelemetry.io/docs/specs/semconv/http/http-spans/), server spans should only have ERROR status for 5xx responses. 4xx responses are client errors — the server handled the request cor...
[ { "path": "ext/fetch/26_fetch.js", "patch": "@@ -67,9 +67,9 @@ import {\n TRACING_ENABLED,\n } from \"ext:deno_telemetry/telemetry.ts\";\n import {\n+ updateSpanFromClientResponse,\n updateSpanFromError,\n updateSpanFromRequest,\n- updateSpanFromResponse,\n } from \"ext:deno_telemetry/util.ts\";\n \...
2026-03-15T12:07:05
mrdoob/three.js
b72bc57ae5e32187877281a9d76fee5ccf5618e2
1ac2c025203494498fbb2beef223e3fa1ee94a09
Inspector: Fix `Viewer` aspect ratio (#32194) * fix aspect ratio * Update webgpu_postprocessing_ssr.html
[ { "path": "examples/jsm/inspector/Inspector.js", "patch": "@@ -8,7 +8,29 @@ import { Viewer } from './tabs/Viewer.js';\n import { setText, splitPath, splitCamelCase } from './ui/utils.js';\n \n import { QuadMesh, NodeMaterial, CanvasTarget, setConsoleFunction, REVISION, NoToneMapping } from 'three/webgpu';\...
2025-11-05T19:23:49
golang/go
45c6fb4b9bff9eaaaae000ff223452403b9def4e
59b188cee2cdf522b621d1ee72c811fcd46e22b2
cmd/compile: unwrap OCONVIFACE in staticinit for OAS2 Static initialization only expected OCONVNOP wrappings. Unwrap OCONVIFACE too, since it occurs when multiple return values of an OAS2FUNC are implicitly converted to an interface. Fixes #78016 Change-Id: Ic3fd6151403aabfc087d3240c1fcfabe7108cc0e GitHub-Last-Rev: ...
[ { "path": "src/cmd/compile/internal/staticinit/sched.go", "patch": "@@ -114,7 +114,7 @@ func (s *Schedule) tryStaticInit(n ir.Node) bool {\n \t\t// \"var a, b = f()\" that needs type conversion, which is not static.\n \t\tn := n.(*ir.AssignListStmt)\n \t\tfor _, rhs := range n.Rhs {\n-\t\t\tfor rhs.Op() == ...
2026-03-08T11:12:17
denoland/deno
408ddbe208d518eb7efa8478f9a4128efb3dc09b
368c99d93c85642a64c1a315f20bce6ce9e95df2
fix(ext/node): allow IPv6 multicast addresses in UDP addMembership/dropMembership (#32739) The validation in `addMembership` and `dropMembership` was only checking for IPv4 addresses using `isValidIPv4Address()`, making the IPv6 code path unreachable: ```ts addMembership(multicastAddress: string, interfaceAddress?: s...
[ { "path": "ext/node/polyfills/internal_binding/udp_wrap.ts", "patch": "@@ -63,27 +63,30 @@ const AF_INET6 = 10;\n \n const UDP_DGRAM_MAXSIZE = 64 * 1024;\n \n-/** Validate that the multicast and optional interface addresses are parseable IPv4 addresses. */\n-function isValidIPv4Address(\n+/** Validate that ...
2026-03-15T08:56:30
vuejs/vue
65b683a5e1429a19d87c7aec9cce4093f1684336
af9fc2bcff31d5baa413039818a9b3e011deccaf
fix build
[ { "path": "package.json", "patch": "@@ -132,6 +132,7 @@\n \"rollup-plugin-flow-no-whitespace\": \"^1.0.0\",\n \"rollup-plugin-node-resolve\": \"^4.0.0\",\n \"rollup-plugin-replace\": \"^2.0.0\",\n+ \"rollup-plugin-typescript2\": \"^0.30.0\",\n \"selenium-server\": \"^2.53.1\",\n \"ser...
2021-04-03T15:36:50
mrdoob/three.js
b3486b2d6381a9e73f98cdab58821bed8230a429
2eefcd6db11dba2d55dd49a51e7c529b6c20ef28
Docs: Fix JSDoc of inspector. (#32192)
[ { "path": "src/renderers/common/Renderer.js", "patch": "@@ -996,11 +996,6 @@ class Renderer {\n \n \t//\n \n-\t/**\n-\t * Sets the inspector instance. The inspector can be any class that extends from `InspectorBase`.\n-\t *\n-\t * @param {InspectorBase} value - The new inspector.\n-\t */\n \tset inspector( ...
2025-11-05T12:59:23
golang/go
59b188cee2cdf522b621d1ee72c811fcd46e22b2
23fde5c48c9bacb0ec8f5e21cc72191c64364ce1
cmd/internal/obj/arm: set spadj in arm32 tailcall In the normal case spadj is not needed because ARET handles the frame pop and return in a single instruction. However, if the ARET is a tailcall then there will be a second instruction where the pcsp stack depth is incorrect. Fixes #78021 Change-Id: I20db57eee03945a3...
[ { "path": "src/cmd/internal/obj/arm/obj5.go", "patch": "@@ -387,12 +387,18 @@ func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \n \t\t\t// If there are instructions following\n \t\t\t// this ARET, they come from a branch\n-\t\t\t// with the same stackframe, so no spadj.\n+\t\t\t/...
2026-03-09T22:04:38
denoland/deno
368c99d93c85642a64c1a315f20bce6ce9e95df2
7cc24643bf450dca030af3ddbc65f2fbd9130060
fix(ext/node): fix AbortController signal handling in child_process s… (#32713) Two bugs in the abort listener for child_process.spawn(): 1. Hardcoded "SIGKILL" instead of using the killSignal option (default "SIGTERM"), causing wrong signal to be sent to child. 2. AbortError was created without passing signal.reaso...
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -512,10 +512,17 @@ export class ChildProcess extends EventEmitter {\n });\n \n if (signal) {\n+ const killSignal = options.killSignal ?? \"SIGTERM\";\n const onAbortListener = () => {\n try {\n- ...
2026-03-14T17:51:24
mrdoob/three.js
7d7f42087f1a3965e9c73386e3c0524973a0e524
697c49073223560d329a6802e7603304bbf2d34d
Update multiple-scenes.html Fix markup.
[ { "path": "manual/en/multiple-scenes.html", "patch": "@@ -622,7 +622,7 @@ <h2 id=\"adding-controls-to-each-element\">Adding Controls to each element</h2>\n <p></p>\n <p>One other advantage to this solution is you could potentially use\n <a href=\"https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCan...
2025-11-04T16:27:13
vuejs/vue
af5e05d87ecd218f73302a1b08dcaedd2b46814a
7e5dc6bd9ebc1620624191804d2ace43cae557a8
fix: give correct namespace in foreignObject (#11576) Fix #11575
[ { "path": "src/platforms/web/util/element.js", "patch": "@@ -26,7 +26,7 @@ export const isHTMLTag = makeMap(\n // contain child elements.\n export const isSVG = makeMap(\n 'svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,' +\n- 'foreignObject,g,glyph,image,line,marker,mask,missing-g...
2021-03-30T10:11:55
golang/go
23fde5c48c9bacb0ec8f5e21cc72191c64364ce1
2433a3f2d6463541269fcc65597f20f2d7613434
cmd/link: add -macos and -macsdk flags to set LC_BUILD_VERSION These are for debugging problems with the build versions in the load commands. We still want to set them correctly by default for most users, provided we can determine what that means. Fixes #58722. Change-Id: Iccab7044ac7b0c58e7e01258a5e374c4155528fc Re...
[ { "path": "src/cmd/link/internal/ld/elf.go", "patch": "@@ -878,7 +878,7 @@ func addbuildinfo(ctxt *Link) {\n \t\t}\n \n \t\tif ctxt.IsDarwin() {\n-\t\t\tbuildinfo = uuidFromGoBuildId(buildID)\n+\t\t\tbuildinfo = uuidFromHash(hash.Sum32([]byte(buildID)))\n \t\t\treturn\n \t\t}\n ", "additions": 1, "d...
2026-03-03T22:06:03
denoland/deno
7cc24643bf450dca030af3ddbc65f2fbd9130060
ea7f0790f91d389995d2db97bf953da58c2c2205
fix(ext/node): accept all TypedArrays in spawnSync input option (#32712) `normalizeInput` only accepted `Uint8Array` and `DataView`, rejecting other TypedArrays like `Int8Array`. Node.js accepts any TypedArray. Replaced the separate `instanceof Uint8Array` and `instanceof DataView` checks with a single `ArrayBuffer.i...
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -1584,10 +1584,7 @@ function normalizeInput(input: unknown) {\n if (typeof input === \"string\") {\n return Buffer.from(input);\n }\n- if (input instanceof Uint8Array) {\n- return input;\n- }\n- if (input instanceof DataVie...
2026-03-14T17:51:13
vuejs/vue
7e5dc6bd9ebc1620624191804d2ace43cae557a8
e0274e4320f68bb93bd7f90bb1ef701ccf9b6f2a
fix(ssr): inheritAttrs false adds attributes to html (#11706)
[ { "path": "src/platforms/web/server/modules/attrs.js", "patch": "@@ -25,6 +25,10 @@ export default function renderAttrs (node: VNodeWithData): string {\n if (isUndef(opts) || opts.Ctor.options.inheritAttrs !== false) {\n let parent = node.parent\n while (isDef(parent)) {\n+ // Stop fallthroug...
2021-03-30T09:49:40
golang/go
2433a3f2d6463541269fcc65597f20f2d7613434
bd5dc3a2fbde68835326d3b1d9fc480bcf6da086
net: actually re-check resolv.conf when no explicit nameservers detected Follow-up of CL 739620. I think it is wrong, since there is no way dc.servers == 0, since we always set it to defaultNS. Change-Id: Ibb76bfeb2b7974301d3515d90517d7766a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/741140 Reviewed-...
[ { "path": "src/net/dnsclient_unix.go", "patch": "@@ -366,7 +366,11 @@ type resolverConfig struct {\n var resolvConf resolverConfig\n \n func getSystemDNSConfig() *dnsConfig {\n-\tresolvConf.tryUpdate(\"/etc/resolv.conf\")\n+\treturn getSystemDNSConfigNamed(\"/etc/resolv.conf\")\n+}\n+\n+func getSystemDNSCon...
2026-02-02T18:31:31
mrdoob/three.js
fb578069cd53ee3cf5ef1fa2650c87e90f1171dc
e50123a039a2146845563066273b75186688930d
TSL: Add `texture3DLoad` and `texture3DLevel` (#32171) * Examples: Fix compute_texture_pingpong example * TSL: Add texture3DLoad and texture3DLevel
[ { "path": "src/nodes/accessors/Texture3DNode.js", "patch": "@@ -192,8 +192,33 @@ export default Texture3DNode;\n * @tsl\n * @function\n * @param {Data3DTexture} value - The 3D texture.\n- * @param {?Node<vec2|vec3>} [uvNode=null] - The uv node.\n+ * @param {?Node<vec3>} [uvNode=null] - The uv node.\n * ...
2025-11-04T02:15:54
denoland/deno
ea7f0790f91d389995d2db97bf953da58c2c2205
749270fd5d08f52f3015dd3ac8f3f66d1378cb42
fix(ext/node): enable 8 already-passing child_process compat tests (#32710) These tests already pass but were not enabled in the node compat config. Adding them to prevent regressions. Newly enabled: - test-child-process-exec-maxbuf.js - test-child-process-execsync-maxbuf.js - test-child-process-fork-url.mjs - test-c...
[ { "path": "tests/node_compat/config.jsonc", "patch": "@@ -210,6 +210,7 @@\n \"parallel/test-child-process-exec-env.js\": {},\n \"parallel/test-child-process-exec-error.js\": {},\n \"parallel/test-child-process-exec-kill-throws.js\": {},\n+ \"parallel/test-child-process-exec-maxbuf.js\": {},\n...
2026-03-14T17:50:53
vuejs/vue
e0274e4320f68bb93bd7f90bb1ef701ccf9b6f2a
987f322b8f419cc307f4294173f8792a706ed73f
fix(types): add types for Vue.util.warn function (#11964) See https://github.com/vuejs/vue/blob/v2.6.12/src/core/util/debug.js#L18-L26
[ { "path": "types/vue.d.ts", "patch": "@@ -121,6 +121,10 @@ export interface VueConstructor<V extends Vue = Vue> {\n \n observable<T>(obj: T): T;\n \n+ util: {\n+ warn(msg: string, vm?: InstanceType<VueConstructor>): void;\n+ };\n+\n config: VueConfiguration;\n version: string;\n }", "addition...
2021-03-30T09:46:53
golang/go
e22dc6c86685aef76a9bb22ff186d4cd5a822027
a95f60871f52f3701e596c07b0e7bf8a3b1619ed
context: modernize AfterFunc example using WaitGroup.Go The context.AfterFunc example currently uses the traditional sync.WaitGroup pattern with Add and Done. Update the example to use sync.WaitGroup.Go instead. Fixes #78018 Change-Id: I079a773a6ec1c65f26af2bd8092067843adb1cd1 GitHub-Last-Rev: 9e648ae4241ca0647d3a5...
[ { "path": "src/context/example_test.go", "patch": "@@ -161,11 +161,8 @@ func ExampleAfterFunc_cond() {\n \tcond := sync.NewCond(new(sync.Mutex))\n \n \tvar wg sync.WaitGroup\n-\tfor i := 0; i < 4; i++ {\n-\t\twg.Add(1)\n-\t\tgo func() {\n-\t\t\tdefer wg.Done()\n-\n+\tfor range 4 {\n+\t\twg.Go(func() {\n \t\...
2026-03-09T01:31:02
mrdoob/three.js
e50123a039a2146845563066273b75186688930d
21ee45044ea3ff3fcfa920cd044c0c8a9fa8b5c1
Inspector: Fix slider dimensions. (#32177)
[ { "path": "examples/jsm/inspector/ui/Values.js", "patch": "@@ -216,7 +216,7 @@ class ValueSlider extends Value {\n \n \t\tconst numberValue = new ValueNumber( { value, min, max, step } );\n \t\tthis.numberInput = numberValue.input;\n-\t\tthis.numberInput.style.width = '60px';\n+\t\tthis.numberInput.style.fl...
2025-11-04T02:15:05
denoland/deno
749270fd5d08f52f3015dd3ac8f3f66d1378cb42
b177ff637e5f1ee9258e366030541c2b1c17fd62
fix(ext/node): include prototype env vars in child_process spawn (#32699) The env key collection loop had `Object.hasOwn()` filtering despite the comment saying "Prototype values are intentionally included". This made `for...in` pointless since it only kept own properties. Node.js includes prototype-chain env vars wh...
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -1148,10 +1148,9 @@ export function normalizeSpawnArguments(\n \n let envKeys: string[] = [];\n // Prototype values are intentionally included.\n+ // deno-lint-ignore guard-for-in\n for (const key in env) {\n- if (Object.hasOwn...
2026-03-14T17:50:45
vuejs/vue
987f322b8f419cc307f4294173f8792a706ed73f
fb16d7bfa1e32c21a2f4b627fb8864d3c5c6b655
fix: pause dep collection during immediate watcher invocation (#11943) Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com>
[ { "path": "src/core/instance/state.js", "patch": "@@ -355,11 +355,13 @@ export function stateMixin (Vue: Class<Component>) {\n options.user = true\n const watcher = new Watcher(vm, expOrFn, cb, options)\n if (options.immediate) {\n+ pushTarget()\n try {\n cb.call(vm, watcher.v...
2021-03-30T09:46:12
golang/go
a95f60871f52f3701e596c07b0e7bf8a3b1619ed
3694f3369276d072d3eccd03b1855b18d3ecee18
cmd/compile: fix mips64 CALLtailinter argument count It should be 2, not 1. Fixes #78013 Change-Id: If1c48c84c324a3fd50e9f4b43cca2ea62a995dc5 Reviewed-on: https://go-review.googlesource.com/c/go/+/752740 Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Mark Freeman <markfreeman@google.com> Auto-Submit: Keith...
[ { "path": "src/cmd/compile/internal/ssa/_gen/MIPS64Ops.go", "patch": "@@ -275,7 +275,7 @@ func init() {\n \t\t// function calls\n \t\t{name: \"CALLstatic\", argLength: 1, reg: regInfo{clobbers: callerSave}, aux: \"CallOff\", clobberFlags: true, call: true}, // c...
2026-03-08T04:17:39
mrdoob/three.js
3507b2b86242079ed5efb276c46dd3e3811689bc
aa9532172142ba7d3d5f86a5846e1085343724a5
Examples: Fix chromatic aberration type usage of caustics example (#32169)
[ { "path": "examples/webgpu_caustics.html", "patch": "@@ -122,9 +122,9 @@\n \t\t\t\t\tconst chromaticAberrationOffset = normalView.z.pow( - .9 ).mul( .004 );\n \n \t\t\t\t\tconst causticProjection = vec3(\n-\t\t\t\t\t\ttexture( causticMap, textureUV.add( vec2( chromaticAberrationOffset.x.negate(), 0 ) ) ).r,...
2025-11-02T03:05:09
denoland/deno
b177ff637e5f1ee9258e366030541c2b1c17fd62
f00f798dc85ffd53802e5d127dfe9bb04ac1554e
fix(ext/node): fix perm checks in TCPWrap (#32721)
[ { "path": "ext/node/ops/libuv_stream.rs", "patch": "@@ -20,6 +20,7 @@ use deno_core::uv_compat::UvStream;\n use deno_core::uv_compat::UvTcp;\n use deno_core::uv_compat::UvWrite;\n use deno_core::v8;\n+use deno_permissions::PermissionsContainer;\n use socket2::SockAddr as Socket2SockAddr;\n \n use super::han...
2026-03-14T16:46:47
vuejs/vue
fb16d7bfa1e32c21a2f4b627fb8864d3c5c6b655
fa1f81e91062e9de6161708209cd7354733aa354
fix(vdom): avoid executing root level script tags (#11487) fix #11483
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -45,7 +45,8 @@ export function generate (\n options: CompilerOptions\n ): CodegenResult {\n const state = new CodegenState(options)\n- const code = ast ? genElement(ast, state) : '_c(\"div\")'\n+ // fix #11483, Root level <script> tags should not...
2021-03-30T09:43:34
mrdoob/three.js
42fe8c567e54d492b903b09c52d58cd89a451efe
b3b830129671a7f763ea59e6df85e9de96451f8b
Docs: Fix ShadowNode JSDoc. (#32166)
[ { "path": "src/nodes/lighting/ShadowNode.js", "patch": "@@ -36,16 +36,7 @@ const _shadowRenderObjectKeys = [];\n * @param {LightShadow} shadow - The light shadow object containing shadow properties.\n * @param {number} shadowType - The type of shadow map (e.g., BasicShadowMap).\n * @param {boolean} useVe...
2025-11-01T10:01:44
golang/go
3694f3369276d072d3eccd03b1855b18d3ecee18
38ac6577cb8cf1ad6cb86cc9a0b6a76276932a79
runtime: GODEBUG=tracebacklabels=1 for 1.27+ https://go.dev/cl/742580 updated the goroutine label format in tracebacks to only quote the values under some circumstances, and use a more broadly acceptable format. Flip the GODEBUG=tracebacklabels default for go 1.27+ modules. Notably, tracebacklabels is marked as Opaqu...
[ { "path": "doc/godebug.md", "patch": "@@ -167,6 +167,11 @@ escaped. Setting `htmlmetacontentescape=0` disables this behavior. To avoid\n content injection attacks, this setting and default was backported to Go 1.25.8\n and Go 1.26.1.\n \n+Go 1.27 changes the default for `tracebacklabels` (added in [Go 1.26]...
2026-03-04T21:34:24
denoland/deno
f00f798dc85ffd53802e5d127dfe9bb04ac1554e
2c3b295e2e78c095d1cda9761a8510af8940cfab
fix(runtime): use XML-valid entity in flamegraph SVG (#32716) - Replace `&nbsp;` with `&#160;` in the CPU flamegraph SVG template - `&nbsp;` is an HTML entity not recognized by XML parsers, causing `XML Parsing Error: undefined entity` when opening the SVG standalone Fixes #32708 Co-authored-by: Claude Opus 4.6 (1M ...
[ { "path": "runtime/cpu_profiler/flamegraph.rs", "patch": "@@ -153,10 +153,10 @@ pub(crate) fn generate_flamegraph_svg(\n ]]></script>\n <rect x=\"0\" y=\"0\" width=\"100%\" height=\"100%\" fill=\"url(#background)\"/>\n <text id=\"title\" x=\"50%\" y=\"24\" text-anchor=\"middle\" style=\"font-size:17px\">CPU...
2026-03-14T14:30:42
vuejs/vue
fa1f81e91062e9de6161708209cd7354733aa354
c42b7066cae7947e9fd877e495aeb38623c2354d
fix(props): support BigInt in props type validation (#11191)
[ { "path": "src/core/util/props.js", "patch": "@@ -147,7 +147,7 @@ function assertProp (\n }\n }\n \n-const simpleCheckRE = /^(String|Number|Boolean|Function|Symbol)$/\n+const simpleCheckRE = /^(String|Number|Boolean|Function|Symbol|BigInt)$/\n \n function assertType (value: any, type: Function, vm: ?Compo...
2021-03-30T09:41:10
golang/go
38ac6577cb8cf1ad6cb86cc9a0b6a76276932a79
bcc369284d5ed042e1155ac11ccf15ea2990a64e
cmd/compile: forward small Load through Move to avoid redundant copies Fixes #77720 Add a generic SSA rewrite that forwards `Load` from a `Move` destination back to the `Move` source when it is provably safe, so field reads like `s.h.Value().typ` don’t force a full struct copy. - Add `Load <- Move` rewrite in `gener...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -797,6 +797,12 @@\n \t&& disjoint(p5, t5.Size(), p4, t4.Size())\n \t=> x\n \n+// Load from a region just copied by Move can read directly from the source.\n+(Load <t1> op:(OffPtr [o1] p1) move:(Move [n] p2 src mem))\n+\t&& o1 >= 0 && ...
2026-02-23T20:20:20
denoland/deno
2c3b295e2e78c095d1cda9761a8510af8940cfab
7ab15ad5d32cc5cd31d5dd579eec2ae54b5cd2fe
fix(ext/node): support encrypted PEM export and deprecated hash option in crypto keygen (#32703) ## Summary - Fix `generateKeyPair` for `rsa-pss` to fall back to deprecated `hash` option when `hashAlgorithm` is not provided, matching Node.js behavior - Implement encrypted PEM private key export with legacy OpenSSL fo...
[ { "path": "ext/node/polyfills/internal/crypto/keygen.ts", "patch": "@@ -1093,15 +1093,15 @@ function createJob(mode, type, options) {\n return op_node_generate_rsa_pss_key(\n modulusLength,\n publicExponent,\n- hashAlgorithm,\n+ hashAlgorithm ?? hash,\n ...
2026-03-14T13:55:41
vuejs/vue
c42b7066cae7947e9fd877e495aeb38623c2354d
69401311f4bf55e58550a2134c33ceb8ae1f180e
fix(compiler): Allow BigInt usage in templates (#11152)
[ { "path": "src/core/instance/proxy.js", "patch": "@@ -9,7 +9,7 @@ if (process.env.NODE_ENV !== 'production') {\n const allowedGlobals = makeMap(\n 'Infinity,undefined,NaN,isFinite,isNaN,' +\n 'parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,' +\n- 'Math,Number,Date...
2021-03-30T09:40:44
mrdoob/three.js
836ceeb5b361046ad0ff3560ed0a740e419943b1
3c2dc9dfa337cc4a3d358d558433a97642fa5bf2
Docs: Fix external links (#32161) * Docs: Fix external links. * Removed "hardcoded" target="_blank"s. * Updated docs.
[ { "path": "docs/pages/AMFLoader.html", "patch": "@@ -24,7 +24,7 @@ <h2>Code Example</h2>\n \t\t\t</header>\n \t\t\t<article>\n \t\t\t\t<h2 class=\"subsection-title\">Import</h2>\n-\t\t\t\t<p><span translate=\"no\">AMFLoader</span> is an addon, and must be imported explicitly, see <a href=\"https://threejs.o...
2025-11-01T00:06:36
golang/go
703cc8abeca5ff4f3da1df6766c6abf43462257b
8da2be3cd01a27830f7b2209f30850b1e1c83f00
io/fs: document when ErrClosed should be returned Pull ErrClosed out of the grouped var declaration so it can have its own doc comment explaining that file system implementations should return it when operations are attempted on a closed file. Fixes #63918 Change-Id: I1fe2041c594ad6fd37e240e21fe9b3d4104daa46 Reviewe...
[ { "path": "src/io/fs/fs.go", "patch": "@@ -155,9 +155,12 @@ var (\n \tErrPermission = errPermission() // \"permission denied\"\n \tErrExist = errExist() // \"file already exists\"\n \tErrNotExist = errNotExist() // \"file does not exist\"\n-\tErrClosed = errClosed() // \"file already c...
2026-02-17T01:26:33
denoland/deno
7ab15ad5d32cc5cd31d5dd579eec2ae54b5cd2fe
bfd96854f2f2060e57f1b472bc6fad5a86b25c2d
fix(ext/napi): keep event loop alive while uv_async_t handle is active (#32702) ## Summary - Add `ref_op()` in `uv_async_init` and `unref_op()` in `uv_close` to match libuv semantics where an active `uv_async_t` handle keeps the event loop alive until closed - Fix `libuv_sys_lite::setup()` to run on all platforms in ...
[ { "path": "ext/napi/uv.rs", "patch": "@@ -175,6 +175,12 @@ unsafe extern \"C\" fn _napi_uv_async_init(\n r#async.cast(),\n addr_of_mut!((*r#async).work),\n );\n+\n+ // In libuv, uv_async_init starts the handle and keeps the event loop\n+ // alive until uv_close is called. Ref the event...
2026-03-14T13:55:18
vuejs/vue
69401311f4bf55e58550a2134c33ceb8ae1f180e
7c754623541c492161f7976203f0b1697a9a0113
fix(warn): better message with no constructors props (#9241) Co-authored-by: Siddhesh Mhadnak <siddhesh.mhadnak@outlook.com> Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com>
[ { "path": "src/core/util/props.js", "patch": "@@ -122,13 +122,14 @@ function assertProp (\n type = [type]\n }\n for (let i = 0; i < type.length && !valid; i++) {\n- const assertedType = assertType(value, type[i])\n+ const assertedType = assertType(value, type[i], vm)\n expected...
2021-03-30T09:38:13
mrdoob/three.js
3c2dc9dfa337cc4a3d358d558433a97642fa5bf2
71349adfc233aac76e10ce1e8ba3ac2070661865
WGSLNodeBuilder: Improve `StorageTexture3D` support (#32150) * Examples: Fix compute_texture_pingpong example * WGSLNodeBuilder: Improve StorageTexture3D support
[ { "path": "src/renderers/webgpu/nodes/WGSLNodeBuilder.js", "patch": "@@ -286,7 +286,7 @@ class WGSLNodeBuilder extends NodeBuilder {\n \t */\n \tgenerateWrapFunction( texture ) {\n \n-\t\tconst functionName = `tsl_coord_${ wrapNames[ texture.wrapS ] }S_${ wrapNames[ texture.wrapT ] }_${ texture.isData3DText...
2025-10-31T23:12:25
golang/go
28b1d8886b3bd5645f8bfebb7713358a1551d435
b0057a4e0cacb4c920c9eb82216b63ed60d6e9fb
cmd/compile: fix ICE when checking slice cap CL 226737 optimized len check when make slice in common case when len is within range of cap. However, the generated code does not walk the AST for the if condition, causing un-walked nodes passed to the backend. Fixes #78028 Change-Id: I492fb230c10e585dc09391728ef4df2c00...
[ { "path": "src/cmd/compile/internal/walk/builtin.go", "patch": "@@ -455,7 +455,7 @@ func walkMakeSlice(n *ir.MakeExpr, init *ir.Nodes) ir.Node {\n \t\t\tniflen := ir.NewIfStmt(base.Pos, ir.NewBinaryExpr(base.Pos, ir.OLT, len, ir.NewInt(base.Pos, 0)), nil, nil)\n \t\t\tniflen.Body = []ir.Node{mkcall(\"panicm...
2026-03-09T11:51:53
denoland/deno
bfd96854f2f2060e57f1b472bc6fad5a86b25c2d
4d45fe5b7ad2830d8ef2a3cc8bddd259531e7522
fix(tsc): move more node resolution errors to typescript diagnostics (#32697)
[ { "path": "cli/graph_util.rs", "patch": "@@ -286,23 +286,6 @@ pub struct ResolutionErrorRef<'a> {\n pub fn resolution_error_for_tsc_diagnostic(\n error: &ResolutionError,\n ) -> Option<ResolutionErrorRef<'_>> {\n- fn is_module_not_found_code(code: NodeJsErrorCode) -> bool {\n- match code {\n- Nod...
2026-03-14T13:19:37
vuejs/vue
7c754623541c492161f7976203f0b1697a9a0113
2488a6a1e9779f0cca4a64163ef44ac30530a450
fix(types): changed expression type to optional string (#11189) fix #10871
[ { "path": "types/test/options-test.ts", "patch": "@@ -482,3 +482,20 @@ Vue.component('functional-component-v-model', {\n \n \n Vue.component('async-es-module-component', () => import('./es-module'))\n+\n+Vue.component('directive-expression-optional-string', {\n+ render(createElement) {\n+ return createE...
2021-03-30T09:37:56
golang/go
b0057a4e0cacb4c920c9eb82216b63ed60d6e9fb
43f8fb27ae5aed5a65b50c8dc49ef1557c1b293b
test/fixedbugs: increase issue46234 test timeout issue46234 is flaky on slow machines, so increase the timeout to 90s. Note that that test timeout already got increased from 30s to 45s in CL 382774, but it was still not enough. Fixes #50973 Fixes #67558 Fixes #74277 Updates #65040 Cq-Include-Trybots: luci.golang.tr...
[ { "path": "test/fixedbugs/issue46234.go", "patch": "@@ -1,4 +1,4 @@\n-// buildrun -t 45\n+// buildrun\n \n //go:build !js && !wasip1\n ", "additions": 1, "deletions": 1, "language": "Go" } ]
2026-02-20T16:34:51
mrdoob/three.js
94f32836d0fc72316ffe99cab926ec8e7f69af99
f265b19cceb299184bcc26653ad53452c4349e70
PixelationPassNode: Fix zero normal processing. (#32159)
[ { "path": "examples/jsm/tsl/display/PixelationPassNode.js", "patch": "@@ -193,7 +193,7 @@ class PixelationNode extends TempNode {\n \n \t\t\tconst nei = property( 'float', 'nei' );\n \n-\t\t\tIf( this.normalEdgeStrength.greaterThan( 0.0 ), () => {\n+\t\t\tIf( this.normalEdgeStrength.greaterThan( 0.0 ).and( ...
2025-10-31T14:59:39
denoland/deno
4d45fe5b7ad2830d8ef2a3cc8bddd259531e7522
cae85170b9e5297a5b49e6d1de0b1e9e36419bd4
fix(ext/node): set up stdio streams on failed child_process spawn (#32698) In Node.js, stdio pipes are created before the OS spawn call, so child.stdout/stderr/stdin are valid stream objects even when spawn fails (e.g. ENOENT). Deno's implementation only created these after a successful Deno.Command().spawn(), leaving...
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -564,7 +564,51 @@ export class ChildProcess extends EventEmitter {\n // args.slice(1) to exclude argv0 (prepended by normalizeSpawnArguments)\n e = _createSpawnError(\"ENOENT\", command, args.slice(1));\n }\n+\n+ ...
2026-03-14T11:38:47
vuejs/vue
55a30cf9db247eba2aca817439fdb3cd15e9184f
3d46692ee4e8ec67b5bc0f66cdabf4667fa4de88
fix(compiler): avoid converting &nbps; to spaces (#11065)
[ { "path": "src/compiler/parser/index.js", "patch": "@@ -38,7 +38,7 @@ const modifierRE = /\\.[^.\\]]+(?=[^\\]]*$)/g\n const slotRE = /^v-slot(:|$)|^#/\n \n const lineBreakRE = /[\\r\\n]/\n-const whitespaceRE = /\\s+/g\n+const whitespaceRE = /[ \\f\\t\\r\\n]+/g\n \n const invalidAttributeRE = /[\\s\"'<>\\/=]...
2021-03-30T09:03:03
golang/go
2a5890cd46e5658b5ceab6cfd7a06b3bfe947fb9
e2ce40125fd03f8420a9cbbfe36d1e0f4bc93966
cmd/go/internal/cache: update trim timestamp before trimming This reduces the chance that multiple go commands running in CI will try to trim at the same time, causing contention and slowing things down. Fixes #76314 Change-Id: I3edf818fc9583795f3f51b715fdbe75b6a6a6964 Reviewed-on: https://go-review.googlesource.com...
[ { "path": "src/cmd/go/internal/cache/cache.go", "patch": "@@ -385,13 +385,42 @@ func (c *DiskCache) Trim() error {\n \t// trim time is too far in the future, attempt the trim anyway. It's possible that\n \t// the cache was full when the corruption happened. Attempting a trim on\n \t// an empty cache is chea...
2026-03-09T17:51:56
mrdoob/three.js
9e6165f265cdc39b5e84f5db9ea4585c164833a8
fb7d41840766135f6fa9664e5a73968569d84247
Docs: Fixed properties layout. (#32156) * Docs: Fixed properties layout. * Design tweaks. * Fixed #WebGLRenderer.~Options link. * Ignore empty returns. * Design tweaks. * Clean up,
[ { "path": "utils/docs/template/publish.js", "patch": "@@ -113,7 +113,7 @@ function addParamAttributes( params ) {\n \n \t\tif ( param.type && param.type.names && param.type.names.length ) {\n \n-\t\t\tconst escapedTypes = param.type.names.map( name => htmlsafe( name ) );\n+\t\t\tconst escapedTypes = param.t...
2025-10-31T10:29:17
vuejs/vue
14882c9cbfe289814de7c2b5323fe0831b3750de
b800e8e9ee4fa4be9b3d6130b5ee82d668066870
chore: fix npm test on Windows (#11784) close vuejs#11782
[ { "path": "package.json", "patch": "@@ -101,7 +101,7 @@\n \"flow-bin\": \"^0.61.0\",\n \"hash-sum\": \"^1.0.2\",\n \"he\": \"^1.1.1\",\n- \"http-server\": \"^0.11.1\",\n+ \"http-server\": \"^0.12.3\",\n \"jasmine\": \"^2.99.0\",\n \"jasmine-core\": \"^2.99.0\",\n \"karma\": \"^...
2020-11-21T09:53:09
golang/go
e2ce40125fd03f8420a9cbbfe36d1e0f4bc93966
e84da0405bcf64c7dbaafb0afc14388049a9b6fc
internal/poll: move rsan to heap on windows According to https://learn.microsoft.com/en-us/windows/win32/api/winsock2/nf-winsock2-wsarecvfrom, the memory pointed to by lpFromlen must remain available during the overlapped I/O, and therefore cannot be allocated on the stack. CL 685417 moved the rsan field out of the o...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -157,7 +157,7 @@ var wsaMsgPool = sync.Pool{\n \n // newWSAMsg creates a new WSAMsg with the provided parameters.\n // Use [freeWSAMsg] to free it.\n-func newWSAMsg(p []byte, oob []byte, flags int, unconnected bool) *windows.WSAMsg {\n+func newWSAMsg...
2026-03-09T08:25:16
denoland/deno
e88d18a79db233f8563826f0b6adac383ed0e192
081e2e8476415c2e3ba0da3e6327da407f2f1be5
feat: add --cpu-prof-flamegraph to generate interactive SVG flamegraphs (#32572) ## Summary Builds on top of #31909 to add interactive SVG flamegraph generation for CPU profiles, plus improvements to the existing `--cpu-prof` functionality. ### New: `--cpu-prof-flamegraph` flag Generates a self-contained, interacti...
[ { "path": "cli/args/flags.rs", "patch": "@@ -269,9 +269,10 @@ pub struct CpuProfFlags {\n pub name: Option<String>,\n pub interval: Option<u32>,\n pub md: bool,\n+ pub flamegraph: bool,\n }\n \n-#[derive(Clone, Debug, Eq, PartialEq)]\n+#[derive(Clone, Default, Debug, Eq, PartialEq)]\n pub struct Eval...
2026-03-14T07:25:58
vuejs/vue
0664cb01434f3d52efd076b6aafe54066a2a762a
cd57393fd3e2c169d450607bc4f03652d106bcc2
fix(v-pre): do not alter attributes (#10088) * fix(v-pre): do not alter attributes close #10087 * fix(v-pre): do not alter attributes remove component and replace option from unit test * refactor: use or * perf: check boolean before index Co-authored-by: Eduardo San Martin Morote <posva@users.noreply...
[ { "path": "src/platforms/web/runtime/modules/attrs.js", "patch": "@@ -39,7 +39,7 @@ function updateAttrs (oldVnode: VNodeWithData, vnode: VNodeWithData) {\n cur = attrs[key]\n old = oldAttrs[key]\n if (old !== cur) {\n- setAttr(elm, key, cur)\n+ setAttr(elm, key, cur, vnode.data.pre)\n...
2020-09-21T15:42:08
denoland/deno
7607cb2053fc0c41ebf55e40e40ea26f151383e5
8ac8de128a1db7e71c37063dd101369f9abb4a3d
fix(ext/napi): prevent spurious TypeError from napi_coerce_to_object on null/undefined (#32695) Fixes #31306 Fixes #28682 - `napi_coerce_to_object(null/undefined)` was letting V8's `ToObject()` throw a TypeError, which got stored in `env.last_exception` by the `napi_wrap!` try-catch, then re-thrown by `call_fn` as a ...
[ { "path": "ext/napi/js_native_api.rs", "patch": "@@ -2447,7 +2447,15 @@ fn napi_coerce_to_object<'s>(\n check_arg!(env, result);\n \n v8::callback_scope!(unsafe scope, env.context());\n- let Some(coerced) = value.unwrap().to_object(scope) else {\n+ let val = value.unwrap();\n+ // Check for null/undef...
2026-03-13T21:24:09
golang/go
d82eb907f3ef66e99d1ef08c0b34ffffbd49de5e
f5d830d57ae0e490d73442d2e04f73322266dbc6
testing: annotate output text type Provides a way to disambiguate output produced by (*testing.T).Error{,f} and (*testing.T).Fatal{,f} from other test logging. This allows test tooling such as CI systems to identify which part of the output is most pertinent for constructing summaries of test failures. This is achiev...
[ { "path": "src/cmd/go/testdata/script/test_json_ascii.txt", "patch": "@@ -1,11 +1,11 @@\n ! go test -json\n \n-stdout '\"Action\":\"output\",\"Package\":\"p\",\"Test\":\"Test\",\"Output\":\"=== RUN Test\\\\n\"'\n+stdout '\"Action\":\"output\",\"Package\":\"p\",\"Test\":\"Test\",\"Output\":\"=== RUN Test...
2024-11-16T15:42:53
vuejs/vue
cd57393fd3e2c169d450607bc4f03652d106bcc2
862070662dd4871cb834664435ec836df57c7d57
fix(attrs): do not consider translate attribute as boolean (#11392) when present, translate attribute had translate as it's value, which is not valid, the value should remain as specified by the user, that's why we removed it form isBooleanAttr map fix #11391
[ { "path": "src/platforms/web/util/attrs.js", "patch": "@@ -35,7 +35,7 @@ export const isBooleanAttr = makeMap(\n 'default,defaultchecked,defaultmuted,defaultselected,defer,disabled,' +\n 'enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,' +\n 'muted,nohref,noresize,nosha...
2020-09-21T14:51:39
mrdoob/three.js
ec097899e338da8c1c3341a35080b6af62715a7a
5727e0cdb7f3dd622c60b3b0b3f36eadd0757788
Add exceptions for long-running tests in puppeteer
[ { "path": "test/e2e/puppeteer.js", "patch": "@@ -7,6 +7,18 @@ import * as fs from 'fs/promises';\n \n const exceptionList = [\n \n+\t// Take too long\n+\t'webgpu_parallax_uv', \t\t\t\t// 11 min\n+\t'webgpu_cubemap_adjustments', \t\t// 9 min\n+\t'webgl_loader_lwo', \t\t\t\t// 8 min\n+\t'webgpu_cubemap_mix', ...
2025-10-30T01:36:21
golang/go
f5d830d57ae0e490d73442d2e04f73322266dbc6
16cebc1165d0613051bb5ae97e1af856f8bc55f2
cmd/go/internal/testdata: change list_std_vendor to use local modproxy Also update get_panic_issue75251 to reflect that "golang.org/x/net" now exists in the proxy. The new message is closer to the real world behavior of the go command. Change-Id: Icb916f7eb7628bf5340c15275f4d08086a6a6964 Reviewed-on: https://go-revie...
[ { "path": "src/cmd/go/testdata/mod/golang.org_x_net_v0.1.0.txt", "patch": "@@ -0,0 +1,10 @@\n+written by hand - just enough for list_std_vendor.txt\n+\n+-- .mod --\n+module golang.org/x/net\n+-- .info --\n+{\"Version\":\"v0.1.0\",\"Name\":\"\",\"Short\":\"\",\"Time\":\"2026-03-08T00:00:00Z\"}\n+-- go.mod --...
2026-03-08T19:46:36
denoland/deno
8ac8de128a1db7e71c37063dd101369f9abb4a3d
975db92d8dd33ba9fe1f45f42baad9eba3e0d51d
fix: restore --env-file parent directory traversal and do not error in `deno compile` for not found env file (#32686) Co-authored-by: David Sherret <dsherret@gmail.com>
[ { "path": "Cargo.lock", "patch": "@@ -2274,7 +2274,9 @@ dependencies = [\n name = \"deno_dotenv\"\n version = \"0.7.0\"\n dependencies = [\n+ \"deno_path_util\",\n \"sys_traits\",\n+ \"thiserror 2.0.12\",\n ]\n \n [[package]]", "additions": 2, "deletions": 0, "language": "Unknown" }, { ...
2026-03-13T18:01:23
vuejs/vue
862070662dd4871cb834664435ec836df57c7d57
668e1e637461ff630803e85bf99158415d276d4c
fix(compiler): event handlers with modifiers swallowing arguments (fix #10867) (#10958) Pass full parent argument list to the event handler when there are event modifiers present.
[ { "path": "src/compiler/codegen/events.js", "patch": "@@ -148,9 +148,9 @@ function genHandler (handler: ASTElementHandler | Array<ASTElementHandler>): str\n code += genModifierCode\n }\n const handlerCode = isMethodPath\n- ? `return ${handler.value}($event)`\n+ ? `return ${handler.va...
2020-09-21T14:16:45
mrdoob/three.js
3e8b26e00f6d75d56108e09003437ddbf95c0996
30fdd5c87eb9a09803dbf4edb5814b993ec3365e
TSL: Fix get element through an output `Fn` value (#32143) * Fix get element through a return function * Update puppeteer.js
[ { "path": "src/nodes/core/StackNode.js", "patch": "@@ -79,6 +79,12 @@ class StackNode extends Node {\n \n \t}\n \n+\tgetElementType( builder ) {\n+\n+\t\treturn this.hasOutput ? this.outputNode.getElementType( builder ) : 'void';\n+\n+\t}\n+\n \tgetNodeType( builder ) {\n \n \t\treturn this.hasOutput ? this...
2025-10-30T00:43:36
golang/go
e715e208f22df43c67707ea1f2047d157b0a7390
827564191b9796a764e970175cecd51c2030530e
cmd/go/testdata/script: rewrite mod_invalid_version to not use network Use vcstest to deflake the test. Fixes #68420 Change-Id: I0c54a0e9cbab160636e3be53e615b7816a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/751600 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Ian Alexander <jitsu...
[ { "path": "src/cmd/go/testdata/script/mod_invalid_version.txt", "patch": "@@ -1,244 +1,239 @@\n-[!net:golang.org] skip\n+[short] skip\n [!git] skip\n \n-env GO111MODULE=on\n env GOPROXY=direct\n env GOSUMDB=off\n env GOFLAGS=-mod=mod\n \n # Regression test for golang.org/issue/27173: if the user (or go.mod ...
2026-03-04T22:04:16
denoland/deno
975db92d8dd33ba9fe1f45f42baad9eba3e0d51d
d3aaa2420a957d73641cef024c9929e23899e4dc
fix(ext/node): improve X509Certificate Node.js compatibility (#32671) ## Summary - Fixes multiple compatibility issues with `crypto.X509Certificate` to pass the Node.js `test-crypto-x509.js` test suite - Adds `isX509Certificate()`, `signatureAlgorithm`, `signatureAlgorithmOid` getters - Fixes `emailAddress` label, dat...
[ { "path": "ext/node/polyfills/internal/crypto/x509.ts", "patch": "@@ -18,6 +18,8 @@ import {\n op_node_x509_get_issuer,\n op_node_x509_get_raw,\n op_node_x509_get_serial_number,\n+ op_node_x509_get_signature_algorithm_name,\n+ op_node_x509_get_signature_algorithm_oid,\n op_node_x509_get_subject,\n...
2026-03-13T13:28:27
mrdoob/three.js
7b65617a215774edffc1acea9d59a9a500e5eb15
30c1ac4fc195cbbabe4fc405e08275d52d20f8dd
Examples: Visualize normal as color in inspector `webgpu_postprocessing_ao` (#32141) * fix debug view: normal * move inspector AO to `aoPass.r` --------- Co-authored-by: sunag <sunagbrasil@gmail.com>
[ { "path": "examples/webgpu_postprocessing_ao.html", "patch": "@@ -36,7 +36,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three/webgpu';\n-\t\t\timport { pass, mrt, output, normalView, velocity, vec3, vec4 } from 'three/tsl';\n+\t\t\timport { pass, mrt, output, normalView, velocity, ...
2025-10-29T15:23:57
vuejs/vue
668e1e637461ff630803e85bf99158415d276d4c
b8bd149d8aa3f175a1a656d62f7b6ec60c31a364
fix(types): allow string for watch handlers in options (#10396) * Allow watch handler to be string as it is supported * Move string type to WatchHandler itself * Removed string type as it moved to WatchHandler
[ { "path": "types/options.d.ts", "patch": "@@ -76,7 +76,7 @@ export interface ComponentOptions<\n propsData?: object;\n computed?: Accessors<Computed>;\n methods?: Methods;\n- watch?: Record<string, WatchOptionsWithHandler<any> | WatchHandler<any> | string>;\n+ watch?: Record<string, WatchOptionsWith...
2020-09-21T14:13:21
golang/go
9e0b5684e1f7166d6427635673001c80218ac9f4
b7d1c5887561ee5502b6c04baaa27ead13b63971
net: correctly handle non-nil empty cmsg buffer on windows Fixes #77875. Change-Id: I0ed91be7ed10c04ddea3af55548a8dbf0be5f3a8 Reviewed-on: https://go-review.googlesource.com/c/go/+/750420 Reviewed-by: Quim Muntal <quimmuntal@gmail.com> Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: David Chase <drchase@goog...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -167,9 +167,11 @@ func newWSAMsg(p []byte, oob []byte, flags int, unconnected bool) *windows.WSAMs\n \tmsg := wsaMsgPool.Get().(*windows.WSAMsg)\n \tmsg.Buffers.Len = uint32(len(p))\n \tmsg.Buffers.Buf = unsafe.SliceData(p)\n-\tmsg.Control = syscall....
2026-03-01T16:43:57
denoland/deno
d3aaa2420a957d73641cef024c9929e23899e4dc
9ab5c0ce6fef7ef4e40002d09058cecb4e87a6b9
fix(lsp): align organize imports output with tsgo (#32677)
[ { "path": "cli/lsp/code_lens.rs", "patch": "@@ -3,7 +3,6 @@\n use std::cell::RefCell;\n use std::collections::HashSet;\n use std::rc::Rc;\n-use std::sync::Arc;\n \n use deno_ast::ParsedSource;\n use deno_ast::SourceRange;\n@@ -399,7 +398,7 @@ pub fn collect_test(\n pub fn collect_tsc(\n uri: &Uri,\n cod...
2026-03-13T13:21:53
mrdoob/three.js
30c1ac4fc195cbbabe4fc405e08275d52d20f8dd
4342d10ea73aa3cea3dcddd4973a6521dda8d5e8
AfterImageNode: Fix swap. (#32140)
[ { "path": "examples/jsm/tsl/display/AfterImageNode.js", "patch": "@@ -37,13 +37,6 @@ class AfterImageNode extends TempNode {\n \t\t */\n \t\tthis.textureNode = textureNode;\n \n-\t\t/**\n-\t\t * The texture represents the pervious frame.\n-\t\t *\n-\t\t * @type {TextureNode}\n-\t\t */\n-\t\tthis.textureNode...
2025-10-29T15:03:11
vuejs/vue
b8bd149d8aa3f175a1a656d62f7b6ec60c31a364
67825c24bcb0a9f64055bda1b1e4af66aad3c529
fix(ssr): textarea keeps undefined/null values (#11121) * fix(ssr): textarea keeps undefined/null values * refactor(ssr): Code review changes for null values in textareas
[ { "path": "src/platforms/web/server/modules/dom-props.js", "patch": "@@ -2,7 +2,7 @@\n \n import VNode from 'core/vdom/vnode'\n import { renderAttr } from './attrs'\n-import { isDef, isUndef, extend } from 'shared/util'\n+import { isDef, isUndef, extend, toString } from 'shared/util'\n import { propsToAttrM...
2020-09-21T14:04:58
golang/go
b7d1c5887561ee5502b6c04baaa27ead13b63971
383000da24e9b32dbe3cae4c48cbb233d7c62253
cmd/go: disallow go env -w GOROOT=... The go command determines GOROOT from where the binary is. It is an error to try to run a go command with a mismatched Go tree. The only possible use for 'go env -w GOROOT=...' would be if you copied the go executable to a new place (say, $HOME/bin) and needed to set the default G...
[ { "path": "src/cmd/go/internal/envcmd/env.go", "patch": "@@ -604,7 +604,17 @@ func getOrigEnv(key string) string {\n \n func checkEnvWrite(key, val string) error {\n \tswitch key {\n-\tcase \"GOEXE\", \"GOGCCFLAGS\", \"GOHOSTARCH\", \"GOHOSTOS\", \"GOMOD\", \"GOWORK\", \"GOTOOLDIR\", \"GOVERSION\", \"GOTELE...
2026-02-26T17:39:48
mrdoob/three.js
465de053461571562e258814a304f242fde51989
8a74698aee922c39afe6c82b1e83f67e3c00a43a
Inspector: Fix `NaN` value
[ { "path": "examples/jsm/inspector/Inspector.js", "patch": "@@ -346,7 +346,7 @@ class Inspector extends RendererInspector {\n \n \t\t}\n \n-\t\treturn sum / count;\n+\t\treturn count > 0 ? sum / count : 0;\n \n \t}\n ", "additions": 1, "deletions": 1, "language": "JavaScript" } ]
2025-10-28T15:04:10
vuejs/vue
67825c24bcb0a9f64055bda1b1e4af66aad3c529
abb5ef35dd02919dce19c895ad12113071712df0
fix(parser): allow multiple slots with new syntax (#9785) * fix(#9781): non greedy `dynamicArgAttribute` RegExp * test(parser): add test case for multiple dynamic slot names * test: add test with value Co-authored-by: Eduardo San Martin Morote <posva13@gmail.com>
[ { "path": "src/compiler/parser/html-parser.js", "patch": "@@ -15,7 +15,7 @@ import { unicodeRegExp } from 'core/util/lang'\n \n // Regular Expressions for parsing tags and attributes\n const attribute = /^\\s*([^\\s\"'<>\\/=]+)(?:\\s*(=)\\s*(?:\"([^\"]*)\"+|'([^']*)'+|([^\\s\"'=<>`]+)))?/\n-const dynamicArg...
2020-09-21T14:01:46
golang/go
383000da24e9b32dbe3cae4c48cbb233d7c62253
b9545da71c2f5e93355d82a1f9b5ead02f2bc617
cmd/internal/obj: fix indirect tail call code The assembler isn't handling this correctly for most architectures. Of course, the two I tried first, arm64 and amd64, worked, so I assumed other archs could handle it also. Apparently not. Should fix dashboard failures introduced by CL 751465. Change-Id: I9fc4f123d11acf...
[ { "path": "src/cmd/internal/obj/arm/obj5.go", "patch": "@@ -352,16 +352,25 @@ func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \n \t\tcase obj.ARET:\n \t\t\tnocache(p)\n+\n+\t\t\tretSym, retReg := p.To.Sym, p.To.Reg\n+\t\t\tif retReg == obj.REG_NONE {\n+\t\t\t\tretReg = REGLINK\n...
2026-03-06T23:44:41
denoland/deno
9ab5c0ce6fef7ef4e40002d09058cecb4e87a6b9
6c5ef85de45ecde1db3f4c9951dc47bdb824f798
fix(npm): resolve bundled npm deps in packages properly when not using a `node_modules` directory (#32679) We now attempt to find bundled dependencies at the start instead of on error. Previously we were doing it only on error... and sometimes it wouldn't error leading to bad resolution.
[ { "path": "cli/lsp/resolver.rs", "patch": "@@ -220,19 +220,19 @@ impl LspScopedResolver {\n }\n CliNpmResolver::Managed(managed_npm_resolver) => {\n CliNpmResolverCreateOptions::Managed({\n- let sys = CliSys::default();\n+ let sys = &factory.sys;\n ...
2026-03-13T11:44:13
mrdoob/three.js
8a74698aee922c39afe6c82b1e83f67e3c00a43a
ca2f49e9dde0f603913bcf3f802e95c1d0739098
TSL: Add active stack and improve "node block" support (#32109) * add active stack and improve "node block" support * VarNode: Use `intent` for non-stack * update * fix sync set context value * simplification * simplification * Update RangeNode.js
[ { "path": "src/nodes/core/NodeBuilder.js", "patch": "@@ -435,13 +435,13 @@ class NodeBuilder {\n \t\t */\n \t\tthis.subBuildLayers = [];\n \n+\n \t\t/**\n-\t\t * The current stack of nodes.\n+\t\t * The active stack nodes.\n \t\t *\n-\t\t * @type {?StackNode}\n-\t\t * @default null\n+\t\t * @type {Array<Sta...
2025-10-28T14:01:32
vuejs/vue
abb5ef35dd02919dce19c895ad12113071712df0
b97606cdc658448b56518ac27af98fc82999d05f
fix(props): correctly warn when a provided prop is Symbol (#10529) * fix(props): correctly warn when a provided prop is Symbol Fixes #10519 * style: space before parens
[ { "path": "src/core/util/props.js", "patch": "@@ -205,18 +205,19 @@ function getInvalidTypeMessage (name, value, expectedTypes) {\n ` Expected ${expectedTypes.map(capitalize).join(', ')}`\n const expectedType = expectedTypes[0]\n const receivedType = toRawType(value)\n- const expectedValue = styleV...
2020-09-21T10:24:17
golang/go
90b428ebf565f61a8ef13d2b6a59c55704923c74
ec3373e379696c5d9ba6874caed34a309a76181b
net: skip TestListenIPv6WildcardAddr on platforms w/o IPv4-mapped IPv6 On these platforms, Listen and friends default to IPv4 for wildcard addresses (unless network is "tcp6" or "udp6") due to lack of support for dual-stack IPv6 sockets (IPV6_V6ONLY=0). Fixes #77945. Change-Id: I50c4be1d4fd620dd997d4d0f02bd74e8e41e4...
[ { "path": "src/net/ipsock_test.go", "patch": "@@ -283,19 +283,15 @@ func TestAddrListPartition(t *testing.T) {\n }\n \n func TestListenIPv6WildcardAddr(t *testing.T) {\n-\tswitch runtime.GOOS {\n-\tcase \"js\", \"wasip1\":\n+\tif runtime.GOOS == \"js\" || runtime.GOOS == \"wasip1\" {\n \t\tt.Skip(\"fake net...
2026-03-04T18:11:01
denoland/deno
6c5ef85de45ecde1db3f4c9951dc47bdb824f798
ae8a10d220641061b725ce9d3a6f4d960a4ec7f8
fix(ext/web): support %j JSON format specifier in console.log (#32684) ## Summary - Add support for the `%j` format specifier in `console.log` and related methods, which JSON-stringifies the argument (matching Node.js behavior) - Circular references output `[Circular]` instead of throwing Closes #32680 --------- Co...
[ { "path": "ext/web/01_console.js", "patch": "@@ -195,6 +195,7 @@ const {\n Uint32Array,\n WeakMap,\n WeakMapPrototype,\n+ JSONStringify,\n WeakSet,\n WeakSetPrototype,\n } = primordials;\n@@ -250,6 +251,34 @@ function assert(cond, msg = \"Assertion failed\") {\n }\n }\n \n+// Attempt to JSON.st...
2026-03-13T11:36:19
mrdoob/three.js
ca2f49e9dde0f603913bcf3f802e95c1d0739098
1dcf17505d4f443c8c3ce53bfd229deeac6a3583
WebGPURenderer: Fix types for indirect compute and modify example to show usage (#32129) * Fix type annotations, handle IndirectStorageBufferAttribute in webgl fallback renderer. * Modify webgpu_compute_particles example to utilize indirect compute dispatch * Respect dispatchSize when backend is not initialized * R...
[ { "path": "src/renderers/common/Renderer.js", "patch": "@@ -2420,10 +2420,10 @@ class Renderer {\n \t * if the renderer has been initialized.\n \t *\n \t * @param {Node|Array<Node>} computeNodes - The compute node(s).\n-\t * @param {number|Array<number>|GPUBuffer} [dispatchSize=null]\n+\t * @param {number|A...
2025-10-28T13:19:13
vuejs/vue
b97606cdc658448b56518ac27af98fc82999d05f
579e1ff9df1d454f85fac386d098b7bf1a42c4f2
fix(ssr): avoid missing files in manifest (#11609) Co-authored-by: chenyj <2932802684@qq.com> Co-authored-by: johnleider <john@vuetifyjs.com>
[ { "path": "src/server/template-renderer/create-async-file-mapper.js", "patch": "@@ -44,7 +44,11 @@ function mapIdToFile (id, clientManifest) {\n fileIndices.forEach(index => {\n const file = clientManifest.all[index]\n // only include async files or non-js, non-css assets\n- if (clientM...
2020-09-21T09:59:11
golang/go
bbed50aaa3033c9be6a5268268a7faf226be9de0
de5c138eef88685442dc71e36dd98d66b885a605
cmd/link: sort .pdata by function start address Loosely based on CL 678795. The PE/COFF spec requires RUNTIME_FUNCTION entries in the .pdata section to be ordered by their function start address. Previously the linker emitted them in symbol order. An unsorted table triggers the MSVC linker error: fatal error LN...
[ { "path": "src/cmd/cgo/internal/test/seh_internal_windows_test.go", "patch": "@@ -1,16 +0,0 @@\n-// Copyright 2024 The Go Authors. All rights reserved.\n-// Use of this source code is governed by a BSD-style\n-// license that can be found in the LICENSE file.\n-\n-//go:build cgo && windows && internal\n-\n-...
2026-02-10T13:21:15
mrdoob/three.js
a55dcde5dd25d6d3e8a2d5967becb6234b8b7bf4
e87bd6551b20c69efb2ca15e34976d5836fb0137
Selective Bloom Example: Add bloomStrength uniform to enhance bloom effect control (#32125) * Add bloomStrength uniform to enhance bloom effect control * Minor fix * Review comment: https://github.com/mrdoob/three.js/pull/32125#discussion_r2465078024
[ { "path": "examples/webgl_postprocessing_unreal_bloom_selective.html", "patch": "@@ -30,12 +30,13 @@\n \n \t\t\tuniform sampler2D baseTexture;\n \t\t\tuniform sampler2D bloomTexture;\n+\t\t\tuniform float bloomStrength;\n \n \t\t\tvarying vec2 vUv;\n \n \t\t\tvoid main() {\n \n-\t\t\t\tgl_FragColor = ( text...
2025-10-28T09:04:15
denoland/deno
ae8a10d220641061b725ce9d3a6f4d960a4ec7f8
4da9f0b34805b146d3d965946e904d6c335c187a
fix(watch): dispatch unload and process exit events on restart (#32664) ## Summary - Fix `unload` event not firing when watch mode restarts a script blocked on a top-level await - Fix Node.js `process.on("exit")` handlers not firing on watch restart ### What changed In `FileWatcherModuleExecutor::execute()`, `pendi...
[ { "path": "cli/worker.rs", "patch": "@@ -194,9 +194,16 @@ impl CliMainWorker {\n /// Execute the given main module emitting load and unload events before and after execution\n /// respectively.\n pub async fn execute(&mut self) -> Result<(), CoreError> {\n- self.inner.execute_main_m...
2026-03-13T11:32:25
vuejs/vue
579e1ff9df1d454f85fac386d098b7bf1a42c4f2
2f7209c39a303a1112a5da94cd2280e866f19610
fix(core): remove trailing comma in function signature (#10845) Fix #10843
[ { "path": "src/core/vdom/create-component.js", "patch": "@@ -207,7 +207,7 @@ export function createComponent (\n \n export function createComponentInstanceForVnode (\n vnode: any, // we know it's MountedComponentVNode but flow doesn't\n- parent: any, // activeInstance in lifecycle state\n+ parent: any /...
2020-09-21T09:20:24
mrdoob/three.js
e87bd6551b20c69efb2ca15e34976d5836fb0137
158c1c47f2191a1b0b0687ba0022139731a71090
WebGPURenderer: Fix dispose `RenderTarget` textures (#32131)
[ { "path": "src/renderers/common/Textures.js", "patch": "@@ -164,28 +164,13 @@ class Textures extends DataMap {\n \n \t\t\t// dispose\n \n-\t\t\tconst onDispose = () => {\n+\t\t\trenderTargetData.onDispose = () => {\n \n-\t\t\t\trenderTarget.removeEventListener( 'dispose', onDispose );\n-\n-\t\t\t\tfor ( let...
2025-10-27T20:14:28
golang/go
de5c138eef88685442dc71e36dd98d66b885a605
8933fb98f309443a5ca3aeda2163017737dbe795
encoding/json: unwrap IO errors from SyntacticError in transformSyntacticError When GOEXPERIMENT=jsonv2 is enabled, transformSyntacticError has a case for bare IO errors (export.IsIOError), but this case is never reached when the IO error is wrapped inside a *jsontext.SyntacticError. This happens because consumeObjec...
[ { "path": "src/encoding/json/v2_scanner.go", "patch": "@@ -56,6 +56,11 @@ var errUnexpectedEnd = errors.New(\"unexpected end of JSON input\")\n func transformSyntacticError(err error) error {\n \tswitch serr, ok := err.(*jsontext.SyntacticError); {\n \tcase serr != nil:\n+\t\t// If the SyntacticError wraps ...
2026-02-25T11:07:25
denoland/deno
5b7680fc07e69ba7d065c1aad59038e74a6b94a0
653c3c5ed04d818b733a65003d9566dcb3b9e365
fix(web): support structuredClone for DOMException (#32675) ## Summary - Enables `structuredClone()` and `postMessage()` for `DOMException` objects using the cloneable resource registry from #32672 - Serializes `message`, `name`, and `stack`; `code` is derived from `name` on deserialization - Supersedes #31156 Ref #3...
[ { "path": "ext/web/01_dom_exception.js", "patch": "@@ -7,7 +7,7 @@\n /// <reference path=\"../web/internal.d.ts\" />\n /// <reference path=\"../../cli/tsc/dts/lib.deno_web.d.ts\" />\n \n-import { primordials } from \"ext:core/mod.js\";\n+import { core, primordials } from \"ext:core/mod.js\";\n const {\n E...
2026-03-13T10:23:15
mrdoob/three.js
f957f0b2adada81cb7c1de6fe34a79ead0026a93
ca94c690d327b3da24736e7ec0e64877dd06c90e
Update ViewHelper.js Fix typo.
[ { "path": "examples/jsm/helpers/ViewHelper.js", "patch": "@@ -368,7 +368,7 @@ class ViewHelper extends Object3D {\n \n \t\t}\n \n-\t\tfunction useOffscreenCavnas() {\n+\t\tfunction useOffscreenCanvas() {\n \n \t\t\tlet useOffscreenCanvas = false;\n \n@@ -392,7 +392,7 @@ class ViewHelper extends Object3D {\n...
2025-10-27T15:36:44
vuejs/vue
5b399612d8323ad0bb8b3f6fa8b2982ab73c0e6e
46ae9525964ea475dc927031e165c2b209396ac8
fix(security): upgrade serialize-javascript (#11434)
[ { "path": "package.json", "patch": "@@ -133,7 +133,7 @@\n \"rollup-plugin-node-resolve\": \"^4.0.0\",\n \"rollup-plugin-replace\": \"^2.0.0\",\n \"selenium-server\": \"^2.53.1\",\n- \"serialize-javascript\": \"^2.1.2\",\n+ \"serialize-javascript\": \"^3.1.0\",\n \"shelljs\": \"^0.8.1\"...
2020-08-13T14:38:24
denoland/deno
653c3c5ed04d818b733a65003d9566dcb3b9e365
7fa991eba96e14bc35429c223e3d009afa5191aa
fix(ext/node): implement safe, add, rem options for crypto.generatePrime (#32618) ## Summary - Implements the previously stubbed `safe`, `add`, and `rem` options for `crypto.generatePrime()` / `crypto.generatePrimeSync()`, matching Node.js/OpenSSL behavior - Fixes `checkPrime` / `checkPrimeSync` bigint truncation bug...
[ { "path": "ext/node/polyfills/internal/crypto/diffiehellman.ts", "patch": "@@ -136,7 +136,7 @@ export class DiffieHellmanImpl {\n }\n \n this.#prime = Buffer.from(\n- op_node_gen_prime(this.#primeLength).buffer,\n+ op_node_gen_prime(this.#primeLength, false, null, null).buffer,\n ...
2026-03-13T09:51:07
mrdoob/three.js
be24f9de78a62e3a1a452cb752f22ad4bf7426d8
1dd9ba536feae14e2dba4ef1d6d92ab2e9bf81f4
TSL: Fix `overloadingFn` return type (#32112)
[ { "path": "src/nodes/utils/FunctionOverloadingNode.js", "patch": "@@ -46,7 +46,7 @@ class FunctionOverloadingNode extends Node {\n \t\t * @private\n \t\t * @type {ShaderCallNodeInternal}\n \t\t */\n-\t\tthis._candidateFnCall = null;\n+\t\tthis._candidateFn = null;\n \n \t\t/**\n \t\t * This node is marked a...
2025-10-23T22:26:31
mrdoob/three.js
1dd9ba536feae14e2dba4ef1d6d92ab2e9bf81f4
96fe466f8edce6e90f7c48a6fe252a2b22f7b667
WebGPURenderer: Fix material transparent assignment (#32110) * fix material transparent assignment * updates
[ { "path": "src/materials/nodes/NodeMaterial.js", "patch": "@@ -1,5 +1,4 @@\n import { Material } from '../Material.js';\n-import { NormalBlending } from '../../constants.js';\n \n import { hashArray, hashString } from '../../nodes/core/NodeUtils.js';\n import { output, diffuseColor, emissive, varyingPropert...
2025-10-23T21:51:21