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
nodejs/node
0981426d3c37891fcf03a1bba5611bcd2cd5ba22
fdcf4d9454f050d199c49ff25f25d7bad133ff56
sqlite,doc: fix StatementSync section PR-URL: https://github.com/nodejs/node/pull/60474 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/sqlite.md", "patch": "@@ -647,120 +647,6 @@ times with different bound values. Parameters also offer protection against\n [SQL injection][] attacks. For these reasons, prepared statements are preferred\n over hand-crafted SQL strings when handling user input.\n \n-## Class: `SQLTagStore`\...
2025-10-31T02:46:05
golang/go
d1e7f49e3d1eb039d9d2aed3ba923459bd42aa7c
f6ebd91129e13ef7f495550a4fc8fa74769f6a2d
internal/trace: fix recorder.Write return value for header-only buffers Fix issue #77083 Change-Id: I9189d1e3a6efea8478224164e820f50c818abcd5 GitHub-Last-Rev: bb24cbda95f0b5b10aeae9a5ee8cbe215ba6d4eb GitHub-Pull-Request: golang/go#77092 Reviewed-on: https://go-review.googlesource.com/c/go/+/734300 Reviewed-by: Michae...
[ { "path": "src/runtime/trace/recorder.go", "patch": "@@ -39,7 +39,7 @@ func (w *recorder) Write(b []byte) (n int, err error) {\n \t\tw.headerReceived = true\n \t}\n \tif len(b) == n {\n-\t\treturn 0, nil\n+\t\treturn n, nil\n \t}\n \tba, nb, err := readBatch(b[n:]) // Every write from the runtime is guarant...
2026-01-06T22:47: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
vercel/next.js
317b7d26df367c242e107333ef322849666c0c3c
c5c469926f72b64562ca3a5b58bf3de302a6f384
Update documentation to explain behavior in a Catch-all route (#89742) <!-- 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: ...
[ { "path": "docs/01-app/03-api-reference/04-functions/use-selected-layout-segment.mdx", "patch": "@@ -35,6 +35,7 @@ export default function ExampleClientComponent() {\n >\n > - Since `useSelectedLayoutSegment` is a [Client Component](/docs/app/getting-started/server-and-client-components) hook, and Layouts a...
2026-02-12T00:27:52
electron/electron
afb0ee418cd4bf813af040467bef15b5422c6ee3
55d8b71d7279332d27c1115105a3228903d34f1c
fix: re-entrancy issues in `webContents.loadURL()` (#48004) fix: re-entrancy issues in webContents.loadURL()
[ { "path": "filenames.auto.gni", "patch": "@@ -144,6 +144,7 @@ auto_filenames = {\n \"docs/api/structures/service-worker-info.md\",\n \"docs/api/structures/shared-dictionary-info.md\",\n \"docs/api/structures/shared-dictionary-usage-info.md\",\n+ \"docs/api/structures/shared-texture-handle.md\...
2025-08-11T15:20:35
nodejs/node
fdcf4d9454f050d199c49ff25f25d7bad133ff56
bdf03bfcd5420fa9d2ea824d6338080363cdf309
tools: fix failing release-proposal linter for LTS transitions PR-URL: https://github.com/nodejs/node/pull/60465 Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "tools/actions/lint-release-proposal-commit-list.mjs", "patch": "@@ -26,9 +26,13 @@ if (commitListingStart === -1) {\n commitList = changelog.replace(/(^.+\\n### Semver-Major|\\n### Semver-(Minor|Patch)) Commits\\n/gs, '')\n .replaceAll('**(SEMVER-MAJOR)** ', '');\n } else {\n- const commit...
2025-10-30T17:29:10
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
vercel/next.js
c5c469926f72b64562ca3a5b58bf3de302a6f384
26306e7f16164a929060fd79115fec8bb485fb94
docs: Move browserToTerminal into logging (#88901) `browserToTerminal` stabilizes `browserDebugInfoInTerminal` - since it lives under logging, let's remove the page and redirect to logging w/ fragment
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/browserDebugInfoInTerminal.mdx", "patch": "@@ -1,34 +0,0 @@\n----\n-title: browserDebugInfoInTerminal\n-description: Forward browser console logs and errors to your terminal during development.\n-redirect: /docs/app/api-reference/config/nex...
2026-02-12T00:08:32
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
8ea8d4ce838b848c366952db1c9605c9769807e3
3dba25fbd239f446ab1988ffbf6410de8fee1078
src: remove unconditional NAPI_EXPERIMENTAL in node.h PR-URL: https://github.com/nodejs/node/pull/60345 Fixes: https://github.com/nodejs/node/issues/60311 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Vladimir Morozov <vmorozov@microsoft.com>
[ { "path": "node.gyp", "patch": "@@ -890,6 +890,9 @@\n 'NODE_ARCH=\"<(target_arch)\"',\n 'NODE_PLATFORM=\"<(OS)\"',\n 'NODE_WANT_INTERNALS=1',\n+ # Define NAPI_EXPERIMENTAL to enable Node-API experimental function symbols being exposed.\n+ 'NAPI_EXPERIMENTAL=1',\n+ ...
2025-10-30T10:50:44
electron/electron
55d8b71d7279332d27c1115105a3228903d34f1c
b9ceaabb857e0ec55c81b464facea77ebdddad44
chore: bump chromium to 141.0.7346.0 (main) (#47983) * chore: bump chromium in DEPS to 141.0.7341.0 * chore: bump chromium in DEPS to 141.0.7342.0 * chore: update patches manually resolved conflict in `osr_shared_texture_remove_keyed_mutex_on_win_dxgi.patch` due to https://crrev.com/c/6681354 * 6819541: WebShare: ...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '140.0.7339.2',\n+ '141.0.7346.0',\n 'node_version':\n 'v22.18.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "docs/a...
2025-08-11T03:57:31
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
nodejs/node
77a0a0fc6029cc9499559c2268095377f68b08ba
63f83408ee64c8295286a1de5e402b432ed2f303
inspector: fix crash when receiving non json message PR-URL: https://github.com/nodejs/node/pull/60388 Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com>
[ { "path": "src/inspector_io.cc", "patch": "@@ -353,6 +353,9 @@ std::optional<std::string> InspectorIoDelegate::GetTargetSessionId(\n std::string_view view(message.data(), message.size());\n std::unique_ptr<protocol::DictionaryValue> value =\n protocol::DictionaryValue::cast(JsonUtil::parseJSON(vie...
2025-10-29T11:20:29
golang/go
d1d0fc7a97539206e33f04bac935f6450597137c
9b2e3b9a02bd8872bdbf5c6086674fa6b4bc8ef9
os/exec: avoid atomic.Bool for Cmd.startCalled An atomic.Bool isn't necessary here since, unless otherwise specified, the methods of an object are not concurrency-safe w.r.t. each other. Using an atomic causes the copylocks vet check to warn about copying of Cmd, which is not wrong, because one shouldn't be copying op...
[ { "path": "src/os/exec/exec.go", "patch": "@@ -357,7 +357,9 @@ type Cmd struct {\n \tcachedLookExtensions struct{ in, out string }\n \n \t// startCalled records that Start was attempted, regardless of outcome.\n-\tstartCalled atomic.Bool\n+\t// (Until go.dev/issue/77075 is resolved, we use atomic.SwapInt32,...
2026-01-06T19:48:31
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
d6c0691a63c04ca3ffe88154ded595b763a69327
a201d6c541bc193f78ec25ee6bd9ecb7013435e8
fix: importing from electron/utility in ESM (#47998)
[ { "path": "build/webpack/webpack.config.base.js", "patch": "@@ -121,6 +121,7 @@ if ((globalThis.process || binding.process).argv.includes(\"--profile-electron-in\n 'electron/main$': electronAPIFile,\n 'electron/renderer$': electronAPIFile,\n 'electron/common$': electronAPIFile,...
2025-08-09T07:47:47
nodejs/node
4e9e5a183c3f918247942f7d187174d0888fa10a
79d0ed77e5dedf244db480e16c248b815b2a2d9f
src: add enum handle for ToStringHelper + formatting Fixes: https://github.com/nodejs/node/issues/56666 PR-URL: https://github.com/nodejs/node/pull/56829 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/debug_utils-inl.h", "patch": "@@ -38,9 +38,11 @@ struct ToStringHelper {\n \n template <typename T,\n typename test_for_number = typename std::\n- enable_if<std::is_arithmetic<T>::value, bool>::type,\n+ enable_if_t<std::is_arithmetic_v<T> || std::is...
2025-10-28T19:42:25
golang/go
f8ee0f84753b22254d217bf28ce8ecca7db7025c
b094749bad125db5b89e48248bbb9c7dc1292a95
cmd/go/testdata/vcstest/git: use git commands that work on older git versions On older versions of git (such as 2.25.1), `git branch -M master` fails after `git init` - use `git checkout -b master` instead, which works across multiple versions. Fixes tests on the rather outdated linux/mips* builders. Change-Id: Id86...
[ { "path": "src/cmd/go/testdata/vcstest/git/legacytest.txt", "patch": "@@ -6,7 +6,7 @@ env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME\n env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL\n \n git init\n-git branch -M master\n+git checkout -b master\n \n at 2018-07-17T12:41:39-04:00\n cp x_cf92c7b.go x.go", "additions": ...
2025-12-12T08:03:05
vercel/next.js
26306e7f16164a929060fd79115fec8bb485fb94
7a014a7f89d0b1d4d4bec5924a10d721fdcd84a7
After() docs requests API (#89837) <!-- 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 ### Improving D...
[ { "path": "docs/01-app/03-api-reference/04-functions/after.mdx", "patch": "@@ -59,7 +59,11 @@ export default function Layout({ children }) {\n \n ### With request APIs\n \n-You can use request APIs such as [`cookies`](/docs/app/api-reference/functions/cookies) and [`headers`](/docs/app/api-reference/functio...
2026-02-11T23:29:16
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
electron/electron
9dcdec5015bfae8d57140d0f4b25ed1cdd9f91ff
095e622a6a694a5e309cfaa0e1d2e5c0c7dd8964
feat: `paint` event move texture data to `handle`, add `colorSpace` (#47315) * feat: paint event move shared texture to handle, add color space * feat: add breaking change * fix: properties. * fix: remove utf8 bom
[ { "path": "docs/api/structures/offscreen-shared-texture.md", "patch": "@@ -4,21 +4,15 @@\n * `widgetType` string - The widget type of the texture. Can be `popup` or `frame`.\n * `pixelFormat` string - The pixel format of the texture. Can be `rgba` or `bgra`.\n * `codedSize` [Size](size.md) - The full ...
2025-08-08T08:13:56
nodejs/node
1f6b681bf2a49b8d45453b53e866caa557367a27
cfbfc1b05080e7b46ae6c4ff89c2239d7c3eb7e0
src: fix timing of snapshot serialize callback Previously the addAfterUserSerailizeCallback() wasn't ready to be used for building the built-in snapshot. This patch initializes the callbacks at the time lib/internal/v8/start_snapshot.js is loaded, so that these callbacks get run correctly when building the built-in sn...
[ { "path": "lib/internal/main/mksnapshot.js", "patch": "@@ -21,7 +21,6 @@ const { emitExperimentalWarning } = require('internal/util');\n const { emitWarningSync } = require('internal/process/warning');\n \n const {\n- initializeCallbacks,\n namespace: {\n addDeserializeCallback,\n isBuildingSnaps...
2025-10-27T12:43:09
golang/go
b28808d838682b2911698fcb934813b02f39fa69
d64add4d60b69973e5cae62f07983f91435de58b
cmd/go/internal/modindex: fix obvious bug using failed type assertion adonovan pointed out this bug in the review of CL 733320 and this seems to be the cause of all those list_empty_importpath flakes. It makes sense that something nondeterministic would be tied up with the module index because the state of the cache c...
[ { "path": "src/cmd/go/internal/modindex/scan.go", "patch": "@@ -112,10 +112,10 @@ func parseErrorToString(err error) string {\n \t\treturn \"\"\n \t}\n \tvar p parseError\n-\tif e, ok := err.(scanner.ErrorList); ok {\n-\t\tp.ErrorList = &e\n+\tif errlist, ok := err.(scanner.ErrorList); ok {\n+\t\tp.ErrorLis...
2025-12-30T20:41:41
rust-lang/rust
c03b20d198b910394b653f950618cb283fce08bc
be6df70d2548d90e7d18aba8ccc518d311a7a718
fix: Turn back `TyLoweringContext.store` to self after lowering parent defaults
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/lower.rs", "patch": "@@ -2411,10 +2411,11 @@ pub(crate) fn generic_defaults_with_diagnostics_query(\n }\n let resolver = def.resolver(db);\n \n+ let store_for_self = generic_params.store();\n let mut ctx = TyLoweringContext::new(\n ...
2026-01-23T16:03:27
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
vercel/next.js
098c591f918668b7f54ca74614bb24f83a505c52
2b0e3f1dd7df183ec9a88e23a1839a48428fa3ef
test: stabilize app-dir hash navigation RSC assertion (#89867) ## Summary - stabilize the hash navigation assertion in `navigation.test.ts` by checking for query-param-specific RSC requests instead of any RSC request - switch request header reads from `req.allHeaders()` to synchronous `req.headers()` in the request li...
[ { "path": "test/e2e/app-dir/navigation/navigation.test.ts", "patch": "@@ -150,13 +150,13 @@ describe('app dir - navigation', () => {\n \n describe('hash', () => {\n it('should scroll to the specified hash', async () => {\n- let hasRscRequest = false\n+ const rscRequestUrls = new Set<string>(...
2026-02-11T22:21:52
electron/electron
a0d983e4b53432b236499cf76638ead4dd3d2c46
f49a645c06da37490f6f2c0a4eea32b867dc05d5
feat: allow macOS tray to maintain position (#47838) * feat: allow macOS tray to maintain position * refactor: just use guid * test: fixup tests * docs: clarify UUID format
[ { "path": "docs/api/tray.md", "patch": "@@ -79,7 +79,15 @@ app.whenReady().then(() => {\n ### `new Tray(image, [guid])`\n \n * `image` ([NativeImage](native-image.md) | string)\n-* `guid` string (optional) _Windows_ - Assigns a GUID to the tray icon. If the executable is signed and the signature contains an...
2025-08-07T17:25:50
nodejs/node
cfbfc1b05080e7b46ae6c4ff89c2239d7c3eb7e0
51a57f2b3629e733773f1b9ade70c8abcee5eb8c
src: add COUNT_GENERIC_USAGE utility for tests PR-URL: https://github.com/nodejs/node/pull/60434 Fixes: https://github.com/nodejs/node/issues/60423 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Richard Lau <richard.lau@ibm.com>
[ { "path": "src/api/environment.cc", "patch": "@@ -6,6 +6,7 @@\n #include \"node.h\"\n #include \"node_builtins.h\"\n #include \"node_context_data.h\"\n+#include \"node_debug.h\"\n #include \"node_errors.h\"\n #include \"node_exit_code.h\"\n #include \"node_internals.h\"\n@@ -112,17 +113,21 @@ MaybeLocal<Val...
2025-10-27T12:42:30
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
vercel/next.js
2b0e3f1dd7df183ec9a88e23a1839a48428fa3ef
b9ec2e4f8d6e87ab28b5a7ec9d1bb5cb87913d9c
test: allow dpl query suffix in scss url-global expectation (#89856) Fixes deployment test failure from https://github.com/vercel/next.js/pull/89771 x-ref: https://github.com/vercel/next.js/actions/runs/21921362927/job/63302154502 ## Summary - update the SCSS `url-global` background-image assertion to allow optional...
[ { "path": "test/e2e/app-dir/scss/url-global/url-global.test.ts", "patch": "@@ -33,7 +33,7 @@ describe.each([\n .elementByCss('.red-text')\n .getComputedCss('background-image')\n expect(background).toMatch(\n- /url\\(\".*\\/_next\\/static\\/media\\/dark\\..*\\.svg\"\\), u...
2026-02-11T21:38:58
golang/go
fd45d70799853ef5980a559e206353574108d8da
df4e08ac65e94041367785783ec1482e8bed2397
all: fix some minor grammatical issues in the comments Change-Id: I0459f05e7f6abd9738813c65d993114e931720d5 Reviewed-on: https://go-review.googlesource.com/c/go/+/731000 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Keith Randall <khr@google.com> Reviewed-by: Ch...
[ { "path": "src/archive/tar/reader_test.go", "patch": "@@ -787,7 +787,7 @@ type readBadSeeker struct{ io.ReadSeeker }\n \n func (rbs *readBadSeeker) Seek(int64, int) (int64, error) { return 0, fmt.Errorf(\"illegal seek\") }\n \n-// TestReadTruncation test the ending condition on various truncated files and\n...
2025-12-18T02:36:50
electron/electron
f49a645c06da37490f6f2c0a4eea32b867dc05d5
8ab5ac9069322fc6c5a454cd69dc4815426e7276
fix: compilation error when disabling extensions and pdf_viewer (#47964)
[ { "path": "shell/browser/plugins/plugin_utils.cc", "patch": "@@ -33,6 +33,7 @@ std::string PluginUtils::GetExtensionIdForMimeType(\n base::flat_map<std::string, std::string>\n PluginUtils::GetMimeTypeToExtensionIdMap(\n content::BrowserContext* browser_context) {\n+ base::flat_map<std::string, std::str...
2025-08-07T15:18:32
nodejs/node
51a57f2b3629e733773f1b9ade70c8abcee5eb8c
4fe325d93de6eb58fcc74aee0e74ebdd1ea4e5b0
perf_hooks: move non-standard performance properties to perf_hooks `performance.eventLoopUtilization` and `performance.timerify` are not part of the Web API. Expose these two functions directly on the `perf_hooks` module. PR-URL: https://github.com/nodejs/node/pull/60370 Fixes: https://github.com/nodejs/node/issues/6...
[ { "path": "doc/api/perf_hooks.md", "patch": "@@ -120,6 +120,10 @@ the Resource Timeline. If `name` is provided, removes only the named resource.\n added:\n - v14.10.0\n - v12.19.0\n+changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/60370\n+ description: Added `perf_hoo...
2025-10-27T23:23:50
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
golang/go
df4e08ac65e94041367785783ec1482e8bed2397
cd668d744f77da06ca9565f41c63c3a5251469ee
test/codegen: fix a tab in comparisons.go to ensure pattern works Fix a pattern in test/codegen/comparisons.go to use whitespace instead of a tab. The test needs a whitespace to properly fail if the regalloc change from CL686655 would be missing (in that case we would have a spill immediately after call to memequal, w...
[ { "path": "test/codegen/comparisons.go", "patch": "@@ -660,13 +660,13 @@ func equalVarString8(a string) bool {\n \treturn a[:8] == b\n }\n \n-func equalVarStringNoSpill(a,b string) bool {\n+func equalVarStringNoSpill(a, b string) bool {\n \ts := string(\"ZZZZZZZZZ\")\n \t// arm64:\".*memequal\"\n \tmemeq1 :...
2025-12-06T13:43:55
vercel/next.js
b4724c15b4d08bf6f962f395abed21518fb80b1c
ba01f6578cb1368c1bdc695cadb079c9a951929f
Fix cascading LRU eviction during prefetch batches (#89766) When links remount (e.g. toggling between tabs), the prefetch scheduler processes tasks across multiple async batches due to network bandwidth limits. Between batches, LRU cleanup could fire and evict cache entries for tasks that hadn't been processed yet. Th...
[ { "path": "packages/next/src/client/components/segment-cache/lru.ts", "patch": "@@ -1,11 +1,11 @@\n import { deleteMapEntry } from './cache-map'\n import type { UnknownMapEntry } from './cache-map'\n+import { pingPrefetchScheduler } from './scheduler'\n \n // We use an LRU for memory management. We must upd...
2026-02-11T15:46:05
electron/electron
8ab5ac9069322fc6c5a454cd69dc4815426e7276
27a8cc531bbf1c707f87f3265ce4a88f6c93b35a
ci: fixup mac runner hang (#47982)
[ { "path": ".github/actions/free-space-macos/action.yml", "patch": "@@ -6,6 +6,8 @@ runs:\n - name: Free Space on MacOS\n shell: bash\n run: |\n+ echo \"Disk usage before cleanup:\"\n+ df -h\n sudo mkdir -p $TMPDIR/del-target\n \n tmpify() {\n@@ -73,4 +75,5 @@ ru...
2025-08-07T08:52:26
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
nodejs/node
d9cf867a9dad11b5aca34b4dd59a061efa3667f0
eea19fa03cccbd3c7f52b3a95970bd09875b4e4d
lib: fix typo in createBlobReaderStream Corrects the misspelling of "proecss" to "process". PR-URL: https://github.com/nodejs/node/pull/60132 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "lib/internal/blob.js", "patch": "@@ -478,7 +478,7 @@ function createBlobReaderStream(reader) {\n // We keep reading until we either reach EOS, some error, or we\n // hit the flow rate of the stream (c.desiredSize).\n // We use set immediate here because we have to al...
2025-10-27T14:14:15
golang/go
cd668d744f77da06ca9565f41c63c3a5251469ee
06eff0f7c3027a78088d45efdaec8ac3ed636481
cmd/compile: disable inlining for functions using runtime.deferrangefunc The rangefunc rewrite pass implements defer using deferrangefunc and deferproccat. The loop body is rewritten into a closure, it cannot be inlined due to defer call. But the outer function may still be inlined in certain scenarios (e.g., with PGO...
[ { "path": "src/cmd/compile/internal/inline/inl.go", "patch": "@@ -516,6 +516,9 @@ opSwitch:\n \t\t\t\t\t\tbreak opSwitch\n \t\t\t\t\tcase \"panicrangestate\":\n \t\t\t\t\t\tcheap = true\n+\t\t\t\t\tcase \"deferrangefunc\":\n+\t\t\t\t\t\tv.reason = \"defer call in range func\"\n+\t\t\t\t\t\treturn true\n \t\...
2025-12-23T08:12:04
vercel/next.js
24c6e3e4de2e729c7e71d38173466cf9cf3d5399
2d185084c4ec71edade8b0571ab0d961927ce327
Add CSS URL deployment ID suffix support (#89771) ## Summary Adds deployment ID suffix (`?dpl=<deployment_id>`) to asset URLs referenced in CSS `url()` declarations (images, fonts) for both Turbopack and Webpack builds. This enables proper cache busting for CSS-referenced assets when using `deploymentId` in `next.con...
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -1440,6 +1440,12 @@ impl Project {\n pub(super) async fn client_chunking_context(\n self: Vc<Self>,\n ) -> Result<Vc<Box<dyn ChunkingContext>>> {\n+ let css_url_suffix = self\n+ .next_config()\n+ .asset_suf...
2026-02-11T14:35:12
rust-lang/rust
2a543acbaf7739b547ca95c1d8d49758cfd510f4
1eeba934aef84cf5fe94df9b3c1ead8e19f18ff9
Moved and rename issue-50411 to tests/ui/mir/inliner-double-elaborate * Move issue-50411 to tests/ui/mir/inliner-double-elaborate * Addded the link for the issue to inliner-double-elaborate.rs * Fix tidy issues * Renamed to inliner-double-elaborate.rs
[ { "path": "tests/ui/mir/inliner-double-elaborate.rs", "patch": "@@ -1,4 +1,4 @@\n-// Regression test for #50411: the MIR inliner was causing problems\n+// Regression test for https://github.com/rust-lang/rust/issues/50411: the MIR inliner was causing problems\n // here because it would inline promoted code ...
2026-03-25T10:13:13
electron/electron
26ffc8505c011eda0658052d7c5ed5c9dbcc6905
3b0f35a7e846c64549400764e471941f81c05978
fix: allow importing from electron/utility at runtime (#47968)
[ { "path": "lib/common/init.ts", "patch": "@@ -93,20 +93,23 @@ makeElectronModule('electron');\n makeElectronModule('electron/common');\n if (process.type === 'browser') {\n makeElectronModule('electron/main');\n-}\n-if (process.type === 'renderer') {\n+} else if (process.type === 'renderer') {\n makeEle...
2025-08-07T07:53:42
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
nodejs/node
790489c5a96d8981e999a49eab297f46fd6d70ab
7bc76d98950a8d0532a008f61b6c2f5f9e58a8a9
test,crypto: fix conditional SHA3-* skip on BoringSSL PR-URL: https://github.com/nodejs/node/pull/60379 Reviewed-By: Shelley Vohr <shelley.vohr@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "test/parallel/test-webcrypto-sign-verify-rsa.js", "patch": "@@ -241,13 +241,13 @@ async function testSaltLength(keyLength, hash, hLen) {\n ['SHA-256', 32],\n ['SHA-384', 48],\n ['SHA-512', 64],\n- ['SHA3-256', 32],\n- ['SHA3-384', 48],\n- ['SHA3-512', 64],\n+ ...
2025-10-25T15:13:30
vercel/next.js
2d185084c4ec71edade8b0571ab0d961927ce327
61672d960b04513bf669ef094ce45c217ca0c9ed
[devtools] Wrap overlay in Activity (#89818) This allows rendering the overlay in the background at a lower priority while it's hidden. Part of a larger refactor how we sourcemap errors. The end-goal is to lazily do the sourcemapping with some prefetching which should make the overlay more responsive for many error...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/errors/error-overlay/error-overlay.tsx", "patch": "@@ -4,7 +4,7 @@ import {\n type OverlayState,\n } from '../../../shared'\n \n-import { Suspense } from 'react'\n+import { Activity } from 'react'\n import { BuildError } from '../../../cont...
2026-02-11T14:11:51
rust-lang/rust
11a338deb6884f72f3d3558d810e9b025de23167
8a703520e80d87d4423c01f9d4fbc9e5f6533a02
Fix nested zero-args delegation ICE
[ { "path": "compiler/rustc_ast_lowering/src/delegation.rs", "patch": "@@ -432,6 +432,17 @@ impl<'hir, R: ResolverAstLoweringExt<'hir>> LoweringContext<'_, 'hir, R> {\n args.push(arg);\n }\n \n+ // If we have no params in signature function but user still wrote some code...
2026-03-25T09:08:31
golang/go
76dddce29302681bdddafd4cbc27db66802414dd
6ecdd2fc6e58c0cd2b788032a85f7845af10c922
simd/archsimd: remove redundant suffix of ExtendLo operations For methods like ExtendLo2ToInt64x2, the last "x2" is redundant, as it is already mentioned in "Lo2". Remove it, so it is just ExtendLo2ToInt64. Change-Id: I490afd818c40bb7a4ef15c249723895735bd6488 Reviewed-on: https://go-review.googlesource.com/c/go/+/733...
[ { "path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules", "patch": "@@ -376,26 +376,26 @@\n (ExpandUint64x2 x mask) => (VPEXPANDQMasked128 x (VPMOVVec64x2ToM <types.TypeMask> mask))\n (ExpandUint64x4 x mask) => (VPEXPANDQMasked256 x (VPMOVVec64x4ToM <types.TypeMask> mask))\n (ExpandUint64x8 x mask) => ...
2025-12-29T16:30:33
nodejs/node
7bc76d98950a8d0532a008f61b6c2f5f9e58a8a9
9be412f93d08dac32c4c8a85d59fda06790ee0bf
win: upgrade Visual Studio workload from 2019 to 2022 PR-URL: https://github.com/nodejs/node/pull/60318 Fixes: https://github.com/nodejs/node/issues/59031 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Ulises ...
[ { "path": "tools/msvs/install_tools/install_tools.bat", "patch": "@@ -61,6 +61,6 @@ cls\n -ArgumentList '-NoProfile -InputFormat None -ExecutionPolicy Bypass -Command ^\n [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; ^\n iex ((New-Object System.Net.WebClient).D...
2025-10-25T14:15:57
vercel/next.js
ae64f6cff035f22868af9f442bc855dc7dd791de
be56ce3ae8d2bf3b7cdbbbadaaacb1a998e25569
Turbopack: make routes hashes mainfest more incremental (#87107) <!-- 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...
[ { "path": "crates/next-api/src/routes_hashes_manifest.rs", "patch": "@@ -6,7 +6,7 @@ use turbo_tasks_fs::{FileContent, FileSystemPath};\n use turbo_tasks_hash::{DeterministicHash, Xxh3Hash64Hasher};\n use turbopack_core::{\n asset::{Asset, AssetContent},\n- module::Module,\n+ module::{Module, Modu...
2026-02-11T10:58:11
rust-lang/rust
08e064a9cb46008d72236dd83737f160afd67e99
8a703520e80d87d4423c01f9d4fbc9e5f6533a02
add regression test for 154189 fix ci errors
[ { "path": "tests/ui/coherence/generalize-associated-type-alias.rs", "patch": "@@ -0,0 +1,22 @@\n+// Regression test for https://github.com/rust-lang/rust/issues/154189.\n+#![feature(unboxed_closures)]\n+\n+trait ToUnit<'a> {\n+ type Unit;\n+}\n+\n+impl ToUnit<'_> for *const u32 {\n+ type Unit = ();\n+...
2026-03-25T07:48:57
electron/electron
3b0f35a7e846c64549400764e471941f81c05978
8769d5ba9e4cf14b5ab7c559eef97396601bb3c0
chore: bump chromium to 140.0.7339.2 (main) (#47929) * chore: bump chromium in DEPS to 140.0.7330.0 * chore: bump chromium in DEPS to 140.0.7331.0 * chore: update patches * fix: gn check failing on crashpad.h Not yet sure what caused this * fix: predictors::PreconnectManager -> content::PreconnectManager CL: https...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '140.0.7327.0',\n+ '140.0.7339.2',\n 'node_version':\n 'v22.18.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "chromi...
2025-08-07T00:14:23
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
08369369e5a4b27d8f6d21ea571ea5027b9a2b46
ca8effbde150257847f90de220686786aa091f90
reflect: document Call/CallSlice panic when v is unexported field Fixes #74377 Change-Id: I250d67ef2a4bf4dac939be669eeaf1091523ac06 Reviewed-on: https://go-review.googlesource.com/c/go/+/690617 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Roland Shoemaker <rol...
[ { "path": "src/reflect/value.go", "patch": "@@ -362,6 +362,7 @@ func (v Value) CanSet() bool {\n // type of the function's corresponding input parameter.\n // If v is a variadic function, Call creates the variadic slice parameter\n // itself, copying in the corresponding values.\n+// It panics if the Value ...
2025-07-26T05:44:12
nodejs/node
2bda7cbfb62778bd793fbceaa9a5a907c3d344be
62263572376cefa52761a7eb39fad4fcbfdbf37c
test: increase debugger waitFor timeout on macOS PR-URL: https://github.com/nodejs/node/pull/60367 Refs: https://github.com/nodejs/node/actions/runs/18694915575/job/53309761263?pr=60343 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gma...
[ { "path": "test/common/debugger.js", "patch": "@@ -7,12 +7,10 @@ const BREAK_MESSAGE = new RegExp('(?:' + [\n 'exception', 'other', 'promiseRejection', 'step',\n ].join('|') + ') in', 'i');\n \n-// Some macOS machines require more time to receive the outputs from the client.\n let TIMEOUT = common.platfor...
2025-10-24T14:21:32
rust-lang/rust
86aac98cfcc709b989d1355e48d6210dac5b2b08
8a703520e80d87d4423c01f9d4fbc9e5f6533a02
install-template.sh: Optimize by using Bourne shell builtins. This replaces forking separate processes and using "cut" with Bourne shell builtin operations for "remove largest suffix pattern" and "remove smallest prefix pattern" operations.
[ { "path": "src/tools/rust-installer/install-template.sh", "patch": "@@ -433,8 +433,8 @@ uninstall_components() {\n local _directive\n while read _directive; do\n \n- local _command=`echo $_directive | cut -f1 -d:`\n- local _file=`echo $_directive | cut -f2 -d:`\...
2026-03-25T07:30:12
vercel/next.js
be56ce3ae8d2bf3b7cdbbbadaaacb1a998e25569
0b32ddc6ab10f593b12342e657a755468a351130
docs: correct use term (#89438) ### What? `use` is not a hook. It's highlighted in the doc > Unlike React Hooks, use can be called within loops and conditional statements like if. Like React Hooks, the function that calls use must be a Component or Hook. ### Why? It confuses consumers of Next.js and adds field pr...
[ { "path": "docs/01-app/01-getting-started/05-server-and-client-components.mdx", "patch": "@@ -284,7 +284,7 @@ export default function LikeButton({ likes }) {\n }\n ```\n \n-Alternatively, you can stream data from a Server Component to a Client Component with the [`use` Hook](https://react.dev/reference/reac...
2026-02-11T10:51:57
electron/electron
7a13c6f175c71afc1329a923896c3e7cc28d7905
678fb400fdb465fbfccd77681f32728a5f86e9bd
refactor: avoid deprecated `v8::Context::GetIsolate()` pt 4 (#47961) * refactor: remove GetIsolate() calls from SetPrivate() * refactor: remove excess GetIsolate() calls in PassValueToOtherContextInner() * refactor: remove GetIsolate() calls from GetPrivate() * refactor: add a v8::Isolate* local to ProxyFunctionWra...
[ { "path": "shell/renderer/api/electron_api_context_bridge.cc", "patch": "@@ -112,26 +112,24 @@ bool IsPlainArray(const v8::Local<v8::Value>& arr) {\n return !arr->IsTypedArray();\n }\n \n-void SetPrivate(v8::Local<v8::Context> context,\n+void SetPrivate(v8::Isolate* const isolate,\n+ v8::Lo...
2025-08-06T01:08:04
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
ca8effbde150257847f90de220686786aa091f90
0b06b68e21a3fbc75b3dd87c644da94828483a36
internal/coverage/decodemeta: correct wording in unknown version error Correct the wording in the error message returned by readFileHeader when encountering a meta-data file with an unsupported version. Change-Id: I49be1bb1509ccc64e8384103bd7f19382b536c26 GitHub-Last-Rev: 2ab8e05a21443c45635e42d788946bec2478ca99 GitH...
[ { "path": "src/internal/coverage/decodemeta/decodefile.go", "patch": "@@ -75,7 +75,7 @@ func (r *CoverageMetaFileReader) readFileHeader() error {\n \t// Vet the version. If this is a meta-data file from the future,\n \t// we won't be able to read it.\n \tif r.hdr.Version > coverage.MetaFileVersion {\n-\t\tr...
2025-12-24T17:39:35
rust-lang/rust
7553d6c7792e44b91101dd55203098331cb92f50
c466d3d6516d053196eeccc269f9ee350e2c6568
fix record_expr_field
[ { "path": "src/tools/rust-analyzer/crates/syntax/src/ast/syntax_factory/constructors.rs", "patch": "@@ -1496,7 +1496,20 @@ impl SyntaxFactory {\n if let Some(mut mapping) = self.mappings() {\n let mut builder = SyntaxMappingBuilder::new(ast.syntax().clone());\n \n- builder.map...
2026-03-25T06:04:55
nodejs/node
f819aec288eacd8f0750793045bcbc37e22b5572
1acd8df36ff61f1fd1f92bdb9a2d2a646ec8d071
deps: V8: cherry-pick ff34ae20c8e3 Original commit message: [objects] improve module linked status DCHECKs Improve DCHECKs that requires a module to be linked. This includes kLinked, kEvaluated, kEvaluatingAsync, kErrored and the missing kEvaluating. kEvaluating can be found when a cyclic module is b...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.8',\n+ 'v8_embedder_string': '-node.9',\n \n ##### V8 defaults for Node.js #####\n "...
2025-10-20T09:22:14
vercel/next.js
d95b7bffba51f93bd2166b11a7e7b30d5057ec74
c28948e0b3c199bff9123f91970906e80e4b1f08
docs: improve Graphite workflow documentation (#89488) ### What? Improves the Graphite workflow documentation in `.cursor/commands/gt-workflow.md`. ### Why? The previous documentation was unclear about when to use `gt` vs `git` commands, leading to potential workflow issues. ### How? - Clarifies that `gt` should ...
[ { "path": ".cursor/commands/gt-workflow.md", "patch": "@@ -4,24 +4,54 @@\n \n Use Graphite (`gt`) instead of git for ALL branch and commit operations in this repository.\n \n-## Forbidden Git Commands\n+## Use `gt` Instead of `git`\n \n-NEVER use these git commands directly:\n+All git commands work with `gt...
2026-02-11T09:56:39
electron/electron
678fb400fdb465fbfccd77681f32728a5f86e9bd
88064999048f8e7b049e1ade642f795e66977228
fix: video scrubbing on playback (#47703) * fix: fix video scrubbing on playback * chore: address review feedback --------- Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
[ { "path": "patches/chromium/feat_add_streaming-protocol_registry_to_multibuffer_data_source.patch", "patch": "@@ -12,8 +12,12 @@ This patch adds a list of \"streaming protocols\" to the MultibufferDataSource in\n other protocols to register their streaming behavior. MultibufferDataSource::AssumeFullyBuffere...
2025-08-05T16:48:52
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
golang/go
9cb3edbfe9eb68113453cdaa436db31d28577ab8
b3ed0627ce2476d438711e8fceafb39f3bd14b4e
regexp: standardize error message format in find_test.go This change updates the test error messages in find_test.go to follow the Go standard 'got, want' format. It also replaces 'expected/should be' terminology with the project's preferred style and improves the clarity of failure logs by using %q to quote string v...
[ { "path": "src/regexp/find_test.go", "patch": "@@ -159,23 +159,23 @@ func TestFind(t *testing.T) {\n \tfor _, test := range findTests {\n \t\tre := MustCompile(test.pat)\n \t\tif re.String() != test.pat {\n-\t\t\tt.Errorf(\"String() = `%s`; should be `%s`\", re.String(), test.pat)\n+\t\t\tt.Errorf(\"re.Stri...
2025-12-26T17:13:09
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
nodejs/node
1acd8df36ff61f1fd1f92bdb9a2d2a646ec8d071
de8386de4d16f7f481b7c89e2b5138fd949dc53d
deps: V8: backport fed47445bbdd Original commit message: Fix build on gcc This commit fixes two issues 1. ``` In file included from ../../src/compiler/turboshaft/assembler.h:37, from ../../src/wasm/turboshaft-graph-interface.h:13, from ../../src/wasm/fu...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.7',\n+ 'v8_embedder_string': '-node.8',\n \n ##### V8 defaults for Node.js #####\n "...
2025-10-07T21:28:34
electron/electron
88064999048f8e7b049e1ade642f795e66977228
637a504e28ce205050b3ae089e7492d3bf25b6dc
fix: offscreen mode under `window.open` creation (#47868) fix: offscreen mode under new window creation
[ { "path": "patches/chromium/can_create_window.patch", "patch": "@@ -21,10 +21,21 @@ index 378e3eb2f8b9d4daaf39ef213dec88d86cf90a5c..0ace2e0c7073ee97ebb274db4b184a07\n &no_javascript_access);\n \n diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_co...
2025-08-05T12:56:33
vercel/next.js
b067991e591f4965b873d4eef9a18ea1f321ca9b
adcac5dff1967a1cf9798bac54828e46a25bcb7e
Add support for with `type: "text"` under a new experimental flag, following what webpack did (#89560) ## Summary Adds support for the TC39 `import ... with { type: "text" }` proposal to Turbopack, allowing files to be imported as strings. This is gated behind a new experimental flag `turbopackImportTypeText`. ```j...
[ { "path": "crates/next-core/src/next_client/context.rs", "patch": "@@ -341,6 +341,7 @@ pub async fn get_client_module_options_context(\n esm_url_rewrite_behavior: Some(UrlRewriteBehavior::Relative),\n enable_typeof_window_inlining: Some(TypeofWindow::Object),\n enable_imp...
2026-02-11T07:33:54
golang/go
b3ed0627ce2476d438711e8fceafb39f3bd14b4e
3dcb48d2982e064ac8b5be01fe6847133fe56b88
tests: improve consistency and clarity of test diagnostics Minor updates to test diagnostics for consistency and readability: - Corrected an incorrect identifier - Standardized float formatting No behavior changes. Change-Id: I3d3633a7cc487209341ea92101f8c67848212080 GitHub-Last-Rev: b2822e846a91ce2563445f90f8d57686...
[ { "path": "test/cmplxdivide.go", "patch": "@@ -35,7 +35,7 @@ func main() {\n \t\t\t\tfmt.Printf(\"BUG\\n\")\n \t\t\t\tbad = true\n \t\t\t}\n-\t\t\tfmt.Printf(\"%v/%v: expected %v error; got %v\\n\", t.f, t.g, t.out, x)\n+\t\t\tfmt.Printf(\"%v/%v: got %v, want %v\\n\", t.f, t.g, x, t.out)\n \t\t}\n \t}\n \ti...
2025-12-29T19:39:04
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
nodejs/node
de8386de4d16f7f481b7c89e2b5138fd949dc53d
710105bab5b8a369258b343f444d63058d39b79e
deps: V8: cherry-pick f93055fbd5aa Original commit message: [runtime] Fastcase for empty getOwnPropertySymbols() Since symbols are not enumerable we can rule them out in case all properties are in the enum cache. Bug: 447154198 Change-Id: Ib2d58b67e5058d98323fcebaef3daba88c6304b5 Reviewed-on...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.6',\n+ 'v8_embedder_string': '-node.7',\n \n ##### V8 defaults for Node.js #####\n "...
2025-10-01T16:59:23
rust-lang/rust
ffe74d68abe7d779b934cfef2cd517ceb389bca4
5c46f391074109a193fe92437c814252e22d62a0
fix: wrap `Result<>` for desugar_try_expr_let_else Example --- ```rust fn test() { let pat: bool = Ok(true)$0?; } ``` **Before this PR** ```rust fn test() { let Ok(pat): Option<bool> = Ok(true) else { return Err(todo!()); }; } ``` **After this PR** ```rust fn test() { let Ok(pat): Result<bo...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/desugar_try_expr.rs", "patch": "@@ -116,7 +116,10 @@ pub(crate) fn desugar_try_expr(acc: &mut Assists, ctx: &AssistContext<'_>) -> Op\n let fill_expr = || crate::utils::expr_fill_default(ctx.config);\n let new...
2026-03-24T09:53:31
golang/go
f7b7e94b0a2798bab26e9906df823a0fe5bcddfd
e790d5967424b4230978f63d16ecc5033269dd02
test: clarify log message for surrogate UTF-8 check The current log message "does not error" is slightly ambiguous. This change clarifies the output. Change-Id: I5c2327b9fa3d3e28ce43ce1189f8b1b7663fe0d3 GitHub-Last-Rev: bb2b03fc909f0bae29ab540776ae1d28165a603a GitHub-Pull-Request: golang/go#76998 Reviewed-on: https:/...
[ { "path": "test/stringrange.go", "patch": "@@ -59,7 +59,7 @@ func main() {\n \n \tfor _, c := range \"a\\xed\\xa0\\x80a\" {\n \t\tif c != 'a' && c != utf8.RuneError {\n-\t\t\tfmt.Printf(\"surrogate UTF-8 does not error: %U\\n\", c)\n+\t\t\tfmt.Printf(\"surrogate UTF-8 does not produce an error: %U\\n\", c)\...
2025-12-26T14:39:48
electron/electron
40cdfdb1d1c4994fce665b03c2a53fe7f67e47d6
4ca10a1056afdfffa794ef3ead1452c643f54fd4
chore: bump node to v22.18.0 (main) (#47937) * chore: bump node in DEPS to v22.18.0 * crypto: fix inclusion of OPENSSL_IS_BORINGSSL define https://github.com/nodejs/node/pull/58845 * crypto: fix SHAKE128/256 breaking change introduced with OpenSSL 3.4 https://github.com/nodejs/node/pull/58960 * permission: propag...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '140.0.7327.0',\n 'node_version':\n- 'v22.17.1',\n+ 'v22.18.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2025-08-04T18:40:36
vercel/next.js
adcac5dff1967a1cf9798bac54828e46a25bcb7e
384cb2dadfa12bca55a883c7f1c7e37f22bb5a5a
Add turbopackIgnoreIssue config to suppress Turbopack warnings (#89682) ## What? Adds the `experimental.turbopackIgnoreIssue` configuration option, which allows developers to suppress specific Turbopack warnings and errors based on file path, issue title, and/or description patterns. Filtered issues are hidden from b...
[ { "path": "Cargo.lock", "patch": "@@ -9823,6 +9823,7 @@ dependencies = [\n \"tokio\",\n \"tracing\",\n \"turbo-bincode\",\n+ \"turbo-esregex\",\n \"turbo-frozenmap\",\n \"turbo-prehash\",\n \"turbo-rcstr\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "crate...
2026-02-11T07:26:58
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
nodejs/node
710105bab5b8a369258b343f444d63058d39b79e
46f72577a427e24f2d7d4fedf7c02c665dde2b9a
deps: support madvise(3C) across ALL illumos revisions In illumos, madvise(3C) now takes `void *` for its first argument post-illumos#14418, but uses `caddr_t` pre-illumos#14418. This fix will detect if the illumos mman.h file in use is pre-or-post-illumos#14418 so builds can work either way. PR-URL: https://github.c...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.5',\n+ 'v8_embedder_string': '-node.6',\n \n ##### V8 defaults for Node.js #####\n "...
2025-08-07T14:14:08
rust-lang/rust
1e4c1d6f75937e27c9df81519634cd9f01d8d982
8a703520e80d87d4423c01f9d4fbc9e5f6533a02
Make PinCoerceUnsized require Deref Also, delete impls on non-Deref types. Pin doesn't do anything useful for non-Deref types, so PinCoerceUnsized on such types makes no sense. This is a breaking change, since stable code can observe the deleted `PinCoerceUnsized` impls by uselessly coercing between such types insid...
[ { "path": "library/alloc/src/rc.rs", "patch": "@@ -2424,9 +2424,6 @@ unsafe impl<T: ?Sized, A: Allocator> PinCoerceUnsized for Rc<T, A> {}\n #[unstable(feature = \"pin_coerce_unsized_trait\", issue = \"150112\")]\n unsafe impl<T: ?Sized, A: Allocator> PinCoerceUnsized for UniqueRc<T, A> {}\n \n-#[unstable(f...
2025-11-22T15:58:39
golang/go
f4cec7917cc53c8c7ef2ea456b4bf0474c41189a
ca13fe02c48db993a34d441d87180cf665d5b288
cmd: fix unused errors reported by ineffassign Updates golang/go#35136 Change-Id: I36d26089d29933e363d9fa50f3174530b698450e Reviewed-on: https://go-review.googlesource.com/c/go/+/731040 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Florian Lehner <lehner.floria...
[ { "path": "src/cmd/internal/bootstrap_test/overlaydir_test.go", "patch": "@@ -43,6 +43,9 @@ func overlayDir(dstRoot, srcRoot string) error {\n \t\tdstPath := filepath.Join(dstRoot, suffix)\n \n \t\tinfo, err := entry.Info()\n+\t\tif err != nil {\n+\t\t\treturn err\n+\t\t}\n \t\tperm := info.Mode() & os.Mode...
2025-12-18T05:05:26
electron/electron
4ca10a1056afdfffa794ef3ead1452c643f54fd4
9d05454dc7fced8eac0c282eb3906c4f5f884836
chore: move gin::Handle to gin_helper (#47959) * chore: move gin::Handle to gin_helper * chore: fix lint
[ { "path": "filenames.gni", "patch": "@@ -653,6 +653,7 @@ filenames = {\n \"shell/common/gin_helper/function_template.cc\",\n \"shell/common/gin_helper/function_template.h\",\n \"shell/common/gin_helper/function_template_extensions.h\",\n+ \"shell/common/gin_helper/handle.h\",\n \"shell/co...
2025-08-04T17:03:06
vercel/next.js
5101d0499e11325cf28b60cb2933ad802ad943f5
b6311869b3cd11c0bf18f1e6a1df74eb8c860a77
Fix devlow job timeouts (#89804) Attempting to fix the devlow job timeouts that have been happening on canary for a bit x-ref: https://github.com/vercel/next.js/actions/runs/21889767463/job/63192963474
[ { "path": "scripts/devlow-bench.mjs", "patch": "@@ -10,6 +10,7 @@ import { waitForFile } from '@vercel/devlow-bench/file'\n const REPO_ROOT = fileURLToPath(new URL('..', import.meta.url))\n const START_SERVER_REGEXP = /Ready in \\d+/\n const URL_REGEXP = /Local:\\s+(?<url>.+)\\n/\n+const STARTUP_WAIT_TIMEOU...
2026-02-11T06:15:44
nodejs/node
6e5f3b9fe1ffb47fb231d9288349a23efcefbb06
7bc0f245b4fc60174f4d53761ca566a9608ba4e4
deps: define V8_PRESERVE_MOST as no-op on Windows It's causing linker errors with node.lib in node-gyp and potentially breaks other 3rd party tools PR-URL: https://github.com/nodejs/node/pull/56238 Refs: https://github.com/nodejs/node/pull/55784 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M ...
[ { "path": "common.gypi", "patch": "@@ -38,7 +38,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.1',\n+ 'v8_embedder_string': '-node.2',\n \n ##### V8 defaults for Node.js #####\n "...
2024-12-16T10:11:22
facebook/react
56408a5b12fa4099e9dbbeca7f6bc59e1307e507
c38e26897848374c34ac6b651fce4a9088ed4dd0
[Flight] Emit timestamps only in forwards advancing time in debug info (#33482) Previously you weren't guaranteed to have only advancing time entries, you could jump back in time, but now it omits unnecessary duplicates and clamps automatically if you emit a previous time entry to enforce forwards order only. The rea...
[ { "path": "fixtures/flight/src/App.js", "patch": "@@ -37,8 +37,19 @@ async function delay(text, ms) {\n return new Promise(resolve => setTimeout(() => resolve(text), ms));\n }\n \n+async function delayTwice() {\n+ await delay('', 20);\n+ await delay('', 10);\n+}\n+\n+async function delayTrice() {\n+ co...
2025-06-10T15:03:20
rust-lang/rust
289932194af47f75359e3db05b910d9c9b9e9856
833bf3c375b2931826f65a8bad31658aa9b5ac5f
Avoid unnecessary qualification of `ErrorGuaranteed`. It's imported and can be used directly within this file, and already is in a few places.
[ { "path": "compiler/rustc_middle/src/query/erase.rs", "patch": "@@ -120,8 +120,8 @@ impl<T> Erasable for Result<&'_ T, traits::query::NoSolution> {\n type Storage = [u8; size_of::<Result<&'static (), traits::query::NoSolution>>()];\n }\n \n-impl<T> Erasable for Result<&'_ T, rustc_errors::ErrorGuarantee...
2026-03-25T03:19:37
golang/go
7971fcdf537054608b2443a32f0fbb6dd4eba12a
0f620776d739f3de2c459c42d7ae2338ece35e67
test/codegen: tidy tests for bits Use Go idiomatic function names, use a common prefix, attempt to maintain some consistency, avoid naming functions based upon machine specific instructions and combine a duplicate test that likely exists due to this confusion. Change-Id: I996e9efd7497821edef94c1997d4a310d9d79a71 Revi...
[ { "path": "test/codegen/bits.go", "patch": "@@ -8,11 +8,11 @@ package codegen\n \n import \"math/bits\"\n \n-/************************************\n- * 64-bit instructions\n- ************************************/\n+//\n+// 64 bit instructions\n+//\n \n-func bitcheck64_constleft(a uint64) (n int) {\n+func bi...
2025-12-23T12:43:15
vercel/next.js
50d61f93d855a9cd1504d3d5b5081ab160df8d8f
a040e38f368f09a368f78347fcf474cb3c41164a
Turbopack: Fix slow filesystem benchmark warning for `next dev` (#89798) Apparently we broke this about 6 months ago and didn't notice: - We briefly had both a `println` (legacy) and a compilation event, leading to duplicate logging. - First: https://github.com/vercel/next.js/pull/80631 - I added a filter to `backgro...
[ { "path": "crates/next-napi-bindings/src/next_api/project.rs", "patch": "@@ -82,7 +82,7 @@ use crate::{\n \n /// Used by [`benchmark_file_io`]. This is a noisy benchmark, so set the\n /// threshold high.\n-const SLOW_FILESYSTEM_THRESHOLD: Duration = Duration::from_millis(100);\n+const SLOW_FILESYSTEM_THRESH...
2026-02-11T05:02:44
facebook/react
c38e26897848374c34ac6b651fce4a9088ed4dd0
80c03eb7e0f05da5e0de6faebbe8dbb434455454
[Fiber] Fix hydration of useId in SuspenseList (#33491) Includes #31412. The issue is that `pushTreeFork` stores some global state when reconcile children. This gets popped by `popTreeContext` in `completeWork`. Normally `completeWork` returns its own `Fiber` again if it wants to do a second pass which will call `pus...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMUseId-test.js", "patch": "@@ -7,7 +7,6 @@\n * @emails react-core\n * @jest-environment ./scripts/jest/ReactDOMServerIntegrationEnvironment\n */\n-\n let JSDOM;\n let React;\n let ReactDOMClient;\n@@ -24,6 +23,8 @@ let buffer = '';\n let hasErrored = fal...
2025-06-09T23:37:49
electron/electron
9d05454dc7fced8eac0c282eb3906c4f5f884836
0e862bba61e71706e48904b0c3acba41eee26a0f
chore: move gin::DeprecatedWrappable to gin_helper (#47958) * chore: move gin::DeprecatedWrappable to gin_helper This is in preparation for migrating to gin::Wrappable based on cppgc #47922 The upstream class will be deleted soon via roller PR but the cppgc migration should happen outside the roll, this change retain...
[ { "path": "patches/chromium/feat_add_signals_when_embedder_cleanup_callbacks_run_for.patch", "patch": "@@ -10,19 +10,10 @@ shutdown leading to UAF in the second pass.\n \n Details at https://github.com/microsoft/vscode/issues/192119#issuecomment-2375851531\n \n-The signals exposed in this patch does the fo...
2025-08-04T14:28:01
nodejs/node
5c50445dfccb86e12c73da1f47933f37075ca4af
a59706f772ada0aefb1903bc183188c99b3388a7
test: fix small compile warning in test_network_requests_buffer.cc PR-URL: https://github.com/nodejs/node/pull/60281 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
[ { "path": "test/cctest/inspector/test_network_requests_buffer.cc", "patch": "@@ -168,7 +168,7 @@ TEST(RequestsBuffer, EnforceLimit) {\n buffer.find(\"4\")->second.push_request_data_blob(\n protocol::Binary::fromSpan(kDummyData, 10));\n // \"3\" and \"4\" are kept.\n- EXPECT_EQ(buffer.tota...
2025-10-22T15:16:32
golang/go
0f620776d739f3de2c459c42d7ae2338ece35e67
a5fe8c07ae7ae96049f692c43008ad2f770924c7
simd/archsimd: fix "go generate" command Correct the generate command for test helpers. There is no longer a genfiles.go. Also correct the generated file headers to match the current generator layout. Change-Id: Ifb9a8c394477359020ff44290dbaabe7a2d59aca Reviewed-on: https://go-review.googlesource.com/c/go/+/732280 LU...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -1,4 +1,4 @@\n-// Code generated by x/arch/internal/simdgen using 'go run . -xedPath $XED_PATH -o godefs -goroot $GOROOT go.yaml types.yaml categories.yaml'; DO NOT EDIT.\n+// Code generated by 'simdgen -o godefs -goroot $GOROOT -xedPath $X...
2025-12-23T16:31:36
facebook/react
b6c0aa88140bba2a61c1de16bda2505c89b26235
428ab8200128d9421828dbe644c3448d21ea8c45
[compiler]: fix link compiler & 4 broken tests from path containing spaces (#33409) ## Summary Problem #1: Running the `link-compiler.sh` bash script via `"prebuild"` script fails if a developer has cloned the `react` repo into a folder that contains _any_ spaces. 3 tests fail because of this. <img width="1003" alt=...
[ { "path": "compiler/apps/playground/scripts/link-compiler.sh", "patch": "@@ -8,8 +8,8 @@ set -eo pipefail\n \n HERE=$(pwd)\n \n-cd ../../packages/react-compiler-runtime && yarn --silent link && cd $HERE\n-cd ../../packages/babel-plugin-react-compiler && yarn --silent link && cd $HERE\n+cd ../../packages/rea...
2025-06-09T15:40:27
electron/electron
4232ed2814e92275b4b80658f5070eb477167989
e7683bdd25c904b2ae408949029f881ccb65d6b9
fix: crash on `window.close()` with `webContents` on blur (#47933) fix: crash on window.close with WebContentsView on blur
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -2747,35 +2747,42 @@ void WebContents::CloseDevTools() {\n if (type_ == Type::kRemote)\n return;\n \n- DCHECK(inspectable_web_contents_);\n- inspectable_web_contents_->CloseDevTools();\n+ if (inspectable_web_contents_)\n+ i...
2025-08-04T08:35:29
nodejs/node
a59706f772ada0aefb1903bc183188c99b3388a7
f46d501b7f4c6a8b838f472693596044d14a566f
doc, module: change async customization hooks to experimental There is ongoing work to replace async customization hooks by a synchronous variant. As a result bugs/design flaws or the async variant (thread leak, overhead) are not addressed. Adapt stability index to avoid wrong assumptions they might move to stable. R...
[ { "path": "doc/api/module.md", "patch": "@@ -608,8 +608,7 @@ changes:\n \n <!-- type=misc -->\n \n-> Stability: 1.2 - Release candidate (asynchronous version)\n-> Stability: 1.1 - Active development (synchronous version)\n+> Stability: 1.1 - Active development\n \n There are two types of module customizatio...
2025-10-22T14:43:22
vercel/next.js
f7dd09fd5fe57c5d853f2f09157b43cdafbe00af
4385ed36f66dfe0d9ae6a955135be7c1461fd35f
[Instant] Validation on client navs (#89777) This PR makes instant validation work for client navigations, albeit in a pretty inefficent way. If we're navigating and have an `instant` config somewhere in the tree, we won't skip shared layouts like a client navigation usually would. Instead, we render all the shared se...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -92,7 +92,10 @@ import { createServerInsertedHTML } from './server-inserted-html'\n import { getRequiredScripts } from './required-scripts'\n import { addPathPrefix } from '../../shared/lib/router/utils/add-path-prefix'\n import { ...
2026-02-10T21:03:16
golang/go
a23d1a4ebe5ca1f4964ad51a92d99edf5a95d530
866e461b9689d03dbbf2df19b86cace21270865b
bytes: improve consistency in split test messages This change improves consistency in the error messages used by TestSplit and TestSplitAfter in bytes_test.go Change-Id: Idc4e77a516037ce17cbb1bdffe3ac00bcde5de42 GitHub-Last-Rev: 8c4a35186851004251e8eee71c88ca1c822851c1 GitHub-Pull-Request: golang/go#76970 Reviewed-on...
[ { "path": "src/bytes/bytes_test.go", "patch": "@@ -961,7 +961,7 @@ func TestSplit(t *testing.T) {\n \t\tif tt.n < 0 {\n \t\t\tb := sliceOfString(Split([]byte(tt.s), []byte(tt.sep)))\n \t\t\tif !slices.Equal(result, b) {\n-\t\t\t\tt.Errorf(\"Split disagrees withSplitN(%q, %q, %d) = %v; want %v\", tt.s, tt.se...
2025-12-23T18:11:53
facebook/react
428ab8200128d9421828dbe644c3448d21ea8c45
4df098c4c2c51a033592ebc84abc47cc49a6bfb2
[Flight] Simulate fetch to third party in fixture (#33484) This adds some I/O to go get the third party thing to test how it overlaps. With #33482, this is what it looks like. The await gets cut off when the third party component starts rendering. I.e. after the latency to start. <img width="735" alt="Screenshot 202...
[ { "path": "fixtures/flight/src/App.js", "patch": "@@ -43,7 +43,7 @@ async function Bar({children}) {\n }\n \n async function ThirdPartyComponent() {\n- return delay('hello from a 3rd party', 30);\n+ return await delay('hello from a 3rd party', 30);\n }\n \n let cachedThirdPartyStream;\n@@ -52,16 +52,35 @@...
2025-06-09T14:04:40
electron/electron
e7683bdd25c904b2ae408949029f881ccb65d6b9
bdaf3b9a2bfb0a680b2929b9fc9a663f099ab772
feat: Use DIR_ASSETS path to locate resource bundles (#47439) * feat: Use DIR_ASSETS path to locate resource bundles * Use DIR_ASSETS for calculating ASAR relative paths * Add test to verify 'assets' matches parent dir of 'exe' * Add Mac-specific test for assets path (but it is failing) * test: Update app.getPath(...
[ { "path": "docs/api/app.md", "patch": "@@ -602,6 +602,7 @@ Returns `string` - The current application directory.\n * `%APPDATA%` on Windows\n * `$XDG_CONFIG_HOME` or `~/.config` on Linux\n * `~/Library/Application Support` on macOS\n+ * `assets` The directory where app assets such as `resources...
2025-08-04T03:34:08
nodejs/node
fe02cab92c0986a72c3dc5e817f647e04140f858
a5f3cd8cb5ba9e7911d93c5fd3ebc6d781220dd8
msi: fix WiX warnings Refs: https://github.com/nodejs/build/issues/4130 PR-URL: https://github.com/nodejs/node/pull/60251 Fixes: https://github.com/nodejs/build/issues/4130 Reviewed-By: Richard Lau <richard.lau@ibm.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Rev...
[ { "path": "tools/msvs/msi/nodemsi/nodemsi.wixproj", "patch": "@@ -1,5 +1,5 @@\n-<Project Sdk=\"WixToolset.Sdk/4.0.0-rc.1\">\n- <Import Project=\"Sdk.props\" Sdk=\"WixToolset.Sdk\" Version=\"4.0.0-rc.1\" />\n+<Project>\n+ <Import Project=\"Sdk.props\" Sdk=\"WixToolset.Sdk\" Version=\"4.0.6\" />\n <Proper...
2025-10-22T06:38:18