repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
vuejs/vue | 4f2a04e6a8e1fc71080eed49fd4059d6a53afc1c | 642e7aa03b1f6ca5e8ba6f7c7d702b6401b3ca9e | fix: fix scopedSlots regression | [
{
"path": "src/core/instance/render.ts",
"patch": "@@ -102,7 +102,8 @@ export function renderMixin(Vue: typeof Component) {\n vm.$scopedSlots = normalizeScopedSlots(\n vm.$parent!,\n _parentVnode.data!.scopedSlots,\n- vm.$slots\n+ vm.$slots,\n+ vm.$scopedSlots\n ... | 2022-06-06T07:25:29 |
mrdoob/three.js | b847bf44f35e221b73d34983aec0c8014636779a | 0ad08817d5646878e2897c301bd1a8076a4ddf09 | InstanceNode: Fix UBO size and attribute update. (#32615) | [
{
"path": "src/nodes/accessors/BufferAttributeNode.js",
"patch": "@@ -366,7 +366,7 @@ function createBufferAttribute( array, type = null, stride = 0, offset = 0, usag\n \n \t}\n \n-\treturn new BufferAttributeNode( array, type, stride, offset );\n+\treturn new BufferAttributeNode( array, type, stride, offse... | 2025-12-23T16:51:24 |
denoland/deno | 301f6d1a9b956c61d9f9fc2360b6e6ed86449645 | 5a92ed20c018c894e2e7eab81b80f8d2caec5d40 | fix(ext/node): improve process.hrtime argument validation (#32837)
- Adds proper `ERR_INVALID_ARG_TYPE` validation when `process.hrtime()`
receives a non-array argument
- Adds `ERR_OUT_OF_RANGE` validation when the array length is not 2
- Fixes nanosecond underflow bug by borrowing from seconds when `nano -
prevNano` ... | [
{
"path": "ext/node/polyfills/process.ts",
"patch": "@@ -103,6 +103,7 @@ const lazyLoadFsUtils = core.createLazyLoader<typeof fsUtils>(\n );\n \n const {\n+ ArrayIsArray,\n NumberMAX_SAFE_INTEGER,\n ObjectDefineProperty,\n ObjectPrototypeIsPrototypeOf,\n@@ -372,8 +373,20 @@ export function hrtime(tim... | 2026-03-20T14:45:38 |
golang/go | 39267791a4fd5f881e3a43b199de4c7bddf3f179 | 0613d0309ce820ee651d7a0cf8e158c87fc6c444 | spec: predeclared types are named, not defined types
We want the predeclared types (excluding any) to have unique identity.
Originally (Go 1.0), the only types with unique identity were named
types (and they happened to have names).
When we introduced alias declarations, we changed the terminology and
called named ty... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Language version go1.27 (March 16, 2026)\",\n+\t\"Subtitle\": \"Language version go1.27 (March 20, 2026)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -825,8 +825,... | 2026-03-19T22:59:47 |
mrdoob/three.js | ed04b9317ca92313a26605e26ef9d52a0bbd0f3d | daa858f37fc42d3e064572a762e07f20f93ef613 | Fix JSDoc Example (#32603) | [
{
"path": "src/nodes/core/MRTNode.js",
"patch": "@@ -31,7 +31,7 @@ export function getTextureIndex( textures, name ) {\n * const mrtNode = mrt( {\n * output: output,\n * normal: normalView\n- * } ) );\n+ * } ) ;\n * ```\n * The MRT output is defined as a dictionary.\n *",
"additions": 1,
"... | 2025-12-22T09:32:32 |
vuejs/vue | c319cc7a74a790414c33db74ad9f1070851de76b | a00c63beb4a9acb0495729e9aa148c5d08d30a37 | fix: guard against non-object provide value | [
{
"path": "src/core/instance/inject.ts",
"patch": "@@ -1,4 +1,4 @@\n-import { warn, hasSymbol, isFunction } from '../util/index'\n+import { warn, hasSymbol, isFunction, isObject } from '../util/index'\n import { defineReactive, toggleObserving } from '../observer/index'\n import type { Component } from 'typ... | 2022-06-01T14:18:05 |
denoland/deno | 5a92ed20c018c894e2e7eab81b80f8d2caec5d40 | 8a4988797cbb1f706ec6b3760080c15b78c092ec | fix(ext/node): implement process.threadCpuUsage() (#32829)
- Implement `process.threadCpuUsage()` returning per-thread CPU usage
(user/system in microseconds)
- Add `op_current_thread_cpu_usage` Rust op reusing existing
platform-specific thread CPU usage infrastructure (mach `thread_info` on
macOS, `/proc/self/task` o... | [
{
"path": "ext/node/polyfills/process.ts",
"patch": "@@ -8,6 +8,7 @@ import { core, internals, primordials } from \"ext:core/mod.js\";\n import { initializeDebugEnv } from \"ext:deno_node/internal/util/debuglog.ts\";\n import { format } from \"ext:deno_node/internal/util/inspect.mjs\";\n import {\n+ op_cur... | 2026-03-20T14:27:07 |
golang/go | 0613d0309ce820ee651d7a0cf8e158c87fc6c444 | 9b4244e9eaab2b2b4bdf197462d336ac2e3a5284 | net/http: fix panic in ServeTLS on nil TLSConfig
Change-Id: I9bc588128ec36bb3725d15e52400b76a94e5cb3a
Reviewed-on: https://go-review.googlesource.com/c/go/+/758560
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Nicholas Husin <nsh@golang.org>
Reviewed-by: Nichola... | [
{
"path": "src/net/http/server.go",
"patch": "@@ -3539,7 +3539,11 @@ func (s *Server) ServeTLS(l net.Listener, certFile, keyFile string) error {\n \t\treturn err\n \t}\n \n-\tconfig, err := s.setupTLSConfig(certFile, keyFile, adjustNextProtos(s.TLSConfig.NextProtos, s.protocols()))\n+\tvar nextProtos []stri... | 2026-03-24T07:03:10 |
mrdoob/three.js | 5c4f7efd2607f47bc1cc49e4b286afa2081d9a88 | 48c607f85e03d15329470ef32d6a9d1d36d23687 | WebGLRenderer: Fix `PCFSoftShadowMap` check. (#32593) | [
{
"path": "src/renderers/webgl/WebGLShadowMap.js",
"patch": "@@ -96,10 +96,10 @@ function WebGLShadowMap( renderer, objects, capabilities ) {\n \n \t\tif ( lights.length === 0 ) return;\n \n-\t\tif ( lights.type === PCFSoftShadowMap ) {\n+\t\tif ( this.type === PCFSoftShadowMap ) {\n \n \t\t\twarn( 'WebGLSh... | 2025-12-20T09:34:44 |
denoland/deno | 8a4988797cbb1f706ec6b3760080c15b78c092ec | fe6dcf2e7dd7a12d1f92298dc5fa02db2401e9cd | fix(ext/node): freeze os.constants.signals to match Node.js (#32836)
- Freezes `os.constants.signals` so that property assignment throws
`TypeError` in strict mode, matching Node.js behavior
- Enables `parallel/test-os-constants-signals.js` in node compat tests
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@an... | [
{
"path": "ext/node/polyfills/internal_binding/constants.ts",
"patch": "@@ -1,5 +1,7 @@\n // Copyright 2018-2026 the Deno authors. MIT license.\n \n+import { primordials } from \"ext:core/mod.js\";\n+const { ObjectFreeze } = primordials;\n import { op_node_build_os, op_node_fs_constants } from \"ext:core/op... | 2026-03-20T10:28:51 |
vuejs/vue | a00c63beb4a9acb0495729e9aa148c5d08d30a37 | ffaf81ba5f5d0cecb9eaa0b661685a13a20d0627 | chore: fix test alias | [
{
"path": "vitest.config.ts",
"patch": "@@ -9,7 +9,7 @@ export default defineConfig({\n compiler: resolve('src/compiler'),\n core: resolve('src/core'),\n server: resolve('packages/server-renderer/src'),\n- sfc: resolve('src/sfc'),\n+ sfc: resolve('packages/compiler-sfc/src'),\n ... | 2022-06-01T14:15:27 |
golang/go | 9b4244e9eaab2b2b4bdf197462d336ac2e3a5284 | c861da326e5d6a0350b200f758f6430de48a4ae5 | runtime: return the error code as a return value in syscallN_trampoline
Getting errno from assembly code is cheap. There is no need to
overcomplicate syscall_rawsyscalln to get errno from the cached errno
address pointer stored in the M struct.
This also better aligns syscallN_trampoline with the cgocall convention
o... | [
{
"path": "src/runtime/os_darwin.go",
"patch": "@@ -15,11 +15,6 @@ type mOS struct {\n \tmutex pthreadmutex\n \tcond pthreadcond\n \tcount int\n-\n-\t// address of errno variable for this thread.\n-\t// This is an optimization to avoid calling libc_error\n-\t// on every syscall_rawsyscall... | 2026-03-10T09:48:31 |
mrdoob/three.js | 48c607f85e03d15329470ef32d6a9d1d36d23687 | adc26e13beb1cfccc4c44f4de1f68e11f41e4510 | WebGLRenderer: Fix shadow map uniform management. (#32590) | [
{
"path": "src/renderers/WebGLRenderer.js",
"patch": "@@ -2210,12 +2210,9 @@ class WebGLRenderer {\n \t\t\t\tuniforms.pointLightShadows.value = lights.state.pointShadow;\n \t\t\t\tuniforms.hemisphereLights.value = lights.state.hemi;\n \n-\t\t\t\tuniforms.directionalShadowMap.value = lights.state.directional... | 2025-12-20T09:20:33 |
vuejs/vue | ffaf81ba5f5d0cecb9eaa0b661685a13a20d0627 | 206f8a7f0949a50ae062d9d71061716ae3c3a749 | chore: fix type tests | [
{
"path": "packages/server-renderer/package.json",
"patch": "@@ -34,10 +34,11 @@\n \"source-map\": \"0.5.6\"\n },\n \"devDependencies\": {\n+ \"@types/webpack\": \"^4.41.32\",\n+ \"file-loader\": \"^3.0.1\",\n \"memory-fs\": \"^0.5.0\",\n \"vue\": \"file:../..\",\n- \"webpack\": \"^... | 2022-06-01T14:12:02 |
denoland/deno | fe6dcf2e7dd7a12d1f92298dc5fa02db2401e9cd | 3b8478109b212be528d385da3a936ea0f110ce24 | fix(ext/node): enable node compat test for v8.getHeapStatistics (#32833)
Enables `parallel/test-v8-stats.js` in `tests/node_compat/config.jsonc`
Ref https://github.com/denoland/deno/issues/32706
---------
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> | [
{
"path": "ext/node/ops/v8.rs",
"patch": "@@ -37,6 +37,7 @@ pub fn op_v8_get_heap_statistics(\n buffer[11] = stats.total_global_handles_size() as f64;\n buffer[12] = stats.used_global_handles_size() as f64;\n buffer[13] = stats.external_memory() as f64;\n+ buffer[14] = stats.total_allocated_bytes() a... | 2026-03-20T10:28:14 |
golang/go | 9d5d6af2d5bb4128f7e0759434a44839898c39a2 | f26befb380e7b0a5e8c083cacfcd141b4c2d413a | net/http: make ResponseWriter.ReadFrom respect declared Content-Length
Unlike ResponseWriter.Write, ResponseWriter.ReadFrom does not currently
respect declared Content-Length header. As a result, it is possible for
a server handler to inadvertently write more bytes for their response
body than has been declared via Co... | [
{
"path": "src/net/http/serve_test.go",
"patch": "@@ -1612,6 +1612,65 @@ func testHeadReaderFrom(t *testing.T, mode testMode) {\n \t}\n }\n \n+// Ensure ResponseWriter.ReadFrom respects declared Content-Length header.\n+// https://go.dev/issue/78179.\n+func TestReaderFromTooLong(t *testing.T) { run(t, testR... | 2026-03-17T01:20:11 |
mrdoob/three.js | 9488c011f4d47352d3a0fabc57f65eccbf4b123b | a9c17ce299312079fa4e2156fead341743aecc31 | GLTFLoader: Fix empty groups when multiple scenes reference same nodes (#32567) | [
{
"path": "examples/jsm/loaders/GLTFLoader.js",
"patch": "@@ -66,6 +66,7 @@ import {\n \tInstancedBufferAttribute\n } from 'three';\n import { toTrianglesDrawMode } from '../utils/BufferGeometryUtils.js';\n+import { clone } from '../utils/SkeletonUtils.js';\n \n /**\n * A loader for the glTF 2.0 format.\n@... | 2025-12-18T09:27:22 |
vuejs/vue | a9a2fae970b43150895677fbf3ea6017977164c8 | bafb5d419d49ac60c431184160c8e74fe010fc25 | build: fix mjs build publish | [
{
"path": "package.json",
"patch": "@@ -11,6 +11,7 @@\n \"files\": [\n \"src\",\n \"dist/*.js\",\n+ \"dist/*.mjs\",\n \"types/*.d.ts\",\n \"compiler-sfc\",\n \"packages/compiler-sfc\"",
"additions": 1,
"deletions": 0,
"language": "JSON"
}
] | 2022-06-01T03:12:30 |
denoland/deno | 3b8478109b212be528d385da3a936ea0f110ce24 | 8f200f195312c69ec6c53a34dc0de7245b28e1e2 | fix: rewrite approve_scripts_no_lock as PTY tests, skip lockfile test on Windows (#32853)
- Rewrite `approve_scripts_no_lock` spec tests as PTY-based integration
tests — the spec test `approve_scripts_detects_packages` hangs because
`deno approve-scripts` (no args) launches an interactive picker that
blocks with... | [
{
"path": "tests/integration/pm_tests.rs",
"patch": "@@ -280,3 +280,59 @@ fn approve_scripts_deny_some() {\n .join(\"install.txt\")\n .assert_matches_text(\"Installed by @denotest/node-lifecycle-scripts!\");\n }\n+\n+#[test(flaky)]\n+fn approve_scripts_no_lock_explicit_package() {\n+ let context = ... | 2026-03-20T10:23:47 |
golang/go | f26befb380e7b0a5e8c083cacfcd141b4c2d413a | e1bc5cea825171f68f928686ed02a0d0abddd84c | net: avoid wrapping io.EOF in UnixConn read methods
The io.Reader contract requires that Read methods return io.EOF
directly instead of wrapping it in another error.
Currently UnixConn.ReadFromUnix, ReadFrom, and ReadMsgUnix wrap
io.EOF inside net.OpError, causing callers checking for io.EOF
to fail.
Fix by avoiding... | [
{
"path": "doc/next/78137.md",
"patch": "@@ -0,0 +1,2 @@\n+net: UnixConn read methods now return io.EOF directly instead of\r\n+wrapping it in net.OpError when the underlying read returns EOF.\n\\ No newline at end of file",
"additions": 2,
"deletions": 0,
"language": "Markdown"
},
{
"pa... | 2026-03-13T05:38:32 |
mrdoob/three.js | e796263ee25703290d920d958888061b799c7ded | 65d2de79e8f85065bab55020cde68538d9d03996 | JoltPhysics: Fix dynamic import Vite warning | [
{
"path": "examples/jsm/physics/JoltPhysics.js",
"patch": "@@ -77,7 +77,7 @@ async function JoltPhysics() {\n \n \tif ( Jolt === null ) {\n \n-\t\tconst { default: initJolt } = await import( `${JOLT_PATH}` );\n+\t\tconst { default: initJolt } = await import( JOLT_PATH /* @vite-ignore */ );\n \t\tJolt = awai... | 2025-12-16T06:19:03 |
vuejs/vue | 1b7584664da1e1e504ca30fd2630bb8f8ab2347a | 1b49c75e2aa909b8f1dabd1c52cd84f532268ee5 | workflow: fix release check + remove dist file from git index | [
{
"path": ".github/workflows/release-tag.yml",
"patch": "@@ -0,0 +1,23 @@\n+on:\n+ push:\n+ tags:\n+ - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10\n+\n+name: Create Release\n+\n+jobs:\n+ build:\n+ name: Create Release\n+ runs-on: ubuntu-latest\n+ steps:\n+ - name: Checkou... | 2022-05-31T09:56:20 |
denoland/deno | 8f200f195312c69ec6c53a34dc0de7245b28e1e2 | 391a2c8e9430e01611886c609f67a45e86b2b007 | fix(npm): `approve-scripts` detects packages when lockfile is disabled (#32842)
## Summary
- Fix `deno approve-scripts` failing to detect packages with lifecycle
scripts when `"lock": false` is set in `deno.json`
- The issue was that `approve-scripts` queried the npm resolution
snapshot without first resolving package... | [
{
"path": "cli/tools/pm/approve_scripts.rs",
"patch": "@@ -78,6 +78,10 @@ pub async fn approve_scripts(\n Vec::new(),\n )\n } else {\n+ let npm_installer = factory.npm_installer().await?;\n+ npm_installer\n+ .ensure_top_level_package_json_install()\n+ .await?;\n let npm_resol... | 2026-03-20T06:19:22 |
mrdoob/three.js | 65d2de79e8f85065bab55020cde68538d9d03996 | 0ec9a77ef03a5f72f06d2da2404d9e4217973cee | RapierPhysics: Fix dynamic import Vite warning (#32565)
Co-authored-by: Claude <noreply@anthropic.com> | [
{
"path": "examples/jsm/physics/RapierPhysics.js",
"patch": "@@ -97,7 +97,7 @@ async function RapierPhysics() {\n \n \tif ( RAPIER === null ) {\n \n-\t\tRAPIER = await import( `${RAPIER_PATH}` );\n+\t\tRAPIER = await import( RAPIER_PATH /* @vite-ignore */ );\n \t\tawait RAPIER.init();\n \n \t}",
"additi... | 2025-12-16T05:51:10 |
golang/go | e1bc5cea825171f68f928686ed02a0d0abddd84c | 224489f11c2e0b394e93980fc8292c52f60b18a8 | net/http/internal/http2: modernize the package
This CL is mostly generated by running go fix. Manual edits have also been
selectively done to modernize the package where doing so is straightforward; for
example, using slices.Contains in lieu of strSliceContains.
Change-Id: Ie2942481672c56c370e2df0f172cf3e480a12bc5
Re... | [
{
"path": "src/net/http/internal/http2/client_conn_pool.go",
"patch": "@@ -10,6 +10,7 @@ import (\n \t\"context\"\n \t\"errors\"\n \t\"net\"\n+\t\"slices\"\n \t\"sync\"\n )\n \n@@ -211,10 +212,8 @@ func (c *addConnCall) run(t *Transport, key string, nc net.Conn) {\n \n // p.mu must be held\n func (p *client... | 2026-03-13T15:43:05 |
vuejs/vue | 1b49c75e2aa909b8f1dabd1c52cd84f532268ee5 | ff4f1fdf37fd255ef441b6b615f4e90cba4d1c4b | chore: fix unit test | [
{
"path": "test/unit/modules/server-compiler/compiler-options.spec.ts",
"patch": "@@ -1,4 +1,4 @@\n-import { ssrCompile } from 'web/server/compiler'\n+import { ssrCompile } from 'server/compiler'\n \n describe('ssrCompile options', () => {\n it('comments', () => {",
"additions": 1,
"deletions": 1,... | 2022-05-31T09:45:10 |
denoland/deno | 756d5d92e8028dbaff836e50f31e5875b757c7d4 | 8ab268c51ce041f60fe6b514030a818b28043e11 | fix(ext/node): emit request "close" before socket "free" in keep-alive path (#32811)
Fixes a keep-alive socket lifecycle ordering bug where
`socket.emit("free")` fired before `request.on("close")` handlers had a
chance to run. This caused libraries like `node-fetch` that attach
per-request listeners to the socket (and... | [
{
"path": "ext/node/polyfills/http.ts",
"patch": "@@ -1305,13 +1305,24 @@ export class IncomingMessageForClient extends NodeReadable {\n req._socketErrorListener = null;\n }\n \n- socket.emit(\"free\");\n-\n- // Clear references so old request/response don't destroy the pooled socket... | 2026-03-19T19:44:53 |
mrdoob/three.js | 0ec9a77ef03a5f72f06d2da2404d9e4217973cee | 81f1bca2a658d4ae928388ebd85238331afd02e7 | UniformsGroup: Add range cache and fix clear old update ranges (#32561) | [
{
"path": "src/renderers/common/Bindings.js",
"patch": "@@ -364,6 +364,12 @@ class Bindings extends DataMap {\n \n \t\t\t}\n \n+\t\t\tif ( binding.isBuffer && binding.updateRanges.length > 0 ) {\n+\n+\t\t\t\tbinding.clearUpdateRanges();\n+\n+\t\t\t}\n+\n \t\t}\n \n \t\tif ( needsBindingsUpdate === true ) {"... | 2025-12-15T20:24:20 |
vuejs/vue | dd39e7ef4cbda470f347aa249b3be058b4fc8f16 | ef297d94f9c8611db730efc592471b8a150b386b | chore: fix TS 4.7 error | [
{
"path": "src/core/util/perf.ts",
"patch": "@@ -8,9 +8,13 @@ if (__DEV__) {\n /* istanbul ignore if */\n if (\n perf &&\n+ // @ts-ignore\n perf.mark &&\n+ // @ts-ignore\n perf.measure &&\n+ // @ts-ignore\n perf.clearMarks &&\n+ // @ts-ignore\n perf.clearMeasures\n ) {\... | 2022-05-31T08:11:55 |
golang/go | 224489f11c2e0b394e93980fc8292c52f60b18a8 | 325eedb2a993aafb7f20738d73a1098036447917 | cmd/go: fix autocgo test fail when set CGO_ENABLED during make.bash
Details see CL 706095
Fixes #75340
Change-Id: Ic7276f2fb3abc5f02f224d82e1f26844888f0a1e
Reviewed-on: https://go-review.googlesource.com/c/go/+/757182
Reviewed-by: Cherry Mui <cherryyz@google.com>
Reviewed-by: Michael Matloob <matloob@golang.org>
LUC... | [
{
"path": "src/cmd/go/scriptconds_test.go",
"patch": "@@ -10,6 +10,7 @@ import (\n \t\"cmd/internal/script/scripttest\"\n \t\"errors\"\n \t\"fmt\"\n+\t\"internal/buildcfg\"\n \t\"internal/testenv\"\n \t\"os\"\n \t\"os/exec\"\n@@ -47,6 +48,7 @@ func scriptConditions(t *testing.T) map[string]script.Cond {\n \... | 2026-03-21T01:25:14 |
denoland/deno | 8a5a704ce83c562c7ed710172c5b3ae67b2d933a | af16b8aebf7b87336bec9dc6b74bae6df22ef71c | fix: make flamegraph SVG fill full browser viewport (#32727)
Fixes #32725
The flamegraph SVG had a fixed pixel `height` attribute, which combined
with the `viewBox` aspect ratio, caused the browser to constrain the
rendered width — leaving the right side of the viewport empty. | [
{
"path": "runtime/cpu_profiler/flamegraph.js",
"patch": "@@ -28,7 +28,7 @@ function init(evt) {\n toggle_invert();\n });\n }\n- orig_height = parseFloat(svg.attributes.height.value);\n+ orig_height = parseFloat(frames.getAttribute(\"fg:content_height\"));\n // Fluid: fill viewport width and... | 2026-03-19T15:08:48 |
vuejs/vue | ef297d94f9c8611db730efc592471b8a150b386b | 9f74f2048d0d6e67fd112f0f28c0dbad43e15217 | chore: fix dep | [
{
"path": "package.json",
"patch": "@@ -65,7 +65,7 @@\n },\n \"homepage\": \"https://github.com/vuejs/vue#readme\",\n \"dependencies\": {\n- \"@vue/compiler-sfc\": \"2.6.14\"\n+ \"@vue/compiler-sfc\": \"workspace:*\"\n },\n \"devDependencies\": {\n \"@microsoft/api-extractor\": \"^7.24.2... | 2022-05-31T08:02:41 |
denoland/deno | f45e443d834fab85dd87b7d6253006fcc2cf50ff | c436b5fba79032e3fa0e80f795eb25c3bec55243 | refactor(core): move timer processing from Rust to JavaScript (#32543)
## Summary
- Moves user timer management (setTimeout/setInterval) from Rust's
`BTreeSet` to a JavaScript-side implementation matching Node.js's timer
architecture: linked lists bucketed by duration, binary min-heap
priority queue, and a single nat... | [
{
"path": "ext/node/polyfills/internal/crypto/_randomBytes.ts",
"patch": "@@ -77,7 +77,7 @@ export default function randomBytes(\n const resource = {};\n emitInit(asyncId, \"RANDOMBYTESREQUEST\", triggerAsyncId, resource);\n \n- setTimeout(() => {\n+ process.nextTick(() => {\n emitBefore... | 2026-03-19T14:01:05 |
golang/go | 325eedb2a993aafb7f20738d73a1098036447917 | 07f0c2074c257e7f89a52152f451c66e7f762481 | runtime/race: apply LLVM zero-initialization fix
Upstream TSAN had bug that could result in use of uninitialized memory
on Go threads that don't have any TSAN events. For example, if the
thread only ever runs the GC.
This bug was fixed upstream in
https://github.com/llvm/llvm-project/commit/cdfdb06c9155080ec97d6e4f4d... | [
{
"path": "src/runtime/race/README",
"patch": "@@ -4,16 +4,16 @@ the LLVM project (https://github.com/llvm/llvm-project/tree/main/compiler-rt).\n \n To update the .syso files use golang.org/x/build/cmd/racebuild.\n \n-internal/amd64v1/race_darwin.syso built with LLVM 51bfeff0e4b0757ff773da6882f4d538996c9b04... | 2026-03-18T18:14:20 |
vuejs/vue | b3a8ccf3d29631b9d5a76ba63908b3d1a1dec18b | 2acb5474bceb533aadc547921c22fa5cd471a3e1 | chore: fix test script [ci skip] | [
{
"path": "package.json",
"patch": "@@ -23,7 +23,7 @@\n \"build\": \"node scripts/build.js\",\n \"build:ssr\": \"npm run build -- web-runtime-cjs,web-server-renderer\",\n \"build:types\": \"rimraf temp && tsc --declaration --emitDeclarationOnly --outDir temp && api-extractor run\",\n- \"test\... | 2022-05-30T13:41:00 |
golang/go | 5f5f4ccdb385fa73de5729cfe8c0336b44a88f4c | 16018b05ae226e7a99f166bded7f939c5b0c4a98 | Revert "runtime, cmd/compile: use preemptible memclr for large pointer-free clears"
This reverts CL 750480.
Reason: Adding preemptible memclrNoHeapPointers exposes existing unsafe
use of notInHeapSlice, causing crashes. Revert the memclr stack until
the underlying issue is fixed.
We keep the test added in CL 755942,... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -1605,13 +1605,11 @@\n => (AndB (MemEq p q (Const64 <typ.Int64> [16]) mem)\n (MemEq (OffPtr <p.Type> p [16]) (OffPtr <q.Type> q [16]) (Const64 <typ.Int64> [c-16]) mem))\n \n-// Turn known-size calls to memclrNoHeapPointer... | 2026-03-20T21:50:07 |
denoland/deno | c436b5fba79032e3fa0e80f795eb25c3bec55243 | b3e93cf7bd7e795ffe09d9212f72d8ae65f5986e | fix(ext/node): improve readline and EventEmitter compat (#32826)
## Summary
- **readline**: `pause()`/`resume()` now throw `ERR_USE_AFTER_CLOSE`
when called after `close()`, matching Node.js behavior
- **events**: `listenerCount()` now supports `EventTarget` objects
(delegates to `getEventListeners()`)
- **events**: ... | [
{
"path": "ext/node/polyfills/_events.mjs",
"patch": "@@ -50,6 +50,7 @@ const {\n } = primordials;\n \n const kRejection = SymbolFor(\"nodejs.rejection\");\n+const kWatermarkData = SymbolFor(\"nodejs.watermarkData\");\n export const kEvents = Symbol(\"kEvents\");\n \n import { inspect } from \"ext:deno_node... | 2026-03-19T13:58:51 |
mrdoob/three.js | b1bddc9b9e54e5f38594e6cbe56db79fd9d41237 | 0bc25c1c9e31f04b0fc6ac7d994e8fc690734aba | WebGPURenderer: Fix shadow comparison on Adreno GPUs (#32548) | [
{
"path": "src/constants.js",
"patch": "@@ -1680,6 +1680,16 @@ export const InterpolationSamplingMode = {\n \tEITHER: 'either'\n };\n \n+/**\n+ * Compatibility flags for features that may not be supported across all platforms.\n+ *\n+ * @type {Object}\n+ * @constant\n+ */\n+export const Compatibility = {\n+... | 2025-12-14T14:52:40 |
vuejs/vue | 075f215edfff12b50b80d9e5cd230548bb98538a | 15c5c43ca65443a463013010f9d55ce54b0f4e59 | wip: onTrack/onTrigger debugger options | [
{
"path": "src/core/observer/array.ts",
"patch": "@@ -3,6 +3,7 @@\n * dynamically accessing methods on Array prototype\n */\n \n+import { TriggerOpTypes } from '../../v3'\n import { def } from '../util/index'\n \n const arrayProto = Array.prototype\n@@ -39,7 +40,15 @@ methodsToPatch.forEach(function (meth... | 2022-05-29T07:39:49 |
golang/go | 16018b05ae226e7a99f166bded7f939c5b0c4a98 | 2de90fd48f2e4e38c2805e81b37d4116004752e2 | Revert "runtime: fix memclrNoHeapPointersPreemptible"
This reverts CL 756122.
Reason: Adding preemptible memclrNoHeapPointers exposes existing unsafe
use of notInHeapSlice, causing crashes. Revert the memclr stack until
the underlying issue is fixed.
For #78254.
Change-Id: I8a234d1a6dddf70d9aa5ecda1ac8bb25deb08248
... | [
{
"path": "src/runtime/malloc.go",
"patch": "@@ -2184,27 +2184,22 @@ func reusableSize(size uintptr) bool {\n // Use this with care; if the data being cleared is tagged to contain\n // pointers, this allows the GC to run before it is all cleared.\n func memclrNoHeapPointersChunked(size uintptr, x unsafe.Poi... | 2026-03-20T21:49:14 |
mrdoob/three.js | a7b42b13a591ac9c6abac8c7568ad7f3c6e0a562 | 1d52482a1e84ccd88cfc5744b41f783aabc29f66 | Update Pipelines.js
Fix JSDoc. | [
{
"path": "src/renderers/common/Pipelines.js",
"patch": "@@ -344,7 +344,7 @@ class Pipelines extends DataMap {\n \t * @param {ProgrammableStage} stageFragment - The programmable stage representing the fragment shader.\n \t * @param {string} cacheKey - The cache key.\n \t * @param {?Array<Promise>} promises ... | 2025-12-13T10:52:31 |
denoland/deno | 42eb6ab0d626addee4cc8aee76a4f6d69a1609c2 | a2a795569abadeb64d04416e28a13bc38614fbe0 | fix(ext/node): add key/IV length validation for aes-128-cbc and ecb cipher modes (#32824)
Validate key and IV lengths for aes-128-cbc, aes-128-ecb, aes-192-ecb,
and aes-256-ecb before constructing ciphers, matching the pattern
already used by aes-256-cbc, ctr, and gcm modes.
Co-authored-by: Claude Opus 4.6 (1M contex... | [
{
"path": "ext/node_crypto/cipher.rs",
"patch": "@@ -221,11 +221,32 @@ impl Cipher {\n use Cipher::*;\n Ok(match algorithm_name {\n \"aes128\" | \"aes-128-cbc\" => {\n+ if key.len() != 16 {\n+ return Err(CipherError::InvalidKeyLength);\n+ }\n+ if iv.len() != 16 {\... | 2026-03-19T07:02:28 |
vuejs/vue | 15c5c43ca65443a463013010f9d55ce54b0f4e59 | 9fb4f7d0702d34ccfabe59fa4f9713ee9755ab58 | wip: onTrack debugger option | [
{
"path": "src/core/instance/state.ts",
"patch": "@@ -30,6 +30,7 @@ import {\n isFunction\n } from '../util/index'\n import type { Component } from 'typescript/component'\n+import { TrackOpTypes } from '../../v3'\n \n const sharedPropertyDefinition = {\n enumerable: true,\n@@ -254,6 +255,14 @@ function ... | 2022-05-29T07:05:35 |
mrdoob/three.js | 16ec7c4352d380378e56a79d7871663af046fedf | 87915bbd2cb2654f751cd04949ba8f424e314ebf | Update Renderer.js
Fix JSDoc. | [
{
"path": "src/renderers/common/Renderer.js",
"patch": "@@ -560,8 +560,7 @@ class Renderer {\n \t\t * and pipeline updates.\n \t\t *\n \t\t * @private\n-\t\t * @type {?Function}\n-\t\t * @default null\n+\t\t * @type {Function}\n \t\t */\n \t\tthis._handleObjectFunction = this._renderObjectDirect;\n ",
"... | 2025-12-12T09:41:55 |
golang/go | 2de90fd48f2e4e38c2805e81b37d4116004752e2 | bfa3dc402859a92f00b88ebab500d44c64e28185 | cmd/compile/internal/noder: don't shoot oneself (fix silly mistake)
When reading multiple promoted fields in a struct literal from UIR,
don't overwrite the (top-level) struct literal type needed for the
next field.
Fixes #78262.
For #9859.
Change-Id: Ifac64537bebcb7dbb79a6173d0cd032cbf0b8ed8
Reviewed-on: https://go-... | [
{
"path": "src/cmd/compile/internal/noder/reader.go",
"patch": "@@ -3117,6 +3117,7 @@ func (r *reader) structElems(typ *types.Type, valuesOnly bool, elems []ir.Node)\n \t\tvar fld *types.Field\n \t\tif n := r.Int(); n < 0 {\n \t\t\t// embedded field\n+\t\t\ttyp := typ // don't modify the original typ\n \t\t... | 2026-03-21T00:14:59 |
denoland/deno | a2a795569abadeb64d04416e28a13bc38614fbe0 | a087e7ccf983ab2ef304a1c3baf1c47892207d78 | fix(ext/node): improve node:dns module compatibility (#32704)
## Summary
- Support `--dns-result-order` flag via `NODE_OPTIONS` env var by
parsing it in the node_options binding and making `dnsOrder`
initialization lazy (evaluated at runtime instead of snapshot time)
- Replace `node:punycode` import with `internal/idn... | [
{
"path": "ext/node/polyfills/internal/dns/promises.ts",
"patch": "@@ -64,7 +64,7 @@ import cares, {\n GetNameInfoReqWrap,\n QueryReqWrap,\n } from \"ext:deno_node/internal_binding/cares_wrap.ts\";\n-import { toASCII } from \"node:punycode\";\n+import { domainToASCII } from \"ext:deno_node/internal/idna... | 2026-03-19T06:51:35 |
vuejs/vue | b4c511da8f82d4bf130284a5242ea745cf8c7ae1 | 54f5f9bad6350993b176dedd60ce118a47887c56 | chore: fix unit tests | [
{
"path": "src/core/observer/index.ts",
"patch": "@@ -19,6 +19,8 @@ import { isReadonly, isRef } from '../../v3'\n \n const arrayKeys = Object.getOwnPropertyNames(arrayMethods)\n \n+const NO_INIITIAL_VALUE = {}\n+\n /**\n * In some cases we may want to disable observation inside a component's\n * update c... | 2022-05-28T18:33:46 |
mrdoob/three.js | 87915bbd2cb2654f751cd04949ba8f424e314ebf | 6e2cef6a521fb7b1a23b9923d003e5bc0d9cffd7 | WebGPURenderer: Fix `compileAsync()` with target scenes. (#32530) | [
{
"path": "src/renderers/common/Renderer.js",
"patch": "@@ -847,6 +847,7 @@ class Renderer {\n \t\tconst previousRenderId = nodeFrame.renderId;\n \t\tconst previousRenderContext = this._currentRenderContext;\n \t\tconst previousRenderObjectFunction = this._currentRenderObjectFunction;\n+\t\tconst previousHa... | 2025-12-11T15:38:42 |
golang/go | 0a750df0b23cefd951f2c9c8154acce66c05b739 | f2dae4c19d20070eeb2cef6baa5c20e0081f53f9 | Revert "cmd/compile: don't call memclrNoHeapPointersPreemptible from nosplit functions"
This reverts CL 756123.
Reason: Adding preemptible memclrNoHeapPointers exposes existing unsafe
use of notInHeapSlice, causing crashes. Revert the memclr stack until
the underlying issue is fixed.
For #78254.
Change-Id: Ic5e6eee... | [
{
"path": "src/cmd/compile/internal/walk/assign.go",
"patch": "@@ -723,8 +723,6 @@ func extendSlice(n *ir.CallExpr, init *ir.Nodes) ir.Node {\n \tif hasPointers {\n \t\tclrname = \"memclrHasPointers\"\n \t\tir.CurFunc.SetWBPos(n.Pos())\n-\t} else if ir.CurFunc.Pragma&ir.Nosplit != 0 {\n-\t\tclrname = \"memc... | 2026-03-20T21:45:30 |
denoland/deno | a087e7ccf983ab2ef304a1c3baf1c47892207d78 | e1ef181d95d0864615b6ccc2b36ff8599ef33f71 | fix(watch): support graceful shutdown via SIGTERM dispatch (#32564)
## Summary
- When watch mode restarts (file change) or exits (Ctrl+C),
synthetically dispatch SIGTERM to any registered signal handlers before
cancelling the running operation
- If SIGTERM handlers are registered, wait up to 10 seconds for the
operat... | [
{
"path": "cli/util/file_watcher.rs",
"patch": "@@ -39,6 +39,7 @@ use crate::util::fs::canonicalize_path;\n \n const CLEAR_SCREEN: &str = \"\\x1B[H\\x1B[2J\\x1B[3J\";\n const DEBOUNCE_INTERVAL: Duration = Duration::from_millis(200);\n+const GRACEFUL_SHUTDOWN_TIMEOUT: Duration = Duration::from_secs(5);\n \n ... | 2026-03-18T21:40:16 |
mrdoob/three.js | d7186e7dc9f4d325d7d75b9011ed14559fcf99ab | f3bb8893ca30b23853a623e747c8d2f4bf39cad7 | UnrealBloomPass: Fix alpha handling. (#32517) | [
{
"path": "examples/jsm/postprocessing/UnrealBloomPass.js",
"patch": "@@ -1,8 +1,9 @@\n import {\n-\tAdditiveBlending,\n \tColor,\n+\tCustomBlending,\n \tHalfFloatType,\n \tMeshBasicMaterial,\n+\tOneFactor,\n \tShaderMaterial,\n \tUniformsUtils,\n \tVector2,\n@@ -187,7 +188,11 @@ class UnrealBloomPass exten... | 2025-12-09T09:47:09 |
vuejs/vue | 54f5f9bad6350993b176dedd60ce118a47887c56 | c9136b12759cfa873d82130f5c07056c018807b2 | chore: fix ssr tests | [
{
"path": "src/core/instance/state.ts",
"patch": "@@ -60,7 +60,8 @@ export function initState(vm: Component) {\n if (opts.data) {\n initData(vm)\n } else {\n- observe((vm._data = {}))!.vmCount++\n+ const ob = observe((vm._data = {}))\n+ ob && ob.vmCount++\n }\n if (opts.computed) initCo... | 2022-05-28T18:26:36 |
golang/go | a45c8032bbfdfb4c43cb56536f987501e6709a70 | 79a8ccab29c435966dd41fc8dda144de5dca073e | cmd/go: include test deps in buildinfo
Fixes #76926
Change-Id: I822dd6363dea1c4ad73df5958964c1bfe2c46d19
Reviewed-on: https://go-review.googlesource.com/c/go/+/756240
Reviewed-by: Michael Matloob <matloob@google.com>
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Michael Matloob <matloob@golang.org>
LUCI... | [
{
"path": "src/cmd/go/internal/load/test.go",
"patch": "@@ -294,15 +294,6 @@ func TestPackagesAndErrors(loaderstate *modload.State, ctx context.Context, done\n \n \tpb := p.Internal.Build\n \tpmain.DefaultGODEBUG = defaultGODEBUG(loaderstate, pmain, pb.Directives, pb.TestDirectives, pb.XTestDirectives)\n-\t... | 2026-03-18T00:09:35 |
denoland/deno | e1ef181d95d0864615b6ccc2b36ff8599ef33f71 | e03b7909beafddefa84872a74136c1d7b61d6a5f | fix(ext/node): set kLastWriteWasAsync in JS write path to prevent double callback (#32814)
## Summary
- Set `streamBaseState[kLastWriteWasAsync] = 1` in the JS `writeBuffer`
and `writev` fast path before returning, so `afterWriteDispatched`
correctly identifies the write as async and defers the callback
- Without thi... | [
{
"path": "ext/node/polyfills/internal_binding/stream_wrap.ts",
"patch": "@@ -213,6 +213,13 @@ export class LibuvStreamWrap extends HandleWrap {\n );\n }\n \n+ // Mark as async so afterWriteDispatched does not fire the callback\n+ // synchronously. The Rust write_buffer path sets this on the... | 2026-03-18T21:39:30 |
mrdoob/three.js | cea3fa498481e9f4e6f4e6fe465edef583868ad5 | 9f2fb59543d61e10c5b5178d26dbb845638f18a7 | Examples: Fix MRT readback with WebGL backend. (#32505) | [
{
"path": "examples/webgpu_multiple_rendertargets_readback.html",
"patch": "@@ -155,27 +155,27 @@\n \n \t\t\t\ttorus.rotation.y = ( time / 1000 ) * .4;\n \n-\t\t\t\tconst isMRT = selection === 'mrt';\n+\t\t\t\tconst isReadback = ( selection !== 'mrt' );\n \n \t\t\t\t// render scene into target\n-\t\t\t\tren... | 2025-12-09T09:31:11 |
vuejs/vue | eb20b8228f1a9010f0cf3ebfbe227a4eeb984223 | a16271280a164d4e9ef4af9bb7bd5e58e5cff2dc | ci: fix ci | [
{
"path": ".github/workflows/ci.yml",
"patch": "@@ -67,7 +67,7 @@ jobs:\n - name: Run transition tests\n run: pnpm run test:transition\n \n- lint-and-test-dts:\n+ type-test:\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v2\n@@ -86,8 +86,5 @@ jobs:\n - name:... | 2022-05-25T18:36:51 |
denoland/deno | e03b7909beafddefa84872a74136c1d7b61d6a5f | 852d4994cb559385db0e6dba3b88da00b602f93d | fix(core): implement select fallback on macOS (#32812)
On macos, certain files are incompatible with kqueue. Chief among them
being some of the `/dev/` files. In libuv, there's code that checks if a
file works with kqueue, and if it doesn't then it has a fallback which
uses a background thread that polls via select an... | [
{
"path": "libs/core/uv_compat.rs",
"patch": "@@ -550,10 +550,18 @@ impl UvLoopInner {\n tty.internal_write_queue.clear();\n tty.internal_shutdown = None;\n \n- // Drop the AsyncFd to deregister from the reactor, then close the fd.\n+ // Drop the reactor (AsyncFd or select fallback) to... | 2026-03-18T21:12:38 |
mrdoob/three.js | 13313a4004734726984c0d40cf2a803ca546b800 | 9bb24def05c0767625f7905cbe99ff8d64a9f0a4 | UltraHDRLoader: Remove debug console (#32513) | [
{
"path": "examples/jsm/loaders/UltraHDRLoader.js",
"patch": "@@ -109,8 +109,6 @@ class UltraHDRLoader extends Loader {\n \t */\n \tparse( buffer, onLoad ) {\n \n-\t\tconsole.time( 'UltraHDRLoader' );\n-\n \t\tconst xmpMetadata = {\n \t\t\tversion: null,\n \t\t\tbaseRenditionIsHDR: null,\n@@ -293,8 +291,6 @... | 2025-12-09T02:48:30 |
vuejs/vue | e1e5a75540c31d847000c08f81a4a662eca1ebb5 | f50a1b84d9a0bd6be199847122f8af7cc177dee1 | wip: fix entry with compiler | [
{
"path": "src/platforms/web/entry-runtime-with-compiler-esm.ts",
"patch": "@@ -1,4 +1,4 @@\n-import Vue from './entry-runtime-with-compiler'\n+import Vue from './runtime-with-compiler'\n \n export default Vue\n ",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "src/p... | 2022-05-25T07:07:46 |
golang/go | 686b127fe865e25c1d92a78ba0b56224f3fc0acf | f9bdf58fb186b665b05dc5a5afdeb149a1b3335c | doc: fix 2 links in godebug.md
For #76349.
Change-Id: I27dd7658e6cbcf6afd1287a7ec5a39c576ceee67
Reviewed-on: https://go-review.googlesource.com/c/go/+/756580
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Mateusz Poliwczak <mpoliwczak34@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-a... | [
{
"path": "doc/godebug.md",
"patch": "@@ -156,7 +156,7 @@ and the [go command documentation](/cmd/go#hdr-Build_and_test_caching).\n \n ### Go 1.27\n \n-Go 1.27 removed the `gotypesalias` setting, as noted in the [Go 1.22][#go-122] section.\n+Go 1.27 removed the `gotypesalias` setting, as noted in the [Go 1.... | 2026-03-18T20:53:54 |
mrdoob/three.js | 9bb24def05c0767625f7905cbe99ff8d64a9f0a4 | b80709b08907e86e475cec6506c7b1e07be806be | TSL: Fix get member from array element (#32514) | [
{
"path": "src/nodes/core/ArrayNode.js",
"patch": "@@ -81,7 +81,7 @@ class ArrayNode extends TempNode {\n \n \t\tif ( this.nodeType === null ) {\n \n-\t\t\tthis.nodeType = this.values[ 0 ].getNodeType( builder );\n+\t\t\treturn this.values[ 0 ].getNodeType( builder );\n \n \t\t}\n \n@@ -101,6 +101,25 @@ cla... | 2025-12-09T02:48:13 |
denoland/deno | 852d4994cb559385db0e6dba3b88da00b602f93d | 10128048bf30b6325d419d992af616cd2e8b9303 | fix(ext/node): use constant-time comparison for GCM auth tag verification (#32817)
## Summary
- Replace direct `==` comparison with `subtle::ConstantTimeEq` for
AES-GCM authentication tag verification in both AES-128-GCM and
AES-256-GCM decrypt paths
- The standard `==` operator short-circuits on the first differing ... | [
{
"path": "Cargo.lock",
"patch": "@@ -2828,6 +2828,7 @@ dependencies = [\n \"signature 2.2.0\",\n \"sm3\",\n \"spki 0.7.3\",\n+ \"subtle\",\n \"thiserror 2.0.12\",\n \"tokio\",\n \"x25519-dalek\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "Cargo.toml",
... | 2026-03-18T20:10:18 |
vuejs/vue | 58608a2f26edb64ec4bc48139b6bea14789721b5 | 04b584ffc17db74b4b6330feef9847e936fbb325 | chore: fix ci script | [
{
"path": ".github/workflows/ci.yml",
"patch": "@@ -63,6 +63,8 @@ jobs:\n \n - name: Run e2e tests\n run: pnpm run test:e2e\n+\n+ - name: Run transition tests\n run: pnpm run test:transition\n \n lint-and-test-dts:",
"additions": 2,
"deletions": 0,
"language": "YAML"... | 2022-05-23T07:16:32 |
golang/go | f9bdf58fb186b665b05dc5a5afdeb149a1b3335c | 89ba6eec5c6950d6c24523f81469139a5d88a024 | doc: remove template use in godebug.md
This file used to be implicitly a template prior to CL 733500, but now
it's no longer a template. The only template use here can be trivially
expressed with pure Markdown syntax, so do that. (The alternative path
would be to set 'template: true' explicitly.)
Fixes #78211.
Chang... | [
{
"path": "doc/godebug.md",
"patch": "@@ -136,9 +136,7 @@ are also treated as invalid.\n The defaults that will be compiled into a main package\n are reported by the command:\n \n-{{raw `\n \tgo list -f '{{.DefaultGODEBUG}}' my/main/package\n-`}}\n \n Only differences from the base Go toolchain defaults are... | 2026-03-18T20:00:48 |
mrdoob/three.js | ebb8b45c49e4a06b8ffb36353f043605b5cfe773 | fcdaf6c0a11eacc6cf984a87049147446d844f9c | Fixed typo in BufferGeometry.js (#32477)
Co-authored-by: Saurav Kumar <magnus@Sauravs-MacBook-Pro.local>
Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org> | [
{
"path": "src/core/BufferGeometry.js",
"patch": "@@ -134,7 +134,7 @@ class BufferGeometry extends EventDispatcher {\n \t\t * This dictionary holds the morph targets of the geometry.\n \t\t *\n \t\t * Note: Once the geometry has been rendered, the morph attribute data cannot\n-\t\t * be changed. You will ha... | 2025-12-04T17:39:03 |
denoland/deno | 10128048bf30b6325d419d992af616cd2e8b9303 | d63ae1979f816d61905fec637b39849217c178ed | fix(ext/node): validate process.exitCode and fix process constructor name (#32806)
## Summary
- Validate `process.exitCode` setter to reject non-integer values with
`ERR_INVALID_ARG_TYPE` (matching Node.js behavior)
- Simplify `process.exit()` to delegate validation to the exitCode
setter
- Fix `invalidArgTypeHelper` ... | [
{
"path": "ext/node/polyfills/process.ts",
"patch": "@@ -117,10 +117,8 @@ export const execArgv: string[] = [];\n \n /** https://nodejs.org/api/process.html#process_process_exit_code */\n export const exit = (code?: number | string) => {\n- if (code || code === 0) {\n+ if (code !== undefined) {\n proc... | 2026-03-18T19:34:16 |
vuejs/vue | cca88b9919cb0773895bbcef649c61a206fd0a32 | 76188513233b9640188b3af40a395a49c1ac75be | ci: fix e2e build script | [
{
"path": "package.json",
"patch": "@@ -25,7 +25,7 @@\n \"test\": \"npm run lint && npm run ts-check && npm run test:types && npm run test:unit && npm run test:e2e\",\n \"test:unit\": \"vitest run test/unit\",\n \"test:ssr\": \"npm run build:ssr && vitest run test/ssr\",\n- \"test:e2e\": \"np... | 2022-05-20T10:24:45 |
golang/go | fdd38337f0802ada78e70c4f3db1f440ba08ba2f | 0520d3f35287d5363941b466df6dd2e134620d09 | cmd/link: propagate Mach-O section alignment to symbol in loadmacho
The Mach-O object file loader reads the section alignment from the
section header into ldMachoSect.align, but never calls SetAlign on
the symbol builder when converting sections to linker symbols. This
causes all Mach-O .syso sections to fall back to ... | [
{
"path": "src/cmd/link/internal/loadmacho/ldmacho.go",
"patch": "@@ -570,6 +570,9 @@ func Load(l *loader.Loader, arch *sys.Arch, localSymVersion int, f *bio.Reader,\n \t\t\tbld.SetData(dat[sect.addr-c.seg.vmaddr:][:sect.size])\n \t\t}\n \t\tbld.SetSize(int64(len(bld.Data())))\n+\t\tif sect.align != 0 {\n+\... | 2026-03-17T14:33:28 |
mrdoob/three.js | fcdaf6c0a11eacc6cf984a87049147446d844f9c | 56fc856c1597c14842816f1f43242cecdc36acaa | PolyhedronGeometry: Fix typo in fromJSON() (#32475) | [
{
"path": "src/geometries/PolyhedronGeometry.js",
"patch": "@@ -339,7 +339,7 @@ class PolyhedronGeometry extends BufferGeometry {\n \t */\n \tstatic fromJSON( data ) {\n \n-\t\treturn new PolyhedronGeometry( data.vertices, data.indices, data.radius, data.details );\n+\t\treturn new PolyhedronGeometry( data.... | 2025-12-04T14:31:12 |
denoland/deno | d63ae1979f816d61905fec637b39849217c178ed | cdeec3c4f4031ddadf759b4b90a6c2c900a2f480 | fix(ext/node): skip normalization in path.win32.join for reserved device names (#32808)
## Summary
- When a joined path contains a Windows reserved device name with a
colon (e.g. `CON:`, `PRN:`, `NUL:`), skip `normalize()` and only convert
`/` to `\`, matching Node.js behavior
- This prevents `..` segments from being... | [
{
"path": "ext/node/polyfills/path/_win32.ts",
"patch": "@@ -525,6 +525,36 @@ export function join(...paths: string[]): string {\n }\n }\n \n+ // If any path component is a Windows reserved device name (e.g. CON:,\n+ // PRN:, NUL:), skip normalization to avoid resolving `..` through it.\n+ // This ... | 2026-03-18T19:31:58 |
golang/go | 0520d3f35287d5363941b466df6dd2e134620d09 | 30bfe53dd7485e211247a6d5c2f29a6aea0719a9 | cmd/link: skip special symbols for label symbol generation
Some special symbols, e.g. funcdata symbols, don't have a section
set, because they are laid out as part of the top-level
go:func.* symbol. Similarly, other non-top-level symbols are part
of some top-level symbols. There is no relocation directly
targetting th... | [
{
"path": "src/cmd/link/internal/arm64/asm.go",
"patch": "@@ -1284,6 +1284,9 @@ func gensymlate(ctxt *ld.Link, ldr *loader.Loader) {\n \n \t// addLabelSyms adds \"label\" symbols at s+limit, s+2*limit, etc.\n \taddLabelSyms := func(s loader.Sym, limit, sz int64) {\n+\t\tif ldr.SymSect(s) == nil {\n+\t\t\tlo... | 2026-03-17T15:18:36 |
mrdoob/three.js | 4e86f504a07428d376a149c035a68d89c1360600 | 06a4e973c7902181b1807886c403260898158d48 | UltraHDRLoader: Fix incorrect alpha channel values. (#32464) | [
{
"path": "examples/jsm/loaders/UltraHDRLoader.js",
"patch": "@@ -542,11 +542,11 @@ class UltraHDRLoader extends Loader {\n \n \t\t\t\tif ( this.type === HalfFloatType ) {\n \n-\t\t\t\t\thdrBuffer = new Uint16Array( sdrImageData.data.length ).fill( 23544 );\n+\t\t\t\t\thdrBuffer = new Uint16Array( sdrImageD... | 2025-12-03T00:16:13 |
denoland/deno | cdeec3c4f4031ddadf759b4b90a6c2c900a2f480 | f5d0971d2392e6dda51284f957122f19f4ee0e9e | fix(ext/node): add disabled process function stubs in worker threads (#32809)
## Summary
- In worker threads, replace `process.abort`, `process.chdir`,
`process.send`, `process.disconnect`, and uid/gid setters (`setuid`,
`seteuid`, `setgid`, `setegid`, `setgroups`, `initgroups`) with stubs
that have `.disabled = true... | [
{
"path": "ext/node/polyfills/02_init.js",
"patch": "@@ -42,6 +42,8 @@ function initialize(args) {\n Deno.args,\n Deno.version,\n nodeDebug ?? \"\",\n+ false,\n+ runningOnMainThread,\n );\n internals.__initWorkerThreads(\n runningOnMainThread,",
"additions": 2,
... | 2026-03-18T19:31:29 |
mrdoob/three.js | 3e8ca1e10079de160576088ae2d75cf7defd8645 | d8dc3dd2ead252f40ba4e9c48d2168c34023f126 | Docs: Fix `Renderer` WebGPU convention (#32457) | [
{
"path": "src/renderers/common/Renderer.js",
"patch": "@@ -1843,9 +1843,9 @@ class Renderer {\n \t/**\n \t * Defines the scissor rectangle.\n \t *\n-\t * @param {number | Vector4} x - The horizontal coordinate for the lower left corner of the box in logical pixel unit.\n+\t * @param {number | Vector4} x - ... | 2025-12-02T18:23:13 |
golang/go | 30bfe53dd7485e211247a6d5c2f29a6aea0719a9 | 9ec1d8f335bb76a07e9724fb332a4c2572d0fc3b | cmd/compile: enable promoted field selectors as keys in struct literals
Switch the generated UIR version from V2 to V3.
Adjust cmd/compile/internal/types to accept promoted field selectors
in composite literals.
Fixes #9859.
Change-Id: Ie314e28567cfa6cf4c9e962a07b32dd05b06bf5e
Reviewed-on: https://go-review.googleso... | [
{
"path": "src/cmd/compile/internal/noder/unified.go",
"patch": "@@ -25,8 +25,8 @@ import (\n )\n \n // uirVersion is the unified IR version to use for encoding/decoding.\n-// Use V2 as the encoded version for aliastypeparams.\n-const uirVersion = pkgbits.V2\n+// Use V3 for promoted struct field support in ... | 2026-03-16T21:01:37 |
denoland/deno | f5d0971d2392e6dda51284f957122f19f4ee0e9e | 0896ac3e9add21dac364a4b199cd45c10c945337 | fix(ext/node): improve process.title and support --title flag (#32201)
- Default `process.title` to `process.execPath` instead of hardcoded
`"deno"`, matching Node.js behavior
- Make `process.title` setter functional instead of a no-op
- Parse `--title=<value>` from `NODE_OPTIONS` and set `process.title`
during bootst... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -315,6 +315,7 @@ deno_core::extension!(deno_node,\n ops::ipc::op_node_ipc_buffer_constructor,\n ops::ipc::op_node_ipc_ref,\n ops::ipc::op_node_ipc_unref,\n+ ops::process::op_node_process_set_title,\n ops::process::op_node_process_kill,\n ops::... | 2026-03-18T16:31:12 |
mrdoob/three.js | 6e006b29964ff6facb832690d3e38918d8434b64 | 625d234eb79fdeba4b2361cd138ca46e73c5d604 | Octree: Fixed typo. | [
{
"path": "examples/jsm/math/Octree.js",
"patch": "@@ -20,7 +20,7 @@ const _line2 = new Line3();\n const _box = new Box3();\n const _sphere = new Sphere();\n const _capsule = new Capsule();\n-const _center = new Capsule();\n+const _center = new Vector3();\n \n const _temp1 = new Vector3();\n const _temp2 = ... | 2025-12-01T17:55:34 |
vuejs/vue | 5fb1c9d62a08334393321c0b94aaa7cd07c2b40d | 7136e19bc82d385ed0dd817fb284ed5f26c76f30 | test: fix ssr test imports | [
{
"path": "test/ssr/ssr-bundle-render.spec.ts",
"patch": "@@ -1,7 +1,7 @@\n import LRU from 'lru-cache'\n import { compileWithWebpack } from './compile-with-webpack'\n-import { createBundleRenderer } from '../../packages/vue-server-renderer'\n-import VueSSRServerPlugin from '../../packages/vue-server-render... | 2022-05-20T07:16:14 |
golang/go | 9ec1d8f335bb76a07e9724fb332a4c2572d0fc3b | d9a600a73bed7b907f7321200650fe5103f47fc9 | cmd/compile: skip race detector test failure for unsupported VMA
Fixes #78219
Updates #77597
Change-Id: I021df668bfc18081e71faaab2e4bad607873bf4d
Reviewed-on: https://go-review.googlesource.com/c/go/+/756780
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Meidan ... | [
{
"path": "src/cmd/compile/internal/test/fixedbugs_test.go",
"patch": "@@ -5,6 +5,7 @@\n package test\n \n import (\n+\t\"bytes\"\n \t\"internal/platform\"\n \t\"internal/testenv\"\n \t\"os\"\n@@ -110,7 +111,13 @@ func TestIssue77597(t *testing.T) {\n \tcmd := testenv.Command(t, testenv.GoToolPath(t), \"run... | 2026-03-19T02:48:47 |
denoland/deno | 0896ac3e9add21dac364a4b199cd45c10c945337 | 76c3d7e13164085c27b800aa916eb89da642330a | fix(ext/node): support interface option for IPv6 multicast membership (#32754)
Fixes the IPv6 multicast interface option which was hardcoded to `0`.
## Problem
The `interface` option for `addMembership`/`dropMembership` was ignored
for IPv6 sockets:
```ts
op_node_udp_join_multi_v6(this.#rid, multicastAddress, 0); ... | [
{
"path": "ext/node/ops/udp.rs",
"patch": "@@ -156,31 +156,122 @@ pub fn op_node_udp_leave_multi_v4(\n Ok(())\n }\n \n-#[op2(fast)]\n+/// Resolve an IPv6 interface address to an interface index.\n+/// If the address contains a zone ID (e.g. \"fe80::1%eth0\"), use that.\n+/// Otherwise, try to find the int... | 2026-03-18T16:29:00 |
mrdoob/three.js | 72f91e3cf64eee7f392c8b15bddbc36bc56247d5 | 9e94632cb90fc22f0b32f1461d625439b9db47e8 | Update ReferenceBaseNode.js
Fix typo. | [
{
"path": "src/nodes/accessors/ReferenceBaseNode.js",
"patch": "@@ -4,7 +4,7 @@ import { uniform } from '../core/UniformNode.js';\n import { nodeObject } from '../tsl/TSLCore.js';\n import ArrayElementNode from '../utils/ArrayElementNode.js';\n \n-// TODO: Avoid duplicated code and ues only ReferenceBaseNod... | 2025-12-01T08:59:15 |
golang/go | 86b5e678e88efd89aee58e075064fd93c9346962 | 59bafc0b0782a6984b0b79499861947d5ccce509 | cmd/go: reject an empty tool name
An empty tool name ("") is incorrectly resolved by "go tool" as the directory
containing the tools binaries:
$ go tool ""
go tool : fork/exec /opt/homebrew/Cellar/go/1.24.5/libexec/pkg/tool/darwin_arm64: permission denied
To fix that case we also explicitely disallow an empty to... | [
{
"path": "src/cmd/go/internal/base/tool.go",
"patch": "@@ -42,6 +42,9 @@ func ToolPath(toolName string) (string, error) {\n }\n \n func ValidToolName(toolName string) bool {\n+\tif toolName == \"\" {\n+\t\treturn false\n+\t}\n \tfor _, c := range toolName {\n \t\tswitch {\n \t\tcase 'a' <= c && c <= 'z', '... | 2025-07-25T08:34:34 |
vuejs/vue | 23bd3b2ca31a193f79a5d1a03f89131b4977e41b | 23b1fb550373e4784f0ac4c25219f4df25f1f527 | types: fix types | [
{
"path": "src/core/global-api/extend.ts",
"patch": "@@ -17,7 +17,7 @@ export function initExtend(Vue: GlobalAPI) {\n /**\n * Class inheritance\n */\n- Vue.extend = function (extendOptions: any): Component {\n+ Vue.extend = function (extendOptions: any): typeof Component {\n extendOptions = ex... | 2022-05-20T03:11:47 |
mrdoob/three.js | 9e94632cb90fc22f0b32f1461d625439b9db47e8 | d70adae523c1b3c67defbe9fdf3a69c153cbd454 | Update ReferenceNode.js
Fix typo. | [
{
"path": "src/nodes/accessors/ReferenceNode.js",
"patch": "@@ -9,7 +9,7 @@ import { uniformArray } from './UniformArrayNode.js';\n import ArrayElementNode from '../utils/ArrayElementNode.js';\n import { warn } from '../../utils.js';\n \n-// TODO: Avoid duplicated code and ues only ReferenceBaseNode or Refe... | 2025-12-01T08:58:39 |
denoland/deno | 0fede96dc61a81f0355421f99ffc506d74d72ead | 328c8d35476e0d1376f2b818d57b7e89d9bd66b5 | fix(ext/node): fix 8 Node.js compat test failures (#32755)
## Summary
Fixes 8 Node.js compat tests that were failing after the node_test
submodule update to Node.js 25.8.1 (#32705). Closes part of #32706.
- **`events`**: `listenerCount()` now handles `EventTarget` instances by
delegating to `getEventListeners()`
- *... | [
{
"path": "ext/node/polyfills/_events.mjs",
"patch": "@@ -813,6 +813,9 @@ export function listenerCount(emitter, type) {\n if (typeof emitter.listenerCount === \"function\") {\n return emitter.listenerCount(type);\n }\n+ if (emitter instanceof EventTarget) {\n+ return getEventListeners(emitter, ... | 2026-03-18T08:39:51 |
vuejs/vue | 4d1d0f0a82c5aa109a74b52782daabb442f8ead3 | c19fabd9302ad4f6fba2b79de5e5cd623014a481 | chore: fix dev scripts | [
{
"path": "package.json",
"patch": "@@ -14,15 +14,15 @@\n ],\n \"sideEffects\": false,\n \"scripts\": {\n- \"dev\": \"rollup -w -c scripts/config.ts --environment TARGET:web-full-dev\",\n- \"dev:cjs\": \"rollup -w -c scripts/config.ts --environment TARGET:web-runtime-cjs-dev\",\n- \"dev:esm\"... | 2022-05-19T08:18:36 |
golang/go | 4216fa3d0471aa290e591abf0e209992edfc1f54 | bf1c1b3bde50f33593cd0db8f19812ea957964f5 | runtime: return the error code as a return value in asmstdcall
This shaves off 8 bytes from the syscall_syscalln stack frame, which is
significant as that call path is almost over the nosplit limit.
Also, it follows the cgocall convention of returning the error code as
a return value, making it easier to reason about... | [
{
"path": "src/internal/runtime/syscall/windows/asm_windows_386.s",
"patch": "@@ -5,10 +5,14 @@\n #include \"go_asm.h\"\n #include \"textflag.h\"\n \n-TEXT ·StdCall<ABIInternal>(SB),NOSPLIT,$0\n-\tJMP\t·asmstdcall(SB)\n+TEXT ·StdCall<ABIInternal>(SB),NOSPLIT,$4-8\n+\tMOVL\tfn+0(FP), AX\n+\tMOVL\tAX, 0(SP)\n... | 2026-03-06T11:22:14 |
mrdoob/three.js | 76d5e4f40c08b9a06f36ebfe88aa19c6c635ea75 | 9641add693fe9e2e919b40a9ec196f39b068a263 | Fix: WebGPUTextureUtils._getDefaultCubeTextureGPU using wrong cache (#32425)
Co-authored-by: “SE7EN2028” <“RITIKGOTBUSY@GMAIL.COM”> | [
{
"path": "src/renderers/webgpu/utils/WebGPUTextureUtils.js",
"patch": "@@ -683,7 +683,7 @@ class WebGPUTextureUtils {\n \t */\n \t_getDefaultCubeTextureGPU( format ) {\n \n-\t\tlet defaultCubeTexture = this.defaultTexture[ format ];\n+\t\tlet defaultCubeTexture = this.defaultCubeTexture[ format ];\n \n \t\... | 2025-11-30T16:08:56 |
denoland/deno | 328c8d35476e0d1376f2b818d57b7e89d9bd66b5 | 7d810eeeedd26873cb3ec0b297326b39c8f9d06c | perf(ext/web): optimize URLPattern ops to reduce serde overhead and GC pressure (#32766)
## Summary
- **`op_urlpattern_process_match_input`**: Replace `#[serde]
Option<(MatchInput, Inputs)>` return with `#[string] Option<String>` +
`#[buffer] &mut [u32]`. The 8 URL component values are concatenated into
a single stri... | [
{
"path": "ext/web/01_urlpattern.js",
"patch": "@@ -22,9 +22,11 @@ const {\n RegExpPrototypeTest,\n SafeMap,\n SafeRegExp,\n+ StringPrototypeSlice,\n Symbol,\n SymbolFor,\n TypeError,\n+ Uint32Array,\n } = primordials;\n \n import * as webidl from \"ext:deno_webidl/00_webidl.js\";\n@@ -138,10 ... | 2026-03-18T08:39:31 |
golang/go | c1c0af1e16c4c932d4c05442d9717dac0dc08a79 | 4b7b1be731e35c2f9c5f3af6677b164ccb006568 | cmd/compile: simplify the implementation of LoweredMoveLoop on loong64
Removes 632 instructions from the go binary on loong64.
before after delta
asm 560709 560673 -36
cgo 478565 478545 -20
compile 2883165 2883089 -76
cover 528213 528189 -... | [
{
"path": "src/cmd/compile/internal/loong64/ssa.go",
"patch": "@@ -732,7 +732,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tif dstReg == srcReg {\n \t\t\tbreak\n \t\t}\n-\t\tcountReg := int16(loong64.REG_R23)\n+\t\tsrcEndReg := int16(loong64.REG_R23)\n \t\ttmpReg := int16(loong64.REG_R24)\n \... | 2025-12-30T12:27:35 |
mrdoob/three.js | 9641add693fe9e2e919b40a9ec196f39b068a263 | 7ad089e773167ed7a7da33dc13ee7fd05280bc36 | TSL: Fix non-stack function call with loops (#32420) | [
{
"path": "src/nodes/core/AssignNode.js",
"patch": "@@ -99,8 +99,8 @@ class AssignNode extends TempNode {\n \n \t\tconst scope = targetNode.getScope();\n \n-\t\tconst targetProperties = builder.getNodeProperties( scope );\n-\t\ttargetProperties.assign = true;\n+\t\tconst scopeData = builder.getDataFromNode(... | 2025-11-30T06:50:58 |
denoland/deno | 2b62955bfdee96be1bcc09291bbe16dade6c14a4 | 97a701cb933762d79067f1918e7491463660edad | feat(ext/node): add MIMEType, convertProcessSignalToExitCode, Symbol.dispose for ChildProcess (#32793)
- Implements util.MIMEType and util.MIMEParams classes (Node.js v18.13+)
with full MIME type parsing and serialization
- Adds util.convertProcessSignalToExitCode() to convert signal names to
exit codes (128 + signal ... | [
{
"path": "ext/node/lib.rs",
"patch": "@@ -477,6 +477,7 @@ deno_core::extension!(deno_node,\n \"internal/http2/util.ts\",\n \"internal/http2/compat.js\",\n \"internal/idna.ts\",\n+ \"internal/mime.ts\",\n \"internal/net.ts\",\n \"internal/normalize_encoding.ts\",\n \"internal/opti... | 2026-03-18T08:19:22 |
vuejs/vue | 40dccfedd1d92ef9d61ee350ed8fbd7fc525b5b9 | cf8b16568d4f83185de4575ac5462c8692b4cff9 | chore: fix test harness; most of the tooling + test harness is happy; coverage still needs fixing | [
{
"path": ".babelrc.js",
"patch": "@@ -6,7 +6,7 @@ module.exports = {\n ],\n plugins: [\n require(\"babel-plugin-transform-vue-jsx\"),\n- require(\"@babel/plugin-syntax-dynamic-import\"),\n+ require(\"@babel/plugin-syntax-dynamic-import\")\n ],\n \n ignore: [\"dist/*.js\", \"packages/**/*.... | 2022-05-03T17:04:55 |
mrdoob/three.js | 192d5c1ea18bd2a76b8a0d191420c39a3e0593ac | 7505b21f1a34041c10fdb4e2ec6a0e0651c41492 | Inspector: Fix cube depth texture error (#32412) | [
{
"path": "examples/jsm/inspector/ui/Style.js",
"patch": "@@ -879,9 +879,16 @@ export class Style {\n \tborder-bottom: none;\n \tuser-select: none;\n \t-webkit-user-select: none;\n+}\n+\n+.parameters .list-item-row {\n \tmin-height: 31px;\n }\n \n+.mini-panel-content .parameters .list-item-row {\n+\tmin-hei... | 2025-11-29T01:16:36 |
golang/go | 9def4acb06bf9167441caa8af37e27b3cdbf8cf0 | 6bdfdb5f51951584732e6a95a7ee8a5ba5e8cb93 | cmd/link: support loading R_LARCH_GOT64_PC_{LO12, HI20} relocs on loong64
On loong64, such relocations are increasingly common when built using
an "extreme" code model. To ensure future interoperability with cgo,
the linker needs to be made aware of these relocations.
Ref: https://github.com/loongson/la-abi-specs/blo... | [
{
"path": "src/cmd/internal/obj/fips140.go",
"patch": "@@ -356,6 +356,8 @@ func (s *LSym) checkFIPSReloc(ctxt *Link, rel Reloc) {\n \t\tobjabi.R_GOTPCREL,\n \t\tobjabi.R_LOONG64_ADDR_LO, // used with PC-relative load\n \t\tobjabi.R_LOONG64_ADDR_HI, // used with PC-relative load\n+\t\tobjabi.... | 2026-03-12T07:34:02 |
mrdoob/three.js | 7505b21f1a34041c10fdb4e2ec6a0e0651c41492 | 82c64b0878256b32f154e6b8ca93554ae41d9d54 | Examples: Fix WebGPU water simulation on mobile GPUs (#32411) | [
{
"path": "examples/webgpu_compute_water.html",
"patch": "@@ -35,7 +35,7 @@\n \t\t<script type=\"module\">\n \n \t\t\timport * as THREE from 'three/webgpu';\n-\t\t\timport { instanceIndex, struct, If, uint, int, floor, float, length, clamp, vec2, cos, vec3, vertexIndex, Fn, uniform, instancedArray, min, max... | 2025-11-28T17:32:15 |
vuejs/vue | ee5243fdccec55bba52ccd04cc80eecff449d335 | 8e047df75adaca168a69edfdbcbe89ff63a4f910 | chore: fix tests | [
{
"path": ".flowconfig",
"patch": "@@ -1,23 +0,0 @@\n-[ignore]\n-.*/node_modules/.*\n-.*/test/.*\n-.*/scripts/.*\n-.*/examples/.*\n-.*/benchmarks/.*\n-\n-[include]\n-\n-[libs]\n-flow\n-\n-[options]\n-unsafe.enable_getters_and_setters=true\n-module.name_mapper='^compiler/\\(.*\\)$' -> '<PROJECT_ROOT>/src/com... | 2022-04-30T08:07:01 |
golang/go | ca3c2a6790cc7744fa340a497b86d0b479c1d4e3 | d0bd295ec12d8f5ad2bdb204e14123bf912f52aa | time: fix typo in comment
Correct "occasonal" to "occasional"
Change-Id: I54b8466a565ad8fd1ae9527c39b935b806062127
GitHub-Last-Rev: 996c59b92407515c7b7e2df23e34789ce280752c
GitHub-Pull-Request: golang/go#76426
Reviewed-on: https://go-review.googlesource.com/c/go/+/723520
Reviewed-by: Mark Freeman <markfreeman@google.... | [
{
"path": "src/time/time.go",
"patch": "@@ -1279,7 +1279,7 @@ func daysBefore(m Month) int {\n \t// which is:\n \t//\t0 31 61 92 122 153 183 214 245 275 306 336 367\n \t// This is almost exactly 367/12×(m-1) except for the\n-\t// occasonal off-by-one suggesting there may be an\n+\t// occasional off-by-on... | 2025-11-23T18:28:56 |
golang/go | d0bd295ec12d8f5ad2bdb204e14123bf912f52aa | 8afbae3e51ca0a22121bdf34ac65e0d4c9d888b7 | cmd/go: provide concise user message to use - go work use
Fixes #64007
Change-Id: Ia1de6b33b2a531545984351e4453aa5d97b16953
Reviewed-on: https://go-review.googlesource.com/c/go/+/589815
Reviewed-by: Michael Matloob <matloob@golang.org>
Auto-Submit: Michael Matloob <matloob@google.com>
Reviewed-by: Carlos Amedee <car... | [
{
"path": "src/cmd/go/internal/modload/init.go",
"patch": "@@ -1156,8 +1156,8 @@ func errWorkTooOld(gomod string, wf *modfile.WorkFile, goVers string) error {\n \t\t// even when it doesn't list any version.\n \t\tverb = \"implicitly requires\"\n \t}\n-\treturn fmt.Errorf(\"module %s listed in go.work file r... | 2024-06-03T14:16:32 |
vuejs/vue | 8e047df75adaca168a69edfdbcbe89ff63a4f910 | da64b4a41f9e7c0edae074abd279bdf385575ff0 | update deps and other code -- still need to fix some issues with testing - basically dependencies issues | [
{
"path": "dist/vue.esm.browser.js",
"patch": "@@ -1,6 +1,6 @@\n /*!\n- * Vue.js v2.6.12\n- * (c) 2014-2021 Evan You\n+ * Vue.js v2.6.14\n+ * (c) 2014-2022 Evan You\n * Released under the MIT License.\n */\n const emptyObject = Object.freeze({});\n@@ -30,7 +30,7 @@ function isPrimitive(value) {\n }\n /**\... | 2022-04-29T18:54:08 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.