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
93978f8469f8e48d00931a528c89259ed04fd233
8cf836f2ecb876a17305287cb18e7009555c11f3
fix multiple events
[ { "path": "src/runtime/vdom/modules/events.js", "patch": "@@ -1,9 +1,8 @@\n function arrInvoker (arr) {\n- return function () {\n- // Special case when length is two, for performance\n- arr.length === 2\n- ? arr[0](arr[1])\n- : arr[0].apply(undefined, arr.slice(1))\n+ return function (ev) ...
2016-04-14T00:37:13
mrdoob/three.js
1c565dea25453e7c35b512ef3ca23b13b9c32ef6
7f351a0d21f01ed360512d71746dacfe87bdf12a
fix "frame-ancestors 'none'" error with github link (#27015)
[ { "path": "examples/webgl_shadowmap_pointlight.html", "patch": "@@ -8,7 +8,7 @@\n \t</head>\n \t<body>\n \t\t<div id=\"info\">\n-\t\t\t<a href=\"https://threejs.org\" target=\"_blank\" rel=\"noopener\">three.js</a> - THREE.PointLight ShadowMap by <a href=\"https://github.com/mkkellogg\">mkkellogg</a>\n+\t\t...
2023-10-20T17:07:55
denoland/deno
9c5122ef5863c3c0902468ac377683bda5c0df2e
be294f3319c69dbff63b2fe45a7fae732439d9e4
fix(precompile): escape string literal jsx children (#29200) Fixes https://github.com/denoland/deno_ast/pull/304 . This only affects actual string literals in the source code inside a JSX expression.
[ { "path": "Cargo.lock", "patch": "@@ -1592,9 +1592,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_ast\"\n-version = \"0.46.6\"\n+version = \"0.46.7\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"cef7f606485e5e5fdee9946d5822de9242d8143da9beb1c32cbaf2e8dd1ef025\"...
2025-05-07T15:42:15
vuejs/vue
9389b1b7ed7a40dfa31f5f5da1541c09f624ec16
5228ccb5fd84cadc1f85dcfab8dad61222692526
fix model
[ { "path": "src/compiler/codegen/index.js", "patch": "@@ -77,7 +77,6 @@ function genData (el) {\n if (el.events) {\n data += genHandlers(el.events)\n }\n- console.log(data)\n return data.replace(/,$/, '') + '}'\n }\n ", "additions": 0, "deletions": 1, "language": "JavaScript" }, { ...
2016-04-13T22:12:40
golang/go
773701a853a3105696c59c2b92b2eff35e0e055b
fb0c27c514b7d6bbb88b72cfd7baff01e567f6bb
internal/trace: pass GOTRACEBACK=crash to testprogs The failures in #70310 are hard to decipher. The cases where the lock is being held either don't really make sense (the STW failures) or the goroutine that fails is 'running on another thread' and we don't get a stack trace. In fact, such a goroutine exists even in t...
[ { "path": "src/internal/trace/trace_test.go", "patch": "@@ -600,6 +600,10 @@ func testTraceProg(t *testing.T, progName string, extra func(t *testing.T, trace\n \t\t\tgodebug += \",\" + extraGODEBUG\n \t\t}\n \t\tcmd.Env = append(cmd.Env, \"GODEBUG=\"+godebug)\n+\t\tif _, ok := os.LookupEnv(\"GOTRACEBACK\");...
2025-06-09T22:54:54
mrdoob/three.js
eb397f82e1558fb8623a721556ef9ab0913d2849
b35548a8ee55bfc1f29e6e7b3432ee7168edde43
Update lights_fragment_begin.glsl.js (#27002) Fix of 0(1578) : 'warning C7050: "geometryClearcoatNormal" might be used before being initialized' #26994 issue. Co-authored-by: Andrew <andrew@sciter.com>
[ { "path": "src/renderers/shaders/ShaderChunk/lights_fragment_begin.glsl.js", "patch": "@@ -17,7 +17,7 @@ vec3 geometryPosition = - vViewPosition;\n vec3 geometryNormal = normal;\n vec3 geometryViewDir = ( isOrthographic ) ? vec3( 0, 0, 1 ) : normalize( vViewPosition );\n \n-vec3 geometryClearcoatNormal;\n+v...
2023-10-18T15:06:41
denoland/deno
f3943bf6e3d0451f92552dafedd3fbf96515e422
cf8b9778d9952580b922a88b2993098d996c561e
fix(ext/node): use primordials in `ext/node/polyfills/internal/idna.ts` (#29085) Towards #24236. This PR replaces JS built-ins, `String` and `Array`, with the primordial versions.
[ { "path": "ext/node/polyfills/internal/idna.ts", "patch": "@@ -43,9 +43,6 @@\n \n // Adapted from https://github.com/mathiasbynens/punycode.js\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefer-primordials\n-\n // TODO(cmorten): migrate punycode logic t...
2025-05-07T14:01:03
vuejs/vue
fa46e8f88ee9316370d593ccbbbfcc0a068fdf4b
0ab0600599dcc593695560382af1c1a8119ce848
fix caching with preserveWhiteSpace
[ { "path": "src/compiler/index.js", "patch": "@@ -1,10 +1,12 @@\n import { parse } from './html-parser'\n import { generate } from './codegen/index'\n \n-const cache = Object.create(null)\n+const cache1 = Object.create(null)\n+const cache2 = Object.create(null)\n \n export function compile (html, preserveWhi...
2016-04-13T00:15:56
mrdoob/three.js
2818a67b4f3e86907316fbc5a1572cb4c8cc5f7c
f14779fcfc367d741a9951ae755b780db9af0c24
TAARenderPass: Fix runtime error in `dispose()`. (#26991) * Fix for dispose error sampleRenderTarget is being deleted and set to null by super.dispose(); the check for undefined was incorrect causing an attempt to call dispose on a null object. * Removed disposal of sampleRenderTarget entierly
[ { "path": "examples/jsm/postprocessing/TAARenderPass.js", "patch": "@@ -147,8 +147,7 @@ class TAARenderPass extends SSAARenderPass {\n \n \t\tsuper.dispose();\n \n-\t\tif ( this.sampleRenderTarget !== undefined ) this.sampleRenderTarget.dispose();\n-\t\tif ( this.holdRenderTarget !== undefined ) this.holdRe...
2023-10-16T18:12:27
golang/go
fb0c27c514b7d6bbb88b72cfd7baff01e567f6bb
1cafdfb63bb9b8825c5f4143d154bce3b82ed6a1
os: do not follow dangling symlinks in Root when O_CREATE|O_EXCL on AIX OpenFile with O_CREATE|O_EXCL should not follow dangling symlinks. On AIX it does, because AIX's openat(2) apparently returns ELOOP in this case. Most Unices return EEXIST. Ensure that we never follow symlinks in the final component of the path w...
[ { "path": "src/os/root_unix.go", "patch": "@@ -83,8 +83,18 @@ func rootOpenFileNolog(root *Root, name string, flag int, perm FileMode) (*File,\n \tfd, err := doInRoot(root, name, nil, func(parent int, name string) (fd int, err error) {\n \t\tignoringEINTR(func() error {\n \t\t\tfd, err = unix.Openat(parent,...
2025-05-30T21:05:10
denoland/deno
cf8b9778d9952580b922a88b2993098d996c561e
e498e7d7e6e82f8df5db24e920a552889ad2ba2d
fix(ext/node): use primordials in ext/node/polyfills/_fs/_fs_mkdtemp.ts (#29072) Towards #24236
[ { "path": "ext/node/polyfills/_fs/_fs_mkdtemp.ts", "patch": "@@ -1,9 +1,6 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Node.js contributors. All rights reserved. MIT License.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file prefe...
2025-05-07T14:00:26
vuejs/vue
5d585676c6d2a15f6db7c322467650ebb7b28a1f
68c99b26f22a890798ebd586a6ae3dddf064ffca
fix class initial application
[ { "path": "src/vdom/modules/class.js", "patch": "@@ -36,6 +36,6 @@ function updateClass (oldVnode, vnode) {\n }\n \n export default {\n- init: updateClass,\n+ create: updateClass,\n update: updateClass\n }", "additions": 1, "deletions": 1, "language": "JavaScript" } ]
2016-04-12T23:02:21
mrdoob/three.js
244cc277f44d203bf3305c859140c07f94b5ada0
f8ab8ac51b8024e3a0ab04b557a8c11095cbcfe5
Editor: Fix default of `timeScale`. (#26984)
[ { "path": "editor/js/Sidebar.Animation.js", "patch": "@@ -82,7 +82,7 @@ function SidebarAnimation( editor ) {\n \tcontainer.add( animationsList );\n \n \tconst mixerTimeScaleRow = new UIRow();\n-\tconst mixerTimeScaleNumber = new UINumber( 0.5 ).setWidth( '60px' ).setRange( - 10, 10 );\n+\tconst mixerTimeSc...
2023-10-16T13:05:35
golang/go
1cafdfb63bb9b8825c5f4143d154bce3b82ed6a1
a35701b3525ccd140995a216758760c60e7c58d7
net/http: make the zero value of CrossOriginProtection work Currently, CrossOriginProtection must be constructed by NewCrossOriginProtection. If you try to use the zero value, most methods will panic with a nil dereference. This CL makes CrossOriginProtection use on-demand initialization instead, so the zero value ha...
[ { "path": "src/net/http/csrf.go", "patch": "@@ -26,23 +26,23 @@ import (\n // Requests without Sec-Fetch-Site or Origin headers are currently assumed to be\n // either same-origin or non-browser requests, and are allowed.\n //\n+// The zero value of CrossOriginProtection is valid and has no trusted origins\...
2025-06-10T16:26:03
denoland/deno
e498e7d7e6e82f8df5db24e920a552889ad2ba2d
5bd03ccc46b6d162b5991f6899688a00503c1d89
fix(ext/node): use primordials in `ext/node/polyfills/internal/async_hooks.ts` (#29191) Towards #24236. Replaces `Symbol` as well as `Array` and `Function` methods with their primordial equivalents.
[ { "path": "ext/node/polyfills/internal/async_hooks.ts", "patch": "@@ -1,16 +1,23 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Joyent and Node contributors. All rights reserved. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ig...
2025-05-07T12:19:26
vuejs/vue
ad11aa122cd09a4510fd9d8829e25f4a90b178c2
e094b00c2ebdb39541233978aa151a06afad6157
fix syncness
[ { "path": "src/compiler/codegen.js", "patch": "@@ -36,8 +36,13 @@ function genFor (el, exp) {\n }\n const alias = inMatch[1].trim()\n exp = inMatch[2].trim()\n- const key = el.attrsMap['track-by'] || 'undefined'\n- return `(${exp}).map(function (${alias}, $index) {return ${genElement(el, key) }})`\n...
2016-04-11T21:45:08
mrdoob/three.js
31872ee5c750515130c0c4e916f3a8e966689f7b
5766d3edf617a23bd31e5e0be89c592ef077d1f0
Nodes: Merge *MaterialNode into singular MaterialNode, fix exports, some cleanup (#26976) * Nodes: Merge *MaterialNode into singular MaterialNode, fix exports, some cleanup Signed-off-by: Levi Pesin <35454228+LeviPesin@users.noreply.github.com> * Fix Signed-off-by: Levi Pesin <35454228+LeviPesin@users.noreply...
[ { "path": "examples/jsm/nodes/Nodes.js", "patch": "@@ -71,11 +71,8 @@ export { default as BufferAttributeNode, bufferAttribute, dynamicBufferAttribute\n export { default as BufferNode, buffer } from './accessors/BufferNode.js';\n export { default as CameraNode, cameraProjectionMatrix, cameraViewMatrix, came...
2023-10-16T04:09:56
golang/go
a35701b3525ccd140995a216758760c60e7c58d7
a189516d3a1623f2560f80569c4b64bdffc4ac78
cmd/dist: only install necessary tools when doing local test Instead of installing all of cmd, install only the tools that cmd/dist would normally install. Also, remove the addition of the buildid tool to the list of commands in the toolchain in debug mode. The uses of buildid were removed in CL 451360. For #71867 ...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -1390,7 +1390,21 @@ func toolenv() []string {\n \treturn env\n }\n \n-var toolchain = []string{\"cmd/asm\", \"cmd/cgo\", \"cmd/compile\", \"cmd/link\", \"cmd/preprofile\"}\n+var (\n+\ttoolchain = []string{\"cmd/asm\", \"cmd/cgo\", \"cmd/compile\", \"cmd/link\"...
2025-06-10T15:12:10
denoland/deno
5bd03ccc46b6d162b5991f6899688a00503c1d89
19c5cca65ebf8aa42aedc202bf8a88aec7be4c62
fix(ext/os): Fix duplicate 'openbsd' cfg attribute (#28607) Use FreeBSD instead as it needs the same fix. Co-authored-by: David Sherret <dsherret@users.noreply.github.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "ext/os/signal.rs", "patch": "@@ -8,7 +8,7 @@ pub struct InvalidSignalStrError(pub String);\n #[cfg(any(\n target_os = \"android\",\n target_os = \"linux\",\n- target_os = \"openbsd\",\n+ target_os = \"freebsd\",\n target_os = \"openbsd\",\n target_os = \"macos\",\n target_os = \"solar...
2025-05-07T12:12:06
vuejs/vue
3d6b5fc935868a11d41faa0f486ff6aa0326732b
7c24229fd7f42fbfd2cd607711dc14a01c623b84
fix things
[ { "path": "src/instance/index.js", "patch": "@@ -4,52 +4,45 @@ import Watcher from '../observer/watcher'\n import { h, patch } from '../vdom/index'\n import { nextTick, isReserved, getOuterHTML } from '../util/index'\n \n-export default class Component {\n- constructor (options) {\n- this.$options = opt...
2016-04-11T04:39:55
golang/go
a189516d3a1623f2560f80569c4b64bdffc4ac78
f18d046568496dd331657df4ba90218821cb9ffd
runtime: don't do a direct G handoff in semrelease on systemstack semrelease is safe to call on the system stack (since it just readies goroutines) except for the fact that it might perform a direct G handoff and call into the scheduler. If handoff is set to false this is exceptionally rare, but could happen, and has ...
[ { "path": "src/runtime/sema.go", "patch": "@@ -261,11 +261,13 @@ func semrelease1(addr *uint32, handoff bool, skipframes int) {\n \t\t\ts.ticket = 1\n \t\t}\n \t\treadyWithTime(s, 5+skipframes)\n-\t\tif s.ticket == 1 && getg().m.locks == 0 {\n+\t\tif s.ticket == 1 && getg().m.locks == 0 && getg() != getg()....
2025-06-09T21:45:33
denoland/deno
19c5cca65ebf8aa42aedc202bf8a88aec7be4c62
8e9db221ed9e49f676c3602bf35665866b5915ef
fix(ext/process): suppress child process kill errors in onAbort handler (#29193) Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com>
[ { "path": "ext/process/40_process.js", "patch": "@@ -299,9 +299,14 @@ class ChildProcess {\n this.#stderr = readableStreamForRidUnrefable(stderrRid);\n }\n \n- const onAbort = () => this.kill(\"SIGTERM\");\n+ const onAbort = () => {\n+ try {\n+ this.kill(\"SIGTERM\");\n+ } c...
2025-05-07T05:26:58
golang/go
ee7bfbdbcc75c17c9f6f357f7950cfae0d63811c
985d600f3aa8654b854f8b2c822552c052ed3d30
cmd/compile/internal/ssa: fix PPC64 merging of (AND (S[RL]Dconst ...) CL 622236 forgot to check the mask was also a 32 bit rotate mask. Add a modified version of isPPC64WordRotateMask which valids the mask is contiguous and fits inside a uint32. I don't this is possible when merging SRDconst, the first check should a...
[ { "path": "src/cmd/compile/internal/ssa/rewrite.go", "patch": "@@ -1583,6 +1583,11 @@ func GetPPC64Shiftme(auxint int64) int64 {\n // operation. Masks can also extend from the msb and wrap to\n // the lsb too. That is, the valid masks are 32 bit strings\n // of the form: 0..01..10..0 or 1..10..01..1 or 1....
2025-06-04T13:51:11
mrdoob/three.js
d47a43ad39347495fbebbc8e39238348f5e93b35
c44c4ecd51ca0a9abddce67c9aff333e5ee4ddfc
WebGLRenderer: Add `compileAsync()`. (#19752) * Add compileAsync The compileAsync method adds a way to allow apps to wait on shader compilation before adding objects to a scene. * Update webgl_loader_gltf.html Fix typo. * Update webgl_loader_gltf_transmission.html Fix typo. * Update WebGLProgram.js ...
[ { "path": "examples/webgl_loader_gltf.html", "patch": "@@ -61,7 +61,13 @@\n \t\t\t\t\t\t// model\n \n \t\t\t\t\t\tconst loader = new GLTFLoader().setPath( 'models/gltf/DamagedHelmet/glTF/' );\n-\t\t\t\t\t\tloader.load( 'DamagedHelmet.gltf', function ( gltf ) {\n+\t\t\t\t\t\tloader.load( 'DamagedHelmet.gltf'...
2023-10-14T09:17:31
golang/go
985d600f3aa8654b854f8b2c822552c052ed3d30
848a768ba76d7c386c2aa4f05bc2e9e51b5948b9
runtime: use small struct TestSynctest to ensure cleanups run Finalizers and cleanup funcs weren't running on the windows-arm64 builder. Put finalizers/cleanups on a small struct containing a pointer rather than an *int, which fixes the problem. Also uncomment a synctest.Wait that was accidentally commented out. Fix...
[ { "path": "src/runtime/testdata/testsynctest/main.go", "patch": "@@ -9,6 +9,7 @@ import (\n \t\"runtime\"\n \t\"runtime/metrics\"\n \t\"sync/atomic\"\n+\t\"unsafe\"\n )\n \n // This program ensures system goroutines (GC workers, finalizer goroutine)\n@@ -27,6 +28,11 @@ func numGCCycles() uint64 {\n \treturn...
2025-06-06T19:59:04
mrdoob/three.js
f398c7c350cfaa742961eac171b1247d1c50b52d
c424dcdb9e807f4ce7b18c1fa9ab933d81684529
Editor: Fix sidebar refresh. (#26951)
[ { "path": "editor/js/Editor.js", "patch": "@@ -83,6 +83,7 @@ function Editor() {\n \t\tshowGridChanged: new Signal(),\n \t\tshowHelpersChanged: new Signal(),\n \t\trefreshSidebarObject3D: new Signal(),\n+\t\trefreshSidebarEnvironment: new Signal(),\n \t\thistoryChanged: new Signal(),\n \n \t\tviewportCamera...
2023-10-11T18:31:25
mrdoob/three.js
937edb5f5b1ede310efb06da979d92bd0f06d050
7b8643eeae86aad19d32bc3db42c3e4559bfb09c
Remove dispose() of now removed depthMaterial (#26946) Fixes Uncaught TypeError: Cannot read properties of undefined (reading 'dispose')
[ { "path": "examples/jsm/postprocessing/SAOPass.js", "patch": "@@ -314,7 +314,6 @@ class SAOPass extends Pass {\n \t\tthis.blurIntermediateRenderTarget.dispose();\n \t\tthis.normalRenderTarget.dispose();\n \n-\t\tthis.depthMaterial.dispose();\n \t\tthis.normalMaterial.dispose();\n \t\tthis.saoMaterial.dispos...
2023-10-11T10:57:15
golang/go
848a768ba76d7c386c2aa4f05bc2e9e51b5948b9
049a5e603634dfdbc73b4255c7e72eabc3922d5b
runtime: clarify stack traces for bubbled goroutines Use the synctest bubble ID to identify bubbles in traces, rather than the goroutine ID of the bubble's root goroutine. Some waitReasons include a "(synctest)" suffix to distinguish a durably blocking state from a non-durable one. For example, "chan send" vs. "chan ...
[ { "path": "src/runtime/runtime2.go", "patch": "@@ -1093,10 +1093,10 @@ const (\n \twaitReasonGCWeakToStrongWait // \"GC weak to strong wait\"\n \twaitReasonSynctestRun // \"synctest.Run\"\n \twaitReasonSynctestWait // \"synctest.Wai...
2025-06-05T21:21:47
denoland/deno
5b037f1bed24d4efc7f821fa4a56b90f72eb0304
842a07710f09ddd2ab1dbd317c3cfd61acadd167
fix(ext/node): `getColorDepth` for writable stdio streams (#29176) Fixes https://github.com/denoland/deno/issues/28605 Fixes https://github.com/denoland/deno/issues/29175 ` ../deno/target/debug/deno run -A npm:create-vue@latest DIR` works now
[ { "path": "ext/node/polyfills/_process/streams.mjs", "patch": "@@ -23,6 +23,7 @@ import {\n import { Duplex, Readable, Writable } from \"node:stream\";\n import * as io from \"ext:deno_io/12_io.js\";\n import { guessHandleType } from \"ext:deno_node/internal_binding/util.ts\";\n+import { op_bootstrap_color_...
2025-05-06T16:12:14
mrdoob/three.js
eb073dd25d3d4c6cf053f2ea700da50ba111ab64
cb42582421189a42c5bcf7ecd211259b649742d4
Add `SDFGeometryGenerator` addon. (#26837) * add SDFGeometry ammend * remove comment * Update webgl_geometry_sdf.jpg * pass that check.... * PR fixes ~ Code scanning checks ~ Update class name to SDFGeometryGenerator ~ Change class design ~ Remove confirm dialog ~ Standardize example structure ~ Re...
[ { "path": "docs/examples/en/geometries/SDFGeometryGenerator.html", "patch": "@@ -0,0 +1,70 @@\n+<!DOCTYPE html>\n+<html lang=\"en\">\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=\"p...
2023-10-11T08:27:43
golang/go
049a5e603634dfdbc73b4255c7e72eabc3922d5b
ac1686752bf65eaefebb340bd642177e2cc27bde
runtime: return a different bubble deadlock error when main goroutine is done The synctest.Test function waits for all goroutines in a bubble to exit before returning. If there is ever a point when all goroutines in a bubble are durably blocked, it panics and reports a deadlock. Panic with a different message dependi...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -488,7 +488,7 @@ func TestDeadlockRoot(t *testing.T) {\n }\n \n func TestDeadlockChild(t *testing.T) {\n-\tdefer wantPanic(t, \"deadlock: all goroutines in bubble are blocked\")\n+\tdefer wantPanic(t, \"deadlock: main bubble goroutine has exit...
2025-06-05T20:55:35
denoland/deno
842a07710f09ddd2ab1dbd317c3cfd61acadd167
730f48b170f26ff403f2d56e2e09cd8b0d0e5686
fix: terminate control sock event with newline (#29184) these should be newline terminated
[ { "path": "cli/main.rs", "patch": "@@ -686,7 +686,8 @@ fn wait_for_start(\n Serving,\n }\n \n- let buf = deno_core::serde_json::to_vec(&Event::Serving).unwrap();\n+ let mut buf = deno_core::serde_json::to_vec(&Event::Serving).unwrap();\n+ buf.push(b'\\n');\n let _ = tx.wri...
2025-05-06T14:51:40
golang/go
da0e8c4517178f545ee78b11e3d91e1daa7ce07a
7800f4f0adbc749be95d13be48524e9702c50bbc
cmd/compile: relax reshaping condition CL 641955 changes the Unified IR reader to not doing shapify when reading reshaping expression. However, this condition only matters with pointer type shaping, which will lose the original type, causes the reshaping ends up with a completely different type. This CL relaxes the c...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -1014,7 +1014,25 @@ func (pr *pkgReader) objDictIdx(sym *types.Sym, idx index, implicits, explicits\n \t// arguments.\n \tfor i, targ := range dict.targs {\n \t\tbasic := r.Bool()\n-\t\tif dict.shaped && !pr.reshaping {\n+\t\tisPointerShape ...
2025-06-03T14:35:20
mrdoob/three.js
9116475e17d1ac1a6653021ca458498459709224
0590d5f4ba5f39285dc4d1b5575b5cb33de1680f
Nodes: Fixes and clean up (#26931)
[ { "path": "examples/jsm/nodes/accessors/SkinningNode.js", "patch": "@@ -78,6 +78,16 @@ class SkinningNode extends Node {\n \n \t}\n \n+\tgenerate( builder, output ) {\n+\n+\t\tif ( output !== 'void' ) {\n+\n+\t\t\treturn positionLocal.build( builder, output );\n+\n+\t\t}\n+\n+\t}\n+\n \tupdate() {\n \n \t\t...
2023-10-10T04:49:10
denoland/deno
730f48b170f26ff403f2d56e2e09cd8b0d0e5686
2edc70e679a8533bc205832fdf92185b00d88608
fix(ext/node): Support mTLS connections node compatibility (#28937) Support for running Node.js code that requires mTLS connections on Deno. Ref #21497 Closes https://github.com/denoland/deno/issues/26472 Closes https://github.com/denoland/deno/issues/29148 --------- Co-authored-by: Satya Rohith <me@satyarohith.c...
[ { "path": "ext/net/02_tls.js", "patch": "@@ -187,7 +187,7 @@ async function startTls(\n hostname,\n caCerts,\n alpnProtocols,\n- });\n+ }, null);\n return new TlsConn(rid, remoteAddr, localAddr);\n }\n ", "additions": 1, "deletions": 1, "language": "JavaScript" }, { "path...
2025-05-06T08:55:18
golang/go
7800f4f0adbc749be95d13be48524e9702c50bbc
d184f8dc020ac635cea02c046ab1d0b87dfd624d
log/slog: fix level doc on handlers Fixed doc on {JSON,Text}Handler.Handle: the level is never omitted. Fixes #73943. Change-Id: Ia470cbe5d713ab18dd80eeea1c0ab8f5e6d30f3f Reviewed-on: https://go-review.googlesource.com/c/go/+/680055 Auto-Submit: Jonathan Amsterdam <jba@google.com> LUCI-TryBot-Result: Go LUCI <golang...
[ { "path": "src/log/slog/json_handler.go", "patch": "@@ -63,9 +63,7 @@ func (h *JSONHandler) WithGroup(name string) Handler {\n // Otherwise, the key is \"time\"\n // and the value is output as with json.Marshal.\n //\n-// If the Record's level is zero, the level is omitted.\n-// Otherwise, the key is \"leve...
2025-06-08T12:49:25
mrdoob/three.js
72385dfdbb5e0f9b2c34e879ec78a1e99e2cfa1b
5ef9a2bd259a1f42d1d6df72b876180547c20f2b
Examples: Fix FXAA demo. (#26927) * Examples: Fix FXAA demo. * Examples: Update screenshot.
[ { "path": "examples/webgl_postprocessing_fxaa.html", "patch": "@@ -49,7 +49,7 @@\n \t\t\timport { EffectComposer } from 'three/addons/postprocessing/EffectComposer.js';\n \t\t\timport { RenderPass } from 'three/addons/postprocessing/RenderPass.js';\n \t\t\timport { ShaderPass } from 'three/addons/postproces...
2023-10-09T17:00:09
denoland/deno
2edc70e679a8533bc205832fdf92185b00d88608
d8857b9aee60a298f0da691ecfc69508eea55201
fix(ext/node): Fix dns.lookup when promisified with `options.all` (#29167) Fixes https://github.com/denoland/deno/issues/29074 Co-authored-by: Satya Rohith <me@satyarohith.com>
[ { "path": "ext/node/polyfills/dns.ts", "patch": "@@ -133,7 +133,11 @@ function onlookupall(\n };\n }\n \n- this.callback(null, parsedAddresses, undefined, netPermToken);\n+ if (this.callback.length > 1) {\n+ this.callback(null, parsedAddresses, undefined, netPermToken);\n+ } else {\n+ this.ca...
2025-05-06T03:46:00
golang/go
d184f8dc020ac635cea02c046ab1d0b87dfd624d
0ccfbc834a489f92745613b2e06275c2cfe6ace0
runtime: check for gsignal in racecall on loong64 This issue has been fixed for amd64, arm64 and other platforms in CL 643875, but it was missed when the race support was submitted for loong64. Fixes #71395. Change-Id: I678f381e868214f1b3399be43187db49e1660933 Reviewed-on: https://go-review.googlesource.com/c/go/+/6...
[ { "path": "src/runtime/race_loong64.s", "patch": "@@ -461,8 +461,13 @@ TEXT\tracecall<>(SB), NOSPLIT|NOFRAME, $0-0\n \t// Switch to g0 stack.\n \tMOVV\tR3, R23\t// callee-saved, preserved across the CALL\n \tMOVV\tR1, R24\t// callee-saved, preserved across the CALL\n+\n+\t// Switch to g0 stack if we aren't ...
2025-06-05T11:23:55
mrdoob/three.js
e41196a58e1aa096c42c983760bfb56d2ac6b992
e7a9554960232382c766aea574977c0a0d3e578c
Nodes: Allow JS-like assigns, implement AssignNode (#26795) * Introduce AssignNode Signed-off-by: Levi Pesin <35454228+LeviPesin@users.noreply.github.com> * Move assign and bypass Signed-off-by: Levi Pesin <35454228+LeviPesin@users.noreply.github.com> * Fix Signed-off-by: Levi Pesin <35454228+LeviPesin@...
[ { "path": "examples/jsm/nodes/Nodes.js", "patch": "@@ -6,6 +6,7 @@ export * from './core/constants.js';\n \n // core\n export { default as ArrayUniformNode /* @TODO: arrayUniform */ } from './core/ArrayUniformNode.js';\n+export { default as AssignNode, assign } from './core/AssignNode.js';\n export { defaul...
2023-10-08T15:17:52
denoland/deno
d8857b9aee60a298f0da691ecfc69508eea55201
5c6c52d132cefc5c4a01a416885fe89e9322baac
fix(fmt): upgrade markup_fmt and malva (#29168) Closes https://github.com/denoland/deno/issues/29034
[ { "path": "Cargo.lock", "patch": "@@ -5334,9 +5334,9 @@ dependencies = [\n \n [[package]]\n name = \"malva\"\n-version = \"0.11.2\"\n+version = \"0.12.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"6a952f521471c6c8302a17fc0c64a512221a9d4ff268af4d43a02bc2be48c712\"\n+...
2025-05-05T20:39:22
golang/go
0ccfbc834a489f92745613b2e06275c2cfe6ace0
78eadf5b3de568297456fe137b65ff16e8cc8bb6
os/signal: doc link to syscall.EPIPE Add godoc link for EPIPE error. Change-Id: I5df35f700684510328f92bb5d4946c5123ba5f2c Reviewed-on: https://go-review.googlesource.com/c/go/+/667757 Auto-Submit: Michael Knyszek <mknyszek@google.com> Reviewed-by: Michael Pratt <mpratt@google.com> Reviewed-by: Michael Knyszek <mknysz...
[ { "path": "src/os/signal/doc.go", "patch": "@@ -98,12 +98,13 @@ the behavior depends on the file descriptor number. A write to a\n broken pipe on file descriptors 1 or 2 (standard output or standard\n error) will cause the program to exit with a SIGPIPE signal. A write\n to a broken pipe on some other file ...
2025-04-24T14:46:44
mrdoob/three.js
f7b0c24b6a31199ee0d86a60ec15e19e4d09a758
af8349bc71c2254e62e4e0d18098090c6fe8408d
FilmShader: Fix deterioration. (#26908) * Fix FilmShader Deterioration Incorrect usage of the ``rand`` function causes the film effect to deteriorate with large time values. This is fixed by applying a modulus to the time value, restraining it to the expected [0,1]x[0,1] range of the ``rand`` function https://gi...
[ { "path": "examples/jsm/shaders/FilmShader.js", "patch": "@@ -38,7 +38,7 @@ const FilmShader = {\n \n \t\t\tvec4 base = texture2D( tDiffuse, vUv );\n \n-\t\t\tfloat noise = rand( vUv + time );\n+\t\t\tfloat noise = rand( fract( vUv + time ) );\n \n \t\t\tvec3 color = base.rgb + base.rgb * clamp( 0.1 + noise...
2023-10-07T08:12:05
denoland/deno
5c6c52d132cefc5c4a01a416885fe89e9322baac
f47c4ea5e752879b566e936ac1620c8c1861ba7c
fix: update deno_core (#29166) for https://github.com/denoland/deno_core/pull/1111
[ { "path": "Cargo.lock", "patch": "@@ -443,7 +443,7 @@ dependencies = [\n \"addr2line\",\n \"cfg-if\",\n \"libc\",\n- \"miniz_oxide 0.8.4\",\n+ \"miniz_oxide 0.8.8\",\n \"object\",\n \"rustc-demangle\",\n \"windows-targets 0.52.6\",\n@@ -1763,9 +1763,9 @@ dependencies = [\n \n [[package]]\n name = \"de...
2025-05-05T18:58:34
mrdoob/three.js
79ea10830dfc97b6c0a7e29d217c7ff04c081095
b72b7dbd581f6930add20062e7bbb44e15fcb25f
GltfLoader: log error when loader extension doesnt have a name (#26559) * GltfLoader: log error when loader extension doesnt have a name * remove object from error log
[ { "path": "examples/jsm/loaders/GLTFLoader.js", "patch": "@@ -362,6 +362,9 @@ class GLTFLoader extends Loader {\n \t\tfor ( let i = 0; i < this.pluginCallbacks.length; i ++ ) {\n \n \t\t\tconst plugin = this.pluginCallbacks[ i ]( parser );\n+\n+\t\t\tif ( ! plugin.name ) console.error( 'THREE.GLTFLoader: In...
2023-10-05T09:53:47
denoland/deno
9102d4f26d61f2b73d67448bba55d992d6020ae5
7ae0f14a9014f1c34a9cc1d64667f71d65cee0a7
chore: try reverting tarball unpack change (#29156) Seems https://github.com/denoland/deno/pull/29138 broke https://github.com/dsherret/ts-ast-viewer/pull/167 I don't see anything else in that PR that could have caused this strange error, so going to try this change. I'm also not able to reproduce locally.
[ { "path": "resolvers/npm_cache/tarball_extract.rs", "patch": "@@ -19,7 +19,6 @@ use sys_traits::FsOpen;\n use sys_traits::FsRemoveDirAll;\n use sys_traits::FsRemoveFile;\n use sys_traits::FsRename;\n-use sys_traits::OpenOptions;\n use sys_traits::SystemRandom;\n use sys_traits::ThreadSleep;\n use tar::Archi...
2025-05-04T14:26:02
golang/go
78eadf5b3de568297456fe137b65ff16e8cc8bb6
4d1c255f159d90557b43ede07f8b9a209e1fb49c
all: update vendored dependencies [generated] The Go 1.25 RC is due soon. This is the time to once again update all golang.org/x/... module versions that contribute packages to the std and cmd modules in the standard library to latest master versions. For #36905. [git-generate] go install golang.org/x/build/cmd/upda...
[ { "path": "src/cmd/go.mod", "patch": "@@ -4,18 +4,18 @@ go 1.25\n \n require (\n \tgithub.com/google/pprof v0.0.0-20250208200701-d0013a598941\n-\tgolang.org/x/arch v0.14.0\n-\tgolang.org/x/build v0.0.0-20250211223606-a5e3f75caa63\n-\tgolang.org/x/mod v0.24.1-0.20250508140430-9d3333156f46\n-\tgolang.org/x/sy...
2025-06-04T19:35:31
mrdoob/three.js
8de143f986a5df250195bc88d0d7a204ee50ba55
a2388920ec0367e02e7357ff4c8e95d6f4ff0360
Material: Fix .needsUpdate + .alphaHash (#26900)
[ { "path": "docs/scenes/material-browser.html", "patch": "@@ -352,6 +352,7 @@\n \t\t\t\t// folder.add( material, 'polygonOffsetFactor' );\n \t\t\t\t// folder.add( material, 'polygonOffsetUnits' );\n \t\t\t\tfolder.add( material, 'alphaTest', 0, 1 ).step( 0.01 ).onChange( needsUpdate( material, geometry ) );\...
2023-10-04T21:45:57
golang/go
4d1c255f159d90557b43ede07f8b9a209e1fb49c
3432c68467d50ffc622fed230a37cd401d82d4bf
net/http: strip sensitive proxy headers from redirect requests Similarly to Authentication entries, Proxy-Authentication entries should be stripped to ensure sensitive information is not leaked on redirects outside of the original domain. https://fetch.spec.whatwg.org/#authentication-entries Thanks to Takeshi Kaneko...
[ { "path": "src/net/http/client.go", "patch": "@@ -806,7 +806,8 @@ func (c *Client) makeHeadersCopier(ireq *Request) func(req *Request, stripSensit\n \t\tfor k, vv := range ireqhdr {\n \t\t\tsensitive := false\n \t\t\tswitch CanonicalHeaderKey(k) {\n-\t\t\tcase \"Authorization\", \"Www-Authenticate\", \"Cook...
2025-05-21T18:11:44
mrdoob/three.js
34ae87b61d7540a9a405951f9a9bfd3f0cd314f4
a3db8a867e454ec22bd1a7a246ce8096e27d84de
fix attr (#26895)
[ { "path": "docs/manual/en/introduction/Creating-a-scene.html", "patch": "@@ -105,8 +105,8 @@ <h2>The result</h2>\n \n \t\t<code>\n \t\t&lt;!DOCTYPE html&gt;\n-\t\t&lt;html&gt;\n-\t\t\t&lt;head lang=\"en\"&gt;\n+\t\t&lt;html lang=\"en\"&gt;\n+\t\t\t&lt;head&gt;\n \t\t\t\t&lt;meta charset=\"utf-8\"&gt;\n \t\t...
2023-10-03T11:49:41
denoland/deno
539e41b8d4e918924f6f5740e44a63a293b662f9
8786d39d4b9e507dd8e151da65a09c40d0c26dec
fix(npm): respect etag for npm packument caching (#29130) Stores the etag in a `_deno.etag` property on the json object of the packument.
[ { "path": "Cargo.lock", "patch": "@@ -2355,9 +2355,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_npm\"\n-version = \"0.33.1\"\n+version = \"0.33.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"823d70f758afa8ba0f80ee212a79f35dee1b6f19a6d81cebb02c2c5cee3f1f15\"...
2025-05-02T13:49:05
mrdoob/three.js
44516609c6867adcc9bf778f1920ebb2d5c5d3fa
c00b168487d63f5d626cab8c5fffda1ff8a8d35f
Refactor `VarNode` (#26821) * Refactor NodeBuilder.getVarFromNode() * Refactor interaction of ShaderNode and StackNode * Refactor VarNode.assign() * Refactor Node.getChildren() and Node.traverse() * Fix semicolon
[ { "path": "examples/jsm/nodes/accessors/CubeTextureNode.js", "patch": "@@ -54,7 +54,6 @@ class CubeTextureNode extends TextureNode {\n \n \t\t} else {\n \n-\t\t\tconst nodeType = this.getNodeType( builder );\n \t\t\tconst nodeData = builder.getDataFromNode( this );\n \n \t\t\tlet propertyName = nodeData.pro...
2023-10-02T14:10:53
golang/go
3432c68467d50ffc622fed230a37cd401d82d4bf
1aa336209363d9715e145244c7b22620ac0f0584
runtime: make bubbled timers more consistent with unbubbled This CL makes two changes to reduce the predictability with which bubbled timers fire. When asynctimerchan=0 (the default), regular timers with an associated channel are only added to a timer heap when some channel operation is blocked on that channel. This ...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -226,8 +226,8 @@ func TestTimerNondeterminism(t *testing.T) {\n \t\tconst iterations = 1000\n \t\tvar seen1, seen2 bool\n \t\tfor range iterations {\n-\t\t\ttm1 := time.NewTimer(0)\n-\t\t\ttm2 := time.NewTimer(0)\n+\t\t\ttm1 := time.NewTimer(1...
2025-06-02T16:26:27
denoland/deno
8786d39d4b9e507dd8e151da65a09c40d0c26dec
9b633bfa859eb0216383a4624993a80711da8652
fix(ext/node): use primordials in `ext/node/polyfills/internal/options.ts` (#29119) Towards #24236. This PR replaces `Map` and `String` methods with their primordial versions.
[ { "path": "ext/node/polyfills/internal/options.ts", "patch": "@@ -20,10 +20,13 @@\n // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE\n // USE OR OTHER DEALINGS IN THE SOFTWARE.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-file pref...
2025-05-02T08:08:43
mrdoob/three.js
9480ccd1eea5b6555d95a43539eb627e438beccc
cddf0af03e931fe5bee4fee185019187b684a829
Nodes: Define `stack.assign()` as default. (#26881) * Nodes: Define `stack.assign()` as default. * fix name
[ { "path": "examples/jsm/nodes/Nodes.js", "patch": "@@ -14,6 +14,7 @@ export { default as ContextNode, context, label } from './core/ContextNode.js';\n export { default as IndexNode, vertexIndex, instanceIndex } from './core/IndexNode.js';\n export { default as LightingModel } from './core/LightingModel.js';...
2023-10-02T06:13:37
denoland/deno
9b633bfa859eb0216383a4624993a80711da8652
2bc8b9b7c701a55a866407f4e6d0f713390ae3e9
fix(npm): handle global cache missing version in pkg info of pkg existing in npm snapshot (#29131) * https://github.com/denoland/deno_npm/pull/102 Closes https://github.com/denoland/deno/issues/29128
[ { "path": "Cargo.lock", "patch": "@@ -2355,9 +2355,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_npm\"\n-version = \"0.33.0\"\n+version = \"0.33.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"8bbe8ae992daf5506f430f2df2c5cf1ce95afe0a08d749251a5761488c71426d\"...
2025-05-02T00:17:02
golang/go
1aa336209363d9715e145244c7b22620ac0f0584
f537061e1b7599e97bafc0c8f9cc0bf686eb813e
Revert "cmd/compile: Enable inlining of tail calls" This reverts CL 650455 and CL 655816. Reason for revert: it causes #73747. Properly fixing it gets into trickiness with defer/recover, wrapper, and inlining. We're late in the Go 1.25 release cycle. Fixes #73747. Change-Id: Ifb343d522b18fec3fec73a7c886678032ac8e4d...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -785,7 +785,7 @@ func inlineCallCheck(callerfn *ir.Func, call *ir.CallExpr) (bool, bool) {\n \tif call.Op() != ir.OCALLFUNC {\n \t\treturn false, false\n \t}\n-\tif call.GoDefer {\n+\tif call.GoDefer || call.NoInline {\n \t\treturn false, fals...
2025-06-03T19:44:32
mrdoob/three.js
cddf0af03e931fe5bee4fee185019187b684a829
2e230cda347b933027d8c0d6f7735cf56e3e6ec9
WebGLBackend: fix rendering of line segments (#26884)
[ { "path": "examples/jsm/renderers/webgl/WebGLBackend.js", "patch": "@@ -333,9 +333,9 @@ class WebGLBackend extends Backend {\n \n \t\tlet mode;\n \t\tif ( object.isPoints ) mode = gl.POINTS;\n+\t\telse if ( object.isLineSegments ) mode = gl.LINES;\n \t\telse if ( object.isLine ) mode = gl.LINE_STRIP;\n \t\t...
2023-10-02T01:23:26
denoland/deno
2bc8b9b7c701a55a866407f4e6d0f713390ae3e9
9fd7d463bd0ff6933e1a8debcd710e84f79688ce
fix(vendor): strip jsr version meta module graph data (#29120) This removes the `moduleGraphX` data from the `<version>_meta.json` files for jsr packages when copying from the global cache to the local one. This property is not really useful to vendor because it's just a performance optimization when downloading the f...
[ { "path": "Cargo.lock", "patch": "@@ -1687,9 +1687,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_cache_dir\"\n-version = \"0.19.2\"\n+version = \"0.20.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"502c5f3120fe5b32908e9a4b3af95b7e1a35e8fa758d87155b03a3810655...
2025-05-01T15:05:23
golang/go
f537061e1b7599e97bafc0c8f9cc0bf686eb813e
d4bf7167935e84e7200e95649563d1368cf05331
cmd/trace: handle Sync event at the beginning of the trace Currently the code assumes that there's no Sync event at the start of the trace, but this hasn't been correct for some time. Count Syncs and look for at least one instead of looking for zero. Fixes #73962. Change-Id: I2b4199a21c699c5b50b3d5add37dc46a515108c6...
[ { "path": "src/cmd/trace/gen.go", "patch": "@@ -215,12 +215,12 @@ func (g *stackSampleGenerator[R]) StackSample(ctx *traceContext, ev *trace.Event\n // to trace.ResourceNone (the global scope).\n type globalRangeGenerator struct {\n \tranges map[string]activeRange\n-\tseenSync bool\n+\tseenSync int\n }\n ...
2025-06-03T20:30:43
mrdoob/three.js
eb54b902347a2d9372e08055491814d25a7f4e0e
27ba7d38137104bebf9a2a58f832e4db54c7c3fd
WebGPURenderer: handle instanced geometries in WebGL backend (#26731) * handle instanced geometries handle interleaved buffers and deduplicate add clear() for frame buffer * remove redundant code * adjust support message * support InstancedMesh and updateAttribute() * remove version inc * Squashed com...
[ { "path": "examples/jsm/renderers/webgl/WebGLBackend.js", "patch": "@@ -214,9 +214,24 @@ class WebGLBackend extends Backend {\n \n \t}\n \n-\tclear( /*renderContext, color, depth, stencil*/ ) {\n+\tclear( renderContext, color, depth, stencil ) {\n \n-\t\tconsole.warn( 'Abstract class.' );\n+\t\tconst { gl }...
2023-09-29T15:10:23
denoland/deno
9fd7d463bd0ff6933e1a8debcd710e84f79688ce
69e032c5515641dc46d51de67f3647badc95188b
fix(ext/node): Fix fast method proto unwraps in `AsyncWrap` (#29117) Fixes https://github.com/denoland/deno/issues/29094
[ { "path": "Cargo.lock", "patch": "@@ -1763,9 +1763,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.344.0\"\n+version = \"0.345.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"48427391d0f8a46c9a05f385fae0363aefa7ffaa42e45087809fbe497c98dfe...
2025-05-01T12:41:29
golang/go
d4bf7167935e84e7200e95649563d1368cf05331
1f2a4d192d71ae5eeaacaa72a8bb2df4e6c08edd
runtime: reduce per-P memory footprint when greenteagc is disabled There are two additional sources of memory overhead per P that come from greenteagc. One is for ptrBuf, but on platforms other than Windows it doesn't actually cost anything due to demand-paging (Windows also demand-pages, but the memory is 'committed'...
[ { "path": "src/runtime/mgc.go", "patch": "@@ -131,6 +131,7 @@ package runtime\n import (\n \t\"internal/cpu\"\n \t\"internal/goarch\"\n+\t\"internal/goexperiment\"\n \t\"internal/runtime/atomic\"\n \t\"internal/runtime/gc\"\n \t\"unsafe\"\n@@ -717,7 +718,7 @@ func gcStart(trigger gcTrigger) {\n \t\t\tthrow(...
2025-06-03T19:28:00
mrdoob/three.js
27ba7d38137104bebf9a2a58f832e4db54c7c3fd
a5318cfd53a85a648d5948399e45d79e7a5e6b4c
GLTFLoader: Fixed ESLint error. (#26871)
[ { "path": "examples/jsm/loaders/GLTFLoader.js", "patch": "@@ -942,7 +942,7 @@ class GLTFMaterialsSheenExtension {\n \t\tif ( extension.sheenColorFactor !== undefined ) {\n \n \t\t\tconst colorFactor = extension.sheenColorFactor;\n-\t\t\tmaterialParams.sheenColor.setRGB( colorFactor[ 0 ], colorFactor[ 1 ], c...
2023-09-29T15:04:35
denoland/deno
69e032c5515641dc46d51de67f3647badc95188b
92cdce16f054549652e9c5e0ae8fb731c644ab72
chore: fix release notes for v2.3.0 (#29122) The script used for updating: ```ts // Saved as ./tools/release/update_releases_md.ts import { DenoWorkspace } from "./deno_workspace.ts"; const workspace = await DenoWorkspace.load(); const gitLog = await workspace.repo.getGitLogFromTags( "upstream", "v2.2.12", undef...
[ { "path": "Releases.md", "patch": "@@ -8,60 +8,305 @@ https://github.com/denoland/deno_install\n \n ### 2.3.0 / 2025.04.30\n \n-- feat: add `--open` to `deno serve` to open server in browser (#25340)\n-- feat: Allow access to NO_COLOR env var without --allow-env (#29090)\n-- feat: allow forcing in-memory SQ...
2025-05-01T05:44:56
golang/go
1f2a4d192d71ae5eeaacaa72a8bb2df4e6c08edd
5b748eed9c479383fc3ea3d018bbd03de1baa6e6
test: add another regression test for issue 73309 Fixed #73309 Change-Id: Id715b9c71c95c92143a7fdb5a66b24305346dd3b Reviewed-on: https://go-review.googlesource.com/c/go/+/678415 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Carlos Amedee <carlos@golang.org> Aut...
[ { "path": "src/cmd/compile/internal/types2/stdlib_test.go", "patch": "@@ -333,6 +333,7 @@ func TestStdFixed(t *testing.T) {\n \t\t\"issue56103.go\", // anonymous interface cycles; will be a type checker error in 1.22\n \t\t\"issue52697.go\", // types2 does not have constraints on stack size\n \t\t\"issue7...
2025-06-03T17:04:26
mrdoob/three.js
a5318cfd53a85a648d5948399e45d79e7a5e6b4c
d18060ca4c66cde9ed735252a58559ee9d9ee001
Examples: Fixed ESLint error. (#26870)
[ { "path": "examples/webgpu_compute_texture_pingpong.html", "patch": "@@ -35,7 +35,7 @@\n \t\t\tlet pingTexture, pongTexture;\n \t\t\tlet material;\n \t\t\tlet phase = true;\n-\t\t\tlet seed = uniform( new THREE.Vector2() );\n+\t\t\tconst seed = uniform( new THREE.Vector2() );\n \n \t\t\tinit();\n \t\t\trend...
2023-09-29T15:04:14
denoland/deno
92cdce16f054549652e9c5e0ae8fb731c644ab72
bc1ced82609a425af42410ed01cd5c4e53ee32ec
fix(flags): do not panic parsing invalid --allow-import flag (#29118) Closes https://github.com/denoland/deno/issues/29116
[ { "path": "cli/args/flags.rs", "patch": "@@ -4658,7 +4658,7 @@ fn cache_parse(\n unstable_args_parse(flags, matches, UnstableArgsConfig::ResolutionOnly);\n frozen_lockfile_arg_parse(flags, matches);\n allow_scripts_arg_parse(flags, matches)?;\n- allow_import_parse(flags, matches);\n+ allow_import_pa...
2025-04-30T20:41:21
golang/go
5b748eed9c479383fc3ea3d018bbd03de1baa6e6
cfb4e9bc4ae957dba63cb2ee5e020fcd25d553fd
cmd/compile: better error message when import embed package Fixes #73955 Change-Id: I7cf3ab4c70dc2e2765b54b88ae8cfc77a3073344 Reviewed-on: https://go-review.googlesource.com/c/go/+/678355 Auto-Submit: Robert Griesemer <gri@google.com> Reviewed-by: Carlos Amedee <carlos@golang.org> Reviewed-by: Robert Griesemer <gri@g...
[ { "path": "src/cmd/compile/internal/noder/noder.go", "patch": "@@ -458,7 +458,7 @@ func Renameinit() *types.Sym {\n func checkEmbed(decl *syntax.VarDecl, haveEmbed, withinFunc bool) error {\n \tswitch {\n \tcase !haveEmbed:\n-\t\treturn errors.New(\"go:embed only allowed in Go files that import \\\"embed\\\...
2025-06-03T15:01:27
mrdoob/three.js
d18060ca4c66cde9ed735252a58559ee9d9ee001
cc98a1fed75543453d0009ef0c373d8f3e73cf76
Cleanup examples (#26869) * Cleanup example * Cleanup example * Cleanup example * Fix parameter
[ { "path": "examples/webgl_loader_md2.html", "patch": "@@ -152,7 +152,7 @@\n \n \t\t\t\t} );\n \n-\t\t\t\tgui.add( playbackConfig, 'wireframe', false ).onChange( function () {\n+\t\t\t\tgui.add( playbackConfig, 'wireframe' ).onChange( function () {\n \n \t\t\t\t\tcharacter.setWireframe( playbackConfig.wirefr...
2023-09-29T15:03:08
denoland/deno
8c57929058bd10b14d90874d88b8118e57188f1c
1d6f6651157b8b3dab042d07baab24305cf091b4
fix(lsp): ignore 'for await' diagnostics in jupyter cells (#29114)
[ { "path": "cli/tsc/97_ts_host.js", "patch": "@@ -814,8 +814,8 @@ export function filterMapDiagnostic(diagnostic) {\n }\n const isClassicScript = !diagnostic.file?.[\"externalModuleIndicator\"];\n if (isClassicScript) {\n- // Top-level-await.\n- if (diagnostic.code == 1375) {\n+ // Top-level-a...
2025-04-30T16:24:52
golang/go
cfb4e9bc4ae957dba63cb2ee5e020fcd25d553fd
94764d093822721337243de77aeba72df1f9b230
cmd/dist: don't install tools that won't be shipped in distribution We shouldn't be installing these tools because we will remove them in distpack. Installing the tools will also prevent us from testing what happens when the tools are missing. The changes below this on the stack, CL 677775 (cmd/doc: build cmd/doc dir...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -1516,7 +1516,7 @@ func cmdbootstrap() {\n \t}\n \n \t// To recap, so far we have built the new toolchain\n-\t// (cmd/asm, cmd/cgo, cmd/compile, cmd/link)\n+\t// (cmd/asm, cmd/cgo, cmd/compile, cmd/link, cmd/preprofile)\n \t// using the Go bootstrap toolchain ...
2025-05-30T16:53:42
denoland/deno
1d6f6651157b8b3dab042d07baab24305cf091b4
78758f257b0ae285fa622d09239d44cf5dc5884d
fix(ext/node): don't use user manipulated Response objects, use correct `rawHeaders` structure (#29105)
[ { "path": "ext/http/00_serve.ts", "patch": "@@ -59,7 +59,6 @@ import {\n ResponsePrototype,\n toInnerResponse,\n } from \"ext:deno_fetch/23_response.js\";\n-import { headerListFromHeaders } from \"ext:deno_fetch/20_headers.js\";\n import {\n abortRequest,\n fromInnerRequest,\n@@ -502,15 +501,8 @@ fu...
2025-04-30T16:23:53
golang/go
792548a4835f019b40bf8bd4442c893eae280467
49f63047245a50f4ec38044fc6fa2bc75719726a
cmd/go/internal/cfg: fix GOROOT setting when forcing host config We manage the state using a bunch of global config, so we need to make sure we're doing things in the right order. In this case, the SetGOROOT function was being called in init, setting the GOROOT on the global Context, but when we reset the context in F...
[ { "path": "src/cmd/go/internal/cfg/cfg.go", "patch": "@@ -227,6 +227,8 @@ func ForceHost() {\n \t// Recompute the build context using Goos and Goarch to\n \t// set the correct value for ctx.CgoEnabled.\n \tBuildContext = defaultContext()\n+\t// Call SetGOROOT to properly set the GOROOT on the new context.\n...
2025-05-30T20:16:27
denoland/deno
8773b5f5b074e1e374a403d05943b6a7bbbdebad
61574bb9c9c255d5c661add6c7464af30475c197
v2.3.1 (#29107) Fixes wrong version printed with `deno --version`.
[ { "path": "Cargo.lock", "patch": "@@ -1451,7 +1451,7 @@ dependencies = [\n \n [[package]]\n name = \"deno\"\n-version = \"2.3.0\"\n+version = \"2.3.1\"\n dependencies = [\n \"anstream\",\n \"async-trait\",\n@@ -2138,7 +2138,7 @@ dependencies = [\n \n [[package]]\n name = \"deno_lib\"\n-version = \"2.4.0\"...
2025-04-30T10:48:46
golang/go
3bd0eab96f581daafa3045de0c5877254e19054c
a37969852194c841beb61f8078e9939438841fec
runtime: randomize order of timers at the same instant in bubbles In synctest bubbles, fire timers scheduled for the same instant in a randomized order. Pending timers are added to a heap ordered by the timer's wakeup time. Add a per-timer random value, set when the timer is added to a heap, to break ties between tim...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -16,6 +16,7 @@ import (\n \t\"strconv\"\n \t\"strings\"\n \t\"sync\"\n+\t\"sync/atomic\"\n \t\"testing\"\n \t\"time\"\n \t\"weak\"\n@@ -218,6 +219,65 @@ func TestTimerFromOutsideBubble(t *testing.T) {\n \t}\n }\n \n+// TestTimerNondeterminism ...
2025-05-29T18:48:06
mrdoob/three.js
cb644716ad5481738884a55c290c3075a3a7be70
688b7499dba1f5a440cb405583124b40ff00c57b
Nodes: Fix `addLightNode` in case of anonymizing classes (#26858) * Fix `addLightNode` in case of anonymizing classes * Address comment * Update AmbientLightNode.js * Update DirectionalLightNode.js * Update HemisphereLightNode.js * Update IESSpotLightNode.js * Update PointLightNode.js * Update Spo...
[ { "path": "examples/jsm/nodes/lighting/AmbientLightNode.js", "patch": "@@ -22,6 +22,6 @@ class AmbientLightNode extends AnalyticLightNode {\n \n export default AmbientLightNode;\n \n-addLightNode( AmbientLight, AmbientLightNode );\n-\n addNodeClass( 'AmbientLightNode', AmbientLightNode );\n+\n+addLightNode(...
2023-09-27T19:25:58
denoland/deno
2508286d7a542e49e1c1efd659c3fc84a54745ed
2b746c3137366f55eb4339f71bec8cc79b86b990
fix(lsp): prefer relative auto-import specifier against import map (#29098)
[ { "path": "cli/lsp/analysis.rs", "patch": "@@ -17,6 +17,7 @@ use deno_core::serde::Deserialize;\n use deno_core::serde::Serialize;\n use deno_core::serde_json;\n use deno_core::serde_json::json;\n+use deno_core::url::Url;\n use deno_core::ModuleSpecifier;\n use deno_error::JsErrorBox;\n use deno_lint::diagn...
2025-04-30T04:50:17
mrdoob/three.js
688b7499dba1f5a440cb405583124b40ff00c57b
bf7a89e3c7faef0bfd2a607deee5a8a245f35058
WebGLNodeBuilder: Fix Multi-Material (#26841)
[ { "path": "examples/jsm/nodes/core/NodeBuilder.js", "patch": "@@ -50,10 +50,10 @@ const toFloat = ( value ) => {\n \n class NodeBuilder {\n \n-\tconstructor( object, renderer, parser, scene = null ) {\n+\tconstructor( object, renderer, parser, scene = null, material = null ) {\n \n \t\tthis.object = object;...
2023-09-27T16:42:29
denoland/deno
05574665b2940b76eb59e3245e502bac3632b803
c22d17824b851908691b49b5573472c54c374af8
fix(ext/node): work correctly with wrapper Response objects, use correct `rawHeaders` structure (#29056) Fixes https://github.com/denoland/deno/issues/28022 Basically drizzle-kit studio uses hono with the node-server adapter. That creates wrapper objects for responses that forward property getters to the underlying r...
[ { "path": "ext/http/00_serve.ts", "patch": "@@ -58,6 +58,7 @@ import {\n ResponsePrototype,\n toInnerResponse,\n } from \"ext:deno_fetch/23_response.js\";\n+import { headerListFromHeaders } from \"ext:deno_fetch/20_headers.js\";\n import {\n abortRequest,\n fromInnerRequest,\n@@ -500,8 +501,15 @@ fu...
2025-04-30T00:14:29
mrdoob/three.js
bf7a89e3c7faef0bfd2a607deee5a8a245f35058
285c9b68cc69b73833aed0e8771839ef1d6e1f3a
Fixed DeepScan issue.
[ { "path": "examples/jsm/renderers/webgpu/WebGPUBackend.js", "patch": "@@ -467,7 +467,7 @@ class WebGPUBackend extends Backend {\n \n \t\t\t\tif ( results[ i ] !== 0n ) {\n \n-\t\t\t\t\toccluded.add( currentOcclusionQueryObjects[ i ], true );\n+\t\t\t\t\toccluded.add( currentOcclusionQueryObjects[ i ] );\n \...
2023-09-27T11:33:38
denoland/deno
c22d17824b851908691b49b5573472c54c374af8
1a171f10df12a9974d5092d6ab70f08c0a48e80d
perf(fs): don't canonicalize path when opening file if `--allow-all` is passed (#28716) Fixes #28702. Super artificial benchmark: ```ts const perf = performance; async function asyncOpen() { const start = perf.now(); for (let i = 0; i < 100_000; i++) { const file = await Deno.open("./foo.txt"); file.clo...
[ { "path": "cli/lib/npm/permission_checker.rs", "patch": "@@ -61,7 +61,7 @@ impl<TSys: DenoLibSys> NpmRegistryReadPermissionChecker<TSys> {\n Ok(Cow::Borrowed(path))\n } else {\n permissions\n- .check_read_path(path)\n+ .check_read_path(Cow::Borrowed(path))\n...
2025-04-29T23:16:24
mrdoob/three.js
285c9b68cc69b73833aed0e8771839ef1d6e1f3a
5c004571e91dbe20013bdd547cb9b14e363bf245
Update SpriteMaterial.html (#26855) Fixed incorrect Chinese translation.
[ { "path": "docs/api/zh/materials/SpriteMaterial.html", "patch": "@@ -36,7 +36,7 @@ <h2>构造函数(Constructor)</h2>\n \t\t<h3>[name]( [param:Object parameters] )</h3>\n \t\t<p>\n \t\t\t[page:Object parameters] - (可选)用于定义材质外观的对象,具有一个或多个属性。\n-\t\t\t材质的任何属性都可以从此处传入(包括从[page:Material] 和 [page:ShaderMaterial]继承的任何属性)。...
2023-09-27T08:32:50
golang/go
711ff943afc572c6b0e800aa1e73aaf336568c2d
e9d3b030ed6fe8380d9b0411ef06eff001769641
testing: add Output method to TB Updates #59928 Fixes #73937 Change-Id: Ibf7ec61758edccd245841c3acc9096563b44fcd2 Reviewed-on: https://go-review.googlesource.com/c/go/+/677875 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Jonathan Amsterdam <jba@google.com> Rev...
[ { "path": "api/go1.25.txt", "patch": "@@ -101,6 +101,7 @@ pkg testing, method (*F) Output() io.Writer #59928\n pkg testing, method (*T) Attr(string, string) #43936\n pkg testing, method (*T) Output() io.Writer #59928\n pkg testing, type TB interface, Attr(string, string) #43936\n+pkg testing, type TB interf...
2025-05-31T14:41:15
mrdoob/three.js
5c004571e91dbe20013bdd547cb9b14e363bf245
083be57d18474b38d610b4f5ea4b591b7846169b
CurvePath: Use correct line type in `closePath()`. (#26850) * fix #26849 * Update CurvePath.js --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "src/extras/core/CurvePath.js", "patch": "@@ -33,7 +33,8 @@ class CurvePath extends Curve {\n \n \t\tif ( ! startPoint.equals( endPoint ) ) {\n \n-\t\t\tthis.curves.push( new Curves[ 'LineCurve' ]( endPoint, startPoint ) );\n+\t\t\tconst lineType = ( startPoint.isVector2 === true ) ? 'LineCurve' :...
2023-09-27T08:26:37
denoland/deno
1a171f10df12a9974d5092d6ab70f08c0a48e80d
6d0035411b4c8b523546cdf3232666b68ea90aa0
fix(ext/node): handle "ttl" option in "dns" module (#27676) Closes #27669 --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "ext/net/01_net.js", "patch": "@@ -35,6 +35,7 @@ import {\n const UDP_DGRAM_MAXSIZE = 65507;\n \n const {\n+ ArrayPrototypeMap,\n Error,\n Number,\n NumberIsNaN,\n@@ -78,12 +79,13 @@ async function resolveDns(query, recordType, options) {\n }\n \n try {\n- return await op_dns_resolve...
2025-04-29T22:49:10
golang/go
1947c4233a33953088468a23457f6779c34be2d1
8cd7f17248b9215530e9ce9ed7831fc24b5eeef7
runtime: set HeapGoal to zero when the GC is disabled When the GC is disabled, the tracer should emit a heap goal of 0. Not setting the heap goal to 0 causes an inaccurate NextGC value to be emmited. Fixes #63864 Change-Id: Iecceaca86c0a43c1cc4d9433f1f9bb736f01ccbc Reviewed-on: https://go-review.googlesource.com/c/g...
[ { "path": "src/runtime/traceruntime.go", "patch": "@@ -574,7 +574,9 @@ func (tl traceLocker) HeapAlloc(live uint64) {\n // HeapGoal reads the current heap goal and emits a HeapGoal event.\n func (tl traceLocker) HeapGoal() {\n \theapGoal := gcController.heapGoal()\n-\tif heapGoal == ^uint64(0) {\n+\t// The ...
2025-01-02T19:41:59
mrdoob/three.js
083be57d18474b38d610b4f5ea4b591b7846169b
2d1695ed65e39c293223a7651f78f24de265feb7
GLTFLoader: Fix to handle reject on afterRoot (#26852)
[ { "path": "examples/jsm/loaders/GLTFLoader.js", "patch": "@@ -2544,7 +2544,7 @@ class GLTFParser {\n \n \t\t\tassignExtrasToUserData( result, json );\n \n-\t\t\tPromise.all( parser._invokeAll( function ( ext ) {\n+\t\t\treturn Promise.all( parser._invokeAll( function ( ext ) {\n \n \t\t\t\treturn ext.afterR...
2023-09-27T06:53:03
golang/go
8cd7f17248b9215530e9ce9ed7831fc24b5eeef7
29782bd347a1c707b6804ea6ee7da3a70ba9fd4a
testing, testing/synctest: report correct duration after panics Report the correct wall-clock test duration after handling a panic in a synctest.Test bubble. Fixes #73852 Change-Id: I053262e5eac2dd9d5938b17c3093cbc3fa115a0d Reviewed-on: https://go-review.googlesource.com/c/go/+/676695 Auto-Submit: Damien Neil <dneil...
[ { "path": "src/testing/synctest/synctest.go", "patch": "@@ -273,13 +273,19 @@ import (\n // associated with the bubble.\n // - T.Run, T.Parallel, and T.Deadline must not be called.\n func Test(t *testing.T, f func(*testing.T)) {\n+\tvar ok bool\n \tsynctest.Run(func() {\n-\t\ttestingSynctestTest(t, f)...
2025-05-23T23:21:19
denoland/deno
6d0035411b4c8b523546cdf3232666b68ea90aa0
bc346b1825ee19e54e1b0d5c4a8850bbf6b755bf
feat(clean): `deno clean --except <paths>`, remove all cache data except what's needed to run `paths` (#28424) Closes https://github.com/denoland/deno/issues/27229. TODO: - [x] Tests - [x] Make some changes to `deno_cache_dir` so we can get the paths for the local http cache - [x] Right now this leaves the node modu...
[ { "path": "Cargo.lock", "patch": "@@ -1686,9 +1686,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_cache_dir\"\n-version = \"0.18.0\"\n+version = \"0.19.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"4cadb05700726eb97cb4914d8016ff81ece094b1c3ed442d6f48f297961a...
2025-04-29T22:42:17
mrdoob/three.js
2d1695ed65e39c293223a7651f78f24de265feb7
6a5d6de348e8b3a252e8bd585853558be97371f2
Nodes: Fix `addNodeClass` and `addNodeMaterial` in case of renaming classes (#26846)
[ { "path": "examples/jsm/nodes/accessors/BitangentNode.js", "patch": "@@ -86,4 +86,4 @@ export const bitangentWorld = nodeImmutable( BitangentNode, BitangentNode.WORLD\n export const transformedBitangentView = normalize( transformedNormalView.cross( transformedTangentView ).mul( tangentGeometry.w ) );\n expo...
2023-09-26T19:27:29
golang/go
29782bd347a1c707b6804ea6ee7da3a70ba9fd4a
78e86297f5cccb82a6a57081947fab8e8af32586
os: add implementation of fs.ReadLinkFS to *rootFS Fixes #73887 Change-Id: I43f3f4324d740b5381615bce864b7ec31415a635 Reviewed-on: https://go-review.googlesource.com/c/go/+/676135 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Damien Neil <dneil@google.com> Revie...
[ { "path": "src/os/root.go", "patch": "@@ -352,8 +352,8 @@ func splitPathInRoot(s string, prefix, suffix []string) (_ []string, suffixSep s\n \n // FS returns a file system (an fs.FS) for the tree of files in the root.\n //\n-// The result implements [io/fs.StatFS], [io/fs.ReadFileFS] and\n-// [io/fs.ReadDir...
2025-05-24T23:07:58
denoland/deno
490c9c9099785e39cb2044b04952c7de84457a2c
7b28e76881e226f58b1bb2933e0c6abac4bba33a
fix: break unstable lockfile v5 to remove "has" from property names (#29095) Lockfile v5 hasn't stabilized yet, so going to do this breaking change in order to make the property names shorter.
[ { "path": "Cargo.lock", "patch": "@@ -901,7 +901,7 @@ dependencies = [\n \"chrono\",\n \"deno_bench_util\",\n \"deno_cache_dir\",\n- \"deno_lockfile\",\n+ \"deno_lockfile 0.28.0\",\n \"deno_semver\",\n \"deno_terminal 0.2.2\",\n \"deno_tower_lsp\",\n@@ -1478,9 +1478,9 @@ dependencies = [\n \"deno_gra...
2025-04-29T18:17:54
mrdoob/three.js
6a5d6de348e8b3a252e8bd585853558be97371f2
9fe5ed2d71467efe9de0d5ca2a76e1b90e60147b
StorageTexture: Adds support for other formats. (#26842) * TimeNode: Define `frameId` as integer * Renderer: Set `info` as public * StorageTexture: Adds support for other formats. * Update example to `temporal blur` * fix device in getFormat()
[ { "path": "examples/jsm/nodes/utils/TimerNode.js", "patch": "@@ -89,6 +89,6 @@ export default TimerNode;\n export const timerLocal = ( timeScale, value = 0 ) => nodeObject( new TimerNode( TimerNode.LOCAL, timeScale, value ) );\n export const timerGlobal = ( timeScale, value = 0 ) => nodeObject( new TimerNod...
2023-09-26T19:13:03
mrdoob/three.js
9fe5ed2d71467efe9de0d5ca2a76e1b90e60147b
ca5c7cb037060c240d9a9e10f6bd41eb87224268
TSL: Fix include one function under another. (#26844) * TSL: Fix include one function under another. * Add include example
[ { "path": "examples/jsm/nodes/code/FunctionNode.js", "patch": "@@ -99,17 +99,28 @@ class FunctionNode extends CodeNode {\n \n export default FunctionNode;\n \n-const nativeFn = ( code, includes, language = '' ) => {\n+const nativeFn = ( code, includes = [], language = '' ) => {\n \n-\tlet functionNode = nul...
2023-09-26T19:10:10
denoland/deno
7b28e76881e226f58b1bb2933e0c6abac4bba33a
a2c015730620c1cc9404b6028abdf76f1184a3cd
fix(compile): panic when compiled with --no-terminal flag (#28823) When compiled with the `--no-terminal` flag under windows there are some issues related to stdin, stdout and stderr. This pull request fixes the panic when during bootstrap the terminal type is requested. Previously it would return the error if the ter...
[ { "path": "ext/node/ops/util.rs", "patch": "@@ -18,18 +18,18 @@ enum HandleType {\n }\n \n #[op2(fast)]\n-pub fn op_node_guess_handle_type(\n- state: &mut OpState,\n- rid: u32,\n-) -> Result<u32, deno_core::error::ResourceError> {\n- let handle = state.resource_table.get_handle(rid)?;\n+pub fn op_node_gu...
2025-04-29T17:10:20
mrdoob/three.js
379038f6d42a8f5a3b85abea10b32e2c7613b143
2ccc5bc90fbddbd50ed840a834977c58c44b944e
WebGPURenderer: Fix .flipY example
[ { "path": "examples/jsm/renderers/webgpu/utils/WebGPUTextureUtils.js", "patch": "@@ -239,7 +239,7 @@ class WebGPUTextureUtils {\n \n \t\tif ( texture.isDataTexture || texture.isDataArrayTexture || texture.isData3DTexture ) {\n \n-\t\t\tthis._copyBufferToTexture( options.image, textureData.texture, textureDe...
2023-09-26T04:27:04
denoland/deno
a2c015730620c1cc9404b6028abdf76f1184a3cd
5357bc0b9bcdde6f0c5991ae542064e0ba7cee1a
fix(ext/node): use primordials in `ext/node/polyfills/internal/http.ts` (#29082) Towards #24236. This PR replaces `Date`, `Date` methods, and `Symbol`s with their primordial versions.
[ { "path": "ext/node/polyfills/internal/http.ts", "patch": "@@ -1,11 +1,15 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n // Copyright Joyent and Node contributors. All rights reserved. MIT license.\n \n-// TODO(petamoriken): enable prefer-primordials for node polyfills\n-// deno-lint-ignore-fi...
2025-04-29T16:34:22
golang/go
9f3dd846e2ee6e8fcb2c673122d9d0c932e01b71
21b7e60c6b64dd3221ab5b95d164fb42492029e8
cmd/internal/obj/s390x: fix potential recursive String call This String method can potentially recurse infinitely, since %#x will apparently call String if the method exists. This isn't well documented, but cmd/vet will be updated soon to check this (when we update the vendored x/tools dependency) so cut off the recur...
[ { "path": "src/cmd/internal/obj/s390x/condition_code.go", "patch": "@@ -122,7 +122,7 @@ func (c CCMask) String() string {\n \t}\n \n \t// invalid\n-\treturn fmt.Sprintf(\"Invalid (%#x)\", c)\n+\treturn fmt.Sprintf(\"Invalid (%#x)\", uint8(c))\n }\n \n func (CCMask) CanBeAnSSAAux() {}", "additions": 1, ...
2025-05-29T19:04:08
denoland/deno
5357bc0b9bcdde6f0c5991ae542064e0ba7cee1a
c9a50401f38e83e93baae37be53f3d384640dabd
fix(npm): support registries that have no shasums or integrity (#29093) This was actually fixed via the deno_npm and lockfile updates, but it would be good to have an explicit entry for this in the release notes so labeling this as a "fix" Closes https://github.com/denoland/deno/issues/27758
[ { "path": "tests/registry/npm/@denotest/no-shasums/1.0.0/main.js", "patch": "@@ -0,0 +1 @@\n+module.exports.add = (a, b) => a + b;", "additions": 1, "deletions": 0, "language": "JavaScript" }, { "path": "tests/registry/npm/@denotest/no-shasums/1.0.0/package.json", "patch": "@@ -0,0 +...
2025-04-29T16:16:55