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
vercel/next.js
5dac44820cdb54bcffeb31fdf534bed75db93649
cd3f86815f3ffefff8bb2143a7339655fd93621a
Turbopack: fix and finish immutable tasks (#80996) ### What? Fixes the problems with the implementation of immutable tasks, adds tests and debug asserts to ensure it's working. * There was some confusion between children and dependencies. Children are not involved with immutablility, only dependencies are. * Opt out...
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -431,7 +431,7 @@ impl ProjectContainer {\n \n #[turbo_tasks::value_impl]\n impl ProjectContainer {\n- #[turbo_tasks::function(invalidator)]\n+ #[turbo_tasks::function]\n pub async fn project(&self) -> Result<Vc<Project>> {\n let env_...
2025-07-02T13:18:41
nodejs/node
52ba14405bed0759f992b4c34f8cef4659e39cb3
acd1d22ff8fdbefddfa4f13cd80e00a8f0857674
tools: fix `SLACK_TITLE` in invalid commit workflow PR-URL: https://github.com/nodejs/node/pull/53912 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": ".github/workflows/notify-on-push.yml", "patch": "@@ -60,7 +60,7 @@ jobs:\n env:\n SLACK_COLOR: '#DE512A'\n SLACK_ICON: https://github.com/nodejs.png?size=48\n- SLACK_TITLE: Invalid commit was pushed to ${{ github.repository.default_branch }}\n+ SLACK_...
2024-07-21T19:43:40
electron/electron
be32740991785c066052d710ddabd7a928f9323a
b8a21dbcd7d784cc4999754b4826d62e0499307a
docs: fix `app.getPreferredSystemLanguages()` return type (#37821) docs: fix app.getPreferredSystemLanguages() return type
[ { "path": "docs/api/app.md", "patch": "@@ -751,14 +751,21 @@ This API can be used for purposes such as deciding what language to present the\n \n Here are some examples of return values of the various language and locale APIs with different configurations:\n \n-* For Windows, where the application locale is...
2023-04-05T13:31:53
facebook/react
d9e00f795b77676fb14f2a3c6f421f48f73bec2a
f9d75e32ba85b3c6a2a5d20fa27ba7e23d5529b2
Stop flowing and then abort if a stream is cancelled (#27405) We currently abort a stream either it's explicitly told to abort (e.g. by an abortsignal). In this case we still finish writing what we have as well as instructions for the client about what happened so it can trigger fallback cases and log appropriately...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServerBrowser-test.js", "patch": "@@ -342,7 +342,8 @@ describe('ReactDOMFizzServerBrowser', () => {\n expect(isComplete).toBe(false);\n \n const reader = stream.getReader();\n- reader.cancel();\n+ await reader.read();\n+ await reader.c...
2023-09-22T19:16:49
golang/go
440a8f7024044387a6e440fc003bd8fd61908c81
b138f8e4d2912e1105b69b9aaa24c6e8250652c6
internal/poll: support async file operations on Windows This CL adds support for async file operations on Windows. The affected functions are Read, Write, Pread, and Pwrite. The code has been slightly refactored to avoid duplication. Both the async and sync variants follow the same code path, with the exception of th...
[ { "path": "src/internal/poll/fd_windows.go", "patch": "@@ -88,6 +88,17 @@ type operation struct {\n \tbufs []syscall.WSABuf\n }\n \n+func (o *operation) overlapped() *syscall.Overlapped {\n+\tif o.runtimeCtx == 0 {\n+\t\t// Don't return the overlapped object if the file handle\n+\t\t// doesn't use overlap...
2025-03-25T15:42:51
vercel/next.js
fa3e45ea158effc2e98800d349dfbddcbf21792d
5efef452262235a19baee2e35c9acdb0c1cbd7e7
build(turbopack): Update `swc_core` to `v30.0.1` (#81179) ### What? ChangeLog: https://github.com/swc-project/swc/compare/swc_core%40v29.4.2...swc_core%40v30.0.1 ### Why? Apply https://github.com/swc-project/swc/pull/10754 to fix preset-env
[ { "path": ".cargo/config.toml", "patch": "@@ -71,3 +71,6 @@ rustflags = [\n \n [target.armv7-unknown-linux-gnueabihf]\n linker = \"arm-linux-gnueabihf-gcc\"\n+\n+[target.wasm32-unknown-unknown]\n+rustflags = [\"-Zshare-generics=y\", \"--cfg\", 'getrandom_backend=\"wasm_js\"']\n\\ No newline at end of file",...
2025-07-02T12:02:12
nodejs/node
acd1d22ff8fdbefddfa4f13cd80e00a8f0857674
036ff03691874eea8141200953b062a6843102d6
doc: add info about prefix-only modules to `module.builtinModules` PR-URL: https://github.com/nodejs/node/pull/53954 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/module.md", "patch": "@@ -28,6 +28,8 @@ added:\n A list of the names of all modules provided by Node.js. Can be used to verify\n if a module is maintained by a third party or not.\n \n+Note: the list doesn't contain [prefix-only modules][] like `node:test`.\n+\n `module` in this context i...
2024-07-21T17:51:20
rust-lang/rust
0061a2232de5b23a703380e8f90926c5335aecad
66daca1a85c459b1da49dc0ef1ba027b53e4ac2c
rustc_parse_format: improve diagnostics for unsupported debug `=` syntax Detect Python-style f-string debug syntax in format strings and emit a clear diagnostic explaining that it is not supported in Rust. When the intended operation can be inferred, suggest the corresponding Rust alternative e.g from `println!("{=}",...
[ { "path": "compiler/rustc_builtin_macros/src/errors.rs", "patch": "@@ -678,6 +678,18 @@ pub(crate) enum InvalidFormatStringSuggestion {\n #[primary_span]\n span: Span,\n },\n+\n+ #[suggestion(\n+ \"use rust debug printing macro\",\n+ code = \"{replacement}\",\n+ s...
2026-01-14T05:33:45
electron/electron
3f42040a1b46f3c3bb338730f30f793ceadee386
e9d5c3517cf3a6090826d7e8ca91c2d059a7caca
fix: Fn+F fullscreen transitioning on macOS (#37803)
[ { "path": "shell/browser/api/electron_api_web_contents_mac.mm", "patch": "@@ -7,6 +7,8 @@\n #include \"shell/browser/ui/cocoa/event_dispatching_window.h\"\n #include \"shell/browser/web_contents_preferences.h\"\n #include \"ui/base/cocoa/command_dispatcher.h\"\n+#include \"ui/base/cocoa/nsmenu_additions.h\"...
2023-04-04T13:16:59
facebook/react
f9d75e32ba85b3c6a2a5d20fa27ba7e23d5529b2
9ba1bbd6568f170dfbc31e05d7ee88e3d9101523
fix[devtools/extension]: added a workaround for proxy content script injection in firefox (#27375) Changes: 1. [Firefox-only] For some reason, Firefox might try to inject dynamically registered content script in pages like `about:blank`. I couldn't find a way to change this behaviour, `about:` is not a valid schem...
[ { "path": "packages/react-devtools-extensions/src/background/index.js", "patch": "@@ -60,6 +60,12 @@ function isNumeric(str: string): boolean {\n \n chrome.runtime.onConnect.addListener(port => {\n if (port.name === 'proxy') {\n+ // Might not be present for restricted pages in Firefox\n+ if (port.se...
2023-09-22T18:36:03
golang/go
87d1833c66aa25a7e495987b066bdd22d1fe3105
44fef2aa4db70bfbe7bfd2abbd5b12eb776cde1d
cmd/go/internal/modload: improve ErrNoModRoot error text Before this change, in several cases where HasModRoot() returned false, we'd return ErrNoModRoot. ErrNoModRoot would say that there was no go.mod file but would not mention workspaces. With this change, ErrNoModRoot will return error text that's different if we'...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -610,7 +610,7 @@ func inWorkspaceMode() bool {\n \treturn workFilePath != \"\"\n }\n \n-// HasModRoot reports whether a main module is present.\n+// HasModRoot reports whether a main module or main modules are present.\n // HasModRoot may return ...
2025-03-25T18:10:31
vercel/next.js
5efef452262235a19baee2e35c9acdb0c1cbd7e7
d41950dc96761d4b5f85e50462cd84ec3b35f498
Update caching.mdx (#81129) ### What? Fix misleading information in the docs about mixing cached and uncached `fetch` calls during dynamic rendering. ### Why? I followed the guide (using Next.js 15.3.2) and tried it out with this code: ```ts const joke = await fetch("https://api.chucknorris.io/jokes/random", { ...
[ { "path": "docs/01-app/02-guides/caching.mdx", "patch": "@@ -312,7 +312,7 @@ You can opt out of the Full Route Cache, or in other words, dynamically render c\n \n - **Using a [Dynamic API](#dynamic-apis)**: This will opt the route out from the Full Route Cache and dynamically render it at request time. The ...
2025-07-02T07:56:02
nodejs/node
036ff03691874eea8141200953b062a6843102d6
d0a6b605fba6cd69a82e6f12ff0363eef8fe1ee9
test: reduce flakiness of `test-assert-esm-cjs-message-verify` PR-URL: https://github.com/nodejs/node/pull/53967 Fixes: https://github.com/nodejs/node/issues/53962 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Marco Ippolito <marcoippolito54...
[ { "path": "test/parallel/test-assert-esm-cjs-message-verify.js", "patch": "@@ -1,51 +1,31 @@\n 'use strict';\n \n const { spawnPromisified } = require('../common');\n-const tmpdir = require('../common/tmpdir');\n-const assert = require('assert');\n-const { writeFileSync, unlink } = require('fs');\n-const { ...
2024-07-21T17:34:38
facebook/react
7b58600fb928dae935e85182c2142629af38dfe5
b9275f65bc77824b4f938637a8c4f972a5e21e21
[tests] Repros for bugs and todos
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.bug-lambda-array-access-member-expr.expect.md", "patch": "@@ -0,0 +1,30 @@\n+\n+## Input\n+\n+```javascript\n+import { invoke } from \"shared-runtime\";\n+\n+function Foo() {\n+ const x = [{ value: 0 }, { value: 1 ...
2023-09-22T02:38:40
electron/electron
e9d5c3517cf3a6090826d7e8ca91c2d059a7caca
91f62ae73f18c567d19e42e3cfe8cb809160fd8a
fix: apply csp correctly when contextIsolation: false (#37756) * fix: apply csp correctly when contextIsolation: false * better comments
[ { "path": "shell/common/node_bindings.cc", "patch": "@@ -184,9 +184,10 @@ v8::ModifyCodeGenerationFromStringsResult ModifyCodeGenerationFromStrings(\n v8::Local<v8::Context> context,\n v8::Local<v8::Value> source,\n bool is_code_like) {\n- // If we're running with contextIsolation enabled in th...
2023-04-04T08:31:49
golang/go
2bf57a3534f478d9c072391b1deba1d211545661
936bb82ddb7f6456e3008b26f0398880d11ce3c0
testing: document exit codes Fixes #25989 Change-Id: I2e2a2a17854034ff68e69b8973018b1b2e7d59f5 Reviewed-on: https://go-review.googlesource.com/c/go/+/660076 Reviewed-by: Thanyalak Detkhong (Palm’my) <pmy4416@gmail.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Damien Neil <dneil@google.com> LUC...
[ { "path": "src/testing/testing.go", "patch": "@@ -2043,6 +2043,9 @@ var testingTesting bool\n var realStderr *os.File\n \n // Run runs the tests. It returns an exit code to pass to os.Exit.\n+// The exit code is zero when all tests pass, and non-zero for any kind\n+// of failure. For machine readable test r...
2025-03-22T00:48:16
vercel/next.js
343c83807fd53a2052fce6f7ddccf8461edee8b8
3e022577f2cacfc5c5bb0553327b3e116a58f68d
[node-webstreams] Exhaustive React aliases in App Router (#81040) The previous logic relied heavily on default-fallthroughs which makes it hard to follow what alias we end up using in which bundle. The new logic has more duplication which is intended so that you think about each entrypoint. With the new factoring, ...
[ { "path": "crates/next-core/src/next_edge/context.rs", "patch": "@@ -147,7 +147,7 @@ pub async fn get_edge_resolve_options_context(\n .map(RcStr::from),\n );\n \n- if ty.supports_react_server() {\n+ if ty.should_use_react_server_condition() {\n custom_conditions.push(rcstr!(\"r...
2025-07-02T05:28:36
nodejs/node
bc677d19377f3dc8e6c4203d4dd84cbbaaea6093
befbe69a0d3617c5e3a71abce5c396a8de453eaa
doc,tools: enforce use of `node:` prefix PR-URL: https://github.com/nodejs/node/pull/53950 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Mohammed Keyvanzad...
[ { "path": "doc/api/async_hooks.md", "patch": "@@ -704,7 +704,7 @@ import {\n executionAsyncId,\n executionAsyncResource,\n createHook,\n-} from 'async_hooks';\n+} from 'node:async_hooks';\n const sym = Symbol('state'); // Private symbol to avoid pollution\n \n createHook({", "additions": 1, "d...
2024-07-21T15:44:27
facebook/react
b9275f65bc77824b4f938637a8c4f972a5e21e21
8b679e9138025c8e632b8b89d0bf3f4835bcfc18
[ez] Add TODO bailout on non-backward compatible holey arrays --- (pasted from comment) Instead of handling holey arrays, bail out with a TODO error. Older versions of babel seem to have inconsistent handling of holey arrays, at least when paired with HermesParser. When using these versions, we should bail ou...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -1385,6 +1385,14 @@ function lowerExpression(\n elements.push({\n kind: \"Hole\",\n });\n+ if (builder.environment.bailoutOnHoleyArrays) {\n+ builder.errors.push({\n+...
2023-09-22T00:54:58
electron/electron
4c8583c36525b4fe0778eb6585881b6327737802
0b4ef2b1e51edb325bbbf8b7d15ece88be9d0e9e
test: remove workaround for fixed Menu.closePopup issue (#37802)
[ { "path": "spec/api-menu-spec.ts", "patch": "@@ -817,10 +817,7 @@ describe('Menu module', function () {\n it('should emit menu-will-close event', (done) => {\n menu.on('menu-will-close', () => { done(); });\n menu.popup({ window: w });\n- // https://github.com/electron/electron/issues/1...
2023-04-04T08:27:51
golang/go
9c88db5f1eba68999184bb043a0b339349b81db4
aaf9b46800fe12c11c17bffebc82436204a1e85b
runtime: always show runfinq in traceback Today, runtime.runfinq is hidden whenever runtime frames are hidden. However this frame serves as a hint that this goroutine is running finalizers, which is otherwise unclear, but can be useful when debugging issues with finalizers. Fixes #73011. Change-Id: I6a6a636cb63951f...
[ { "path": "src/runtime/crash_test.go", "patch": "@@ -10,6 +10,7 @@ import (\n \t\"errors\"\n \t\"flag\"\n \t\"fmt\"\n+\t\"internal/profile\"\n \t\"internal/testenv\"\n \ttraceparse \"internal/trace\"\n \t\"io\"\n@@ -1100,3 +1101,77 @@ func TestNetpollWaiters(t *testing.T) {\n \t\tt.Fatalf(\"output is not %q...
2025-03-24T07:08:33
vercel/next.js
3e022577f2cacfc5c5bb0553327b3e116a58f68d
3cb2f2737a48883f8c6de9f8d7013c5cd5a6554e
Fix resolvedPathname for middleware rewrite (#81144) This updates the handling of `resolvedPathname` to handle the case we don't know the `rewroteURL` for example when it's a middleware rewrite and we can't derive it since it's fully dynamic. Since we always know the `srcPage` we can always recreate the final URL usin...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -41,7 +41,6 @@ import {\n type ResponseCacheEntry,\n type ResponseGenerator,\n } from '../../server/response-cache'\n-import { decodePathParams } from '../../server/lib/router-utils/decode-path-params'\n import { FallbackMode, parse...
2025-07-02T03:53:54
facebook/react
8b679e9138025c8e632b8b89d0bf3f4835bcfc18
1ce952e687b7d2031bf3d6aa69f917506bc2c2cb
[ez] Fix prettier not formatting test fixtures in vscode This was super annoying. Turns out we had a top level directory for old projects called fixtures that shared a name with our fixture directories.
[ { "path": "compiler/.prettierignore", "patch": "@@ -1,4 +1,4 @@\n-fixtures/\n+.fixtures/\n bench/\n **/dist\n **/__tests__/fixtures/**/*.expect.md", "additions": 1, "deletions": 1, "language": "Unknown" } ]
2023-09-21T21:04:25
nodejs/node
50d09bc5f63552ebc26f2edb283cf34e523334a6
cf8e5356d9fbbdca40d9b9fe062b3c292b7e91e3
test: deflake test-blob-file-backed Avoid race conditions by using a different file for each subtest. Fixes: https://github.com/nodejs/node/issues/51860 PR-URL: https://github.com/nodejs/node/pull/53920 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
[ { "path": "test/parallel/test-blob-file-backed.js", "patch": "@@ -21,13 +21,17 @@ const tmpdir = require('../common/tmpdir');\n const testfile = tmpdir.resolve('test-file-backed-blob.txt');\n const testfile2 = tmpdir.resolve('test-file-backed-blob2.txt');\n const testfile3 = tmpdir.resolve('test-file-backed...
2024-07-20T13:16:23
electron/electron
f40bd2da23ae04be32398f22eebfd558dec0068f
e31f101712ac7ce1c0e54671241695d5b8c57211
fix: record helper error messages in electron_main_mac (#37807)
[ { "path": "shell/app/electron_main_mac.cc", "patch": "@@ -18,13 +18,35 @@\n #include \"sandbox/mac/seatbelt_exec.h\" // nogncheck\n #endif\n \n+extern \"C\" {\n+// abort_report_np() records the message in a special section that both the\n+// system CrashReporter and Crashpad collect in crash reports. Using...
2023-04-03T20:14:19
golang/go
5918101d673d601c26f5de880b1fa2c6564fb745
b7f8c2a11058fe266fa5ddd0bc80dbf69b03b172
testing: detect a stopped timer in B.Loop Currently, if the user stops the timer in a B.Loop benchmark loop, the benchmark will run until it hits the timeout and fails. Fix this by detecting that the timer is stopped and failing the benchmark right away. We avoid making the fast path more expensive for this check by ...
[ { "path": "src/cmd/compile/internal/inline/interleaved/interleaved.go", "patch": "@@ -253,7 +253,7 @@ func (s *inlClosureState) mark(n ir.Node) ir.Node {\n \n \tif isTestingBLoop(n) {\n \t\t// No inlining nor devirtualization performed on b.Loop body\n-\t\tif base.Flag.LowerM > 1 {\n+\t\tif base.Flag.LowerM...
2025-03-20T16:16:17
vercel/next.js
3cb2f2737a48883f8c6de9f8d7013c5cd5a6554e
e52d8c71f180a0791dec1b57f1129ee4571b14c4
Remove unneccesary step that's making workflow fail (#81164) This step was causing the front-sync job to fail. I'm not totally sure how it was working before, some other workflow must have logged logged in at some point. This is just a debug step anyway, so I think we can delete it. **I confirmed that the next step wo...
[ { "path": ".github/workflows/test_e2e_deploy_release.yml", "patch": "@@ -108,10 +108,6 @@ jobs:\n - id: test-result\n name: Set test result variable\n run: echo 'immediately-close=${{ needs.test-deploy.result != 'success' && 'true' || 'false' }}' >> \"$GITHUB_OUTPUT\"\n- - name: C...
2025-07-02T03:48:16
facebook/react
56b14477e902ac076018be2e7bf2ea3092ac9e7d
68ac6dbcf8d58a67e94e9061395dd96a52d92377
fix[devtools/useTransition]: don't check for dispatch property when determining if hook is stateful (#27365) https://github.com/facebook/react/pull/26740 introduced regression: React DevTools doesn't record updates for `useTransition` hook. I can add more details about things on DevTools side, if needed. The root...
[ { "path": "packages/react-devtools-shared/src/backend/renderer.js", "patch": "@@ -1419,22 +1419,20 @@ export function attach(\n \n const boundHasOwnProperty = hasOwnProperty.bind(queue);\n \n- // Detect the shape of useState() or useReducer()\n+ // Detect the shape of useState() / useReducer() / u...
2023-09-21T20:26:20
rust-lang/rust
40857fcd00c7982cb7ca5f32674f42ce6e1e9688
bd0d19f0e80ca5b0240ba44ca6f5cde58d03914b
chore: fix typos suggested by typos-cli
[ { "path": "src/tools/miri/src/alloc/isolated_alloc.rs", "patch": "@@ -66,10 +66,10 @@ impl IsolatedAlloc {\n // And make sure the align is at least one page\n let align = std::cmp::max(layout.align(), self.page_size);\n // pg_count gives us the # of pages needed to satisfy the size. ...
2026-02-05T11:48:55
nodejs/node
cf8e5356d9fbbdca40d9b9fe062b3c292b7e91e3
6fc0218e3ea13c91f0fe388ee33af5a73f776252
lib: improve error message when index not found on cjs PR-URL: https://github.com/nodejs/node/pull/53859 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "src/node_file.cc", "patch": "@@ -3185,6 +3185,8 @@ void BindingData::LegacyMainResolve(const FunctionCallbackInfo<Value>& args) {\n return;\n }\n \n+ std::string package_initial_file = \"\";\n+\n ada::result<ada::url_aggregator> file_path_url;\n std::optional<std::string> initial_file_...
2024-07-20T00:22:24
electron/electron
601217218759d088f12680a428fead8c8b26a5e0
a75b892e9080753dcc5e1344f2a59fa641a65be1
fix: set background color for menu bar on Windows (#37766)
[ { "path": "shell/browser/ui/views/menu_bar.cc", "patch": "@@ -35,12 +35,11 @@ const char MenuBar::kViewClassName[] = \"ElectronMenuBar\";\n MenuBar::MenuBar(NativeWindow* window, RootView* root_view)\n : background_color_(kDefaultColor), window_(window), root_view_(root_view) {\n const ui::NativeTheme...
2023-03-31T16:06:09
vercel/next.js
e52d8c71f180a0791dec1b57f1129ee4571b14c4
0a67d1c701e1881a567b2ac226e7fb4938441e66
[dynamicIO] recognize prerender interrupted errors as well known (#81160) all Next.js errors should pass through the RSC boundary with an in tact digest
[ { "path": "packages/next/src/server/app-render/create-error-handler.tsx", "patch": "@@ -7,6 +7,7 @@ import { isAbortError } from '../pipe-readable'\n import { isBailoutToCSRError } from '../../shared/lib/lazy-dynamic/bailout-to-csr'\n import { isDynamicServerError } from '../../client/components/hooks-serve...
2025-07-02T02:59:22
golang/go
b7f8c2a11058fe266fa5ddd0bc80dbf69b03b172
c72e2747255b6ee44d024732b37333dbc9efa37e
testing: detect early return from B.Loop Currently, if a benchmark function returns prior to B.Loop() returning false, we'll report a bogus result. While there was no way to detect this with b.N-style benchmarks, one way b.Loop()-style benchmarks are more robust is that we *can* detect it. This CL adds a flag to B th...
[ { "path": "src/testing/benchmark.go", "patch": "@@ -124,6 +124,8 @@ type B struct {\n \t\t// i is the current Loop iteration. It's strictly monotonically\n \t\t// increasing toward n.\n \t\ti int\n+\n+\t\tdone bool // set when B.Loop return false\n \t}\n }\n \n@@ -201,6 +203,7 @@ func (b *B) runN(n int) {\n...
2025-03-20T14:26:54
facebook/react
3c27178a2f2c74f14d90613028e3929e1f06d830
2b3d5826836ac59f8446281976762d594e55d97e
Update tracked value after resetting radio group (#27394) Fixes #26876, I think. Review each commit separately (all assertions pass in main already, except the last assertInputTrackingIsClean in "should control radio buttons"). I'm actually a little confused on two things here: * All the isCheckedDirty assertion...
[ { "path": "packages/react-dom-bindings/src/client/ReactDOMInput.js", "patch": "@@ -388,10 +388,6 @@ export function restoreControlledInputState(element: Element, props: Object) {\n );\n }\n \n- // We need update the tracked value on the named cousin since the value\n- // was changed ...
2023-09-21T04:57:09
nodejs/node
45ff44b9878ee73be2d1e18263198f1243b858e4
cd39578e53d6502de03f15620d15835b86954ac8
2024-07-19, Version 22.5.1 (Current) Notable changes: This release fixes a regression introduced in Node.js 22.5.0. The problem is known to display the following symptoms: - Crash with ``` FATAL ERROR: v8::Object::GetCreationContextChecked No creation context available ``` - npm errors with `npm error Exit handler ...
[ { "path": "CHANGELOG.md", "patch": "@@ -38,7 +38,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.5.0\">22.5.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.5.1\">22.5.1</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V22.md#22.5.0\">2...
2024-07-19T00:54:47
electron/electron
7c4f4c537e9cc869df24cec050792fd743fbd06b
4ca6fb3c4e2e0f66eea67eee4745f0afa14c135e
build: fix build-tools schema in config (#37765)
[ { "path": ".devcontainer/on-create-command.sh", "patch": "@@ -35,8 +35,13 @@ if [ ! -f $buildtools/configs/evm.testing.json ]; then\n write_config() {\n echo \"\n {\n- \\\"root\\\": \\\"/workspaces/gclient\\\",\n \\\"goma\\\": \\\"$1\\\",\n+ \\\"root\\\": \\\"...
2023-03-31T10:20:02
facebook/react
1f4936660dcaba2e5722013f0ad12d7369543a9f
b775564d35d6fe9f9acead0f380bbc86bb6bdd2c
[Fizz] Allow passing a reason to `abortStream` (#26992) ## Summary Currently `ReactFizzServer.abort` allows you to pass in the a `reason` error, which then gets passed to the `onError` handler for each task that ends up getting aborted. This adds in the ability to pass down that same `reason` error to `ReactDOMS...
[ { "path": "packages/react-server-dom-fb/src/ReactDOMServerFB.js", "patch": "@@ -81,8 +81,8 @@ function renderToStream(children: ReactNodeList, options: Options): Stream {\n };\n }\n \n-function abortStream(stream: Stream): void {\n- abort(stream.request);\n+function abortStream(stream: Stream, reason: mi...
2023-09-20T20:41:12
vercel/next.js
4a1b510fc100e0f18eeeb9f2358818528a8696bb
b8eb7314be7e1117a9f255adbb5f1a18bbf06489
Add more test cases to the `dynamicIO` sync IO access test suite (#81045) With this PR, we're adding test fixtures for `headers()`, `draftMode()`, and (fallback) `params`, by more or less copy&pasting the fixture for `cookies()`. We're also adding assertions for environment prefixes of `console.log()` calls that happ...
[ { "path": "test/e2e/app-dir/dynamic-io-errors/dynamic-io-errors.sync-dynamic.test.ts", "patch": "@@ -1,5 +1,5 @@\n import { isNextDev, nextTestSetup } from 'e2e-utils'\n-import { getPrerenderOutput } from './utils'\n+import { assertLog, getPrerenderOutput } from './utils'\n \n describe.each(\n isNextDev\n...
2025-07-01T20:57:40
golang/go
2d2bcdd2ad83ba93e61747417d6865cdd88b32fe
7372b64425eda6725fb84be71d6a3c4415b35d0d
cmd/go: upgrade go install pkg@version's go using local mod, work This CL changes the toolchain selection behavior for go install pkg@v and go run pkg@v to also take into account the go and toolchain version lines in the containing go.mod and go.work file. Before this change, the go command would detect that go insta...
[ { "path": "src/cmd/go/internal/toolchain/select.go", "patch": "@@ -169,7 +169,7 @@ func Select() {\n \t}\n \n \tgotoolchain = minToolchain\n-\tif (mode == \"auto\" || mode == \"path\") && !goInstallVersion(minVers) {\n+\tif mode == \"auto\" || mode == \"path\" {\n \t\t// Read go.mod to find new minimum and ...
2025-03-05T20:17:20
nodejs/node
7fe67b707861c742e0ea984b93e6bba8101abd56
86f79e6e7c80d39d4e2c8a92d1d612b3130cd9c0
doc,tty: add documentation for ReadStream and WriteStream Co-authored-by: Qingyu Deng <i@ayase-lab.com> PR-URL: https://github.com/nodejs/node/pull/53567 Fixes: https://github.com/nodejs/node/issues/37780 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Raz Luvaton <rluvaton@gmail.com> Reviewed-By: Claudio...
[ { "path": "doc/api/tty.md", "patch": "@@ -98,6 +98,33 @@ Represents the writable side of a TTY. In normal circumstances,\n `tty.WriteStream` instances created for a Node.js process and there\n should be no reason to create additional instances.\n \n+### `new tty.ReadStream(fd[, options])`\n+\n+<!-- YAML\n+a...
2024-07-19T10:53:24
facebook/react
1b1dcb8a40d002edcbca483b1f9caa78087a878f
a3743b2e444d2198972b190a9d97c3edcf370414
feat[devtools/extension]: show disclaimer when page doesnt run react and refactor react polling logic (#27373) Changes: 1. Refactored react polling logic, now each `.eval()` call is wrapped in Promise, so we can chain them properly. 2. When user has browser DevTools opened and React DevTools panels were mounted, u...
[ { "path": "packages/react-devtools-extensions/panel.html", "patch": "@@ -22,11 +22,44 @@\n right: 0;\n bottom: 0;\n }\n+ .no-react-disclaimer {\n+ margin: 16px;\n+ font-family: Courier, monospace, serif;\n+ font-si...
2023-09-20T12:30:50
vercel/next.js
c6343db71ee1afd3cb29c805443fcf4152d9eccb
9e19656ecfe6df31981ad970b1ed4f965090d720
[segment explorer] reset error and not-found boundary (#81115) ### Description Add a `key` prop to the segment state boundary and change the key when we call reset, this way it will force the children re-render with the new state where the boundaries will get reset and the simulated error will be gone since we're r...
[ { "path": "packages/next/src/next-devtools/userspace/app/segment-explorer-node.tsx", "patch": "@@ -1,7 +1,14 @@\n 'use client'\n \n import type { ReactNode } from 'react'\n-import { useState, createContext, useContext, use, useMemo } from 'react'\n+import {\n+ useState,\n+ createContext,\n+ useContext,\n...
2025-07-01T20:19:15
golang/go
7372b64425eda6725fb84be71d6a3c4415b35d0d
d2d1fd68b6299d4645298e6d70fe8e8cfd98001a
net/url: document referenced RFCs Fixes #30611 Change-Id: If933c2a7e63d89402d2034618057ad546cf9641b Reviewed-on: https://go-review.googlesource.com/c/go/+/660077 Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acco...
[ { "path": "src/net/url/url.go", "patch": "@@ -3,12 +3,14 @@\n // license that can be found in the LICENSE file.\n \n // Package url parses URLs and implements query escaping.\n+//\n+// See RFC 3986. This package generally follows RFC 3986, except where\n+// it deviates for compatibility reasons.\n+// RFC 68...
2025-03-22T01:15:22
nodejs/node
014dad5953a632f44e668f9527f546c6e1bb8b86
bcec922e3e9579d7f58f2c19fc82eb238f87a34c
deps: fix include_dirs of nbytes PR-URL: https://github.com/nodejs/node/pull/53862 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "deps/nbytes/nbytes.gyp", "patch": "@@ -6,9 +6,9 @@\n {\n 'target_name': 'nbytes',\n 'type': 'static_library',\n- 'include_dirs': ['src', 'include'],\n+ 'include_dirs': ['include'],\n 'direct_dependent_settings': {\n- 'include_dirs': ['src', 'include'],\n+ ...
2024-07-18T07:39:34
facebook/react
36f979d9d46ffab8b7b77a9f57dd82928041e7e1
2fa04d128e47abb27645a90873b08369e82c9ee7
[patch] Repro and fix for duplicate import statements
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Imports.ts", "patch": "@@ -109,7 +109,12 @@ export function updateExistingReactImportDeclaration(\n let didInsertUseMemoCache = false;\n program.traverse({\n ImportDeclaration(importDeclPath) {\n- if (isNonNamespacedImportOfR...
2023-09-19T22:34:14
vercel/next.js
9e19656ecfe6df31981ad970b1ed4f965090d720
1beea16b933a7acd3a180050a663d8ff1c41537f
fix(next-swc): Apply SWC minifier bugfixes (#81098) ### What? Update `swc_core` to `v29.4.2` ### Why? To apply https://github.com/swc-project/swc/pull/10740 and https://github.com/swc-project/swc/pull/10741
[ { "path": "Cargo.lock", "patch": "@@ -7131,9 +7131,9 @@ dependencies = [\n \n [[package]]\n name = \"swc_core\"\n-version = \"29.4.0\"\n+version = \"29.4.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"991fb5308ade9fb838316d0f1790bf2df25b0cafa6ac2515450e8003107201ae\"...
2025-07-01T20:02:33
golang/go
3ada42ffedf61343cc8a7cd7d6293bd646ecf3a6
b70244ff7a043786c211775b68259de6104ff91c
go/types, types2: align trace output a bit better for easier debugging Compute alignment padding rather than using a tab in trace output. This aligns the ":" after the file position in typical cases (files shorter than 1000 lines, lines shorter than 100 columns), resulting in nicer trace output for easier debugging. ...
[ { "path": "src/cmd/compile/internal/types2/format.go", "patch": "@@ -88,13 +88,32 @@ func (check *Checker) sprintf(format string, args ...any) string {\n }\n \n func (check *Checker) trace(pos syntax.Pos, format string, args ...any) {\n-\tfmt.Printf(\"%s:\\t%s%s\\n\",\n+\t// Use the width of line and pos va...
2025-03-20T23:12:15
facebook/react
2807d781a08db8e9873687fccc25c0f12b4fb3d4
925c66a6472a61e7174dabf6c697a9a320ebc170
[Fizz] Reuse rootSegmentID as the SuspenseBoundaryID (#27387) Originally the intension was to have React assign an ID to a user rendered DOM node inside a `fallback` while it was loading. If there already were an explicit `id` defined on the DOM element we would reuse that one instead. That's why this was a DOM Con...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -123,7 +123,7 @@ export type RenderState = {\n // These can be recreated from resumable state.\n placeholderPrefix: PrecomputedChunk,\n segmentPrefix: PrecomputedChunk,\n- boundaryPrefix: string,\n+ boundaryPrefix...
2023-09-18T15:56:47
nodejs/node
fcda2844e6c7547e4fb4bbcb9cd63689bf721c1f
770ef3d0619a94b768f3d7f3064aa66f4a410eff
doc: fix release date for 22.5.0 The release has been postponed and I forgot to update the date in the `CHANGELOG_V22.md`. PR-URL: https://github.com/nodejs/node/pull/53889 Refs: https://github.com/nodejs/node/pull/53826 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
[ { "path": "doc/changelogs/CHANGELOG_V22.md", "patch": "@@ -45,7 +45,7 @@\n \n <a id=\"22.5.0\"></a>\n \n-## 2024-07-16, Version 22.5.0 (Current), @RafaelGSS prepared by @aduh95\n+## 2024-07-17, Version 22.5.0 (Current), @RafaelGSS prepared by @aduh95\n \n ### Notable Changes\n ", "additions": 1, "de...
2024-07-17T17:19:02
golang/go
afe11db4a7d61d6ec196577f39b45648f987927d
ba01453bbed831f143d3005abc85fd6baec36da5
cmd/compile/internal/abi: fix ComputePadding Fixes the ComputePadding calculation to take into account the padding added for the current offset. This fixes an issue where padding can be added incorrectly for certain structs. Related: https://github.com/go-delve/delve/issues/3923 Same as https://go-review.googlesourc...
[ { "path": "src/cmd/compile/internal/abi/abiutils.go", "patch": "@@ -673,10 +673,9 @@ func (pa *ABIParamAssignment) ComputePadding(storage []uint64) []uint64 {\n \t\tpanic(\"internal error\")\n \t}\n \toffsets, _ := appendParamOffsets([]int64{}, 0, pa.Type)\n-\toff := int64(0)\n \tfor idx, t := range types {...
2025-03-21T19:43:32
facebook/react
925c66a6472a61e7174dabf6c697a9a320ebc170
df061b396644bb7c27ea76bb27ae09784ce6444b
[Fizz] Client render the nearest child or parent suspense boundary if replay errors or is aborted (#27386) Based on #27385. When we error or abort during replay, that doesn't actually error the component that errored because that has already rendered. The error only affects any child that is not yet completed. Th...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -6355,16 +6355,479 @@ describe('ReactDOMFizzServer', () => {\n \n expect(getVisibleChildren(container)).toEqual(<div>Loading...</div>);\n \n- const b = new Stream.PassThrough();\n- b.setEncoding('utf8');\n- b....
2023-09-18T15:25:56
vercel/next.js
1beea16b933a7acd3a180050a663d8ff1c41537f
dd374da668829a04ed310c1536069ca88cad3ca9
chore: fix typos in rust files (#81113) Co-authored-by: Niklas Mischkulnig <4586894+mischnic@users.noreply.github.com>
[ { "path": ".typos.toml", "patch": "@@ -0,0 +1,56 @@\n+# https://github.com/crate-ci/typos\n+# cargo install typos-cli\n+# typos\n+\n+[default]\n+check-filename = false\n+extend-ignore-identifiers-re = [\"SEPARATORs*\", \"IIFEs*\"]\n+\n+[default.extend-words]\n+rto = \"rto\"\n+wdth = \"wdth\"\n+\n+[type.rust...
2025-07-01T19:07:41
nodejs/node
770ef3d0619a94b768f3d7f3064aa66f4a410eff
589b67aa1748974b24df4b4b7281e0cce4e915c7
doc: fix casing of GitHub handle for two collaborators PR-URL: https://github.com/nodejs/node/pull/53857 Reviewed-By: Nitzan Uziely <linkgoron@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Uli...
[ { "path": "README.md", "patch": "@@ -170,7 +170,7 @@ For information about the governance of the Node.js project, see\n **Benjamin Gruenbaum** <<benjamingr@gmail.com>>\n * [BridgeAR](https://github.com/BridgeAR) -\n **Ruben Bridgewater** <<ruben@bridgewater.de>> (he/him)\n-* [GeoffreyBooth](https://gith...
2024-07-17T17:07:41
electron/electron
2b9dae4b065e9fea59c90ddee2acf2c01b9ebd59
2e1f803f374a1d262be21b3b4e355698e1753daa
feat: add `will-frame-navigate` event (#34418) * feat: add will-navigate-in-frame event to webContents * docs: add documentation for webview will-frame-navigate event * feat: Eliminate isInPlace argument from will-frame-navigate event * fix: Fire will-frame-navigate before will-navigate * feat: send will-f...
[ { "path": "docs/api/web-contents.md", "patch": "@@ -19,6 +19,36 @@ const contents = win.webContents\n console.log(contents)\n ```\n \n+## Navigation Events\n+\n+Several events can be used to monitor navigations as they occur within a `webContents`.\n+\n+### Document Navigations\n+\n+When a `webContents` nav...
2023-03-28T14:55:41
golang/go
3108366214bb1fc15b0f261ba27f448e3bd0e685
2cc0ea46e410b295181c9e1efa85b0e2be495682
runtime: deduplicate context call injection on Windows Injecting a call to a thread context is complex enough to warrant a dedicated function so that we don't repeat the same code in multiple places. Note that the unix sigctxt struct also follows the same approach. The behavior is unchanged, but the implementation se...
[ { "path": "src/runtime/defs_windows_386.go", "patch": "@@ -4,6 +4,11 @@\n \n package runtime\n \n+import (\n+\t\"internal/goarch\"\n+\t\"unsafe\"\n+)\n+\n const _CONTEXT_CONTROL = 0x10001\n \n type floatingsavearea struct {\n@@ -59,6 +64,13 @@ func (c *context) set_sp(x uintptr) { c.esp = uint32(x) }\n // 3...
2025-03-14T10:56:20
facebook/react
1879fbe644105de155eda887bfae733a5f5a80ca
bde7875f20b795ef97fec7778946ef245d4a84a9
Option to not memoize non-aliased function parameters This has been nagging at me for a _long_ time: we unnecessarily memoize function callbacks passed to things like Array.prototype.map, even though we know these functions can't escape. This PR fixes this as follows: * Adds a `noAlias?: boolean` flag to builtin ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/Environment.ts", "patch": "@@ -109,6 +109,15 @@ export type EnvironmentConfig = Partial<{\n */\n enableFunctionCallSignatureOptimizations: boolean;\n \n+ /**\n+ * Enable optimizations based on the `noAlias` flag of method signatures. Whe...
2023-09-15T23:18:03
vercel/next.js
573e31d0c15fc664050c1e9e326270584f8a76b8
1fc2dfb2fa3cc927bc08912e2396313b9d728f6c
Run front-sync after deployment tests finish (#81023) The front-sync job has been running directly have new versions are published, but deployment tests only run after a release as well. This PR runs the front-sync job after the deployment tests. There is a new input on the workflow the front-sync triggers to immedia...
[ { "path": ".github/workflows/notify_release.yml", "patch": "@@ -1,83 +0,0 @@\n-# A workflow runs when a release is published, dispatches a new event to the vercel/turbo\n-# to notify its release. Turbopack, and other integration workflow will subscribe to this event.\n-name: Notify new Next.js release\n-on:...
2025-07-01T18:36:48
nodejs/node
aca49fc7d16ae87876fec6285b658868e04b1cf7
05ca03569e22f82d5a20428119cfc6b17fcaf36d
src: fix env-file flag to ignore spaces before quotes Fix to ignore spaces between '=' and quoted string in env file Fixes: https://github.com/nodejs/node/issues/53461 Signed-off-by: Mohit Malhotra <dev.mohitmalhotra@gmail.com> PR-URL: https://github.com/nodejs/node/pull/53786 Reviewed-By: Yagiz Nizipli <yagiz@nizip...
[ { "path": "src/node_dotenv.cc", "patch": "@@ -129,6 +129,7 @@ void Dotenv::ParseContent(const std::string_view input) {\n key = content.substr(0, equal);\n content.remove_prefix(equal + 1);\n key = trim_spaces(key);\n+ content = trim_spaces(content);\n \n if (key.empty()) {\n break;...
2024-07-17T09:22:42
facebook/react
e5e71dfd59ab8629235dd5ad5bd5164c171471c1
35fb6e05e133f261392997de5ec89dba44f99c2e
Memoize fbt children in same scope Fixes another special-case rule of fbt that i wasn't aware of: apparently `<fbt:param>` elements don't have to appear as direct children of `<fbt>`, they can be nested, and in this case they must appear as direct children of the fbt and not via an identifier indirection. This PR ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts", "patch": "@@ -55,7 +55,11 @@ import {\n } from \"../ReactiveScopes\";\n import { eliminateRedundantPhi, enterSSA, leaveSSA } from \"../SSA\";\n import { inferTypes } from \"../TypeInference\";\n-import { logHIRFunction, logR...
2023-09-15T17:31:55
electron/electron
4c6092e151b070db2b87358761db83b99be511a5
b72f81ab5b79bd86856bd46ad99a540fa082a4de
fix: draggable regions shouldn't capture clicks on frames windows (#37594)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1988,6 +1988,9 @@ void WebContents::MessageHost(const std::string& channel,\n \n void WebContents::UpdateDraggableRegions(\n std::vector<mojom::DraggableRegionPtr> regions) {\n+ if (owner_window() && owner_window()->has_frame())\...
2023-03-28T14:52:28
nodejs/node
0b1ff6965e3bb3cedfe3563f4ddefc33e7fa69d2
f09063752b6e290f5cc32069e7fd4e89a3860015
src: fix potential segmentation fault in SQLite The Local<Value> returned from ColumnToValue() and ColumnNameToValue() may be empty (if a JavaScript exception is pending), in which case a segmentation fault may occur at the call sites, which do not check if the Local<Value> is empty. Fix this bug returning early if an...
[ { "path": "src/node_sqlite.cc", "patch": "@@ -441,7 +441,9 @@ void StatementSync::All(const FunctionCallbackInfo<Value>& args) {\n \n for (int i = 0; i < num_cols; ++i) {\n Local<Value> key = stmt->ColumnNameToValue(i);\n+ if (key.IsEmpty()) return;\n Local<Value> val = stmt->ColumnToVa...
2024-07-16T22:00:48
facebook/react
00e9888fb80719150363b3d011c53b890a4647af
c70e87f53501f329b25c4e78e2eafc0aab270292
[ez][patch] Remove calls to NodePath.hasNode --- Recent commits added calls to `NodePath.hasNode`, which does not exist in babel v7.1.6 (internal). Forget is failing with this error. ```js TypeError: handlerPath.hasNode is not a function at lowerStatement (.../babel-plugin-react-forget/HIR/BuildHIR.js:924:58...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -15,7 +15,7 @@ import {\n ErrorSeverity,\n } from \"../CompilerError\";\n import { Err, Ok, Result } from \"../Utils/Result\";\n-import { assertExhaustive } from \"../Utils/utils\";\n+import { assertExhaustive, hasNo...
2023-09-15T12:55:33
vercel/next.js
a8ae109b3363f74356e04893d3bbf2deaa6b0d05
12ee9b2545bfcad779ae746ed83d44e0afeffeae
[turbopack] Implement `Issue::source` on more Issue subtypes (#80874) ### What Fill in `source` implementations for the majority of `Issue` implementations, leaving `TODO`s in a number of the buggy or tricky ones. ### Why? Currently `Issue` has both `file_path()` and `source()`. * `file_path()` tells us where the e...
[ { "path": "crates/next-api/src/middleware.rs", "patch": "@@ -86,7 +86,8 @@ impl MiddlewareEndpoint {\n userland_module,\n );\n \n- let config = parse_config_from_source(userland_module, NextRuntime::Edge).await?;\n+ let config =\n+ parse_config_from_source(*self....
2025-07-01T16:44:01
rust-lang/rust
e55eb4566152bbed506f4916ddec3817c2a76f42
0a13b4361264236cb40afebea97973e6dc366de3
Convert to inline diagnostics in `rustc_errors`
[ { "path": "Cargo.lock", "patch": "@@ -3846,7 +3846,6 @@ dependencies = [\n \"rustc_data_structures\",\n \"rustc_error_codes\",\n \"rustc_error_messages\",\n- \"rustc_fluent_macro\",\n \"rustc_hashes\",\n \"rustc_index\",\n \"rustc_lint_defs\",", "additions": 0, "deletions": 1, "language": ...
2026-02-04T15:27:09
electron/electron
b72f81ab5b79bd86856bd46ad99a540fa082a4de
97b19a794676217de1bf1756f003fe7515b8c040
ci: fixup update appveyor image workflow (#37684) Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
[ { "path": ".github/workflows/update_appveyor_image.yml", "patch": "@@ -40,7 +40,9 @@ jobs:\n if: ${{ env.APPVEYOR_IMAGE_VERSION }}\n uses: mikefarah/yq@1c7dc0e88aad311c89889bc5ce5d8f96931a1bd0 # v4.27.2\n with:\n- cmd: yq '.image = \"${{ env.APPVEYOR_IMAGE_VERSION }}\"' \"appveyor.y...
2023-03-28T00:57:27
nodejs/node
f09063752b6e290f5cc32069e7fd4e89a3860015
ac75b2eb19f007cb3b3c136f2883562f78b50b66
test_runner: consolidate option parsing This commit consolidates all option parsing for the test runner in the parseCommandLine() internal helper function. The exception is a couple of temporary flags used for feature gating which will eventually become no-ops. This consolidation is prep work for supporting running te...
[ { "path": "lib/internal/main/test_runner.js", "patch": "@@ -1,34 +1,31 @@\n 'use strict';\n \n-const {\n- NumberParseInt,\n- RegExpPrototypeExec,\n- StringPrototypeSplit,\n-} = primordials;\n-\n const {\n prepareMainThreadExecution,\n markBootstrapComplete,\n } = require('internal/process/pre_executi...
2024-07-16T21:05:46
facebook/react
88b1a069c04631009cf64e3ff18cc8f463626f38
f993f0c2a55e3fb106844c4d68362cef876d1156
Add examples for phi type inference Adds test cases that would demonstrate different output if we were to update InferTypes to infer the types of phi identifiers when their operands have the same type. We currently do infer such types, but attach them to phi.type instead of phi.id.type, so the type doesn't effect ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/phi-type-inference-array-push.expect.md", "patch": "@@ -0,0 +1,76 @@\n+\n+## Input\n+\n+```javascript\n+// @debug\n+function Component(props) {\n+ const x = {};\n+ let y;\n+ if (props.cond) {\n+ y = [props.value];\n...
2023-09-14T18:56:09
vercel/next.js
12ee9b2545bfcad779ae746ed83d44e0afeffeae
7131d706ae63bd8314ffbd91ca4bd08b32e7855d
[turbopack] Defend against json cyles in our execution tests (#81079) Handle circular references in Jest test results Otherwise failing tests may crash the IPC mechanism. e.g. a test failure induced this ``` ──── STDERR: turbopack-tests::execution test_tests__execution__turbopack__basic__esm_this Input:...
[ { "path": "turbopack/crates/turbopack-tests/js/jest-entry.ts", "patch": "@@ -35,7 +35,23 @@ export default async function run() {\n \n await import('TESTS')\n \n- const jestResult = await jest.run()\n+ let jestResult = await jest.run()\n+ // Jest test results can contain references to arbitrary objects...
2025-07-01T16:12:15
rust-lang/rust
2f9a893e9189dcb622e0ba85f1a8a87e3c42f4ef
7bf6355886f3cc17713d449e8da45c997caf7c59
Replace Registry type with a lazily initialized static And move try_find_description to rustc_errors::codes.
[ { "path": "src/parse/session.rs", "patch": "@@ -5,7 +5,6 @@ use std::sync::atomic::{AtomicBool, Ordering};\n use rustc_data_structures::sync::IntoDynSyncSend;\n use rustc_errors::annotate_snippet_emitter_writer::AnnotateSnippetEmitter;\n use rustc_errors::emitter::{DynEmitter, Emitter, SilentEmitter, stderr...
2026-02-04T19:52:53
golang/go
c0392e7e494c7e1fa7122df3cb5c1a30760ac5b4
69ea62fe95a14a04d6b2ba145aaf78e36f42e2eb
runtime: fix interactions between synctest, race detector, and timers When an AfterFunc executes in a synctest bubble, there is a series of happens-before relationships: 1. The AfterFunc is created. 2. The AfterFunc goroutine executes. 3. The AfterFunc goroutine returns. 4. A subsequent synctest.Wait call ret...
[ { "path": "src/internal/synctest/synctest_test.go", "patch": "@@ -455,28 +455,89 @@ func TestWaitGroup(t *testing.T) {\n }\n \n func TestHappensBefore(t *testing.T) {\n-\tvar v int\n+\t// Use two parallel goroutines accessing different vars to ensure that\n+\t// we correctly account for multiple goroutines ...
2025-03-17T20:48:50
electron/electron
b27e4cae21547e7ddf3a6199d5bed0e621d4eee6
1e106c8aa41b18b02ade44a54e6bd558d725fc37
fix: crash in `MessagePortMain` with some `postMessage` params (#37585) * fix: crash in MessagePortMain postMessage * Update shell/browser/api/message_port.cc Co-authored-by: Charles Kerr <charles@charleskerr.com> --------- Co-authored-by: Charles Kerr <charles@charleskerr.com>
[ { "path": "shell/browser/api/message_port.cc", "patch": "@@ -26,6 +26,25 @@\n \n namespace electron {\n \n+namespace {\n+\n+bool IsValidWrappable(const v8::Local<v8::Value>& obj) {\n+ v8::Local<v8::Object> port = v8::Local<v8::Object>::Cast(obj);\n+\n+ if (!port->IsObject())\n+ return false;\n+\n+ if ...
2023-03-27T17:56:55
nodejs/node
3a5b5428c6509f91306e10486f1e56e3b1e80195
362afa52ebe462a39874915e5e70d261db153c58
build: disable test-asan workflow It is running on ubuntu-20.04, which will inevitably be removed from GitHub actions at some point. Attempts to upgrade it to ubuntu-22.04 and ubuntu-24.04 have failed. It is now blocking V8 updates because of errors that happen only with the `test-asan` job. Refs: https://github.com...
[ { "path": ".github/workflows/test-asan.yml", "patch": "@@ -38,7 +38,7 @@ permissions:\n \n jobs:\n test-asan:\n- if: github.event.pull_request.draft == false\n+ if: false # Temporarily disabled. References: https://github.com/nodejs/node/pull/52374, https://github.com/nodejs/node/pull/53651#issueco...
2024-07-16T13:29:10
facebook/react
f993f0c2a55e3fb106844c4d68362cef876d1156
b2230f62a38350f19cf02b4ee4b7f42e43610b9a
[pipeline] panicOnBailout -> panicThreshold; remove isDev logging --- Changed `panicOnBailout: boolean` to `panicThreshold`, which has the following options. Note that `ALL_ERRORS` corresponds to `panicOnBailout = true` and `CRITICAL_ERRORS` corresponds to `panicOnBailout = false`. `NONE` is a new option. ```j...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Options.ts", "patch": "@@ -25,6 +25,19 @@ export type InstrumentForgetOptions = {\n instrumentFn: ExternalFunction;\n };\n \n+export type PanicThresholdOptions =\n+ // Any errors will panic the compiler by throwing an exception, which ...
2023-09-14T19:00:43
rust-lang/rust
639cb694df242aaa356ebcd4ddca47355af4240c
1851937577eaf46ef18c437ac2ad9b2a5f3e3606
Replace Registry type with a lazily initialized static And move try_find_description to rustc_errors::codes.
[ { "path": "compiler/rustc_codegen_ssa/src/back/write.rs", "patch": "@@ -1981,11 +1981,7 @@ impl SharedEmitter {\n }\n \n impl Emitter for SharedEmitter {\n- fn emit_diagnostic(\n- &mut self,\n- mut diag: rustc_errors::DiagInner,\n- _registry: &rustc_errors::registry::Registry,\n- ...
2026-02-04T19:52:53
vercel/next.js
7131d706ae63bd8314ffbd91ca4bd08b32e7855d
9c3b6f76c1b8bbdc2d05b483a4ed4176178228b3
Fix flakey devtools test (#81127) A regression from #81085 @huozhi The problem is that `openDevToolsIndicatorPopover` doesn't tell anymore whether the popup menu is open, but if the panel is open, but the "Try Turbopack" text is in the popup menu (only in the old UI).
[ { "path": "test/development/client-dev-overlay/index.test.ts", "patch": "@@ -2,12 +2,12 @@ import { FileRef } from 'e2e-utils'\n import { Playwright } from 'next-webdriver'\n import { nextTestSetup } from 'e2e-utils'\n import { join } from 'path'\n-import { openDevToolsIndicatorPopover, retry } from 'next-t...
2025-07-01T16:01:18
golang/go
69ea62fe95a14a04d6b2ba145aaf78e36f42e2eb
c386ed107e65f495acb6aacb0efcaade27da6a15
Revert "cmd/compile/internal/abi: fix ComputePadding" This reverts CL 656736. Reason for revert: breaks many builders (all flavors of linux-amd64 builders). Change-Id: Ie7190d4078fada227391804c5cf10b9ce9cc9115 Reviewed-on: https://go-review.googlesource.com/c/go/+/659955 LUCI-TryBot-Result: Go LUCI <golang-scoped@lu...
[ { "path": "src/cmd/compile/internal/abi/abiutils.go", "patch": "@@ -673,9 +673,10 @@ func (pa *ABIParamAssignment) ComputePadding(storage []uint64) []uint64 {\n \t\tpanic(\"internal error\")\n \t}\n \toffsets, _ := appendParamOffsets([]int64{}, 0, pa.Type)\n+\toff := int64(0)\n \tfor idx, t := range types {...
2025-03-21T15:46:14
electron/electron
1e106c8aa41b18b02ade44a54e6bd558d725fc37
fda8ea9277983836a7f96a979ca07dbcf5eec14c
docs: fixup incorrect value for disabling sandbox (#37711)
[ { "path": "docs/tutorial/sandbox.md", "patch": "@@ -84,7 +84,7 @@ the `sandbox: false` preference in the [`BrowserWindow`][browser-window] constru\n app.whenReady().then(() => {\n const win = new BrowserWindow({\n webPreferences: {\n- sandbox: true\n+ sandbox: false\n }\n })\n win.lo...
2023-03-27T17:27:55
facebook/react
54c2f2a3469e296fba025cf444d0639c7bf8f39a
caa716d50bdeef3a1ac5e3e0cfcc14f4d91f2028
fix[devtools/extension]: unregister dynamically injected content scripts instead of filtering (#27369) Same as https://github.com/facebook/react/pull/26765. Related bug report - https://bugs.chromium.org/p/chromium/issues/detail?id=1393762. This was changed in https://github.com/facebook/react/pull/27215, when I ...
[ { "path": "packages/react-devtools-extensions/src/background/dynamicallyInjectContentScripts.js", "patch": "@@ -11,7 +11,7 @@ const contentScriptsToInject = IS_FIREFOX\n js: ['build/proxy.js'],\n matches: ['<all_urls>'],\n persistAcrossSessions: true,\n- runAt: 'document_idle'...
2023-09-14T14:21:28
golang/go
c386ed107e65f495acb6aacb0efcaade27da6a15
c558f017ef2a98fd625107d36271e184ae29c626
cmd/internal/obj/riscv: fix the encoding for REV8 and ORCB The instructions are currently encoded and validated using an iIIEncoding which is incorrect as these instructions do not take an immediate operand. Encode them instead using an rIIEncoding as is done for the other two register argument bitmanip instructions....
[ { "path": "src/cmd/internal/obj/riscv/obj.go", "patch": "@@ -2094,8 +2094,8 @@ var instructions = [ALAST & obj.AMask]instructionData{\n \tARORI & obj.AMask: {enc: iIIEncoding, ternary: true},\n \tARORIW & obj.AMask: {enc: iIIEncoding, ternary: true},\n \tARORW & obj.AMask: {enc: rIIIEncoding, immForm: ARO...
2024-12-11T17:09:32
vercel/next.js
6f0225a09b27679310eddc0858172355fd875def
f9a7d73ac25b3267837fafd61151a28394dcdf29
[devtools]: default to issues tab when error overlay is programmatically toggled (#81091) When there's a build error and we toggle the error overlay on page load, we should ensure that the issues tab is used rather than the one stored in session storage, to avoid the case where we bring up the modal intending to show ...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel.tsx", "patch": "@@ -15,6 +15,7 @@ import {\n STORAGE_KEY_SCALE,\n STORAGE_KEY_POSITION,\n ACTION_ERROR_OVERLAY_CLOSE,\n+ STORAGE_KEY_ACTIVE_TAB,\n } from '../../shared'\n import { css } from '../../utils/c...
2025-07-01T13:07:20
facebook/react
a6e4791b11816374d015eb4531a82e6cf209c7f2
95c9554bc72813b0ee2b028774bb7cf0482887ba
[Fizz] Fix root segment IDs (#27371) Typically we assign IDs lazily when flushing to minimize the ids we have to assign and we try to maximize inlining. When we prerender we could always flush into a buffer before returning but that's not actually what we do right now. We complete rendering before returning but ...
[ { "path": "packages/react-server/src/ReactFizzServer.js", "patch": "@@ -176,6 +176,7 @@ type ReplaySuspenseBoundary = [\n string | number /* key */,\n Array<ResumableNode> /* children */,\n SuspenseBoundaryID /* id */,\n+ number /* rootSegmentID */,\n ];\n \n type ReplayNode =\n@@ -1957,6 +1958,7 @@ ...
2023-09-14T03:18:03
electron/electron
6a6908c4c887c5f685f5e172ff01afc02ebcbc65
42e7cd9b3f3e16d07f162716b4f1346e32004aec
fix: allow cancelling of bluetooth requests (#37601) * fix: allow cancelling of bluetooth requests allows cancelling of bluetooth requests when no devices present * docs: update docs to reflect how bluetooth works.
[ { "path": "docs/api/web-contents.md", "patch": "@@ -777,20 +777,24 @@ Returns:\n * `callback` Function\n * `deviceId` string\n \n-Emitted when bluetooth device needs to be selected on call to\n-`navigator.bluetooth.requestDevice`. To use `navigator.bluetooth` api\n-`webBluetooth` should be enabled. If `ev...
2023-03-27T13:31:15
rust-lang/rust
2184b446ce264d19e43cb6c38611da7cf1a14150
a358a9e43a3ab3c46eb4263364cddc7bd2202e0b
Fix typo
[ { "path": "src/doc/rustc-dev-guide/src/const-generics.md", "patch": "@@ -61,7 +61,7 @@ In some sense the desugarings from the previous examples are to:\n struct Foo<const N: usize>;\n type Alias = [u8; 1 + 1];\n \n-// sort-of desugars to psuedo-rust:\n+// sort-of desugars to pseudo-rust:\n struct Foo<const ...
2026-01-31T17:29:28
golang/go
c558f017ef2a98fd625107d36271e184ae29c626
a20d583bb99cb2715dd412738c3c5f56e8700158
runtime/race: fix reversed conditional in test for fatal map access Change-Id: Icc4d90355d8af07fdec852b2adf720f7cfd1edd6 Reviewed-on: https://go-review.googlesource.com/c/go/+/659735 Reviewed-by: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com...
[ { "path": "src/runtime/race/race_test.go", "patch": "@@ -193,7 +193,7 @@ func runTests(t *testing.T) ([]byte, error) {\n \t// A crash in the map concurrent access detector will cause other tests not to run.\n \t// Perhaps we should run tests with concurrent map access separately to avoid this,\n \t// but fo...
2025-03-20T22:03:43
facebook/react
95c9554bc72813b0ee2b028774bb7cf0482887ba
612b2b6601abb844248c384d1e288bb824b180b7
useFormState: Compare action signatures when reusing form state (#27370) During an MPA form submission, useFormState should only reuse the form state if same action is passed both times. (We also compare the key paths.) We compare the identity of the inner closure function, disregarding the value of the bound ar...
[ { "path": "packages/react-client/src/ReactFlightReplyClient.js", "patch": "@@ -9,6 +9,7 @@\n \n import type {\n Thenable,\n+ PendingThenable,\n FulfilledThenable,\n RejectedThenable,\n ReactCustomFormAction,\n@@ -489,6 +490,69 @@ export function encodeFormAction(\n };\n }\n \n+function isSignatur...
2023-09-14T00:46:22
vercel/next.js
41eaf0e83fbcf6780507e6e1e9050b1ca5ab1775
52060515d5241f4c80b36716b5b1710d7bf93db7
[build] remove the default imports for error boundary (#81000) After we have all the conventions properly defined in the loader tree including the built-in ones since #80957 , the fix in #59085 is not required anymore. If you have custom conventions, they'll be bundled. If you don't have the custom conventions, t...
[ { "path": "packages/next/src/server/app-render/entry-base.ts", "patch": "@@ -29,11 +29,6 @@ export {\n export * as serverHooks from '../../client/components/hooks-server-context'\n export { HTTPAccessFallbackBoundary } from '../../client/components/http-access-fallback/error-boundary'\n export { createMetad...
2025-07-01T09:44:28
rust-lang/rust
17305da24f57e8de6ef6c0931bcc7e8a03309f33
9f4b56a5aed81e8c36cc26b3c1b4666ead6b71fc
Fix error spans for asm!() args that are macros
[ { "path": "compiler/rustc_builtin_macros/src/asm.rs", "patch": "@@ -288,6 +288,18 @@ fn expand_preparsed_asm(\n let msg = \"asm template must be a string literal\";\n let template_sp = template_expr.span;\n let template_is_mac_call = matches!(template_expr.kind, ast::ExprKind::MacCal...
2026-02-05T07:46:46
electron/electron
8cf03f56615c7ea37c1d9efbfa661f495da9c65e
916861036db924166c247327a963edc6e0d5a235
ci: fixup gn check to actually run gn check (#37676)
[ { "path": ".circleci/config/base.yml", "patch": "@@ -970,26 +970,13 @@ step-ts-compile: &step-ts-compile\n # List of all steps.\n steps-electron-gn-check: &steps-electron-gn-check\n steps:\n- - *step-checkout-electron\n- - *step-depot-tools-get\n- - *step-depot-tools-add-to-path\n - install-p...
2023-03-23T19:02:08
facebook/react
612b2b6601abb844248c384d1e288bb824b180b7
e5205658f40ad181279857dbb66e36b8ebcd8c0e
useFormState: Reuse state from previous form submission (#27321) If a Server Action is passed to useFormState, the action may be submitted before it has hydrated. This will trigger a full page (MPA-style) navigation. We can transfer the form state to the next page by comparing the key path of the hook instance. ...
[ { "path": "fixtures/flight/server/global.js", "patch": "@@ -138,11 +138,15 @@ app.all('/', async function (req, res, next) {\n // For HTML, we're a \"client\" emulator that runs the client code,\n // so we start by consuming the RSC payload. This needs a module\n // map that reverse engine...
2023-09-13T22:30:40
golang/go
a20d583bb99cb2715dd412738c3c5f56e8700158
2ffda87f2dce71024f72ccff32cbfe29ee676bf8
cmd/compile/internal/abi: fix ComputePadding Fixes the ComputePadding calculation to take into account the padding added for the current offset. This fixes an issue where padding can be added incorrectly for certain structs. Related: https://github.com/go-delve/delve/issues/3923 Fixes #72053 Change-Id: I27762979916...
[ { "path": "src/cmd/compile/internal/abi/abiutils.go", "patch": "@@ -673,10 +673,9 @@ func (pa *ABIParamAssignment) ComputePadding(storage []uint64) []uint64 {\n \t\tpanic(\"internal error\")\n \t}\n \toffsets, _ := appendParamOffsets([]int64{}, 0, pa.Type)\n-\toff := int64(0)\n \tfor idx, t := range types {...
2025-03-19T01:54:41
vercel/next.js
80a580573e8a1ba1305a254b96e1071a441d87cc
79572631397b447884ef037df027db5d1d9ae794
docs: fix grammatical error in upgrading to v15 guide (#81038) Title is pretty self descriptive. <img width="667" alt="image" src="https://github.com/user-attachments/assets/211f9eee-5d39-494e-abb9-9cad996b75be" /> Removes the word "you" for better grammatical clarity. Co-authored-by: Joseph <joseph.chamochumbi@ver...
[ { "path": "docs/01-app/02-guides/upgrading/version-15.mdx", "patch": "@@ -22,7 +22,7 @@ npm i next@latest react@latest react-dom@latest eslint-config-next@latest\n \n > **Good to know:**\n >\n-> - If you see a peer dependencies warning, you may need to update `react` and `react-dom` to the suggested version...
2025-07-01T08:48:47
nodejs/node
3a43e55a0011e1e841ff8a6aee7c69084f9559d7
953abf4887a1183e80f84ebe8d856e6410618829
src: update outdated references to spec sections The exact section has changed in recent versions of ECMA-262, so fix the section number and explicitly mark the edition of the standard to avoid having to update it in the future. PR-URL: https://github.com/nodejs/node/pull/53832 Reviewed-By: James M Snell <jasnell@gma...
[ { "path": "src/util-inl.h", "patch": "@@ -501,7 +501,7 @@ void ArrayBufferViewContents<T, S>::ReadValue(v8::Local<v8::Value> buf) {\n }\n }\n \n-// ECMA262 20.1.2.5\n+// ECMA-262, 15th edition, 21.1.2.5. Number.isSafeInteger\n inline bool IsSafeJsInt(v8::Local<v8::Value> v) {\n if (!v->IsNumber()) retur...
2024-07-15T20:01:14
facebook/react
69be472c11231056d297a7b73dd0b121905606d3
d07921eeda62613bfcf52ecdb66322db26393567
Fix: Initialize childIndex in Task constructor (#27367) This field was not being initialized. Although the property is part of the Flow type, the type error wasn't caught because the constructor itself is not covered by Flow, which is unfortunate. (I assume this is related to the dev-only componentStack property.)
[ { "path": "packages/react-server/src/ReactFizzServer.js", "patch": "@@ -578,6 +578,7 @@ function createTask(\n context,\n treeContext,\n thenableState,\n+ childIndex: -1,\n }: any);\n if (__DEV__) {\n task.componentStack = null;", "additions": 1, "deletions": 0, "language"...
2023-09-13T02:17:03
golang/go
686128a9f3f112c2e103622190673656811dee5f
93fe8c0415a10d26143a3ec1349937b2d94d0ebd
runtime/race: don't complain about unrun tests when fatal map access happens Fixes #72964 Change-Id: I42c6994fec3b21774bddd1d4d65dc832d9149446 Reviewed-on: https://go-review.googlesource.com/c/go/+/659697 Reviewed-by: Ian Lance Taylor <iant@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts....
[ { "path": "src/runtime/race/race_test.go", "patch": "@@ -190,6 +190,12 @@ func runTests(t *testing.T) ([]byte, error) {\n \t\t// in the map concurrent access detector).\n \t\treturn out, errors.New(\"runtime fatal error\")\n \t}\n+\t// A crash in the map concurrent access detector will cause other tests not...
2025-03-20T20:33:49
electron/electron
916861036db924166c247327a963edc6e0d5a235
52481bc923c581d2edc9d0c0f87077a5299000f4
chore: bump chromium to 113.0.5668.0 (main) (#37646) * chore: bump chromium in DEPS to 113.0.5668.0 * chore: update patches * chore: fixup for lint --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: John Kleinschmidt <jkleinsc@electronjs...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '113.0.5666.0',\n+ '113.0.5668.0',\n 'node_version':\n 'v18.15.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2023-03-23T00:09:13
vercel/next.js
b3a6dcba71563b7e958e4524d99bd7d136d57f29
fc008727f0034eba395cafb7f4d68a6de3cac096
Turbopack: instrument scope hoisting with tracing spans (#81078) <!-- 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": "turbopack/crates/turbopack-cli/benches/small_apps.rs", "patch": "@@ -83,6 +83,7 @@ fn bench_small_apps(c: &mut Criterion) {\n no_sourcemap: false,\n no_minify: false,\n force_memory_cleanup: true,\n+ ...
2025-07-01T06:20:28
nodejs/node
034a2409bf3209624ff94b979bc2f35ca785f829
6ba0af135402bf32896a37fd6617015a811c9b34
test_runner: remove plan option from run() This commit removes the plan option to run(). I believe it was added by mistake. It is not documented, untested, and a test plan does not make sense in the context of run(). This commit also fixes a minor formatting issue in a related fixture. Refs: https://github.com/nodej...
[ { "path": "lib/internal/test_runner/runner.js", "patch": "@@ -483,7 +483,6 @@ function run(options = kEmptyObject) {\n watch,\n setup,\n only,\n- plan,\n } = options;\n \n if (files != null) {\n@@ -552,7 +551,7 @@ function run(options = kEmptyObject) {\n });\n }\n \n- const root = ...
2024-07-15T17:10:01
electron/electron
caa5989eedd44625dad508c9665b8032df01e235
e0c348a2f8122dabbe2253d7bddc52be13bf1bca
fix: avoid deprecated value apis (#37590) * fix: use base::Value::Dict:::Remove() instead of RemoveKe() the latter is deprecated. * fix: use base::Value::Dict::FindString() instead of base::Value::FindStringKey() The latter is deprecated. * chore: make lint happy
[ { "path": "shell/browser/api/electron_api_app.cc", "patch": "@@ -607,13 +607,13 @@ int ImportIntoCertStore(CertificateManagerModel* model, base::Value options) {\n net::ScopedCERTCertificateList imported_certs;\n int rv = -1;\n \n- std::string* cert_path_ptr = options.FindStringKey(\"certificate\");\n-...
2023-03-20T14:38:45
golang/go
93fe8c0415a10d26143a3ec1349937b2d94d0ebd
b613d21ffd17c1dda480b205f0cce5031bdbd5dd
strings: don't assert on Replace's allocs for ASAN CL 657935 caused failures on the ASAN builder. Under ASAN, do not assert on the number of allocations incurred by Replace. Fixes #72973 Change-Id: I61536be6def6f2489d2a026c943c6e232865b723 GitHub-Last-Rev: 4aee3c2560c9a6fa6ba7c1950acc2172a7cfffe4 GitHub-Pull-Reques...
[ { "path": "src/strings/strings_test.go", "patch": "@@ -7,6 +7,7 @@ package strings_test\n import (\n \t\"bytes\"\n \t\"fmt\"\n+\t\"internal/asan\"\n \t\"io\"\n \t\"iter\"\n \t\"math\"\n@@ -1473,9 +1474,11 @@ var ReplaceTests = []struct {\n \n func TestReplace(t *testing.T) {\n \tfor _, tt := range ReplaceTe...
2025-03-20T20:33:46
facebook/react
bbc8530ed7a67859583a7c990ac51cd39c7746e5
2eed1328478e8c923fcb4e6abf5efbd9e1233402
[Float] Refactor public interface and internal HostDispatcher implementation (#27361) When Float was first developed the internal implementation and external interface were the same. This is problematic for a few reasons. One, the public interface is typed but it is also untrusted and we should not assume that it i...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -17,7 +17,10 @@ import type {\n StringDecoder,\n } from './ReactFlightClientConfig';\n \n-import type {HintModel} from 'react-server/src/ReactFlightServerConfig';\n+import type {\n+ HintCode,\n+ HintModel,\n+} from 'react-server/sr...
2023-09-12T15:09:10