repo
stringclasses
11 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
59.2k
files
listlengths
1
300
timestamp
timestamp[s]date
2016-04-11 04:39:55
2026-04-09 07:34:40
nodejs/node
d2ff9daf589af059cacd58972640c8dbc6c7ba88
24ded11b66af8a80e99f987f3e12acab74b8f920
sqlite: fix crash session extension callbacks with workers PR-URL: https://github.com/nodejs/node/pull/59848 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com>
[ { "path": "src/node_sqlite.cc", "patch": "@@ -1668,26 +1668,28 @@ void Backup(const FunctionCallbackInfo<Value>& args) {\n job->ScheduleBackup();\n }\n \n+struct ConflictCallbackContext {\n+ std::function<bool(std::string_view)> filterCallback;\n+ std::function<int(int)> conflictCallback;\n+};\n+\n // t...
2025-09-23T14:41:39
electron/electron
5e862f398ecf2a8b564ec9c6da5ef9960e850cc7
61c245761cadbc0847f19b017b220e1d36cdcb42
fix: Reland "[accessibility] Platform node lifetime cleanups" (#47590) Reland "[accessibility] Platform node lifetime cleanups" https://chromium-review.googlesource.com/c/chromium/src/+/6462552
[ { "path": "shell/browser/ui/webui/accessibility_ui.cc", "patch": "@@ -306,7 +306,8 @@ std::string RecursiveDumpAXPlatformNodeAsString(\n return \"\";\n }\n std::string str(2 * indent, '+');\n- std::string line = node->GetDelegate()->GetData().ToString();\n+ ui::AXPlatformNodeDelegate* const node_d...
2025-06-29T19:57:48
vercel/next.js
5eb6eefdafd594cddf2da15b9a4aefc90d67a137
c6de62407adfe01849d9c0ff9d3bbc199ac20665
Revert "fix(router): support BigInt in query parameters" (#89283)
[ { "path": "packages/next/src/shared/lib/router/utils/querystring.ts", "patch": "@@ -24,8 +24,7 @@ function stringifyUrlQueryParam(param: unknown): string {\n \n if (\n (typeof param === 'number' && !isNaN(param)) ||\n- typeof param === 'boolean' ||\n- typeof param === 'bigint'\n+ typeof param...
2026-01-30T10:32:59
golang/go
1de9585be24aaa11ecc79a5fe976713b8e7fd446
e38c38f0e539f599216247b5293d5c78aa82468b
runtime: prevent calls to GOMAXPROCS while clearing P trace state Currently, between the forEachP that ensures every P has a status in the trace and readying dead Ps for the next generation, there's a big window where GOMAXPROCS could run and change the number of Ps. In such circumstances, P state will not get properl...
[ { "path": "src/runtime/trace.go", "patch": "@@ -440,11 +440,6 @@ func StartTrace() error {\n \n \t// Record the heap goal so we have it at the very beginning of the trace.\n \ttl.HeapGoal()\n-\n-\t// Make sure a ProcStatus is emitted for every P, while we're here.\n-\tfor _, pp := range allp {\n-\t\ttl.writ...
2025-12-11T02:51:27
facebook/react
a947eba4f2c8741d2c61a3b33fd79cf13bf9f39d
374dfe8edf8beef62e5bb312f99c600a232f353f
Fix CI (#33578)
[ { "path": ".github/workflows/runtime_build_and_test.yml", "patch": "@@ -301,10 +301,12 @@ jobs:\n path: |\n **/node_modules\n key: runtime-and-compiler-node_modules-v6-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('yarn.lock', 'compiler/yarn.lock') }}\n- restore-...
2025-06-19T21:40:59
electron/electron
61c245761cadbc0847f19b017b220e1d36cdcb42
7c55b24be25d6df7ee6de51bdbec4c8215425273
test: fix nan tests on macOS (#47583)
[ { "path": "script/nan-spec-runner.js", "patch": "@@ -46,20 +46,23 @@ async function main () {\n const platformFlags = [];\n if (process.platform === 'darwin') {\n const sdkPath = path.resolve(BASE, 'out', outDir, 'sdk', 'xcode_links');\n- const sdks = (await fs.promises.readdir(sdkPath)).filter(f...
2025-06-29T19:57:44
nodejs/node
0a72b2cd7b5ff8a53f501ffb916d5e9ce2ed2f71
3c0c1609df3c0f5fa5b0ea94d4a2cbae2da0086a
doc: fix typo in section on microtask order PR-URL: https://github.com/nodejs/node/pull/59932 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "doc/api/process.md", "patch": "@@ -3013,7 +3013,7 @@ is drained immediately after.\n \n So in CJS modules `process.nextTick()` callbacks are always run before `queueMicrotask()` ones.\n However since ESM modules are processed already as part of the microtask queue, there\n-`queueMicrotask()` call...
2025-09-23T10:33:13
golang/go
e38c38f0e539f599216247b5293d5c78aa82468b
c0ba519764536b8ce7ba2a7fe3748f07672f7b6e
internal/trace: correctly handle GoUndetermined for GoroutineSummary Currently the trace summarization incorrectly handles GoUndetermined by treating it too much like GoNotExist. In particular, it should be accumulating all the time since the start of the trace in a particular bucket, but it doesn't, so that instead g...
[ { "path": "src/internal/trace/summary.go", "patch": "@@ -321,16 +321,47 @@ func (s *Summarizer) Event(ev *Event) {\n \t\t\t// Handle transition out.\n \t\t\tg := s.gs[id]\n \t\t\tswitch old {\n-\t\t\tcase GoUndetermined, GoNotExist:\n+\t\t\tcase GoUndetermined:\n \t\t\t\tg = &GoroutineSummary{ID: id, gorout...
2025-12-10T02:50:56
vercel/next.js
a1e958980d953a2d59f7c6a65000633e55425b59
16087898734a7f048ee4a9225036eb22f0d389d2
fix(router): support BigInt in query parameters (#89213) **What changed?** `stringifyUrlQueryParam` now handles `bigint` type properly. **Why?** BigInt is a valid JavaScript primitive but was being converted to empty string: Before: ```js stringifyUrlQueryParam(123n) // '' ❌ ``` After: ```js stringifyUrlQueryParam(...
[ { "path": "packages/next/src/shared/lib/router/utils/querystring.ts", "patch": "@@ -24,7 +24,8 @@ function stringifyUrlQueryParam(param: unknown): string {\n \n if (\n (typeof param === 'number' && !isNaN(param)) ||\n- typeof param === 'boolean'\n+ typeof param === 'boolean' ||\n+ typeof para...
2026-01-30T00:17:54
facebook/react
2bee34867d30083ce01232baccb72b6fa696456b
d37faa041bce86c1cbb05fdbc839440c9d9de9cf
[compiler] Cleanup debugging code (#33571) Removes unnecessary debugging code in the new inference passes now that they've stabilized more. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33571). * _...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferMutationAliasingEffects.ts", "patch": "@@ -57,7 +57,6 @@ import {\n import {\n printAliasingEffect,\n printAliasingSignature,\n- printFunction,\n printIdentifier,\n printInstruction,\n printInstructionValue,\n@@ -194,19 +...
2025-06-18T23:00:55
nodejs/node
81af7b93c57f1dd5f363be05d276bca9046a8578
54c456702c7fe6b9b0ef026f864dc1bc9590c88e
http,https: handle IPv6 with proxies This simplifies the proxy configuration handling code, adds tests to make sure the proxy support works with IPv6 and throws correct errors for invalid proxy IPs. Drive-by: remove useless properties from ProxyConfig PR-URL: https://github.com/nodejs/node/pull/59894 Refs: https://g...
[ { "path": "lib/https.js", "patch": "@@ -68,7 +68,7 @@ let debug = require('internal/util/debuglog').debuglog('https', (fn) => {\n const net = require('net');\n const { URL, urlToHttpOptions, isURL } = require('internal/url');\n const { validateObject } = require('internal/validators');\n-const { isIP, isIPv...
2025-09-22T23:19:26
electron/electron
4dccccadbb9b011d3a212cfbc592eb2d0ed81aad
79cd6a261415c3a60b1b52d79f6e2c21d68398d0
chore: bump node to v22.17.0 (main) (#47557) * chore: bump node in DEPS to v22.17.0 * build: use //third_party/simdutf by default in GN https://github.com/nodejs/node/pull/58115 * chore: adjust crypto specs: - https://github.com/nodejs/node/pull/58117 - https://github.com/nodejs/node/pull/58387 * deps: update lib...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '139.0.7256.0',\n 'node_version':\n- 'v22.16.0',\n+ 'v22.17.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1 }, { "p...
2025-06-28T14:33:09
golang/go
f105dfd048ce6ca9a8115d7fdd7a4cb60e84ba40
af14f6791108ece9661590cbf922806492954ea6
lib/fips140: freeze v1.1.0-rc1 FIPS 140 module zip file Fixes #76769 Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-longtest Change-Id: I16b0e9463e2e10ee5a6f20967fb6377b6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/729180 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gs...
[ { "path": "lib/fips140/fips140.sum", "patch": "@@ -10,3 +10,4 @@\n #\tgo test cmd/go/internal/fips140 -update\n #\n v1.0.0-c2097c7c.zip daf3614e0406f67ae6323c902db3f953a1effb199142362a039e7526dfb9368b\n+v1.1.0-rc1.zip ea94f8c3885294c9efe1bd8f9b6e86daeb25b6aff2aeb20707cd9a5101f6f54e", "additions": 1, ...
2025-12-10T21:49:31
vercel/next.js
516b2ea3b28f2b44487551ab79ff39d5318f457a
d67d0e53ed9c32ad17f3e5ad26102d5f2b70f6d5
fix(build): format runAfterProductionCompile duration as human-readable time (#89232) This change should unifiy the runAfterProductionCompile output to follow the same style as other times printed in the build logs. Currently build logs look like ``` ✓ Compiled successfully in 89s Running next.config.js provided ru...
[ { "path": "packages/next/src/build/after-production-compile.ts", "patch": "@@ -6,6 +6,7 @@ import createSpinner from './spinner'\n import isError from '../lib/is-error'\n import type { Telemetry } from '../telemetry/storage'\n import { EVENT_BUILD_FEATURE_USAGE } from '../telemetry/events/build'\n+import { ...
2026-01-29T23:57:13
facebook/react
3a2ff8b51b5ab54c22f55a5f826c53419f718887
cc3806377a43f0bd339d54ceaf2e1e16b0b113bf
[compiler] Fix <ValidateMemoization> (#33547) By accident we were only ever checking the compiled output, but the intention was in general to be able to compare memoization with/without forget. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](h...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/new-mutability/todo-control-flow-sensitive-mutation.expect.md", "patch": "@@ -23,14 +23,9 @@ function Component({a, b, c}: {a: number; b: number; c: number}) {\n \n return (\n <>\n- <ValidateMemoization input...
2025-06-18T23:00:36
golang/go
72c83bcc80d0a195269b168423446476808a11e8
b2a697bd06e01abade1d436f01be7186b1c38842
go/types, types2: put Named.finite behind Named.mu This change adds another leaf state to named types which indicates whether the type's size finiteness is known. Without this, writes to Named.finite can result in a clobbered value. While benign in terms of functionality, it triggers the race detector. Fixes #76773 ...
[ { "path": "src/cmd/compile/internal/types2/cycles.go", "patch": "@@ -106,17 +106,13 @@ func (check *Checker) directCycle(tname *TypeName, pathIdx map[*TypeName]int) {\n // TODO(markfreeman): Can the value cached on Named be used in validType / hasVarSize?\n \n // finiteSize returns whether a type has finite...
2025-12-10T18:29:01
electron/electron
79cd6a261415c3a60b1b52d79f6e2c21d68398d0
2ba8fe914056452ec6f8b949ab2844afac59e73c
refactor: sync IsKillURL() with upstream impl in extension_tab_util.cc (#47580) Use base::MakeFixedFlatSet()
[ { "path": "shell/browser/extensions/api/tabs/tabs_api.cc", "patch": "@@ -11,7 +11,7 @@\n #include <vector>\n \n #include \"base/command_line.h\"\n-#include \"base/containers/contains.h\"\n+#include \"base/containers/fixed_flat_set.h\"\n #include \"base/strings/pattern.h\"\n #include \"base/types/expected_ma...
2025-06-27T20:49:41
nodejs/node
55cd2e589ec6a82155dcc686988fbfafee973a5a
c81b1dff65e427cbbb89bcb1b4ac5e5a0cc34b51
dgram: restore buffer optimization in fixBufferList Restore the Buffer.isBuffer() check to avoid unnecessary Buffer.from() calls when the input is already a Buffer. This improves performance by 30-50% for buffer-heavy UDP operations. Includes benchmark test for fixBufferList function to verify the performance improve...
[ { "path": "benchmark/dgram/send-types.js", "patch": "@@ -0,0 +1,52 @@\n+'use strict';\n+\n+const common = require('../common.js');\n+const dgram = require('dgram');\n+const { Buffer } = require('buffer');\n+\n+const bench = common.createBenchmark(main, {\n+ type: ['string', 'buffer', 'mixed', 'typedarray']...
2025-09-21T17:50:41
vercel/next.js
d67d0e53ed9c32ad17f3e5ad26102d5f2b70f6d5
59c48b73b4a01b4b5b9277eff1e62d75097ba812
fix: CSRF origin matching should be case-insensitive (#89127) ## Summary This PR fixes ~two~ one bug~s~ in the `isCsrfOriginAllowed` function used for Server Actions CSRF protection: 1. **Case sensitivity bug**: Domain matching was case-sensitive, but DNS names are case-insensitive per [RFC 1035](https://datatracker...
[ { "path": "packages/next/src/server/app-render/csrf-protection.test.ts", "patch": "@@ -77,4 +77,13 @@ describe('isCsrfOriginAllowed', () => {\n expect(isCsrfOriginAllowed('vercel.com', ['*'])).toBe(false)\n expect(isCsrfOriginAllowed('vercel.com', ['**'])).toBe(false)\n })\n+\n+ it('should match ...
2026-01-29T23:49:55
rust-lang/rust
4a439b640fdc6d09437b5131a3809efbaddabbfa
bcf3d36c997dd9b5db4bb7f40cb91dd4cf46a305
Inline and remove `DepGraphData::try_mark_parent_green`. It has a single call site. And also remove all the `debug!` calls that clutter up the code. The end result is much easier to read, with `try_mark_previous_green` now recursively calling itself directly, instead of indirectly via `try_mark_parent_green`.
[ { "path": "compiler/rustc_middle/src/dep_graph/graph.rs", "patch": "@@ -18,7 +18,7 @@ use rustc_macros::{Decodable, Encodable};\n use rustc_serialize::opaque::{FileEncodeResult, FileEncoder};\n use rustc_session::Session;\n use rustc_span::Symbol;\n-use tracing::{debug, instrument};\n+use tracing::instrumen...
2026-03-20T06:09:07
facebook/react
0e7cdebb32817de0e0bbee3b362f0959e36c959c
81d81151169be4b1b0ad8bd6439e94cfc982bb5a
[compiler] Repro for case of lost precision in new inference (#33522) In comparing compilation output of the old/new inference models I found this case (heavily distilled into a fixture). Roughly speaking the scenario is: * Create a mutable object `x` * Extract part of that object and pass it to a hook/jsx so that _p...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/new-mutability/repro-jsx-captures-value-mutated-later.expect.md", "patch": "@@ -0,0 +1,53 @@\n+\n+## Input\n+\n+```javascript\n+// @flow @enableNewMutationAliasingModel\n+\n+import {identity, Stringify, useFragment} fro...
2025-06-18T22:43:33
golang/go
c39fe18fea16d6bdbd5526a7b7d7b59e84ae0144
db0ab834d67131676ab2001ab8e72b197b22ce54
crypto/mlkem/mlkemtest: error out in fips140=only mode Updates #70514 Change-Id: I1d1a0b4a2c7ee4cb6e8e0700dd3463a46a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/728502 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Roland Shoemaker <roland@golan...
[ { "path": "src/crypto/mlkem/mlkemtest/mlkemtest.go", "patch": "@@ -7,6 +7,7 @@ package mlkemtest\n \n import (\n \tfips140mlkem \"crypto/internal/fips140/mlkem\"\n+\t\"crypto/internal/fips140only\"\n \t\"crypto/mlkem\"\n \t\"errors\"\n )\n@@ -20,6 +21,9 @@ func Encapsulate768(ek *mlkem.EncapsulationKey768, ...
2025-12-08T23:39:54
vercel/next.js
59c48b73b4a01b4b5b9277eff1e62d75097ba812
dcbe6c6b767f1fe1c066f286e13f0c27efbfb80a
test: add resume-data-cache failing deploy test (#89243) This deployment test has been failing very recently. This PR adds the test case to the deployment test manifest to unblock sync. Will continue deflaking at this PR at https://github.com/vercel/next.js/pull/89187 x-ref: [Datadog](https://app.datadoghq.com/ci/t...
[ { "path": "test/deploy-tests-manifest.json", "patch": "@@ -86,6 +86,11 @@\n },\n \"test/e2e/middleware-rewrites/test/index.test.ts\": {\n \"failed\": [\"Middleware Rewrite should handle catch-all rewrite correctly\"]\n+ },\n+ \"test/e2e/app-dir/resume-data-cache/resume-data-cache.test.ts...
2026-01-29T23:37:16
electron/electron
7a274a711cf28bfc569c1d4c07f8c8bb329de0d9
bc499ffb8aa2fdc8674722b0c7f3714ebd792f4d
fix: revert upstream MacOS mouse event routing (#47560) * fix: revert upstream MacOS mouse event routing * fix: reduce patch surface area * chore: update patches
[ { "path": "patches/chromium/.patches", "patch": "@@ -133,3 +133,4 @@ fix_win32_synchronous_spellcheck.patch\n chore_grandfather_in_electron_views_and_delegates.patch\n refactor_patch_electron_permissiontypes_into_blink.patch\n revert_views_remove_desktopwindowtreehostwin_window_enlargement.patch\n+build_par...
2025-06-26T09:41:11
nodejs/node
c81b1dff65e427cbbb89bcb1b4ac5e5a0cc34b51
cb5c8ecc5ae0efe2122f6e9c8dd9fbb519d21430
vm: explain how to share promises between contexts w/ afterEvaluate PR-URL: https://github.com/nodejs/node/pull/59801 Fixes: https://github.com/nodejs/node/issues/59541 Refs: https://issues.chromium.org/issues/441679231 Refs: https://groups.google.com/g/v8-dev/c/YIeRg8CUNS8/m/rEQdFuNZAAAJ Refs: https://tc39.es/ecma262...
[ { "path": "doc/api/vm.md", "patch": "@@ -1946,6 +1946,68 @@ inside a `vm.Context`, functions passed to them will be added to global queues,\n which are shared by all contexts. Therefore, callbacks passed to those functions\n are not controllable through the timeout either.\n \n+### When `microtaskMode` is `...
2025-09-19T14:47:31
facebook/react
81d81151169be4b1b0ad8bd6439e94cfc982bb5a
8f4ce72f0bfe02e51e9a7c704dc33122d909f292
[compiler] Fix infinite loop due to uncached applied signatures (#33518) When we apply new aliasing signatures we can generate new temporaries, which causes the abstract memory model to not converge. The fix is to make sure we cache the applications of these signatures. --- [//]: # (BEGIN SAPLING FOOTER) Stack create...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/AliasingEffects.ts", "patch": "@@ -8,6 +8,7 @@\n import {CompilerErrorDetailOptions} from '../CompilerError';\n import {\n FunctionExpression,\n+ GeneratedSource,\n Hole,\n IdentifierId,\n ObjectMethod,\n@@ -18,6 +19,7 @@ import...
2025-06-18T22:43:23
golang/go
cd873cf7e98c3fd3e8138e9d97d6a974a1ee0b53
550c0c898b61628aed108aca7d8dbef32458bc09
crypto/internal/fips140/aes/gcm: don't panic on bad nonces out of FIPS 140-3 mode The enforcement is good beyond compliance if it is correct, but I am more nervous about accidental DoS due to mismatches between how the caller calculates a nonce and how the enforcement expects it to be calculated. We need to have this...
[ { "path": "src/crypto/cipher/gcm_fips140v2.0_test.go", "patch": "@@ -8,15 +8,32 @@ package cipher_test\n \n import (\n \t\"crypto/cipher\"\n+\t\"crypto/internal/cryptotest\"\n \t\"crypto/internal/fips140\"\n \tfipsaes \"crypto/internal/fips140/aes\"\n \t\"crypto/internal/fips140/aes/gcm\"\n \t\"encoding/bin...
2025-12-08T23:47:26
nodejs/node
cb5c8ecc5ae0efe2122f6e9c8dd9fbb519d21430
1d8df51e4238a524253396108a8ab94298effb49
vm: "afterEvaluate", evaluate() return a promise from the outer context Consider the default context A with a microtask queue QA, and a context B with its own microtask queue QB. Context B is constructed with vm.createContext(..., {microtaskMode: "afterEvaluate"}). The evaluation in context B can be performed via vm....
[ { "path": "src/module_wrap.cc", "patch": "@@ -759,8 +759,48 @@ void ModuleWrap::Evaluate(const FunctionCallbackInfo<Value>& args) {\n MaybeLocal<Value> result;\n auto run = [&]() {\n MaybeLocal<Value> result = module->Evaluate(context);\n- if (!result.IsEmpty() && microtask_queue)\n+\n+ Local<...
2025-09-10T17:51:53
vercel/next.js
dcbe6c6b767f1fe1c066f286e13f0c27efbfb80a
1565d63467e140d874fd28dd0842e2966dff8208
test: add client-cache.defaults failing deploy test (#89242) This deployment test has been failing very recently since the first attempt of [v16.1.5](https://github.com/vercel/next.js/actions/runs/21373599266/attempts/2). Tried deflaking at https://github.com/vercel/next.js/pull/87412, but seems to have no effect. Thi...
[ { "path": "test/deploy-tests-manifest.json", "patch": "@@ -3,7 +3,8 @@\n \"suites\": {\n \"test/e2e/app-dir/app-client-cache/client-cache.defaults.test.ts\": {\n \"failed\": [\n- \"app dir client cache semantics (default semantics) prefetch={true} should re-use the cache for the full page...
2026-01-29T23:36:38
electron/electron
bc499ffb8aa2fdc8674722b0c7f3714ebd792f4d
0a74e91580984c14e73e868b2874347824d786f0
docs: fix `--experimental-network-inspection` spelling (#47565) doc: fix `--experimental-network-inspection` spelling
[ { "path": "docs/api/command-line-switches.md", "patch": "@@ -292,7 +292,7 @@ Specify ways of the inspector web socket url exposure.\n \n By default inspector websocket url is available in stderr and under /json/list endpoint on `http://host:port/json/list`.\n \n-### `--experimental-network-inspector`\n+### ...
2025-06-26T09:40:55
facebook/react
8f4ce72f0bfe02e51e9a7c704dc33122d909f292
7ce2a63acc199a4f8829625470ea56a347632340
[commit] Improve error for hoisting violations (#33514) The previous error for hoisting violations pointed only to the variable declaration, but didn't show where the value was accessed before that declaration. We now track where each hoisted variable is first accessed and report two errors, one for the reference and ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferMutationAliasingEffects.ts", "patch": "@@ -38,6 +38,7 @@ import {\n import {\n eachInstructionValueLValue,\n eachInstructionValueOperand,\n+ eachTerminalOperand,\n eachTerminalSuccessor,\n } from '../HIR/visitors';\n import {...
2025-06-18T22:24:41
nodejs/node
1d8df51e4238a524253396108a8ab94298effb49
aa6838c25203e997847531421b752c62e88f5763
test: testcase demonstrating issue 59541 Check that we lose the execution flow in the outer context, upon resolving a promise created in in the inner context. PR-URL: https://github.com/nodejs/node/pull/59801 Fixes: https://github.com/nodejs/node/issues/59541 Refs: https://issues.chromium.org/issues/441679231 Refs: h...
[ { "path": "test/parallel/test-vm-module-after-evaluate.js", "patch": "@@ -0,0 +1,34 @@\n+// Flags: --experimental-vm-modules\n+'use strict';\n+\n+// https://github.com/nodejs/node/issues/59541\n+//\n+// Promises created in a context using microtaskMode: \"aferEvaluate\" (meaning it\n+// has its own microtas...
2025-09-07T23:09:42
vercel/next.js
1565d63467e140d874fd28dd0842e2966dff8208
2b0edf628e201b56bdeacc62a5fb3d2597132761
refactor: Improve templates layout flexibility (#89245) ### What Switches the `create-next-app` templates (`app-tw`, `app`) to flex-based layouts instead of `min-height: 100vh`. ### Why At Clerk, we ship a template on top of `create-next-app` that adds a header with sign-in/sign-up links to the root layout. The cur...
[ { "path": "packages/create-next-app/templates/app-tw/js/app/layout.js", "patch": "@@ -18,9 +18,9 @@ export const metadata = {\n \n export default function RootLayout({ children }) {\n return (\n- <html lang=\"en\">\n+ <html lang=\"en\" className=\"h-full\">\n <body\n- className={`${geis...
2026-01-29T23:33:26
golang/go
36bca3166e18db52687a4d91ead3f98ffe6d00b8
b9693a2d9a89168b86cf01033b8420bf8db652d6
cmd: fix some issues in the comments Change-Id: Id2c4152b43c7ee1a687e49da7dda5a690e554231 Reviewed-on: https://go-review.googlesource.com/c/go/+/727900 Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Keith Randall <khr@golang.org> LUCI-TryBot-Result: Go LUCI...
[ { "path": "src/cmd/compile/internal/inline/inlheur/analyze_func_params.go", "patch": "@@ -122,9 +122,9 @@ func (pa *paramsAnalyzer) findParamIdx(n *ir.Name) int {\n \n type testfType func(x ir.Node, param *ir.Name, idx int) (bool, bool)\n \n-// paramsAnalyzer invokes function 'testf' on the specified expres...
2025-12-08T04:18:59
facebook/react
7ce2a63acc199a4f8829625470ea56a347632340
b067c6fe7962ce2c8ddca6deeadcb21afe2538f8
[compiler] update fixtures (#33573) --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33573). * #33571 * #33558 * #33547 * #33543 * #33533 * #33532 * #33530 * #33526 * #33522 * #33518 * #33514 * __->__ ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/inner-function/nullable-objects/array-map-named-callback-cross-context.expect.md", "patch": "@@ -57,67 +57,62 @@ import { Stringify } from \"shared-runtime\";\n * - cb1 is not assumed to be called since it's only used ...
2025-06-18T22:24:30
electron/electron
035879357ecdaa60b9e06185fca5375d161542fd
e4c37e4b38195bd0cf7f0ae8257ac6d7fd5e4603
chore: bump chromium to 139.0.7256.0 (main) (#47481) * chore: bump chromium in DEPS to 139.0.7242.0 * chore: update render_widget_host_view_mac.patch no code changes; just updating patch context Do a cleanup pass on the history swiper code | https://chromium-review.googlesource.com/c/chromium/src/+/6604367 * chore...
[ { "path": ".github/actions/free-space-macos/action.yml", "patch": "@@ -57,8 +57,19 @@ runs:\n sudo rm -rf $TMPDIR/del-target\n \n sudo rm -rf /Applications/Safari.app\n+ sudo rm -rf /Applications/Xcode_16.1.app\n+ sudo rm -rf /Applications/Xcode_16.3.app\n+ sudo rm -rf /...
2025-06-25T15:12:49
nodejs/node
2a0fcdbc883db4d09d99b651be23555b4cb22f69
36256230b4cab235f4e8248b4289839771661521
http2: fix allowHttp1+Upgrade, broken by shouldUpgradeCallback This is required to use HTTP/1 websockets on an HTTP/2 server, which is fairly common as websockets over HTTP/2 is much less widely supported. This was broken by the recent shouldUpgradeCallback HTTP/1 addition, which wasn't correctly added to the corresp...
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -3374,6 +3374,9 @@ class Http2SecureServer extends TLSServer {\n this.headersTimeout = 60_000; // Minimum between 60 seconds or requestTimeout\n this.requestTimeout = 300_000; // 5 minutes\n this.connectionsCheckingInterval = 30_000; // ...
2025-09-20T18:18:23
golang/go
b9693a2d9a89168b86cf01033b8420bf8db652d6
1274d58dacc92204f5bb233b22a93c30a37f34e5
runtime: on AIX check isarchive before calling libpreinit On AIX, all externally linked programs call _rt0_ppc64_aix_lib, as seen in runtime/cgo/gcc_aix_ppc64.c. The idea is that we only do the library initialization is isarchive is set. However, before this CL, AIX programs would call libpreinit before checking isarc...
[ { "path": "src/runtime/asm_ppc64x.s", "patch": "@@ -30,9 +30,6 @@ TEXT _rt0_ppc64x_lib(SB),NOSPLIT|NOFRAME,$0\n \tMOVD\t$runtime·reginit(SB), R12\n \tMOVD\tR12, CTR\n \tBL\t(CTR)\n-\tMOVD\t$runtime·libpreinit(SB), R12\n-\tMOVD\tR12, CTR\n-\tBL\t(CTR)\n \n #ifdef GOOS_aix\n \t// See runtime/cgo/gcc_aix_ppc64...
2025-12-07T06:00:20
vercel/next.js
b0ebf2a822dd82283d2122323c3d51682dbcb13b
0e457e95a96089eea85159635d7b75838699dd87
fix: fully static pages should emit & serve static rsc payloads (#89202) This restores fast navigations to fully static PPR routes in Cache Components, even when prefetch hasn’t completed or `prefetch={false}` is used. In legacy versions of PPR, the `prefetchDataRoute` entries would be populated with `.prefetch.rsc` v...
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -1233,6 +1233,7 @@ export async function handleBuildComplete({\n initialHeaders,\n initialStatus,\n dataRoute,\n+ prefetchDataRoute,\n renderingMode,\n allowHeader,\n ...
2026-01-29T22:26:40
facebook/react
b067c6fe7962ce2c8ddca6deeadcb21afe2538f8
e081cb344652dc3003d9194cca618292a889ff2a
[compiler] Improve error message for mutating hook args/return (#33513) The previous error message was generic, because the old style function signature didn't support a way to specify a reason alongside a freeze effect. This meant we could only say why a value was frozen for instructions, but not hooks which use func...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIR.ts", "patch": "@@ -1388,6 +1388,16 @@ export enum ValueReason {\n */\n JsxCaptured = 'jsx-captured',\n \n+ /**\n+ * Argument to a hook\n+ */\n+ HookCaptured = 'hook-captured',\n+\n+ /**\n+ * Return value of a hook\n+ */\n+ ...
2025-06-18T20:04:53
electron/electron
51fbc964a65455e1f7533538bdafd2a1c896faef
3e8e87d186ab3b7c79d2b96b931e2bf98fda3f26
fix: ensure `/dev/null` fd is closed on failure (#47525) * fix: ensure /dev/null fd is closed on failure * chore: ignore closehandle for windows --------- Co-authored-by: Robo <hop2deep@gmail.com>
[ { "path": "shell/browser/api/electron_api_utility_process.cc", "patch": "@@ -78,6 +78,9 @@ UtilityProcessWrapper::UtilityProcessWrapper(\n base::FileHandleMappingVector fds_to_remap;\n #endif\n for (const auto& [io_handle, io_type] : stdio) {\n+ if (io_handle == IOHandle::STDIN)\n+ continue;\n+\...
2025-06-24T15:44:50
golang/go
1274d58dacc92204f5bb233b22a93c30a37f34e5
9e0981230803265f3245193e1d61cc3599c9ca54
go/types, types2: add check for finite size at value observance Each type must be representable by a finite amount of Go source code after replacing all alias type names, value names, and embedded interfaces (per #56103) with the RHS from their respective declarations ("expansion"); otherwise the type is invalid. Fur...
[ { "path": "src/cmd/compile/internal/types2/cycles.go", "patch": "@@ -102,3 +102,43 @@ func (check *Checker) directCycle(tname *TypeName, pathIdx map[*TypeName]int) {\n \t\t}\n \t}\n }\n+\n+// TODO(markfreeman): Can the value cached on Named be used in validType / hasVarSize?\n+\n+// finiteSize returns wheth...
2025-12-03T20:14:22
nodejs/node
4612c793cb9007a91cb3fd82afe518440473826e
897932c4848ae4eb4a27a399ac165fc5efe264a2
vm: expose hasTopLevelAwait on SourceTextModule Expose `hasTopLevelAwait` and `hasAsyncGraph` on `vm.SourceTextModule`. `hasAsyncGraph` requires the module to be instantiated first. PR-URL: https://github.com/nodejs/node/pull/59865 Fixes: https://github.com/nodejs/node/issues/59656 Reviewed-By: James M Snell <jasnel...
[ { "path": "doc/api/vm.md", "patch": "@@ -920,6 +920,36 @@ to disallow any changes to it.\n Corresponds to the `[[RequestedModules]]` field of [Cyclic Module Record][]s in\n the ECMAScript specification.\n \n+### `sourceTextModule.hasAsyncGraph()`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* Returns: {bool...
2025-09-19T09:12:17
facebook/react
7b67dc92b0339062ce8b6a1d64a458d7c8f04561
7c28c154651f54a63a6823e4dc54faa218c05a89
[commit] Better error message for invalid hoisting (#33504) We're already tracking which variables are hoisted context variables, so if we see a mutation of a frozen value we can emit a custom error message to help users identify the problem. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sap...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferMutationAliasingEffects.ts", "patch": "@@ -901,23 +901,44 @@ function applyEffect(\n console.log(prettyFormat(state.debugAbstractValue(value)));\n }\n \n- const reason = getWriteErrorReason({\n- kin...
2025-06-18T20:02:32
vercel/next.js
f17694d61ff6b980721746ac6c9efa224ea01316
0e1b6d6afcd3a265392b5559ff15491ea4b3fb9f
Optimistic routing: client-side route prediction (#88965) Based on: - https://github.com/vercel/next.js/pull/88834 - https://github.com/vercel/next.js/pull/88989 - https://github.com/vercel/next.js/pull/88998 --- Adds optimistic routing, enabling the client to predict route structure for URLs that haven't been pref...
[ { "path": "packages/next/src/build/define-env.ts", "patch": "@@ -357,6 +357,8 @@ export function getDefineEnv({\n config.experimental.transitionIndicator ?? false,\n 'process.env.__NEXT_GESTURE_TRANSITION':\n config.experimental.gestureTransition ?? false,\n+ 'process.env.__NEXT_OPTIMISTI...
2026-01-29T22:05:28
electron/electron
93d5152a25eeb74e7bee54b228aaa998acafe391
fb651242348cb3931534993124d2c334156bf9c5
fix: `chrome://accessibility` loading correctly (#47497) fix: chrome://accessibility loading correctly
[ { "path": "shell/browser/ui/webui/accessibility_ui.cc", "patch": "@@ -41,6 +41,7 @@\n #include \"shell/browser/window_list.h\"\n #include \"ui/accessibility/accessibility_features.h\"\n #include \"ui/accessibility/ax_updates_and_events.h\"\n+#include \"ui/accessibility/platform/ax_platform.h\"\n #include \"...
2025-06-23T12:38:29
facebook/react
7c28c154651f54a63a6823e4dc54faa218c05a89
90ccbd71c158a8aeb1bf3ec704011ddd58842b71
[compiler] Fix AnalyzeFunctions to fully reset context identifiers (#33500) AnalyzeFunctions had logic to reset the mutable ranges of context variables after visiting inner function expressions. However, there was a bug in that logic: InferReactiveScopeVariables makes all the identifiers in a scope point to the same m...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/AnalyseFunctions.ts", "patch": "@@ -42,8 +42,16 @@ export default function analyseFunctions(func: HIRFunction): void {\n * Reset mutable range for outer inferReferenceEffects\n */\n for (const operand of i...
2025-06-18T20:02:23
electron/electron
fb651242348cb3931534993124d2c334156bf9c5
93f4b3cf9ff4087ffdd1b6ce6e11df4f1de27013
chore: fix nightly issues getting unsupported label comment (#47503) * chore: fix nightly issues getting unsupported label comment * chore: address review feedback
[ { "path": ".github/workflows/issue-opened.yml", "patch": "@@ -60,6 +60,8 @@ jobs:\n // It's possible for multiple versions to be listed -\n // for now check for comma or space separated version.\n const versions = electronVersion.split(/, | /);\n+ let h...
2025-06-23T12:22:41
vercel/next.js
e5043d0e4d62c4fd718544b88d72d3b8488bdbac
ab4b3726ea7408614c0d763b32e2c5472ac5c76d
[ci] Clear Jest transform cache (#89247) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Impro...
[ { "path": ".github/workflows/build_reusable.yml", "patch": "@@ -317,9 +317,10 @@ jobs:\n timeout-minutes: ${{ inputs.timeout_minutes }}\n \n # This file messes up the tests because it influences the build root autodetection.\n+ # Jest has a global cache, so PRs that poison the cache can b...
2026-01-29T16:25:08
golang/go
a33bbf1988685215cdf300feb47d2e356e459b3e
a88a96330f312d08f5d191c66a463b165ac1b96d
weak: fix weak pointer test to correctly iterate over weak pointers after GC This change fixes a bug in the weak pointer test where the loop was attempting to iterate over a nil slice (bt) instead of the weak pointer slice (wt). After setting bt to nil and running GC, the test should iterate over the weak pointers to...
[ { "path": "src/weak/pointer_test.go", "patch": "@@ -110,7 +110,7 @@ func TestPointerEquality(t *testing.T) {\n \tbt = nil\n \t// bt is no longer referenced.\n \truntime.GC()\n-\tfor i := range bt {\n+\tfor i := range wt {\n \t\tst := wt[i].Value()\n \t\tif st != nil {\n \t\t\tt.Fatalf(\"expected weak pointe...
2025-11-24T06:38:30
electron/electron
90a14299fd34d7c70b14e74dddb4ffb5d754c0e2
60924690d9a8f872a2890d1c98f245f954d55ad5
ci: fix sending Slack message in CI audit workflow (#47494)
[ { "path": ".github/workflows/audit-branch-ci.yml", "patch": "@@ -136,7 +136,7 @@ jobs:\n \n await core.summary.write();\n - name: Send Slack message if errors\n- if: ${{ steps.audit-errors.outputs.errorsFound && github.ref == 'refs/heads/main' }}\n+ if: ${{ always() && steps....
2025-06-23T09:23:39
vercel/next.js
ab4b3726ea7408614c0d763b32e2c5472ac5c76d
f1a047fd80944ac722ab6e481e1ec077378d31fc
fix: coerce HEAD to GET for internal images (#84180) Fixes: https://github.com/vercel/next.js/issues/84129 TODO: - [x] e2e test (?) - [x] verify against repro steps in source issue --------- Co-authored-by: Steven <steven@ceriously.com> Co-authored-by: vercel[bot] <35613825+vercel[bot]@users.noreply.github.com>
[ { "path": "packages/next/src/server/image-optimizer.ts", "patch": "@@ -900,9 +900,12 @@ export async function fetchInternalImage(\n ) => Promise<void>\n ): Promise<ImageUpstream> {\n try {\n+ // Coerce HEAD to GET to avoid issues with the image optimizer\n+ const method = !_req.method || _req.meth...
2026-01-29T15:43:18
facebook/react
0cf6d0c929e14d4a3c5bcc11a7347b4cad250e7f
df080d228bdf5260067235c64daaa57ec3cfac23
[compiler] Update fixtures for new inference (#33496) --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33496). * #33571 * #33558 * #33547 * #33543 * #33533 * #33532 * #33530 * #33526 * #33522 * #33518 ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/new-mutability/aliased-nested-scope-truncated-dep.expect.md", "patch": "@@ -2,6 +2,7 @@\n ## Input\n \n ```javascript\n+// @enableNewMutationAliasingModel\n import {\n Stringify,\n mutate,\n@@ -101,7 +102,7 @@ expor...
2025-06-18T20:01:56
nodejs/node
897932c4848ae4eb4a27a399ac165fc5efe264a2
c7b0dfbd7c564d5aa30f5521f07e2762487d41d1
diagnostics_channel: fix race condition with diagnostics_channel and GC PR-URL: https://github.com/nodejs/node/pull/59910 Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
[ { "path": "lib/diagnostics_channel.js", "patch": "@@ -37,7 +37,9 @@ const { WeakReference } = require('internal/util');\n // Only GC can be used as a valid time to clean up the channels map.\n class WeakRefMap extends SafeMap {\n #finalizers = new SafeFinalizationRegistry((key) => {\n- this.delete(key)...
2025-09-19T07:28:39
vercel/next.js
458933317a544c2e42a40eddfb2abe562b970fb9
980975f7933d70115f1fc5620fdaa7483d9a96d3
Turbopack: fix tracking modifications for transient and data (#89228) ### What? track modifications on the correct category
[ { "path": "turbopack/crates/turbo-tasks-macros/src/derive/task_storage_macro.rs", "patch": "@@ -2160,8 +2160,7 @@ fn generate_flag_trait_accessor_methods(field: &FieldInfo) -> TokenStream {\n \n // Flags use check_access_call() which handles transient vs non-transient\n let check_access = field.chec...
2026-01-29T11:19:42
electron/electron
626895848eecd40ead822ad0ed47aab125fedba8
3536d4976a3e42f1b96210b77b12d2545cd4b08c
fix: utilityProcess running user script after process.exit is called (#47469) * fix: utilityProcess running user script after process.exit is called * docs: update breaking changes * chore: update spec * chore: update spec/api-utility-process-spec.ts Co-authored-by: David Sanders <dsanders11@ucsbalum.com> * chore...
[ { "path": "docs/breaking-changes.md", "patch": "@@ -36,6 +36,16 @@ process.on('unhandledRejection', () => {\n })\n ```\n \n+### Behavior Changed: `process.exit()` kills utility process synchronously\n+\n+Calling `process.exit()` in a utility process will now kill the utility process synchronously.\n+This br...
2025-06-17T19:36:22
nodejs/node
c7b0dfbd7c564d5aa30f5521f07e2762487d41d1
57f61ad5986a2da0ff33156215c95db2a5764611
esm: make hasAsyncGraph non-enumerable Otherwise the debug() calls would attempt to display it and throws an error. PR-URL: https://github.com/nodejs/node/pull/59905 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "src/module_wrap.cc", "patch": "@@ -56,6 +56,7 @@ using v8::ObjectTemplate;\n using v8::PrimitiveArray;\n using v8::Promise;\n using v8::PromiseRejectEvent;\n+using v8::PropertyAttribute;\n using v8::PropertyCallbackInfo;\n using v8::ScriptCompiler;\n using v8::ScriptOrigin;\n@@ -1391,7 +1392,10 @...
2025-09-18T19:02:05
facebook/react
df080d228bdf5260067235c64daaa57ec3cfac23
66cfe048d3ab02afd3eeba9e8d7710acb3a4ab38
[compiler] Copy fixtures affected by new inference (#33495) --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33495). * #33571 * #33558 * #33547 * #33543 * #33533 * #33532 * #33530 * #33526 * #33522 * #...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/new-mutability/aliased-nested-scope-truncated-dep.expect.md", "patch": "@@ -0,0 +1,221 @@\n+\n+## Input\n+\n+```javascript\n+import {\n+ Stringify,\n+ mutate,\n+ identity,\n+ shallowCopy,\n+ setPropertyByKey,\n+} f...
2025-06-18T19:58:16
electron/electron
3536d4976a3e42f1b96210b77b12d2545cd4b08c
2ad762e0753d4df633a6d5792c2f971919b7ee26
fix: revert moving IsClosed() and IsClosable() into NativeWindow::Close() (#47482) Revert "refactor: move `IsClosed()` and `IsClosable()` tests into `NativeWindow::Close()` (#46888)" This reverts commit 3faddd5ae2ae03be8ba037c77989630576bb8167.
[ { "path": "shell/browser/api/electron_api_base_window.cc", "patch": "@@ -362,7 +362,8 @@ void BaseWindow::SetContentView(gin::Handle<View> view) {\n }\n \n void BaseWindow::CloseImmediately() {\n- window_->CloseImmediately();\n+ if (!window_->IsClosed())\n+ window_->CloseImmediately();\n }\n \n void Ba...
2025-06-16T23:41:19
nodejs/node
f551c312977d83e50b8f0eaba5242cd1ab49cd2a
ed71aeec0f64380bcd1ca1f6dd54b1906d7214f2
tools: fix `tools/make-v8.sh` for clang Update `tools/make-v8.sh` so that it can work with either `gcc` or `clang`. Adds: - clang settings when CC/CXX environment variables set to clang/clang++. - Turns off warnings as errors. Removes: - goma settings. - Machine specific settings (moved to Jenkins job configuration)...
[ { "path": "tools/make-v8.sh", "patch": "@@ -20,37 +20,19 @@ if [ \"$ARCH\" = \"s390x\" ] || [ \"$ARCH\" = \"ppc64le\" ]; then\n if [ \"$ARCH\" = \"ppc64le\" ]; then\n TARGET_ARCH=\"ppc64\"\n fi\n- # set paths manually for now to use locally installed gn\n- export BUILD_TOOLS=/home/iojs/build-tools...
2025-09-17T14:45:42
golang/go
276cc4d3dbbf413be008113e6c88ffb3df2de4d6
f2d96272cb1b695dfddcd5b80dfed2ad2ee6db59
cmd/link: fix AIX builds after recent linker changes This updates XCOFF-specific code for the recent addition of funcdata to pclntab. Because XCOFF puts separate symbols into separate csects, each with their own alignment, it's important to tell the external linker the expected alignment of each part of pclntab. Othe...
[ { "path": "src/cmd/link/internal/ld/pcln.go", "patch": "@@ -55,13 +55,20 @@ type pclntab struct {\n \n // addGeneratedSym adds a generator symbol to pclntab, returning the new Sym.\n // It is the caller's responsibility to save the symbol in state.\n-func (state *pclntab) addGeneratedSym(ctxt *Link, name st...
2025-12-02T00:25:56
facebook/react
ae962653d63ca88b6727d6f585026f2bbfa313a1
e1dc03492eedaec517e14a6e32b8fda571d00767
[compiler] Remove unnecessary fixture (#33572) This is covered by iife-inline-ternary --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/33572). * #33571 * #33558 * #33547 * #33543 * #33533 * #33532 * #...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/error.todo-iife-inline-ternary.expect.md", "patch": "@@ -1,33 +0,0 @@\n-\n-## Input\n-\n-```javascript\n-function Component(props) {\n- const x = props.foo\n- ? 1\n- : (() => {\n- throw new Error('Did not ...
2025-06-18T19:57:54
vercel/next.js
980975f7933d70115f1fc5620fdaa7483d9a96d3
e86876d3792fdea786be64a5727105c94e0e877c
Turbopack: add support for turbopackOptional: true (#89227) ### What? * add support for turbopackOptional: true * fix runtime code for unresolvable dynamic imports * add documentation about magic comments
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -65,7 +65,7 @@ use turbopack_core::{\n output::{OutputAsset, OutputAssets, OutputAssetsWithReferenced},\n reference::all_assets_from_entries,\n reference_type::{CommonJsReferenceSubType, CssReferenceSubType, ReferenceType},\n- resolve::{ori...
2026-01-29T09:13:21
nodejs/node
5c7b83a94e7bb0d4d7758acdfcd61fa8f21fc7cc
c46260284cb29a55e4f3aebc020bc31237110128
test: guard write to proxy client if proxy connection is ended In the testing proxy server for proxy client tests, the proxy client might have already closed the connection when the upstream connection fails. In that case, there's no need for the proxy server to inform the proxy client about the error. PR-URL: https:...
[ { "path": "test/client-proxy/test-https-proxy-request-invalid-char-in-url.mjs", "patch": "@@ -21,9 +21,10 @@ const server = https.createServer({\n cert: fixtures.readKey('agent8-cert.pem'),\n key: fixtures.readKey('agent8-key.pem'),\n }, (req, res) => {\n+ console.log(`[Upstream server] responding to r...
2025-09-17T13:59:09
facebook/react
e1dc03492eedaec517e14a6e32b8fda571d00767
90bee819028bfecb724df298da798607b6a76abf
Expose cacheSignal() alongside cache() (#33557) This was really meant to be there from the beginning. A `cache()`:ed entry has a life time. On the server this ends when the render finishes. On the client this ends when the cache of that scope gets refreshed. When a cache is no longer needed, it should be possible to ...
[ { "path": "packages/react-noop-renderer/src/ReactNoopFlightServer.js", "patch": "@@ -70,6 +70,7 @@ type Options = {\n environmentName?: string | (() => string),\n filterStackFrame?: (url: string, functionName: string) => boolean,\n identifierPrefix?: string,\n+ signal?: AbortSignal,\n onError?: (er...
2025-06-17T21:04:40
vercel/next.js
9b8086212c8d71c7c9ef09935362370e35fdd6bd
48e46764b82bc7ac9422ca6469f00e40b5ab3c8c
Fix @next/routing for i18n api and dynamic routes (#89197) This applies fixes/regression tests for reported issues in https://github.com/nextjs/adapters-wg/issues/1
[ { "path": "packages/next-routing/src/__tests__/i18n-resolve-routes.test.ts", "patch": "@@ -312,5 +312,51 @@ describe('resolveRoutes with i18n', () => {\n // Should not redirect for _next routes\n expect(result.redirect).toBeUndefined()\n })\n+\n+ it('should skip locale handling for api ro...
2026-01-29T02:24:29
nodejs/node
f6ea5bf3b0912741dfbbf0e8c1bafa8dd0fde550
e596098e50f1e4d8ad06dd9a0214d67e0b448431
fs,win: do not add a second trailing slash in readdir Do not add a trailing slash if it was not removed by resolve in ToNamespacedPath. PR-URL: https://github.com/nodejs/node/pull/59847 Fixes: https://github.com/nodejs/node/issues/58223 Refs: https://github.com/nodejs/node/pull/56110 Reviewed-By: Luigi Pinca <luigipi...
[ { "path": "src/node_file.cc", "patch": "@@ -1988,7 +1988,7 @@ static void ReadDir(const FunctionCallbackInfo<Value>& args) {\n ToNamespacedPath(env, &path);\n \n #ifdef _WIN32\n- if (slashCheck) {\n+ if (slashCheck && !path.ToStringView().ends_with(\"\\\\\")) {\n size_t new_length = path.length() + ...
2025-09-17T11:15:51
electron/electron
6779769d22dd751f9877bcef305f94d03306fa33
96fcc2f8c8f4a5577b4eb5312a12dad46501ef14
chore: bump chromium to 139.0.7219.0 (main) (#47348) * chore: bump chromium in DEPS to 139.0.7205.0 * 6543986: Mac: decouple deserializing and applying sandbox policy Refs https://chromium-review.googlesource.com/c/chromium/src/+/6543986 * 6580079: Reland 'Remove the third-party blocking feature' Refs https://chrom...
[ { "path": ".github/actions/install-build-tools/action.yml", "patch": "@@ -13,7 +13,7 @@ runs:\n git config --global core.fscache true\n git config --global core.preloadindex true\n fi\n- export BUILD_TOOLS_SHA=6e8526315ea3b4828882497e532b8340e64e053c\n+ export BUILD_TOOLS_SHA...
2025-06-16T17:46:06
facebook/react
90bee819028bfecb724df298da798607b6a76abf
75e78d243f749d009fa1c5c09c3464301b992718
[compiler] Do not inline IIFEs in value blocks (#33548) As discussed in chat, this is a simple fix to stop introducing labels inside expressions. The useMemo-with-optional test was added in https://github.com/facebook/react/commit/d70b2c2c4e85c2a7061214c15a8ff13167d10422 and crashes for the same reason- an unexpected...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InlineImmediatelyInvokedFunctionExpressions.ts", "patch": "@@ -17,6 +17,7 @@ import {\n InstructionKind,\n LabelTerminal,\n Place,\n+ isStatementBlockKind,\n makeInstructionId,\n promoteTemporary,\n reversePostorderBlocks,\n...
2025-06-17T01:53:50
golang/go
144cf17d2c444a530d7c08c5870dc8e70bec2c72
3417b48b17d01cf170317d679aef10984cc1a4d0
[dev.simd] simd, cmd/compile: move "simd" to "simd/archsimd" Also removes a few leftover TODOs and scraps of commented-out code from simd development. Updated etetest.sh to make it behave whether amd64 implies the experiment, or not. Fixes #76473. Change-Id: I6d9792214d7f514cb90c21b101dbf7d07c1d0e55 Reviewed-on: ht...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -445,7 +445,7 @@ type hairyVisitor struct {\n \n func isDebugFn(fn *ir.Func) bool {\n \t// if n := fn.Nname; n != nil {\n-\t// \tif n.Sym().Name == \"Int32x8.Transpose8\" && n.Sym().Pkg.Path == \"simd\" {\n+\t// \tif n.Sym().Name == \"Int32x8....
2025-12-08T18:24:12
nodejs/node
db926dc1fc10a4001708c5dbd6607b9e63e658b8
1ebe88f87cd618c2b5dc304a9440e9b5e118deb3
src: replace FIXED_ONE_BYTE_STRING with Environment-cached strings PR-URL: https://github.com/nodejs/node/pull/59891 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
[ { "path": "src/node_realm.cc", "patch": "@@ -72,8 +72,7 @@ void Realm::CreateProperties() {\n CHECK(primordials->IsObject());\n set_primordials(primordials.As<Object>());\n \n- Local<String> prototype_string =\n- FIXED_ONE_BYTE_STRING(isolate(), \"prototype\");\n+ Local<String> prototype_string =...
2025-09-17T06:34:40
vercel/next.js
42b0ce87f2d7d01d0e3cbf5d381730d7f42485a5
5ec4d7a4be741497578caf2ff423c2abff8475bc
Turbopack: warn when tracing the whole project (#89157) This should really be an error, but let's start with making it a warning the only missing piece will be somehow showing the line/col information of the offending reference, this is currently very hard to figure out <img width="1265" height="428" alt="Bild...
[ { "path": "crates/next-api/src/nft_json.rs", "patch": "@@ -1,9 +1,9 @@\n-use std::collections::{BTreeSet, VecDeque};\n+use std::collections::{BTreeSet, HashSet, VecDeque};\n \n use anyhow::{Result, bail};\n use serde_json::json;\n use tracing::{Instrument, Level, Span};\n-use turbo_rcstr::RcStr;\n+use turbo...
2026-01-28T21:05:01
electron/electron
6f915e85e208b25ce62c36b656314360733a6ef4
0259abe9201be0028406eebaf7db8aa9beaebc3a
refactor: have ShowSaveDialogSync() return a std::optional<base::FilePath> (#47428) * refactor: have ShowSaveDialogSync() return a std::optional<base::FilePath> * fixup! refactor: have ShowSaveDialogSync() return a std::optional<base::FilePath>
[ { "path": "shell/browser/api/electron_api_dialog.cc", "patch": "@@ -71,9 +71,8 @@ v8::Local<v8::Promise> ShowOpenDialog(\n \n void ShowSaveDialogSync(const file_dialog::DialogSettings& settings,\n gin::Arguments* args) {\n- base::FilePath path;\n- if (file_dialog::ShowSaveDialogSyn...
2025-06-12T10:25:40
facebook/react
6b7e207cabe4c1bc9390d862dd9228e94e9edf4b
d60f77a533da830613431ddef83d0eda928697ad
[ci] Don't skip experimental prerelease incorrectly (#33527) Previously the experimental workflow relied on the canary one running first to avoid race conditions. However, I didn't account for the fact that the canary one can now be skipped.
[ { "path": ".github/workflows/runtime_prereleases_manual.yml", "patch": "@@ -88,6 +88,8 @@ jobs:\n # different versions of the same package, even if they use different\n # dist tags.\n needs: publish_prerelease_canary\n+ # Ensures the job runs even if canary is skipped\n+ if: always()\n ...
2025-06-13T19:29:59
golang/go
4837bcc92c27e72c157e2c7b7e098dd91fa36fd3
b5f6816cea5b195e583c60e97a519d5d4ad5793f
internal/trace: skip tests for alloc/free experiment by default These tests are just too flaky and I don't have the time to fix them right now. I also am thinking to just change how trace experiments work, so it may not be worth taking the time to fix them. For #70838. Change-Id: Ia896215a0cbeccac99b73fefc836088f435...
[ { "path": "src/internal/trace/reader_test.go", "patch": "@@ -20,6 +20,7 @@ import (\n var (\n \tlogEvents = flag.Bool(\"log-events\", false, \"whether to log high-level events; significantly slows down tests\")\n \tdumpTraces = flag.Bool(\"dump-traces\", false, \"dump traces even on success\")\n+\tallocFre...
2025-12-08T17:48:53
nodejs/node
64a8b4b1baf9cdc334420ea398fb307c59f7eb93
f1a8f447d7363e9a5e1c412c1a425a9771bc691f
crypto: expose signatureAlgorithm on X509Certificate Adds the `signatureAlgorithm` property to a X509Certificate allowing users to retrieve a string representing the algorithm used to sign the certificate. This string is defined by the OpenSSL library. Fixes: https://github.com/nodejs/node/issues/59103 PR-URL: https:...
[ { "path": "deps/ncrypto/ncrypto.cc", "patch": "@@ -8,7 +8,9 @@\n #include <openssl/rand.h>\n #include <openssl/x509v3.h>\n #include <algorithm>\n+#include <array>\n #include <cstring>\n+#include <string_view>\n #if OPENSSL_VERSION_MAJOR >= 3\n #include <openssl/core_names.h>\n #include <openssl/params.h>\n@...
2025-09-16T19:27:04
vercel/next.js
5ec4d7a4be741497578caf2ff423c2abff8475bc
11e295089c5759891b82168c2cf7153731704519
[Cache Components] Prevent streaming fetch calls from hanging in dev (#89171) With Cache Components enabled in development, fetches without an explicit cache config were incorrectly routed through `createCachedPrerenderResponse` during the cache filling phase due to the `serverComponentsHmrCache` condition. This funct...
[ { "path": "packages/next/src/server/lib/patch-fetch.ts", "patch": "@@ -184,7 +184,8 @@ async function createCachedDynamicResponse(\n serverComponentsHmrCache: ServerComponentsHmrCache | undefined,\n revalidate: number,\n input: RequestInfo | URL,\n- handleUnlock: () => Promise<void> | void\n+ handle...
2026-01-28T20:53:56
electron/electron
38fe14041d5430d63680632a93d2aade6a762f14
996945d3e39e322568c3af775915d7960dd06065
fix: crash calling `Fetch.continueResponse` with `WebContentsView` (#47434) fix: crash calling Fetch.continueResponse with WebContentsView
[ { "path": "shell/browser/api/electron_api_debugger.cc", "patch": "@@ -81,7 +81,11 @@ void Debugger::DispatchProtocolMessage(DevToolsAgentHost* agent_host,\n \n void Debugger::RenderFrameHostChanged(content::RenderFrameHost* old_rfh,\n content::RenderFrameHost* new_rfh) ...
2025-06-11T13:43:47
golang/go
b5f6816cea5b195e583c60e97a519d5d4ad5793f
44a39c9dacdb3378197b9515add22d292dd71af9
cmd/link: generate DWARF for moduledata Fixes #76731 Change-Id: I5c686c91af8543b57880a89d30393912ef1958ad Reviewed-on: https://go-review.googlesource.com/c/go/+/727760 Auto-Submit: Ian Lance Taylor <iant@golang.org> Reviewed-by: Alessandro Arzilli <alessandro.arzilli@gmail.com> Reviewed-by: Florian Lehner <lehner.flo...
[ { "path": "src/cmd/link/dwarf_test.go", "patch": "@@ -156,10 +156,102 @@ func testDWARF(t *testing.T, buildmode string, expectDWARF bool, env ...string)\n \t\t\tif !strings.HasSuffix(line.File.Name, wantFile) || line.Line != wantLine {\n \t\t\t\tt.Errorf(\"%#x is %s:%d, want %s:%d\", addr, line.File.Name, l...
2025-12-06T23:06:11
facebook/react
d60f77a533da830613431ddef83d0eda928697ad
12bc60f50989a7e10b96c6fad429af7739c537df
[ci] Update prerelease workflows to allow publishing specific packages (#33525) It may be useful at times to publish only specific packages as an experimental tag. For example, if we need to cherry pick some fixes for an old release, we can first do so by creating that as an experimental release just for that package ...
[ { "path": ".github/workflows/runtime_prereleases.yml", "patch": "@@ -17,6 +17,17 @@ on:\n description: 'Whether to notify the team on Discord when the release fails. Useful if this workflow is called from an automation.'\n required: false\n type: boolean\n+ only_packages:\n+ ...
2025-06-13T18:22:55
vercel/next.js
244fac6eece025f8cd97cd9c4d62bf9ee8304a8f
3769252dd42f2f64f424a5e918419b9c91b67de7
Decouple route and segment cache lifecycles (#88989) Based on: - https://github.com/vercel/next.js/pull/88834 --- Follows from the previous commits that decoupled route stale time from segment data. Now that routes have their own lifecycle, we can simplify the implementation: route stale times are always the static...
[ { "path": "packages/next/src/client/components/router-reducer/reducers/refresh-reducer.ts", "patch": "@@ -6,18 +6,19 @@ import {\n convertServerPatchToFullTree,\n navigateToKnownRoute,\n } from '../../segment-cache/navigation'\n-import { revalidateEntireCache } from '../../segment-cache/cache'\n+import ...
2026-01-28T15:55:39
nodejs/node
60c1fbcf652994d63bbc118187e2b8fe96a711d3
0319ba51d8d8084e09bbb7f1b08c7480603b6976
util: inspect objects with throwing Symbol.toStringTag `util.inspect()` should handle all kinds of input, even if it is not well defined. Throwing is something that is meant to be worked around in all known cases. This fixes issues inspecting objects where accessing the Symbol.toStringTag would cause an error. The sym...
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -1186,7 +1186,14 @@ function formatRaw(ctx, value, recurseTimes, typedArray) {\n protoProps = undefined;\n }\n \n- let tag = value[SymbolToStringTag];\n+ let tag = '';\n+\n+ try {\n+ tag = value[SymbolToStringTag];\n+ } catch {\n+ // Ign...
2025-09-14T00:07:06
electron/electron
6f48e3ab12e5bd6ee697478eefc2835f8a9e9fb0
06bc59be88ddcfc6ca9c71dbd8c28dfe2bb28e72
ci: fix up branch CI audit workflow (#47404)
[ { "path": ".github/workflows/audit-branch-ci.yml", "patch": "@@ -17,6 +17,7 @@ jobs:\n steps:\n - run: npm install @actions/cache @electron/fiddle-core\n - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1\n+ id: audit-errors\n with:\n git...
2025-06-07T07:58:48
golang/go
4122d3e9ea55c8d2293e0a0c59cd6e467021c9e0
34397865b1174f4d4b33941877a5906e50965b3b
runtime: use atomic C types with atomic C functions Mark types as _Atomic - fixes breakage introduced in CL 726964 across most LLVM based platforms/builders. Change-Id: I5e64b9ccb0cf5244977a787a52ee124bc03c10de Reviewed-on: https://go-review.googlesource.com/c/go/+/728040 LUCI-TryBot-Result: Go LUCI <golang-scoped@lu...
[ { "path": "src/runtime/testdata/testprogcgo/notingo.go", "patch": "@@ -14,8 +14,8 @@ package main\n \n extern void Ready();\n \n-static int spinning;\n-static int released;\n+static _Atomic int spinning;\n+static _Atomic int released;\n \n static void* enterGoThenSpinTwice(void* arg __attribute__ ((unused))...
2025-12-08T13:11:55
facebook/react
12bc60f50989a7e10b96c6fad429af7739c537df
ed023cfc7304e4e02a79195c68601eff7606136a
[devtools] Added minimum indent size to Component Tree (#33517) ## Summary The devtools Components tab's component tree view currently has a behavior where the indentation of each level of the tree scales based on the available width of the view. If the view is narrow or component names are long, all indentation show...
[ { "path": "packages/react-devtools-shared/src/devtools/views/Components/Tree.js", "patch": "@@ -41,7 +41,8 @@ import {useExtensionComponentsPanelVisibility} from 'react-devtools-shared/src/f\n import {useChangeOwnerAction} from './OwnersListContext';\n \n // Never indent more than this number of pixels (eve...
2025-06-13T14:28:31
vercel/next.js
d5a88ba4eb50fa9fcc2c06a68da54783d615b017
ead95dfb04edd523fe8c2d20123c487e61257747
tweak LRU sentinel cache key (#89123) We originally prefixed the TTL sentinel with the null-byte separator to avoid collisions with real invocation IDs, but that makes `extractInvocationID` return "ttl" instead of undefined for TTL-mode keys. This switches to a reserved magic string sentinel so TTL-mode entries are c...
[ { "path": "packages/next/src/server/response-cache/index.ts", "patch": "@@ -63,10 +63,9 @@ const KEY_SEPARATOR = '\\0'\n \n /**\n * Sentinel value used for TTL-based cache entries (when invocationID is undefined).\n- * Uses KEY_SEPARATOR prefix to guarantee uniqueness since null bytes cannot appear\n- * in...
2026-01-27T20:26:59
nodejs/node
0319ba51d8d8084e09bbb7f1b08c7480603b6976
49f79b8e937f5d27101dc7d629ec5edd2fd8ed2c
util: fix debuglog.enabled not being present with callback logger The method returned by the callback is missing the .enabled property. This is added in a consistent way that it also verifies that it's a getter. Fixes: https://github.com/nodejs/node/issues/56676 PR-URL: https://github.com/nodejs/node/pull/59858 Revie...
[ { "path": "lib/internal/util/debuglog.js", "patch": "@@ -94,8 +94,17 @@ function debuglog(set, cb) {\n // Only invokes debuglogImpl() when the debug function is\n // called for the first time.\n debug = debuglogImpl(enabled, set);\n- if (typeof cb === 'function')\n+ if (typeof cb === 'func...
2025-09-14T00:06:57
electron/electron
06bc59be88ddcfc6ca9c71dbd8c28dfe2bb28e72
0b84c682291b1490a80849409623c3627bcdcab7
fix: rework lifetime mgmt of `ClearDataTask`/`ClearDataOperation` (#47361) * fix: rework lifetime mgmt of ClearDataTask/ClearDataOperation * Update shell/browser/api/electron_api_session.cc Co-authored-by: Robo <hop2deep@gmail.com> * Update shell/browser/api/electron_api_session.cc Co-authored-by: Robo <hop2deep@g...
[ { "path": "shell/browser/api/electron_api_session.cc", "patch": "@@ -84,6 +84,7 @@\n #include \"shell/common/gin_converters/time_converter.h\"\n #include \"shell/common/gin_converters/usb_protected_classes_converter.h\"\n #include \"shell/common/gin_converters/value_converter.h\"\n+#include \"shell/common/g...
2025-06-07T06:00:30
facebook/react
888ea60d8e6059790382c0b849be13915b4bcc30
b7e2de632b2a160bc09edda1fbb9b8f85a6914e8
[compiler][repro] Postfix operator is incorrectly compiled (#33508) This bug was reported via our wg and appears to only affect values created as a ref. Currently, postfix operators used in a callback gets compiled to: ```js modalId.current = modalId.current + 1; // 1 const id = modalId.current; // 1 return id; ``` ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-ref-prefix-postfix-operator.expect.md", "patch": "@@ -0,0 +1,132 @@\n+\n+## Input\n+\n+```javascript\n+import {useRef, useEffect} from 'react';\n+\n+/**\n+ * The postfix increment operator should return the value be...
2025-06-11T18:40:42
golang/go
34397865b1174f4d4b33941877a5906e50965b3b
d4972f6295aede2ddc35bcb1da5f6351623e9e4d
runtime: deflake TestProfBufWakeup If CI infrastructure is oversubscribed, the profile buffer reader can be blocked long enough for the status in the traceback to be something like "[syscall, 3 minutes]", rather than the "[syscall]" we are looking for. Tweak the regexp to look for the expected state at the beginning o...
[ { "path": "src/runtime/profbuf_test.go", "patch": "@@ -232,11 +232,14 @@ func TestProfBufWakeup(t *testing.T) {\n \t// The reader shouldn't wake up for this\n \tb.Write(nil, 1, []uint64{1, 2}, []uintptr{3, 4})\n \n-\t// The reader should still be blocked\n-\t//\n-\t// TODO(nick): this is racy. We could Gosc...
2025-12-06T15:09:38
vercel/next.js
48ce83fa71b7b2cd0ea59637afad42dc1a2322ea
b210e2e6f2c2029f2c4f0f2e3269d42ce47eb8d7
docs: fix code highlight in 07-fetching-data.mdx (#88727) PR https://github.com/vercel/next.js/pull/82862 added an extra blank line to the code snippet in https://nextjs.org/docs/app/getting-started/fetching-data#parallel-data-fetching. It should highlight the `Promise.all` line ![](https://github.com/user-attachme...
[ { "path": "docs/01-app/01-getting-started/07-fetching-data.mdx", "patch": "@@ -499,7 +499,7 @@ export default async function Page({ params }) {\n \n Start multiple requests by calling `fetch`, then await them with [`Promise.all`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objec...
2026-01-27T15:22:45
electron/electron
0b84c682291b1490a80849409623c3627bcdcab7
09a0926c5beb5be9fea800ebdf7067c1e23a94bc
ci: ignore network-related error annotations in audit (#47333) * ci: ignore network-related error annotation in audit * chore: add another error message
[ { "path": ".github/workflows/audit-branch-ci.yml", "patch": "@@ -57,13 +57,15 @@ jobs:\n repo: \"electron\",\n check_run_id: checkRun.id,\n })).data ?? [];\n- console.log(checkRun);\n- console.log(annotations);\n \n ...
2025-06-06T20:52:25
golang/go
d4972f6295aede2ddc35bcb1da5f6351623e9e4d
0d0d5c9a827bac4da9cf20da351791d217e84ebb
runtime: mark getfp as nosplit When compiling with -l, we can't take a stack split here. Fixes #76702 Change-Id: Ieab1225c6259c7f16bb5188aa84bff615d9db2e5 Reviewed-on: https://go-review.googlesource.com/c/go/+/728060 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submi...
[ { "path": "src/runtime/os_wasm.go", "patch": "@@ -142,6 +142,8 @@ func preemptM(mp *m) {\n \n // getfp returns the frame pointer register of its caller or 0 if not implemented.\n // TODO: Make this a compiler intrinsic\n+//\n+//go:nosplit\n func getfp() uintptr { return 0 }\n \n func setProcessCPUProfiler(h...
2025-12-08T14:21:39
nodejs/node
49f79b8e937f5d27101dc7d629ec5edd2fd8ed2c
d079d8f38006cab2effec836fd363a2854f0f313
repl: fix cpu overhead pasting big strings to the REPL Pasting input should not trigger any completions and other calculations. This is now handled by just writing the string to the terminal in case the user is pasting. As soon as pasting is done, the completions will be re-enabled. Fixes: https://github.com/nodejs/n...
[ { "path": "lib/internal/readline/interface.js", "patch": "@@ -658,6 +658,12 @@ class Interface extends InterfaceConstructor {\n \n [kInsertString](c) {\n this[kBeforeEdit](this.line, this.cursor);\n+ if (!this.isCompletionEnabled) {\n+ this.line += c;\n+ this.cursor += c.length;\n+ t...
2025-09-14T00:06:47
facebook/react
ff93c4448c44e8e5562a4102394ebf9f2b0ec847
6c86e56a0fa3c8f253da133330cd5b7d1d20e7e5
[Flight] Track Debug Info from Synchronously Unwrapped Promises (#33485) Stacked on #33482. There's a flaw with getting information from the execution context of the ping. For the soft-deprecated "throw a promise" technique, this is a bit unreliable because you could in theory throw the same one multiple times. Simil...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -2991,6 +2991,64 @@ describe('ReactFlight', () => {\n );\n });\n \n+ // @gate !__DEV__ || enableComponentPerformanceTrack\n+ it('preserves debug info for server-to-server through use()', async () => {\n+ function Th...
2025-06-11T16:07:10
vercel/next.js
cbea93f43f67a91a207fd2fd08a08ef959039dab
ecc2ac976b6a8dbc7a59894421b3656f97e616a4
CC Guide: Fix filenames, reduce line breaks (#89065) Follow-up
[ { "path": "docs/01-app/02-guides/public-static-pages.mdx", "patch": "@@ -1,7 +1,7 @@\n ---\n title: Building public pages\n description: Learn how to build public, \"static\" pages that share data across users, such as landing pages, list pages (products, blogs, etc.), marketing and news sites.\n-nav_title:...
2026-01-27T14:04:39
golang/go
c270e7183582600aa54dcc8bb14aeecf61fc4275
745349712e837ef77eb7b5a21c4d4e5c7ca0371a
cmd/go/internal/vet: skip -fix on pkgs from vendor or non-main mod This change causes go fix (and go vet -fix) to skip applying fixes to any package in the vendor/ tree, including the GOROOT vendor packages that are part of std, and to any package from a non-main module (since these usually come from the readonly modu...
[ { "path": "src/cmd/go/internal/vet/vet.go", "patch": "@@ -262,6 +262,15 @@ func run(ctx context.Context, cmd *base.Command, args []string) {\n \t// will only be executed in VetxOnly mode, for facts but not\n \t// diagnostics.\n \tfor _, p := range pkgs {\n+\t\t// Don't apply fixes to vendored packages, incl...
2025-12-05T17:41:21
electron/electron
09a0926c5beb5be9fea800ebdf7067c1e23a94bc
660623081321b4774cd8f7962d2b1654bba14917
fix: printing PDF via `webContents.print()` (#47377) fix: printing PDF via webContents.print()
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -2951,12 +2951,15 @@ void OnGetDeviceNameToUse(base::WeakPtr<content::WebContents> web_contents,\n print_settings.Set(printing::kSettingDpiVertical, dpi.height());\n }\n \n- auto* print_view_manager =\n- PrintViewManagerEle...
2025-06-06T18:20:37
nodejs/node
4984b15a94c551b910b4d1c23cbbc83d474dee70
100c255c99d9602396eb2e18f2b2d52d4c22d1db
src: create strings in `FIXED_ONE_BYTE_STRING` as internalized These string keys can generally be assumed to be long-lived. PR-URL: https://github.com/nodejs/node/pull/59826 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Gerhard Stöbich <deb2001-gi...
[ { "path": "src/util-inl.h", "patch": "@@ -160,33 +160,34 @@ constexpr ContainerOfHelper<Inner, Outer> ContainerOf(Inner Outer::*field,\n \n inline v8::Local<v8::String> OneByteString(v8::Isolate* isolate,\n const char* data,\n- ...
2025-08-04T16:58:33
vercel/next.js
0d61f297d9f4aa8ce5d405ef5e68d733844ba676
790eb861ca93e314151651134e4b803eac3d3bae
Limit number of server action arguments to 1000 (#89068) This prevents stack overflow errors when malicious payloads include a large number of arguments.
[ { "path": "packages/next/errors.json", "patch": "@@ -983,5 +983,6 @@\n \"982\": \"`serializeResumeDataCache` should not be called in edge runtime.\",\n \"983\": \"Invariant: global-error module is required but not found in loader tree\",\n \"984\": \"LRUCache: calculateSize returned %s, but size must ...
2026-01-27T11:58:18