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
c5b2cf1e32ff2668e77f02e739b612f142772ce5
28df39bab45bb80a5c623fe32da96b69c50b76a4
Turbopack: Allow turbopack-node backend to be swapped at runtime using an experimental config option (#90671) <!-- 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 ...
[ { "path": "crates/next-api/Cargo.toml", "patch": "@@ -9,6 +9,11 @@ autobenches = false\n [lib]\n bench = false\n \n+[features]\n+default = [\"process_pool\"]\n+process_pool = [\"next-core/process_pool\", \"turbopack-node/process_pool\"]\n+worker_pool = [\"next-core/worker_pool\", \"turbopack-node/worker_poo...
2026-02-28T06:48:05
facebook/react
5d64f742114203e4fbdd605ce398696d18901f35
3302d1f791f3f1cf4e8cf69bee70ce5dab1b8436
[compiler] Fix for scopes with unreachable fallthroughs (#34335) Fixes #34108. If a scope ends with with a conditional where some/all branches exit via labeled break, we currently compile in a way that works but bypasses memoization. We end up with a shape like ```js let t0; label: { if (changed) { ... if (co...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/AlignReactiveScopesToBlockScopesHIR.ts", "patch": "@@ -175,6 +175,41 @@ export function alignReactiveScopesToBlockScopesHIR(fn: HIRFunction): void {\n if (node != null) {\n valueBlockNodes.set(fallthrough, node);\n ...
2025-09-04T00:44:42
golang/go
f65692ea562bf24c21ae46854e98584dd4bcc201
3c8b5e673816c733f13a38b1ed1f53d7d49ea084
cmd/compile: don't drop same register twice For instructions that clobber both of their input registers, make sure we don't clobber the same register twice when both input registers are the same. This is rare, but it can happen. Fixes #77604 Change-Id: I794249cf43a8cc4ab3262055daef9193e2442f73 Reviewed-on: https://...
[ { "path": "src/cmd/compile/internal/ssa/regalloc.go", "patch": "@@ -1810,7 +1810,7 @@ func (s *regAllocState) regalloc(f *Func) {\n \t\t\tif regspec.clobbersArg0 {\n \t\t\t\ts.freeReg(register(s.f.getHome(args[0].ID).(*Register).num))\n \t\t\t}\n-\t\t\tif regspec.clobbersArg1 {\n+\t\t\tif regspec.clobbersAr...
2026-02-14T18:04:13
electron/electron
20c7042a20da0f1f0b5582b289da465fb34db8a7
4786e80f3314ab7e48aca1863db444932292928f
ci: don't build yarn modules for linux arm (#49031) This should fix the oom errors
[ { "path": ".github/actions/install-dependencies/action.yml", "patch": "@@ -21,4 +21,11 @@ runs:\n if [ \"$TARGET_ARCH\" = \"x86\" ]; then\n export npm_config_arch=\"ia32\"\n fi\n- node script/yarn.js install --immutable\n+ # if running on linux arm skip yarn Builds\n+ ARCH...
2025-11-26T09:25:16
nodejs/node
77c2b5383417459a5096a571ccceed5b2b8e5279
6218d14505668002ece19dd91b3349e4d3967759
build: expose libplatform symbols in shared libnode This requires setting BUILDING_V8_PLATFORM_SHARED to expose the public symbols since we build with hidden visibility by default. PR-URL: https://github.com/nodejs/node/pull/61144 Fixes: https://github.com/nodejs/node/issues/61102 Reviewed-By: Michaël Zasso <targos@p...
[ { "path": "node.gypi", "patch": "@@ -50,9 +50,11 @@\n 'defines': [\n 'USING_UV_SHARED',\n 'USING_V8_SHARED',\n+ 'USING_V8_PLATFORM_SHARED',\n 'BUILDING_NODE_EXTENSION'\n ],\n 'defines!': [\n+ 'BUILDING_V8_PLATFORM_SHARED...
2026-01-05T13:08:06
vercel/next.js
96512309ce1fe5a83cdb90702d2488a02a3db30a
683180bfb3f3ae24759360970787e60fc4fbf74b
tests: Fix immutableAssetToken extraction (#90668) Fixes this deploy test failure: https://github.com/vercel/next.js/actions/runs/22499483165/attempts/2 The output might be: ``` Building: └ ○ /nested Building: ○ (Static) prerendered as static content Building: ƒ (Dynamic) server-rendered on demand Building: > @ ...
[ { "path": "test/lib/next-modes/next-deploy.ts", "patch": "@@ -144,7 +144,8 @@ export class NextDeployInstance extends NextInstance {\n `Failed to get immutableAssetToken from logs ${this._cliOutput}`\n )\n }\n- this._immutableAssetToken = immutableAssetToken\n+ this._immutableAssetTo...
2026-02-28T00:47:33
golang/go
3c8b5e673816c733f13a38b1ed1f53d7d49ea084
6837583eec31bf197a8f16bcb431e3beb73b2aa5
cmd/compile: avoid folding 64-bit integers into 32-bit constants Folding a 64-bit integer into a 32-bit constant may result in a negative integer if the value exceeds math.MaxInt32 (the maximum value of a 32- bit signed integer). This negative value will be sign-extended to 64 bits at runtime, leading to unexpected re...
[ { "path": "src/cmd/compile/internal/ssa/_gen/AMD64.rules", "patch": "@@ -1578,7 +1578,8 @@\n \n (MOVBload [off] {sym} (SB) _) && symIsRO(sym) => (MOVLconst [int32(read8(sym, int64(off)))])\n (MOVWload [off] {sym} (SB) _) && symIsRO(sym) => (MOVLconst [int32(read16(sym, int64(off), config.ctxt.Arch.ByteOrder...
2026-02-14T10:55:34
nodejs/node
6218d14505668002ece19dd91b3349e4d3967759
088e63842a82f3531220613f1bec60b789f67a11
build: fix inconsistent quoting in `Makefile` PR-URL: https://github.com/nodejs/node/pull/60511 Reviewed-By: Aviv Keller <me@aviv.sh>
[ { "path": "Makefile", "patch": "@@ -17,7 +17,7 @@ endif\n ARCHTYPE := $(shell uname -m | tr '[:upper:]' '[:lower:]')\n COVTESTS ?= test-cov\n COV_SKIP_TESTS ?= core_line_numbers.js,testFinalizer.js,test_function/test.js\n-GTEST_FILTER ?= \"*\"\n+GTEST_FILTER ?= *\n GNUMAKEFLAGS += --no-print-directory\n GCO...
2026-01-04T20:11:43
rust-lang/rust
ccc3c0116283371b0ae351a10f3fdbb3e3163805
a25435bcf7cfc9b953d356eda3a51db8da9e3386
Use `Hcx`/`hcx` consistently for `StableHashingContext`. The `HashStable` and `ToStableHashKey` traits both have a type parameter that is sometimes called `CTX` and sometimes called `HCX`. (In practice this type parameter is always instantiated as `StableHashingContext`.) Similarly, variables with these types are some...
[ { "path": "compiler/rustc_ast/src/ast.rs", "patch": "@@ -120,8 +120,8 @@ impl PartialEq<&[Symbol]> for Path {\n }\n }\n \n-impl<CTX: rustc_span::HashStableContext> HashStable<CTX> for Path {\n- fn hash_stable(&self, hcx: &mut CTX, hasher: &mut StableHasher) {\n+impl<Hcx: rustc_span::HashStableContext...
2026-03-31T07:50:03
electron/electron
fdb7fc77948d3330b76b85199f6be492b918ec7c
e601d05cbd28a2d84e0c62bd07ea67e70564a0bd
docs: Clarify that menus use non-native styles (#45033) * docs: Clarify menus use non-native styles Addresses #42262 * empty commit to kick ci * fix: make linter happy * Strip trailing space for lint --------- Co-authored-by: George Xu <george.xu@slack-corp.com> Co-authored-by: John Kleinschmidt <jkleinsc@electr...
[ { "path": "docs/api/menu.md", "patch": "@@ -2,10 +2,15 @@\n \n ## Class: Menu\n \n-> Create native application menus and context menus.\n+> Create application menus and context menus.\n \n Process: [Main](../glossary.md#main-process)\n \n+The presentation of menus varies depending on the operating system:\n...
2025-11-25T17:27:46
facebook/react
3302d1f791f3f1cf4e8cf69bee70ce5dab1b8436
7697a9f62e9959651337d70b46012fce69ef860a
Fix: uDV skipped initial value if earlier transition suspended (#34376) Fixes a bug in useDeferredValue's optional `initialValue` argument. In the regression case, if a new useDeferredValue hook is mounted while an earlier transition is suspended, the `initialValue` argument of the new hook was ignored. After the fix,...
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -73,6 +73,7 @@ import {\n includesSomeLane,\n isGestureRender,\n GestureLane,\n+ UpdateLanes,\n } from './ReactFiberLane';\n import {\n ContinuousEventPriority,\n@@ -2983,6 +2984,20 @@ function rerenderDeferredValue<T>(value...
2025-09-03T23:24:38
vercel/next.js
683180bfb3f3ae24759360970787e60fc4fbf74b
39e8fb2a48d444105b9a8baa93a6e3112fe4fd22
Centralize test timings to fix shard divergence in CI (#90672) ## Summary For context we discovered jobs were not reliably always running in https://github.com/vercel/next.js/pull/90668 as addapters + turbopack group ran more tests than just turbopack group. - Each sharded test sub-job independently fetched test tim...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -94,6 +94,53 @@ jobs:\n stepName: 'build-next'\n secrets: inherit\n \n+ fetch-test-timings:\n+ name: fetch test timings\n+ runs-on: ubuntu-latest\n+ needs: ['changes']\n+ if: ${{ needs.changes.outputs.docs-only == 'false' ...
2026-02-28T00:15:43
electron/electron
66367e9db497ed592a541daeadfacafa57072f15
05233b4962181e812bca3bd2cca71c27a72c6161
chore: bump chromium to 144.0.7527.0 (main) (#48959) * chore: bump chromium in DEPS to 144.0.7527.0 * 7106405: [video pip] Fix gesture handling issues https://chromium-review.googlesource.com/c/chromium/src/+/7106405 * 7130938: Reland "Remove some dependencies from the custom_handlers component" https://chromium-r...
[ { "path": ".github/workflows/pipeline-segment-electron-test.yml", "patch": "@@ -243,9 +243,9 @@ jobs:\n runuser -u builduser -- xvfb-run script/actions/run-tests.sh script/yarn.js test --runners=main --trace-uncaught --enable-logging --files $tests_files | $ASAN_SYMBOLIZE\n else\n ...
2025-11-24T17:30:57
facebook/react
2805f0ed9e702454527839c0076a9979553c2fd7
ac3e705a18696168acfcaed39dce0cfaa6be8836
Performance Tracks: log properties diff for renders in DEV if no console task available (#34370) React Native doesn't support `console.createTask` yet, but it does support `performance.measure` and extensibility APIs for Performance panel, including `detail.devtools` field. Previously, this logic was gated with `if (...
[ { "path": "packages/react-reconciler/src/ReactFiberPerformanceTrack.js", "patch": "@@ -228,9 +228,20 @@ export function logComponentRender(\n ? 'tertiary-dark'\n : 'primary-dark'\n : 'error';\n- const debugTask = fiber._debugTask;\n- if (__DEV__ && debugTask) {\...
2025-09-03T16:08:05
nodejs/node
650f51fe457e2daab3d6be0434b9f93ec7a05275
282d30e526cb0c3ceb7e1720858f61bf6ba7d2cf
doc: add reusePort error behavior to net module PR-URL: https://github.com/nodejs/node/pull/61250 Fixes: https://github.com/nodejs/node/issues/61018 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinc...
[ { "path": "doc/api/dgram.md", "patch": "@@ -951,7 +951,7 @@ changes:\n port, even if another process has already bound a socket on it. Incoming\n datagrams are distributed to listening sockets. The option is available\n only on some platforms, such as Linux 3.9+, DragonFlyBSD 3.6+, FreeBSD 12.0+...
2026-01-04T02:13:31
golang/go
6837583eec31bf197a8f16bcb431e3beb73b2aa5
c01d1f095bd8897b7bf4d9e07bd588134952e047
cmd/internal/obj/loong64: improve ARNG type register name conversion When resolving ARNG type names, the base value was not subtracted when calculating the variable simd_type, causing its actual value to not match the expected meaning after the base value adjustment. Fixes #77414 Change-Id: I713bab849ecdb5610d2593ba...
[ { "path": "src/cmd/asm/internal/arch/loong64.go", "patch": "@@ -75,48 +75,51 @@ var loong64LasxArngExtMap = map[string]int16{\n // Loong64RegisterExtension constructs an Loong64 register with extension or arrangement.\n func Loong64RegisterExtension(a *obj.Addr, ext string, reg, num int16, isAmount, isIndex...
2026-02-06T02:09:10
vercel/next.js
080e1b3c26262c627cb278e5c5314e7a29adce61
fe2f1e44058206e6d8abe6bb5e91f65fc70a315e
Accept header content negotiation (#90607) <!-- 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 ### Imp...
[ { "path": "docs/01-app/02-guides/backend-for-frontend.mdx", "patch": "@@ -4,10 +4,11 @@ nav_title: Backend for Frontend\n description: Learn how to use Next.js as a backend framework\n related:\n title: API Reference\n- description: Learn more about Route Handlers and Proxy\n+ description: Learn more ab...
2026-02-27T18:31:22
electron/electron
e4f02faa0a5e67dbae663014255862c22dd2c2ce
d890ebd9fadce3611b38a57b9caf1434e8b52f87
fix: only call popup closecallback for top-level menu (#49017)
[ { "path": "shell/browser/ui/cocoa/electron_menu_controller.mm", "patch": "@@ -563,16 +563,22 @@ - (void)menuWillOpen:(NSMenu*)menu {\n }\n \n - (void)menuDidClose:(NSMenu*)menu {\n- if (isMenuOpen_) {\n- isMenuOpen_ = NO;\n- if (model_)\n- model_->MenuWillClose();\n- // Post async task so tha...
2025-11-21T15:37:46
facebook/react
ac3e705a18696168acfcaed39dce0cfaa6be8836
8e60cb7ed55a3dce35bd809b4cf1ad803c59abfd
[compiler][playground] (2/N) Config override panel (#34344) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting a pull request, ...
[ { "path": "compiler/apps/playground/components/Editor/ConfigEditor.tsx", "patch": "@@ -6,52 +6,51 @@\n */\n \n import MonacoEditor, {loader, type Monaco} from '@monaco-editor/react';\n-import {parseConfigPragmaAsString} from 'babel-plugin-react-compiler';\n import type {editor} from 'monaco-editor';\n impo...
2025-09-02T21:38:57
golang/go
c01d1f095bd8897b7bf4d9e07bd588134952e047
c186fe87686819cdf4dea49e1c556e9bc6e12e23
cmd/go: validate inferred module path for go mod init Ensure `go mod init` validates the module path even when it is inferred from GOPATH. Fixes #73121 Change-Id: I8b7785ff57eec17bba432f48c8e3a18a2f92aab5 GitHub-Last-Rev: 8ff1ca2d71bee2b948f114ad1f0a4706a4c0b152 GitHub-Pull-Request: golang/go#76432 Reviewed-on: http...
[ { "path": "src/cmd/go/internal/modload/init.go", "patch": "@@ -1187,26 +1187,8 @@ func CreateModFile(loaderstate *State, ctx context.Context, modPath string) {\n \t\tif err != nil {\n \t\t\tbase.Fatal(err)\n \t\t}\n-\t} else if err := module.CheckImportPath(modPath); err != nil {\n-\t\tif pathErr, ok := err...
2025-11-24T10:16:11
vercel/next.js
fe2f1e44058206e6d8abe6bb5e91f65fc70a315e
7643fc948398c38fe0792836fb4c014a45f6fb07
remove runInContext callbacks from stream-ops (#90609) The `runInContext` pattern that's used all over `stream-ops` is weird and feels very unnecessary -- we're passing in callbacks that just get invoked immediately, and all they do is call `AsyncLocalStorage.run`. We should just use the standard `AsyncLocalStorage.ru...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -723,7 +723,9 @@ async function generateDynamicFlightRenderResult(\n options\n )\n \n- const flightStream = renderToFlightStream(\n+ const flightStream = workUnitAsyncStorage.run(\n+ requestStore,\n+ renderToFlightStr...
2026-02-27T14:36:10
electron/electron
79e17ce4be43864c12f6d2ee1fbce107a0a6c5e4
2200a70e8d8debc59f7d8d315b17e208393def2a
fix: exception when reading system certificates via nodejs (#49028)
[ { "path": "patches/node/.patches", "patch": "@@ -42,3 +42,4 @@ api_promote_deprecation_of_v8_context_and_v8_object_api_methods.patch\n src_use_cp_utf8_for_wide_file_names_on_win32.patch\n fix_ensure_traverseparent_bails_on_resource_path_exit.patch\n reland_temporal_unflag_temporal.patch\n+src_handle_der_dec...
2025-11-21T15:35:05
facebook/react
b1b0955f2b34286a7408e58463f4cc429627f9a8
1549bda33f0df963ae27a590b7191f3de99dad31
[DevTools] Fix inspected element scroll in Suspense tab (#34355)
[ { "path": "packages/react-devtools-shared/src/devtools/views/SuspenseTab/SuspenseTab.css", "patch": "@@ -16,14 +16,15 @@\n \n .TreeWrapper {\n border-top: 1px solid var(--color-border);\n- flex: 1 1 var(--horizontal-resize-tree-percentage);\n+ flex: 1 1 65%;\n display: flex;\n flex-direction: row;\n...
2025-09-01T14:40:30
golang/go
c186fe87686819cdf4dea49e1c556e9bc6e12e23
9c9412cbad09ed7fc253de3ccfeea9ca18d22943
encoding/json/v2: allow streaming JSON methods to return errors.ErrUnsupported Allow the MarshalJSONTo and UnmarshalJSONFrom methods to return errors.ErrUnsupported to be skipped in a similar manner to how the caller-specified functions can be skipped as well. Note that the v1 MarshalJSON and UnmarshalJSON methods ma...
[ { "path": "src/encoding/json/v2/arshal.go", "patch": "@@ -55,6 +55,8 @@ var export = jsontext.Internal.Export(&internal.AllowInternalUse)\n //\n // - If the value type implements [MarshalerTo],\n // then the MarshalJSONTo method is called to encode the value.\n+// If the method returns [errors.Err...
2026-02-13T00:54:32
vercel/next.js
7643fc948398c38fe0792836fb4c014a45f6fb07
15fcfb9ce4ec73c6ff8d08d72201726b983127fa
example: restore .next handling for with-docker examples (#90651) - Remove BuildKit cache mount on `.next/cache` that trapped fetch cache in a volume unreachable by the runner stage - Restore `mkdir .next && chown` in runner stage for writable prerender cache - Add commented-out `COPY .next/cache` line as opt-in for p...
[ { "path": "examples/with-docker-export-output/README.md", "patch": "@@ -4,14 +4,14 @@ A production-ready example demonstrating how to Dockerize Next.js applications u\n \n ## Features\n \n-- ✅ Multi-stage Docker build for optimal image size\n-- ✅ Static export: Fully static HTML/CSS/JavaScript site\n-- ✅ Tw...
2026-02-27T14:23:45
facebook/react
bb6f0c8d2f29754347db0ff28186dc89c128b6ca
aad7c664ffbde52e5d8004b542d83d6d4b7a32a0
[Flight] Fix wrong missing key warning when static child is blocked (#34350)
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -1074,7 +1074,14 @@ function getTaskName(type: mixed): string {\n }\n }\n \n-function initializeElement(response: Response, element: any): void {\n+function initializeElement(\n+ response: Response,\n+ element: any,\n+ lazyType: n...
2025-09-01T09:03:57
electron/electron
8f9637fde46c7957cd24dce12c7327a615b4fb30
5b5b24775e501fbe8da80978440a503c0ea24f21
fix: revert the parent window remained interactive after the modal window was opened (#48977)
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -553,7 +553,7 @@ bool NativeWindowViews::IsFocused() const {\n }\n \n void NativeWindowViews::Show() {\n- if (is_modal() && NativeWindow::parent())\n+ if (is_modal() && NativeWindow::parent() && !widget()->IsVisible())\n static_cast<Native...
2025-11-19T17:24:12
golang/go
770864f3b452dbd83e33e42b9659c387d03425b9
1a6c5448a7004fb7073494ffdbd9bac5f1b8be9e
encoding/json/v2: remove SkipFunc sentinel error WARNING: This commit contains breaking changes for those already using GOEXPERIMENT=jsonv2. Existing users of SkipFunc should migrate to errors.ErrUnsupported, for which support was added in at least one prior commit. Updates #74324 Change-Id: Ifbdee39165a134a33ea000...
[ { "path": "src/encoding/json/v2/arshal_funcs.go", "patch": "@@ -19,17 +19,6 @@ import (\n \t\"encoding/json/jsontext\"\n )\n \n-// SkipFunc may be returned by [MarshalToFunc] and [UnmarshalFromFunc] functions.\n-//\n-// Any function that returns SkipFunc must not cause observable side effects\n-// on the pr...
2026-02-12T18:42:52
vercel/next.js
15fcfb9ce4ec73c6ff8d08d72201726b983127fa
ef993b251cef0a71050515665c26cfd41cdf090f
docs: fix navigationType value and variable name in useReportWebVitals (#90599) ## For Contributors ### Improving Documentation - [x] Run `pnpm prettier-fix` to fix formatting issues before opening the PR. - [x] Read the Docs Contribution Guide to ensure your contribution follows the docs guidelines: https://nextjs....
[ { "path": "docs/01-app/03-api-reference/04-functions/use-report-web-vitals.mdx", "patch": "@@ -72,7 +72,7 @@ The `metric` object passed as the hook's argument consists of a number of proper\n - `name`: The name of the performance metric. Possible values include names of [Web Vitals](#web-vitals) metrics (TT...
2026-02-27T14:10:29
nodejs/node
3518af036c7446e91a34f89811a3f4b7199bb5ba
012bf70908fafcbdf8d5c819e346c32b80f7aea4
process: improve process.cwd() error message PR-URL: https://github.com/nodejs/node/pull/61164 Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> Reviewed-By: theanarkh <theratliter@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
[ { "path": "src/node_process_methods.cc", "patch": "@@ -163,9 +163,17 @@ static void Cwd(const FunctionCallbackInfo<Value>& args) {\n size_t cwd_len = sizeof(buf);\n int err = uv_cwd(buf, &cwd_len);\n if (err) {\n- return env->ThrowUVException(err, \"uv_cwd\");\n+ std::string err_msg =\n+ ...
2026-01-02T11:40:16
facebook/react
aad7c664ffbde52e5d8004b542d83d6d4b7a32a0
3fe51c9e147fb5215011cf3fd9544c5a776abf41
[Flight] Don't try to close debug channel twice (#34340) When the debug channel was already closed, we must not try to close it again when the Response gets garbage collected. **Test plan:** 1. reduce the Flight fixture `App` component to a minimum [^1] - remove everything from `<body>` - delete the `console...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -1010,10 +1010,15 @@ export function reportGlobalError(\n if (__DEV__) {\n const debugChannel = response._debugChannel;\n if (debugChannel !== undefined) {\n- // If we don't have any more ways of reading data, we don't h...
2025-08-29T15:22:39
electron/electron
13e84e686814ed6b35ace75f636e30be56e5ac1d
54a617caab3871ccffbc5e3a9bd2a86381fa5ebb
fix: abort more descriptively for beforeunload (#48960)
[ { "path": "docs/api/browser-window.md", "patch": "@@ -1252,7 +1252,8 @@ Captures a snapshot of the page within `rect`. Omitting `rect` will capture the\n \n Returns `Promise<void>` - the promise will resolve when the page has finished loading\n (see [`did-finish-load`](web-contents.md#event-did-finish-load)...
2025-11-18T17:16:08
golang/go
1a6c5448a7004fb7073494ffdbd9bac5f1b8be9e
58bc91a9671f3aec46a7e3c1e55d1d0e303dfe4e
cmd/go: document PATH behavior for `go run` and `go tool` Fixes #77509 Change-Id: I1b6b38f86e4c8b18dd7638b4dd8246e2993e8307 Reviewed-on: https://go-review.googlesource.com/c/go/+/745100 Reviewed-by: Sean Liao <sean@liao.dev> Reviewed-by: Junyang Shao <shaojunyang@google.com> Reviewed-by: Michael Matloob <matloob@gola...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -1792,6 +1792,10 @@\n // used by debuggers, to reduce build time. To include debugger information in\n // the binary, use 'go build'.\n //\n+// The go command places $GOROOT/bin at the beginning of $PATH in the\n+// subprocess environment, so that subprocesses...
2026-02-12T21:40:01
nodejs/node
012bf70908fafcbdf8d5c819e346c32b80f7aea4
0457bfee2c25987570e3dca2ebe07332de7d0795
process: optimize asyncHandledRejections by using FixedQueue PR-URL: https://github.com/nodejs/node/pull/60854 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Ilyas Shabi <ilyasshabi94@gmail.com> Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
[ { "path": "benchmark/process/handled-rejections.js", "patch": "@@ -0,0 +1,43 @@\n+'use strict';\n+\n+const common = require('../common.js');\n+\n+// Benchmarks the throughput of processing many promise rejections that are\n+// initially unhandled, get warned, and then handled asynchronously, exercising\n+//...
2026-01-02T11:40:05
facebook/react
3fe51c9e147fb5215011cf3fd9544c5a776abf41
4082b0e7d3c042d49ef8987547b923051936956f
[Flight] Use more robust web socket implementation in fixture (#34338) The `WebSocketStream` implementation seems to be a bit unreliable. We've seen `Cannot close a ERRORED writable stream` errors when expanding the logged deep object, for example. And when reducing the fixture to a minimal app, we even get `Connectio...
[ { "path": "fixtures/flight/server/region.js", "patch": "@@ -74,13 +74,7 @@ function getDebugChannel(req) {\n return activeDebugChannels.get(requestId);\n }\n \n-async function renderApp(\n- res,\n- returnValue,\n- formState,\n- noCache,\n- promiseForDebugChannel\n-) {\n+async function renderApp(res, ...
2025-08-29T10:04:27
vercel/next.js
ef993b251cef0a71050515665c26cfd41cdf090f
bb813afd4957d6f3849ff7da357c5b729545783c
Use `VisitMut` instead of `Fold` for debug_instant_stack transform (#90274)
[ { "path": "crates/next-custom-transforms/src/transforms/debug_instant_stack.rs", "patch": "@@ -4,7 +4,7 @@ use swc_core::{\n common::{Span, Spanned},\n ecma::{\n ast::*,\n- visit::{Fold, fold_pass},\n+ visit::{VisitMut, visit_mut_pass},\n },\n quote,\n };\n@@ -14,7 +14,...
2026-02-27T12:47:07
golang/go
58bc91a9671f3aec46a7e3c1e55d1d0e303dfe4e
4dca8b3e619a321de36b99b6b514d9c01ef76e5e
cmd/link: support PIE on linux/s390x without cgo Enable PIE builds on linux/s390x when CGO is disabled by teaching the linker to handle dynamic relocations against SDYNIMPORT symbols. This adds support for TLS_IE and handles R_CALL, R_PCRELDBL, and R_ADDR relocations by generating the appropriate PLT/GOT entries inst...
[ { "path": "src/cmd/dist/test.go", "patch": "@@ -1243,7 +1243,7 @@ func (t *tester) internalLinkPIE() bool {\n \t}\n \tswitch goos + \"-\" + goarch {\n \tcase \"darwin-amd64\", \"darwin-arm64\",\n-\t\t\"linux-amd64\", \"linux-arm64\", \"linux-loong64\", \"linux-ppc64le\",\n+\t\t\"linux-amd64\", \"linux-arm64...
2026-02-05T15:05:23
electron/electron
54a617caab3871ccffbc5e3a9bd2a86381fa5ebb
530be28bc570a1d18d3c6a59ac7553638620a0f6
chore: bump node to v24.11.1 (main) (#48917) * chore: bump node in DEPS to v24.11.1 * src: add a default branch for module phase https://github.com/nodejs/node/pull/60261 * src: conditionally disable source phase imports by default https://github.com/nodejs/node/pull/60364 * chore: update patches * src: update l...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '144.0.7526.0',\n 'node_version':\n- 'v24.11.0',\n+ 'v24.11.1',\n 'nan_version':\n '675cefebca42410733da8a454c8d9391fcebfbc2',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2025-11-18T14:34:51
facebook/react
4082b0e7d3c042d49ef8987547b923051936956f
6b49c449b6d32dcfb846559fd422ff67055b8923
[compiler] Detect known incompatible libraries (#34027) A few libraries are known to be incompatible with memoization, whether manually via `useMemo()` or via React Compiler. This puts us in a tricky situation. On the one hand, we understand that these libraries were developed prior to our documenting the [Rules of Re...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -36,6 +36,14 @@ export enum ErrorSeverity {\n * memoization.\n */\n CannotPreserveMemoization = 'CannotPreserveMemoization',\n+ /**\n+ * An API that is known to be incompatible with the compiler. Generall...
2025-08-28T23:21:15
vercel/next.js
4c6c31ad1e794834148242bcd3ca7f94de74b3ea
1c1550ca7bb6252c8f9e05edd55eca0e9ad50858
[instant] Don't add debug stack to random `unstable_instant` exports (#90273) Instead of just limiting the transform to any file within the app dir, we now restrict it to any page, default, or layout file in the app dir. This avoids having the transform applied to random modules. The inserted value would not have been...
[ { "path": "crates/next-core/src/next_shared/transforms/next_debug_instant_stack.rs", "patch": "@@ -28,8 +28,8 @@ struct NextDebugInstantStack {}\n #[async_trait]\n impl CustomTransformer for NextDebugInstantStack {\n #[tracing::instrument(level = tracing::Level::TRACE, name = \"debug_instant_stack\", sk...
2026-02-27T09:17:52
nodejs/node
0457bfee2c25987570e3dca2ebe07332de7d0795
c6a56b4701542d011e287c45cda96f3deff38535
test: forbid use of named imports for fixtures PR-URL: https://github.com/nodejs/node/pull/61228 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
[ { "path": "test/addons/openssl-providers/test-default-only-config.js", "patch": "@@ -1,12 +1,12 @@\n 'use strict';\n \n const common = require('../../common');\n-const { path: fixture } = require('../../common/fixtures');\n+const fixtures = require('../../common/fixtures');\n const providers = require('./pr...
2026-01-01T23:48:26
golang/go
4dca8b3e619a321de36b99b6b514d9c01ef76e5e
4f5d5ddf7c79305cc49c777efa3c365dd58f34df
encoding/json/v2: dual support errors.ErrUnsupported and SkipFunc This change supports both errors.ErrUnsupported and SkipFunc. In a future change, we will remove SkipFunc entirely in favor of using errors.ErrUnsupported, which exists for a similar pupose. Updates #74324 Change-Id: I5f1ada8e3914513d7d23c504f5965ca8d...
[ { "path": "src/encoding/json/v2/arshal.go", "patch": "@@ -50,7 +50,7 @@ var export = jsontext.Internal.Export(&internal.AllowInternalUse)\n //\n // - If any type-specific functions in a [WithMarshalers] option match\n // the value type, then those functions are called to encode the value.\n-// If ...
2026-02-10T19:34:35
electron/electron
530be28bc570a1d18d3c6a59ac7553638620a0f6
537fd7b10bd5f9045db863ceb997976e20cce1a1
fix: handle empty event scenario in ipc callbacks (#48987)
[ { "path": "shell/browser/electron_api_ipc_handler_impl.cc", "patch": "@@ -49,6 +49,8 @@ void ElectronApiIPCHandlerImpl::Message(bool internal,\n v8::Isolate* isolate = electron::JavascriptEnvironment::GetIsolate();\n v8::HandleScope handle_scope(isolate);\n auto* event = MakeIPCEvent(isolate, se...
2025-11-17T20:28:25
facebook/react
6b49c449b6d32dcfb846559fd422ff67055b8923
872b4fef6ded18aa9bda5f7729340384a914ba7b
Update Code Sandbox CI to Node 20 to Match .nvmrc (#34329) ## Summary Update the CodeSandbox CI configuration to use Node 20 instead of Node 18, so that it matches the Node version specified in .nvmrc. This ensures consistency between local development environments and CI builds, reducing the risk of version-related b...
[ { "path": ".codesandbox/ci.json", "patch": "@@ -1,7 +1,7 @@\n {\n \"packages\": [\"packages/react\", \"packages/react-dom\", \"packages/react-server-dom-webpack\", \"packages/scheduler\"],\n \"buildCommand\": \"download-build-in-codesandbox-ci\",\n- \"node\": \"18\",\n+ \"node\": \"20\",\n \"publish...
2025-08-28T22:33:12
vercel/next.js
c0a661eef0b2d0fff52fc8ddb07f634e4b5c4287
38b69ff7093e941986af1bddd09191ecdd11f41a
[instant] Allow providing user feedback for blocking route errors (#90498)
[ { "path": "packages/next/errors.json", "patch": "@@ -1073,5 +1073,16 @@\n \"1072\": \"Missing segment data: <head>\",\n \"1073\": \"Expected static stage body to be available\",\n \"1074\": \"Page \\\"%s\\\" cannot use both \\\"use client\\\" and export const \\\"unstable_instant\\\".\",\n- \"1075\":...
2026-02-27T07:36:30
nodejs/node
d991f690df76751f8cd62d72db9d51d8f09101ba
926162a2eafa2cf53dac3028c9d6faa07f5081f2
doc: fix tls.connect() timeout documentation PR-URL: https://github.com/nodejs/node/pull/61079 Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/tls.md", "patch": "@@ -1730,6 +1730,9 @@ changes:\n **Default:** `1024`.\n * `highWaterMark` {number} Consistent with the readable stream `highWaterMark` parameter.\n **Default:** `16 * 1024`.\n+ * `timeout`: {number} If set and if a socket is created internally, will call\n+ ...
2026-01-01T13:56:27
golang/go
1915ea0f1e5965f982fcc9efd79076f707623c27
cba008453e9535840ebfcf6a038a4172008ef1fc
net/netip: optimize Prefix.String goos: linux goarch: amd64 pkg: net/netip cpu: Intel(R) Core(TM) Ultra 9 285K │ /tmp/BenchmarkPrefixString_before.txt │ /tmp/BenchmarkPrefixString_after.txt │ │ sec/op │ sec/op vs base │ PrefixString-2...
[ { "path": "src/net/netip/netip.go", "patch": "@@ -1592,5 +1592,23 @@ func (p Prefix) String() string {\n \tif !p.IsValid() {\n \t\treturn \"invalid Prefix\"\n \t}\n-\treturn p.ip.String() + \"/\" + strconv.Itoa(p.Bits())\n+\tvar b []byte\n+\tswitch {\n+\tcase p.ip.z == z4:\n+\t\tconst maxCap = len(\"255.255...
2026-02-11T10:33:35
facebook/react
8d7b5e490320732f40d9c3aa4590b5b0ae5116f5
3434ff4f4b89ad9388c6109312ef95c14652ae21
[compiler] Show a ref name hint when assigning to non-ref in a callback (#34298) In #34125 I added a hint where if you assign to the .current property of a frozen object, we suggest naming the variable as `ref` or `-Ref`. However, the tracking for mutations that assign to .current specifically wasn't propagated past f...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/PrintHIR.ts", "patch": "@@ -984,7 +984,7 @@ export function printAliasingEffect(effect: AliasingEffect): string {\n case 'MutateConditionally':\n case 'MutateTransitive':\n case 'MutateTransitiveConditionally': {\n- return `${...
2025-08-28T00:05:44
electron/electron
71be38f87f4f064b5f5e0ac1f6820645b07dc7f7
925966fde4ed32d11c57815fc526a0f9f2d2d28c
fix: revert enabling WASM trap handlers in all Node.js processes (#48973) Revert "fix: enable wasm trap handlers in all Node.js processes (#48788)" This reverts commit ca0b46b4130a8b48ab0b402ea16efe1ce655044f.
[ { "path": "shell/browser/electron_browser_main_parts.cc", "patch": "@@ -62,7 +62,6 @@\n #include \"shell/common/logging.h\"\n #include \"shell/common/node_bindings.h\"\n #include \"shell/common/node_includes.h\"\n-#include \"shell/common/v8_util.h\"\n #include \"ui/base/idle/idle.h\"\n #include \"ui/base/l1...
2025-11-14T23:23:15
vercel/next.js
38b69ff7093e941986af1bddd09191ecdd11f41a
2ba4d6ee9dcf91fd0cb27167afdcd5e0a0322f52
test: Run Adapter e2e tests with Turbopack instead (#90600) <!-- 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 Cont...
[ { "path": ".github/workflows/test_e2e_deploy_release.yml", "patch": "@@ -146,7 +146,7 @@ jobs:\n overrideProxyAddress: ${{ inputs.overrideProxyAddress || '' }}\n \n test-deploy-adapter:\n- name: Run Deploy Adapter Tests\n+ name: Run Deploy Adapter Tests (Turbopack)\n needs: setup\n if:...
2026-02-27T06:22:07
nodejs/node
926162a2eafa2cf53dac3028c9d6faa07f5081f2
7b7f693a98da060e19f2ec12fb99997d5d5524f9
async_hooks: enabledHooksExist shall return if hooks are enabled Correct the implementaton of enabledHooksExist to return true if there are enabled hooks. Adapt callsites which used getHooksArrays() as workaround. PR-URL: https://github.com/nodejs/node/pull/61054 Fixes: https://github.com/nodejs/node/issues/61019 Re...
[ { "path": "lib/async_hooks.js", "patch": "@@ -52,7 +52,6 @@ const {\n emitBefore,\n emitAfter,\n emitDestroy,\n- enabledHooksExist,\n initHooksExist,\n destroyHooksExist,\n } = internal_async_hooks;\n@@ -188,7 +187,7 @@ class AsyncResource {\n this[trigger_async_id_symbol] = triggerAsyncId;\n...
2025-12-31T14:45:20
golang/go
cba008453e9535840ebfcf6a038a4172008ef1fc
3e4143dd440ac2621ef03d394cdc2cc0ac34acd5
cmd/cover: exclude commented-out code from coverage instrumentation Add logic to exclude purely commented lines from coverage instrumentation. When instrumenting Go code for coverage, the cover tool now identifies and excludes lines that contain only comments from coverage blocks. This prevents commented-out code fro...
[ { "path": "src/cmd/cover/cover.go", "patch": "@@ -13,6 +13,7 @@ import (\n \t\"fmt\"\n \t\"go/ast\"\n \t\"go/parser\"\n+\t\"go/scanner\"\n \t\"go/token\"\n \t\"internal/coverage\"\n \t\"internal/coverage/encodemeta\"\n@@ -266,6 +267,142 @@ type File struct {\n \tpkg *Package\n }\n \n+// Range represents...
2026-02-13T09:00:43
facebook/react
3434ff4f4b89ad9388c6109312ef95c14652ae21
bd5b1b7639b818a3fbd33ce83bf022a6f9f27b55
Add scrollIntoView to fragment instances (#32814) This adds `experimental_scrollIntoView(alignToTop)`. It doesn't yet support `scrollIntoView(options)`. Cases: - No host children: Without host children, we represent the virtual space of the Fragment by attempting to scroll to the nearest edge by using its siblings. I...
[ { "path": "fixtures/dom/src/components/fixtures/fragment-refs/FocusCase.js", "patch": "@@ -3,7 +3,7 @@ import Fixture from '../../Fixture';\n \n const React = window.React;\n \n-const {Fragment, useEffect, useRef, useState} = React;\n+const {Fragment, useRef} = React;\n \n export default function FocusCase(...
2025-08-27T22:05:57
golang/go
3e4143dd440ac2621ef03d394cdc2cc0ac34acd5
8a0bc29bedd45324c52cfdc7717fabfc82673e4d
doc: document GODEBUG carve out for security releases Fixes #63741 Change-Id: I9c40fff7d3ad67565205657c5d89934a3f1f576c Reviewed-on: https://go-review.googlesource.com/c/go/+/723102 Auto-Submit: Roland Shoemaker <roland@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.c...
[ { "path": "doc/godebug.md", "patch": "@@ -85,6 +85,9 @@ if the work module's `go.mod` or the workspace's `go.work`\n says `go` `1.20`, then the program defaults to `panicnil=1`,\n matching Go 1.20 instead of Go 1.21.\n \n+As an exception, GODEBUGs introduced for security releases\n+will have the new behavio...
2025-11-21T22:40:52
vercel/next.js
2ba4d6ee9dcf91fd0cb27167afdcd5e0a0322f52
350ce78c75a6005b891765d772121a20dced4042
refactor(turbopack-node): support execution by napi and worker_threads (#86266) 1. refactor `turbopack-node` to run webpack loaders via nodejs `worker_threads` 2. the `child_proccess` loader runner is keep in the crate feature to run unit tests in `turbopack-tests` or run `turbopack-cli` 3. if wanting to switch back t...
[ { "path": "Cargo.lock", "patch": "@@ -4465,6 +4465,7 @@ dependencies = [\n \"turbo-tasks\",\n \"turbo-tasks-backend\",\n \"turbo-tasks-malloc\",\n+ \"turbopack-node\",\n \"turbopack-trace-utils\",\n ]\n \n@@ -4607,6 +4608,7 @@ dependencies = [\n \"turbopack-core\",\n \"turbopack-ecmascript-hmr-protoco...
2026-02-27T04:52:32
facebook/react
bd5b1b7639b818a3fbd33ce83bf022a6f9f27b55
0a1f1fcd5080320139bb51021b4325be65d6e2bd
[compiler] Emit better error for unsupported syntax `this` (#34322)
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/HIRBuilder.ts", "patch": "@@ -323,6 +323,22 @@ export default class HIRBuilder {\n ],\n });\n }\n+ if (node.name === 'this') {\n+ CompilerError.throwDiagnostic({\n+ severity: ErrorSeverity.UnsupportedJS,\n+ ...
2025-08-27T21:58:44
rust-lang/rust
25dbba03a273dbeb11c591dd7f49bb7fb2c37e1e
e5c6f7afcd3ce210c5c40b12cea2b5e93f93957e
Fix `mismatched_lifetime_syntaxes` suggestions for hidden path lifetimes
[ { "path": "compiler/rustc_lint/src/lifetime_syntax.rs", "patch": "@@ -387,26 +387,24 @@ fn emit_mismatch_diagnostic<'tcx>(\n build_mismatch_suggestion(info.lifetime.ident.as_str(), &suggest_change_to_explicit_bound)\n });\n \n- let is_bound_static = bound_lifetime.is_some_and(|info| info.life...
2026-03-30T13:46:47
vercel/next.js
8430d3711962588d07a03e2808eeb3cb7d40893a
94db8c6ea79051b2605c3f19dfec027efac14e55
Fix middleware case with adapters (#90624) Follow-up to https://github.com/vercel/next.js/pull/90611 this fixes the middleware case to ensure it doesn't create a `_next/data` output. x-ref: https://github.com/vercel/next.js/actions/runs/22465910596/job/65075127711#step:34:302
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -771,7 +771,10 @@ export async function handleBuildComplete({\n pathname: rscPathname,\n id: page.name + '.rsc',\n })\n- } else if (serverPropsPages.has(pathname)) {\n+ } else if (\n+ ...
2026-02-27T02:02:15
golang/go
c9cbeb0a1b08a9830a3d2d4abe0c2108e52f7647
92c7fcf137848ad74f88f75fc21bcb159eb08104
encoding/json/v2: remove `unknown` tag option and DiscardUnknownMembers WARNING: This commit contains breaking changes for those already using GOEXPERIMENT=jsonv2. This removes support for the `unknown` tag option and the DiscardUnknownMembers marshal option. The `unknown` tag option semantics are a bit too subtle e...
[ { "path": "src/encoding/json/internal/jsonflags/flags.go", "patch": "@@ -120,7 +120,6 @@ const (\n \tFormatNilSliceAsNull // marshal only\n \tOmitZeroStructFields // marshal only\n \tMatchCaseInsensitiveNames // marshal or unmarshal\n-\tDiscardUnknownMembers // marshal only\n \tRejectUnknownMe...
2026-02-03T01:52:37
facebook/react
b870042915c8a7cc1524feb7e0b5cbe7453a7648
33a1095d724c5ad0a6238e03e04461b6df5e73e2
[compiler] Validate against component/hook factories (#34305) Previously, the compiler would incorrectly attempt to compile nested components/hooks defined inside non-React functions. This would lead to scope reference errors at runtime because the compiler would optimize the nested React function without understandin...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts", "patch": "@@ -541,6 +541,9 @@ export enum ErrorCategory {\n // Checking for valid usage of manual memoization\n UseMemo = 'UseMemo',\n \n+ // Checking for higher order functions acting as factories for components/hooks\n+ ...
2025-08-27T17:59:26
rust-lang/rust
1a67e2be36e50967ea962d90364b6b150055a966
cf7da0b7277cad05b79f91b60c290aa08a17a6f0
Fix AtomicPtr::update's cfg gate
[ { "path": "library/core/src/sync/atomic.rs", "patch": "@@ -2136,7 +2136,7 @@ impl<T> AtomicPtr<T> {\n /// ```\n #[inline]\n #[stable(feature = \"atomic_try_update\", since = \"1.95.0\")]\n- #[cfg(target_has_atomic = \"8\")]\n+ #[cfg(target_has_atomic = \"ptr\")]\n #[cfg_attr(miri, trac...
2026-03-31T01:33:53
golang/go
92c7fcf137848ad74f88f75fc21bcb159eb08104
e5df06bc55f18ff92fb1c2fce2af69e80d9b3194
time: document that Parse does not support leap seconds Fixes #50888 Change-Id: I2691442d7fccd716cd19939cf3931317e21ee4ed Reviewed-on: https://go-review.googlesource.com/c/go/+/743060 Reviewed-by: Michael Pratt <mpratt@google.com> Reviewed-by: Junyang Shao <shaojunyang@google.com> LUCI-TryBot-Result: Go LUCI <golang-...
[ { "path": "src/time/format.go", "patch": "@@ -1002,6 +1002,9 @@ func skip(value, prefix string) (string, error) {\n // For layouts specifying the two-digit year 06, a value NN >= 69 will be treated\n // as 19NN and a value NN < 69 will be treated as 20NN.\n //\n+// Timestamps representing leap seconds (seco...
2026-02-07T14:45:46
facebook/react
33a1095d724c5ad0a6238e03e04461b6df5e73e2
213594860f456850bd615fcf08c0f0da25a998c5
[compiler] Infer render helpers for additional validation (#33647) We currently assume that any functions passes as props may be event handlers or effect functions, and thus don't check for side effects such as mutating globals. However, if a prop is a function that returns JSX that is a sure sign that it's actually a...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/PrintHIR.ts", "patch": "@@ -880,7 +880,8 @@ export function printType(type: Type): string {\n if (type.kind === 'Object' && type.shapeId != null) {\n return `:T${type.kind}<${type.shapeId}>`;\n } else if (type.kind === 'Function' && ty...
2025-08-27T15:44:09
golang/go
e5df06bc55f18ff92fb1c2fce2af69e80d9b3194
b464a924a9bdd00627cbc3baca86a0e042fccb8a
time: document that LoadLocation creates new Location instances Fixes #77385 Change-Id: I7e7ddb1c71f0aebd893f640d476b273e229b059a Reviewed-on: https://go-review.googlesource.com/c/go/+/743040 Reviewed-by: Ian Lance Taylor <iant@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservicea...
[ { "path": "src/time/zoneinfo.go", "patch": "@@ -645,12 +645,13 @@ var errLocation = errors.New(\"time: invalid location name\")\n var zoneinfo *string\n var zoneinfoOnce sync.Once\n \n-// LoadLocation returns the Location with the given name.\n+// LoadLocation returns a [Location] with the given name.\n //\...
2026-02-07T14:38:05
facebook/react
9c2e2b8475fb9d55fe47f55b007fba2d474e06f4
4123f6b771bb71a2831b1c450c385c38530125a0
[Flight] Don't drop debug info if there's only a readable debug channel (#34304) When the Flight Client is waiting for pending debug chunks, it drops the debug info if there is no writable side of the debug channel defined. However, it should instead check if there's no readable side defined. Fixing this is not only ...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -341,6 +341,11 @@ export type FindSourceMapURLCallback = (\n \n export type DebugChannelCallback = (message: string) => void;\n \n+export type DebugChannel = {\n+ hasReadable: boolean,\n+ callback: DebugChannelCallback | null,\n+};\n...
2025-08-27T11:50:19
vercel/next.js
89f3649a00f6ed5c35949e3683e054ad509bd679
8f5afa357d8da657968117d1cf4f6663d8dbff03
Turbopack: Panic if a top-level task attempts an eventually consistent read (#89735) We've had some really bad bugs in the past, which can be hard to root-cause due to eventually-consistent reads a the top-level, e.g. https://github.com/vercel/next.js/pull/77511 Outside of tests, there's no good justification for doi...
[ { "path": "Cargo.lock", "patch": "@@ -9676,6 +9676,7 @@ dependencies = [\n \"serde\",\n \"tokio\",\n \"trybuild\",\n+ \"turbo-rcstr\",\n \"turbo-tasks\",\n \"turbo-tasks-backend\",\n \"turbo-tasks-testing\",", "additions": 1, "deletions": 0, "language": "Unknown" }, { "path": "crat...
2026-02-27T00:14:30
golang/go
b464a924a9bdd00627cbc3baca86a0e042fccb8a
30d5c1b0572f7d021def277097df6a21f300995e
cmd/go: do not collect build information for test packages when not needed When build information is not needed for go list output (when -export=false and Stale and StaleReason fields are not printed), the "SuppressBuildInfo" option is set to true, so that cmd/go/internal/load does not collect it (in particular VCS in...
[ { "path": "src/cmd/go/internal/load/test.go", "patch": "@@ -294,7 +294,7 @@ func TestPackagesAndErrors(loaderstate *modload.State, ctx context.Context, done\n \n \tpb := p.Internal.Build\n \tpmain.DefaultGODEBUG = defaultGODEBUG(loaderstate, pmain, pb.Directives, pb.TestDirectives, pb.XTestDirectives)\n-\ti...
2026-02-03T13:25:23
facebook/react
cacc20e37c9ec320b5d2aa13f86cfc999d269d6b
bb7c9c1b8af82236125418f9fd3aa4de6fcc17e1
[Flight] Wait for both streams to end before closing the response (#34301) When a debug channel is defined, we must ensure that we don't close the Flight Client's response when the debug channel's readable is done, but the RSC stream is still flowing. Now, we wait for both streams to end before closing the response.
[ { "path": "packages/react-server-dom-esm/src/client/ReactFlightDOMClientBrowser.js", "patch": "@@ -101,6 +101,7 @@ function createResponseFromOptions(options: void | Options) {\n function startReadingFromUniversalStream(\n response: FlightResponse,\n stream: ReadableStream,\n+ onDone: () => void,\n ): ...
2025-08-26T15:15:25
nodejs/node
06bf489379c9e5cb20f7d3a5e31ed1cf8cc0672c
20bf3287c2bdce55077da91b7c405aecdc31fef8
esm: avoid throw when module specifier is not url This particular exception is responsible for a lot of overhead when debugging with large esm codebases with VS Code and break on caught exceptions is enabled. VS Code silently suppresses this exception, but the mechanism it uses to do so is a bit slow so avoiding this...
[ { "path": "lib/internal/modules/esm/resolve.js", "patch": "@@ -42,6 +42,7 @@ const {\n ERR_INVALID_MODULE_SPECIFIER,\n ERR_INVALID_PACKAGE_CONFIG,\n ERR_INVALID_PACKAGE_TARGET,\n+ ERR_INVALID_URL,\n ERR_MODULE_NOT_FOUND,\n ERR_PACKAGE_IMPORT_NOT_DEFINED,\n ERR_PACKAGE_PATH_NOT_EXPORTED,\n@@ -84...
2025-12-30T18:15:52
golang/go
30d5c1b0572f7d021def277097df6a21f300995e
a44ed023f600de1b8fbeb2be514ec20c964b3330
net: always set the servers field to defaultNS When the field is parsed from a file, it would never have len(servers) == 0, lets enforce that and update test cases where we had it wrong. Change-Id: I7fa6ebcf63b9fe20fbbf791113ca948d6a6a6964 Reviewed-on: https://go-review.googlesource.com/c/go/+/743020 Auto-Submit: Mic...
[ { "path": "src/net/conf_test.go", "patch": "@@ -142,7 +142,7 @@ func TestConfHostLookupOrder(t *testing.T) {\n \t\t\tc: &conf{\n \t\t\t\tgoos: \"openbsd\",\n \t\t\t},\n-\t\t\tresolv: &dnsConfig{lookup: []string{\"bind\", \"file\"}},\n+\t\t\tresolv: &dnsConfig{servers: defaultNS, lookup: []string{\"bind\", \...
2026-02-07T10:03:17
facebook/react
bb7c9c1b8af82236125418f9fd3aa4de6fcc17e1
44f8451ede5001b2c31de339890b9160fc06e436
Create more realistic containers in DevTools fixture (#34296)
[ { "path": "packages/react-devtools-shared/src/devtools/views/SuspenseTab/SuspenseTab.js", "patch": "@@ -295,7 +295,7 @@ function SuspenseTab(_: {}) {\n ref={resizeTreeListRef}>\n <SuspenseTreeList />\n </div>\n- <div className={styles.ResizeBarWrapper}>\n+ <div clas...
2025-08-26T15:13:37
vercel/next.js
ee885f864184e9351db29f6a590ca8c3811aece5
0db78041ad448edae78c77d9b8679bd94e7effa5
Pre-warm a single NodeJS instance when the next devserver starts (#90174) When cold-booting `next dev` on a fresh create-next-app, on the first server hit we need to fetch fonts and compile CSS, which takes up nearly half of the request time. It shouldn't be necessary to wait until the first server request to launc...
[ { "path": "Cargo.lock", "patch": "@@ -10193,9 +10193,11 @@ dependencies = [\n \"turbo-bincode\",\n \"turbo-rcstr\",\n \"turbo-tasks\",\n+ \"turbo-tasks-backend\",\n \"turbo-tasks-bytes\",\n \"turbo-tasks-env\",\n \"turbo-tasks-fs\",\n+ \"turbo-tasks-testing\",\n \"turbopack-cli-utils\",\n \"turbopac...
2026-02-26T22:40:56
nodejs/node
20bf3287c2bdce55077da91b7c405aecdc31fef8
2696391b18fdd60f0dc93df1e987b9e0116da824
doc: missing `passed`, `error` and `passed` properties on `TestContext` `passed` and `error` properties were left undocumented on `TextContext` class Fixes: https://github.com/nodejs/node/issues/59321 Refs: https://github.com/nodejs/node/pull/51485 Refs: https://github.com/nodejs/node/pull/59322 Co-authored-by: Simo...
[ { "path": "doc/api/test.md", "patch": "@@ -3686,6 +3686,40 @@ added:\n \n The name of the test.\n \n+### `context.passed`\n+\n+<!-- YAML\n+added:\n+ - v21.7.0\n+ - v20.12.0\n+-->\n+\n+* Type: {boolean} `false` before the test is executed, e.g. in a `beforeEach` hook.\n+\n+Indicated whether the test succee...
2025-12-30T07:19:05
facebook/react
ad4ecb6e6eb0663dcabb5967fe23a8c4331c18d0
26e87b5f15d80fd4aaf9909f90de0857e54c1129
[DevTools] Fix symbolication with Index Source Maps (#34300)
[ { "path": "packages/react-devtools-shared/src/hooks/SourceMapConsumer.js", "patch": "@@ -136,9 +136,9 @@ function BasicSourceMapConsumer(sourceMapJSON: BasicSourceMap) {\n }\n \n type Section = {\n- +generatedColumn: number,\n- +generatedLine: number,\n- +map: MixedSourceMap,\n+ +offsetColumn0: number,\...
2025-08-26T13:18:20
golang/go
a44ed023f600de1b8fbeb2be514ec20c964b3330
31768104cbe710d2358d5da34b4c223ad3ff2c6f
cmd/go: fix panic in 'go run -C' Fixes #77483 Change-Id: Ie772ce1619beadc1a6db87aaf28a8d9c31f7d1b8 Reviewed-on: https://go-review.googlesource.com/c/go/+/742860 Reviewed-by: Junyang Shao <shaojunyang@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Ian...
[ { "path": "src/cmd/go/internal/toolchain/select.go", "patch": "@@ -658,6 +658,9 @@ func maybeSwitchForGoInstallVersion(loaderstate *modload.State, minVers string)\n \t\t}\n \n \t\tif bf, ok := f.Value.(interface{ IsBoolFlag() bool }); !ok || !bf.IsBoolFlag() {\n+\t\t\tif len(args) == 0 {\n+\t\t\t\treturn\n+...
2026-02-06T18:52:22
facebook/react
26e87b5f15d80fd4aaf9909f90de0857e54c1129
75dc0026d665bd3c92e677c91252e6bf18303e45
Fix Flow issue from land race (#34293) A Flow upgrade removed the bundled library definitinos for SynthaticEvent and we probably want to use our internal definitions. Those are not properly typed at this point yet, but we can look into that as a followup.
[ { "path": "packages/react-devtools-shared/src/devtools/views/SuspenseTab/SuspenseTimeline.js", "patch": "@@ -24,6 +24,10 @@ import {TreeDispatcherContext} from '../Components/TreeContext';\n import {useHighlightHostInstance} from '../hooks';\n import {SuspenseTreeStateContext} from './SuspenseTreeContext';\...
2025-08-25T16:58:12
vercel/next.js
0db78041ad448edae78c77d9b8679bd94e7effa5
b6d47641d7f0399a687cb927defd827b476d4441
Fix edge index page _next/data route (#90611) Fixes failing assertion with turbopack Verified against turbopack + adapter deploy test locally <img width="2076" height="1336" alt="CleanShot 2026-02-26 at 13 25 30@2x" src="https://github.com/user-attachments/assets/a8c66314-8163-4371-b02a-dc7146989425" /> x-ref: http...
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -677,6 +677,11 @@ export async function handleBuildComplete({\n }\n \n const route = page.page.replace(/^(app|pages)\\//, '')\n+ const pathname = isAppPrefix\n+ ? normalizeAppPath(route)\n+ :...
2026-02-26T21:52:16
golang/go
71232268768eab3002d2ae473b49f74b74e89cdf
a6c48f2ca9efdf6c45d434767a30b9d25824497d
cmd/go/internal/bug: sync go bug headings with GitHub form Keep the issue body generated by go bug in the same order as the GitHub bug form: what happened first, then what was expected. This updates the footer headings and replaces the old "What did you see instead?" wording. Fixes #77488. Change-Id: Id20d68c1e109a...
[ { "path": "src/cmd/go/internal/bug/bug.go", "patch": "@@ -76,11 +76,11 @@ A link on go.dev/play is best.\n \n \n \n-### What did you expect to see?\n+### What did you see happen?\n \n \n \n-### What did you see instead?\n+### What did you expect to see?\n \n `\n ", "additions": 2, "deletions": 2, ...
2026-02-09T05:01:56
facebook/react
67e743fba576efc66e32d2d12b25552e316e24ce
9eede45646457fcf06261badc6c1a0c7afe1e144
[compiler] Fix missing dependency in eslint-plugin-react-hooks (#34287)
[ { "path": "packages/eslint-plugin-react-hooks/package.json", "patch": "@@ -41,7 +41,7 @@\n \"dependencies\": {\n \"@babel/core\": \"^7.24.4\",\n \"@babel/parser\": \"^7.24.4\",\n- \"@babel/plugin-transform-private-methods\": \"^7.24.4\",\n+ \"@babel/plugin-proposal-private-methods\": \"^7.18...
2025-08-25T14:39:23
vercel/next.js
9d13b676e8a3f8f8f8ecc35df7e2ea94ab95bbd3
2ba73b7a30686740cc6d4143c20fb39020e10494
Add `unstable_retry()` to error.js (#89685) Extends the error components API to give better control over recovery. Previously, the `reset()` prop only cleared the error state and re-rendered the children. However, this only handles a temporary rendering error. The error can be due to data fetching or an RSC phase. In...
[ { "path": "packages/next/src/client/components/builtin/global-error.tsx", "patch": "@@ -1,11 +1,13 @@\n 'use client'\n \n+import React from 'react'\n import { HandleISRError } from '../handle-isr-error'\n import { errorStyles, errorThemeCss, ErrorIcon } from './error-styles'\n \n export type GlobalErrorComp...
2026-02-26T20:22:27
golang/go
2a1d605e7f5a0f8870abb9cc26edf27db3ad5452
f745645e58d8c2da47da402871d92eab4c498187
cmd/compile: fix slice bounds check elimination after function inlining When creating a dynamically-sized slice, the compiler attempts to use a stack-allocated buffer if the slice does not escape and its buffer size is ≤ 32 bytes. In this case, the SSA will contain a (OpPhi (OpSliceMake) (OpSliceMake)) value: one OpS...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -1017,6 +1017,8 @@\n (ConstNil <v.Type.Elem().PtrTo()>)\n (Const64 <typ.Int> [0])\n (Const64 <typ.Int> [0]))\n+(SliceLen (Phi (SliceMake _ x _) (SliceMake _ x _))) => x\n+(SliceCap (Phi (SliceMake _ _ x) (SliceMake _ _ x))...
2026-01-31T03:23:41
facebook/react
090777d78a4d61462dc984b9bba169edd3e7c088
4049cfeeab33146e02b0721477fd5f2020f76a04
Update Flow to 0.274 (#34275) An exported needed explicit typing as it was inferred incorrectly.
[ { "path": "package.json", "patch": "@@ -74,8 +74,8 @@\n \"eslint-plugin-react-internal\": \"link:./scripts/eslint-rules\",\n \"fbjs-scripts\": \"^3.0.1\",\n \"filesize\": \"^6.0.1\",\n- \"flow-bin\": \"^0.273\",\n- \"flow-remove-types\": \"^2.273\",\n+ \"flow-bin\": \"^0.274\",\n+ \"...
2025-08-22T21:46:37
electron/electron
c896ab80fe8ad39eb87d5d4107b94f1d9afa22d4
40b673873534f4c4a7cf3cb633f977610857b773
fix: handle tar.xz files in uploaders, add to breaking changes (#48941) * fix: handle tar.xz files in uploaders, add to breaking changes * docs: add additional file extension info
[ { "path": "docs/breaking-changes.md", "patch": "@@ -20,6 +20,11 @@ Using the `clipboard` API directly in the renderer process is deprecated.\n If you want to call this API from a renderer process, place the API call in\n your preload script and expose it using the [contextBridge](https://www.electronjs.org/...
2025-11-13T21:03:24
rust-lang/rust
2d87df126960770259499fffc0afcbc262c06944
cf7da0b7277cad05b79f91b60c290aa08a17a6f0
Add a test for a now fixed ICE with `offset_of!()`
[ { "path": "tests/ui/offset-of/offset-of-unsized-trait-object-missing-lifetime.rs", "patch": "@@ -0,0 +1,20 @@\n+//@ edition:2021\n+// Regression test for #125805.\n+// ICE when using `offset_of!` on a field whose type is a bare trait object\n+// with a missing lifetime parameter.\n+\n+trait X<'a> {}\n+\n+us...
2026-03-30T23:08:31
electron/electron
40b673873534f4c4a7cf3cb633f977610857b773
05b9a5bfc70385268fcbe925a90adc1f5ef98299
test: fix types in chromium-spec (#48943)
[ { "path": "spec/chromium-spec.ts", "patch": "@@ -915,7 +915,7 @@ describe('chromium features', () => {\n \n if (action !== 'none') {\n // Make the PermissionRequestHandler behave according to action variable passed for this test\n- testSession.setPermissionRequestHandler((_w...
2025-11-13T20:25:09
golang/go
f745645e58d8c2da47da402871d92eab4c498187
b45c59c443a0aac0abed3f35e8e307ec5e1c587b
cmd/compile/internal/bitvec: remove 2GB allocation limit in NewBulk Remove the "NewBulk too big" check that prevented bulk bit vector allocations exceeding ~2GB. This limit was overly restrictive and caused compilation failures for large generated code. The actual constraint is in the runtime's stackmap reader, which...
[ { "path": "src/cmd/compile/internal/bitvec/bv.go", "patch": "@@ -8,7 +8,6 @@ import (\n \t\"math/bits\"\n \n \t\"cmd/compile/internal/base\"\n-\t\"cmd/internal/src\"\n )\n \n const (\n@@ -34,12 +33,9 @@ type Bulk struct {\n \tnword int32\n }\n \n-func NewBulk(nbit int32, count int32, pos src.XPos) Bulk {\n+...
2026-01-13T22:27:32
rust-lang/rust
f8c9427819c4e69d981ff8a504c4e1c17fabce14
4095cfadb80341b99f0dc504232c4cfe1579f634
Fix a cycle in bounds lowering Those will never cease to surprise me. Basically, an associated type bound can be either `Trait<Assoc: Trait>` or `Self::Assoc: Trait`. The former is included in `explicit_implied_predicates_of()` and therefore in elaboration, but the later is not. We included both, so fix that. This d...
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/builtin_derive.rs", "patch": "@@ -174,8 +174,11 @@ pub fn predicates<'db>(db: &'db dyn HirDatabase, impl_: BuiltinDeriveImplId) ->\n if matches!(loc.adt, AdtId::EnumId(_)) {\n // Enums don't have extra bounds.\n ...
2026-03-30T21:54:19
nodejs/node
879b95efeaf433939df0d47e044cce7f7037dc59
05d6b9b5dfba8984a5c600d5e568520aa83ca23c
doc: correct options for net.Socket class and socket.connect blockList, keepAlive, keepAliveInitialDelay and noDelay are wrongly documented for socket.connect options and missing on net.Socket constructor options documentation Fixes: https://github.com/nodejs/node/issues/59823 PR-URL: https://github.com/nodejs/node/p...
[ { "path": "doc/api/net.md", "patch": "@@ -759,8 +759,17 @@ changes:\n automatically end the writable side when the readable side ends. See\n [`net.createServer()`][] and the [`'end'`][] event for details. **Default:**\n `false`.\n+ * `blockList` {net.BlockList} `blockList` can be used for disab...
2025-12-29T00:47:15
vercel/next.js
2ba73b7a30686740cc6d4143c20fb39020e10494
10725f8499d1e5dbd824931cd94da3f4c0509b7b
Fix per-segment prefetching for initial loads with Cache Components (#90610) The `S` field in the RSC payload was only set to `true` during static generation, but the client used it to determine whether a route supports per-segment prefetching (`isPPREnabled` on the route cache entry). For partially static pages with ...
[ { "path": "packages/next/src/client/app-index.tsx", "patch": "@@ -325,7 +325,7 @@ export async function hydrate(\n initialCanonicalUrlParts: initialRSCPayload.c,\n initialRenderedSearch: initialRSCPayload.q,\n initialCouldBeIntercepted: initialRSCPayload.i,\n- initialPrerendered: init...
2026-02-26T20:21:17
facebook/react
6de32a5a07958d7fc2f8d0785f5873d2da73b9fa
698bb4deb7c77010c040ac49630c26db94e6e28c
Update Flow to 0.263 (#34269) This update was a bit more involved. - `React$Component` was removed, I replaced it with Flow component types. - Flow removed shipping the standard library. This adds the environment libraries back from `flow-typed` which seemed to have changed slightly (probably got more precise and les...
[ { "path": ".eslintignore", "patch": "@@ -28,3 +28,6 @@ packages/react-devtools-shared/src/hooks/__tests__/__source__/__untransformed__/\n packages/react-devtools-shell/dist\n packages/react-devtools-timeline/dist\n packages/react-devtools-timeline/static\n+\n+# Imported third-party Flow types\n+flow-typed/"...
2025-08-22T16:10:13
electron/electron
05b9a5bfc70385268fcbe925a90adc1f5ef98299
b9d3f1526510d5bac8de48333f2eb0f63d8126b8
docs: fix docs for `app.isHardwareAccelerationEnabled()` (#48925)
[ { "path": "docs/api/app.md", "patch": "@@ -1218,7 +1218,7 @@ This method can only be called before app is ready.\n \n ### `app.isHardwareAccelerationEnabled()`\n \n-Returns `boolean` - whether hardware acceleration is currently disabled.\n+Returns `boolean` - whether hardware acceleration is currently enabl...
2025-11-13T19:39:59
nodejs/node
05d6b9b5dfba8984a5c600d5e568520aa83ca23c
9f06e7223442ad52773842271f6dc453e4eb5231
fs: fix rmSync to handle non-ASCII characters Update fs.rmSync to properly handle file paths that include non-ASCII characters. This change prevents crashes and errors when attempting to delete files with international or special characters in their names. Add a test in test/parallel to ensure that files with non-ASC...
[ { "path": "src/node_file.cc", "patch": "@@ -1634,7 +1634,7 @@ static void RmSync(const FunctionCallbackInfo<Value>& args) {\n ToNamespacedPath(env, &path);\n THROW_IF_INSUFFICIENT_PERMISSIONS(\n env, permission::PermissionScope::kFileSystemWrite, path.ToStringView());\n- auto file_path = std::fil...
2025-12-28T01:21:49
golang/go
b45c59c443a0aac0abed3f35e8e307ec5e1c587b
174c92bd7428b41b9b5b59274a83f387a12261c9
crypto/tls: fix CurvePreferences comment SecP256r1MLKEM768 appeared twice while the second should have been SecP384r1MLKEM1024. Change-Id: I0587b53248d2948fe7a33313871c39fe76251e9c GitHub-Last-Rev: de535819a33347feacfaa32d984ce58d206613d0 GitHub-Pull-Request: golang/go#77551 Reviewed-on: https://go-review.googlesourc...
[ { "path": "src/crypto/tls/common.go", "patch": "@@ -807,7 +807,7 @@ type Config struct {\n \t// or use the GODEBUG=tlsmlkem=0 environment variable.\n \t//\n \t// From Go 1.26, the default includes the [SecP256r1MLKEM768] and\n-\t// [SecP256r1MLKEM768] hybrid post-quantum key exchanges, too. To disable\n+\t/...
2026-02-11T21:00:12
vercel/next.js
10725f8499d1e5dbd824931cd94da3f4c0509b7b
4de94897443e1debb4fe298069591ef07c59db95
Allow `reset()` from user's global-error (#89684) User's `global-error.js` is within the router. There's no reason it shouldn't have access to the options available to the `error.js` component. It was already available on prod. This PR syncs dev behavior to prod. For the follow-up feature, `retry()` will also be avai...
[ { "path": "packages/next/src/client/components/builtin/global-error.tsx", "patch": "@@ -5,6 +5,7 @@ import { errorStyles, errorThemeCss, ErrorIcon } from './error-styles'\n \n export type GlobalErrorComponent = React.ComponentType<{\n error: any\n+ reset: () => void\n }>\n \n function DefaultGlobalError(...
2026-02-26T19:56:15
rust-lang/rust
6cd26567db61c85479cdf6192a18f6d6bce43ca8
d24ebcb47c36519b259a706e0cf3d80bcd293aea
add more FIXMEs and details to `ui/README.md`
[ { "path": "tests/ui/README.md", "patch": "@@ -36,6 +36,8 @@ These tests exercise the [`annotate-snippets`]-based emitter implementation.\n \n [`annotate-snippets`]: https://github.com/rust-lang/annotate-snippets-rs\n \n+**FIXME**: merge this with `error-emitter`\n+\n ## `tests/ui/anon-params`\n \n These tes...
2026-03-30T20:40:27
nodejs/node
0804ec4cfefefab3dd45d05eab671999ae345ea1
ed47077736f6fdf797aa45de9e0516da5b99e690
doc: document error event on readline InterfaceConstructor Aims to document the error event introduced by cb3020d in v16.0.0. Fixes: https://github.com/nodejs/node/issues/58289 PR-URL: https://github.com/nodejs/node/pull/61170 Fixes: https://github.com/nodejs/node/issues/61037 Reviewed-By: Aviv Keller <me@aviv.sh> Re...
[ { "path": "doc/api/readline.md", "patch": "@@ -102,6 +102,17 @@ The listener function is called without passing any arguments.\n The `InterfaceConstructor` instance is finished once the `'close'` event is\n emitted.\n \n+### Event: `'error'`\n+\n+<!-- YAML\n+added: v16.0.0\n+-->\n+\n+The `'error'` event is ...
2025-12-27T16:52:40
electron/electron
b9d3f1526510d5bac8de48333f2eb0f63d8126b8
8ecd064d2c3e378e1f874726b83f84f0350521f2
fix: crash on windows when UTF-8 is in path (#48898) In 6399527761b43abb5a3ea40dd64eb05efad3b9de we changed the path strings that `node_modules.cc` operates on from single-byte to wide strings. Unfortunately this means that `generic_path()` that the "fix: ensure TraverseParent bails on resource path exit" patch was ca...
[ { "path": "patches/node/.patches", "patch": "@@ -26,7 +26,6 @@ build_allow_unbundling_of_node_js_dependencies.patch\n build_change_crdtp_protocoltypetraits_signatures_to_avoid_conflict.patch\n fix_adjust_wpt_and_webidl_tests_for_enabled_float16array.patch\n refactor_attach_cppgc_heap_on_v8_isolate_creation....
2025-11-13T18:09:34
facebook/react
7d29ecbeb24327fdcd889fe184311bbeb0f04c30
253abc78a1db0caab1693ecf9407d9bc10dd6bd1
[compiler] Aggregate error reporting, separate eslint rules (#34176) NOTE: this is a merged version of @mofeiZ's original PR along with my edits per offline discussion. The description is updated to reflect the latest approach. The key problem we're trying to solve with this PR is to allow developers more control ove...
[ { "path": "babel.config-ts.js", "patch": "@@ -8,6 +8,7 @@ module.exports = {\n '@babel/plugin-syntax-jsx',\n '@babel/plugin-transform-flow-strip-types',\n ['@babel/plugin-transform-class-properties', {loose: true}],\n+ ['@babel/plugin-transform-private-methods', {loose: true}],\n '@babel/...
2025-08-21T21:53:34
golang/go
fbe55325ddce51a7fc099e1efb0d326e7a2e1ed8
20bc1949722c1fd66de5d568f1422845332d18f3
cmd/compile: replace conditions to CCMP instructions on ARM64 This change introduces a new SSA pass that converts conditionals with logical AND into CMP/CCMP instruction sequences on ARM64. Fixes #71268 Change-Id: I3eba9c05b88ed6eb70350d30f6e805e6a4dddbf1 Reviewed-on: https://go-review.googlesource.com/c/go/+/698099...
[ { "path": "src/cmd/compile/internal/ssa/compile.go", "patch": "@@ -501,7 +501,8 @@ var passes = [...]pass{\n \t{name: \"lowered deadcode\", fn: deadcode, required: true},\n \t{name: \"checkLower\", fn: checkLower, required: true},\n \t{name: \"late phielim and copyelim\", fn: copyelim},\n-\t{name: \"tighten...
2025-08-21T17:09:59
nodejs/node
9c346d22a75696b8a5f615224816542f271bf450
7786470ff50e912b16a68012456c86b611488ad7
sqlite: improve error messages for tag store When using SQLite tag store functions (sql.get`, sql.run`, etc.), preparation errors now show descriptive SQLite error messages instead of the generic 'Failed to prepare statement' message. The tag store's GetOrCreateStatement function now passes the database object to THR...
[ { "path": "src/node_sqlite.cc", "patch": "@@ -2946,7 +2946,7 @@ BaseObjectPtr<StatementSync> SQLTagStore::PrepareStatement(\n session->database_->connection_, sql.data(), sql.size(), &s, 0);\n \n if (r != SQLITE_OK) {\n- THROW_ERR_SQLITE_ERROR(isolate, \"Failed to prepare statement\");\n+ ...
2025-12-27T00:04:05