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
golang/go
9d5d6af2d5bb4128f7e0759434a44839898c39a2
f26befb380e7b0a5e8c083cacfcd141b4c2d413a
net/http: make ResponseWriter.ReadFrom respect declared Content-Length Unlike ResponseWriter.Write, ResponseWriter.ReadFrom does not currently respect declared Content-Length header. As a result, it is possible for a server handler to inadvertently write more bytes for their response body than has been declared via Co...
[ { "path": "src/net/http/serve_test.go", "patch": "@@ -1612,6 +1612,65 @@ func testHeadReaderFrom(t *testing.T, mode testMode) {\n \t}\n }\n \n+// Ensure ResponseWriter.ReadFrom respects declared Content-Length header.\n+// https://go.dev/issue/78179.\n+func TestReaderFromTooLong(t *testing.T) { run(t, testR...
2026-03-17T01:20:11
mrdoob/three.js
e85cce9f4fca0af97409bde1fc9d96bc5e8d0e3c
374b07c0cfdaecf2816912faecc8db464b7f6ab1
LensflareMesh: Fix DPR usage. (#32625)
[ { "path": "examples/jsm/objects/LensflareMesh.js", "patch": "@@ -215,7 +215,7 @@ class LensflareMesh extends Mesh {\n \n \t\t\trenderer.getViewport( viewport );\n \n-\t\t\tviewport.multiplyScalar( window.devicePixelRatio );\n+\t\t\tviewport.multiplyScalar( renderer.getPixelRatio() ).floor();\n \n \t\t\tcons...
2025-12-28T10:04:29
swiftlang/swift
f726098d044a81fa6de34bb137ed94ba8c09508d
594c32a89d9545b2a7eefc6748305f16c2fbfc85
Test: add test coverage for typed throws These tests help ensure recent fixes don't regress. rdar://130981481 rdar://142387547
[ { "path": "test/SIL/typed_throws_sil_crash.swift", "patch": "@@ -1,4 +1,4 @@\n-// RUN: %target-swift-frontend -module-name=test -emit-sil %s -enable-builtin-module\n+// RUN: %target-swift-frontend -sil-verify-all -module-name=test -emit-sil %s -enable-builtin-module\n \n import Builtin\n \n@@ -21,3 +21,112 ...
2026-03-26T17:39:30
tensorflow/tensorflow
2604111ca53114defb2a3d2987eaf564d5b8ad31
afe47aabab36a8ae6dd8895ef7763436e782d9f9
[XLA:GPU] Fix ReorderFilterAndBiasHloTest.TestCudnnReorderFilterAndBias And add an explicit check for input shape validity in CudnnSupport::CudnnReorderConvolutionFilterAndBias. In `cudnnReorderFilterAndBias` [1], `filterDesc` argument describes the shapes of both filter and bias, with the bias vector size being assu...
[ { "path": "third_party/xla/xla/stream_executor/cuda/cuda_dnn.cc", "patch": "@@ -6372,6 +6372,19 @@ absl::Status CudnnSupport::CudnnReorderConvolutionFilterAndBias(\n bool has_bias = bias_input.has_value();\n CHECK(!has_bias || bias_output.has_value());\n \n+ if (has_bias && filter_descriptor.output_fea...
2026-03-30T10:14:33
denoland/deno
49a9e1355f87028c8d648f9e58decd5fbd78c62c
301534307c61f21bf0185c2dcd981e27cfea8708
fix(ext/node): pass uid/gid to spawn and implement process.getgroups (#32772) Two fixes for child_process uid/gid support: 1. `uid` and `gid` options were destructured but not passed to `Deno.Command` in async `spawn()` (they were already passed in `spawnSync`). Also converts `PermissionDenied` errors to `EPERM` and ...
[ { "path": "ext/node/lib.rs", "patch": "@@ -272,6 +272,7 @@ deno_core::extension!(deno_node,\n ops::os::op_node_os_user_info,\n ops::os::op_geteuid,\n ops::os::op_getegid,\n+ ops::os::op_getgroups,\n ops::os::op_cpus,\n ops::os::op_homedir,\n op_node_build_os,", "additions": 1,...
2026-03-20T17:03:18
golang/go
f26befb380e7b0a5e8c083cacfcd141b4c2d413a
e1bc5cea825171f68f928686ed02a0d0abddd84c
net: avoid wrapping io.EOF in UnixConn read methods The io.Reader contract requires that Read methods return io.EOF directly instead of wrapping it in another error. Currently UnixConn.ReadFromUnix, ReadFrom, and ReadMsgUnix wrap io.EOF inside net.OpError, causing callers checking for io.EOF to fail. Fix by avoiding...
[ { "path": "doc/next/78137.md", "patch": "@@ -0,0 +1,2 @@\n+net: UnixConn read methods now return io.EOF directly instead of\r\n+wrapping it in net.OpError when the underlying read returns EOF.\n\\ No newline at end of file", "additions": 2, "deletions": 0, "language": "Markdown" }, { "pa...
2026-03-13T05:38:32
mrdoob/three.js
d73e1dc41a84e528b5d6936d17fd63db04e92cea
ebd979215be08343830214c9e6f0c25e4ddcb599
GLTFExporter: Fix skinIndex export for InterleavedBufferAttribute (#32607) Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "examples/jsm/exporters/GLTFExporter.js", "patch": "@@ -1852,12 +1852,12 @@ class GLTFWriter {\n \t\t\t\t! ( array instanceof Uint8Array ) ) {\n \n \t\t\t\tconsole.warn( 'GLTFExporter: Attribute \"skinIndex\" converted to type UNSIGNED_SHORT.' );\n-\t\t\t\tmodifiedAttribute = new BufferAttribute( ...
2025-12-27T10:42:14
swiftlang/swift
ec6bb44c74a303d853dd4329cb7a0290f08b3856
07e7a4e17bae2c518b25ebc68a7c2e54eac80ac4
stdlib: Adopt `#if os(anyAppleOS)`. Replace error prone and verbose compilation conditionals like ``` #if os(macOS) || os(iOS) || os(tvOS) || os(watchOS) || os(visionOS) ``` with ``` #if os(anyAppleOS) ```
[ { "path": "stdlib/private/StdlibUnittest/OpaqueIdentityFunctions.swift", "patch": "@@ -77,7 +77,7 @@ public func getFloat32(_ x: Float32) -> Float32 { return _opaqueIdentity(x) }\n @inline(never)\n public func getFloat64(_ x: Float64) -> Float64 { return _opaqueIdentity(x) }\n \n-#if !(os(Windows) || os(And...
2026-03-26T15:23:00
denoland/deno
301534307c61f21bf0185c2dcd981e27cfea8708
63550f02b759b018f883a7ee7cb285c6d7cb64ed
fix(ext/node): sqlite prepare() options, defensive default, iterator invalidation (#32756) Fixes 3 SQLite Node.js compat tests from #32706: - **`prepare()` options**: Support `readBigInts`, `returnArrays`, `allowBareNamedParameters`, and `allowUnknownNamedParameters` as second argument to `DatabaseSync.prepare(sql, o...
[ { "path": "ext/node_sqlite/database.rs", "patch": "@@ -276,7 +276,7 @@ impl Default for DatabaseSyncOptions {\n return_arrays: false,\n allow_bare_named_params: true,\n allow_unknown_named_params: false,\n- is_defensive_mode: false,\n+ is_defensive_mode: true,\n timeout: 0,...
2026-03-20T16:47:08
tensorflow/tensorflow
7dd4e9599955a687755f61964d9a644e945e1d9c
50012180da7528571bc843cb97e5ebc2c25ecd9a
PR #39417: [ROCm] Implement empty graph node support and safeguards for HIP command buffer Imported from GitHub PR https://github.com/openxla/xla/pull/39417 ## 📋 Summary of Changes - Implement `CreateEmptyNode` for the ROCm command buffer backend using `hipGraphAddEmptyNode`, enabling empty graph nodes to serve as ...
[ { "path": "third_party/xla/xla/stream_executor/gpu/gpu_command_buffer_test.cc", "patch": "@@ -787,6 +787,153 @@ static void BM_CreateCommandBuffer(benchmark::State& state) {\n \n BENCHMARK_SIZES(BM_CreateCommandBuffer);\n \n+// Tests that CreateEmptyCmd works: an empty node can be added to a command\n+// bu...
2026-03-30T09:24:18
mrdoob/three.js
ebd979215be08343830214c9e6f0c25e4ddcb599
0f580fc019cecacb405810159873bd142d7ac0e7
WebGLRenderer: bugfix when reading pixel in MRT (#32506)
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -2988,6 +2988,10 @@ class WebGLRenderer {\n \t\t\t\t\tconst textureFormat = texture.format;\n \t\t\t\t\tconst textureType = texture.type;\n \n+\t\t\t\t\t// when using MRT, select the correct color buffer for the subsequent read command\n+\n+\t\t\t\t\t...
2025-12-27T10:18:51
golang/go
e1bc5cea825171f68f928686ed02a0d0abddd84c
224489f11c2e0b394e93980fc8292c52f60b18a8
net/http/internal/http2: modernize the package This CL is mostly generated by running go fix. Manual edits have also been selectively done to modernize the package where doing so is straightforward; for example, using slices.Contains in lieu of strSliceContains. Change-Id: Ie2942481672c56c370e2df0f172cf3e480a12bc5 Re...
[ { "path": "src/net/http/internal/http2/client_conn_pool.go", "patch": "@@ -10,6 +10,7 @@ import (\n \t\"context\"\n \t\"errors\"\n \t\"net\"\n+\t\"slices\"\n \t\"sync\"\n )\n \n@@ -211,10 +212,8 @@ func (c *addConnCall) run(t *Transport, key string, nc net.Conn) {\n \n // p.mu must be held\n func (p *client...
2026-03-13T15:43:05
kubernetes/kubernetes
7052e379e4389ece3ebd321ce88b68a05b8fd2b8
a43c5ce06fc9c8fd8ae30e725f7a0c23ae6601dc
KEP-5284: optimize constrained impersonation cache key construction This change reduces allocations by: - Replacing cryptobyte.Builder with manual length-prefix encoding into []byte - Replacing fmt.Sprintf with hex.Encode/hex.AppendEncode - Using unsafe.String for safe []byte to string conversions Signed-off-by: Mon...
[ { "path": "staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation/cache.go", "patch": "@@ -18,11 +18,12 @@ package impersonation\n \n import (\n \t\"crypto/sha256\"\n+\t\"encoding/binary\"\n+\t\"encoding/hex\"\n \t\"fmt\"\n \t\"hash/fnv\"\n \t\"time\"\n-\n-\t\"golang.org/x/crypto/cryptobyte\"\n+\t...
2026-03-16T20:08:34
swiftlang/swift
4054018d9ee10c48ad0e1d9767e60a1f30005c26
ddf30110e0ac251ef8cd65a256a0b631447f8154
[TEST-ONLY] Fix tsan tests with new swift-driver After switching to new swift-driver, it is using clang to do the linking and clang doesn't support linking tsan on non-simulator apple platforms other than macOS. rdar://173364504
[ { "path": "validation-test/SILOptimizer/rdar133779160.swift", "patch": "@@ -1,7 +1,10 @@\n // RUN: %target-build-swift %s -sanitize=thread\n \n // REQUIRES: tsan_runtime\n-// UNSUPPORTED: OS=ios && CPU=arm64e\n+// UNSUPPORTED: OS=ios\n+// UNSUPPORTED: OS=tvos\n+// UNSUPPORTED: OS=watchos\n+// UNSUPPORTED: O...
2026-03-26T16:58:17
denoland/deno
4a0e228cbc524722d8944dfab63f56873aa10b50
b9589cb3e16765641f3705331afc3f74a9f0c4cd
fix(ext/node): don't fire upgrade event for h2c requests (#32866) HTTP requests to a `node:http` server hang when: 1. The server has an `"upgrade"` listener (e.g., Vite for WebSocket HMR) 2. A browser/client sends an HTTP/2 cleartext upgrade (`Upgrade: h2c`) The server was calling `upgradeHttpRaw()` and emitting the ...
[ { "path": "ext/node/polyfills/http.ts", "patch": "@@ -2342,7 +2342,14 @@ export class ServerImpl extends EventEmitter {\n request.headers.get(\"upgrade\");\n req[kRawHeaders] = request.headers;\n \n- if (req.upgrade && this.listenerCount(\"upgrade\") > 0) {\n+ // Don't fire the \"upg...
2026-03-20T15:45:57
mrdoob/three.js
0f580fc019cecacb405810159873bd142d7ac0e7
6644c517299036ae646ef93c7b62c57b5320a5f2
VTKLoader: Fix ReDoS vulnerability. (#32622)
[ { "path": "examples/jsm/loaders/VTKLoader.js", "patch": "@@ -112,8 +112,20 @@ class VTKLoader extends Loader {\n \t\t\t// pattern for detecting the end of a number sequence\n \t\t\tconst patWord = /^[^\\d.\\s-]+/;\n \n-\t\t\t// pattern for reading vertices, 3 floats or integers\n-\t\t\tconst pat3Floats = /(...
2025-12-27T06:00:52
tensorflow/tensorflow
50012180da7528571bc843cb97e5ebc2c25ecd9a
4378602e39f7d6921906fdc4d787b7eaf71fb340
PR #39956: [xla:gpu] Log thunk progress in chronological order Imported from GitHub PR https://github.com/openxla/xla/pull/39956 It is very confusing to read crash dumps when thunks execution order is reversed. Always print everything in chronological order. Copybara import of the project: -- 84177ebd3e6753dedfc4ac1...
[ { "path": "third_party/xla/xla/service/gpu/gpu_executable.cc", "patch": "@@ -484,6 +484,11 @@ absl::Status ExecuteThunksImpl(\n auto log_progress = [&](auto label, auto thunks) {\n LOG(ERROR) << absl::StreamFormat(\"[%d] %s: size=%d\", device_ordinal,\n ...
2026-03-30T09:07:14
golang/go
224489f11c2e0b394e93980fc8292c52f60b18a8
325eedb2a993aafb7f20738d73a1098036447917
cmd/go: fix autocgo test fail when set CGO_ENABLED during make.bash Details see CL 706095 Fixes #75340 Change-Id: Ic7276f2fb3abc5f02f224d82e1f26844888f0a1e Reviewed-on: https://go-review.googlesource.com/c/go/+/757182 Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Michael Matloob <matloob@golang.org> LUC...
[ { "path": "src/cmd/go/scriptconds_test.go", "patch": "@@ -10,6 +10,7 @@ import (\n \t\"cmd/internal/script/scripttest\"\n \t\"errors\"\n \t\"fmt\"\n+\t\"internal/buildcfg\"\n \t\"internal/testenv\"\n \t\"os\"\n \t\"os/exec\"\n@@ -47,6 +48,7 @@ func scriptConditions(t *testing.T) map[string]script.Cond {\n \...
2026-03-21T01:25:14
mrdoob/three.js
b847bf44f35e221b73d34983aec0c8014636779a
0ad08817d5646878e2897c301bd1a8076a4ddf09
InstanceNode: Fix UBO size and attribute update. (#32615)
[ { "path": "src/nodes/accessors/BufferAttributeNode.js", "patch": "@@ -366,7 +366,7 @@ function createBufferAttribute( array, type = null, stride = 0, offset = 0, usag\n \n \t}\n \n-\treturn new BufferAttributeNode( array, type, stride, offset );\n+\treturn new BufferAttributeNode( array, type, stride, offse...
2025-12-23T16:51:24
denoland/deno
b9589cb3e16765641f3705331afc3f74a9f0c4cd
301f6d1a9b956c61d9f9fc2360b6e6ed86449645
fix(ext/node): update process.versions.napi to 9 (#32870) Closes #30091 `process.versions.napi` was hardcoded to `"8"` but the actual NAPI implementation (`ext/napi/js_native_api.rs`) defines `NAPI_VERSION: u32 = 9`. This mismatch caused `node-pre-gyp` and similar tools to reject NAPI v9 native modules (like `get-win...
[ { "path": "ext/node/polyfills/_process/process.ts", "patch": "@@ -191,7 +191,7 @@ export const versions = {\n ares: \"1.18.1\",\n modules: \"108\",\n nghttp2: \"1.47.0\",\n- napi: \"8\",\n+ napi: \"9\",\n llhttp: \"6.0.10\",\n openssl: \"3.0.7+quic\",\n cldr: \"41.0\",", "additions": 1, ...
2026-03-20T15:24:37
golang/go
325eedb2a993aafb7f20738d73a1098036447917
07f0c2074c257e7f89a52152f451c66e7f762481
runtime/race: apply LLVM zero-initialization fix Upstream TSAN had bug that could result in use of uninitialized memory on Go threads that don't have any TSAN events. For example, if the thread only ever runs the GC. This bug was fixed upstream in https://github.com/llvm/llvm-project/commit/cdfdb06c9155080ec97d6e4f4d...
[ { "path": "src/runtime/race/README", "patch": "@@ -4,16 +4,16 @@ the LLVM project (https://github.com/llvm/llvm-project/tree/main/compiler-rt).\n \n To update the .syso files use golang.org/x/build/cmd/racebuild.\n \n-internal/amd64v1/race_darwin.syso built with LLVM 51bfeff0e4b0757ff773da6882f4d538996c9b04...
2026-03-18T18:14:20
swiftlang/swift
0da3b379db019f46d0c9340b7beb7f64226e451c
cdd4049fb644a9505e1731843382dfc9d077e119
[cxx-interop] Fix some clang tidy warnings * Make some methods const or static * Other minor cleanups
[ { "path": "include/swift/ClangImporter/ClangImporter.h", "patch": "@@ -213,7 +213,7 @@ class ClangImporter final : public ClangModuleLoader {\n /// an error occurred.\n static std::unique_ptr<ClangImporter>\n create(ASTContext &ctx, const IRGenOptions *IRGenOpts = nullptr,\n- std::string swift...
2026-03-01T14:27:38
tensorflow/tensorflow
71e5bdd84457f31a284772752898cdcf321d2465
df778d5ba2c13a3301b1bc745f254f1f91d2e765
PR #39025: [xla] Fix potentially expensive spin in ObjectPool Imported from GitHub PR https://github.com/openxla/xla/pull/39025 The previous implementation used a pointer mark bit to gain exclusive access during pop, which caused all concurrent push/pop operations to spin-wait — making it obstruction-free, not lock-f...
[ { "path": "third_party/xla/xla/runtime/BUILD", "patch": "@@ -155,6 +155,7 @@ xla_cc_test(\n \"//xla/tsl/platform:test_benchmark\",\n \"//xla/tsl/platform:test_main\",\n \"@com_google_absl//absl/algorithm:container\",\n+ \"@com_google_absl//absl/functional:bind_front\",\n ...
2026-03-30T08:59:45
mrdoob/three.js
ed04b9317ca92313a26605e26ef9d52a0bbd0f3d
daa858f37fc42d3e064572a762e07f20f93ef613
Fix JSDoc Example (#32603)
[ { "path": "src/nodes/core/MRTNode.js", "patch": "@@ -31,7 +31,7 @@ export function getTextureIndex( textures, name ) {\n * const mrtNode = mrt( {\n * output: output,\n * normal: normalView\n- * } ) );\n+ * } ) ;\n * ```\n * The MRT output is defined as a dictionary.\n *", "additions": 1, "...
2025-12-22T09:32:32
denoland/deno
301f6d1a9b956c61d9f9fc2360b6e6ed86449645
5a92ed20c018c894e2e7eab81b80f8d2caec5d40
fix(ext/node): improve process.hrtime argument validation (#32837) - Adds proper `ERR_INVALID_ARG_TYPE` validation when `process.hrtime()` receives a non-array argument - Adds `ERR_OUT_OF_RANGE` validation when the array length is not 2 - Fixes nanosecond underflow bug by borrowing from seconds when `nano - prevNano` ...
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -103,6 +103,7 @@ const lazyLoadFsUtils = core.createLazyLoader<typeof fsUtils>(\n );\n \n const {\n+ ArrayIsArray,\n NumberMAX_SAFE_INTEGER,\n ObjectDefineProperty,\n ObjectPrototypeIsPrototypeOf,\n@@ -372,8 +373,20 @@ export function hrtime(tim...
2026-03-20T14:45:38
golang/go
5f5f4ccdb385fa73de5729cfe8c0336b44a88f4c
16018b05ae226e7a99f166bded7f939c5b0c4a98
Revert "runtime, cmd/compile: use preemptible memclr for large pointer-free clears" This reverts CL 750480. Reason: Adding preemptible memclrNoHeapPointers exposes existing unsafe use of notInHeapSlice, causing crashes. Revert the memclr stack until the underlying issue is fixed. We keep the test added in CL 755942,...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -1605,13 +1605,11 @@\n => (AndB (MemEq p q (Const64 <typ.Int64> [16]) mem)\n (MemEq (OffPtr <p.Type> p [16]) (OffPtr <q.Type> q [16]) (Const64 <typ.Int64> [c-16]) mem))\n \n-// Turn known-size calls to memclrNoHeapPointer...
2026-03-20T21:50:07
tensorflow/tensorflow
4fc7cf2a0488e563092b4107f5a5bd510b69da16
7baf72cd5425d5f24c737f4379957eb0deb71288
PR #39497: [XLA:GPU][oneAPI] Register base oneCCL collective support for XLA Imported from GitHub PR https://github.com/openxla/xla/pull/39497 📝 Summary of Changes This PR adds skeleton code to register oneCCL oneAPI collectives for Intel GPUs, as a collective backend when XLA is built with SYCL. 🎯 Justification T...
[ { "path": "third_party/xla/xla/backends/gpu/collectives/BUILD", "patch": "@@ -1,4 +1,5 @@\n load(\"@local_config_rocm//rocm:build_defs.bzl\", \"if_rocm_is_configured\")\n+load(\"@local_config_sycl//sycl:build_defs.bzl\", \"if_sycl_is_configured\")\n load(\"//xla:xla.default.bzl\", \"xla_cc_test\")\n load(\"...
2026-03-30T08:37:36
swiftlang/swift
bd287e47e33792099b73e8564684d1b2feb89ad6
07e7a4e17bae2c518b25ebc68a7c2e54eac80ac4
[Concurrency] Reject isolated conformances escaping through async callees (#88030) This fixes holes in "rule 1" checking of [SE-470](https://swiftlang.github.io/swift-evolution/#?proposal=SE-470) which was supposed to protect escaping isolated conformances to other execution contexts: > An isolated conformance can on...
[ { "path": "include/swift/AST/DiagnosticsSema.def", "patch": "@@ -8996,6 +8996,10 @@ GROUPED_WARNING(isolated_conformance_will_become_nonisolated,IsolatedConformance\n GROUPED_ERROR(isolated_conformance_to_sendable_metatype,IsolatedConformances,none,\n \"cannot form %0 conformance of %1 to SendableMetaty...
2026-03-26T13:07:54
mrdoob/three.js
5c4f7efd2607f47bc1cc49e4b286afa2081d9a88
48c607f85e03d15329470ef32d6a9d1d36d23687
WebGLRenderer: Fix `PCFSoftShadowMap` check. (#32593)
[ { "path": "src/renderers/webgl/WebGLShadowMap.js", "patch": "@@ -96,10 +96,10 @@ function WebGLShadowMap( renderer, objects, capabilities ) {\n \n \t\tif ( lights.length === 0 ) return;\n \n-\t\tif ( lights.type === PCFSoftShadowMap ) {\n+\t\tif ( this.type === PCFSoftShadowMap ) {\n \n \t\t\twarn( 'WebGLSh...
2025-12-20T09:34:44
kubernetes/kubernetes
183ebf26d72939cec1572edb9a988b57394315d0
a274c27dd326ce97bd45ac3800f8a809ecf73fc9
fix: argument order of errors.Is Signed-off-by: sivchari <shibuuuu5@gmail.com>
[ { "path": "cmd/kubeadm/app/phases/etcd/local.go", "patch": "@@ -117,7 +117,7 @@ func RemoveStackedEtcdMemberFromCluster(client clientset.Interface, cfg *kubeadm\n \tklog.V(2).Infof(\"[etcd] get the member id from peer: %s\", etcdPeerAddress)\n \tid, err := etcdClient.GetMemberID(etcdPeerAddress)\n \tif err ...
2026-03-16T07:23:26
denoland/deno
5a92ed20c018c894e2e7eab81b80f8d2caec5d40
8a4988797cbb1f706ec6b3760080c15b78c092ec
fix(ext/node): implement process.threadCpuUsage() (#32829) - Implement `process.threadCpuUsage()` returning per-thread CPU usage (user/system in microseconds) - Add `op_current_thread_cpu_usage` Rust op reusing existing platform-specific thread CPU usage infrastructure (mach `thread_info` on macOS, `/proc/self/task` o...
[ { "path": "ext/node/polyfills/process.ts", "patch": "@@ -8,6 +8,7 @@ import { core, internals, primordials } from \"ext:core/mod.js\";\n import { initializeDebugEnv } from \"ext:deno_node/internal/util/debuglog.ts\";\n import { format } from \"ext:deno_node/internal/util/inspect.mjs\";\n import {\n+ op_cur...
2026-03-20T14:27:07
golang/go
16018b05ae226e7a99f166bded7f939c5b0c4a98
2de90fd48f2e4e38c2805e81b37d4116004752e2
Revert "runtime: fix memclrNoHeapPointersPreemptible" This reverts CL 756122. Reason: Adding preemptible memclrNoHeapPointers exposes existing unsafe use of notInHeapSlice, causing crashes. Revert the memclr stack until the underlying issue is fixed. For #78254. Change-Id: I8a234d1a6dddf70d9aa5ecda1ac8bb25deb08248 ...
[ { "path": "src/runtime/malloc.go", "patch": "@@ -2184,27 +2184,22 @@ func reusableSize(size uintptr) bool {\n // Use this with care; if the data being cleared is tagged to contain\n // pointers, this allows the GC to run before it is all cleared.\n func memclrNoHeapPointersChunked(size uintptr, x unsafe.Poi...
2026-03-20T21:49:14
tensorflow/tensorflow
7baf72cd5425d5f24c737f4379957eb0deb71288
5a9c1fa03fc312efd180da1e9e9f1e3519cec51e
[XLA:GPU]: Reapply flag flip for one shot all-reduce after fixes Reverts 2dd9641f9e601a08b453185293a9acdb4b086de6 PiperOrigin-RevId: 891564537
[ { "path": "third_party/xla/xla/debug_options_flags.cc", "patch": "@@ -454,7 +454,7 @@ DebugOptions DefaultDebugOptionsIgnoringFlags() {\n opts.set_xla_gpu_enable_scatter_determinism_expander(false);\n opts.set_xla_gpu_unsupported_enable_all_reduce_decomposer(false);\n opts.set_xla_gpu_unsupported_enab...
2026-03-30T08:11:27
mrdoob/three.js
48c607f85e03d15329470ef32d6a9d1d36d23687
adc26e13beb1cfccc4c44f4de1f68e11f41e4510
WebGLRenderer: Fix shadow map uniform management. (#32590)
[ { "path": "src/renderers/WebGLRenderer.js", "patch": "@@ -2210,12 +2210,9 @@ class WebGLRenderer {\n \t\t\t\tuniforms.pointLightShadows.value = lights.state.pointShadow;\n \t\t\t\tuniforms.hemisphereLights.value = lights.state.hemi;\n \n-\t\t\t\tuniforms.directionalShadowMap.value = lights.state.directional...
2025-12-20T09:20:33
swiftlang/swift
07e7a4e17bae2c518b25ebc68a7c2e54eac80ac4
cdd4049fb644a9505e1731843382dfc9d077e119
[Distributed] Try to fail more gracefully if Actor type does not exist (#88117) Might help with rdar://173338459 to find underlying reason rather than crash
[ { "path": "lib/AST/Builtins.cpp", "patch": "@@ -2304,6 +2304,8 @@ static ValueDecl *getDistributedActorAsAnyActor(ASTContext &ctx, Identifier id)\n BuiltinFunctionBuilder builder(ctx);\n auto *distributedActorProto = ctx.getProtocol(KnownProtocolKind::DistributedActor);\n auto *actorProto = ctx.getPro...
2026-03-26T11:56:24
denoland/deno
8a4988797cbb1f706ec6b3760080c15b78c092ec
fe6dcf2e7dd7a12d1f92298dc5fa02db2401e9cd
fix(ext/node): freeze os.constants.signals to match Node.js (#32836) - Freezes `os.constants.signals` so that property assignment throws `TypeError` in strict mode, matching Node.js behavior - Enables `parallel/test-os-constants-signals.js` in node compat tests Co-authored-by: Claude Opus 4.6 (1M context) <noreply@an...
[ { "path": "ext/node/polyfills/internal_binding/constants.ts", "patch": "@@ -1,5 +1,7 @@\n // Copyright 2018-2026 the Deno authors. MIT license.\n \n+import { primordials } from \"ext:core/mod.js\";\n+const { ObjectFreeze } = primordials;\n import { op_node_build_os, op_node_fs_constants } from \"ext:core/op...
2026-03-20T10:28:51
golang/go
2de90fd48f2e4e38c2805e81b37d4116004752e2
bfa3dc402859a92f00b88ebab500d44c64e28185
cmd/compile/internal/noder: don't shoot oneself (fix silly mistake) When reading multiple promoted fields in a struct literal from UIR, don't overwrite the (top-level) struct literal type needed for the next field. Fixes #78262. For #9859. Change-Id: Ifac64537bebcb7dbb79a6173d0cd032cbf0b8ed8 Reviewed-on: https://go-...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -3117,6 +3117,7 @@ func (r *reader) structElems(typ *types.Type, valuesOnly bool, elems []ir.Node)\n \t\tvar fld *types.Field\n \t\tif n := r.Int(); n < 0 {\n \t\t\t// embedded field\n+\t\t\ttyp := typ // don't modify the original typ\n \t\t...
2026-03-21T00:14:59
mrdoob/three.js
9488c011f4d47352d3a0fabc57f65eccbf4b123b
a9c17ce299312079fa4e2156fead341743aecc31
GLTFLoader: Fix empty groups when multiple scenes reference same nodes (#32567)
[ { "path": "examples/jsm/loaders/GLTFLoader.js", "patch": "@@ -66,6 +66,7 @@ import {\n \tInstancedBufferAttribute\n } from 'three';\n import { toTrianglesDrawMode } from '../utils/BufferGeometryUtils.js';\n+import { clone } from '../utils/SkeletonUtils.js';\n \n /**\n * A loader for the glTF 2.0 format.\n@...
2025-12-18T09:27:22
denoland/deno
fe6dcf2e7dd7a12d1f92298dc5fa02db2401e9cd
3b8478109b212be528d385da3a936ea0f110ce24
fix(ext/node): enable node compat test for v8.getHeapStatistics (#32833) Enables `parallel/test-v8-stats.js` in `tests/node_compat/config.jsonc` Ref https://github.com/denoland/deno/issues/32706 --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
[ { "path": "ext/node/ops/v8.rs", "patch": "@@ -37,6 +37,7 @@ pub fn op_v8_get_heap_statistics(\n buffer[11] = stats.total_global_handles_size() as f64;\n buffer[12] = stats.used_global_handles_size() as f64;\n buffer[13] = stats.external_memory() as f64;\n+ buffer[14] = stats.total_allocated_bytes() a...
2026-03-20T10:28:14
golang/go
0a750df0b23cefd951f2c9c8154acce66c05b739
f2dae4c19d20070eeb2cef6baa5c20e0081f53f9
Revert "cmd/compile: don't call memclrNoHeapPointersPreemptible from nosplit functions" This reverts CL 756123. Reason: Adding preemptible memclrNoHeapPointers exposes existing unsafe use of notInHeapSlice, causing crashes. Revert the memclr stack until the underlying issue is fixed. For #78254. Change-Id: Ic5e6eee...
[ { "path": "src/cmd/compile/internal/walk/assign.go", "patch": "@@ -723,8 +723,6 @@ func extendSlice(n *ir.CallExpr, init *ir.Nodes) ir.Node {\n \tif hasPointers {\n \t\tclrname = \"memclrHasPointers\"\n \t\tir.CurFunc.SetWBPos(n.Pos())\n-\t} else if ir.CurFunc.Pragma&ir.Nosplit != 0 {\n-\t\tclrname = \"memc...
2026-03-20T21:45:30
mrdoob/three.js
e796263ee25703290d920d958888061b799c7ded
65d2de79e8f85065bab55020cde68538d9d03996
JoltPhysics: Fix dynamic import Vite warning
[ { "path": "examples/jsm/physics/JoltPhysics.js", "patch": "@@ -77,7 +77,7 @@ async function JoltPhysics() {\n \n \tif ( Jolt === null ) {\n \n-\t\tconst { default: initJolt } = await import( `${JOLT_PATH}` );\n+\t\tconst { default: initJolt } = await import( JOLT_PATH /* @vite-ignore */ );\n \t\tJolt = awai...
2025-12-16T06:19:03
tensorflow/tensorflow
230ef56be5d39497a464bc200d89b4059ed3c77a
3aa85667a5d88236328126ad440fd7fade153eb0
RecognizeReduce: fix bug with subtract combining PiperOrigin-RevId: 891293883
[ { "path": "third_party/xla/xla/hlo/transforms/simplifiers/recognize_reduce_window.cc", "patch": "@@ -417,8 +417,9 @@ absl::StatusOr<bool> RunOnComputation(HloComputation* computation) {\n int64_t current_window_size = 2;\n \n // Pattern 3: add(reduce_window, slice)\n- if (!new_base_op && (lhs->op...
2026-03-29T14:51:41
denoland/deno
3b8478109b212be528d385da3a936ea0f110ce24
8f200f195312c69ec6c53a34dc0de7245b28e1e2
fix: rewrite approve_scripts_no_lock as PTY tests, skip lockfile test on Windows (#32853) - Rewrite `approve_scripts_no_lock` spec tests as PTY-based integration tests — the spec test `approve_scripts_detects_packages` hangs because `deno approve-scripts` (no args) launches an interactive picker that blocks with...
[ { "path": "tests/integration/pm_tests.rs", "patch": "@@ -280,3 +280,59 @@ fn approve_scripts_deny_some() {\n .join(\"install.txt\")\n .assert_matches_text(\"Installed by @denotest/node-lifecycle-scripts!\");\n }\n+\n+#[test(flaky)]\n+fn approve_scripts_no_lock_explicit_package() {\n+ let context = ...
2026-03-20T10:23:47
golang/go
a45c8032bbfdfb4c43cb56536f987501e6709a70
79a8ccab29c435966dd41fc8dda144de5dca073e
cmd/go: include test deps in buildinfo Fixes #76926 Change-Id: I822dd6363dea1c4ad73df5958964c1bfe2c46d19 Reviewed-on: https://go-review.googlesource.com/c/go/+/756240 Reviewed-by: Michael Matloob <matloob@google.com> Reviewed-by: Carlos Amedee <carlos@golang.org> Reviewed-by: Michael Matloob <matloob@golang.org> LUCI...
[ { "path": "src/cmd/go/internal/load/test.go", "patch": "@@ -294,15 +294,6 @@ func TestPackagesAndErrors(loaderstate *modload.State, ctx context.Context, done\n \n \tpb := p.Internal.Build\n \tpmain.DefaultGODEBUG = defaultGODEBUG(loaderstate, pmain, pb.Directives, pb.TestDirectives, pb.XTestDirectives)\n-\t...
2026-03-18T00:09:35
mrdoob/three.js
65d2de79e8f85065bab55020cde68538d9d03996
0ec9a77ef03a5f72f06d2da2404d9e4217973cee
RapierPhysics: Fix dynamic import Vite warning (#32565) Co-authored-by: Claude <noreply@anthropic.com>
[ { "path": "examples/jsm/physics/RapierPhysics.js", "patch": "@@ -97,7 +97,7 @@ async function RapierPhysics() {\n \n \tif ( RAPIER === null ) {\n \n-\t\tRAPIER = await import( `${RAPIER_PATH}` );\n+\t\tRAPIER = await import( RAPIER_PATH /* @vite-ignore */ );\n \t\tawait RAPIER.init();\n \n \t}", "additi...
2025-12-16T05:51:10
kubernetes/kubernetes
bd1ed91bb206caae756953f3419655b767955fe5
7b71b3a16529cab77046f150315ababc45e8d8f2
fix TestManagedBy by resetting metrics after controller start like other tests
[ { "path": "test/integration/job/job_test.go", "patch": "@@ -2153,14 +2153,17 @@ func TestManagedBy(t *testing.T) {\n \tt.Cleanup(closeFn)\n \tfor name, test := range testCases {\n \t\tt.Run(name, func(t *testing.T) {\n-\t\t\tresetMetrics()\n \t\t\t// TODO: this will be removed in 1.38.\n \t\t\tfeaturegatete...
2026-03-16T05:32:32
tensorflow/tensorflow
57b66b147ad706cdfd10393eda7016ac86ba9e82
87ab7f38f904c8b750f4842b8b975ac4f3de025a
Restore discarded attribute https://github.com/llvm/llvm-project/commit/ed37bdcc3eb2493feaa3d3bdcb5ec4036c25633e refactored how func.func discardable attributes are handled during the FuncToLLVM conversion in MLIR. Specifically, it started dropping specific LLVM-specific ODS properties (like always_inline) if they did...
[ { "path": "third_party/xla/xla/backends/cpu/codegen/emitters/transforms/xla_cpu_rewrite_patterns.cc", "patch": "@@ -342,7 +342,7 @@ class WrapEntryWithCallFrame\n op.setPrivate();\n op->setAttr(\"llvm.linkage\", mlir::LLVM::LinkageAttr::get(\n context, mlir::LLVM:...
2026-03-28T15:57:04
denoland/deno
8f200f195312c69ec6c53a34dc0de7245b28e1e2
391a2c8e9430e01611886c609f67a45e86b2b007
fix(npm): `approve-scripts` detects packages when lockfile is disabled (#32842) ## Summary - Fix `deno approve-scripts` failing to detect packages with lifecycle scripts when `"lock": false` is set in `deno.json` - The issue was that `approve-scripts` queried the npm resolution snapshot without first resolving package...
[ { "path": "cli/tools/pm/approve_scripts.rs", "patch": "@@ -78,6 +78,10 @@ pub async fn approve_scripts(\n Vec::new(),\n )\n } else {\n+ let npm_installer = factory.npm_installer().await?;\n+ npm_installer\n+ .ensure_top_level_package_json_install()\n+ .await?;\n let npm_resol...
2026-03-20T06:19:22
golang/go
686b127fe865e25c1d92a78ba0b56224f3fc0acf
f9bdf58fb186b665b05dc5a5afdeb149a1b3335c
doc: fix 2 links in godebug.md For #76349. Change-Id: I27dd7658e6cbcf6afd1287a7ec5a39c576ceee67 Reviewed-on: https://go-review.googlesource.com/c/go/+/756580 Reviewed-by: Carlos Amedee <carlos@golang.org> Reviewed-by: Mateusz Poliwczak <mpoliwczak34@gmail.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-a...
[ { "path": "doc/godebug.md", "patch": "@@ -156,7 +156,7 @@ and the [go command documentation](/cmd/go#hdr-Build_and_test_caching).\n \n ### Go 1.27\n \n-Go 1.27 removed the `gotypesalias` setting, as noted in the [Go 1.22][#go-122] section.\n+Go 1.27 removed the `gotypesalias` setting, as noted in the [Go 1....
2026-03-18T20:53:54
mrdoob/three.js
0ec9a77ef03a5f72f06d2da2404d9e4217973cee
81f1bca2a658d4ae928388ebd85238331afd02e7
UniformsGroup: Add range cache and fix clear old update ranges (#32561)
[ { "path": "src/renderers/common/Bindings.js", "patch": "@@ -364,6 +364,12 @@ class Bindings extends DataMap {\n \n \t\t\t}\n \n+\t\t\tif ( binding.isBuffer && binding.updateRanges.length > 0 ) {\n+\n+\t\t\t\tbinding.clearUpdateRanges();\n+\n+\t\t\t}\n+\n \t\t}\n \n \t\tif ( needsBindingsUpdate === true ) {"...
2025-12-15T20:24:20
swiftlang/swift
a57be4fda4f040d218758e3014ae39b238a484d4
4b0ddd3c2ae29fdff2cf4af94ab70a3adf53ad56
[Sema] Move fix-it tests to existing Concurrency tests per review feedback Remove standalone test/FixCode/nonisolated_unsafe_fixit.swift and update existing fix-it expectations in actor_isolation.swift and transfernonsendable_nonisolatedunsafe.swift to cover both the method and computed property cases.
[ { "path": "test/Concurrency/actor_isolation.swift", "patch": "@@ -191,7 +191,7 @@ extension MyActor {\n set { }\n }\n \n- // expected-warning@+1{{'nonisolated(unsafe)' has no effect on instance method 'nonisolatedUnsafe(otherActor:)', consider using 'nonisolated'}}{{3-14=nonisolated}}\n+ // expected...
2026-03-26T01:24:07
kubernetes/kubernetes
ab73613f42fc23299608eec161e8b586234ac9ab
8cfc85428a3363b06829683cb5f80f532a75fbc4
[kubelet] add new `OnPodSandboxReady` method to RuntimeHelper interface to update `PodReadyToStartContainers` condition immediately after sandbox creation This is to address the bug (gh-issue 134460), which reported that currently `PodReadyToStartContainers` condition is only set to `True` after the container image pu...
[ { "path": "pkg/kubelet/container/helpers.go", "patch": "@@ -75,6 +75,10 @@ type RuntimeHelper interface {\n \n \t// PodCPUAndMemoryStats reads the latest CPU & memory usage stats.\n \tPodCPUAndMemoryStats(context.Context, *v1.Pod, *PodStatus) (*statsapi.PodStats, error)\n+\n+\t// OnPodSandboxReady callback ...
2025-10-16T17:31:31
tensorflow/tensorflow
feee2324c004e19b689816ef10ee11eb583a4e27
42282d37d0fb5a8ee88478c7ad02df14305c39ba
Fix typo in `tsl::monitoring::Buckets::Exponential` documentation PiperOrigin-RevId: 890656936
[ { "path": "third_party/xla/xla/tsl/lib/monitoring/sampler.h", "patch": "@@ -255,8 +255,8 @@ class Buckets {\n // [scale * growth_factor^(N-1), scale * growth_factor^N),\n // [scale * growth_factor^N, +DBL_MAX]\n // }\n- // where N is the largest integer such that\n- // scale * growth_factor^N ...
2026-03-27T22:12:08
denoland/deno
756d5d92e8028dbaff836e50f31e5875b757c7d4
8ab268c51ce041f60fe6b514030a818b28043e11
fix(ext/node): emit request "close" before socket "free" in keep-alive path (#32811) Fixes a keep-alive socket lifecycle ordering bug where `socket.emit("free")` fired before `request.on("close")` handlers had a chance to run. This caused libraries like `node-fetch` that attach per-request listeners to the socket (and...
[ { "path": "ext/node/polyfills/http.ts", "patch": "@@ -1305,13 +1305,24 @@ export class IncomingMessageForClient extends NodeReadable {\n req._socketErrorListener = null;\n }\n \n- socket.emit(\"free\");\n-\n- // Clear references so old request/response don't destroy the pooled socket...
2026-03-19T19:44:53
golang/go
f9bdf58fb186b665b05dc5a5afdeb149a1b3335c
89ba6eec5c6950d6c24523f81469139a5d88a024
doc: remove template use in godebug.md This file used to be implicitly a template prior to CL 733500, but now it's no longer a template. The only template use here can be trivially expressed with pure Markdown syntax, so do that. (The alternative path would be to set 'template: true' explicitly.) Fixes #78211. Chang...
[ { "path": "doc/godebug.md", "patch": "@@ -136,9 +136,7 @@ are also treated as invalid.\n The defaults that will be compiled into a main package\n are reported by the command:\n \n-{{raw `\n \tgo list -f '{{.DefaultGODEBUG}}' my/main/package\n-`}}\n \n Only differences from the base Go toolchain defaults are...
2026-03-18T20:00:48
kubernetes/kubernetes
04977a0ea4592bfaa70d5095a4cfe99dd4b847e1
0bf52890c5a0a38b4b6fc38d95bcbe3609485eff
Reduce log level for optimistic lease update fallback The "Failed to update lease optimistically, falling back to slow path" message was logged at Error level, but this is expected behavior during normal leader election when the optimistic update encounters a conflict. The system gracefully falls back to the slow path...
[ { "path": "staging/src/k8s.io/client-go/tools/leaderelection/leaderelection.go", "patch": "@@ -451,7 +451,7 @@ func (le *LeaderElector) tryAcquireOrRenew(ctx context.Context) bool {\n \t\t\tle.setObservedRecord(&leaderElectionRecord)\n \t\t\treturn true\n \t\t}\n-\t\tlogger.Error(err, \"Failed to update lea...
2026-03-14T20:51:49
tensorflow/tensorflow
24c585450b33389eae777945658318660edae49d
42cfc891a4a840774fae731de1d55ea7508333f6
Fix `GetMeshAxesPartitionGroupsForReplication` for NamedSharding. When using `NamedSharding`, the replication dimensions do not directly correspond to mesh axis indices. The fix extracts the correct mesh axes from the `dim_sharding` of the `NamedSharding` for the given replication dimensions. PiperOrigin-RevId: 89063...
[ { "path": "third_party/xla/xla/service/spmd/spmd_partitioner_util.cc", "patch": "@@ -3096,10 +3096,20 @@ GetMeshAxesPartitionGroupsForReplication(\n return std::nullopt;\n }\n std::vector<AxisRef> axis_refs;\n- axis_refs.reserve(replication_dims.size());\n- for (int64_t dim : replication_dims) {\n...
2026-03-27T21:19:45
denoland/deno
8a5a704ce83c562c7ed710172c5b3ae67b2d933a
af16b8aebf7b87336bec9dc6b74bae6df22ef71c
fix: make flamegraph SVG fill full browser viewport (#32727) Fixes #32725 The flamegraph SVG had a fixed pixel `height` attribute, which combined with the `viewBox` aspect ratio, caused the browser to constrain the rendered width — leaving the right side of the viewport empty.
[ { "path": "runtime/cpu_profiler/flamegraph.js", "patch": "@@ -28,7 +28,7 @@ function init(evt) {\n toggle_invert();\n });\n }\n- orig_height = parseFloat(svg.attributes.height.value);\n+ orig_height = parseFloat(frames.getAttribute(\"fg:content_height\"));\n // Fluid: fill viewport width and...
2026-03-19T15:08:48
swiftlang/swift
bc84a5e8b333078edb455e60f0715d1129991aaf
30b6a9a2a7612ebefe99e5fc559b0499684c8318
[Embedded] Don't go through reportExclusivityError in embedded It contributes too much code size to perform the interpolation.
[ { "path": "stdlib/public/core/Exclusivity.swift", "patch": "@@ -271,21 +271,34 @@ internal func _swift_exclusivityAccessGetParent(\n \n @inline(never)\n fileprivate func invalidFlags(_ flags: UInt) -> Never {\n+ #if !$Embedded\n reportExclusivityError(\"Internal exclusivity error\",\n- ...
2026-03-25T21:44:21
golang/go
fdd38337f0802ada78e70c4f3db1f440ba08ba2f
0520d3f35287d5363941b466df6dd2e134620d09
cmd/link: propagate Mach-O section alignment to symbol in loadmacho The Mach-O object file loader reads the section alignment from the section header into ldMachoSect.align, but never calls SetAlign on the symbol builder when converting sections to linker symbols. This causes all Mach-O .syso sections to fall back to ...
[ { "path": "src/cmd/link/internal/loadmacho/ldmacho.go", "patch": "@@ -570,6 +570,9 @@ func Load(l *loader.Loader, arch *sys.Arch, localSymVersion int, f *bio.Reader,\n \t\t\tbld.SetData(dat[sect.addr-c.seg.vmaddr:][:sect.size])\n \t\t}\n \t\tbld.SetSize(int64(len(bld.Data())))\n+\t\tif sect.align != 0 {\n+\...
2026-03-17T14:33:28
denoland/deno
f45e443d834fab85dd87b7d6253006fcc2cf50ff
c436b5fba79032e3fa0e80f795eb25c3bec55243
refactor(core): move timer processing from Rust to JavaScript (#32543) ## Summary - Moves user timer management (setTimeout/setInterval) from Rust's `BTreeSet` to a JavaScript-side implementation matching Node.js's timer architecture: linked lists bucketed by duration, binary min-heap priority queue, and a single nat...
[ { "path": "ext/node/polyfills/internal/crypto/_randomBytes.ts", "patch": "@@ -77,7 +77,7 @@ export default function randomBytes(\n const resource = {};\n emitInit(asyncId, \"RANDOMBYTESREQUEST\", triggerAsyncId, resource);\n \n- setTimeout(() => {\n+ process.nextTick(() => {\n emitBefore...
2026-03-19T14:01:05
mrdoob/three.js
b1bddc9b9e54e5f38594e6cbe56db79fd9d41237
0bc25c1c9e31f04b0fc6ac7d994e8fc690734aba
WebGPURenderer: Fix shadow comparison on Adreno GPUs (#32548)
[ { "path": "src/constants.js", "patch": "@@ -1680,6 +1680,16 @@ export const InterpolationSamplingMode = {\n \tEITHER: 'either'\n };\n \n+/**\n+ * Compatibility flags for features that may not be supported across all platforms.\n+ *\n+ * @type {Object}\n+ * @constant\n+ */\n+export const Compatibility = {\n+...
2025-12-14T14:52:40
golang/go
0520d3f35287d5363941b466df6dd2e134620d09
30bfe53dd7485e211247a6d5c2f29a6aea0719a9
cmd/link: skip special symbols for label symbol generation Some special symbols, e.g. funcdata symbols, don't have a section set, because they are laid out as part of the top-level go:func.* symbol. Similarly, other non-top-level symbols are part of some top-level symbols. There is no relocation directly targetting th...
[ { "path": "src/cmd/link/internal/arm64/asm.go", "patch": "@@ -1284,6 +1284,9 @@ func gensymlate(ctxt *ld.Link, ldr *loader.Loader) {\n \n \t// addLabelSyms adds \"label\" symbols at s+limit, s+2*limit, etc.\n \taddLabelSyms := func(s loader.Sym, limit, sz int64) {\n+\t\tif ldr.SymSect(s) == nil {\n+\t\t\tlo...
2026-03-17T15:18:36
swiftlang/swift
15c48711e9bb1bf800f28a51f59d97f45a42bf90
13553fe86c3e48bf16785a1e36cade8fc687aec2
PrintAsClang: Avoid crashing when anyAppleOS availability cannot be remapped. Follow up to https://github.com/swiftlang/swift/pull/86941.
[ { "path": "lib/PrintAsClang/DeclAndTypePrinter.cpp", "patch": "@@ -1839,9 +1839,16 @@ class DeclAndTypePrinter::Implementation\n \n auto platKind = AvAttr.getPlatform();\n if (platKind == PlatformKind::anyAppleOS) {\n- if (auto domainAndRange =\n- AvAttr.getIntroducedDomain...
2026-03-25T17:10:33
tensorflow/tensorflow
6800b3fc4b04cefdc8b6ff1883ed891255efd210
b50e18fcd08627e41f2721893d6b9a9f37e1e3f5
Roll forward with fix Reverts 9302373fb2c2ec7980cdf6186d9510a7ef4e5e2f PiperOrigin-RevId: 890593900
[ { "path": "third_party/xla/xla/pjrt/BUILD", "patch": "@@ -205,6 +205,7 @@ cc_library(\n \"//xla/hlo/ir:hlo_sharding\",\n \"//xla/mlir/utils:type_util\",\n \"//xla/service/spmd/shardy/stablehlo_round_trip:export_shardings\",\n+ \"//xla/tsl/platform:statusor\",\n \"@com_...
2026-03-27T19:52:07
denoland/deno
c436b5fba79032e3fa0e80f795eb25c3bec55243
b3e93cf7bd7e795ffe09d9212f72d8ae65f5986e
fix(ext/node): improve readline and EventEmitter compat (#32826) ## Summary - **readline**: `pause()`/`resume()` now throw `ERR_USE_AFTER_CLOSE` when called after `close()`, matching Node.js behavior - **events**: `listenerCount()` now supports `EventTarget` objects (delegates to `getEventListeners()`) - **events**: ...
[ { "path": "ext/node/polyfills/_events.mjs", "patch": "@@ -50,6 +50,7 @@ const {\n } = primordials;\n \n const kRejection = SymbolFor(\"nodejs.rejection\");\n+const kWatermarkData = SymbolFor(\"nodejs.watermarkData\");\n export const kEvents = Symbol(\"kEvents\");\n \n import { inspect } from \"ext:deno_node...
2026-03-19T13:58:51
mrdoob/three.js
a7b42b13a591ac9c6abac8c7568ad7f3c6e0a562
1d52482a1e84ccd88cfc5744b41f783aabc29f66
Update Pipelines.js Fix JSDoc.
[ { "path": "src/renderers/common/Pipelines.js", "patch": "@@ -344,7 +344,7 @@ class Pipelines extends DataMap {\n \t * @param {ProgrammableStage} stageFragment - The programmable stage representing the fragment shader.\n \t * @param {string} cacheKey - The cache key.\n \t * @param {?Array<Promise>} promises ...
2025-12-13T10:52:31
golang/go
30bfe53dd7485e211247a6d5c2f29a6aea0719a9
9ec1d8f335bb76a07e9724fb332a4c2572d0fc3b
cmd/compile: enable promoted field selectors as keys in struct literals Switch the generated UIR version from V2 to V3. Adjust cmd/compile/internal/types to accept promoted field selectors in composite literals. Fixes #9859. Change-Id: Ie314e28567cfa6cf4c9e962a07b32dd05b06bf5e Reviewed-on: https://go-review.googleso...
[ { "path": "src/cmd/compile/internal/noder/unified.go", "patch": "@@ -25,8 +25,8 @@ import (\n )\n \n // uirVersion is the unified IR version to use for encoding/decoding.\n-// Use V2 as the encoded version for aliastypeparams.\n-const uirVersion = pkgbits.V2\n+// Use V3 for promoted struct field support in ...
2026-03-16T21:01:37
denoland/deno
42eb6ab0d626addee4cc8aee76a4f6d69a1609c2
a2a795569abadeb64d04416e28a13bc38614fbe0
fix(ext/node): add key/IV length validation for aes-128-cbc and ecb cipher modes (#32824) Validate key and IV lengths for aes-128-cbc, aes-128-ecb, aes-192-ecb, and aes-256-ecb before constructing ciphers, matching the pattern already used by aes-256-cbc, ctr, and gcm modes. Co-authored-by: Claude Opus 4.6 (1M contex...
[ { "path": "ext/node_crypto/cipher.rs", "patch": "@@ -221,11 +221,32 @@ impl Cipher {\n use Cipher::*;\n Ok(match algorithm_name {\n \"aes128\" | \"aes-128-cbc\" => {\n+ if key.len() != 16 {\n+ return Err(CipherError::InvalidKeyLength);\n+ }\n+ if iv.len() != 16 {\...
2026-03-19T07:02:28
swiftlang/swift
30b6a9a2a7612ebefe99e5fc559b0499684c8318
91257bb488fcb28f38e3dfbd7e26dc251ea99be3
Crashing test isn't available with wasm
[ { "path": "test/embedded/exclusivity_runtime.swift", "patch": "@@ -31,6 +31,8 @@\n // REQUIRES: swift_feature_Embedded\n // REQUIRES: swift_feature_EmbeddedDynamicExclusivity\n \n+// UNSUPPORTED: OS=wasip1\n+\n struct NC: ~Copyable {\n var i: Int = 1\n ", "additions": 2, "deletions": 0, "langu...
2026-03-25T21:19:36
tensorflow/tensorflow
8cc92aaa4a55274144667fd34584fd1b111a71d5
261ffd0e4b0fd6498e569956e34048fa5b3aedfa
Fix kRecv resource limit violation in top-down scheduling. PiperOrigin-RevId: 890584979
[ { "path": "third_party/xla/xla/service/latency_hiding_scheduler.cc", "patch": "@@ -3120,6 +3120,40 @@ HloScheduleGraph::HloScheduleGraph(\n break;\n }\n }\n+ // If sends are originally after a while loop, make sure the corresponding\n+ // recv is also scheduled after the wh...
2026-03-27T19:30:55
mrdoob/three.js
16ec7c4352d380378e56a79d7871663af046fedf
87915bbd2cb2654f751cd04949ba8f424e314ebf
Update Renderer.js Fix JSDoc.
[ { "path": "src/renderers/common/Renderer.js", "patch": "@@ -560,8 +560,7 @@ class Renderer {\n \t\t * and pipeline updates.\n \t\t *\n \t\t * @private\n-\t\t * @type {?Function}\n-\t\t * @default null\n+\t\t * @type {Function}\n \t\t */\n \t\tthis._handleObjectFunction = this._renderObjectDirect;\n ", "...
2025-12-12T09:41:55
golang/go
9ec1d8f335bb76a07e9724fb332a4c2572d0fc3b
d9a600a73bed7b907f7321200650fe5103f47fc9
cmd/compile: skip race detector test failure for unsupported VMA Fixes #78219 Updates #77597 Change-Id: I021df668bfc18081e71faaab2e4bad607873bf4d Reviewed-on: https://go-review.googlesource.com/c/go/+/756780 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Meidan ...
[ { "path": "src/cmd/compile/internal/test/fixedbugs_test.go", "patch": "@@ -5,6 +5,7 @@\n package test\n \n import (\n+\t\"bytes\"\n \t\"internal/platform\"\n \t\"internal/testenv\"\n \t\"os\"\n@@ -110,7 +111,13 @@ func TestIssue77597(t *testing.T) {\n \tcmd := testenv.Command(t, testenv.GoToolPath(t), \"run...
2026-03-19T02:48:47
swiftlang/swift
eb420df8886a722ec2b24a69afa1a81a9a8c7569
5478f521ae394007fdbcae92ee6a1539b001ad69
[lldb] Encode marker annotation for protocols in debug info. Marker protocols are a compile time concept only, and emit no metadata. RemoteInspection does not know how to handle existentials with these types. This patch emits debug info for marker protocols, so LLDB can handle them properly before querying RemoteInsp...
[ { "path": "lib/IRGen/IRGenDebugInfo.cpp", "patch": "@@ -1228,7 +1228,8 @@ class IRGenDebugInfoImpl : public IRGenDebugInfo {\n llvm::DINodeArray BoundParams = collectGenericParams(Type);\n llvm::DICompositeType *DITy = createStruct(\n Scope, Name, File, Line, SizeInBits, AlignInBits, Flags, ...
2026-03-18T18:06:53
denoland/deno
a2a795569abadeb64d04416e28a13bc38614fbe0
a087e7ccf983ab2ef304a1c3baf1c47892207d78
fix(ext/node): improve node:dns module compatibility (#32704) ## Summary - Support `--dns-result-order` flag via `NODE_OPTIONS` env var by parsing it in the node_options binding and making `dnsOrder` initialization lazy (evaluated at runtime instead of snapshot time) - Replace `node:punycode` import with `internal/idn...
[ { "path": "ext/node/polyfills/internal/dns/promises.ts", "patch": "@@ -64,7 +64,7 @@ import cares, {\n GetNameInfoReqWrap,\n QueryReqWrap,\n } from \"ext:deno_node/internal_binding/cares_wrap.ts\";\n-import { toASCII } from \"node:punycode\";\n+import { domainToASCII } from \"ext:deno_node/internal/idna...
2026-03-19T06:51:35
mrdoob/three.js
87915bbd2cb2654f751cd04949ba8f424e314ebf
6e2cef6a521fb7b1a23b9923d003e5bc0d9cffd7
WebGPURenderer: Fix `compileAsync()` with target scenes. (#32530)
[ { "path": "src/renderers/common/Renderer.js", "patch": "@@ -847,6 +847,7 @@ class Renderer {\n \t\tconst previousRenderId = nodeFrame.renderId;\n \t\tconst previousRenderContext = this._currentRenderContext;\n \t\tconst previousRenderObjectFunction = this._currentRenderObjectFunction;\n+\t\tconst previousHa...
2025-12-11T15:38:42
tensorflow/tensorflow
87f10b9d5f93df4576e69b4193402631dfec3bac
1255b35bd1800cdc6e5f5f3e8bdbc14b1dd22451
[XLA:GPU]: Fix layout when doing a gathered load. This change fixes issues in the all-reduce implementation. - When we generate a tensor of subtile size and broadcast it for gathered loads we must obey layouts. - Add special casing for scalar inputs. E2E tests are added for both cases. PiperOrigin-RevId: 890548643
[ { "path": "third_party/xla/xla/backends/gpu/codegen/triton/collective_emitter.cc", "patch": "@@ -303,8 +303,9 @@ GetBlockLevelFusionConfigForAllReduce(\n all_reduce_info->num_elements, all_reduce_info->num_devices,\n all_reduce_info->all_reduce_strategy);\n BlockLevelFusionConfig block_level_c...
2026-03-27T18:16:06
golang/go
86b5e678e88efd89aee58e075064fd93c9346962
59bafc0b0782a6984b0b79499861947d5ccce509
cmd/go: reject an empty tool name An empty tool name ("") is incorrectly resolved by "go tool" as the directory containing the tools binaries: $ go tool "" go tool : fork/exec /opt/homebrew/Cellar/go/1.24.5/libexec/pkg/tool/darwin_arm64: permission denied To fix that case we also explicitely disallow an empty to...
[ { "path": "src/cmd/go/internal/base/tool.go", "patch": "@@ -42,6 +42,9 @@ func ToolPath(toolName string) (string, error) {\n }\n \n func ValidToolName(toolName string) bool {\n+\tif toolName == \"\" {\n+\t\treturn false\n+\t}\n \tfor _, c := range toolName {\n \t\tswitch {\n \t\tcase 'a' <= c && c <= 'z', '...
2025-07-25T08:34:34
kubernetes/kubernetes
bea6f922269e5087e962ffa647b53b7649a654b3
1a75abd5b51e163000c122823754310bb70b3d0e
fix: stability level to discriminator member validations
[ { "path": "staging/src/k8s.io/code-generator/cmd/validation-gen/output_tests/tags/levels/discriminators/doc.go", "patch": "@@ -0,0 +1,103 @@\n+/*\n+Copyright The Kubernetes Authors.\n+\n+Licensed under the Apache License, Version 2.0 (the \"License\");\n+you may not use this file except in compliance with t...
2026-03-12T19:59:18
denoland/deno
a087e7ccf983ab2ef304a1c3baf1c47892207d78
e1ef181d95d0864615b6ccc2b36ff8599ef33f71
fix(watch): support graceful shutdown via SIGTERM dispatch (#32564) ## Summary - When watch mode restarts (file change) or exits (Ctrl+C), synthetically dispatch SIGTERM to any registered signal handlers before cancelling the running operation - If SIGTERM handlers are registered, wait up to 10 seconds for the operat...
[ { "path": "cli/util/file_watcher.rs", "patch": "@@ -39,6 +39,7 @@ use crate::util::fs::canonicalize_path;\n \n const CLEAR_SCREEN: &str = \"\\x1B[H\\x1B[2J\\x1B[3J\";\n const DEBOUNCE_INTERVAL: Duration = Duration::from_millis(200);\n+const GRACEFUL_SHUTDOWN_TIMEOUT: Duration = Duration::from_secs(5);\n \n ...
2026-03-18T21:40:16
mrdoob/three.js
d7186e7dc9f4d325d7d75b9011ed14559fcf99ab
f3bb8893ca30b23853a623e747c8d2f4bf39cad7
UnrealBloomPass: Fix alpha handling. (#32517)
[ { "path": "examples/jsm/postprocessing/UnrealBloomPass.js", "patch": "@@ -1,8 +1,9 @@\n import {\n-\tAdditiveBlending,\n \tColor,\n+\tCustomBlending,\n \tHalfFloatType,\n \tMeshBasicMaterial,\n+\tOneFactor,\n \tShaderMaterial,\n \tUniformsUtils,\n \tVector2,\n@@ -187,7 +188,11 @@ class UnrealBloomPass exten...
2025-12-09T09:47:09
swiftlang/swift
9bc81973e4a06ad2c6847a457f78fcb72518a1d5
b908ea28d45d9c1c716b51b19de8eba0fede306b
[Sema] Fix -debug-time-expression-type-checking producing no output
[ { "path": "lib/Sema/ConstraintSystem.cpp", "patch": "@@ -186,11 +186,12 @@ void ConstraintSystem::startExpressionTimer() {\n const auto &opts = getASTContext().TypeCheckerOpts;\n unsigned timeout = opts.ExpressionTimeoutThreshold;\n \n- // If either the timeout is set, or we're asked to emit warnings,\...
2026-03-25T18:04:26
golang/go
4216fa3d0471aa290e591abf0e209992edfc1f54
bf1c1b3bde50f33593cd0db8f19812ea957964f5
runtime: return the error code as a return value in asmstdcall This shaves off 8 bytes from the syscall_syscalln stack frame, which is significant as that call path is almost over the nosplit limit. Also, it follows the cgocall convention of returning the error code as a return value, making it easier to reason about...
[ { "path": "src/internal/runtime/syscall/windows/asm_windows_386.s", "patch": "@@ -5,10 +5,14 @@\n #include \"go_asm.h\"\n #include \"textflag.h\"\n \n-TEXT ·StdCall<ABIInternal>(SB),NOSPLIT,$0\n-\tJMP\t·asmstdcall(SB)\n+TEXT ·StdCall<ABIInternal>(SB),NOSPLIT,$4-8\n+\tMOVL\tfn+0(FP), AX\n+\tMOVL\tAX, 0(SP)\n...
2026-03-06T11:22:14
tensorflow/tensorflow
1255b35bd1800cdc6e5f5f3e8bdbc14b1dd22451
0cab3f4cd2cd49b25d24ddfa6d67440c6cf7055a
Rewrite matching python_repo requirement entries with local wheel overrides. Fix an issue with released wheels being picked over local ones that are intended to override them. Before --find-links was introduced during the rules_python upgrade to 1.8.4, the sorting of the entries happened to place the local override o...
[ { "path": "third_party/py/python_repo.bzl", "patch": "@@ -20,6 +20,7 @@ def _python_repository_impl(ctx):\n hermetic_sha256 = ctx.os.environ.get(\"HERMETIC_PYTHON_SHA256\", \"\")\n hermetic_prefix = ctx.os.environ.get(\"HERMETIC_PYTHON_PREFIX\", \"python\")\n custom_requirements = ctx.os.environ...
2026-03-27T18:00:15
denoland/deno
e1ef181d95d0864615b6ccc2b36ff8599ef33f71
e03b7909beafddefa84872a74136c1d7b61d6a5f
fix(ext/node): set kLastWriteWasAsync in JS write path to prevent double callback (#32814) ## Summary - Set `streamBaseState[kLastWriteWasAsync] = 1` in the JS `writeBuffer` and `writev` fast path before returning, so `afterWriteDispatched` correctly identifies the write as async and defers the callback - Without thi...
[ { "path": "ext/node/polyfills/internal_binding/stream_wrap.ts", "patch": "@@ -213,6 +213,13 @@ export class LibuvStreamWrap extends HandleWrap {\n );\n }\n \n+ // Mark as async so afterWriteDispatched does not fire the callback\n+ // synchronously. The Rust write_buffer path sets this on the...
2026-03-18T21:39:30
mrdoob/three.js
cea3fa498481e9f4e6f4e6fe465edef583868ad5
9f2fb59543d61e10c5b5178d26dbb845638f18a7
Examples: Fix MRT readback with WebGL backend. (#32505)
[ { "path": "examples/webgpu_multiple_rendertargets_readback.html", "patch": "@@ -155,27 +155,27 @@\n \n \t\t\t\ttorus.rotation.y = ( time / 1000 ) * .4;\n \n-\t\t\t\tconst isMRT = selection === 'mrt';\n+\t\t\t\tconst isReadback = ( selection !== 'mrt' );\n \n \t\t\t\t// render scene into target\n-\t\t\t\tren...
2025-12-09T09:31:11
swiftlang/swift
91257bb488fcb28f38e3dfbd7e26dc251ea99be3
22ba5f693d208038d4a43f109b16f11accdb7830
[Embedded] Only include detailed exclusivity failure message in debug builds In release builds that enable dynamic exclusivity checking, we are including all of the printing code for producing the nice "simultaneous access" failure message. That increases code size too much, so only include this in debug builds. For r...
[ { "path": "stdlib/public/core/EmbeddedRuntime.swift", "patch": "@@ -822,19 +822,24 @@ func _embeddedReportExclusivityViolation(\n newAction: Access.Action, newPC: UnsafeRawPointer?,\n pointer: UnsafeRawPointer\n ) {\n- print(\"Simultaneous access to 0x\", terminator: \"\")\n- printAsHex(Int(bitPattern...
2026-03-25T17:53:55
golang/go
c1c0af1e16c4c932d4c05442d9717dac0dc08a79
4b7b1be731e35c2f9c5f3af6677b164ccb006568
cmd/compile: simplify the implementation of LoweredMoveLoop on loong64 Removes 632 instructions from the go binary on loong64. before after delta asm 560709 560673 -36 cgo 478565 478545 -20 compile 2883165 2883089 -76 cover 528213 528189 -...
[ { "path": "src/cmd/compile/internal/loong64/ssa.go", "patch": "@@ -732,7 +732,7 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tif dstReg == srcReg {\n \t\t\tbreak\n \t\t}\n-\t\tcountReg := int16(loong64.REG_R23)\n+\t\tsrcEndReg := int16(loong64.REG_R23)\n \t\ttmpReg := int16(loong64.REG_R24)\n \...
2025-12-30T12:27:35
tensorflow/tensorflow
4b75a6470dee54db39524255ccacabb93964b3be
d5d2dbcd2bff89ff2d2dbc4f01b7eca64e650e0c
Fix for when adding reshard for a call with null result sharding. PiperOrigin-RevId: 890477655
[ { "path": "third_party/xla/xla/service/spmd/shardy/test/unflatten_call_graph_dedup_functions_fully_true.mlir", "patch": "@@ -1638,6 +1638,32 @@ func.func private @baz(%arg0: tensor<8x2xi32> {sdy.sharding = #sdy.sharding<@mes\n return %0 : tensor<8x2xi32>\n }\n \n+// -----\n+\n+sdy.mesh @mesh = <[\"x\"=2, ...
2026-03-27T15:49:04
mrdoob/three.js
13313a4004734726984c0d40cf2a803ca546b800
9bb24def05c0767625f7905cbe99ff8d64a9f0a4
UltraHDRLoader: Remove debug console (#32513)
[ { "path": "examples/jsm/loaders/UltraHDRLoader.js", "patch": "@@ -109,8 +109,6 @@ class UltraHDRLoader extends Loader {\n \t */\n \tparse( buffer, onLoad ) {\n \n-\t\tconsole.time( 'UltraHDRLoader' );\n-\n \t\tconst xmpMetadata = {\n \t\t\tversion: null,\n \t\t\tbaseRenditionIsHDR: null,\n@@ -293,8 +291,6 @...
2025-12-09T02:48:30
denoland/deno
e03b7909beafddefa84872a74136c1d7b61d6a5f
852d4994cb559385db0e6dba3b88da00b602f93d
fix(core): implement select fallback on macOS (#32812) On macos, certain files are incompatible with kqueue. Chief among them being some of the `/dev/` files. In libuv, there's code that checks if a file works with kqueue, and if it doesn't then it has a fallback which uses a background thread that polls via select an...
[ { "path": "libs/core/uv_compat.rs", "patch": "@@ -550,10 +550,18 @@ impl UvLoopInner {\n tty.internal_write_queue.clear();\n tty.internal_shutdown = None;\n \n- // Drop the AsyncFd to deregister from the reactor, then close the fd.\n+ // Drop the reactor (AsyncFd or select fallback) to...
2026-03-18T21:12:38
kubernetes/kubernetes
4413555fb8a950ae0918578af596522fb9398c14
90a76aaa9afbe9cdb3df5f0a4356018b6637648b
kubelet: fix sidecar restart after kubelet restart When a pod has a sidecar (initContainer with restartPolicy: Always) with a startupProbe, and one or more regular containers crash after a kubelet restart, the kubelet fails to restart the regular containers. RestartCount stays at 0 indefinitely. When ChangeContainerS...
[ { "path": "pkg/kubelet/prober/worker.go", "patch": "@@ -243,12 +243,17 @@ func (w *worker) doProbe(ctx context.Context) (keepGoing bool) {\n \t\t}\n \t}\n \n+\tisRestartableInitContainer := w.isInitContainer() &&\n+\t\tw.container.RestartPolicy != nil &&\n+\t\t*w.container.RestartPolicy == v1.ContainerResta...
2026-03-13T09:17:33
golang/go
9def4acb06bf9167441caa8af37e27b3cdbf8cf0
6bdfdb5f51951584732e6a95a7ee8a5ba5e8cb93
cmd/link: support loading R_LARCH_GOT64_PC_{LO12, HI20} relocs on loong64 On loong64, such relocations are increasingly common when built using an "extreme" code model. To ensure future interoperability with cgo, the linker needs to be made aware of these relocations. Ref: https://github.com/loongson/la-abi-specs/blo...
[ { "path": "src/cmd/internal/obj/fips140.go", "patch": "@@ -356,6 +356,8 @@ func (s *LSym) checkFIPSReloc(ctxt *Link, rel Reloc) {\n \t\tobjabi.R_GOTPCREL,\n \t\tobjabi.R_LOONG64_ADDR_LO, // used with PC-relative load\n \t\tobjabi.R_LOONG64_ADDR_HI, // used with PC-relative load\n+\t\tobjabi....
2026-03-12T07:34:02
swiftlang/swift
9fbfc123d8e4cde4a2bc0a3303f29d8d911918e0
9a6d09fa67ec78b86f5fb3d7b2557c34cc5f1272
[Observation] Correct the dirty bit tracking such that only accessed dirty properties contribute to same isolation change events (#88045) The internal dirty bit tracking state incorrectly flagged all changes as participation when the mutation during observation occurred. This lead to un-releated mutations filtering in...
[ { "path": "stdlib/public/Observation/Sources/Observation/ObservationRegistrar.swift", "patch": "@@ -246,7 +246,7 @@ public struct ObservationRegistrar: Sendable {\n if let ptr = _ThreadLocal.value {\n flagDirty = !$0.trackingLists.contains(ptr)\n } else {\n- flagDirty = tr...
2026-03-25T17:04:13
mrdoob/three.js
9bb24def05c0767625f7905cbe99ff8d64a9f0a4
b80709b08907e86e475cec6506c7b1e07be806be
TSL: Fix get member from array element (#32514)
[ { "path": "src/nodes/core/ArrayNode.js", "patch": "@@ -81,7 +81,7 @@ class ArrayNode extends TempNode {\n \n \t\tif ( this.nodeType === null ) {\n \n-\t\t\tthis.nodeType = this.values[ 0 ].getNodeType( builder );\n+\t\t\treturn this.values[ 0 ].getNodeType( builder );\n \n \t\t}\n \n@@ -101,6 +101,25 @@ cla...
2025-12-09T02:48:13
denoland/deno
852d4994cb559385db0e6dba3b88da00b602f93d
10128048bf30b6325d419d992af616cd2e8b9303
fix(ext/node): use constant-time comparison for GCM auth tag verification (#32817) ## Summary - Replace direct `==` comparison with `subtle::ConstantTimeEq` for AES-GCM authentication tag verification in both AES-128-GCM and AES-256-GCM decrypt paths - The standard `==` operator short-circuits on the first differing ...
[ { "path": "Cargo.lock", "patch": "@@ -2828,6 +2828,7 @@ dependencies = [\n \"signature 2.2.0\",\n \"sm3\",\n \"spki 0.7.3\",\n+ \"subtle\",\n \"thiserror 2.0.12\",\n \"tokio\",\n \"x25519-dalek\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "Cargo.toml", ...
2026-03-18T20:10:18
kubernetes/kubernetes
ee51070ebaddd4ef70403bbc779eb1078a7197e7
9cfdbc0d6ecfaaab403c8ce34d2967751519af12
DRA: re-enable extended resource tests for version skew testing Limiting the tests to kubelet >= 1.36 was a stop-gap solution because the version skew tests had to be updated to enable the feature on kubelet >= 1.34 first. Some tests depend on a bug fix in 1.35 for implicit extended resource.
[ { "path": "test/e2e/dra/dra.go", "patch": "@@ -2237,12 +2237,15 @@ var _ = framework.SIGDescribe(\"node\")(framework.WithLabel(\"DRA\"), func() {\n \t\t}).WithTimeout(time.Minute).Should(gomega.BeTrueBecause(\"extended resource claim should be automatically deleted when pod %s\", cleanupMessage))\n \t}\n \n...
2026-03-10T07:10:43
golang/go
ca3c2a6790cc7744fa340a497b86d0b479c1d4e3
d0bd295ec12d8f5ad2bdb204e14123bf912f52aa
time: fix typo in comment Correct "occasonal" to "occasional" Change-Id: I54b8466a565ad8fd1ae9527c39b935b806062127 GitHub-Last-Rev: 996c59b92407515c7b7e2df23e34789ce280752c GitHub-Pull-Request: golang/go#76426 Reviewed-on: https://go-review.googlesource.com/c/go/+/723520 Reviewed-by: Mark Freeman <markfreeman@google....
[ { "path": "src/time/time.go", "patch": "@@ -1279,7 +1279,7 @@ func daysBefore(m Month) int {\n \t// which is:\n \t//\t0 31 61 92 122 153 183 214 245 275 306 336 367\n \t// This is almost exactly 367/12×(m-1) except for the\n-\t// occasonal off-by-one suggesting there may be an\n+\t// occasional off-by-on...
2025-11-23T18:28:56
mrdoob/three.js
ebb8b45c49e4a06b8ffb36353f043605b5cfe773
fcdaf6c0a11eacc6cf984a87049147446d844f9c
Fixed typo in BufferGeometry.js (#32477) Co-authored-by: Saurav Kumar <magnus@Sauravs-MacBook-Pro.local> Co-authored-by: Michael Herzog <michael.herzog@human-interactive.org>
[ { "path": "src/core/BufferGeometry.js", "patch": "@@ -134,7 +134,7 @@ class BufferGeometry extends EventDispatcher {\n \t\t * This dictionary holds the morph targets of the geometry.\n \t\t *\n \t\t * Note: Once the geometry has been rendered, the morph attribute data cannot\n-\t\t * be changed. You will ha...
2025-12-04T17:39:03
swiftlang/swift
e394b67f75624325fb55ce12a13b92aa4487581f
13553fe86c3e48bf16785a1e36cade8fc687aec2
test: correct `%plugin` definition This is a host property, not a target property. When cross-testing a Unix-like environment on Windows, we find that we load the plugin from the wrong location. Correct the definition to use the toolchain host as the basis for the decision.
[ { "path": "test/CAS/lit.local.cfg", "patch": "@@ -1,14 +1,10 @@\n # Make a local copy of the substitutions.\n config.substitutions = list(config.substitutions)\n \n-def get_target_os():\n- import re\n- (run_cpu, run_vendor, run_os, run_version) = re.match('([^-]+)-([^-]+)-([^0-9]+)(.*)', config.varian...
2026-03-23T16:53:33