repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
denoland/deno
6e49a4b3bdc21f8ee38eda8a355958cb31c254fa
9c201aee7d6f623828169e4f4198c4b7f21e40cb
docs: fix stability note of isTerminal and setRaw (#28886)
[ { "path": "cli/tsc/dts/lib.deno.ns.d.ts", "patch": "@@ -2121,8 +2121,7 @@ declare namespace Deno {\n * @category File System\n */\n utimeSync(atime: number | Date, mtime: number | Date): void;\n- /** **UNSTABLE**: New API, yet to be vetted.\n- *\n+ /**\n * Checks if the file res...
2025-04-14T15:00:31
mrdoob/three.js
3e0a5739d948597f29af47597c034402ceddf125
366d701975444815851f9748b9da487d55ba71b1
WebGPURenderer: Fix Node.updateBefore() sequence call (#26391) * Geometries: Follows the adopted name pattern * Renderer: Fix Node.updateBefore() sequence
[ { "path": "examples/jsm/renderers/common/Geometries.js", "patch": "@@ -88,7 +88,7 @@ class Geometries extends DataMap {\n \n \t}\n \n-\tupdate( renderObject ) {\n+\tupdateForRender( renderObject ) {\n \n \t\tif ( this.has( renderObject ) === false ) this.initGeometry( renderObject );\n ", "additions": 1...
2023-07-08T04:30:12
golang/go
74304cda29381fd5ba07a4090b701f8a670896c6
a070533633bd709bc3598dbd7c28edca1d2ba6e2
cmd/compile/internal/escape: improve order of work to speed up analyzing many locations For the package github.com/microsoft/typescript-go/internal/checker, compilation currently spends most of its time in escape analysis. Here, we re-order work to be more efficient when analyzing many locations, and delay visiting s...
[ { "path": "src/cmd/compile/internal/escape/graph.go", "patch": "@@ -62,9 +62,14 @@ type location struct {\n \tdst *location\n \tdstEdgeIdx int\n \n-\t// queued is used by walkAll to track whether this location is\n-\t// in the walk queue.\n-\tqueued bool\n+\t// queuedWalkAll is used by walkAll to tra...
2025-03-12T21:29:25
denoland/deno
cc8b5217f31c528587d154b6310d3f0a014608c2
3a6cdc251693d022003bc1f4cfb06cf2cabe5570
fix(ext/node): querystring fallback to default decoder (#28838) Enables the full `tests/node_compat/test/parallel/test-querystring.js` test
[ { "path": "ext/node/polyfills/querystring.js", "patch": "@@ -79,10 +79,10 @@ function addKeyVal(\n decode,\n ) {\n if (key.length > 0 && keyEncoded) {\n- key = decode(key);\n+ key = decodeStr(key, decode);\n }\n if (value.length > 0 && valEncoded) {\n- value = decode(value);\n+ value = d...
2025-04-14T09:47:28
mrdoob/three.js
366d701975444815851f9748b9da487d55ba71b1
95fbc39b07f677a3f550f185dd2d3d18d4a52c93
WebGPURenderer: avoid render pass/pipeline attachment mismatches (#26376) * add support for meshPhongNodeMaterial * add renderTarget to key for renderContexts * use renderContext as key to locate correct renderobjects in cache * rework to use attachment state and fix deletion path * remove surplus : ---...
[ { "path": "examples/jsm/renderers/common/RenderContexts.js", "patch": "@@ -5,28 +5,37 @@ class RenderContexts {\n \n \tconstructor() {\n \n-\t\tthis.renderStates = new ChainMap();\n+\t\tthis.chainMaps = {};\n \n \t}\n \n-\tget( scene, camera ) {\n+\tget( scene, camera, renderTarget = null ) {\n \n \t\tconst...
2023-07-08T02:26:14
golang/go
a070533633bd709bc3598dbd7c28edca1d2ba6e2
4cdca1342b1d3d9591d72a7e7cf67068aa54c524
reflect: turn off allocation test if instrumentation is on Help fix the asan builders. Change-Id: I980f5171519643c3543bdefc6ea46fd0fca17c28 Reviewed-on: https://go-review.googlesource.com/c/go/+/674616 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Keith Randall <khr@google.com> Auto-Submit: Keith R...
[ { "path": "src/reflect/all_test.go", "patch": "@@ -13,6 +13,8 @@ import (\n \t\"internal/asan\"\n \t\"internal/goarch\"\n \t\"internal/goexperiment\"\n+\t\"internal/msan\"\n+\t\"internal/race\"\n \t\"internal/testenv\"\n \t\"io\"\n \t\"math\"\n@@ -8766,6 +8768,9 @@ func TestTypeAssertPanic(t *testing.T) {\n...
2025-05-20T22:59:02
denoland/deno
3a6cdc251693d022003bc1f4cfb06cf2cabe5570
1dfd4449011c2eefde7f128a5119d76ca2d054ca
chore(ext/node): fix run_all_test script for windows (#28883)
[ { "path": "tests/node_compat/run_all_test_unmodified.ts", "patch": "@@ -229,8 +229,9 @@ type ErrorUnexpected = {\n * @param testPath Relative path to the test file\n */\n async function runSingle(testPath: string, retry = 0): Promise<SingleResult> {\n+ let cmd: Deno.ChildProcess | undefined;\n try {\n-...
2025-04-14T06:46:26
mrdoob/three.js
e41d3feea29062b8388b397bb34c16bf08f0e691
f258d0d687a24bd6946f3fe5cfea36d8da1366b4
Fixes error when controllers are disconnected on XR exit when not being connected to a hand before. (#26387)
[ { "path": "examples/jsm/webxr/OculusHandPointerModel.js", "patch": "@@ -70,8 +70,8 @@ class OculusHandPointerModel extends THREE.Object3D {\n \t\tthis.visible = false;\n \t\tthis.xrInputSource = null;\n \n-\t\tthis.pointerGeometry.dispose();\n-\t\tthis.pointerMesh.material.dispose();\n+\t\tif (this.pointerG...
2023-07-07T13:31:03
golang/go
4cdca1342b1d3d9591d72a7e7cf67068aa54c524
fccac5fe98d10479cab5031d1dd913b2f96387f2
runtime: disable stack allocation test when instrumentation is on Should fix some asan build failures. Change-Id: Ic0a816b56a1a278aa0ad541aea962f9fea7b10fc Reviewed-on: https://go-review.googlesource.com/c/go/+/674696 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-...
[ { "path": "src/runtime/runtime_test.go", "patch": "@@ -7,7 +7,10 @@ package runtime_test\n import (\n \t\"flag\"\n \t\"fmt\"\n+\t\"internal/asan\"\n \t\"internal/cpu\"\n+\t\"internal/msan\"\n+\t\"internal/race\"\n \t\"internal/runtime/atomic\"\n \t\"internal/testenv\"\n \t\"io\"\n@@ -329,6 +332,9 @@ func Te...
2025-05-20T22:56:29
denoland/deno
1dfd4449011c2eefde7f128a5119d76ca2d054ca
372705a4d795bc3d36997640cc8f17e3eaf4a9f5
fix(ext/node): add basic support of suite/describe in node:test (#28847)
[ { "path": "ext/node/polyfills/testing.ts", "patch": "@@ -1,7 +1,12 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n import { primordials } from \"ext:core/mod.js\";\n-const { PromisePrototypeThen } = primordials;\n+const {\n+ PromisePrototypeThen,\n+ ArrayPrototypePush,\n+ SafePromiseAll,\...
2025-04-14T06:44:03
mrdoob/three.js
ff69f9c6a970905f04fb64809d755fc28f496fe5
0d7d5ea4d2f7eff502eeb487c2bbf65222fc346f
Nodes: Fix deprecation text to match code for tslFn (#26383) * add support for meshPhongNodeMaterial * update notice --------- Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "examples/jsm/nodes/shadernode/ShaderNode.js", "patch": "@@ -322,7 +322,7 @@ export const nodeImmutable = ( ...params ) => new ShaderNodeImmutable( ...params\n \n export const shader = ( jsFunc ) => { // @deprecated, r154\n \n-\tconsole.warn( 'TSL: shader() is deprecated. Use fn() instead.' );\n+\...
2023-07-06T11:29:56
golang/go
68bc0d84e9dd74a02472bfff744e0650b4b1653c
49a660e22cb349cf13ef0a2f6214c6fdd75afda0
encoding/json: avoid supurious synctest deadlock detection Use a sync.OnceValue rather than a sync.WaitGroup to coordinate access to encoderCache entries. The OnceValue better expresses the intent of the code (we want to initialize the cache entry only once). However, the motivation for this change is to avoid testi...
[ { "path": "src/encoding/json/encode.go", "patch": "@@ -359,25 +359,22 @@ func typeEncoder(t reflect.Type) encoderFunc {\n \t}\n \n \t// To deal with recursive types, populate the map with an\n-\t// indirect func before we build it. This type waits on the\n-\t// real func (f) to be ready and then calls it. T...
2025-05-15T18:03:15
denoland/deno
372705a4d795bc3d36997640cc8f17e3eaf4a9f5
09fe6f8257eed2e44a5e341a5cf15111e92a816c
fix(ext/node): export test as property of default export (#28881)
[ { "path": "ext/node/polyfills/testing.ts", "patch": "@@ -222,4 +222,6 @@ export const mock = {\n },\n };\n \n+test.test = test;\n+\n export default test;", "additions": 2, "deletions": 0, "language": "Unknown" }, { "path": "tests/specs/node/node_test_module/test.js", "patch": "@@ -...
2025-04-14T05:19:22
golang/go
609197b406ce8d9efd39bd3984b2cade74df35a6
546761aff45111490b21a045e3d989104182bcd9
cmd/doc: use golang.org/x/pkgsite/cmd/internal/doc to start server This change switches the pkgsite command invoked to start a pkgsite server from golang.org/x/pkgsite/cmd/pkgsite to golang.org/x/pkgsite/cmd/internal/doc. The doc command is a simplified version of cmd/pkgsite that changes some options to improve the u...
[ { "path": "src/cmd/doc/main.go", "patch": "@@ -44,7 +44,6 @@ package main\n \n import (\n \t\"bytes\"\n-\t\"context\"\n \t\"errors\"\n \t\"flag\"\n \t\"fmt\"\n@@ -53,17 +52,13 @@ import (\n \t\"io\"\n \t\"log\"\n \t\"net\"\n-\t\"net/http\"\n \t\"os\"\n \t\"os/exec\"\n \t\"os/signal\"\n \t\"path\"\n \t\"path...
2025-05-19T19:31:37
denoland/deno
8309ecdfc2940340aed003b05b37c341a80aeb95
e04224c64cd53e9bc68742a2e1af38c2a32ec9a0
fix(fmt): upgrade malva to 0.11.2 (#28871)
[ { "path": "Cargo.lock", "patch": "@@ -2049,7 +2049,7 @@ dependencies = [\n \"hyper 0.14.28\",\n \"hyper 1.6.0\",\n \"hyper-util\",\n- \"itertools 0.10.5\",\n+ \"itertools 0.14.0\",\n \"memchr\",\n \"mime\",\n \"once_cell\",\n@@ -4913,18 +4913,18 @@ checksum = \"7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a...
2025-04-13T17:03:36
golang/go
1972493904b41a34e35a1f62b18f5d91d84a26bd
113b25774ed8d1d915ae4e1adf9222865ccb0695
cmd/doc: show page for the requested object This fixes a bug where we start pkgsite for every requested object, rather than the one that we would have printed the documentation for. To make things simple, we'll run the logic that prints the documentation, but with an io.Discard writer. Then we can tell if the document...
[ { "path": "src/cmd/doc/main.go", "patch": "@@ -126,6 +126,11 @@ func do(writer io.Writer, flagSet *flag.FlagSet, args []string) (err error) {\n \t\t\treturn err\n \t\t}\n \t}\n+\tif serveHTTP {\n+\t\t// We want to run the logic below to determine a match for a symbol, method,\n+\t\t// or field, but not actu...
2025-05-19T19:31:37
denoland/deno
e73ed033737f2efc67afab31b3e82d35c17f7dfb
5b25eeda57b082dde423249d374abc14d590c1ed
fix: vsock nits (#28851)
[ { "path": "cli/tsc/dts/lib.deno.ns.d.ts", "patch": "@@ -5162,7 +5162,9 @@ declare namespace Deno {\n \n /**\n * Options that can be passed to `Deno.serve` to create a server listening on\n- * a vsock socket.\n+ * a VSOCK socket.\n+ *\n+ * @experimental **UNSTABLE**: New API, yet to be vetted.\n...
2025-04-11T19:11:03
mrdoob/three.js
2898b205dd4b2cb65bdfba94af142150d1a54ec2
4a7c2417ab362e80f2956461e3909f89a563bf75
WebGLRenderer: Use inline tone mapping only when rendering to screen. (#26371) * WebGLRenderer: Use inline tone mapping only when rendering to screen. * Examples: Fix 3Dlut demo. * Examples: Update screenshots. * Examples: Update screenshots. * WebGLRenderer: Fix tone mapping check for WebXR. * WebGLRen...
[ { "path": "examples/jsm/postprocessing/OutputPass.js", "patch": "@@ -1,5 +1,5 @@\n import {\n-\tShaderMaterial,\n+\tRawShaderMaterial,\n \tUniformsUtils,\n \tNoToneMapping,\n \tLinearToneMapping,\n@@ -25,7 +25,7 @@ class OutputPass extends Pass {\n \n \t\tthis.uniforms = UniformsUtils.clone( shader.uniforms...
2023-07-05T08:04:44
golang/go
113b25774ed8d1d915ae4e1adf9222865ccb0695
fa42585dadb8d70191820549435820cb70691cf6
cmd/compile: memcombine different size stores This CL implements the TODO in combineStores to allow combining stores of different sizes, as long as the total size aligns to 2, 4, 8. Fixes #72832. Change-Id: I6d1d471335da90d851ad8f3b5a0cf10bdcfa17c4 Reviewed-on: https://go-review.googlesource.com/c/go/+/661855 Review...
[ { "path": "src/cmd/compile/internal/ssa/memcombine.go", "patch": "@@ -374,22 +374,19 @@ func memcombineStores(f *Func) {\n \t\t\t\tcontinue\n \t\t\t}\n \n-\t\t\tfor n := f.Config.RegSize / size; n > 1; n /= 2 {\n-\t\t\t\tif combineStores(v, n) {\n-\t\t\t\t\tcontinue\n-\t\t\t\t}\n-\t\t\t}\n+\t\t\tcombineStor...
2025-03-31T17:50:10
denoland/deno
5b25eeda57b082dde423249d374abc14d590c1ed
d74a6943a562fa0886ae4a33059e123a5ea7a673
fix(task): support backticks and basic tilde expansion (#28832) * https://github.com/denoland/deno_task_shell/pull/147 * https://github.com/denoland/deno_task_shell/pull/146 Closes https://github.com/denoland/deno/issues/26676 Closes https://github.com/denoland/deno/issues/28807
[ { "path": "Cargo.lock", "patch": "@@ -2633,9 +2633,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_task_shell\"\n-version = \"0.22.0\"\n+version = \"0.23.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"126e6062adfcc544f0937d610d23dc4dc70c4d2aab8636b31a93bcb2617...
2025-04-11T15:48:14
mrdoob/three.js
b9fb08232800343bc8ca9e77d17bf340e8749eb0
54a7d7f4e61e2471deade43b0f29b56c1ff66785
Examples: Fix color space in webgl_materials_video_webcam. (#26364)
[ { "path": "examples/webgl_materials_video_webcam.html", "patch": "@@ -48,6 +48,7 @@\n \t\t\t\tvideo = document.getElementById( 'video' );\n \n \t\t\t\tconst texture = new THREE.VideoTexture( video );\n+\t\t\t\ttexture.colorSpace = THREE.SRGBColorSpace;\n \n \t\t\t\tconst geometry = new THREE.PlaneGeometry( ...
2023-07-03T08:02:43
golang/go
2541a68a7010afcd2970ddc3979432e1a8f08406
d596bc0e819aec2cf65a61d8b92f6bec8e0a7124
reflect: add TypeAssert[T] This implementation is zero-alloc when T is a concrete type, allocates when val contains a method or when T is a interface and Value was obtained for example through Elem(), in which case it has to be allocated to avoid sharing the same memory. goos: linux goarch: amd64 pkg: reflect cpu: AM...
[ { "path": "api/next/62121.txt", "patch": "@@ -0,0 +1 @@\n+pkg reflect, func TypeAssert[$0 interface{}](Value) ($0, bool) #62121", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/reflect/62121.md", "patch": "@@ -0,0 +1,3 @@\n+The new [...
2025-05-20T15:39:22
denoland/deno
d74a6943a562fa0886ae4a33059e123a5ea7a673
9da231dc7a7692a205d664593c538c3b700e8049
fix(ext/node): verbose zlib error messages (#28831)
[ { "path": "ext/node/lib.rs", "patch": "@@ -397,6 +397,7 @@ deno_core::extension!(deno_node,\n ops::zlib::op_zlib_init,\n ops::zlib::op_zlib_reset,\n ops::zlib::op_zlib_crc32,\n+ ops::zlib::op_zlib_err_msg,\n ops::zlib::brotli::op_brotli_compress,\n ops::zlib::brotli::op_brotli_compres...
2025-04-11T11:47:32
mrdoob/three.js
37b932fef47666d3a1461e57d185e77faecc9edf
9acdace9be6303053309064eb91ced048b8b6a9b
WebGPURenderer: Remove duplication of interleaved attribute buffers. (#26351) * add support for meshPhongNodeMaterial * wip handle interleaved buffers efficiently * convert mat4 into proper instancedinterleavedBufferAttributes for InstanceMesh * make var const * remove debug code * missed initialisation...
[ { "path": "examples/jsm/nodes/accessors/BufferAttributeNode.js", "patch": "@@ -29,7 +29,7 @@ class BufferAttributeNode extends InputNode {\n \t\tconst stride = this.bufferStride || itemSize;\n \t\tconst offset = this.bufferOffset;\n \n-\t\tconst buffer = new InterleavedBuffer( array, stride );\n+\t\tconst b...
2023-06-30T17:23:27
golang/go
d596bc0e819aec2cf65a61d8b92f6bec8e0a7124
b7382cc1f012016c91036c49db0ea6db444b47d8
runtime: disallow closing bubbled chans from outside bubble A chan created within a synctest bubble may not be operated on from outside the bubble. We panicked on send and receive, but not close. Panic on close as well. For #67434 Change-Id: I98d39e0cf7baa1a679aca1fb325453d69c535308 Reviewed-on: https://go-review.go...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -263,6 +263,46 @@ func TestChannelFromOutsideBubble(t *testing.T) {\n \t}\n }\n \n+func TestChannelMovedOutOfBubble(t *testing.T) {\n+\tfor _, test := range []struct {\n+\t\tdesc string\n+\t\tf func(chan struct{})\n+\t\twantPanic ...
2025-05-09T23:18:49
denoland/deno
7218113d249c45ab139a5c5e9248b7157b542b7e
4dbe803e2b1d8ce2fdc5e0fc75968af0b68bbc0f
fix(lockfile): handling of peer deps when migrating to lockfile v5 (#28844)
[ { "path": "Cargo.lock", "patch": "@@ -2170,9 +2170,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_lockfile\"\n-version = \"0.26.0\"\n+version = \"0.26.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"bf38d2df0cfe7ca030a0328c2039afaba39d13c775be9d2cf5fd7705ad2b5...
2025-04-10T22:29:44
mrdoob/three.js
2c2c671df6613ea73986a8705fd9cc327500ded1
b637cbfc83ec819bcc362d0ccdc489213fdb4266
Playground: UVEditor and fix selection of nodes by keyboard (#26349) * cleanup * order by frequency of use * Improve new node selected by keyboard * cleanup * fix opacity
[ { "path": "examples/jsm/renderers/webgl/nodes/WebGLNodeBuilder.js", "patch": "@@ -126,7 +126,7 @@ class WebGLNodeBuilder extends NodeBuilder {\n \t\t\t\tnode: material.colorNode,\n \t\t\t\tnodeType: 'vec4',\n \t\t\t\tsource: 'vec4 diffuseColor = vec4( diffuse, opacity );',\n-\t\t\t\ttarget: 'vec4 diffuseCol...
2023-06-29T02:50:55
golang/go
5b0b4c01ba44f372343ed003b297f50ee3c8ff67
0d42cebacdba1855d11f29f708587c9a7a5cb976
runtime: add package doc for checkfinalizer mode Fixes #72949. Change-Id: I114eda73c57bc7d596eb1656e738b80c1cbe5254 Reviewed-on: https://go-review.googlesource.com/c/go/+/662039 Reviewed-by: Carlos Amedee <carlos@golang.org> Reviewed-by: Michael Pratt <mpratt@google.com> Auto-Submit: Michael Knyszek <mknyszek@google....
[ { "path": "src/runtime/extern.go", "patch": "@@ -52,6 +52,21 @@ It is a comma-separated list of name=val pairs setting these named variables:\n \tcgocheck mode can be enabled using GOEXPERIMENT (which\n \trequires a rebuild), see https://pkg.go.dev/internal/goexperiment for details.\n \n+\tcheckfinalizers: ...
2025-04-02T01:46:45
mrdoob/three.js
21e57f66448bc2c916b590034a02bf9864176f01
c14136947ae5e8518c4a2e0f94070965e6af8fb1
Examples: Add RoomEnvironment to alpha hash example (#26344) * Examples: Add RoomEnvironment to alpha hash example. * Bump screenshot * Add useLegacyLights=false * Add alpha hash to exception list
[ { "path": "examples/webgl_materials_alphahash.html", "patch": "@@ -27,6 +27,7 @@\n \t\t\timport Stats from 'three/addons/libs/stats.module.js';\n \t\t\timport { GUI } from 'three/addons/libs/lil-gui.module.min.js';\n \t\t\timport { OrbitControls } from 'three/addons/controls/OrbitControls.js';\n+\t\t\timpor...
2023-06-29T00:42:56
denoland/deno
4dbe803e2b1d8ce2fdc5e0fc75968af0b68bbc0f
95eb216801a372fd25e876947d2c4751d3d40bd5
fix(lockfile): omit tarball url from lockfile if it's the default (#28842) This is where deno_lockfile gets the info for the transform from 4->5. So while we were doing this optimization on new v5 lockfiles, we weren't doing it correctly for ones migrated from earlier versions. Testing this is kinda hard because our ...
[ { "path": "cli/npm/mod.rs", "patch": "@@ -19,6 +19,8 @@ use deno_npm::npm_rc::ResolvedNpmRc;\n use deno_npm::registry::NpmPackageInfo;\n use deno_npm::registry::NpmPackageVersionInfo;\n use deno_npm::registry::NpmRegistryApi;\n+use deno_npm::resolution::DefaultTarballUrlProvider;\n+use deno_npm::NpmPackageI...
2025-04-10T21:45:46
mrdoob/three.js
24203bacddd8076ba7ce24d08b0400b35a2edbae
3d857659ae553aeb3445dab292a12b033a1f0a51
Puppeteer E2E test: Fix WebGL on Mac ARM (#26343)
[ { "path": "test/e2e/puppeteer.js", "patch": "@@ -229,8 +229,8 @@ async function main() {\n \n \t/* Launch browser */\n \n-\tconst flags = [ '--hide-scrollbars', '--enable-unsafe-webgpu' ];\n-\tflags.push( '--enable-features=Vulkan', '--use-gl=swiftshader', '--use-angle=swiftshader', '--use-vulkan=swiftshade...
2023-06-28T17:21:56
golang/go
0d42cebacdba1855d11f29f708587c9a7a5cb976
2aac5a5cbacdaaefb518be7ea8ddc2a455ae35f2
runtime: report finalizer and cleanup queue length with checkfinalizer>0 This change adds tracking for approximate finalizer and cleanup queue lengths. These lengths are reported once every GC cycle as a single line printed to stderr when GODEBUG=checkfinalizer>0. This change lays the groundwork for runtime/metrics m...
[ { "path": "src/runtime/mcleanup.go", "patch": "@@ -336,6 +336,20 @@ type cleanupQueue struct {\n \t//\n \t// Read without lock, written only with lock held.\n \tneedg atomic.Uint32\n+\n+\t// Cleanup queue stats.\n+\n+\t// queued represents a monotonic count of queued cleanups. This is sharded across\n+\t// ...
2025-05-09T19:33:22
denoland/deno
95eb216801a372fd25e876947d2c4751d3d40bd5
a84c6991019b322dd332437f15f0777323ff9e86
fix(lsp): exclude unmapped npm cache paths from auto-imports (#28841)
[ { "path": "cli/lsp/language_server.rs", "patch": "@@ -223,7 +223,7 @@ impl LanguageServerTaskQueue {\n }\n \n pub struct Inner {\n- cache: LspCache,\n+ pub cache: LspCache,\n /// The LSP client that this LSP server is connected to.\n pub client: Client,\n /// Configuration information.", "additi...
2025-04-10T19:13:34
mrdoob/three.js
e2ea7667fc0b4033573864c2b20d7fa4c2a4eb0e
406ded42acc403a6661fd969f2fe8efde2663fbc
Fix shader error in anisotropy when normal map is missing (#26334) * Fix shader error in physical material anisotropy when normal map is not present. * Check for USE_ANISOTROPY in uv_pars_vertex.glsl.js
[ { "path": "src/renderers/shaders/ShaderChunk/normal_fragment_begin.glsl.js", "patch": "@@ -27,7 +27,15 @@ float faceDirection = gl_FrontFacing ? 1.0 : - 1.0;\n \n \t#else\n \n-\t\tmat3 tbn = getTangentFrame( - vViewPosition, normal, vNormalMapUv );\n+\t\tmat3 tbn = getTangentFrame( - vViewPosition, normal,\...
2023-06-27T18:23:10
golang/go
89af77deef7e554dff5ca21ff2c2aaf0a2d253ac
c58f58b9f8df0bde53bb5bc20b5ea97d34b1531d
internal/filepathlite: fix comment fix typo Change-Id: I46f0b052615d388a852439e63542b43e2ca62b7e GitHub-Last-Rev: 96ac66c0362c5c544249cf465c528a924112fa76 GitHub-Pull-Request: golang/go#73725 Reviewed-on: https://go-review.googlesource.com/c/go/+/672955 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by:...
[ { "path": "src/internal/filepathlite/path.go", "patch": "@@ -180,7 +180,7 @@ func ToSlash(path string) string {\n \treturn replaceStringByte(path, Separator, '/')\n }\n \n-// FromSlash is filepath.ToSlash.\n+// FromSlash is filepath.FromSlash.\n func FromSlash(path string) string {\n \tif Separator == '/' {...
2025-05-14T21:44:19
denoland/deno
ce5b9da11bebf47c339897dcd1a540a42b76df7c
ac5c6018a8cb24a7fe7d61c19ce58e0a36a1c7b2
fix(install): handle when bin entry info isn't present in package.json but is in registry (#28822) Apparently things like the `bin` field can appear in the version info from the registry, but not the package's `package.json`. I'm still not sure how you actually achieve this, but it's the case for `esbuild-wasm`. This ...
[ { "path": "cli/args/mod.rs", "patch": "@@ -1225,7 +1225,15 @@ impl CliOptions {\n }\n \n pub fn default_npm_caching_strategy(&self) -> NpmCachingStrategy {\n- if self.flags.unstable_config.npm_lazy_caching {\n+ if matches!(\n+ self.sub_command(),\n+ DenoSubcommand::Install(InstallFlags::...
2025-04-10T16:36:26
mrdoob/three.js
c1e558c7088bc1fe66a1b7c02de449d794b44a6b
b621f0eeedc09267a0343f5a7bc2be64952c79e5
WebGLRenderer: Fix feedback loop in transmission pass for WebGL 2. (#26177)
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -1332,7 +1332,7 @@ class WebGLRenderer {\n \t\t\t\t\tgenerateMipmaps: true,\n \t\t\t\t\ttype: extensions.has( 'EXT_color_buffer_half_float' ) ? HalfFloatType : UnsignedByteType,\n \t\t\t\t\tminFilter: LinearMipmapLinearFilter,\n-\t\t\t\t\tsamples: ( i...
2023-06-27T08:15:04
golang/go
dfebef1c0459af0a34eceb4027c9fab5824f2eab
be0cc937ec9c109da90ec4d7da5af89606f8c0cf
cmd/compile: fold negation into addition/subtraction on arm64 Fold negation into addition/subtraction and avoid double negation. platform: linux/arm64 file before after Δ % addr2line 3628108 3628116 +8 +0.000% asm 6208353 6207857 -496 -0.008% buildid 3460682 3460418 -264...
[ { "path": "src/cmd/compile/internal/ssa/_gen/ARM64.rules", "patch": "@@ -1198,6 +1198,7 @@\n \n // generic simplifications\n (ADD x (NEG y)) => (SUB x y)\n+(SUB x (NEG y)) => (ADD x y)\n (SUB x x) => (MOVDconst [0])\n (AND x x) => x\n (OR x x) => x\n@@ -1209,6 +1210,7 @@\n (XOR x (MVN y)) => (EON x y)\n (O...
2025-05-17T06:30:07
denoland/deno
ac5c6018a8cb24a7fe7d61c19ce58e0a36a1c7b2
cedf5c4f6a61131a95a9c9b4877708c82b123f86
fix(unstable): add missing decorators nodes in lint ast (#28834) Support for decorators in the lint plugin AST was a bit half baked. This PR goes through all the places where decorators can be set in TS and supports these. Fixes https://github.com/denoland/deno/issues/28830
[ { "path": "cli/tools/lint/ast_buffer/buffer.rs", "patch": "@@ -534,6 +534,31 @@ impl SerializeCtx {\n }\n }\n \n+ pub fn write_maybe_ref_vec_skip<P>(\n+ &mut self,\n+ prop: P,\n+ parent_ref: &PendingRef,\n+ value: Option<Vec<NodeRef>>,\n+ ) where\n+ P: Into<u8> + Display + Clone,\n+ ...
2025-04-10T15:49:05
mrdoob/three.js
c944e5acd2e80bffcbe56473e9151cdf83369721
80118aba9ceebf2a1f8c32e323147e079c059bda
WebGPURenderer: MorphNode 1/2 and updates (#26325) * Added: instancedBufferAttribute() and instancedDynamicBufferAttribute() * TSL: vertexIndex * Background: Fix color conversion * NodeMaterial: Added flatShading * Added MorphNode * Added `webgpu_morphtargets` example * Update examples/jsm/nodes/acce...
[ { "path": "examples/files.json", "patch": "@@ -325,6 +325,7 @@\n \t\t\"webgpu_loader_gltf_compressed\",\n \t\t\"webgpu_materials\",\n \t\t\"webgpu_materials_video\",\n+\t\t\"webgpu_morphtargets\",\n \t\t\"webgpu_particles\",\n \t\t\"webgpu_rtt\",\n \t\t\"webgpu_sandbox\",", "additions": 1, "deletion...
2023-06-25T04:20:56
golang/go
be0cc937ec9c109da90ec4d7da5af89606f8c0cf
0c7311e9ca8440801b40928878db623f98e3008f
net: avoid using Windows' TransmitFile on non-server machines Windows API's TransmitFile function is limited to two concurrent operations on workstation and client versions of Windows. This change modifies the net.sendFile function to perform no work in such cases so that TransmitFile is avoided. Fixes #73746 Change...
[ { "path": "src/internal/syscall/windows/types_windows.go", "patch": "@@ -256,3 +256,7 @@ type FILE_COMPLETION_INFORMATION struct {\n \tPort syscall.Handle\n \tKey uintptr\n }\n+\n+// https://learn.microsoft.com/en-us/windows/win32/api/winnt/ns-winnt-osversioninfoexa\n+// https://learn.microsoft.com/en-us/w...
2025-05-20T03:59:15
mrdoob/three.js
80118aba9ceebf2a1f8c32e323147e079c059bda
74ef522aac4e0a67b5952bd446d4b53428cc75fc
Examples: Fix displacement map usage of velocity shader. (#26324)
[ { "path": "examples/webgl_materials_channels.html", "patch": "@@ -200,6 +200,7 @@\n \t\t\t\t\tfragmentShader: VelocityShader.fragmentShader,\n \t\t\t\t\tside: THREE.DoubleSide\n \t\t\t\t} );\n+\t\t\t\tmaterialVelocity.displacementMap = displacementMap; // required for defines\n \t\t\t\tmaterialVelocity.unif...
2023-06-24T09:18:16
denoland/deno
cedf5c4f6a61131a95a9c9b4877708c82b123f86
0d72316fbfc69d333eb51939bf304b588774ef89
fix(ext/node): implement `Buffer.copyBytesFrom` (#28829) Enables the full `parallel/test-buffer-from.js` test
[ { "path": "ext/node/polyfills/internal/buffer.mjs", "patch": "@@ -49,6 +49,7 @@ const {\n TypedArrayPrototypeGetBuffer,\n TypedArrayPrototypeGetByteLength,\n TypedArrayPrototypeGetByteOffset,\n+ TypedArrayPrototypeGetLength,\n TypedArrayPrototypeSet,\n TypedArrayPrototypeSlice,\n TypedArrayProt...
2025-04-10T12:05:49
golang/go
0c7311e9ca8440801b40928878db623f98e3008f
3e82316a4357c44c193790bdc02d1f8032f34289
cmd/go: do not try to load 'all' packages with invalid import paths Before this change, when we tried to compute the set of packages in 'all', we'd add packages with invalid import paths to the set and try to load them, which would fail. Instead, do not add them to the list of packages to load in the second iteration ...
[ { "path": "src/cmd/go/internal/modload/load.go", "patch": "@@ -2009,6 +2009,13 @@ func (ld *loader) stdVendor(parentPath, path string) string {\n // starting with a list of the import paths for the packages in the main module.\n func (ld *loader) computePatternAll() (all []string) {\n \tfor _, pkg := range ...
2025-05-16T20:40:55
mrdoob/three.js
74ef522aac4e0a67b5952bd446d4b53428cc75fc
afe9cccd111494159225097c020825d359103f49
Docs: Translating Renderers/WebXR section into Arabic (ar). (#26323) * update list.json to include the Renderers/WebXR section of arabic docs * add arabic translation for webXRManager page * fix indentation
[ { "path": "docs/api/ar/renderers/webxr/WebXRManager.html", "patch": "@@ -0,0 +1,165 @@\n+<!DOCTYPE html>\n+<html lang=\"ar\">\n+\t<head>\n+\t\t<meta charset=\"utf-8\" />\n+\t\t<base href=\"../../../../\" />\n+\t\t<script src=\"page.js\"></script>\n+\t\t<link type=\"text/css\" rel=\"stylesheet\" href=\"page....
2023-06-24T07:51:16
denoland/deno
0d72316fbfc69d333eb51939bf304b588774ef89
1e50c7981ba04a9cd5aeca4c7d00174196e88749
fix(ext/node): implement finished() for web streams (#28600) Fixes https://github.com/denoland/deno/issues/28590
[ { "path": "ext/node/polyfills/_stream.mjs", "patch": "@@ -5,6 +5,7 @@\n import { nextTick } from \"ext:deno_node/_next_tick.ts\";\n import { EventEmitter as EE } from \"ext:deno_node/_events.mjs\";\n import { AbortController } from \"ext:deno_web/03_abort_signal.js\";\n+import { _isClosedPromise } from \"ex...
2025-04-10T11:53:50
golang/go
3e82316a4357c44c193790bdc02d1f8032f34289
123141166bf77b60062d830224b85131791647fd
cmd/compile: don't instrument counter globals in internal/fuzz Fixes: #72766 Change-Id: I45b521e53c2a11e259dc99e2dfc8e40cac39139a Reviewed-on: https://go-review.googlesource.com/c/go/+/673575 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Keith Randall <khr@goog...
[ { "path": "src/cmd/cgo/internal/testsanitizers/asan_test.go", "patch": "@@ -135,6 +135,9 @@ func TestASANFuzz(t *testing.T) {\n \tif bytes.Contains(out, []byte(\"AddressSanitizer\")) {\n \t\tt.Error(`output contains \"AddressSanitizer\", but should not`)\n \t}\n+\tif !bytes.Contains(out, []byte(\"FUZZ FAILE...
2025-05-16T19:07:46
mrdoob/three.js
d8e6aa315eba6d7581b8d7448e15ec465d748cff
a2adc8b191eb113e3a1da040f8450621604dc0e8
TSL: Move `ShaderNode` to `tslFn()` (#26311) * Move `ShaderNode` to `fn()` Move `func()` -> `wgslFn()` Move `shader()` -> `fn()` * NodeMaterialLoader: Fix createMaterialFromType() * revisions * return stack output if is void * SkinningNode: Move assign() to stack * Nodes: Vertex stage revision and r...
[ { "path": "examples/jsm/nodes/Nodes.js", "patch": "@@ -103,9 +103,9 @@ export { default as ViewportDepthNode, viewZToOrthographicDepth, orthographicDep\n \n // code\n export { default as ExpressionNode, expression } from './code/ExpressionNode.js';\n-export { default as CodeNode, code, js } from './code/Cod...
2023-06-22T23:01:07
denoland/deno
b26c30d9380da394865778ae75308bbc9d29a701
447b5038c0e3305a5839fa9fbb00744ec7fac148
fix(ext/node): return `Buffer` from crypto cipher APIs (#28826) Fixes https://github.com/denoland/deno/issues/28633
[ { "path": "ext/node/polyfills/internal/crypto/cipher.ts", "patch": "@@ -438,7 +438,7 @@ export function privateEncrypt(\n const padding = privateKey.padding || 1;\n \n buffer = getArrayBufferOrView(buffer, \"buffer\");\n- return op_node_private_encrypt(data, buffer, padding);\n+ return Buffer.from(op_...
2025-04-10T08:01:30
golang/go
123141166bf77b60062d830224b85131791647fd
3df078fc74a550168440d5afd5f9a9204b77f0f9
cmd/compile: add generic simplifications on riscv64 file before after Δ % addr2line 3636263 3636215 -48 -0.001% asm 6318110 6317966 -144 -0.002% buildid 3463352 3463224 -128 -0.004% cgo 5672502 5672214 -288 -0.005% compile 26904997 26905719 +722 +0.00...
[ { "path": "src/cmd/compile/internal/ssa/_gen/RISCV64.rules", "patch": "@@ -743,6 +743,15 @@\n (ROL x (NEG y)) => (ROR x y)\n (ROLW x (NEG y)) => (RORW x y)\n \n+// generic simplifications\n+(ADD x (NEG y)) => (SUB x y)\n+(SUB x (NEG y)) => (ADD x y)\n+(SUB x x) => (MOVDconst [0])\n+(AND x x) => x\n+(OR x...
2025-05-17T13:45:50
mrdoob/three.js
7f2f808ba5b80f94fab505e01b38b4a1bc287925
aef215178070679b8407832a9a71123978807456
fix triplanarTexture scale
[ { "path": "examples/jsm/nodes/utils/TriplanarTexturesNode.js", "patch": "@@ -55,7 +55,7 @@ class TriplanarTexturesNode extends Node {\n export default TriplanarTexturesNode;\n \n export const triplanarTextures = nodeProxy( TriplanarTexturesNode );\n-export const triplanarTexture = ( texture, ...params ) => ...
2023-06-22T22:38:40
denoland/deno
447b5038c0e3305a5839fa9fbb00744ec7fac148
561097dd636f397fe64fba09190ca360f648e9bb
fix(ext/node): alias `shake-128` and `shake-256` hash algorithms (#28451) Fixes #28442 --------- Signed-off-by: Arsh <69170106+lilnasy@users.noreply.github.com> Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com>
[ { "path": "ext/node/ops/crypto/digest.rs", "patch": "@@ -200,8 +200,12 @@ impl Hash {\n output_length: Option<usize>,\n ) -> Result<Self, HashError> {\n match algorithm_name {\n- \"shake128\" => return Ok(Shake128(Default::default(), output_length)),\n- \"shake256\" => return Ok(Shake256...
2025-04-10T07:58:44
golang/go
3df078fc74a550168440d5afd5f9a9204b77f0f9
2a65100e68cd82172b214a4d12cd2586c0b9ef99
runtime: add new GODEBUG checkfinalizer This new debug mode detects cleanup/finalizer leaks using checkmark mode. It runs a partial GC using only specials as roots. If the GC can find a path from one of these roots back to the object the special is attached to, then the object might never be reclaimed. (The cycle coul...
[ { "path": "src/runtime/gc_test.go", "patch": "@@ -1073,3 +1073,17 @@ func TestMSpanQueue(t *testing.T) {\n \t\texpectMSpan(t, p.Pop(), nil, \"pop\")\n \t})\n }\n+\n+func TestDetectFinalizerAndCleanupLeaks(t *testing.T) {\n+\tgot := runTestProg(t, \"testprog\", \"DetectFinalizerAndCleanupLeaks\", \"GODEBUG=c...
2024-12-09T19:07:40
mrdoob/three.js
aef215178070679b8407832a9a71123978807456
0e365389f1fd68198edb4b6cb9ba17b2b1b62107
Editor: Fix usage of TGA textures. (#26316)
[ { "path": "editor/js/libs/ui.three.js", "patch": "@@ -76,18 +76,22 @@ class UITexture extends UISpan {\n \n \t\t\t\treader.addEventListener( 'load', function ( event ) {\n \n-\t\t\t\t\tconst canvas = new TGALoader().parse( event.target.result );\n+\t\t\t\t\tconst loader = new TGALoader();\n+\t\t\t\t\tloader...
2023-06-22T08:43:07
denoland/deno
561097dd636f397fe64fba09190ca360f648e9bb
25e3a17bd935c54be97289a8d6f695a1830dd1fa
fix(ext/node): implement `process.loadEnvFile` (#28824) Fixes https://github.com/denoland/deno/issues/28017
[ { "path": "Cargo.lock", "patch": "@@ -2272,6 +2272,7 @@ dependencies = [\n \"deno_whoami\",\n \"der\",\n \"digest\",\n+ \"dotenvy\",\n \"dsa\",\n \"ecb\",\n \"ecdsa\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "ext/node/Cargo.toml", "patch": "@@ -41,6...
2025-04-10T07:43:29
mrdoob/three.js
0e365389f1fd68198edb4b6cb9ba17b2b1b62107
feafbad8e2c19009dd100919e057b11831e0eb85
Typo fix in prerequisites.html (#26315)
[ { "path": "manual/en/prerequisites.html", "patch": "@@ -281,7 +281,7 @@ <h1 id=\"learn-javascript-coding-conventions-\">Learn JavaScript coding convention\n will point out errors if you use the wrong case since by following the convention\n above they can know when you're using something incorrectly.</p>\n ...
2023-06-22T08:32:45
golang/go
2a65100e68cd82172b214a4d12cd2586c0b9ef99
ff9da9bcd579a08cf9ca62620c5956676ac28586
cmd/internal/testdir: filter out errors outside input file set When an errorcheck test uses -m and instantiates an imported generic function, the errors will include -m messages from the imported package (since the new function has not previously been walked). These errors cannot be matched since we can't write errors...
[ { "path": "src/cmd/internal/testdir/testdir_test.go", "patch": "@@ -1242,6 +1242,24 @@ func (t test) errorCheck(outStr string, wantAuto bool, fullshort ...string) (err\n \t\t}\n \t}\n \n+\tif len(out) > 0 {\n+\t\t// If a test uses -m and instantiates an imported generic function,\n+\t\t// the errors will in...
2025-05-14T05:01:43
denoland/deno
25e3a17bd935c54be97289a8d6f695a1830dd1fa
8e42ea015d740446f7b8bafffabafb0c168f8614
fix(unstable): lint `.parent` property not traversing over groups (#28803) In our JS lint plugin API each node has a `.parent` property to access its parent. But I forgot to skip group nodes, which lead to an invalid node being returned. Fixes: https://github.com/denoland/deno/issues/28799
[ { "path": "cli/js/40_lint.js", "patch": "@@ -729,7 +729,12 @@ function readValue(ctx, idx, search, parseNode) {\n } else if (search === AST_PROP_RANGE) {\n return readSpan(ctx, idx);\n } else if (search === AST_PROP_PARENT) {\n- const parent = readParent(buf, idx);\n+ let parent = readParent(b...
2025-04-10T07:17:42
mrdoob/three.js
40d18fda17eff723897b78e7cf208a260558ad75
ff39ae9c0a5f3b8cea40ed28595705bdd0eb8195
WebGPUPipelines: Improve reuse programs. (#26305) * WGSLNodeBuilder: Fix VideoTexture NoColorSpace * Pipelines: Improve reuse programs. * Improve performance. * cleanup
[ { "path": "examples/jsm/nodes/display/ColorSpaceNode.js", "patch": "@@ -66,7 +66,6 @@ class ColorSpaceNode extends TempNode {\n \t\tsuper( 'vec4' );\n \n \t\tthis.method = method;\n-\n \t\tthis.node = node;\n \n \t}", "additions": 0, "deletions": 1, "language": "JavaScript" }, { "path": ...
2023-06-21T14:40:59
golang/go
ff9da9bcd579a08cf9ca62620c5956676ac28586
326e5e1b7a9f421db972fed0a6e79a1c9601d0ae
cmd/dist: pass GO_GCFLAGS to cpuN runtime tests We want gcflags, which control builder type (e.g. noopt) to be used for these tests also. Should fix noopt and maybe other builders. Change-Id: Iad34beab51714f0c38989ec0fc8778cf79087f72 Reviewed-on: https://go-review.googlesource.com/c/go/+/674455 Reviewed-by: Keith Ra...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -952,6 +952,7 @@ func (t *tester) registerTests() {\n \t\t\t\t\tvariant: \"cpu\" + strconv.Itoa(i),\n \t\t\t\t\ttimeout: 300 * time.Second,\n \t\t\t\t\tcpu: strconv.Itoa(i),\n+\t\t\t\t\tgcflags: gogcflags,\n \t\t\t\t\tshort: true,\n \t\t\t\t\tte...
2025-05-20T15:42:24
denoland/deno
1513550d661400fce7141de1a4d70ed78610c3fd
58c6c0bc9c1b4ee08645be936ff9268f17028f0f
fix(ext/canvas): handle integer overflow in `createImageBitmap` (#28764) fixes https://github.com/denoland/deno/issues/28732
[ { "path": "ext/canvas/image_ops.rs", "patch": "@@ -145,13 +145,22 @@ impl<T: Primitive + SaturatingMul + Ord> UnpremultiplyAlpha for Rgba<T> {\n let alpha_index = pixel.len() - 1;\n let alpha = pixel[alpha_index];\n \n+ // avoid to divide by zero\n+ if alpha.to_f32().unwrap() == 0.0 {\n+ ...
2025-04-10T05:46:14
mrdoob/three.js
36243d15a32b2f32a14b678e1d712aa6b45c9137
7b419c9aeb86d43337b16fedb97a8afe4674f3b0
Puppeteer E2E test: Replace BrowserFetcher with @puppeteer/browsers (#26282) * Puppeteer E2E test: Replace BrowserFetcher with @puppeteer/browsers * Cleanup * Fix dependency * Remove unused function
[ { "path": "package-lock.json", "patch": "@@ -9,6 +9,7 @@\n \"version\": \"0.153.0\",\n \"license\": \"MIT\",\n \"devDependencies\": {\n+ \"@puppeteer/browsers\": \"^1.4.1\",\n \"@rollup/plugin-node-resolve\": \"^15.0.1\",\n \"@rollup/plugin-terser\": \"^0.4.0\",\n ...
2023-06-20T10:13:27
golang/go
1635aed9413233ba8f974447ca3359b7a9159985
b69f50faef360beedd408048d19909c85a2e0de0
hash/maphash: hash channels in purego version of maphash.Comparable This change makes purego implementation of maphash.Comparable consistent with the one in runtime and fixes hashing of channels. Fixes #73657 Change-Id: If78a21d996f0c20c0224d4014e4a4177b09c3aa3 GitHub-Last-Rev: 2537216a1e4e62791c7e417441ee770ca149f3...
[ { "path": "src/hash/maphash/maphash_purego.go", "patch": "@@ -161,7 +161,7 @@ func appendT(h *Hash, v reflect.Value) {\n \tcase reflect.Bool:\n \t\th.WriteByte(btoi(v.Bool()))\n \t\treturn\n-\tcase reflect.UnsafePointer, reflect.Pointer:\n+\tcase reflect.UnsafePointer, reflect.Pointer, reflect.Chan:\n \t\tv...
2025-05-10T17:58:48
mrdoob/three.js
0fc8d3d099d6bc7f2b2c1a3f22875eea67c01e25
3a7692fd66b5acfb5430e0e24a9b510ba9a87c1a
Fix shadow update when object is culled (#26293)
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -1093,6 +1093,9 @@ class WebGLRenderer {\n \n \t\t\tconst shadowsArray = currentRenderState.state.shadowsArray;\n \n+\t\t\t// muse be done before shadowMap.render, so that the number is the the same for shadows and real objects\n+\t\t\tthis.info.rende...
2023-06-20T08:35:25
denoland/deno
58c6c0bc9c1b4ee08645be936ff9268f17028f0f
c394f1c4321e27ba3a71e4f12dc544b2dbb92dee
fix: dont strip n-api symbols in `denort` on mac (#28800) Fixes https://github.com/denoland/deno/issues/24614
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -828,7 +828,7 @@ const ci = {\n \"cd target/release\",\n \"zip -r deno-${{ matrix.arch }}-apple-darwin.zip deno\",\n \"shasum -a 256 deno-${{ matrix.arch }}-apple-darwin.zip > deno-${{ matrix.arch }}-apple-darwin....
2025-04-09T17:44:29
golang/go
b69f50faef360beedd408048d19909c85a2e0de0
df9888ea4e97feb755e452609be5078686370995
net/http: upon http redirect, copy Request.GetBody in new request This enable http.RoundTripper implementation to retry POST request (let's say after a 500) after a 307/308 redirect. Fixes #73439 Change-Id: I4365ff58b012c7f0d60e0317a08c98b1d48f657e Reviewed-on: https://go-review.googlesource.com/c/go/+/666735 Review...
[ { "path": "src/net/http/client.go", "patch": "@@ -672,6 +672,7 @@ func (c *Client) do(req *Request) (retres *Response, reterr error) {\n \t\t\t\t\tresp.closeBody()\n \t\t\t\t\treturn nil, uerr(err)\n \t\t\t\t}\n+\t\t\t\treq.GetBody = ireq.GetBody\n \t\t\t\treq.ContentLength = ireq.ContentLength\n \t\t\t}\n ...
2025-04-18T17:48:04
mrdoob/three.js
3a7692fd66b5acfb5430e0e24a9b510ba9a87c1a
cbe823c0f741167fee1d8049ad06c8984456d65e
WebGPURenderer: Support Material.blending = NoBlending (#26295) * add support for meshPhongNodeMaterial * fix rendering to formats that do not support blending * fix missing semicolon --------- Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "examples/jsm/renderers/webgpu/utils/WebGPUPipelineUtils.js", "patch": "@@ -57,13 +57,14 @@ class WebGPUPipelineUtils {\n \n \t\t// blending\n \n-\t\tlet alphaBlend = {};\n-\t\tlet colorBlend = {};\n+\t\tlet blending;\n \n \t\tif ( material.transparent === true && material.blending !== NoBlending ...
2023-06-19T20:33:14
denoland/deno
c394f1c4321e27ba3a71e4f12dc544b2dbb92dee
c8a0f6b1cd9fad5e84e645d80d3390c985748b23
fix(build): upgrade libffi to 4.0.0 (#28816)
[ { "path": "Cargo.lock", "patch": "@@ -5113,19 +5113,19 @@ checksum = \"c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6\"\n \n [[package]]\n name = \"libffi\"\n-version = \"3.2.0\"\n+version = \"4.0.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"ce826...
2025-04-09T13:50:31
golang/go
df9888ea4e97feb755e452609be5078686370995
24ea1aa25c954bbbe9968d735795a649833b0b1c
runtime: prevent unnecessary zeroing of large objects with pointers CL 614257 refactored mallocgc but lost an optimization: if a span for a large object is already backed by memory fresh from the OS (and thus zeroed), we don't need to zero it. CL 614257 unconditionally zeroed spans for large objects that contain point...
[ { "path": "src/runtime/malloc.go", "patch": "@@ -1548,12 +1548,13 @@ func mallocgcLarge(size uintptr, typ *_type, needzero bool) (unsafe.Pointer, uin\n \tsize = span.elemsize\n \tx := unsafe.Pointer(span.base())\n \n-\t// Ensure that the stores above that initialize x to\n-\t// type-safe memory and set the ...
2025-03-21T16:26:15
mrdoob/three.js
cbe823c0f741167fee1d8049ad06c8984456d65e
d03d20999ec2e2f375a179580f3f3bce4707381c
Editor: Fix `LDrawLoader` usage. (#26294)
[ { "path": "editor/js/Loader.js", "patch": "@@ -444,7 +444,7 @@ function Loader( editor ) {\n \n \t\t\t\t\tconst loader = new LDrawLoader();\n \t\t\t\t\tloader.setPath( '../../examples/models/ldraw/officialLibrary/' );\n-\t\t\t\t\tloader.parse( event.target.result, undefined, function ( group ) {\n+\t\t\t\t\...
2023-06-19T14:56:47
denoland/deno
c8a0f6b1cd9fad5e84e645d80d3390c985748b23
cb00561e9785f421bc2bd9ac10c5fa09c26a879b
fix: use full SHA for canary panic URLs (#28819)
[ { "path": "cli/lib/version.rs", "patch": "@@ -15,7 +15,7 @@ pub fn otel_runtime_config() -> OtelRuntimeConfig {\n \n const GIT_COMMIT_HASH: &str = env!(\"GIT_COMMIT_HASH\");\n const TYPESCRIPT: &str = \"5.7.3\";\n-const DENO_VERSION: &str = env!(\"DENO_VERSION\");\n+pub const DENO_VERSION: &str = env!(\"DEN...
2025-04-09T11:51:59
mrdoob/three.js
e2d1338067ead07412feb635ebe04e4e26fb0c49
3b52c709126e7013d36b7ef9abce30cd0e49271d
TSL: Editor (GLSL) (#26283) * Added GLSLNodeBuilder * WebGLNodeBuilder: Fix redefinitions * update * add preview option * improve styles variables
[ { "path": "examples/jsm/nodes/accessors/CameraNode.js", "patch": "@@ -1,5 +1,6 @@\n import Object3DNode from './Object3DNode.js';\n import { addNodeClass } from '../core/Node.js';\n+import { label } from '../core/ContextNode.js';\n import { nodeImmutable } from '../shadernode/ShaderNode.js';\n \n class Came...
2023-06-19T00:24:45
golang/go
24ea1aa25c954bbbe9968d735795a649833b0b1c
693d8d920c57489f427c22162986bd6cef2550ae
runtime: only update freeIndexForScan outside of the mark phase Currently, it's possible for asynchronous preemption to observe a partially initialized object. The sequence of events goes like this: - The GC is in the mark phase. - Thread T1 is allocating object O1. - Thread T1 zeroes the allocation, runs the publicat...
[ { "path": "src/runtime/malloc.go", "patch": "@@ -1196,23 +1196,23 @@ func mallocgcTiny(size uintptr, typ *_type) (unsafe.Pointer, uintptr) {\n \t// the garbage collector could follow a pointer to x,\n \t// but see uninitialized memory or stale heap bits.\n \tpublicationBarrier()\n-\t// As x and the heap bit...
2025-05-13T20:09:57
denoland/deno
cb00561e9785f421bc2bd9ac10c5fa09c26a879b
9bc9faff495242f3631f8c2d4a41a64a6069e588
fix(ext/node): support input option in spawnSync (#28792)
[ { "path": "ext/node/polyfills/internal/child_process.ts", "patch": "@@ -59,6 +59,7 @@ import { Socket } from \"node:net\";\n import {\n kDetached,\n kExtraStdio,\n+ kInputOption,\n kIpc,\n kNeedsNpmProcessState,\n } from \"ext:deno_process/40_process.js\";\n@@ -985,13 +986,35 @@ function parseSpawn...
2025-04-09T04:42:12
mrdoob/three.js
b691d7008ea63117cba11cb4e777b28fa3887a9c
4e438e91d31c36be061db7751bed9cbba90839f8
TSL: Editor (#26270) * update label() behavior, use temp() instead * Nodes: Add unlit support and some revisions * Add `webgpu_tsl` example * update texture * some additional instructions * update case * cleanup * update title * adjust some decorations * fix typo * rename webgpu_tsl -> we...
[ { "path": "examples/files.json", "patch": "@@ -333,6 +333,7 @@\n \t\t\"webgpu_skinning_instancing\",\n \t\t\"webgpu_skinning_points\",\n \t\t\"webgpu_sprites\",\n+\t\t\"webgpu_tsl_editor\",\n \t\t\"webgpu_video_panorama\"\n \t],\n \t\"webaudio\": [", "additions": 1, "deletions": 0, "language": "...
2023-06-17T17:45:52
golang/go
4f1146e6614676126d3810ea319e3f658d4f8116
c8bf388bad9bf350b513c562bba22868bc976247
testing: use a pattern to match the elapsed time in TestTRun Fixes #73723 Fixes #73737 Fixes #73739 Change-Id: I1ebd3614614285c3e660d48241389bb0f896be23 Reviewed-on: https://go-review.googlesource.com/c/go/+/674355 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: ...
[ { "path": "src/testing/sub_test.go", "patch": "@@ -505,8 +505,8 @@ func TestTRun(t *T) {\n \t\tdesc: \"buffered output gets flushed at test end\",\n \t\tok: false,\n \t\toutput: `\n---- FAIL: buffered output gets flushed at test end (0.00s)\n- --- FAIL: buffered output gets flushed at test end/#00 (0.0...
2025-05-20T07:46:53
denoland/deno
9bc9faff495242f3631f8c2d4a41a64a6069e588
c8291e69262e2db856d71137c3f78e50522401b2
fix(ext/node): add support for --no- prefix (allowNegative option) in parseArgs() (#28811)
[ { "path": "ext/node/polyfills/internal/util/parse_args/parse_args.js", "patch": "@@ -332,8 +332,15 @@ export const parseArgs = (config = { __proto__: null }) => {\n const allowPositionals = objectGetOwn(config, \"allowPositionals\") ?? !strict;\n const returnTokens = objectGetOwn(config, \"tokens\") ?? ...
2025-04-09T03:24:02
mrdoob/three.js
ef6ba57a1ca2aa447f7d30132e039ff50e666438
da40665e70eb69b8d7f68fd892aed7cf917619c1
Nodes: equal() operator type casting to bool in WGSL (#26276) * add support for meshPhongNodeMaterial * fix typing for equal operator --------- Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "examples/jsm/nodes/math/OperatorNode.js", "patch": "@@ -120,7 +120,7 @@ class OperatorNode extends TempNode {\n \n \t\t\t\ttypeB = typeA;\n \n-\t\t\t} else if ( op === '<' || op === '>' || op === '<=' || op === '>=' ) {\n+\t\t\t} else if ( op === '<' || op === '>' || op === '<=' || op === '>=' ||...
2023-06-16T16:14:50
golang/go
c8bf388bad9bf350b513c562bba22868bc976247
524946d2475d0b541ba84396f759b9e4c7aa4a98
cmd/compile: align stack-allocated backing stores higher than required Because that's what mallocgc did and some user code came to rely on it. Fixes #73199 Change-Id: I45ca00d2ea448e6729ef9ac4cec3c1eb0ceccc89 Reviewed-on: https://go-review.googlesource.com/c/go/+/666116 Reviewed-by: t hepudds <thepudds1460@gmail.com...
[ { "path": "src/cmd/compile/internal/walk/builtin.go", "patch": "@@ -600,11 +600,23 @@ func walkMakeSlice(n *ir.MakeExpr, init *ir.Nodes) ir.Node {\n \t\t\tlenCap.Body.Append(mkcall(\"panicmakeslicecap\", nil, &lenCap.Body))\n \t\t\tnif.Body.Append(lenCap)\n \n-\t\t\tt := types.NewArray(t.Elem(), K) ...
2025-04-17T05:48:06
mrdoob/three.js
e6f7c4e677cb8869502739da2640791d020d8d2f
c6536d83799dbfacd03ab65a30a9790b4af6b2ea
Nodes: Fix VideoTexture in WebGPUBackend & ColorSpaceNode revision (#26261) * Nodes: Fix VideoTexture ColorSpace in WebGPUBackend * Added webgpu_video_panorama example
[ { "path": "examples/files.json", "patch": "@@ -332,7 +332,8 @@\n \t\t\"webgpu_skinning\",\n \t\t\"webgpu_skinning_instancing\",\n \t\t\"webgpu_skinning_points\",\n-\t\t\"webgpu_sprites\"\n+\t\t\"webgpu_sprites\",\n+\t\t\"webgpu_video_panorama\"\n \t],\n \t\"webaudio\": [\n \t\t\"webaudio_orientation\",", ...
2023-06-14T17:35:45
denoland/deno
ee4c4a0a6371ad3a91ef30356cd85a7d55d0f40f
a69b5e16b14e6c97ba372c2a1626898fad9bc9b2
fix(unstable): add parent types to lint ast nodes (#28802) Noticed that the `.parent` type was missing for AST nodes for our JS lint API. Whenever possible I've only specified the limited possibilities of parent types, but when it's too complex I defaulted to just `Node`.
[ { "path": "cli/tsc/dts/lib.deno.unstable.d.ts", "patch": "@@ -1544,6 +1544,7 @@ declare namespace Deno {\n imported: Identifier | StringLiteral;\n local: Identifier;\n importKind: \"type\" | \"value\";\n+ parent: ExportAllDeclaration | ExportNamedDeclaration | ImportDeclaration;\n ...
2025-04-08T16:51:09
golang/go
524946d2475d0b541ba84396f759b9e4c7aa4a98
ce88e341b90a0878385535bcb54206ec97bcc518
cmd/compile: don't preload registers if destination already scheduled In regalloc, we allocate some values to registers before loop entry, so that they don't need to be loaded (from spill locations) during the loop. But it is pointless if we've already regalloc'd the loop body. Whatever restores we needed for the bod...
[ { "path": "src/cmd/compile/internal/ssa/layout.go", "patch": "@@ -15,7 +15,7 @@ func layout(f *Func) {\n // imposed by the linear-scan algorithm.\n func layoutRegallocOrder(f *Func) []*Block {\n \t// remnant of an experiment; perhaps there will be another.\n-\treturn layoutOrder(f)\n+\treturn f.Blocks\n }\n...
2025-05-14T00:53:45
mrdoob/three.js
dc4d8354698177a5f9333ba26771fccfa9b1dfcd
900e6ba8ba88dc9958f19b7d9219d556153d1494
Fix incorrect argument passed to uiv clearbuffer (#26249)
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -607,23 +607,21 @@ class WebGLRenderer {\n \t\t\t\t\tconst g = clearColor.g;\n \t\t\t\t\tconst b = clearColor.b;\n \n-\t\t\t\t\tconst __webglFramebuffer = properties.get( _currentRenderTarget ).__webglFramebuffer;\n-\n \t\t\t\t\tif ( isUnsignedType ) ...
2023-06-13T11:02:52
denoland/deno
a69b5e16b14e6c97ba372c2a1626898fad9bc9b2
c6ecd179ad8030467189dab9b7406d143e5ad68b
fix(compile): multi icon ordering on windows (#28771) Fixes https://github.com/denoland/deno/issues/26400. Correctly handle multi-icon icos in `deno compile --icon`. Ref https://github.com/denoland/sui/commit/bf318ea9c847810b79d6a34a4e744b7b09630ddb ## Explanation Icons in PE are very sensitive to resource table or...
[ { "path": "Cargo.lock", "patch": "@@ -5180,11 +5180,12 @@ dependencies = [\n \n [[package]]\n name = \"libsui\"\n-version = \"0.5.0\"\n+version = \"0.7.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"89795977654ad6250d6c0915411b622bac22f9efb4f852af94b2e00964cab832\"\n...
2025-04-08T16:29:10
golang/go
ce88e341b90a0878385535bcb54206ec97bcc518
3baf53aec6c2209562495d4ac1dc035c2881f6eb
cmd/compile: allocate backing store for append on the stack When appending, if the backing store doesn't escape and a constant-sized backing store is big enough, use a constant-sized stack-allocated backing store instead of allocating it from the heap. cmd/go is <0.1% bigger. As an example of how this helps, if you ...
[ { "path": "src/cmd/compile/internal/escape/call.go", "patch": "@@ -159,6 +159,14 @@ func (e *escape) call(ks []hole, call ir.Node) {\n \t\t}\n \t\te.discard(call.RType)\n \n+\t\t// Model the new backing store that might be allocated by append.\n+\t\t// Its address flows to the result.\n+\t\t// Users of esca...
2025-04-09T21:38:03
mrdoob/three.js
900e6ba8ba88dc9958f19b7d9219d556153d1494
ed2bfb2e56ee84077372735acdf4425d96549fea
Update PlaneGeometry.html (#26248) There's a typo in doc perhaps comes from the wrong line break position.
[ { "path": "docs/api/en/geometries/PlaneGeometry.html", "patch": "@@ -45,8 +45,7 @@ <h2>Code Example</h2>\n \t\t<h2>Constructor</h2>\n \n \t\t<h3>\n-\t\t\t[name]([param:Float width], [param:Float height], [param:Integer\n-\t\t\twidthSegments], [param:Integer heightSegments])\n+\t\t\t[name]([param:Float width...
2023-06-13T09:19:19
denoland/deno
41005f8cd4281922a9faf833e8ae6d1a696cf7de
6d33141d8dd88123b76476e4c91e608919f6736c
chore: fix node_compat_test workflow summary job (#28793)
[ { "path": ".github/workflows/node_compat_test.yml", "patch": "@@ -51,6 +51,8 @@ jobs:\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n+ with:\n+ submodules: true\n - name: Setup Deno\n uses: denoland/setup-deno@v2\n - name: Authenticate with Goo...
2025-04-08T14:14:02
golang/go
498899e20549a9e30f7641fc3a3592f89a933a95
2cde950049dd46cae3ae91cde3e270825793ba0f
math: fix portable FMA implementation when x*y ~ 0, x*y < 0 and z = 0 Adding zero usually does not change the original value. However, there is an exception with negative zero. (e.g. (-0) + (+0) = (+0)) This applies when x * y is negative and underflows. Fixes #73757 Change-Id: Ib7b54bdacd1dcfe3d392802ea35cdb4e989f9...
[ { "path": "src/math/all_test.go", "patch": "@@ -2126,6 +2126,11 @@ var fmaC = []struct{ x, y, z, want float64 }{\n \t// Issue #61130\n \t{-1, 1, 1, 0},\n \t{1, 1, -1, 0},\n+\n+\t// Issue #73757\n+\t{0x1p-1022, -0x1p-1022, 0, Copysign(0, -1)},\n+\t{Copysign(0, -1), 1, 0, 0},\n+\t{1, Copysign(0, -1), 0, 0},\n...
2025-05-18T17:28:09
mrdoob/three.js
f71e2eee034daeb82e181644b346a2c737b5c536
fddc463646e3737db1ccd1095d27a959439a7834
PLYLoader: Fix handling binary files with \n\r line endings in header. (#26232) * add support for meshPhongNodeMaterial * detect files with \r\n line endings * handle files with \n\r line endings in ascii section correctly * make \r\n specific. * Update PLYLoader.js --------- Co-authored-by: aardgoos...
[ { "path": "examples/jsm/loaders/PLYLoader.js", "patch": "@@ -104,17 +104,15 @@ class PLYLoader extends Loader {\n \n \tparse( data ) {\n \n-\t\tfunction parseHeader( data ) {\n+\t\tfunction parseHeader( data, headerLength = 0 ) {\n \n \t\t\tconst patternHeader = /^ply([\\s\\S]*)end_header(\\r\\n|\\r|\\n)/;\...
2023-06-12T19:37:20
denoland/deno
6d33141d8dd88123b76476e4c91e608919f6736c
9bc3b07819fdfee1d05ad7ded9f36450d0e14a85
fix(node): add reset method to event loop delay histogram (#28788) Fixes https://github.com/denoland/deno/issues/28767 Don't love the `RefCell`, but don't really see a (safe) way around it.
[ { "path": "ext/node/ops/perf_hooks.rs", "patch": "@@ -1,6 +1,7 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n use std::cell::Cell;\n+use std::cell::RefCell;\n \n use deno_core::op2;\n use deno_core::GarbageCollected;\n@@ -13,7 +14,7 @@ pub enum PerfHooksError {\n }\n \n pub struct EldHistog...
2025-04-08T05:05:53
mrdoob/three.js
77ba7432bda6b0dc61d3a7a197bcd55d1a9ae0da
c1c3625b100175982734415651275b319a23a32c
Material: Add "material.alphaHash" transparency mode (#24271) * Material: Add .alphaHash and .alphaHashScale Material.alphaHash: Add example Clean up. Update builds Examples: Clean up alpha hash params Fix background color changes, add GammaCorrectionShader TAARenderPass: Initialize .accumulateIndex ...
[ { "path": "examples/jsm/postprocessing/TAARenderPass.js", "patch": "@@ -24,6 +24,7 @@ class TAARenderPass extends SSAARenderPass {\n \n \t\tthis.sampleLevel = 0;\n \t\tthis.accumulate = false;\n+\t\tthis.accumulateIndex = - 1;\n \n \t}\n ", "additions": 1, "deletions": 0, "language": "JavaScript...
2023-06-12T04:21:55
golang/go
2cde950049dd46cae3ae91cde3e270825793ba0f
fd6afa352d0dfc86a158a6ef011454891593d065
runtime: disable TestSegv in race mode This was just enabled in CL 643897. It seems to work fine on Linux, but there are traceback issues on Darwin. We could disable just on Darwin, but I'm not sure SIGSEGV inside of TSAN is something we care to support. Fixes #73784. Cq-Include-Trybots: luci.golang.try:gotip-darwin...
[ { "path": "src/runtime/crash_cgo_test.go", "patch": "@@ -659,8 +659,8 @@ func TestSegv(t *testing.T) {\n \tcase \"plan9\", \"windows\":\n \t\tt.Skipf(\"no signals on %s\", runtime.GOOS)\n \t}\n-\tif asan.Enabled || msan.Enabled {\n-\t\tt.Skip(\"skipping test on ASAN/MSAN: triggers SIGSEGV in sanitizer runti...
2025-05-19T20:20:47
mrdoob/three.js
c1c3625b100175982734415651275b319a23a32c
ea0d43ebd19a00118521333ad2affc2979e09b6c
Puppeteer E2E test: Use `new` headless mode (#25982) * Puppeteer E2E test: Use `new` headless mode * Update * Show platform + test * Return exceptions * WebXR isn't determinstic? * Fix example name
[ { "path": "test/e2e/puppeteer.js", "patch": "@@ -42,26 +42,36 @@ const parseTime = 6; // 6 seconds per megabyte\n \n const exceptionList = [\n \n-\t// video tag not deterministic enough\n+\t// video tag isn't deterministic enough?\n \t'css3d_youtube',\n+\t'webgl_materials_video',\n \t'webgl_video_kinect',\n...
2023-06-12T04:11:35
denoland/deno
780b7415556c642e0a2a241aa52ada6c770d9d50
52d9fc14997bb01751f3dce74195bac87e50a5bf
perf(npm): load npm resolution snapshot directly from lockfile (#28647) Fixes #27264. Fixes https://github.com/denoland/deno/issues/28161. Currently the new lockfile version is gated behind an unstable flag (`--unstable-lockfile-v5`) until the next minor release, where it will become the default. The main motivation...
[ { "path": "Cargo.lock", "patch": "@@ -336,9 +336,9 @@ dependencies = [\n \n [[package]]\n name = \"async-trait\"\n-version = \"0.1.80\"\n+version = \"0.1.88\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca\...
2025-04-08T02:06:17
mrdoob/three.js
c8075f51e0baceff0feb459d143fb3586089fd2d
2ec45ff8f919423653e483034fbdbba3bc466951
NodeMaterial: Fix default forceSinglePass & .alphaMap (#26231)
[ { "path": "examples/jsm/nodes/materials/NodeMaterial.js", "patch": "@@ -29,6 +29,8 @@ class NodeMaterial extends ShaderMaterial {\n \n \t\tthis.type = this.constructor.name;\n \n+\t\tthis.forceSinglePass = false;\n+\n \t\tthis.lights = true;\n \t\tthis.normals = true;\n ", "additions": 2, "deletions...
2023-06-10T13:58:51
denoland/deno
52d9fc14997bb01751f3dce74195bac87e50a5bf
47c05ff70df7404013f17877c62ab4103c6e8b58
fix(ext/node): use primordials in `ext/node/polyfills/path/separator.ts` (#28669)
[ { "path": "ext/node/polyfills/path/separator.ts", "patch": "@@ -1,9 +1,11 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n import { isWindows } from \"ext:deno_node/_util/os.t...
2025-04-08T01:42:58
denoland/deno
47c05ff70df7404013f17877c62ab4103c6e8b58
874f4fc5aecd621cd1c98b8061eda96f7668e7ea
fix(install): regression where Deno not used when postinstall script ran script without file extension (#28786) `node scripts/postinstall` was not running with Deno anymore and it previously was. Closes https://github.com/denoland/deno/issues/28780
[ { "path": "cli/task_runner.rs", "patch": "@@ -7,7 +7,6 @@ use std::path::Path;\n use std::path::PathBuf;\n use std::rc::Rc;\n \n-use deno_ast::MediaType;\n use deno_core::anyhow::Context;\n use deno_core::error::AnyError;\n use deno_core::futures::future::LocalBoxFuture;\n@@ -273,23 +272,19 @@ impl ShellCom...
2025-04-08T00:59:48
golang/go
177d5eb630ab25916b6c44a6fa89ab371433f9fa
3602cec3af6083d095729f3db8493a226b9273c3
net/http: clarify ServeMux.Handler behavior Explain that ServeMux.Handler doesn't populate the request with matches. Fixes #69623. Change-Id: If625b3f8e8f4e54b05e1d9a86e8c471045e77763 Reviewed-on: https://go-review.googlesource.com/c/go/+/674095 Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: Chressie Himpe...
[ { "path": "src/net/http/server.go", "patch": "@@ -836,6 +836,7 @@ var copyBufPool = sync.Pool{New: func() any { return new([copyBufPoolSize]byte)\n func getCopyBuf() []byte {\n \treturn copyBufPool.Get().(*[copyBufPoolSize]byte)[:]\n }\n+\n func putCopyBuf(b []byte) {\n \tif len(b) != copyBufPoolSize {\n \t...
2025-05-19T13:20:04
denoland/deno
96b06c64a5e1d562544dc258405ae5374dee080a
f62118257769a7cc0a990b9af25d978f0e6bbf70
fix(compile): do not panic including node_modules directory (#28782) Closes https://github.com/denoland/deno/issues/28773
[ { "path": "cli/lib/standalone/virtual_fs.rs", "patch": "@@ -3,6 +3,7 @@\n use std::cmp::Ordering;\n use std::collections::hash_map::Entry;\n use std::collections::HashMap;\n+use std::collections::HashSet;\n use std::collections::VecDeque;\n use std::fmt;\n use std::io::Read;\n@@ -449,6 +450,7 @@ pub struct ...
2025-04-07T23:43:34
golang/go
3602cec3af6083d095729f3db8493a226b9273c3
d52679006c8e08875fac92aca1f723fce488d0d2
net/http: fix ServeMux.Handler on trailing-slash redirect When a match involves a trailing-slash redirect, ServeMux.Handler now returns the pattern that matched. Fixes #73688. Change-Id: I682d9cc9a3628bed8bf21139b98369ffa6c53792 Reviewed-on: https://go-review.googlesource.com/c/go/+/673815 Reviewed-by: Filippo Vals...
[ { "path": "src/net/http/serve_test.go", "patch": "@@ -391,6 +391,19 @@ func TestServeMuxHandler(t *testing.T) {\n \t}\n }\n \n+// Issue 73688\n+func TestServeMuxHandlerTrailingSlash(t *testing.T) {\n+\tsetParallel(t)\n+\tmux := NewServeMux()\n+\tconst original = \"/{x}/\"\n+\tmux.Handle(original, NotFoundHa...
2025-05-17T23:36:06