repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
mrdoob/three.js
e2f59117296b54357719731742c4b118d135732e
0f65abbd6ae765d6c1108ada32b907831e025c2c
WebGPURenderer: GPU FlipY (#26818) * GPU FlipY * use tempTexture.destroy() * fix name * Rename to `WebGPUTexturePassUtils` and `_getPassUtils()`
[ { "path": "examples/jsm/renderers/webgpu/utils/WebGPUTextureMipmapUtils.js", "patch": "@@ -1,163 +0,0 @@\n-import { GPUTextureViewDimension, GPUIndexFormat, GPUFilterMode, GPUPrimitiveTopology, GPULoadOp, GPUStoreOp } from './WebGPUConstants.js';\n-\n-class WebGPUTextureMipmapUtils {\n-\n-\tconstructor( dev...
2023-09-26T02:45:33
denoland/deno
c9a50401f38e83e93baae37be53f3d384640dabd
25b9abcdf8a029a204f4d536bf31ea27501d7a5b
fix(ext/webgpu): fix incorrect description of UnsafeWindowSurface (#28976) `NSView*` should be the third argument when the system is "cocoa". Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com>
[ { "path": "cli/tsc/dts/lib.deno.unstable.d.ts", "patch": "@@ -18,7 +18,7 @@ declare namespace Deno {\n *\n * | system | winHandle | displayHandle |\n * | ----------------- | ------------- | --------------- |\n- * | \"cocoa\" (macOS) | `NSView*` | - |\n+ *...
2025-04-29T15:24:12
golang/go
21b7e60c6b64dd3221ab5b95d164fb42492029e8
555d425d177db7fa7123779d253aee42980cb8a3
runtime, testing/synctest: breaking bubble isolation with Cond is fatal sync.Cond.Wait is durably blocking. Waking a goroutine out of Cond.Wait from outside its bubble panics. Make this panic a fatal panic, since it leaves the notifyList in an inconsistent state. We could do some work to make this a recoverable panic...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -1228,3 +1228,20 @@ func TestFinalizerOrCleanupDeadlock(t *testing.T) {\n \t\t})\n \t}\n }\n+\n+func TestSynctestCondSignalFromNoBubble(t *testing.T) {\n+\tfor _, test := range []string{\n+\t\t\"SynctestCond/signal/no_bubble\",\n+\t\t\"SynctestCond/broadca...
2025-05-22T18:14:53
mrdoob/three.js
1a67ba7b84ac2b3bf7dd24a1695d43fbd134d824
15e4656ca9f3a98eb1dbf483ae7dc4c267793762
RenderNodes: Fix `context.material` reference. (#26838)
[ { "path": "examples/jsm/renderers/common/nodes/Nodes.js", "patch": "@@ -40,6 +40,7 @@ class Nodes extends DataMap {\n \n \t\t\t\tconst nodeBuilder = this.backend.createNodeBuilder( renderObject.object, this.renderer, renderObject.scene );\n \t\t\t\tnodeBuilder.material = renderObject.material;\n+\t\t\t\tnod...
2023-09-25T21:25:00
denoland/deno
6311d505673d3de4d0c377fe60e5c48a1851ff0f
49dbe697e566bc9bba11693d8ecb73a89d8c4258
fix(repl): panic when user `delete globalThis.globalThis` (#28960)
[ { "path": "cli/tools/repl/mod.rs", "patch": "@@ -63,9 +63,13 @@ impl Repl {\n \n // We check for close and break here instead of making it a loop condition to get\n // consistent behavior in when the user evaluates a call to close().\n- if self.session.closing().await? {\n- ...
2025-04-29T14:15:10
golang/go
555d425d177db7fa7123779d253aee42980cb8a3
f14f3aae1c3dc382c15d9c3174a037b7d3595009
testing, testing/synctest: write bubble errors to parent test log Ensure that log messages written to the testing.T created by synctest.Test appear in the test output when a test fails. Fixes #73902 Change-Id: Ie97f5efe54eb003e6c0a5394c2def4cac1520ecb Reviewed-on: https://go-review.googlesource.com/c/go/+/676995 Rev...
[ { "path": "src/testing/synctest/synctest_test.go", "patch": "@@ -22,37 +22,56 @@ func TestSuccess(t *testing.T) {\n }\n \n func TestFatal(t *testing.T) {\n-\trunTest(t, func() {\n+\trunTest(t, nil, func() {\n \t\tsynctest.Test(t, func(t *testing.T) {\n \t\t\tt.Fatal(\"fatal\")\n \t\t})\n-\t}, `^=== RUN Te...
2025-05-28T17:55:26
mrdoob/three.js
53ee3779eea24050c1b17a8413f50fc96580c754
c3a746ac60cfa5401aea85fdfb814e46c146f65e
EXRExporter: implements support for DataTexture export (#26810) * EXRExporter: DataTexture support Signed-off-by: Guilherme Avila <3927951+sciecode@users.noreply.github.com> * EXRExporter: update API & docs Signed-off-by: Guilherme Avila <3927951+sciecode@users.noreply.github.com> * Examples: add misc_expo...
[ { "path": "docs/examples/en/exporters/EXRExporter.html", "patch": "@@ -78,6 +78,15 @@ <h3>[method:null parse]( [param:WebGLRenderer renderer], [param:WebGLRenderTarge\n \t\tGenerates a .exr output from the input render target.\n \t\t</p>\n \n+\t\t<h3>[method:null parse]( [param:DataTexture dataTexture], [pa...
2023-09-24T09:22:08
mrdoob/three.js
2ac424c3eaaa014424bed5bc78b56980935af811
309e5f6f64c7af9087e0fb6f7cbf83a9fd2a4fef
WebGPURenderer: Support multiple render targets (#26808) * less var access (#26817) actually use the framebuffer we have cached update examples update screenshots MRT allow example to run fix WGSL code address comments update screenshot * remove unused var * cleanup --------- Co-aut...
[ { "path": "examples/jsm/nodes/core/OutputStructNode.js", "patch": "@@ -33,15 +33,19 @@ class OutputStructNode extends Node {\n \tgenerate( builder, output ) {\n \n \t\tconst nodeVar = builder.getVarFromNode( this, this.nodeType );\n+\t\tnodeVar.isOutputStructVar = true;\n+\n \t\tconst propertyName = builder...
2023-09-22T04:40:45
golang/go
4878b4471bf1267a8f87b40ed49b36ab82b79d18
7b4d065267aec8f899a5c5423c1ac501d31807cc
slices: document and test nilness behavior of all functions This change documents the current nilness behavior of all functions in the package, and asserts each with a test. There is no change to behavior, but the postcondition is strengthened, so this may require a proposal. Fixes #73604 Fixes #73048 Change-Id: Ie...
[ { "path": "src/slices/iter.go", "patch": "@@ -46,6 +46,7 @@ func Values[Slice ~[]E, E any](s Slice) iter.Seq[E] {\n \n // AppendSeq appends the values from seq to the slice and\n // returns the extended slice.\n+// If seq is empty, the result preserves the nilness of s.\n func AppendSeq[Slice ~[]E, E any](s...
2025-05-12T17:16:23
denoland/deno
49dbe697e566bc9bba11693d8ecb73a89d8c4258
4d1f47a915be4082780e7b420d576943eda1d510
fix(compile): pass default v8 args during compile (#29084)
[ { "path": "cli/args/mod.rs", "patch": "@@ -1325,6 +1325,18 @@ fn load_env_variables_from_env_file(filename: Option<&Vec<String>>) {\n }\n }\n \n+pub fn get_default_v8_flags() -> Vec<String> {\n+ vec![\n+ \"--stack-size=1024\".to_string(),\n+ \"--js-explicit-resource-management\".to_string(),\n+ ...
2025-04-29T14:13:54
mrdoob/three.js
cf340b9936c773a239ef5186ac112bf2459db22c
1e673dbaa2cf21370dcfc36e72a3414d65235190
TSL: Fix `.negate()` (#26804) * Fix dFdy().negate() * Fix .negate()
[ { "path": "examples/jsm/nodes/math/MathNode.js", "patch": "@@ -102,7 +102,7 @@ class MathNode extends TempNode {\n \n \t\t} else if ( method === MathNode.NEGATE ) {\n \n-\t\t\treturn builder.format( '-' + a.build( builder, inputType ), type, output );\n+\t\t\treturn builder.format( '( - ' + a.build( builder...
2023-09-19T21:25:25
denoland/deno
81a4f9e502f5f5046d47965ac73c4a9b1523b32d
d1f7969570404f33fb6902ad7fe40b0b7addb44f
fix(ext/node): implement DatabaseSync#loadExtension (#29050) Requires full `--allow-ffi` Fixes https://github.com/denoland/deno/issues/29030
[ { "path": "Cargo.lock", "patch": "@@ -8504,6 +8504,14 @@ dependencies = [\n \"winapi\",\n ]\n \n+[[package]]\n+name = \"test_sqlite_extension\"\n+version = \"0.1.0\"\n+dependencies = [\n+ \"rusqlite\",\n+ \"test_server\",\n+]\n+\n [[package]]\n name = \"text-size\"\n version = \"1.1.1\"", "additions": ...
2025-04-29T12:30:21
golang/go
3b77085b40bf0d53528d6852d07c00c81021c855
f8c51b1a6c3d6ebfdbeab3c81d4157aefe0e8b71
runtime: increment updatemaxprocs metric only when disabled The updatemaxprocs metric logic is currently backwards. We only increment the metric when we update GOMAXPROCS, but that only occurs if updatemaxprocs is enabled. Instead, the metric is supposed to increment when updatemaxprocs is disabled and there would be...
[ { "path": "src/runtime/proc.go", "patch": "@@ -6567,6 +6567,22 @@ var (\n //\n // This is based on forcegchelper.\n func defaultGOMAXPROCSUpdateEnable() {\n+\tif debug.updatemaxprocs == 0 {\n+\t\t// Unconditionally increment the metric when updates are disabled.\n+\t\t//\n+\t\t// It would be more descriptiv...
2025-05-28T18:34:52
golang/go
f8c51b1a6c3d6ebfdbeab3c81d4157aefe0e8b71
263bc50c90ff8e0bcd55765819056807acfd20ab
go/doc: NewFromFiles: fix panic on Files with SkipObjectResolution This CL fixes a panic in NewFromFiles when it is provided files produced by the parser in SkipObjectResolution mode, which skips the step of connecting ast.Idents to (deprecated) ast.Objects. Instead of calling ast.NewPackage, which performs a number o...
[ { "path": "src/go/doc/doc.go", "patch": "@@ -188,6 +188,7 @@ func (p *Package) collectFuncs(funcs []*Func) {\n //\n // The package is specified by a list of *ast.Files and corresponding\n // file set, which must not be nil.\n+//\n // NewFromFiles uses all provided files when computing documentation,\n // so...
2025-05-21T15:21:31
denoland/deno
2221cf3e7c30ac43505ed22212c737e0523080f0
d77d0491ce668cb73250d75ea3202da519d684a3
feat: deno_core 0.344.0 (#29089) - new ops init api - fix op order - remove deno_os_worker since extensions must now match the snapshot exactly - isatty test change
[ { "path": "Cargo.lock", "patch": "@@ -1760,9 +1760,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_core\"\n-version = \"0.343.0\"\n+version = \"0.344.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"167ae63972f6de58e4a548327f363ebc449930b62a44d9bbd80197564d2c755...
2025-04-29T11:15:08
mrdoob/three.js
e74c65530124b9f799764c6266658c363a7fc870
18febaf04258cdd506c76d84497c1d5a9f053ccb
WebGPURenderer: Texture fixes for WebGL backend (#26797) * misc texture fixes handle VideoTexture. handle depth textures in GLSL shaders (depth in x component in returned vec4()) map WGSL textureDimensions to GLSL textureSize() Examples fixed lights / ies /spotlights video / panorama material / video (pa...
[ { "path": "examples/jsm/nodes/accessors/TextureSizeNode.js", "patch": "@@ -20,7 +20,7 @@ class TextureSizeNode extends Node {\n \t\tconst textureProperty = this.textureNode.build( builder, 'property' );\n \t\tconst levelNode = this.levelNode.build( builder, 'int' );\n \n-\t\treturn builder.format( `textureD...
2023-09-18T17:21:40
denoland/deno
d77d0491ce668cb73250d75ea3202da519d684a3
e028e26b9ca1038bb4b6f17d84934832160ff944
fix(lsp): add npm reqs to installer on resolution (#29061)
[ { "path": "cli/lsp/documents.rs", "patch": "@@ -35,7 +35,6 @@ use deno_path_util::url_to_file_path;\n use deno_runtime::deno_node;\n use deno_semver::jsr::JsrPackageReqReference;\n use deno_semver::npm::NpmPackageReqReference;\n-use deno_semver::package::PackageReq;\n use indexmap::IndexMap;\n use indexmap:...
2025-04-28T22:12:12
golang/go
dbaa2d3e6525a29defdff16f354881a93974dd2e
6160fa59b6523e781db47eb1ee8f929398f2bb78
cmd/compile: do nil check before calling duff functions, on arm64 and amd64 On these platforms, we set up a frame pointer record below the current stack pointer, so when we're in duffcopy or duffzero, we get a reasonable traceback. See #73753. But because this frame pointer record is below SP, it is vulnerable. Anyth...
[ { "path": "src/cmd/compile/internal/ssa/_gen/AMD64Ops.go", "patch": "@@ -897,8 +897,8 @@ func init() {\n \t\t\t\tinputs: []regMask{buildReg(\"DI\")},\n \t\t\t\tclobbers: buildReg(\"DI\"),\n \t\t\t},\n-\t\t\tfaultOnNilArg0: true,\n-\t\t\tunsafePoint: true, // FP maintenance around DUFFCOPY can be clobbe...
2025-05-29T00:09:05
mrdoob/three.js
633d804475cb7658f5f78ae98785a180b8b9877e
fffeb0c3b1555952afac85475aea1b98bc7ece87
Editor: Fix `CapsuleGeometry` parameter. (#26794)
[ { "path": "editor/js/Sidebar.Geometry.CapsuleGeometry.js", "patch": "@@ -26,7 +26,7 @@ function GeometryParametersPanel( editor, object ) {\n \t// length\n \n \tconst lengthRow = new UIRow();\n-\tconst length = new UINumber( parameters.height ).onChange( update );\n+\tconst length = new UINumber( parameters...
2023-09-18T08:22:45
denoland/deno
ad0ebb57eec0cbd2c5ade14b5d9368d2762a0e33
56282c1d9ffc955d7cfe026464e571d0ce409008
fix(lsp): normalize all uris originating from client (#29019)
[ { "path": "cli/lsp/documents.rs", "patch": "@@ -60,6 +60,7 @@ use super::testing::TestModule;\n use super::text::LineIndex;\n use super::tsc::ChangeKind;\n use super::tsc::NavigationTree;\n+use super::urls::normalize_uri;\n use super::urls::uri_is_file_like;\n use super::urls::uri_to_file_path;\n use super:...
2025-04-28T20:00:14
golang/go
18ad74dd36a9bbdc6a95a9de398b3cd8917898ae
70109eb32625487d9c774d602a4fa2422e218f1b
go/types, types2: dump position stack for non-bailout panics We make sure to dump to stderr since that's where the panic information ends up. Long traces get truncated with a "..." in the middle. We pick an arbitrary limit of 10 positions, but this could be changed. For #51603 Change-Id: I02326a93181e94e1c48afc05684...
[ { "path": "src/cmd/compile/internal/types2/check.go", "patch": "@@ -11,6 +11,7 @@ import (\n \t\"fmt\"\n \t\"go/constant\"\n \t. \"internal/types/errors\"\n+\t\"os\"\n \t\"sync/atomic\"\n )\n \n@@ -419,7 +420,24 @@ func (check *Checker) handleBailout(err *error) {\n \t\t// normal return or early exit\n \t\t...
2025-05-28T15:10:53
mrdoob/three.js
b17a561c93b9ca9ef35aac6667ccda3f2c110720
8193d58b3e8c8c0833c3c69ecfbb651e657043d5
WebGLTextures: Increase default precision for depth buffers with WebGL 2. (#26764) * WebGLTextures: Increase default precision for depth buffers with WebGL 2. * Examples: Update screenshots. * Examples: Update screenshots. * Add webgl2_multisampled_renderbuffers to exception list.
[ { "path": "src/renderers/webgl/WebGLTextures.js", "patch": "@@ -1403,7 +1403,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils,\n \n \t\tif ( renderTarget.depthBuffer && ! renderTarget.stencilBuffer ) {\n \n-\t\t\tlet glInternalFormat = _gl.DEPTH_COMPONENT16;\n+\t\t\tlet g...
2023-09-16T07:58:24
denoland/deno
56282c1d9ffc955d7cfe026464e571d0ce409008
f44329fc56a43c649057c24f2094c62b8dd6e160
fix(ext/ffi): unexport brand from dts (#28503) This is technically **BREAKING** as it removes a public API, but the brand is type-only and the chance of anyone actually relying on this seems very unlikely. --------- Co-authored-by: David Sherret <dsherret@gmail.com>
[ { "path": "cli/tsc/dts/lib.deno.ns.d.ts", "patch": "@@ -5543,7 +5543,7 @@ declare namespace Deno {\n /**\n * @category FFI\n */\n- export const brand: unique symbol;\n+ const brand: unique symbol;\n \n /**\n * @category FFI", "additions": 1, "deletions": 1, "language": "Unknown" ...
2025-04-28T18:54:21
golang/go
70109eb32625487d9c774d602a4fa2422e218f1b
eff328804253e40a2de9c5d89cf7a7c1e23aa11d
cmd/link: allow linkname reference to a TEXT symbol regardless of size In CL 660696, we made the linker to choose the symbol of the larger size in case there are multiple contentless declarations of the same symbol. We also made it emit an error in the case that there are a contentless declaration of a larger size and...
[ { "path": "src/cmd/link/internal/loader/loader.go", "patch": "@@ -452,33 +452,50 @@ func (st *loadState) addSym(name string, ver int, r *oReader, li uint32, kind in\n \tif oldsym.Dupok() {\n \t\treturn oldi\n \t}\n-\t// If one is a DATA symbol (i.e. has content, DataSize != 0)\n-\t// and the other is BSS, t...
2025-05-21T18:32:21
mrdoob/three.js
18ae441f1cf275971bcdcef25be03f6f67965690
30164c92f2facdd3a79c005ec2fa48fd99ba7c71
Docs: Add some missing options to `MeshPhysicalMaterial` demo. (#26753) * Add some missing options to `MeshPhysicalMaterial` demo * Add GUI options for some missing properties including sheen, ior, iridescence, and others to the material browser embedded on the docs pages for materials * Use real default `sheen...
[ { "path": "docs/api/ar/materials/MeshPhysicalMaterial.html", "patch": "@@ -186,7 +186,7 @@ <h3>[property:Texture sheenRoughnessMap]</h3>\n \t\t</p>\n \t\t\n \t\t<h3>[property:Color sheenColor]</h3>\n-\t\t<p>لون اللمعان. الافتراضي هو `0xffffff`، أبيض.</p>\n+\t\t<p>لون اللمعان. الافتراضي هو `0x000000`، أسود.<...
2023-09-15T07:55:35
denoland/deno
f2ae7a19f4b8a2dc4045c21a823cd7fbab38e39c
e0813f22556d6253d6239a0d9eb496b58a64f684
fix: make --allow-env stronger that --deny-env (#29079)
[ { "path": "runtime/permissions/lib.rs", "patch": "@@ -1944,7 +1944,7 @@ impl UnaryPermission<EnvQueryDescriptor> {\n \n pub fn check_all(&mut self) -> Result<(), PermissionDeniedError> {\n skip_check_if_is_permission_fully_granted!(self);\n- self.check_desc(None, false, None)\n+ self.check_desc(...
2025-04-28T17:28:38
golang/go
11d2b28bffb82e0ad0bc102812bed86ce81a1959
04b1030ae488851278257bac66ccf9925f1b87fb
[dev.simd] cmd/compile: add and fix k register supports This CL marks the "mask" ssa type as a simd type. This will make the last return of `simdMov` reachable and the spilling of K register correct. This CL also makes `simdReg` able to return K registers. Change-Id: Ia66230d3e5425d9e8bdd0081b008e098382d3827 Reviewe...
[ { "path": "src/cmd/compile/internal/amd64/ssa.go", "patch": "@@ -1671,6 +1671,8 @@ func simdReg(v *ssa.Value) int16 {\n \t\tpanic(\"simdReg: not a simd type\")\n \t}\n \tswitch t.Size() {\n+\tcase 8:\n+\t\treturn v.Reg() // K registers\n \tcase 16:\n \t\treturn v.Reg()\n \tcase 32:", "additions": 2, ...
2025-05-28T17:00:59
mrdoob/three.js
e6304f37428aca97fab71ff74d52e73cbc8b90e3
f98f680b1bce7a4e434501d9566fa8cf474963d0
LineMaterial: Clean up (#26720) * LineMaterial: Clean up * Workaround setting parameters in Material and ShaderMaterial * Fix
[ { "path": "examples/jsm/lines/LineMaterial.js", "patch": "@@ -453,247 +453,181 @@ class LineMaterial extends ShaderMaterial {\n \n \t\tthis.isLineMaterial = true;\n \n-\t\tObject.defineProperties( this, {\n-\n-\t\t\tcolor: {\n-\n-\t\t\t\tenumerable: true,\n-\n-\t\t\t\tget: function () {\n-\n-\t\t\t\t\tretur...
2023-09-14T09:04:39
denoland/deno
e0813f22556d6253d6239a0d9eb496b58a64f684
f360d61d6401d5309f7286f90f4a5201b7061510
fix(ext/node): throw NotCapable on process.env accessor (#28280) Fixes https://github.com/denoland/deno/issues/28125 Additionally "FORCE_COLOR" env var can now be accessed without `--allow-env` check. --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
[ { "path": "ext/node/polyfills/_process/process.ts", "patch": "@@ -51,11 +51,7 @@ function denoEnvGet(name: string) {\n try {\n return Deno.env.get(name);\n } catch (e) {\n- if (\n- ObjectPrototypeIsPrototypeOf(TypeErrorPrototype, e) ||\n- // TODO(iuioiua): Use `NotCapablePrototype` when...
2025-04-28T14:28:01
golang/go
ed08d2ad0928c0fc77cc2053863616ffb58c5aac
fce9d4515defec0473ca3a685408ef5304d23aa9
os: don't follow symlinks on Windows when O_CREATE|O_EXCL and read-only Fix a bug in CL 672396, where we add FILE_FLAG_OPEN_REPARSE_POINT to the attributes passed to CreateFile, but then overwrite the attributes with FILE_ATTRIBUTE_READONLY when opening a file with a read-only permissions mode. For #73702 Change-Id:...
[ { "path": "src/os/os_test.go", "patch": "@@ -2309,9 +2309,9 @@ func TestOpenFileCreateExclDanglingSymlink(t *testing.T) {\n \t\tvar f *File\n \t\tvar err error\n \t\tif r == nil {\n-\t\t\tf, err = OpenFile(link, O_WRONLY|O_CREATE|O_EXCL, 0o666)\n+\t\t\tf, err = OpenFile(link, O_WRONLY|O_CREATE|O_EXCL, 0o444...
2025-05-27T21:16:17
mrdoob/three.js
f98f680b1bce7a4e434501d9566fa8cf474963d0
67cece3e1f215f8d70d6141fecec575e820bfe16
WebGPURenderer: Invert viewport/scissor y coords (#26730) * invert viewport/scissor y coords fix example * add width & height to renderContext * move setting to Renderer.js * cleanup --------- Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "examples/jsm/renderers/common/RenderContext.js", "patch": "@@ -31,6 +31,9 @@ class RenderContext {\n \t\tthis.activeCubeFace = 0;\n \t\tthis.sampleCount = 1;\n \n+\t\tthis.width = 0;\n+\t\tthis.height = 0;\n+\n \t}\n \n }", "additions": 3, "deletions": 0, "language": "JavaScript" },...
2023-09-13T19:51:08
denoland/deno
f360d61d6401d5309f7286f90f4a5201b7061510
a33dae6a2af5afcae07900bab62aba5fe336ce1c
fix: move otel logic into otel (#29073) cleanup https://github.com/denoland/deno/commit/229228ae0d7c58e1d78dc1777e5f43afe4a58d33
[ { "path": "cli/main.rs", "patch": "@@ -51,7 +51,6 @@ use deno_runtime::tokio_util::create_and_run_current_thread_with_maybe_metrics;\n use deno_runtime::WorkerExecutionMode;\n pub use deno_runtime::UNSTABLE_FEATURES;\n use deno_telemetry::OtelConfig;\n-use deno_telemetry::OtelConsoleConfig;\n use deno_termi...
2025-04-28T13:09:15
golang/go
b78e38065efd5f4079564b9e8e3529950ba0dd52
961818e0131aaa7468616a90ce9ebf00111ccdaa
runtime: define lock ranking between weak pointers and synctest Fixes #73817 Change-Id: I0101bdc797237b4c7eb58b414c71b009b0b44447 Reviewed-on: https://go-review.googlesource.com/c/go/+/675176 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Pratt <mpratt@g...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -9,11 +9,13 @@ import (\n \t\"internal/synctest\"\n \t\"iter\"\n \t\"reflect\"\n+\t\"runtime\"\n \t\"slices\"\n \t\"strconv\"\n \t\"sync\"\n \t\"testing\"\n \t\"time\"\n+\t\"weak\"\n )\n \n func TestNow(t *testing.T) {\n@@ -625,6 +627,17 @@ fu...
2025-05-21T20:02:59
mrdoob/three.js
67cece3e1f215f8d70d6141fecec575e820bfe16
b25c90c4e186d11bacc72a46757d1805c1c5ad27
3DMLoader: Update to support Rhino 8 files. (#26745) * Fixed eslint errors for examples * first RDK additions to 3dmLoader * updated PBR material properties conversion * compromises for glass * extractProperties now recursive * update table count to properties * update 3dmLoader * update 3dmLoader...
[ { "path": "docs/examples/en/loaders/3DMLoader.html", "patch": "@@ -14,7 +14,7 @@ <h1>[name]</h1>\n \t\t\tA loader for Rhinoceros 3d files and objects. <br /><br />\n \t\t\tRhinoceros is a 3D modeler used to create, edit, analyze, document, render, animate, and translate NURBS curves, surfaces, breps, extrus...
2023-09-13T11:31:27
mrdoob/three.js
b25c90c4e186d11bacc72a46757d1805c1c5ad27
e58a74e1901a3384170c428c251f41b1a8352064
USDZLoader: Fix index array type. (#26751) * USDZ Loader - fix index array type - Current `Uint16Array` type might cause spaghetti-like effect when opening some USDZ models - Changed to `Uint32Array` type * Switch to automatic type detection - As per @Mugen87 suggestion
[ { "path": "examples/jsm/loaders/USDZLoader.js", "patch": "@@ -368,7 +368,7 @@ class USDZLoader extends Loader {\n \t\t\tif ( 'int[] faceVertexIndices' in data ) {\n \n \t\t\t\tconst indices = JSON.parse( data[ 'int[] faceVertexIndices' ] );\n-\t\t\t\tgeometry.setIndex( new BufferAttribute( new Uint16Array( ...
2023-09-13T09:47:30
golang/go
961818e0131aaa7468616a90ce9ebf00111ccdaa
c8c3d661b084c01242fa7837e3853d7492ba1717
cmd/compile/internal/walk: use original type for composite literals in addrTemp When creating a new *ir.Name or *ir.LinksymOffsetExpr to represent a composite literal stored in the read-only data section, we should use the original type of the expression that was found via ir.ReassignOracle.StaticValue. (This is neede...
[ { "path": "src/cmd/compile/internal/ir/expr.go", "patch": "@@ -853,6 +853,10 @@ func IsAddressable(n Node) bool {\n //\n // calling StaticValue on the \"int(y)\" expression returns the outer\n // \"g()\" expression.\n+//\n+// NOTE: StaticValue can return a result with a different type than\n+// n's type bec...
2025-05-27T17:32:36
denoland/deno
98cf8f402b000d06865896ac0900a2465e54bab6
943e3de3a439eeb5f4f794aeecef300709f29692
fix(ext/node): use primordials in `ext/node/polyfills/internal/hide_stack_frames.ts` (#29067)
[ { "path": "ext/node/polyfills/internal/hide_stack_frames.ts", "patch": "@@ -1,7 +1,7 @@\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+import { primordials } from \"ext:core/mod.j...
2025-04-28T07:00:54
mrdoob/three.js
ad1f96b38bbe807a2f068a7c2b56f5909b672062
68d93ae17487e03ffafa991a11d8304a494a0fb5
fix: MaterialLoader.parse avoid creating undefined linewidth attribute (#26707) * fix: MaterialLoader.parse avoid creating undefined linewidth attribute avoid creating undefined linewidth attribute on each material loaded. * Update MaterialLoader.js --------- Co-authored-by: Michael Herzog <michael.herzog@...
[ { "path": "src/loaders/MaterialLoader.js", "patch": "@@ -142,7 +142,7 @@ class MaterialLoader extends Loader {\n \n \t\tif ( json.rotation !== undefined ) material.rotation = json.rotation;\n \n-\t\tif ( json.linewidth !== 1 ) material.linewidth = json.linewidth;\n+\t\tif ( json.linewidth !== undefined ) ma...
2023-09-12T20:34:26
golang/go
0e1b14bc2e13aed697854e3859f73ba4dba9fb22
09f1546cba2998a8d89f4506c16ba3bff115071d
cmd/go: fix get with the new 'work' pattern Before this change, go get didn't have support for the work pattern. The work pattern is new in Go 1.25 and evaluates to the packages in the work (also called main) modules. 'go get work' would cause a panic because 'work' would be incorrectly considered a path pattern and t...
[ { "path": "src/cmd/go/internal/modget/get.go", "patch": "@@ -337,6 +337,7 @@ func runGet(ctx context.Context, cmd *base.Command, args []string) {\n \tr.performLocalQueries(ctx)\n \tr.performPathQueries(ctx)\n \tr.performToolQueries(ctx)\n+\tr.performWorkQueries(ctx)\n \n \tfor {\n \t\tr.performWildcardQueri...
2025-05-23T17:19:44
denoland/deno
943e3de3a439eeb5f4f794aeecef300709f29692
1df61020f0b9ecf6876029b222b60f8ba2f1e196
fix(ext/node): use primordials in ext/node/polyfills/_fs/_fs_opendir.ts (#29063)
[ { "path": "ext/node/polyfills/_fs/_fs_opendir.ts", "patch": "@@ -1,8 +1,5 @@\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 Dir from \"ext:deno_node/_fs/_fs_dir.ts\";\n ...
2025-04-28T06:56:39
mrdoob/three.js
68d93ae17487e03ffafa991a11d8304a494a0fb5
366e25eba14e8cb64cddc79c33a831c39b0852f4
fix(RGBELoader): correct error display message (#26742) * fix(RGBELoader): correct error display message this.type is not an ErrorOptions compatible value so errors do not display value. * Update RGBELoader.js Clean up. --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "examples/jsm/loaders/RGBELoader.js", "patch": "@@ -395,7 +395,7 @@ class RGBELoader extends DataTextureLoader {\n \n \t\t\tdefault:\n \n-\t\t\t\tthrow new Error( 'THREE.RGBELoader: unsupported type: ', this.type );\n+\t\t\t\tthrow new Error( 'THREE.RGBELoader: Unsupported type: ' + this.type );\n...
2023-09-12T19:55:35
golang/go
09f1546cba2998a8d89f4506c16ba3bff115071d
de05282a2c3bba1d869f8686e7b38d582af17a0a
log/slog: fix longtests with empty source Tests broken by CL 674875 Updates #73808 Change-Id: I7ad93e4a8ba1977d136f99b9d4963fa8a9c159ff Reviewed-on: https://go-review.googlesource.com/c/go/+/676595 Auto-Submit: Michael Knyszek <mknyszek@google.com> TryBot-Bypass: Michael Knyszek <mknyszek@google.com> Reviewed-by: Mi...
[ { "path": "src/log/slog/logger_test.go", "patch": "@@ -315,7 +315,7 @@ func TestCallDepthConnection(t *testing.T) {\n \t\t\tgot := string(firstLine)\n \n \t\t\twant := fmt.Sprintf(\n-\t\t\t\t`source=:0 msg=\"logger_test.go:%d: %s\"`,\n+\t\t\t\t`msg=\"logger_test.go:%d: %s\"`,\n \t\t\t\tline+i, tt.name,\n \t...
2025-05-27T18:11:28
denoland/deno
229228ae0d7c58e1d78dc1777e5f43afe4a58d33
84b192ee5d2f8619978d41c11ef2feff734c77e5
fix(otel): only start deno_telemetry thread when needed (#29065) Closes #29064
[ { "path": "cli/main.rs", "patch": "@@ -51,6 +51,7 @@ use deno_runtime::tokio_util::create_and_run_current_thread_with_maybe_metrics;\n use deno_runtime::WorkerExecutionMode;\n pub use deno_runtime::UNSTABLE_FEATURES;\n use deno_telemetry::OtelConfig;\n+use deno_telemetry::OtelConsoleConfig;\n use deno_termi...
2025-04-27T16:57:18
mrdoob/three.js
366e25eba14e8cb64cddc79c33a831c39b0852f4
1250397f1867f35f1e4023ac1ed5383d3fb15e50
Reuse NodeBuilder (#26729) * Reuse NodeBuilder * UserDataNode: Fix reference * Add NodeBuilderState * revision * Rename _cacheMaterial -> _propertyCache * revision * cleanup
[ { "path": "examples/jsm/nodes/accessors/ExtendedMaterialNode.js", "patch": "@@ -40,10 +40,11 @@ class ExtendedMaterialNode extends MaterialNode {\n \n \t\t\tif ( material.normalMap ) {\n \n-\t\t\t\tnode = normalMap( this.getTexture( builder, 'normalMap' ), materialReference( 'normalScale', 'vec2' ) );\n+\t\...
2023-09-12T18:22:25
golang/go
ae0824883e7f851173ff1855ad1c638bec87a426
8dd7d2111b8622dac4b0127fa1d26da3c1c4c274
go/ast: deprecate FilterPackage, PackageExports, MergePackageFiles (More symbols that belong to the ast.Object deprecation.) Fixes #73088 Fixes #7124 Updates #52463 Updates #71122 Change-Id: I10e3ef35b587da2f3f0a65e9154e33bd53e7a093 Reviewed-on: https://go-review.googlesource.com/c/go/+/674176 LUCI-TryBot-Result: Go...
[ { "path": "api/next/73088.txt", "patch": "@@ -0,0 +1,7 @@\n+pkg go/ast, const FilterFuncDuplicates //deprecated #73088\n+pkg go/ast, const FilterImportDuplicates //deprecated #73088\n+pkg go/ast, const FilterUnassociatedComments //deprecated #73088\n+pkg go/ast, func FilterPackage //deprecated #73088\n+pkg ...
2025-05-19T18:11:51
denoland/deno
84b192ee5d2f8619978d41c11ef2feff734c77e5
733ffd9dd9739906a756028ba08bb16d9f6d9d35
fix(ext/node): fix deepStrictEqual(-0, 0) (#29060)
[ { "path": "ext/node/polyfills/_util/std_asserts.ts", "patch": "@@ -103,7 +103,7 @@ export function equal(c: unknown, d: unknown): boolean {\n return aTime === bTime;\n }\n if (typeof a === \"number\" && typeof b === \"number\") {\n- return NumberIsNaN(a) && NumberIsNaN(b) || a === b;\n+ ...
2025-04-27T13:19:36
mrdoob/three.js
1250397f1867f35f1e4023ac1ed5383d3fb15e50
14679e4db6ff4799cbbc5ad97683afffc970bac3
Update MathUtils.html (#26728) Fix `smootherstep.max` description error
[ { "path": "docs/api/zh/math/MathUtils.html", "patch": "@@ -123,7 +123,7 @@ <h3>[method:Float smootherstep]( [param:Float x], [param:Float min], [param:Floa\n \t\t<p>\n \t\t\t[page:Float x] - 根据其在最小值和最大值之间的位置来计算的值。 <br />\n \t\t\t[page:Float min] - 任何x比最小值还小会返回0.<br />\n-\t\t\t[page:Float max] - 任何x比最大值还大会返回...
2023-09-11T08:08:43
mrdoob/three.js
11f4ca78eacfb45497efd6c7cb03c59781b226f4
c4405ee125dcec90f7bffcdd8eb41acaa8e42bbe
Nodes: Line2 (fat lines) (#26704) * line2 implementation * fix code errors * export accessors and code style * use set/get for setters/getters --------- Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "examples/files.json", "patch": "@@ -326,6 +326,7 @@\n \t\t\"webgpu_lights_ies_spotlight\",\n \t\t\"webgpu_lights_phong\",\n \t\t\"webgpu_lights_selective\",\n+\t\t\"webgpu_lines_fat\",\n \t\t\"webgpu_loader_gltf\",\n \t\t\"webgpu_loader_gltf_compressed\",\n \t\t\"webgpu_loader_gltf_iridescence\",...
2023-09-11T05:00:55
denoland/deno
733ffd9dd9739906a756028ba08bb16d9f6d9d35
0134f268cb3daf4b50cac596e3c6551efce4870e
fix(otel): recording metrics with more than 3 attributes (#28898) We were calling `op_otel_metric_attribute3` with the wrong arguments.
[ { "path": "ext/telemetry/telemetry.ts", "patch": "@@ -924,8 +924,7 @@ function record(\n const remaining = attrs.length - i;\n if (remaining > 3) {\n op_otel_metric_attribute3(\n- instrument,\n- value,\n+ attrs.length,\n attrs[i][0],\n attrs...
2025-04-26T18:15:21
golang/go
3a3c006ac07886aa923a8aad0a4b3ed954640973
ed70477909c97f86f8d73bee2d8680b6788acec7
crypto/tls: enable signature algorithm BoGo tests (and fix two bugs) The two bugs are very minor: - We were trying to set the ConnectionState CurveID field even if the RSA key exchange was in use - We were sending the wrong alert from TLS 1.2 clients if none of the certificate signature algorithms were supported...
[ { "path": "src/crypto/tls/auth.go", "patch": "@@ -149,20 +149,18 @@ func legacyTypeAndHashFromPublicKey(pub crypto.PublicKey) (sigType uint8, hash c\n var rsaSignatureSchemes = []struct {\n \tscheme SignatureScheme\n \tminModulusBytes int\n-\tmaxVersion uint16\n }{\n \t// RSA-PSS is used with ...
2025-05-23T16:04:36
mrdoob/three.js
0dbaea70838005c5549d94253f7ff73399e32035
24ccd56fcb7dcce8f696811557f44119ba7fc00c
Editor: Fix camera transform when using select in Firefox. (#26717)
[ { "path": "editor/js/libs/ui.js", "patch": "@@ -357,6 +357,12 @@ class UISelect extends UIElement {\n \n \t\tthis.dom.setAttribute( 'autocomplete', 'off' );\n \n+\t\tthis.dom.addEventListener( 'pointerdown', function ( event ) {\n+\n+\t\t\tevent.stopPropagation();\n+\n+\t\t} );\n+\n \t}\n \n \tsetMultiple( ...
2023-09-08T08:49:19
denoland/deno
0134f268cb3daf4b50cac596e3c6551efce4870e
ace8d2efb96940acefcec03d719fb46372b881bc
fix: better error message for bare run in file-like case (#29055) Fixes #28996
[ { "path": "cli/args/flags.rs", "patch": "@@ -1569,7 +1569,7 @@ where\n // causing strings with common prefix >=10 to be considered perfectly similar\n .map(|pv| (strsim::jaro(v, pv.as_ref()), pv.as_ref().to_owned()))\n // Confidence of 0.7 so that bar -> baz is suggested\n- .filter(|(confiden...
2025-04-26T13:54:41
golang/go
ed70477909c97f86f8d73bee2d8680b6788acec7
787362327fbc2ec010659cd9067cc899cc15203c
errors: add joinError Unwrap example Change-Id: Id7489247e9bdd413f82fdf5a70197856c47abfb5 Reviewed-on: https://go-review.googlesource.com/c/go/+/674336 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: Sean Liao <sean@liao.dev> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservice...
[ { "path": "src/errors/example_test.go", "patch": "@@ -66,11 +66,13 @@ func ExampleJoin() {\n \tif errors.Is(err, err2) {\n \t\tfmt.Println(\"err is err2\")\n \t}\n+\tfmt.Println(err.(interface{ Unwrap() []error }).Unwrap())\n \t// Output:\n \t// err1\n \t// err2\n \t// err is err1\n \t// err is err2\n+\t// ...
2025-05-20T05:40:18
mrdoob/three.js
24ccd56fcb7dcce8f696811557f44119ba7fc00c
5e37e4da214f998a0ed3d47726854d207e59d2f6
WebGLRenderer: Support "Linear Display P3" working color space and "Display P3" unlit rendering (#26644) * WIP: Display P3 render example * WIP: P3 implementation * Clean up * TransferFunction -> Transfer * Clean up * Clean up * Clean up * Move capabilities check out of WebGL.js * Fix regressio...
[ { "path": "examples/files.json", "patch": "@@ -213,6 +213,7 @@\n \t\t\"webgl_sprites\",\n \t\t\"webgl_test_memory\",\n \t\t\"webgl_test_memory2\",\n+\t\t\"webgl_test_wide_gamut\",\n \t\t\"webgl_tonemapping\",\n \t\t\"webgl_video_kinect\",\n \t\t\"webgl_video_panorama_equirectangular\",", "additions": 1,...
2023-09-07T16:17:59
denoland/deno
ace8d2efb96940acefcec03d719fb46372b881bc
ec8e683de9c9b2f8104cbc4cc764ffc9063e0374
fix: correct reported typescript version (#29053) https://github.com/denoland/deno/pull/29041#issuecomment-2831398138
[ { "path": "cli/lib/version.rs", "patch": "@@ -14,7 +14,7 @@ pub fn otel_runtime_config() -> OtelRuntimeConfig {\n }\n \n const GIT_COMMIT_HASH: &str = env!(\"GIT_COMMIT_HASH\");\n-const TYPESCRIPT: &str = \"5.7.3\";\n+const TYPESCRIPT: &str = \"5.8.3\";\n pub const DENO_VERSION: &str = env!(\"CARGO_PKG_VERS...
2025-04-25T21:27:29
golang/go
3fd729b2a14a7efcf08465cbea60a74da5457f06
c07ffe980a52b309d48d33265cfee438a01cb513
log/slog: make TextHandler discard empty Source Fixes #73808 Change-Id: Ica4b7a63eebbf0fff41d68f4de928f9da90c8ada Reviewed-on: https://go-review.googlesource.com/c/go/+/674875 Reviewed-by: Jonathan Amsterdam <jba@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Sean Liao <sean@liao.dev> LU...
[ { "path": "src/log/slog/handler.go", "patch": "@@ -492,6 +492,9 @@ func (s *handleState) appendAttr(a Attr) bool {\n \t// Special case: Source.\n \tif v := a.Value; v.Kind() == KindAny {\n \t\tif src, ok := v.Any().(*Source); ok {\n+\t\t\tif src.isEmpty() {\n+\t\t\t\treturn false\n+\t\t\t}\n \t\t\tif s.h.js...
2025-05-21T09:58:13
mrdoob/three.js
5e37e4da214f998a0ed3d47726854d207e59d2f6
898a633fed8de2dcf244cceb48d9f5651c30ece6
USDZLoader: Switch to MeshPhysicalMaterial and add clearcoat/clearcoatRoughness/ior support (#26713) fix incorrect colorspace usage
[ { "path": "examples/jsm/loaders/USDZLoader.js", "patch": "@@ -7,7 +7,7 @@ import {\n \tNoColorSpace,\n \tLoader,\n \tMesh,\n-\tMeshStandardMaterial,\n+\tMeshPhysicalMaterial,\n \tMirroredRepeatWrapping,\n \tRepeatWrapping,\n \tSRGBColorSpace,\n@@ -491,7 +491,7 @@ class USDZLoader extends Loader {\n \n \t\tf...
2023-09-07T14:24:58
denoland/deno
ec8e683de9c9b2f8104cbc4cc764ffc9063e0374
3de24862ee141fe84970768a18453bc49d0dccb7
fix(otel): support attributes on links and events (#28584)
[ { "path": "ext/telemetry/lib.rs", "patch": "@@ -1388,12 +1388,7 @@ impl OtelSpan {\n }\n \n #[fast]\n- fn add_event(\n- &self,\n- #[string] name: String,\n- start_time: f64,\n- #[smi] dropped_attributes_count: u32,\n- ) {\n+ fn add_event(&self, #[string] name: String, start_time: f64) {\n...
2025-04-25T16:26:33
mrdoob/three.js
898a633fed8de2dcf244cceb48d9f5651c30ece6
5696f32f5da2bb2d516e9730ce08d3bc2275cea0
Add USE_ANISOTROPY to prefixVertex in WebGLProgram. (#26716)
[ { "path": "src/renderers/webgl/WebGLProgram.js", "patch": "@@ -494,6 +494,7 @@ function WebGLProgram( renderer, cacheKey, parameters, bindingStates ) {\n \t\t\tparameters.displacementMap ? '#define USE_DISPLACEMENTMAP' : '',\n \t\t\tparameters.emissiveMap ? '#define USE_EMISSIVEMAP' : '',\n \n+\t\t\tparamet...
2023-09-07T09:03:45
golang/go
c07ffe980a52b309d48d33265cfee438a01cb513
3db50924e2c74dfa0cb9295215529a65880eb708
testing/synctest: correct duration in doc example Fixes #73839 Change-Id: I961641c6d8244cdeb101a3c9ae91931828a893ad Reviewed-on: https://go-review.googlesource.com/c/go/+/676035 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com...
[ { "path": "src/testing/synctest/synctest.go", "patch": "@@ -24,11 +24,11 @@\n //\t\tsynctest.Test(t, func(t *testing.T) {\n //\t\t\tstart := time.Now() // always midnight UTC 2001-01-01\n //\t\t\tgo func() {\n-//\t\t\t\ttime.Sleep(1 * time.Nanosecond)\n-//\t\t\t\tt.Log(time.Since(start)) // always logs \"1n...
2025-05-24T11:10:12
mrdoob/three.js
5696f32f5da2bb2d516e9730ce08d3bc2275cea0
1543d95d3e4f4d110d7269d50205f10f0f7662f8
USDZLoader: Load metallic, roughness, emissive, occlusion textures and fix color spaces (#26710) * USDZLoader: Load metallic, roughness, emissive, occlusion textures and set color spaces * fix incorrect colorspace usage
[ { "path": "examples/jsm/loaders/USDZLoader.js", "patch": "@@ -4,6 +4,7 @@ import {\n \tClampToEdgeWrapping,\n \tFileLoader,\n \tGroup,\n+\tNoColorSpace,\n \tLoader,\n \tMesh,\n \tMeshStandardMaterial,\n@@ -513,27 +514,72 @@ class USDZLoader extends Loader {\n \n \t\t\t\t\t}\n \n+\t\t\t\t\tif ( 'color3f inpu...
2023-09-07T08:51:39
denoland/deno
5c3bb07460234ecdf2fc42590cd83c419c94797f
f9a024a74848127facdf0278ff4d146ee7b46d6c
chore: update "version_bump" action to allow for RC bumps (#29048) Also fixes the script for other version updates that was missed in https://github.com/denoland/deno/pull/29018.
[ { "path": ".github/workflows/version_bump.yml", "patch": "@@ -11,6 +11,7 @@ on:\n - patch\n - minor\n - major\n+ - rc\n required: true\n \n jobs:", "additions": 1, "deletions": 0, "language": "YAML" }, { "path": "tools/release/01_bump_crate_...
2025-04-25T15:15:16
golang/go
8cb0941a85de6ddbd6f49f8e7dc2dd3caeeee61c
68f4434df02c3d1bde5b42c9adeaf79d15858ff3
net: use runtime.AddCleanup instead of runtime.SetFinalizer Adds TODO for replacement of runtime.SetFinalizer. Fixes #70907 Change-Id: Ic009018a93ccc46a776ae34afac44635d2340cbf Reviewed-on: https://go-review.googlesource.com/c/go/+/638557 Reviewed-by: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golan...
[ { "path": "src/net/fd_fake.go", "patch": "@@ -104,13 +104,15 @@ func (fd *netFD) accept() (netfd *netFD, err error) {\n func (fd *netFD) setAddr(laddr, raddr Addr) {\n \tfd.laddr = laddr\n \tfd.raddr = raddr\n+\t// TODO Replace with runtime.AddCleanup.\n \truntime.SetFinalizer(fd, (*netFD).Close)\n }\n \n f...
2024-12-23T16:52:43
mrdoob/three.js
1543d95d3e4f4d110d7269d50205f10f0f7662f8
de9ab90782a19275497897d4d92e2a6902bb12b9
USDZLoader: Distinguish between text (supported) and binary (not supported) usd files and fix UV parsing (#26709) * USDZLoader: Distinguish between text (supported) and binary (not supported) usd files * USDZLoader: Load resources from both usd und usda files after checking that it's not binary (crate) files * U...
[ { "path": "examples/jsm/loaders/USDZLoader.js", "patch": "@@ -178,7 +178,14 @@ class USDZLoader extends Loader {\n \n \t\t\t\t}\n \n-\t\t\t\tif ( filename.endsWith( 'usd' ) ) {\n+\t\t\t\tif ( filename.endsWith( 'usd' ) || filename.endsWith( 'usda' ) ) {\n+\n+\t\t\t\t\tif ( isCrateFile( zip[ filename ] ) ) {...
2023-09-07T05:39:48
denoland/deno
f9a024a74848127facdf0278ff4d146ee7b46d6c
1c6a2445c388d3aa5ed6a7a844a1036d328962f8
feat(ext/net): add signal option to `Deno.connect()` (#27113) Ref #26819 An optional **timeout** parameter has been added to the **Deno.connect()** interface. This parameter allows specifying a timeout (in milliseconds) within which the application must establish a connection. If the timeout is exceeded without succe...
[ { "path": "cli/tsc/dts/lib.deno_net.d.ts", "patch": "@@ -339,7 +339,10 @@ declare namespace Deno {\n *\n * @default {\"127.0.0.1\"} */\n hostname?: string;\n+ /** The transport layer protocol to use. */\n transport?: \"tcp\";\n+ /** An {@linkcode AbortSignal} to close the tcp connect...
2025-04-25T14:55:50
golang/go
c0e149b6b1aa2daca64c00804809bc2279e21eee
db3e02994c98f1d6dc00f7df807579c4619885c7
net/http: document that ServeMux.Handler can also synthetize a 405 Also, fix a minor typo in ServeMux.Handle and ServeMux.HandleFunc. Change-Id: I6a6a46565719104cb8f2484daf0e39f35b55a078 Reviewed-on: https://go-review.googlesource.com/c/go/+/675835 Reviewed-by: David Chase <drchase@google.com> Auto-Submit: Filippo Va...
[ { "path": "src/net/http/server.go", "patch": "@@ -2674,7 +2674,8 @@ func stripHostPort(h string) string {\n // the path that will match after following the redirect.\n //\n // If there is no registered handler that applies to the request,\n-// Handler returns a “page not found” handler and an empty pattern....
2025-05-23T10:44:24
mrdoob/three.js
fb931eb6deac05f0623d29cfd2eb3904424aaa40
64876c96e797ccbbdf6153ecef4da7456d67f86d
fix(jsdoc): estimateBytesUsed does not accept array (#26706) function does not accept an array.
[ { "path": "examples/jsm/utils/BufferGeometryUtils.js", "patch": "@@ -555,7 +555,7 @@ export function deinterleaveGeometry( geometry ) {\n }\n \n /**\n- * @param {Array<BufferGeometry>} geometry\n+ * @param {BufferGeometry} geometry\n * @return {number}\n */\n function estimateBytesUsed( geometry ) {", ...
2023-09-06T20:33:05
denoland/deno
6f4472c5dc182c985eff2151f5d50b7173aee734
a44ed9bbe46c2aca429587e97b51e42ccef6dab9
feat(ext/fetch): support `localAddress` option in custom HTTP client (#28781) Fixes https://github.com/denoland/deno/issues/27376 Fixes https://github.com/denoland/deno/issues/23373 Example usage: ```js const client = Deno.createHttpClient({ localAddress: "127.0.0.2", }); const response = await fetch("http://local...
[ { "path": "cli/tsc/dts/lib.deno.ns.d.ts", "patch": "@@ -6208,6 +6208,8 @@ declare namespace Deno {\n * @default {false}\n */\n allowHost?: boolean;\n+ /** Sets the local address where the socket will connect from. */\n+ localAddress?: string;\n }\n \n /**", "additions": 2, "d...
2025-04-25T12:33:24
golang/go
db3e02994c98f1d6dc00f7df807579c4619885c7
db55b83ce437577c0738f56808853b078d656a0b
runtime/trace: fix flaky test for SetMinAge This change fixes the flaky test which expects setting SetMinAge to a small ammount. It expects two sync events but should realistically expect up to 3. Change-Id: Ibd02fe55ebca99eb880025eb968fcebae9cb09c9 Reviewed-on: https://go-review.googlesource.com/c/go/+/675597 Review...
[ { "path": "src/runtime/trace/flightrecorder_test.go", "patch": "@@ -170,7 +170,7 @@ func TestFlightRecorderLog(t *testing.T) {\n \t}\n }\n \n-func TestFlightRecorderOneGeneration(t *testing.T) {\n+func TestFlightRecorderGenerationCount(t *testing.T) {\n \ttest := func(t *testing.T, fr *trace.FlightRecorder)...
2025-05-22T17:33:28
mrdoob/three.js
64876c96e797ccbbdf6153ecef4da7456d67f86d
94d905f0389ec63bdb6b7f97daea2afb8182d768
Editor: fix `Resizer.js` error. (#26703) * Editor: fix `Resizer.js` error. * Update main.css --------- Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "editor/js/Resizer.js", "patch": "@@ -36,7 +36,7 @@ function Resizer( editor ) {\n \n \t\tconst cX = clientX < 0 ? 0 : clientX > offsetWidth ? offsetWidth : clientX;\n \n-\t\tconst x = offsetWidth - cX;\n+\t\tconst x = Math.max( 260, offsetWidth - cX ); // .TabbedPanel min-width: 260px\n \n \t\tdo...
2023-09-06T12:44:54
denoland/deno
cf02f770aa1396f1e382ba736d260995d3dafb72
6e86063c0336d040e1273aac38bae17a6ca6257a
fix(ext/node): fix handling of abort signal in readFile (#29028) Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
[ { "path": "ext/node/polyfills/_fs/_fs_common.ts", "patch": "@@ -86,6 +86,18 @@ export function getEncoding(\n return encoding;\n }\n \n+export function getSignal(optOrCallback?: FileOptions): AbortSignal | null {\n+ if (!optOrCallback || typeof optOrCallback === \"function\") {\n+ return null;\n+ }\n...
2025-04-25T05:48:12
golang/go
db55b83ce437577c0738f56808853b078d656a0b
aec96d686be16fda519f6fd4a6e3bbfe3454c0b9
doc: fix TBD mark Change-Id: I2133e3c62b4de0cec08eeb120d593c644643a62c Reviewed-on: https://go-review.googlesource.com/c/go/+/675755 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Keith Randall <khr@google.com> LUCI-TryBot-Result: Go LUCI <golang-sc...
[ { "path": "doc/next/5-toolchain.md", "patch": "@@ -38,7 +38,7 @@ successfully in Go 1.25. If this change is affecting your code, the solution is\n the non-nil error check earlier in your code, preferably immediately after\n the error-generating statement.\n \n-<!-- CLs 653856, 657937, 663795, TBD 664299 -->...
2025-05-22T22:17:37
mrdoob/three.js
94d905f0389ec63bdb6b7f97daea2afb8182d768
705b47af5cc1ab7907efec6f7a85ce5f7f74d566
Nodes: Export `viewport` and minor fixes (#26698) * export viewport and minor fixes * correct property name * remove empty file added in error * add extra missing exports --------- Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "examples/jsm/nodes/Nodes.js", "patch": "@@ -94,13 +94,14 @@ export { default as UserDataNode, userData } from './accessors/UserDataNode.js';\n \n // display\n export { default as BlendModeNode, burn, dodge, overlay, screen } from './display/BlendModeNode.js';\n+export { default as BumpMapNode, bu...
2023-09-06T02:53:04
denoland/deno
7b908e58739ce5ab1b70239c085f1ecf97427a60
79f9b304282452fb053782d905b72b9ec053a213
fix: correctly style rust logs with colors (#29040) We upgraded `env_logger`, which uses a new color detection backend that is backwards incompatible with the old backend and does not detect GitHub Actions as a terminal that supports color. We now force env_logger to respect the color decision that `deno_terminal` has...
[ { "path": "cli/lib/util/logger.rs", "patch": "@@ -97,6 +97,11 @@ pub fn init<\n .filter_module(\"editpe\", log::LevelFilter::Error)\n // too verbose\n .filter_module(\"cranelift_codegen\", log::LevelFilter::Off)\n+ .write_style(if deno_terminal::colors::use_color() {\n+ env_logger::WriteStyle::Alw...
2025-04-24T19:06:14
golang/go
aec96d686be16fda519f6fd4a6e3bbfe3454c0b9
c684dfcb8a8fe38a8414bfd07b94e9995e5cd308
doc: mention stack allocation of variable-sized make calls Also mention the bisect tool and flag used to track down incorrect uses. Change-Id: Id36a236e1bb2733b8611b22a5b16916e7d9f5522 Reviewed-on: https://go-review.googlesource.com/c/go/+/666075 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Keith ...
[ { "path": "doc/next/5-toolchain.md", "patch": "@@ -38,6 +38,18 @@ successfully in Go 1.25. If this change is affecting your code, the solution is\n the non-nil error check earlier in your code, preferably immediately after\n the error-generating statement.\n \n+<!-- CLs 653856, 657937, 663795, TBD 664299 --...
2025-04-16T20:50:44
denoland/deno
79f9b304282452fb053782d905b72b9ec053a213
e612d572f899662735f84a893b67621c39bcf53b
chore: don't build dev profile with packed debug info (#29042) When you build with "packed", on macOS rustc does an extra invocation of `dsymutil` which slows down dev builds by a fair bit. This restores cargo's default setting, which speeds up dev builds. Since we aren't doing anything with the debug info in dev buil...
[ { "path": "Cargo.toml", "patch": "@@ -388,9 +388,6 @@ opt-level = 'z' # Optimize for size\n split-debuginfo = \"packed\"\n debug = \"line-tables-only\"\n \n-[profile.dev]\n-split-debuginfo = \"packed\"\n-\n # Build release with debug symbols: cargo build --profile=release-with-debug\n [profile.release-with-...
2025-04-24T18:55:17
golang/go
c684dfcb8a8fe38a8414bfd07b94e9995e5cd308
bfbf736564925fd91701a08395f903955cb4cbc7
runtime: don't spin looking for a tiny alloc address with asan or race CL 674655 modified the checkfinalizers test to spin looking for an appropriate address to trip the detector, but this doesn't work with ASAN or in race mode, which both disable the tiny allocator. Fixes #73834. Change-Id: I27416da1f29cd9532716985...
[ { "path": "src/runtime/testdata/testprog/checkfinalizers.go", "patch": "@@ -5,6 +5,8 @@\n package main\n \n import (\n+\t\"internal/asan\"\n+\t\"internal/race\"\n \t\"runtime\"\n \t\"runtime/debug\"\n \t\"unsafe\"\n@@ -39,20 +41,25 @@ func DetectFinalizerAndCleanupLeaks() {\n \t\t**cNoLeak = x\n \t}, int(0)...
2025-05-22T00:29:14
denoland/deno
e612d572f899662735f84a893b67621c39bcf53b
2eeccf10451eb9b3e38ad0b313423fc6d5b39406
fix(deno_os): allow running WebWorker without snapshots (#28975) This addresses [#28680](https://github.com/denoland/deno/issues/28680) where the esm modules are not found when instantiating a WebWorker with snapshots disabled. This is an alternative solution to another PR, https://github.com/denoland/deno/pull/28693
[ { "path": "ext/os/lib.rs", "patch": "@@ -113,7 +113,13 @@ deno_core::extension!(\n ops::signal::op_signal_unbind,\n ops::signal::op_signal_poll,\n ],\n- esm = [\"30_os.js\", \"40_signals.js\"],\n+ // deno_os and deno_os_worker may be used interchangeably, ensure that all\n+ // esm modules are g...
2025-04-24T17:39:38
golang/go
bfbf736564925fd91701a08395f903955cb4cbc7
b1f259b1b42f055863a67492e7815ec752eae56b
cmd/compile: do not shapify when reading reshaping expr Fixes #71184 Change-Id: I22e7ae5203311e86a90502bfe155b0597007887d Reviewed-on: https://go-review.googlesource.com/c/go/+/641955 Auto-Submit: Cuong Manh Le <cuong.manhle.vn@gmail.com> Reviewed-by: Keith Randall <khr@google.com> LUCI-TryBot-Result: Go LUCI <golang...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -49,6 +49,9 @@ type pkgReader struct {\n \t// but bitwise inverted so we can detect if we're missing the entry\n \t// or not.\n \tnewindex []index\n+\n+\t// indicates whether the data is reading during reshaping.\n+\treshaping bool\n }\n \n ...
2025-01-10T05:49:59
mrdoob/three.js
55783cc102dcd8b93b6ac4bb61fcc19c750e3a97
52075260c9c9d36df9a717f7e09806c42bcd0052
KTX2Loader: fix data textures (#26679) * KTX2Loader: fix data textures * remove redundant mipmap assignment * use first mipmap unconditionally
[ { "path": "examples/jsm/loaders/KTX2Loader.js", "patch": "@@ -865,17 +865,15 @@ async function createRawTexture( container ) {\n \tif ( UNCOMPRESSED_FORMATS.has( FORMAT_MAP[ vkFormat ] ) ) {\n \n \t\ttexture = container.pixelDepth === 0\n-\t\t? new DataTexture( mipmaps, container.pixelWidth, container.pixel...
2023-09-04T08:27:58
denoland/deno
2eeccf10451eb9b3e38ad0b313423fc6d5b39406
e1329df448e626664b414a0a6890fba3a16c23fe
fix(compile): use a memory mapped file for fallback (#29039)
[ { "path": "Cargo.lock", "patch": "@@ -2946,6 +2946,7 @@ dependencies = [\n \"indexmap 2.8.0\",\n \"libsui\",\n \"log\",\n+ \"memmap2\",\n \"node_resolver\",\n \"serde\",\n \"serde_json\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "cli/rt/Cargo.toml", ...
2025-04-24T17:19:52
golang/go
b1f259b1b42f055863a67492e7815ec752eae56b
155ba387a93fddbd6ced288fe539a55c31b2597e
cmd/compile: fix ICE with recursive alias type parameter CL 585399 fixed an initialization loop during IR contruction that involving alias type, by avoiding publishing alias declarations until the RHS type expression has been constructed. There's an assertion to ensure that the alias's type must be the same during th...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -762,7 +762,7 @@ func (pr *pkgReader) objIdxMayFail(idx index, implicits, explicits []*types.Type\n \t\tif hack {\n \t\t\tif sym.Def != nil {\n \t\t\t\tname = sym.Def.(*ir.Name)\n-\t\t\t\tassert(name.Type() == typ)\n+\t\t\t\tassert(types.Ide...
2025-04-25T12:13:52
mrdoob/three.js
1f43ebe1b78e04aaf53ef63e4c0c81093b253b65
bf7996b9f150102fa58e16092b6a13e179e22fc3
WebGPURenderer: Support for multiple render targets (#26409) * experimental multi attachment shader add support for webglmultiplerendertargets wip * fix logic * rework to use common path * cleanup * added antialias --------- Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "examples/files.json", "patch": "@@ -331,6 +331,7 @@\n \t\t\"webgpu_loader_gltf_sheen\",\n \t\t\"webgpu_materials\",\n \t\t\"webgpu_materials_video\",\n+\t\t\"webgpu_multiple_rendertargets\",\n \t\t\"webgpu_morphtargets\",\n \t\t\"webgpu_occlusion\",\n \t\t\"webgpu_particles\",", "additions": ...
2023-08-30T20:17:24
denoland/deno
3d16eb8ff3f7cffb68ecb99a5126211301e1f541
74425ddb0b83ddfed2d201de8927f6433783b37f
fix(compile): temporarily fallback to reading resource data from file on windows (#29024) Temp hacky fix for https://github.com/denoland/deno/issues/28982
[ { "path": "cli/rt/binary.rs", "patch": "@@ -3,7 +3,11 @@\n use std::borrow::Cow;\n use std::collections::HashMap;\n use std::ffi::OsString;\n+use std::fs::File;\n+use std::io::BufRead;\n+use std::io::BufReader;\n use std::io::ErrorKind;\n+use std::io::Read;\n use std::path::Path;\n use std::path::PathBuf;\n...
2025-04-24T02:08:15
mrdoob/three.js
bf7996b9f150102fa58e16092b6a13e179e22fc3
0f5a023103b9435e9625c1b4a802333284ddfec3
WebGPURenderer: Fix and clean up (#26671) * WebGLTextureUtils: Fix extension * WebGPUBackend: Ignore draw() if instanceCount is 0 * close the box line
[ { "path": "examples/jsm/renderers/webgl/utils/WebGLTextureUtils.js", "patch": "@@ -177,7 +177,7 @@ class WebGLTextureUtils {\n \n \t\tif ( extensions.has( 'EXT_texture_filter_anisotropic' ) === true ) {\n \n-\t\t\textension = extensions.get( 'EXT_texture_filter_anisotropic' );\n+\t\t\t//extension = extensio...
2023-08-30T20:14:30
golang/go
155ba387a93fddbd6ced288fe539a55c31b2597e
ef3bb638de442dc41d1e34a32e893d2041731e8c
cmd/doc: properly set GOPROXY to avoid deprecation checks This change fixes a bug that was introduced in CL 675155. Instead of doing the two step download and run with GOPROXY=off, do the run with GOPROXY=<download cache>:$GOPROXY, so that we use the previously downloaded version of pkgsite as the latest. Fixes #7383...
[ { "path": "src/cmd/doc/main.go", "patch": "@@ -258,11 +258,22 @@ func doPkgsite(urlPath string) error {\n \t// exit before exiting ourselves.\n \tsignal.Ignore(signalsToIgnore...)\n \n+\t// Prepend the local download cache to GOPROXY to get around deprecation checks.\n+\tenv := os.Environ()\n+\tvars, err :=...
2025-05-22T16:40:51
denoland/deno
74425ddb0b83ddfed2d201de8927f6433783b37f
bbe24337b9e07f2f0dd629cac9feeec5dc5a3d73
fix(lsp): discard completions from non-exported npm files (#28962)
[ { "path": "cli/lsp/analysis.rs", "patch": "@@ -354,71 +354,75 @@ impl<'a> TsResponseImportMapper<'a> {\n \n if let Some(npm_resolver) = scoped_resolver.as_maybe_managed_npm_resolver()\n {\n- let in_npm_pkg = scoped_resolver\n- .as_in_npm_pkg_checker()\n- .in_npm_package(specifier)...
2025-04-23T20:34:57
mrdoob/three.js
d3c862f4eecff63e94b590d26aafaa00efb1237b
705024703127175c42658778f264aa9b4aa21649
Examples: Improve `webgpu_compute_particles.html` (#26665) * Examples: Improve `webgpu_compute_particles.html` * fix: Stats name error
[ { "path": "examples/webgpu_compute_particles.html", "patch": "@@ -32,6 +32,7 @@\n \t\t\timport WebGPURenderer from 'three/addons/renderers/webgpu/WebGPURenderer.js';\n \n \t\t\timport { OrbitControls } from 'three/addons/controls/OrbitControls.js';\n+\t\t\timport Stats from 'three/addons/libs/stats.module.j...
2023-08-30T03:08:45
golang/go
a0dc7bf08481d906cb7d65d86bb347a583d84fd0
53b9eae3875122a65b387adf18c5cb7a67e824d7
cmd/compile: fix ICE when transforming loopvar When transforming for loop variables, the compiler does roughly following steps: (1) prebody = {z := z' for z in leaked} ... (4) init' = (init : s/z/z' for z in leaked) However, the definition of z is not updated to `z := z'` statement, causing Reassign...
[ { "path": "src/cmd/compile/internal/loopvar/loopvar.go", "patch": "@@ -305,6 +305,7 @@ func ForCapture(fn *ir.Func) []VarAndLoop {\n \t\t\t\t\t\tas := ir.NewAssignStmt(x.Pos(), z, tz)\n \t\t\t\t\t\tas.Def = true\n \t\t\t\t\t\tas.SetTypecheck(1)\n+\t\t\t\t\t\tz.Defn = as\n \t\t\t\t\t\tpreBody.Append(as)\n \t...
2025-05-22T11:06:27
mrdoob/three.js
705024703127175c42658778f264aa9b4aa21649
acf97d01d26e2fdc9f9500ff1cb9bbca0cba7aa3
WebGPU: Compute Particles (#26655) * StorageBuffer: Fix shared material * StackNode: Use ShaderNode instead of shader * TSL: storage().toAttribute() and attribute argument for bufferAttribute() * add `webgpu_compute_particles` example * add floor friction * add size option * precompute colors * up...
[ { "path": "examples/files.json", "patch": "@@ -312,6 +312,7 @@\n \t\t\"webgpu_backdrop_area\",\n \t\t\"webgpu_clearcoat\",\n \t\t\"webgpu_compute\",\n+\t\t\"webgpu_compute_particles\",\n \t\t\"webgpu_compute_texture\",\n \t\t\"webgpu_cubemap_adjustments\",\n \t\t\"webgpu_cubemap_dynamic\",", "additions"...
2023-08-29T02:10:30
denoland/deno
bbe24337b9e07f2f0dd629cac9feeec5dc5a3d73
326fd3a20b86350bb824999610ab0708e98b1cea
fix: remove warnings for bare node builtins (#29000)
[ { "path": "Cargo.lock", "patch": "@@ -1855,9 +1855,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_doc\"\n-version = \"0.171.1\"\n+version = \"0.172.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"1e2586f93cf7326a45a117affbb76f1330f26cfea62cc13b91b02fce34c1d81d...
2025-04-23T19:30:59
golang/go
53b9eae3875122a65b387adf18c5cb7a67e824d7
27ff0f249c33fdfa9c8e17a0367b46561236f36c
runtime: use the immortal weak handle map for sbrk mode Currently weak pointers break in sbrk mode. We can just use the immortal weak handle map for weak pointers in this case, since nothing is ever freed. Fixes #69729. Change-Id: Ie9fa7e203c22776dc9eb3601c6480107d9ad0c99 Reviewed-on: https://go-review.googlesource....
[ { "path": "src/runtime/mheap.go", "patch": "@@ -2545,6 +2545,16 @@ func gcWakeAllStrongFromWeak() {\n \n // Retrieves or creates a weak pointer handle for the object p.\n func getOrAddWeakHandle(p unsafe.Pointer) *atomic.Uintptr {\n+\tif debug.sbrk != 0 {\n+\t\t// debug.sbrk never frees memory, so it'll nev...
2025-05-20T20:56:46
mrdoob/three.js
3bb6de2027d5ffceaf08676995f21bbae494ed09
65aab1652365c26ff846d23ad7422a6dd4a52f90
Node: Fix .getNodeType() if .construct() return some Node (#26631)
[ { "path": "examples/jsm/nodes/core/AttributeNode.js", "patch": "@@ -20,12 +20,12 @@ class AttributeNode extends Node {\n \n \tgetNodeType( builder ) {\n \n-\t\tconst attributeName = this.getAttributeName( builder );\n-\n \t\tlet nodeType = super.getNodeType( builder );\n \n \t\tif ( nodeType === null ) {\n ...
2023-08-23T07:50:46
denoland/deno
326fd3a20b86350bb824999610ab0708e98b1cea
d843a93e65ee3f39935b9a81937dcba680294f7b
fix(compile): downgrade editpe to 0.1.0 (#29011)
[ { "path": "Cargo.lock", "patch": "@@ -98,10 +98,9 @@ source = \"registry+https://github.com/rust-lang/crates.io-index\"\n checksum = \"e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011\"\n dependencies = [\n \"cfg-if\",\n- \"const-random\",\n \"once_cell\",\n \"version_check\",\n- \"zeroco...
2025-04-23T10:38:56
mrdoob/three.js
8b6775d380226a85a9f7aad2760e2662574dff3b
7a3cb2e342e837e2bf69ace4d1c4d18a6afbc8fb
Fix typo in constructor params (#26617)
[ { "path": "docs/api/en/math/Matrix3.html", "patch": "@@ -50,7 +50,7 @@ <h2>A Note on Row-Major and Column-Major Ordering</h2>\n \t\t<h2>Constructor</h2>\n \n \t\t<h3>[name]( [param:Number n11], [param:Number n12], [param:Number n13],\n-\t\t\t[param:Number n21], [param:Number n22], [param:Number n22],\n+\t\t...
2023-08-22T09:01:30
golang/go
27ff0f249c33fdfa9c8e17a0367b46561236f36c
d2db2372a2fd79d539719fa13422d83d6fdfcda1
cmd/compile/internal/ssa: eliminate string copies for calls to unique.Make unique.Make always copies strings passed into it, so it's safe to not copy byte slices converted to strings either. Handle this just like map accesses with string(b) as keys. This CL only handles unique.Make(string(b)), not nested cases like u...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -2832,3 +2832,14 @@\n && clobber(sbts)\n && clobber(key)\n => (StaticLECall {f} [argsize] typ_ map_ (StringMake <typ.String> ptr len) mem)\n+\n+// Similarly to map lookups, also handle unique.Make for strings, which unique.Make wi...
2025-05-13T03:39:54
denoland/deno
d843a93e65ee3f39935b9a81937dcba680294f7b
c26b39a0aa2827cd0233dc98c3c1172a4bc289bc
fix: fix bugs with rendering of authority in serve urls (#29009) - preserve authority from protocol - reject some invalid combinations of request lines (e.g. `GET *`) - modify rendering of OPTIONS and CONNECT so that they don't cause `new URL` to raise.
[ { "path": "ext/http/00_serve.ts", "patch": "@@ -295,32 +295,24 @@ class InnerRequest {\n this.#methodAndUri = op_http_get_request_method_and_url(this.#external);\n }\n \n+ const method = this.#methodAndUri[0];\n+ const scheme = this.#methodAndUri[5] !== undefined\n+ ? `${this.#methodAnd...
2025-04-23T09:23:15
mrdoob/three.js
6ce2492c2ba2debcaaa3a43e883b341b863cbcfb
f53bb7dd0efc802bdc7fb794d222406172c3b87e
Audio: Prevent null source error in Audio.disconnect() (#26597) **Problem** Audio.disconnect() expects Audio.source is non-null and calls Audio.source.disconnect(). But Audio.source is initialized as null in the constructor and later it is set in .play() or set*() methods. So if Audio.disconnect() is called b...
[ { "path": "src/audio/Audio.js", "patch": "@@ -210,6 +210,12 @@ class Audio extends Object3D {\n \n \tdisconnect() {\n \n+\t\tif ( this._connected === false ) {\n+\n+\t\t\treturn;\n+\n+\t\t}\n+\n \t\tif ( this.filters.length > 0 ) {\n \n \t\t\tthis.source.disconnect( this.filters[ 0 ] );", "additions": 6...
2023-08-21T09:15:57
golang/go
5e6a868b28d3e7a71fa328c18ff5e93d72a1fb67
8bf816ae6879fa4537cc6e6e292769df2d7dbb78
cmd/compile, unique: model data flow of non-string pointers Currently, hash/maphash.Comparable escapes its parameter if it contains non-string pointers, but does not escape strings or types that contain strings but no other pointers. This is achieved by a compiler intrinsic. unique.Make does something similar: it sto...
[ { "path": "src/cmd/compile/internal/escape/call.go", "patch": "@@ -84,15 +84,19 @@ func (e *escape) call(ks []hole, call ir.Node) {\n \t\t\targument(e.tagHole(ks, fn, param), arg)\n \t\t}\n \n-\t\t// hash/maphash.escapeForHash forces its argument to be on\n-\t\t// the heap, if it contains a non-string point...
2025-05-21T18:33:13
mrdoob/three.js
b37b76b2a34db377963a67ef0d1022d73bccee93
f7341c3e60f9dabadb3bba03852cdcf4ca4bf7fe
SAOPass: Improve performance, fix visuals. (#26599) * SAOPass: Improve performance, fix visuals. * Examples: Update screenshot.
[ { "path": "examples/jsm/postprocessing/SAOPass.js", "patch": "@@ -6,14 +6,13 @@ import {\n \tDstAlphaFactor,\n \tDstColorFactor,\n \tHalfFloatType,\n-\tMeshDepthMaterial,\n \tMeshNormalMaterial,\n \tNearestFilter,\n \tNoBlending,\n-\tRGBADepthPacking,\n \tShaderMaterial,\n \tUniformsUtils,\n-\tUnsignedShort...
2023-08-18T20:28:38