repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
denoland/deno
c26b39a0aa2827cd0233dc98c3c1172a4bc289bc
e23822a9b417e24e08f44dd18cbd368e61970325
fix(cli): Display error on invalid OTEL_EXPORTER_OTLP_PROTOCOL value (#28796) #28646 Edit: Hi apologies for the delayed explanation @marvinhagemeister. The reason the error message wasn't appearing was due to the initialization order. The logging system was being initialized after the telemetry system. This created...
[ { "path": "cli/main.rs", "patch": "@@ -488,11 +488,11 @@ fn resolve_flags_and_init(\n };\n \n let otel_config = flags.otel_config();\n+ init_logging(flags.log_level, Some(otel_config.clone()));\n deno_telemetry::init(\n deno_lib::version::otel_runtime_config(),\n otel_config.clone(),\n )?;\...
2025-04-23T09:15:29
golang/go
7589e9604237ad94869c5803af3bf428f108fefa
edcde86990abd9d7336eee5115b63d8c0863a5dd
cmd/compile: fold negation into addition/subtraction on s390x Fold negation into addition/subtraction and avoid double negation. file before after Δ % addr2line 3909260 3909204 -56 -0.001% asm 6714513 6714505 -8 -0.000% buildid 3680344 3679504 -840 -0.023% cgo 6...
[ { "path": "src/cmd/compile/internal/ssa/_gen/S390X.rules", "patch": "@@ -1188,6 +1188,8 @@\n // TODO: more of this\n (ADD x (NEG y)) => (SUB x y)\n (ADDW x (NEGW y)) => (SUBW x y)\n+(SUB x (NEG y)) => (ADD x y)\n+(SUBW x (NEGW y)) => (ADDW x y)\n (SUB x x) => (MOVDconst [0])\n (SUBW x x) => (MOVDconst [0])\...
2025-05-16T17:55:12
mrdoob/three.js
f18ebe1e40b56429d4e41997549d3db3b6d0165a
dd43da2e0e937773423e5fff969a4d7c73b62b81
Examples: Fix flickering in decals demo. (#26593)
[ { "path": "examples/webgl_decals.html", "patch": "@@ -267,6 +267,7 @@\n \t\t\t\tmaterial.color.setHex( Math.random() * 0xffffff );\n \n \t\t\t\tconst m = new THREE.Mesh( new DecalGeometry( mesh, position, orientation, size ), material );\n+\t\t\t\tm.renderOrder = decals.length; // give decals a fixed render...
2023-08-17T07:39:54
denoland/deno
e23822a9b417e24e08f44dd18cbd368e61970325
4f5ac0acfc0e5395cd62ecb5278df71d5a4e86eb
fix(compile): don't rebuild resource table on Windows (#29010)
[ { "path": "Cargo.lock", "patch": "@@ -5233,9 +5233,9 @@ dependencies = [\n \n [[package]]\n name = \"libsui\"\n-version = \"0.8.0\"\n+version = \"0.9.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"464183daecf10e3d48bc13d10f60d90df2a5a96bce01e43f8912c286e8a4092b\"\n+c...
2025-04-23T08:55:13
golang/go
edcde86990abd9d7336eee5115b63d8c0863a5dd
de457fc4ea50cc3ac9dd967161b8bc31b79a26dd
crypto,hash: add and implement hash.Cloner Fixes #69521 Co-authored-by: qiulaidongfeng <2645477756@qq.com> Change-Id: I6a6a465652f5ab7e6c9054e826e17df2b8b34e41 Reviewed-on: https://go-review.googlesource.com/c/go/+/675197 Reviewed-by: Roland Shoemaker <roland@golang.org> Auto-Submit: Filippo Valsorda <filippo@golang....
[ { "path": "api/next/69521.txt", "patch": "@@ -0,0 +1,9 @@\n+pkg crypto/sha3, method (*SHA3) Clone() (hash.Cloner, error) #69521\n+pkg hash, type Cloner interface { BlockSize, Clone, Reset, Size, Sum, Write } #69521\n+pkg hash, type Cloner interface, BlockSize() int #69521\n+pkg hash, type Cloner interface, ...
2025-05-21T21:55:43
mrdoob/three.js
03b6cc6390e36fdba41c70aa290b1ce81dc6a398
8d9f8d50b923d5f8a673590ae138bc5d86a3a256
Object3D: Clone material arrays (#26589) * Object3D: Clone material arrays * Revert unintentional lint fix * Add tests * Use shorthand if
[ { "path": "src/objects/Line.js", "patch": "@@ -34,7 +34,7 @@ class Line extends Object3D {\n \n \t\tsuper.copy( source, recursive );\n \n-\t\tthis.material = source.material;\n+\t\tthis.material = Array.isArray( source.material ) ? source.material.slice() : source.material;\n \t\tthis.geometry = source.geom...
2023-08-16T18:16:41
denoland/deno
edba5ff3c85de8a98e79afd541bc3f123de54548
40c5dff82f7ed0731dd0f695cf58e92f87b6276a
fix(compile): read resource name in executable as uppercase on Windows (#29005) * https://github.com/denoland/sui/pull/40 (this is the fix) * https://github.com/denoland/sui/pull/39 * https://github.com/denoland/sui/pull/38 Closes https://github.com/denoland/deno/issues/28982 --------- Co-authored-by: Divy Srivasta...
[ { "path": "Cargo.lock", "patch": "@@ -98,9 +98,10 @@ 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-23T04:59:59
golang/go
3cc8b532f9d561397dd0c66496e1e1a82667c926
763963505e39b753d820ee9aea4791ad5bcc0274
testing: add Attr Add a new Attr method to testing.TB that emits a test attribute. An attribute is an arbitrary key/value pair. Fixes #43936 Change-Id: I7ef299efae41f2cf39f2dc61ad4cdd4c3975cdb6 Reviewed-on: https://go-review.googlesource.com/c/go/+/662437 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou...
[ { "path": "api/next/43936.txt", "patch": "@@ -0,0 +1,4 @@\n+pkg testing, method (*B) Attr(string, string) #43936\n+pkg testing, method (*F) Attr(string, string) #43936\n+pkg testing, method (*T) Attr(string, string) #43936\n+pkg testing, type TB interface, Attr(string, string) #43936", "additions": 4, ...
2025-04-03T00:37:34
mrdoob/three.js
eb25afa5a732ce0293576e089905bbcc5f0ce72e
c849b5da3cb56aff580716450563c6f95f0fb458
Docs: Fix import in `CameraUtils`. (#26591)
[ { "path": "docs/examples/en/utils/CameraUtils.html", "patch": "@@ -21,7 +21,7 @@ <h2>Import</h2>\n \t\t</p>\n \n \t\t<code>\n-\t\t\timport { CameraUtils } from 'three/addons/utils/CameraUtils.js';\n+\t\t\timport * as CameraUtils from 'three/addons/utils/CameraUtils.js';\n \t\t</code>\n \n \t\t<h2>Methods</h...
2023-08-16T09:29:15
denoland/deno
40c5dff82f7ed0731dd0f695cf58e92f87b6276a
ff6fe8254cc9084e26e3804e3061e65abbe9cd9d
fix(ext/node): update node version in process object (#27044) Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> Co-authored-by: David Sherret <dsherret@users.noreply.github.com> Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
[ { "path": "ext/node/polyfills/_process/process.ts", "patch": "@@ -116,7 +116,7 @@ export const env: InstanceType<ObjectConstructor> & Record<string, string> =\n * it pointed to Deno version, but that led to incompability\n * with some packages.\n */\n-export const version = \"v20.11.1\";\n+export const v...
2025-04-23T01:55:32
golang/go
0aeaa6a495b7273f7a2190bc9857710190808e54
88679da4a396de98e975deb0e007b1d888a55676
crypto/x509: use truncated SHA-256 for SubjectKeyId Fixes #71746 Change-Id: I6a6a46568b092933d8ac2039df99ee9f0edf6e56 Reviewed-on: https://go-review.googlesource.com/c/go/+/674477 Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Roland Shoemaker <rolan...
[ { "path": "doc/godebug.md", "patch": "@@ -183,6 +183,9 @@ limits. The default value `updatemaxprocs=1` will enable periodic updates.\n Go 1.25 disabled SHA-1 signature algorithms in TLS 1.2 according to RFC 9155.\n The default can be reverted using the `tlssha1=1` setting.\n \n+Go 1.25 switched to SHA-256 t...
2025-05-20T18:51:11
mrdoob/three.js
c849b5da3cb56aff580716450563c6f95f0fb458
ed8a7850317d1eb5c516255de67c89c767fd1566
WebGPURenderer: Fix DataTexture - FloatType (#26585)
[ { "path": "examples/jsm/renderers/webgpu/nodes/WGSLNodeBuilder.js", "patch": "@@ -1,4 +1,4 @@\n-import { RenderTarget, NoColorSpace } from 'three';\n+import { RenderTarget, NoColorSpace, FloatType } from 'three';\n \n import UniformsGroup from '../../common/UniformsGroup.js';\n import {\n@@ -136,25 +136,21 ...
2023-08-15T04:17:23
denoland/deno
762adb51b25f84728f5cdfb4cd822c7e2e6f9de4
1feb2b642195a7daaf037448786f2fa704eadd22
fix(compile): revert multi-icon support in compile (#28997)
[ { "path": "Cargo.lock", "patch": "@@ -5205,12 +5205,11 @@ dependencies = [\n \n [[package]]\n name = \"libsui\"\n-version = \"0.7.0\"\n+version = \"0.5.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"7550a110415b4780bf6064d280f2dc5b761fb80d9af92258a72e5dc82ca6f05a\"\n...
2025-04-22T14:23:30
mrdoob/three.js
a0cb76952dae8af9699ec85b66e79a4a59c52ee8
6c74831ea99df16b4582498feb26282c5ed6f9fa
WebGPURenderer: Occlusion queries with `renderer.isOccluded( object )` (#26335) * add support for meshPhongNodeMaterial * WIP occlusion query WebGPU * bass query count to backend * add new example * minor cleanup/changes * cleanup draw conditions - more readable * add dummy screenshot and remove imp...
[ { "path": "examples/files.json", "patch": "@@ -330,6 +330,7 @@\n \t\t\"webgpu_materials\",\n \t\t\"webgpu_materials_video\",\n \t\t\"webgpu_morphtargets\",\n+\t\t\"webgpu_occlusion\",\n \t\t\"webgpu_particles\",\n \t\t\"webgpu_rtt\",\n \t\t\"webgpu_sandbox\",", "additions": 1, "deletions": 0, "l...
2023-08-14T00:18:56
golang/go
aab8552088ae06ee7d6515d0dfc9efa7979feb5c
59211acb5dbde14647e025eb7379675debcf3930
crypto/tls: use decode alert for handshake msg unmarshal err Previously if instances of the handshakeMessage interface returned false from unmarshal(), indicating an umarshalling error, the crypto/tls package would emit an unexpected_message alert. This commit changes to use a decode_error alert for this condition ins...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -66,20 +66,13 @@\n \"SupportTicketsWithSessionID\": \"We don't support session ID resumption\",\n \"KeyUpdate-RequestACK\": \"TODO: first pass, this should be fixed\",\n \"SupportedVersionSelection-TLS12\": \"TODO: first pass,...
2025-05-17T15:17:21
denoland/deno
1feb2b642195a7daaf037448786f2fa704eadd22
b77871e0c81b29aa64624b1d1b76e49be82f27e4
fix(ext/node): honor flags with respect to reuseAddress when binding to a UDP socket (#28156) Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
[ { "path": "ext/node/polyfills/internal_binding/udp_wrap.ts", "patch": "@@ -42,6 +42,7 @@ import type { ErrnoException } from \"ext:deno_node/internal/errors.ts\";\n import { isIP } from \"ext:deno_node/internal/net.ts\";\n import * as net from \"ext:deno_net/01_net.js\";\n import { isLinux, isWindows } from...
2025-04-22T08:49:14
mrdoob/three.js
ee785fc94099ee1772c2a50dad0b689bf01df13a
0b169138a99655148ed9601f87c685da54997155
FilmPass: Simplify implementation. (#26573) * FilmPass: Simplify implementation. * Examples: Update screenshots. * E2E: Add points example to exception list.
[ { "path": "examples/jsm/postprocessing/FilmPass.js", "patch": "@@ -7,7 +7,7 @@ import { FilmShader } from '../shaders/FilmShader.js';\n \n class FilmPass extends Pass {\n \n-\tconstructor( noiseIntensity, scanlinesIntensity, scanlinesCount, grayscale ) {\n+\tconstructor( intensity = 0.5, grayscale = false )...
2023-08-12T19:59:21
mrdoob/three.js
6a912912ed28e1d11409a1ea8dfecd88b4d5b4c6
50d352fddda1f56f48e8d1045efee4a3ba68f4f5
MeshPhysicalMaterial: Fix default specular docs (#26543) MeshPhysicalMaterial: Add missing iridescence docs
[ { "path": "docs/api/ar/materials/MeshPhysicalMaterial.html", "patch": "@@ -199,7 +199,7 @@ <h3>[property:Float specularIntensity]</h3>\n \t\t<p>\n \t\tعدد عائم يُقيِّس كمية الانعكاس العاكس للأشياء غير المعدنية فقط.\n \t\tعند تعيينه على صفر، يصبح النموذج فعالًا كـ Lambertian. من `0.0` إلى\n-\t\t`1.0`. الافتر...
2023-08-08T08:52:33
mrdoob/three.js
50d352fddda1f56f48e8d1045efee4a3ba68f4f5
67c4225af7339f1970260d022e0de1f605519269
Orbitcontrol ZoomToCursor fix (#26549) * Fix ZoomToCursor to work with changeable object and object3d * change code style * remove object type check and fix coding style
[ { "path": "examples/jsm/controls/OrbitControls.js", "patch": "@@ -631,7 +631,7 @@ class OrbitControls extends EventDispatcher {\n \t\t\tmouse.x = ( x / w ) * 2 - 1;\n \t\t\tmouse.y = - ( y / h ) * 2 + 1;\n \n-\t\t\tdollyDirection.set( mouse.x, mouse.y, 1 ).unproject( object ).sub( object.position ).normaliz...
2023-08-08T08:50:46
golang/go
59211acb5dbde14647e025eb7379675debcf3930
4158ca8d7c521aee5cc48f285f559e74845e973c
crypto/tls: disable SHA-1 signature algorithms in TLS 1.2 This implements RFC 9155 by removing support for SHA-1 algorithms: - we don't advertise them in ClientHello and CertificateRequest (where supportedSignatureAlgorithms is used directly) - we don't select them in our ServerKeyExchange and CertificateVer...
[ { "path": "doc/godebug.md", "patch": "@@ -180,6 +180,9 @@ runtime will periodically update GOMAXPROCS for new CPU affinity or cgroup\n limits. The default value `updatemaxprocs=1` will enable periodic updates.\n `updatemaxprocs=0` will disable periodic updates.\n \n+Go 1.25 disabled SHA-1 signature algorith...
2025-03-15T14:12:39
mrdoob/three.js
e19a621108c8713caa55f15b947d2cb63cff65f3
7f7f778cd0769da319558460f6238067fbae4e94
Nodes: Add LineDashedNodeMaterial (#26528) * Node dashed line * use properties and allow overrides * fix for lack of access to vertex flow * cleanup --------- Co-authored-by: aardgoose <angus.sawyer@email.com> Co-authored-by: sunag <sunagbrasil@gmail.com>
[ { "path": "examples/jsm/nodes/accessors/LineMaterialNode.js", "patch": "@@ -0,0 +1,31 @@\n+import MaterialNode from './MaterialNode.js';\n+import { addNodeClass } from '../core/Node.js';\n+import { nodeImmutable } from '../shadernode/ShaderNode.js';\n+\n+class LineMaterialNode extends MaterialNode {\n+\n+\t...
2023-08-06T02:47:19
golang/go
eb4069127a7dbdaed480aed80ba6ed1b2ea27901
e90acc814de247f58330be1d8ba3b11c78c96077
crypto/ecdsa: add low-level encoding functions for keys Fixes #63963 Change-Id: I6a6a4656a729b6211171aca46bdc13fed5fc5643 Reviewed-on: https://go-review.googlesource.com/c/go/+/674475 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Filippo Valsorda <filippo@golan...
[ { "path": "api/next/63963.txt", "patch": "@@ -0,0 +1,4 @@\n+pkg crypto/ecdsa, func ParseRawPrivateKey(elliptic.Curve, []uint8) (*PrivateKey, error) #63963\n+pkg crypto/ecdsa, func ParseUncompressedPublicKey(elliptic.Curve, []uint8) (*PublicKey, error) #63963\n+pkg crypto/ecdsa, method (*PrivateKey) Bytes() ...
2025-05-20T15:34:57
denoland/deno
b77871e0c81b29aa64624b1d1b76e49be82f27e4
66185e0d1d6d52761fdebdd6b89016eaf82a6e28
fix(publish): support `virtual:` and `cloudflare:` schemes (#28922) For https://github.com/jsr-io/jsr/pull/1035
[ { "path": "cli/graph_util.rs", "patch": "@@ -429,7 +429,7 @@ impl ModuleGraphCreator {\n specifier: &deno_ast::ModuleSpecifier,\n options: deno_graph::source::LoadOptions,\n ) -> deno_graph::source::LoadFuture {\n- if specifier.scheme() == \"bun\" {\n+ if matches!(specifi...
2025-04-22T08:41:32
mrdoob/three.js
6774f1e4aa52d10e0e14b017427bcf7e558b8d81
53366684ba899c0ace8159ca21678b8a66aa65ec
Docs: Improve `OrbitControls` page. (#26541) * Docs: Improve `OrbitControls` page. * Examples: Update screenshot. * E2E: Add webgl2_volume_instancing to exception list.
[ { "path": "docs/examples/en/controls/OrbitControls.html", "patch": "@@ -91,7 +91,7 @@ <h2>Properties</h2>\n \t\t<h3>[property:Boolean autoRotate]</h3>\n \t\t<p>\n \t\t\tSet to true to automatically rotate around the target.<br> Note that if this is enabled, you must call [page:.update]\n-\t\t\t() in your an...
2023-08-05T09:02:51
golang/go
430a3dc4587a9a3f8696d6eb34c8265877022e34
e4216d54f58616b862013e2810436462db08b6ed
crypto/internal/cryptotest: test Armv8.2 on darwin/arm64 Fixes #69593 Cq-Include-Trybots: luci.golang.try:gotip-darwin-arm64_15 Change-Id: I6a6a4656302d65b582df582fa12bb72b88b0316d Reviewed-on: https://go-review.googlesource.com/c/go/+/667755 Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Roland Shoemaker...
[ { "path": "src/crypto/internal/cryptotest/implementations.go", "patch": "@@ -7,6 +7,7 @@ package cryptotest\n import (\n \t\"crypto/internal/boring\"\n \t\"crypto/internal/impl\"\n+\t\"internal/goarch\"\n \t\"internal/goos\"\n \t\"internal/testenv\"\n \t\"testing\"\n@@ -35,15 +36,14 @@ func TestAllImplement...
2025-04-23T21:15:51
denoland/deno
66185e0d1d6d52761fdebdd6b89016eaf82a6e28
de3ce49f29727bb376f6272e845e34fdb6972dde
fix(coverage): improve responsiveness of HTML reporter on small screens (#28993)
[ { "path": "cli/tools/coverage/reporter.rs", "patch": "@@ -510,7 +510,7 @@ impl HtmlCoverageReporter {\n <body>\n <div class='wrapper'>\n {header}\n- <div class='pad1'>\n+ <div class='pad1 overflow-auto'>\n {main_content}\n </div>\...
2025-04-22T04:23:27
mrdoob/three.js
e5426b0514a1347d7aafca69aa34117503c1be88
b1fbdc5034809f88bac08f7e44f74171ed299ccb
NodeBuilder: Fix `construct()` node data (#26533) * NodeBuilder: Fix construct() node data * cleanup * cleanup
[ { "path": "examples/jsm/nodes/core/NodeBuilder.js", "patch": "@@ -563,17 +563,19 @@ class NodeBuilder {\n \n \t\tif ( nodeData === undefined ) {\n \n-\t\t\tnodeData = { vertex: {}, fragment: {}, compute: {} };\n+\t\t\tnodeData = {};\n \n \t\t\tcache.setNodeData( node, nodeData );\n \n \t\t}\n \n-\t\treturn ...
2023-08-04T01:51:09
golang/go
c06eef27d754b0c4e112dbff1233e393a8362844
988eb0d11e8d96e8ca150f401ed82326b276f653
runtime: skip TestTimePprof on sanitizers This test asserts there is no external code, but the sanitizer runtimes are external code. Fixes #73783. Cq-Include-Trybots: luci.golang.try:gotip-windows-amd64-race Change-Id: I6a6a636cf93b7950e3ea35e00ec2eaf89911d712 Reviewed-on: https://go-review.googlesource.com/c/go/+/6...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -854,6 +854,9 @@ func TestTimePprof(t *testing.T) {\n \tcase \"aix\", \"darwin\", \"illumos\", \"openbsd\", \"solaris\":\n \t\tt.Skipf(\"skipping on %s because nanotime calls libc\", runtime.GOOS)\n \t}\n+\tif race.Enabled || asan.Enabled || msan.Enabled {...
2025-05-21T20:14:19
mrdoob/three.js
c8483062882bba286067ef082a4fab38ec50a304
5c619ba8d4b77120079a4b782aa0f2ebc1b5d800
WebGPURenderer: fix clear() inheriting state from previous render() & clear() passes. Co-authored-by: aardgoose <angus.sawyer@email.com>
[ { "path": "examples/jsm/renderers/webgpu/WebGPUBackend.js", "patch": "@@ -317,6 +317,7 @@ class WebGPUBackend extends Backend {\n \t\tstencil = stencil && renderContext.stencil;\n \n \t\tconst colorAttachment = descriptor.colorAttachments[ 0 ];\n+\t\tconst depthStencilAttachment = descriptor.depthStencilAtt...
2023-08-01T19:33:10
denoland/deno
e7c8870010d613f943b7a85e5afa040bf9c612b4
74fd529219be202c7970dd9473ad6a48b8895e23
fix(lsp): use markup content variant for hover response (#28987)
[ { "path": "cli/lsp/tsc.rs", "patch": "@@ -1857,23 +1857,24 @@ impl QuickInfo {\n module: &DocumentModule,\n language_server: &language_server::Inner,\n ) -> lsp::Hover {\n- let mut parts = Vec::<lsp::MarkedString>::new();\n+ let mut parts = Vec::new();\n if let Some(display_string) = sel...
2025-04-21T23:41:36
mrdoob/three.js
1ad293d1da3faf8e6a1f563af4c278de9fa3fafd
6360fe57839db00d423b500ec1fd06e7b7cae9d3
WebGLRenderer: Remove material condition for unconditional uniforms. (#26467) * Remove material specification for unconditional uniforms * Refactor uniforms.setValue to shared sectoin * fix lint * Condition for isOrthographic update * Update WebGLRenderer.js Update comment. --------- Co-authored-b...
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -1793,48 +1793,28 @@ class WebGLRenderer {\n \n \t\t\tif ( refreshProgram || _currentCamera !== camera ) {\n \n+\t\t\t\t// common camera uniforms\n+\n \t\t\t\tp_uniforms.setValue( _gl, 'projectionMatrix', camera.projectionMatrix );\n+\t\t\t\tp_uniform...
2023-07-31T09:30:22
golang/go
50484d3b4e691d361d009d5e4a07c182b35471a0
b6e251b264869fac4ddc158fb9a5c8d5b4ac086f
cmd/go/internal/doc: ignore SIGINT and SIGQUIT Just like we do in cmd/doc when we start pkgsite, ignore SIGINT (and SIGQUIT on unix) when we start cmd/doc so that it's handled by cmd/doc (if pkgsite is not started, and before it is started) or pkgsite, if it is started. Also exit with the exit status of the command, r...
[ { "path": "src/cmd/go/internal/base/base.go", "patch": "@@ -191,20 +191,28 @@ func GetExitStatus() int {\n // connected to the go command's own stdout and stderr.\n // If the command fails, Run reports the error using Errorf.\n func Run(cmdargs ...any) {\n+\tif err := RunErr(cmdargs...); err != nil {\n+\t\t...
2025-05-21T16:20:59
denoland/deno
74fd529219be202c7970dd9473ad6a48b8895e23
713bf3266bc59a17e4fc4cdb3913b86f4fb95d38
fix(lsp): show a diagnostic for managed npm non-existent subpaths (#28981)
[ { "path": "cli/lsp/diagnostics.rs", "patch": "@@ -1185,10 +1185,12 @@ pub enum DenoDiagnostic {\n NoAttributeType,\n /// A remote module was not found in the cache.\n NoCache(ModuleSpecifier),\n- /// A remote jsr package reference was not found in the cache.\n+ /// A jsr package reference was not fo...
2025-04-21T23:41:22
golang/go
1881d680b0b573c32d3002c37902760668ffec0f
ef20ccc10bf6e4d3991c9e29c7fae1c9ab338629
net/http: add CrossOriginProtection Fixes #73626 Change-Id: I6a6a4656862e7a38acb65c4815fb7a1e04896172 Reviewed-on: https://go-review.googlesource.com/c/go/+/674936 Reviewed-by: Damien Neil <dneil@google.com> Auto-Submit: Filippo Valsorda <filippo@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acc...
[ { "path": "api/next/73626.txt", "patch": "@@ -0,0 +1,7 @@\n+pkg net/http, func NewCrossOriginProtection() *CrossOriginProtection #73626\n+pkg net/http, method (*CrossOriginProtection) AddInsecureBypassPattern(string) #73626\n+pkg net/http, method (*CrossOriginProtection) AddTrustedOrigin(string) error #7362...
2025-05-21T13:35:51
denoland/deno
713bf3266bc59a17e4fc4cdb3913b86f4fb95d38
79e36b0ccd84afeb296ac9ef5f29bf922aba7bc6
fix(npm): only print deprecation warnings on first install (#28990) Fixes https://github.com/denoland/deno/issues/28933. This was a regression from the packument refactor.
[ { "path": "cli/npm/installer/local.rs", "patch": "@@ -24,7 +24,6 @@ use deno_core::parking_lot::Mutex;\n use deno_error::JsErrorBox;\n use deno_npm::registry::NpmRegistryApi;\n use deno_npm::resolution::NpmResolutionSnapshot;\n-use deno_npm::NpmPackageExtraInfo;\n use deno_npm::NpmResolutionPackage;\n use d...
2025-04-21T20:18:38
golang/go
d54703c94ae906a5e851ae95909b6eb2f0314e19
d82cb03debff0180aa705129e8a00e89c3fe8251
runtime: use DontUpdate testprog for DontUpdate test This is a typo in CL 670497. The test is using the wrong testprog function. The testprog also needs to assert that GOMAXPROCS doesn't change, not that it is equal to NumCPU, for the GOMAXPROCS=4 case. For #73193. Cq-Include-Trybots: luci.golang.try:gotip-windows-...
[ { "path": "src/runtime/gomaxprocs_windows_test.go", "patch": "@@ -32,7 +32,7 @@ func TestCgroupGOMAXPROCSDontUpdate(t *testing.T) {\n \t// update feature.\n \tfor _, v := range []string{\"GOMAXPROCS=4\", \"GODEBUG=updatemaxprocs=0\"} {\n \t\tt.Run(v, func(t *testing.T) {\n-\t\t\tgot := runTestProg(t, \"test...
2025-05-21T18:49:40
denoland/deno
d26be983776be774ef859c81a2a4971c6b5fee60
104514b06dfbbb899235fb1147aa1fa62477a6d5
fix(lsp): remove redirect diagnostic (#28988)
[ { "path": "cli/lsp/diagnostics.rs", "patch": "@@ -1191,12 +1191,6 @@ pub enum DenoDiagnostic {\n NotInstalledNpm(PackageReq, ModuleSpecifier),\n /// A local module was not found on the local file system.\n NoLocal(ModuleSpecifier),\n- /// The specifier resolved to a remote specifier that was redirect...
2025-04-21T18:14:00
golang/go
3e468dfd5e6624465716fe5d34358ba58f1e9e7b
deb9a7e4ad8552a5f366877e626c223dea0e9d9b
crypto/tls: enable BoGo DisabledCurve-HelloRetryRequest-TLS13 The crypto/tls package produces the expected error for this test case, and so it can be enabled. Looking at the history of the relevant code it appears the TLS 1.3 implementation has always had the correct behaviour for HRR changing to an unsupported group...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -61,7 +61,6 @@\n \"BadRSAClientKeyExchange-4\": \"crypto/tls doesn't check the version number in the premaster secret - see processClientKeyExchange comment\",\n \"BadRSAClientKeyExchange-5\": \"crypto/tls doesn't check the version nu...
2025-05-16T18:40:27
denoland/deno
104514b06dfbbb899235fb1147aa1fa62477a6d5
5bee29223deb081be8d6b0c7ad7c93d1a0015c0b
fix(compile): error when cannot extract binary section (#28986) We were silently failing on failure here.
[ { "path": "cli/rt/binary.rs", "patch": "@@ -57,9 +57,9 @@ pub struct StandaloneData {\n /// the bundle is executed. If not, this function exits with `Ok(None)`.\n pub fn extract_standalone(\n cli_args: Cow<Vec<OsString>>,\n-) -> Result<Option<StandaloneData>, AnyError> {\n+) -> Result<StandaloneData, AnyE...
2025-04-21T15:21:37
mrdoob/three.js
680ce88372b63f8f227d9c17d22c5500a28a80a6
b447ff2911cbefcd650df5a18a905e7df882fc78
Loaders: Bubble parsing errors in remaining data texture loaders. (#26499) * Loaders: Bubble parsing errors in remaining data texture loaders. * DataTextureLoader: Remove obsolete line.
[ { "path": "examples/jsm/loaders/EXRLoader.js", "patch": "@@ -1996,7 +1996,7 @@ class EXRLoader extends DataTextureLoader {\n \n \t\t\tif ( dataView.getUint32( 0, true ) != 20000630 ) { // magic\n \n-\t\t\t\tthrow new Error( 'THREE.EXRLoader: provided file doesn\\'t appear to be in OpenEXR format.' );\n+\t\t...
2023-07-28T09:31:43
denoland/deno
5bee29223deb081be8d6b0c7ad7c93d1a0015c0b
c1e037b8161a3901fe062045b030f8562cadfe6f
fix: use proper version for v2.3.0-rc.0 (#28967) Unfortunately https://github.com/denoland/deno/commit/c1e037b8161a3901fe062045b030f8562cadfe6f built as v2.1.11 because I missed that this file needs to be updated as well.
[ { "path": "cli/lib/version.txt", "patch": "@@ -1 +1 @@\n-2.2.11\n\\ No newline at end of file\n+2.3.0-rc.0\n\\ No newline at end of file", "additions": 1, "deletions": 1, "language": "Plain Text" } ]
2025-04-19T09:29:30
mrdoob/three.js
33487fb28d003d8a26b1f8d13329a47eabbd987e
78acb52d07e728678f1851eaeafdcf71be762e4e
TGALoader: Bubble parsing errors. (#26497) * TGALoader: Bubble parsing errors. * TGALoader: Clean up.
[ { "path": "examples/jsm/loaders/TGALoader.js", "patch": "@@ -25,7 +25,7 @@ class TGALoader extends DataTextureLoader {\n \t\t\t\tcase TGA_TYPE_RLE_INDEXED:\n \t\t\t\t\tif ( header.colormap_length > 256 || header.colormap_size !== 24 || header.colormap_type !== 1 ) {\n \n-\t\t\t\t\t\tconsole.error( 'THREE.TG...
2023-07-26T11:32:38
mrdoob/three.js
7b7cef626765dbfa0f6c5bfee41cc35dd7698783
6311a59d5681d5306c1f55cba7a230814371b86f
WebGPURenderer: Fix background (#26493) * NodeMaterial: Add .vertexNode * Renderer: Fix background
[ { "path": "examples/jsm/nodes/materials/NodeMaterial.js", "patch": "@@ -50,7 +50,9 @@ class NodeMaterial extends ShaderMaterial {\n \t\tthis.alphaTestNode = null;\n \n \t\tthis.positionNode = null;\n-\t\tthis.outputNode = null;\n+\n+\t\tthis.outputNode = null; // @TODO: Rename to fragmentNode\n+\t\tthis.ver...
2023-07-25T08:47:23
denoland/deno
dbb5373eab5a416d2178d26e7caa3d92c80b6f3e
6ce1e9b7f76fb99e89656bcb1785258fe8c1ddf3
fix(lockfile): re-fetch packuments if version not found, properly pass patch packages (#28964) Fixes two issues: - If a cached packument was out of date and missing a version from the lockfile, we would fail. Instead we should try again with a forced re-fetch - We weren't threading through the workspace patch packages...
[ { "path": "cli/args/lockfile.rs", "patch": "@@ -293,7 +293,7 @@ impl CliLockfile {\n pub async fn read_from_path(\n sys: &CliSys,\n opts: CliLockfileReadFromPathOptions,\n- api: &(dyn NpmPackageInfoProvider + Send + Sync),\n+ api: &(dyn deno_lockfile::NpmPackageInfoProvider + Send + Sync),\n...
2025-04-18T23:08:15
mrdoob/three.js
ffd9884ecd62ec42e4fcfc5776674e43d04f5de0
4a75811d5f0e6e5dc66b437696bf5a0dabcf094f
WebGPURenderer: Iridescence (#26489) * LightingModel: New class struct * cleanup * cleanup * AONode: Fix float value * SpriteNodeMaterial: Force float type in rotation * PhysicalLightingModel: Add iridescence * Add webgpu_loader_gltf_iridescence example
[ { "path": "examples/files.json", "patch": "@@ -325,6 +325,7 @@\n \t\t\"webgpu_lights_selective\",\n \t\t\"webgpu_loader_gltf\",\n \t\t\"webgpu_loader_gltf_compressed\",\n+\t\t\"webgpu_loader_gltf_iridescence\",\n \t\t\"webgpu_loader_gltf_sheen\",\n \t\t\"webgpu_materials\",\n \t\t\"webgpu_materials_video\",...
2023-07-25T07:07:36
golang/go
7ba996874b541aa13b6bf1d1174b97372e0de20d
a8e0641d5b90da99d5dda96488e87dda761b365b
crypto/tls: verify server chooses advertised curve When a crypto/tls client using TLS < 1.3 sends supported elliptic_curves in a client hello message the server must limit itself to choosing one of the supported options from our message. If we process a server key exchange message that chooses an unadvertised curve, a...
[ { "path": "src/crypto/tls/bogo_config.json", "patch": "@@ -62,7 +62,6 @@\n \"BadRSAClientKeyExchange-5\": \"crypto/tls doesn't check the version number in the premaster secret - see processClientKeyExchange comment\",\n \"CheckLeafCurve\": \"TODO: first pass, this should be fixed\",\n ...
2025-05-16T17:08:16
denoland/deno
6ce1e9b7f76fb99e89656bcb1785258fe8c1ddf3
750476486a127afbf00873acb1072233a8e3d401
fix(install): error gracefully if user passes `--no-config` to `deno install <package>` (#28965) Fixes #28090. Fixes #28961.
[ { "path": "cli/args/flags.rs", "patch": "@@ -1412,7 +1412,7 @@ pub fn flags_from_vec(args: Vec<OsString>) -> clap::error::Result<Flags> {\n \"fmt\" => fmt_parse(&mut flags, &mut m)?,\n \"init\" => init_parse(&mut flags, &mut m)?,\n \"info\" => info_parse(&mut flags, &mut m)?,\n- \"ins...
2025-04-18T22:13:20
mrdoob/three.js
5eba621cd7de19289fd26d64995db77f94ad49f5
0967966e5ac3cb5bdd62c7b4023862f777352208
GLTFLoader: Fix loadAnimation refactor (#26477) * GLTFLoader: some code to be accessible from extensions on parser * move targetNames code earlier * bring outputAccessor.itemSize switch back * linting
[ { "path": "examples/jsm/loaders/GLTFLoader.js", "patch": "@@ -3857,6 +3857,7 @@ class GLTFParser {\n \tloadAnimation( animationIndex ) {\n \n \t\tconst json = this.json;\n+\t\tconst parser = this;\n \n \t\tconst animationDef = json.animations[ animationIndex ];\n \t\tconst animationName = animationDef.name ...
2023-07-22T11:38:45
golang/go
c3bb27bbc77ac02ad709e77a7fcca0a5d3176304
f4de2ecffb9c107e6058c1ebb30c68de1157f5c6
cmd/compile/internal/walk: use global zeroVal in interface conversions for zero values This is a small-ish adjustment to the change earlier in our stack in CL 649555, which started creating read-only global storage for a composite literal used in an interface conversion and setting the interface data pointer to point ...
[ { "path": "src/cmd/compile/internal/ir/symtab.go", "patch": "@@ -59,6 +59,7 @@ type symsStruct struct {\n \tUdiv *obj.LSym\n \tWriteBarrier *obj.LSym\n \tZerobase *obj.LSym\n+\tZeroVal *obj.LSym\n \tARM64HasATOMICS *obj.LSym\n \tARMHasVFPv4 *obj.LSym\n \tLoong64HasLAMC...
2025-02-12T23:45:42
mrdoob/three.js
39305cf483ca493379978236b634834633cc9ec7
afe58df473975f11185066274647f63fe3966c6f
WebGLRenderer: Fix runtime error when rendering wireframes with empty geometry. (#26465)
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -795,6 +795,9 @@ class WebGLRenderer {\n \t\t\tif ( material.wireframe === true ) {\n \n \t\t\t\tindex = geometries.getWireframeAttribute( geometry );\n+\n+\t\t\t\tif ( index === undefined ) return;\n+\n \t\t\t\trangeFactor = 2;\n \n \t\t\t}", "ad...
2023-07-20T08:24:28
denoland/deno
750476486a127afbf00873acb1072233a8e3d401
9591c1163377dd0a4aec96dd92baa43f9a109252
fix: don't show panic traces for non-official builds (#28931) Don't show panic trace URLs during development. `panic-trace` feature is only enabled in CI.
[ { "path": ".github/workflows/ci.generate.ts", "patch": "@@ -701,13 +701,13 @@ const ci = {\n name: \"Check tracing build\",\n if:\n \"matrix.job == 'test' && matrix.profile == 'debug' && matrix.os == 'linux' && matrix.arch == 'x86_64'\",\n- run: \"cargo check -p deno...
2025-04-18T15:37:48
mrdoob/three.js
ebbaecf9acacf259ea9abdcba7b6fb25cfcea2ab
4e121457e308bda0b060623f30e257c691d30ff8
Remove outdated setting of focal length in examples (#26460) * Fix setting focal length in effects_anaglyphy example * Update * Remove instead
[ { "path": "examples/webgl_effects_anaglyph.html", "patch": "@@ -53,7 +53,6 @@\n \n \t\t\t\tcamera = new THREE.PerspectiveCamera( 60, window.innerWidth / window.innerHeight, 0.01, 100 );\n \t\t\t\tcamera.position.z = 3;\n-\t\t\t\tcamera.focalLength = 3;\n \n \t\t\t\tconst path = 'textures/cube/pisa/';\n \t\t...
2023-07-19T07:56:41
golang/go
f4de2ecffb9c107e6058c1ebb30c68de1157f5c6
ce46c9db867fb54a9c1f39b73ac8c2f339ca0587
cmd/compile/internal/walk: convert composite literals to interfaces without allocating Today, this interface conversion causes the struct literal to be heap allocated: var sink any func example1() { sink = S{1, 1} } For basic literals like integers that are directly used in an interface conversi...
[ { "path": "src/cmd/compile/internal/walk/order.go", "patch": "@@ -226,7 +226,8 @@ func (o *orderState) addrTemp(n ir.Node) ir.Node {\n \t// for the implicit conversion of \"foo\" to any, and we can't handle\n \t// the relocations in that temp.\n \tif n.Op() == ir.ONIL || (n.Op() == ir.OLITERAL && !base.Ctxt...
2025-02-14T04:49:50
denoland/deno
0bb16651c0b71cb98c820148bd52f0aceaafa012
4f7117a081f47cc68c3c554661fdc11859c808be
chore(lsp): fix semantic cache cleanup exemptions (#28951)
[ { "path": "cli/tsc/98_lsp.js", "patch": "@@ -205,7 +205,7 @@ const documentRegistry = {\n SOURCE_REF_COUNTS.delete(path);\n // We call `cleanupSemanticCache` for other purposes, don't bust the\n // source cache in this case.\n- if (LAST_REQUEST_METHOD.get() != \"cleanupSemanticCache\"...
2025-04-18T01:17:00
mrdoob/three.js
54119baad47ab11bb21047b21b3d53fcc1259fcf
b2fea4856fa86a046889237faabf39d5675c6d9b
WebGPURenderer: Add BumpMapNode (#26449) * Add BumpMapNode * fix default position view
[ { "path": "examples/jsm/nodes/accessors/ExtendedMaterialNode.js", "patch": "@@ -4,6 +4,7 @@ import MaterialNode from './MaterialNode.js';\n import { materialReference } from './MaterialReferenceNode.js';\n import { normalView } from './NormalNode.js';\n import { normalMap } from '../display/NormalMapNode.js...
2023-07-18T17:04:58
golang/go
ce46c9db867fb54a9c1f39b73ac8c2f339ca0587
d327e52d438854acae275cdf9d2c1fe42f037eb8
internal/godebug,crypto/fips140: make fips140 setting immutable Updates #70123 Co-authored-by: qmuntal <quimmuntal@gmail.com> Change-Id: I6a6a4656fd23ecd82428cccbd7c48692287fc75a Reviewed-on: https://go-review.googlesource.com/c/go/+/657116 Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> Reviewed-by: Roland S...
[ { "path": "src/crypto/fips140/fips140.go", "patch": "@@ -7,11 +7,8 @@ package fips140\n import (\n \t\"crypto/internal/fips140\"\n \t\"crypto/internal/fips140/check\"\n-\t\"internal/godebug\"\n )\n \n-var fips140GODEBUG = godebug.New(\"fips140\")\n-\n // Enabled reports whether the cryptography libraries ar...
2025-03-12T17:02:39
denoland/deno
c12709196ce469d9a1d541c9ba61a96f5586a871
560e8cf0e3197a9508039694cfba9b32f92723c3
fix: support vsock in DENO_SERVE_ADDRESS (#28941)
[ { "path": "cli/args/flags.rs", "patch": "@@ -1195,6 +1195,7 @@ static ENV_VARIABLES_HELP: &str = cstr!(\n <g>DENO_NO_PACKAGE_JSON</> Disables auto-resolution of package.json\n <g>DENO_NO_UPDATE_CHECK</> Set to disable checking if a newer Deno version is available\n <g>DENO_SERVE_ADDRESS</> Ove...
2025-04-17T11:49:47
mrdoob/three.js
7b8a8e7ef1c49a82484d87d161cef6a3ade05454
83e47f44e89abc020ba573c488d6229907ca5840
DataTextureLoader: fix promise never rejected on error (#26412)
[ { "path": "src/loaders/DataTextureLoader.js", "patch": "@@ -32,7 +32,7 @@ class DataTextureLoader extends Loader {\n \n \t\t\tconst texData = scope.parse( buffer );\n \n-\t\t\tif ( ! texData ) return;\n+\t\t\tif ( ! texData ) return onError();\n \n \t\t\tif ( texData.image !== undefined ) {\n ", "additi...
2023-07-18T08:41:35
golang/go
d6c29c71562df407cc18846efd2e9d8fe0b28960
a21b71daf57a54a12c2aedff0fba0860fa977590
cmd/compile: fix offset calculation error in memcombine Fixes #73812 Change-Id: If7a6e103ae9e1442a2cf4a3c6b1270b6a1887196 Reviewed-on: https://go-review.googlesource.com/c/go/+/675175 Reviewed-by: Keith Randall <khr@google.com> Auto-Submit: Junyang Shao <shaojunyang@google.com> Reviewed-by: Keith Randall <khr@golang....
[ { "path": "src/cmd/compile/internal/ssa/memcombine.go", "patch": "@@ -581,7 +581,7 @@ func combineStores(root *Value) {\n \t\t\tmask := int64(1)<<(8*a[i].size) - 1\n \t\t\ts := 8 * (a[i].offset - a[0].offset)\n \t\t\tif root.Block.Func.Config.BigEndian {\n-\t\t\t\ts = aTotalSize*8 - a[i].size - s\n+\t\t\t\t...
2025-05-21T18:50:39
denoland/deno
016b02d374094d14132ee0ae36893db694e7fd4c
e12d9b49467cf116375f6f4c3ec44293bd2eb5ad
fix(ext/node): add `assert` property to test context object (#28904)
[ { "path": "ext/node/polyfills/testing.ts", "patch": "@@ -4,10 +4,44 @@ import { primordials } from \"ext:core/mod.js\";\n const {\n PromisePrototypeThen,\n ArrayPrototypePush,\n+ ArrayPrototypeForEach,\n SafePromiseAll,\n SafePromisePrototypeFinally,\n } = primordials;\n import { notImplemented, wa...
2025-04-17T05:32:48
mrdoob/three.js
a3c4192845091aa1853380c2b9668ca5b9b7c00d
9abfda6c96130ec043687444b6eed31435d674f2
WebGLRenderer: Fix setRenderTarget()'s activeMipmapLevel (#26347) * Ability to set the mip levels of a texture as a render target * Render to texture's mip levels example * Render to texture's mip levels example: added a screenshot, fixed errors * Render to texture's mip levels example: added the example to j...
[ { "path": "examples/files.json", "patch": "@@ -142,6 +142,7 @@\n \t\t\"webgl_materials_cubemap_dynamic\",\n \t\t\"webgl_materials_cubemap_refraction\",\n \t\t\"webgl_materials_cubemap_mipmaps\",\n+\t\t\"webgl_materials_cubemap_render_to_mipmaps\",\n \t\t\"webgl_materials_curvature\",\n \t\t\"webgl_materials...
2023-07-18T08:29:06
golang/go
c5a1fc1f97b4b6b384a9852d96a77868e0f5e6a9
a731955f0f48b9d1e74ea3aa65f8485388a2849e
crypto/tls: add GetEncryptedClientHelloKeys This allows servers to rotate their ECH keys without needing to restart the server. Fixes #71920 Change-Id: I55591ab3303d5fde639038541c50edcf1fafc9aa Reviewed-on: https://go-review.googlesource.com/c/go/+/670655 TryBot-Bypass: Roland Shoemaker <roland@golang.org> Reviewed-...
[ { "path": "api/next/71920.txt", "patch": "@@ -0,0 +1 @@\n+pkg crypto/tls, type Config struct, GetEncryptedClientHelloKeys func(*ClientHelloInfo) ([]EncryptedClientHelloKey, error) #71920", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/c...
2025-05-07T18:37:52
denoland/deno
252ea8e289caa9150111af9f76a3ff8e3e9f4aea
bfbf9018f45b7ede17a21ec75e47d8e9e605f25d
fix: remove unnecessary whitespace in prompt function (#28868)
[ { "path": "runtime/js/41_prompt.js", "patch": "@@ -1,11 +1,8 @@\n // Copyright 2018-2025 the Deno authors. MIT license.\n import { core, primordials } from \"ext:core/mod.js\";\n import { op_read_line_prompt } from \"ext:core/ops\";\n-const {\n- ArrayPrototypePush,\n- StringPrototypeCharCodeAt,\n- Uint8A...
2025-04-16T17:49:06
mrdoob/three.js
4c90d7cd146b0953d968dd3d091d0fa09594bff5
1afa3ad0ce2707b6245902269602800a5c512c71
Docs: Clarify units for toCreasedAngle function (#26454) * Clarify units * fix bad docs merge
[ { "path": "docs/examples/en/utils/BufferGeometryUtils.html", "patch": "@@ -124,7 +124,7 @@ <h3>[method:BufferGeometry mergeVertices]( [param:BufferGeometry geometry], [par\n \t\t<h3>[method:BufferGeometry toCreasedNormals]( [param:BufferGeometry geometry], [param:Number creaseAngle] )</h3>\n \t\t<ul>\n \t\t...
2023-07-17T15:24:36
mrdoob/three.js
1afa3ad0ce2707b6245902269602800a5c512c71
9e580acef6b70780c40a9a2eb2e959d6b5f04c10
fix: toCreasedNormals(): call toNonIndexed() only on non-indexed geometries (#26379) * BufferGeometryUtils.toCreasedNormals(): call `toNonIndexed()` only on indexed geometries * update BufferGeometry.toCreasedNormals() documentation * BufferGeometry.toCreasedNormals() documentation: use more common HTML formatti...
[ { "path": "docs/examples/en/utils/BufferGeometryUtils.html", "patch": "@@ -122,11 +122,19 @@ <h3>[method:BufferGeometry mergeVertices]( [param:BufferGeometry geometry], [par\n \t\t</p>\n \n \t\t<h3>[method:BufferGeometry toCreasedNormals]( [param:BufferGeometry geometry], [param:Number creaseAngle] )</h3>\n...
2023-07-17T12:52:29
denoland/deno
bfbf9018f45b7ede17a21ec75e47d8e9e605f25d
066a205d5f4143dde665751bc18ac4411436d4e8
fix(task): document source of tasks, fix punctuation (#28413) Signed-off-by: Dan Dascalescu <ddascalescu+github@gmail.com>
[ { "path": "cli/args/flags.rs", "patch": "@@ -3102,13 +3102,13 @@ fn task_subcommand() -> Command {\n command(\n \"task\",\n cstr!(\n- \"Run a task defined in the configuration file.\n+ \"Run a task defined in the configuration file:\n <p(245)>deno task build</>\n \n-List all available ...
2025-04-16T17:29:31
golang/go
77345f41ee36c8db3ba7e0f687a8834fa7b83c48
ed24bb4e6047890af272733c5a8bdcc43834e517
internal/trace: skip clock snapshot checks on Windows in stress mode Windows' monotonic and wall clock granularity is just too coarse to get reasonable values out of stress mode, which is creating new trace generations constantly. Fixes #73813. Change-Id: Id9cb2fed9775ce8d78a736d0164daa7bf45075e0 Reviewed-on: https:...
[ { "path": "src/internal/trace/reader_test.go", "patch": "@@ -42,7 +42,9 @@ func TestReaderGolden(t *testing.T) {\n \t\t\tif err != nil {\n \t\t\t\tt.Fatalf(\"failed to parse test file at %s: %v\", testPath, err)\n \t\t\t}\n-\t\t\ttestReader(t, tr, ver, exp)\n+\t\t\tv := testtrace.NewValidator()\n+\t\t\tv.Go...
2025-05-21T17:50:15
mrdoob/three.js
3166056814b17af70954027fbd2dc2805b7d7ada
05fff51070f1ab3db9fee398981468478dd47bb9
WebGPURenderer: Add DepthTexture.compareFunction (#26420) * WebGPURenderer: Add DepthTexture.compareFunction * Update webgpu_audio_processing.html * Add createBindingsLayout() * fix fog * cleanup * fix fog * Cleanup getTextureCompare * fix conflict * Added normalBias * AnalyticLightNode: Ad...
[ { "path": "examples/jsm/nodes/accessors/TextureNode.js", "patch": "@@ -5,19 +5,20 @@ import { colorSpaceToLinear } from '../display/ColorSpaceNode.js';\n import { context } from '../core/ContextNode.js';\n import { expression } from '../code/ExpressionNode.js';\n import { addNodeClass } from '../core/Node.j...
2023-07-16T22:08:58
denoland/deno
1820fee42797fedc4fd67f7614a9a65c9252965f
202f5f39108159f21a6c85c4a91a7d5f61bd23e8
docs: fix DENO_TLS_CA_STORE help text (#28124)
[ { "path": "cli/args/flags.rs", "patch": "@@ -1196,9 +1196,8 @@ static ENV_VARIABLES_HELP: &str = cstr!(\n <g>DENO_NO_UPDATE_CHECK</> Set to disable checking if a newer Deno version is available\n <g>DENO_SERVE_ADDRESS</> Override address for Deno.serve\n <g>DENO_TLS_CA_STORE</> Comma-separa...
2025-04-16T17:18:01
golang/go
ed24bb4e6047890af272733c5a8bdcc43834e517
e89791983a1330e467c8ba2cca9d7a581a5789cc
cmd/compile/internal/escape: propagate constants to interface conversions to avoid allocs Currently, the integer value in the following interface conversion gets heap allocated: v := 1000 fmt.Println(v) In contrast, this conversion does not currently cause the integer value to be heap allocated: fmt.Printl...
[ { "path": "src/cmd/compile/internal/escape/escape.go", "patch": "@@ -531,8 +531,11 @@ func (b *batch) rewriteWithLiterals(n ir.Node, fn *ir.Func) {\n \tif n == nil || fn == nil {\n \t\treturn\n \t}\n-\tif n.Op() != ir.OMAKESLICE {\n-\t\t// TODO(thepudds): we handle more cases later in our CL stack.\n+\tif n...
2025-02-12T23:55:04
mrdoob/three.js
3a21afde31ad649a18b61d9f3574c15a3a3bba47
dbb030b7c80c28ffbf2790c2512be7740b71b0da
HemisphereLightNode: Fix construct() call (#26441)
[ { "path": "examples/jsm/nodes/lighting/HemisphereLightNode.js", "patch": "@@ -33,7 +33,7 @@ class HemisphereLightNode extends AnalyticLightNode {\n \n \t}\n \n-\tgenerate( builder ) {\n+\tconstruct( builder ) {\n \n \t\tconst { colorNode, groundColorNode, lightDirectionNode } = this;\n ", "additions": 1...
2023-07-16T17:20:11
denoland/deno
a5b407c390de99afc998c998a56b133d204651cd
302a5dd12a023368c2903e055a114fe59b81f29b
chore: make node test-process-cpuUsage pass (#28912) We used a different error message by referring to the first parameter as `previousValue` instead of `prevValue`. Node uses `prevValue` in the error message.
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -168,19 +168,19 @@ export function cpuUsage(previousValue?: CpuUsage): CpuUsage {\n \n if (previousValue) {\n if (!previousCpuUsageValueIsValid(previousValue.user)) {\n- validateObject(previousValue, \"previousValue\");\n+ validateObjec...
2025-04-16T06:28:18
golang/go
3ae95aafb5d656596212c672c6e104e5c8802dbc
ce49eb488af1c5273b226b3b52a8cbd7eae63a51
log/slog: add GroupAttrs GroupAttrs is a more efficient version of Group that takes a slice of Attr values. Fixes #66365 Change-Id: Ic3046704825e17098f2fea5751f2959dce1073e2 Reviewed-on: https://go-review.googlesource.com/c/go/+/672915 Reviewed-by: Jonathan Amsterdam <jba@google.com> LUCI-TryBot-Result: Go LUCI <gol...
[ { "path": "api/next/66365.txt", "patch": "@@ -0,0 +1 @@\n+pkg log/slog, func GroupAttrs(string, ...Attr) Attr #66365", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/log/slog/66365.md", "patch": "@@ -0,0 +1 @@\n+[GroupAttrs] creates ...
2025-05-14T20:26:57
mrdoob/three.js
f72dc50895e9469502a558ab6c00351bb20de8cf
b21c398908b174c30b336241e859274f36493c24
Fix reference to params.viewOffsetX (#26433)
[ { "path": "examples/webgl_postprocessing_ssaa.html", "patch": "@@ -185,7 +185,7 @@\n \t\t\t\tconst aspect = width / height;\n \n \t\t\t\tcameraP.aspect = aspect;\n-\t\t\t\tcameraP.setViewOffset( width, height, params.viewOffset, 0, width, height );\n+\t\t\t\tcameraP.setViewOffset( width, height, params.view...
2023-07-15T07:57:56
denoland/deno
302a5dd12a023368c2903e055a114fe59b81f29b
27651d3c774dc3b8fc1f0075bc9ab803b5514b6e
fix: resolve shebang parse error in deno doc --test (#26079) The bug has been fixed by updating the regex to ensure that the shebang characters (#!) are no longer excluded. This allows the shebang to be retained and parsed correctly. --------- Co-authored-by: David Sherret <dsherret@users.noreply.github.com>
[ { "path": "cli/util/extract.rs", "patch": "@@ -103,7 +103,7 @@ fn extract_files_from_fenced_blocks(\n // or not by checking for the presence of capturing groups in the matches.\n let blocks_regex =\n lazy_regex::regex!(r\"(?s)<!--.*?-->|```([^\\r\\n]*)\\r?\\n([\\S\\s]*?)```\");\n- let lines_regex =...
2025-04-16T04:56:04
golang/go
304d9e2fd1b62d236eb48ec838be3680cb7845e6
d3d22cc5e4be996345e47d6994c5f3d5f51811fa
bufio: update buffer documentation Fixes #73778 Change-Id: If6d87a92786c9b0ee2bd790b57937919afe0fc5c GitHub-Last-Rev: 4b4c7595d5779a127b01a5d71adca91cb5aa6c05 GitHub-Pull-Request: golang/go#73804 Reviewed-on: https://go-review.googlesource.com/c/go/+/674695 Auto-Submit: Alan Donovan <adonovan@google.com> LUCI-TryBot-...
[ { "path": "src/bufio/scan.go", "patch": "@@ -260,8 +260,11 @@ func (s *Scanner) setErr(err error) {\n \t}\n }\n \n-// Buffer sets the initial buffer to use when scanning\n+// Buffer controls memory allocation by the Scanner.\n+// It sets the initial buffer to use when scanning\n // and the maximum size of b...
2025-05-21T14:48:21
mrdoob/three.js
6aff9a66af4c4e97443cf4dc4a719daa6be98e82
6169e48e150378fcc19d9751b04fc24c2a67c193
WebGPURenderer: Fix Fog ColorSpace (#26424) * fix fog * fix fog
[ { "path": "examples/jsm/nodes/materials/NodeMaterial.js", "patch": "@@ -319,6 +319,12 @@ class NodeMaterial extends ShaderMaterial {\n \n \t\t}\n \n+\t\t// FOG\n+\n+\t\tconst fogNode = builder.fogNode;\n+\n+\t\tif ( fogNode ) outputNode = vec4( fogNode.mixAssign( outputNode.rgb ), outputNode.a );\n+\n \t\t/...
2023-07-14T18:51:17
denoland/deno
9b2c02fc290b7d6f9083c9062274c7ba0ca4a072
3071aa2759a6092fcd56b06eee63303aa3425df0
fix(install/global): do not append `bin` to `DENO_INSTALL_ROOT` when ends with `bin` (#26446) This PR fixes the issue where the PathBuf appends /bin even if bin dir already exists referenced in this issue
[ { "path": "cli/tools/installer.rs", "patch": "@@ -115,6 +115,23 @@ exec deno {} \"$@\"\n Ok(())\n }\n \n+fn get_installer_bin_dir(\n+ cwd: &Path,\n+ root_flag: Option<&str>,\n+) -> Result<PathBuf, AnyError> {\n+ let root = if let Some(root) = root_flag {\n+ canonicalize_path_maybe_not_exists(&cwd.jo...
2025-04-15T21:31:28
golang/go
d3d22cc5e4be996345e47d6994c5f3d5f51811fa
419367969c88e6e97f8648669969a01b60bdd350
lib/fips140: set inprocess.txt to v1.0.0 Fixes #70200 Change-Id: I6a6a46567ce0834fb4b7f28bf06646326f8e5105 Reviewed-on: https://go-review.googlesource.com/c/go/+/674916 Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> Auto-Submit: Filippo Valsorda <filippo@golang.org> Reviewed-by: Roland Shoemaker <roland@gola...
[ { "path": "lib/fips140/inprocess.txt", "patch": "@@ -0,0 +1 @@\n+v1.0.0", "additions": 1, "deletions": 0, "language": "Plain Text" } ]
2025-05-21T12:41:28
mrdoob/three.js
e47e4c64dd7a0da0cdf557ccca5b9d6024fdc00e
8160b0a2b0efaf5ada951c6f5b9b75862d8b7b6d
WebGPURenderer: Not crash if texture is not supported (#26423)
[ { "path": "examples/jsm/renderers/webgpu/utils/WebGPUTextureUtils.js", "patch": "@@ -144,6 +144,14 @@ class WebGPUTextureUtils {\n \n \t\t} else {\n \n+\t\t\tif ( format === undefined ) {\n+\n+\t\t\t\tconsole.warn( 'WebGPURenderer: Texture format not supported.' );\n+\n+\t\t\t\treturn this.createDefaultText...
2023-07-14T14:31:29
denoland/deno
5867988bae5f71cfc6031a3d13fd8835f28f0049
a5d39b085dd89a68432117940081f5751dec37c0
fix(ext/node): Fix `Writable.toWeb()` (#28914) Fixes https://github.com/denoland/deno/issues/28905
[ { "path": "ext/node/polyfills/internal/webstreams/adapters.js", "patch": "@@ -627,7 +627,7 @@ export function newWritableStreamFromStreamWritable(streamWritable) {\n \n async write(chunk) {\n if (streamWritable.writableNeedDrain || !streamWritable.write(chunk)) {\n- backpressurePromise = cr...
2025-04-15T18:10:48
golang/go
e6dacf91ffb0a356aa692ab5c46411e2eef913f3
f12c66fbed546645389cf184b0e2ffd6ad9f78ec
runtime: use cgroup CPU limit to set GOMAXPROCS This CL adds two related features enabled by default via compatibility GODEBUGs containermaxprocs and updatemaxprocs. On Linux, containermaxprocs makes the Go runtime consider cgroup CPU bandwidth limits (quota/period) when setting GOMAXPROCS. If the cgroup limit is low...
[ { "path": "api/next/73193.txt", "patch": "@@ -0,0 +1 @@\n+pkg runtime, func SetDefaultGOMAXPROCS() #73193", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/godebug.md", "patch": "@@ -169,6 +169,17 @@ Go command will follow symlinks to regular files embeddin...
2025-05-05T17:44:26
mrdoob/three.js
bc5ac6c9a677496b81c3d81df1fac51a97ac2ffb
8155acdff312cb904e64201814c847afc82771ec
Fix GUI title in webgl_postprocessing_afterimage (#26421)
[ { "path": "examples/webgl_postprocessing_afterimage.html", "patch": "@@ -94,7 +94,7 @@\n \n \t\t\tfunction createGUI() {\n \n-\t\t\t\tconst gui = new GUI( { name: 'Damp setting' } );\n+\t\t\t\tconst gui = new GUI( { title: 'Damp setting' } );\n \t\t\t\tgui.add( afterimagePass.uniforms[ 'damp' ], 'value', 0,...
2023-07-14T09:08:15
denoland/deno
6a3db6ce47d602f46330d03f31c2ced192430fe0
c539e20f9fb39a3f0dad15768a1e03730baacb3b
fix: better cjs vs esm module detection and upgrade swc (#28810) Upgrades swc. * https://github.com/swc-project/swc/issues/10109 * https://github.com/denoland/deno_ast/pull/299 * https://github.com/denoland/deno_ast/pull/294 * https://github.com/denoland/deno_ast/pull/300 * https://github.com/denoland/deno/commit/c82...
[ { "path": "Cargo.lock", "patch": "@@ -1589,11 +1589,11 @@ dependencies = [\n \n [[package]]\n name = \"deno_ast\"\n-version = \"0.46.2\"\n+version = \"0.46.5\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"b5700894f83f8d6a7507ed0667b27b812afbfe9bfdfd4d574191023a9c8c3a11...
2025-04-15T17:21:29
mrdoob/three.js
8155acdff312cb904e64201814c847afc82771ec
986e89816f8b84855d86e98c2ebe9499ef4e1b8b
WebGPURenderer: Revert and fix updateBefore() - (2) (#26422) * Renderer: Revert and fix updateBefore() - (2) * simplifies parameters * Add scene.onBeforeRender() and scene.onAfterRender() callback
[ { "path": "examples/jsm/renderers/common/Renderer.js", "patch": "@@ -250,6 +250,10 @@ class Renderer {\n \n \t\t//\n \n+\t\tsceneRef.onBeforeRender( this, scene, camera, renderTarget );\n+\n+\t\t//\n+\n \t\t_projScreenMatrix.multiplyMatrices( camera.projectionMatrix, camera.matrixWorldInverse );\n \t\t_frus...
2023-07-14T03:34:47
golang/go
40b19b56a94c4d53a3c1d98275df44049b2f5917
2a5ac1a993efc463efdce7996efd356dabf03a25
runtime: add valgrind instrumentation Add build tag gated Valgrind annotations to the runtime which let it understand how the runtime manages memory. This allows for Go binaries to be run under Valgrind without emitting spurious errors. Instead of adding the Valgrind headers to the tree, and using cgo to call the var...
[ { "path": "src/os/pidfd_linux.go", "patch": "@@ -170,7 +170,10 @@ func checkPidfd() error {\n \n \t// Check waitid(P_PIDFD) works.\n \terr = ignoringEINTR(func() error {\n-\t\treturn unix.Waitid(unix.P_PIDFD, int(fd), nil, syscall.WEXITED, nil)\n+\t\tvar info unix.SiginfoChild\n+\t\t// We don't actually car...
2025-03-22T00:58:55
denoland/deno
c539e20f9fb39a3f0dad15768a1e03730baacb3b
8908ec31bfd7d703f159b1d28c33d9f10d5c833f
fix(npm): panic when using tag with patched package (#28900)
[ { "path": "Cargo.lock", "patch": "@@ -2337,9 +2337,9 @@ dependencies = [\n \n [[package]]\n name = \"deno_npm\"\n-version = \"0.31.0\"\n+version = \"0.31.1\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"352510920cdb72896495893f9baa344175df4f9317a24858c3c224a58f6f8d2d\"...
2025-04-15T04:08:47
mrdoob/three.js
6710c984785a9f53e9910cfb109797239daa1966
42f3f520f6523a4f0f02185aed0d73ed450b0a91
WebGPURenderer: Fix and slightly better performance (#26417)
[ { "path": "examples/jsm/renderers/common/Renderer.js", "patch": "@@ -822,6 +822,12 @@ class Renderer {\n \n \t}\n \n+\t_getRenderObject( object, material, scene, camera, lightsNode, passId ) {\n+\n+\t\treturn this._objects.get( object, material, scene, camera, lightsNode, this._currentRenderContext, passId ...
2023-07-12T20:34:55
golang/go
8b45a3f78b178ce66f419038a664cbd6a82ada54
896097000912761dbd31cead2bec99f17534f521
runtime: guarantee checkfinalizers test allocates in a shared tiny block Currently the checkfinalizers test (TestDetectCleanupOrFinalizerLeak) only *tries* to ensure the tiny alloc with a cleanup attached shares a block with other objects. However, what it does is insufficient, because it could get unlucky and have th...
[ { "path": "src/runtime/malloc.go", "patch": "@@ -1672,7 +1672,10 @@ func postMallocgcDebug(x unsafe.Pointer, elemsize uintptr, typ *_type) {\n \t}\n \n \t// N.B. elemsize == 0 indicates a tiny allocation, since no new slot was\n-\t// allocated to fulfill this call to mallocgc.\n+\t// allocated to fulfill th...
2025-05-20T20:26:56
mrdoob/three.js
98e4fc81dc8e8318bc84081af706a489cc964ceb
b08acb89c570cd8e12c357145a7fd7086ccb32a8
OrbitControls: Add zoom to cursor (#26165) * Add initial support for zoom to cursor * simplify implementation, remove ortho special case * Handle mouse dolly * Support planar movement, add gui option * Use relative positioning * Fix ortho camera zooming * auto disable zoom to cursor * Handle incor...
[ { "path": "examples/jsm/controls/OrbitControls.js", "patch": "@@ -5,7 +5,10 @@ import {\n \tSpherical,\n \tTOUCH,\n \tVector2,\n-\tVector3\n+\tVector3,\n+\tPlane,\n+\tRay,\n+\tMathUtils\n } from 'three';\n \n // OrbitControls performs orbiting, dollying (zooming), and panning.\n@@ -18,6 +21,9 @@ import {\n ...
2023-07-10T10:29:00
denoland/deno
914549292ecd9fde1abd9c2dcad9e2fc06de32cc
01b6da9d9bfc37b0be5b296043f32acf4ba98488
fix(install): read extra package info from node_modules and fallback to registry (#28893) Fixes #28891 We were checking if the node_modules entry for the package was present, but then reading from the global cache. Instead, read from the package.json in node_modules. As a fallback(which in theory should only really ...
[ { "path": "cli/npm/installer/common/lifecycle_scripts.rs", "patch": "@@ -439,6 +439,7 @@ async fn resolve_custom_commands_from_packages<\n let Ok(extra) = provider\n .get_package_extra_info(\n &package.id.nv,\n+ &package_path,\n super::ExpectedExtraInfo::from_packa...
2025-04-14T19:32:27
golang/go
4ce1c8e9e1aab695bb0da506f2de336a5caa81f6
0810fd2d9282dda12532e249c931b36a2d2526ed
cmd/compile: add rules about ORN and ANDN Reduce the number of go toolchain instructions on loong64 as follows. file before after Δ % addr2line 279880 279776 -104 -0.0372% asm 556638 556410 -228 -0.0410% buildid 272272 272072 -200 -0.0735% cgo 4815...
[ { "path": "src/cmd/compile/internal/loong64/ssa.go", "patch": "@@ -165,6 +165,8 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tssa.OpLOONG64OR,\n \t\tssa.OpLOONG64XOR,\n \t\tssa.OpLOONG64NOR,\n+\t\tssa.OpLOONG64ANDN,\n+\t\tssa.OpLOONG64ORN,\n \t\tssa.OpLOONG64SLL,\n \t\tssa.OpLOONG64SLLV,\n \t\t...
2025-05-20T02:28:17
mrdoob/three.js
b08acb89c570cd8e12c357145a7fd7086ccb32a8
1bb77a707fa57401f6cbd8e7dc192353b37c1441
change error to warning and reword a bit (#26386)
[ { "path": "src/animation/PropertyBinding.js", "patch": "@@ -436,7 +436,7 @@ class PropertyBinding {\n \t\t// ensure there is a value node\n \t\tif ( ! targetObject ) {\n \n-\t\t\tconsole.error( 'THREE.PropertyBinding: Trying to update node for track: ' + this.path + ' but it wasn\\'t found.' );\n+\t\t\tcons...
2023-07-10T08:58:25
golang/go
0d7dc6842b3de170fcc8c72aa4380269b8f21f80
0375edd901f2807af29af95f60a06065c489708c
cmd/internal/obj/riscv: fix vector integer multiply add The RISC-V integer vector multiply add instructions are not encoded correctly; the first and second arguments are swapped. For example, the instruction VMACCVV V1, V2, V3 encodes to b620a1d7 or vmacc.vv v3,v1,v2 and not b61121d7 or vmacc.vv v3,v2,v1 as expe...
[ { "path": "src/cmd/asm/internal/asm/testdata/riscv64.s", "patch": "@@ -830,38 +830,38 @@ start:\n \tVWMULSUVX\tX10, V2, V0, V3\t\t\t// d76125e8\n \n \t// 31.11.13: Vector Single-Width Integer Multiply-Add Instructions\n-\tVMACCVV\t\tV1, V2, V3\t\t\t// d7a120b6\n-\tVMACCVV\t\tV1, V2, V0, V3\t\t\t// d7a120b4\...
2025-05-06T12:07:09
mrdoob/three.js
1bb77a707fa57401f6cbd8e7dc192353b37c1441
0298823957859cb905248f92db971d4aa954bb01
fix some of the lint-addons warnings and errors (#26388)
[ { "path": "examples/jsm/loaders/FBXLoader.js", "patch": "@@ -1270,7 +1270,7 @@ class FBXTreeParser {\n \n \t\t} else {\n \n-\t\t\tmaterial = new MeshPhongMaterial( { \n+\t\t\tmaterial = new MeshPhongMaterial( {\n \t\t\t\tname: Loader.DEFAULT_MATERIAL_NAME,\n \t\t\t\tcolor: 0xcccccc\n \t\t\t} );", "addit...
2023-07-10T08:56:28
denoland/deno
01b6da9d9bfc37b0be5b296043f32acf4ba98488
6e49a4b3bdc21f8ee38eda8a355958cb31c254fa
fix(ext/node): upgrade `node:stream` (#28855) Ref https://github.com/denoland/deno/issues/28836 This PR replaces the _stream.mjs bundle with a file-by-file port instead. A codemod transpiles Node.js internals to ESM. The codemod performs three tasks: translating CJS to ESM, remapping internal dependencies, and hoisti...
[ { "path": "ext/node/lib.rs", "patch": "@@ -541,7 +541,6 @@ deno_core::extension!(deno_node,\n \"_process/process.ts\",\n \"_process/streams.mjs\",\n \"_readline.mjs\",\n- \"_stream.mjs\",\n \"_util/_util_callbackify.js\",\n \"_util/asserts.ts\",\n \"_util/async.ts\",\n@@ -634,12 +...
2025-04-14T16:05:34
golang/go
0375edd901f2807af29af95f60a06065c489708c
7f806c1052aa919c1c195a5b2223626beab2495c
os: skip TestOpenFileCreateExclDanglingSymlink when no symlinks Skip this test on plan9, and any other platform that doesn't have symlinks. Fixes #73729 Change-Id: I8052db24ed54c3361530bd4f54c96c9d10c4714c Reviewed-on: https://go-review.googlesource.com/c/go/+/674697 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-p...
[ { "path": "src/os/os_test.go", "patch": "@@ -2300,6 +2300,7 @@ func TestFilePermissions(t *testing.T) {\n }\n \n func TestOpenFileCreateExclDanglingSymlink(t *testing.T) {\n+\ttestenv.MustHaveSymlink(t)\n \ttestMaybeRooted(t, func(t *testing.T, r *Root) {\n \t\tconst link = \"link\"\n \t\tif err := Symlink(...
2025-05-21T00:02:11
mrdoob/three.js
1a4f54bcccd7d56318f045fab3ea15797916fa32
7558e9745516687c49e40c44d545268665b8ea8e
WebGPUPipelines: Improve reuse pipeline and ComputeNode dispose (#26361) * WebGPUPipelines: Reuse cache * ComputeNode: Add .needsUpdate * fix definition used in tests * ComputeNode: Added .dispose()
[ { "path": "examples/jsm/nodes/core/Node.js", "patch": "@@ -1,3 +1,4 @@\n+import { EventDispatcher } from 'three';\n import { NodeUpdateType } from './constants.js';\n import { getNodeChildren, getCacheKey } from './NodeUtils.js';\n import { MathUtils } from 'three';\n@@ -6,11 +7,11 @@ const NodeClasses = ne...
2023-07-10T04:39:00
mrdoob/three.js
d7edc95147163a2ea17dfc68bee2cb5636de0f70
3e0a5739d948597f29af47597c034402ceddf125
WebGPUBackend: Fix Depth Buffer (#26395) * WebGPUBackend: Fix depthBuffer * cleanup * revision
[ { "path": "examples/jsm/renderers/common/RenderContexts.js", "patch": "@@ -38,7 +38,7 @@ class RenderContexts {\n \n \tdispose() {\n \n-\t\tthis.renderStates = new ChainMap();\n+\t\tthis.chainMaps = {};\n \n \t}\n ", "additions": 1, "deletions": 1, "language": "JavaScript" }, { "path": "...
2023-07-09T01:48:15
golang/go
d37a1bdd48458e48de13cdc320c8ddf9b021e356
74304cda29381fd5ba07a4090b701f8a670896c6
cmd/compile: fix the implementation of NORconst on loong64 In the loong64 instruction set, there is no NORI instruction, so the immediate value in NORconst need to be stored in register and then use the three-register NOR instruction. Change-Id: I5ef697450619317218cb3ef47fc07e238bdc2139 Reviewed-on: https://go-review...
[ { "path": "src/cmd/compile/internal/loong64/ssa.go", "patch": "@@ -276,7 +276,6 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tssa.OpLOONG64ANDconst,\n \t\tssa.OpLOONG64ORconst,\n \t\tssa.OpLOONG64XORconst,\n-\t\tssa.OpLOONG64NORconst,\n \t\tssa.OpLOONG64SLLconst,\n \t\tssa.OpLOONG64SLLVconst,\n...
2025-05-19T09:02:48