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
electron/electron
6423968dc56ce40259ed4a90744dbb9368dffd4e
3ffa35dc8d1cfe54a3343c51958c6e9f3d70ace3
fix: fixed the type of `WebviewTag.webpreferences` (#42275) fix: fixed the type of WebviewTag.webpreferences
[ { "path": "docs/api/structures/web-preferences.md", "patch": "@@ -143,6 +143,7 @@\n contain the layout of the document—without requiring scrolling. Enabling\n this will cause the `preferred-size-changed` event to be emitted on the\n `WebContents` when the preferred size changes. Default is `false`.\n+...
2024-05-26T05:06:06
rust-lang/rust
e2b308726ae6336c837688664953097ce2cab83c
08abc44fa5eec6639cc10d60efa6807038d107ad
Fix SGX delayed host lookup via ToSocketAddr
[ { "path": "library/std/src/net/mod.rs", "patch": "@@ -70,3 +70,7 @@ pub enum Shutdown {\n #[stable(feature = \"rust1\", since = \"1.0.0\")]\n Both,\n }\n+\n+// allow(unused_imports): This function is only used on some targets\n+#[allow(unused_imports)]\n+pub(crate) use socket_addr::lookup_host_strin...
2026-02-24T20:00:05
golang/go
a8dd771e132beb8e4b2354f209cbb29b9f4fc815
bdb2d50fdf40706e7d7411f33ade80edac726707
crypto/tls: check if quic conn can send session ticket On SendSessionTicket, returns nil if SessionTicketsDisabled is disabled in config. Fixes #62032 Change-Id: Id0c89e2e6fb0805bbf108bb0cafdabdfbaf3897f Reviewed-on: https://go-review.googlesource.com/c/go/+/528755 Reviewed-by: Roland Shoemaker <roland@golang.org> R...
[ { "path": "src/crypto/tls/quic.go", "patch": "@@ -302,6 +302,9 @@ type QUICSessionTicketOptions struct {\n // Currently, it can only be called once.\n func (q *QUICConn) SendSessionTicket(opts QUICSessionTicketOptions) error {\n \tc := q.conn\n+\tif c.config.SessionTicketsDisabled {\n+\t\treturn nil\n+\t}\n...
2023-09-15T18:23:51
electron/electron
3ffa35dc8d1cfe54a3343c51958c6e9f3d70ace3
7ec813732aff4bc428e4946efb1934cc9f6a1fd6
fix: calculate a hash for the Tag property of ToastNotification. (#42239) * fix: calculate a hash for the Tag property of ToastNotification. * fix: calculate a hash for the Tag property of ToastNotification. --------- Co-authored-by: bill.shen <shenyb32768@gmail.com>
[ { "path": "shell/browser/notifications/win/windows_toast_notification.cc", "patch": "@@ -14,6 +14,7 @@\n #include <wrl\\wrappers\\corewrappers.h>\n \n #include \"base/environment.h\"\n+#include \"base/hash/hash.h\"\n #include \"base/logging.h\"\n #include \"base/strings/strcat.h\"\n #include \"base/strings/...
2024-05-24T19:20:59
facebook/react
f510ece86d4621d3b0faf9fe59d850f7807dbb16
fc1371f6bf656821e92c3c41bf65f58686504001
Fix fastAddProperties to properly nullify style props (#30334) ## Summary This PR fixes the `fastAddProperties` function. Now it nullifies a prop if it was defined in one of the items of a style array, but then set to `undefined` or `null` in one of the subsequent items. E.g. `style: [{top: 0}, {top: undefined}]...
[ { "path": "packages/react-native-renderer/src/ReactNativeAttributePayloadFabric.js", "patch": "@@ -464,10 +464,6 @@ function fastAddProperties(\n for (const propKey in props) {\n const prop = props[propKey];\n \n- if (prop === undefined) {\n- continue;\n- }\n-\n const attributeConfig = ...
2024-07-15T16:32:04
nodejs/node
496e17e302ebd61440ccc4d2f84d7276434ddf43
d5bea71e68c360b2b02967ce4127239872cee61c
src: add --disable-sigusr1 to prevent signal i/o thread This commit adds a new flag `--disable-sigusr1` to prevent the SignalIOThread to be up listening the SIGUSR1 events and then starting the debugging session. PR-URL: https://github.com/nodejs/node/pull/56441 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com...
[ { "path": "doc/api/cli.md", "patch": "@@ -577,6 +577,17 @@ Disable the `Object.prototype.__proto__` property. If `mode` is `delete`, the\n property is removed entirely. If `mode` is `throw`, accesses to the\n property throw an exception with the code `ERR_PROTO_ACCESS`.\n \n+### `--disable-sigusr1`\n+\n+<!-...
2025-01-13T16:51:34
vercel/next.js
2921fb33503e45bc29626f64dbe8071a09a7569d
9bd5a76df7c5bcf02d1de4507353a46191424898
fix: prevent URL mutation in router rewrites (#83963) ### What? This PR fixes critical URL mutation issues in Next.js routing that were causing state pollution between requests and breaking compatibility between App Router and Pages Router during rewrite handling. ### Why? Several interconnected problems were disco...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -678,6 +678,39 @@ jobs:\n \n secrets: inherit\n \n+ test-new-tests-deploy-experimental:\n+ name: Test new tests when deployed (experimental)\n+ needs:\n+ [\n+ 'optimize-ci',\n+ 'test-experimental-prod',\n+ 't...
2025-09-24T19:13:33
rust-lang/rust
f2f8743b4eec101b1100cb0b04ac1b0cb8e3bff8
0028f344ce9f64766259577c998a1959ca1f6a0b
Give a better error when updating a submodule fails Previously this would sometimes just say "unexpected output ``", which was extremely unhelpful. The actual issue was that I had a `.jj` directory but not a `.git` directory, so it couldn't run `git submodule update.`
[ { "path": "src/bootstrap/src/core/config/config.rs", "patch": "@@ -2426,7 +2426,7 @@ pub(crate) fn update_submodule<'a>(\n let actual_hash = recorded\n .split_whitespace()\n .nth(2)\n- .unwrap_or_else(|| panic!(\"unexpected output `{recorded}`\"));\n+ .unwrap_or_else(|| pan...
2026-02-24T21:58:07
golang/go
bdb2d50fdf40706e7d7411f33ade80edac726707
768c51e368e05739854c1413fdf7fd129d01e482
net: fix WriteMsgUDPAddrPort addr handling on IPv4 sockets Accept IPv4-mapped IPv6 destination addresses on IPv4 UDP sockets. Fixes #74737. Change-Id: I4624b9b8f861aedcae29e51d5298d23ce1c0f2c7 Reviewed-on: https://go-review.googlesource.com/c/go/+/689976 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accoun...
[ { "path": "src/net/ipsock_posix.go", "patch": "@@ -237,8 +237,12 @@ func ipToSockaddr(family int, ip IP, port int, zone string) (syscall.Sockaddr, e\n func addrPortToSockaddrInet4(ap netip.AddrPort) (syscall.SockaddrInet4, error) {\n \t// ipToSockaddrInet4 has special handling here for zero length slices.\n...
2025-07-25T07:14:16
vercel/next.js
dabf1f664f882cccde8f19d7b760a782a6518914
7d9b384d1be37308484d96bc4816d435bd22ff55
Fix double comma in build manifest (#84131) ## What? Fixes a bug highlighted by Vercel Agent while moving code in #84125. Specific comment: https://github.com/vercel/next.js/pull/84125/files#r2371621679
[ { "path": "packages/next/src/build/webpack/plugins/build-manifest-plugin-utils.ts", "patch": "@@ -72,9 +72,9 @@ export function createEdgeRuntimeManifest(\n `globalThis.__BUILD_MANIFEST.lowPriorityFiles = [\\n` +\n manifestFilenames\n .map((filename) => {\n- return `\"/static/\" + proce...
2025-09-24T09:28:40
facebook/react
c5eca9b0824b6325dbc9613f9befb41077fe35a0
127a0fbf1a4b2607c11854f97d8798a9f6dd99f8
Fixed `useSyncExternalStoreWithSelector` to update memoizedSnapshot on change (#25968) ## Summary <!-- Explain the **motivation** for making this change. What existing problem does the pull request solve? --> A proposed fix for the bug described in https://github.com/facebook/react/issues/25967 ## How di...
[ { "path": "packages/use-sync-external-store/src/useSyncExternalStoreWithSelector.js", "patch": "@@ -93,6 +93,9 @@ export function useSyncExternalStoreWithSelector<Snapshot, Selection>(\n // to React that the selections are conceptually equal, and we can bail\n // out of rendering.\n if (is...
2024-07-13T03:57:45
electron/electron
2e778a98b90a2b769a0de76d68f906dd1defeecb
b8381b7d93b7efd2b55cf5f860d81252953f313d
fix: ensure showInactive actually shows (#42226)
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -473,7 +473,7 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n if (parent())\n InternalSetParentWindow(parent(), true);\n \n- [window_ orderFrontRegardless];\n+ [window_ orderFrontKeepWindowKeyState];\n }...
2024-05-20T21:12:05
nodejs/node
464f335a698fb7871d943bf2ef37d8235704f17c
db7a31e2766ae3c800f6e879ec0f3d08e0759198
stream: fix typo in ReadableStreamBYOBReader.readIntoRequests PR-URL: https://github.com/nodejs/node/pull/56560 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "lib/internal/webstreams/readablestream.js", "patch": "@@ -925,7 +925,7 @@ class ReadableStreamBYOBReader {\n throw new ERR_INVALID_ARG_TYPE('stream', 'ReadableStream', stream);\n this[kState] = {\n stream: undefined,\n- requestIntoRequests: [],\n+ readIntoRequests: [],\n...
2025-01-13T15:11:47
rust-lang/rust
8971ad85af554a2352865bf0e51d2cd16c519622
859951e3c7c9d0322c39bad49221937455bdffcd
Fix attribute parser and kind names. For the attribute `FooBar` the parser is generally called `FooBarParser` and the kind is called `AttributeKind::FooBar`. This commit renames some cases that don't match that pattern. The most common cases: - Adding `Rustc` to the front of the parser name for a `rustc_*` attribute...
[ { "path": "compiler/rustc_attr_parsing/src/attributes/allow_unstable.rs", "patch": "@@ -52,8 +52,8 @@ impl<S: Stage> CombineAttributeParser<S> for UnstableFeatureBoundParser {\n }\n }\n \n-pub(crate) struct AllowConstFnUnstableParser;\n-impl<S: Stage> CombineAttributeParser<S> for AllowConstFnUnstablePa...
2026-02-24T01:22:20
golang/go
94d72355f662a1c8229db661cc068ea8e901641c
8eb5f6020e707672a846f0f83011b87e48039550
[dev.simd] simd: add emulations for bitwise ops and for mask/merge methods This CL adds the emulations under a "wrong name"; subsequent CLs will move the AVX512 versions of these operations out of the way, and then will rename these to their better names. Change-Id: I49e7a73e4fea74fb7bd26cb8062014568d7999ca Reviewed-...
[ { "path": "src/simd/genfiles.go", "patch": "@@ -50,13 +50,20 @@ var convert32Shapes = &shapes{\n \tfloats: []int{32},\n }\n \n-var avx512MaskedLoadShapes = &shapes{\n+var avx512Shapes = &shapes{\n \tvecs: []int{512},\n \tints: []int{8, 16, 32, 64},\n \tuints: []int{8, 16, 32, 64},\n \tfloats: []int{32,...
2025-07-30T21:42:10
vercel/next.js
f46e17ac7d37b0c6ed135091363c1ca6e5625bb3
088a519039d319ab2a48d7963d717647d943190d
docs: update Security section to direct disclosures (#84156) This PR updates the README.md Security section: - Removes reference to GitHub’s private vulnerability reporting feature. - Directs researchers to email responsible.disclosure@vercel.com. - Clarifies that researchers will be added to our Open Source Softwar...
[ { "path": "packages/next/README.md", "patch": "@@ -42,9 +42,8 @@ Contributions to Next.js are welcome and highly appreciated. However, before you\n We have a list of **[good first issues](https://github.com/vercel/next.js/labels/%22good%20first%20issue%22)** that contain bugs that have a relatively limited ...
2025-09-23T23:30:56
facebook/react
127a0fbf1a4b2607c11854f97d8798a9f6dd99f8
ff89ba734668fdac06e8de476486830bbf9e0785
Add build-for-flight-dev script to package.json (#30326) Similar to the build-for-devtools script. I often have to build locally for the flight fixture. This builds a subset that makes it work (in DEV).
[ { "path": "package.json", "patch": "@@ -112,6 +112,7 @@\n \"build-for-devtools\": \"cross-env RELEASE_CHANNEL=experimental yarn build react/index,react/jsx,react/compiler-runtime,react-dom/index,react-dom/client,react-dom/unstable_testing,react-dom/test-utils,react-is,react-debug-tools,scheduler,react-t...
2024-07-12T22:03:10
electron/electron
b8381b7d93b7efd2b55cf5f860d81252953f313d
af9a59cc402461ed5b2a2010b5dc64f9a42d377e
docs: fix broken anchors (#42213)
[ { "path": "docs/api/environment-variables.md", "patch": "@@ -51,7 +51,7 @@ Unsupported options are:\n --http-parser\n ```\n \n-If the [`nodeOptions` fuse](../tutorial/fuses.md#L27) is disabled, `NODE_OPTIONS` will be ignored.\n+If the [`nodeOptions` fuse](../tutorial/fuses.md#nodeoptions) is disabled, `NODE...
2024-05-17T07:46:18
nodejs/node
f4fcf0e6138a24a17cadc75c68be62d95a29f242
99099d64cb46a67d83d10737b99e0c9519c13062
tls: fix error stack conversion in cryptoErrorListToException() The ncrypto move introduced regressions in cryptoErrorListToException() by passing in the size of the vector unnecessarily into the vector constructor and then use push_back() (which would result in a crash on dereferencing empty handles during later iter...
[ { "path": "src/crypto/crypto_util.cc", "patch": "@@ -237,7 +237,8 @@ MaybeLocal<Value> cryptoErrorListToException(\n if (errors.size() > 1) {\n CHECK(exception->IsObject());\n Local<Object> exception_obj = exception.As<Object>();\n- LocalVector<Value> stack(env->isolate(), errors.size() - 1);\n...
2025-01-12T20:53:04
rust-lang/rust
2e17c9b81a0446cdfaae88e038bbfbba7d105b5a
4ab624fcca7f8a1386c64d41723b8c2a4ba0ba24
remove FIXME about size of Pointer type
[ { "path": "src/tools/miri/src/machine.rs", "patch": "@@ -300,7 +300,8 @@ pub enum ProvenanceExtra {\n \n #[cfg(target_pointer_width = \"64\")]\n static_assert_size!(StrictPointer, 24);\n-// FIXME: this would with in 24bytes but layout optimizations are not smart enough\n+// Pointer does not fit as the layou...
2026-02-24T21:29:26
golang/go
b3388569a187ea6be48caa41265f2b4dbc2fdfd3
d83b16fcb8de765f25cabbea63284406ea6dd091
reflect: handle zero-sized fields of directly-stored structures correctly type W struct { E struct{} X *byte } type W is a "direct" type. That is, it is a pointer-ish type that can be stored directly as the second word of an interface. But if we ask reflect for W's first field, that value must *not* be direct, as ...
[ { "path": "src/reflect/value.go", "patch": "@@ -1277,6 +1277,17 @@ func (v Value) Field(i int) Value {\n \t\t\tfl |= flagStickyRO\n \t\t}\n \t}\n+\tif fl&flagIndir == 0 && typ.Size() == 0 {\n+\t\t// Special case for picking a field out of a direct struct.\n+\t\t// A direct struct must have a pointer field a...
2025-08-07T22:30:54
facebook/react
ff89ba734668fdac06e8de476486830bbf9e0785
400e82227747f6b60fecbc3b43f7515b4fd89d8c
Disable consoleWithStackDev Transform except in RN/WWW (#30313) Stacked on #30308. This is now a noop module so we can stop applying the transform of console.error using the Babel plugin in the mainline builds. I'm keeping the transform for RN/WWW for now although it might be nice if the transform moved into tho...
[ { "path": "packages/react-client/src/ReactClientConsoleConfigBrowser.js", "patch": "@@ -7,8 +7,6 @@\n * @flow\n */\n \n-import {warn, error} from 'shared/consoleWithStackDev';\n-\n const badgeFormat = '%c%s%c ';\n // Same badge styling as DevTools.\n const badgeStyle =\n@@ -65,12 +63,6 @@ export function ...
2024-07-12T18:39:38
vercel/next.js
7f29f1740d0ec524cb150bb80ba57ea8c61309e4
49b83495aab6cd7d9ad74126f93ec3917bedc4e5
Turbopack: add more details to the graph panic (#84143) ### What? add more details to the panic message
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/aggregation_update.rs", "patch": "@@ -1419,7 +1419,7 @@ impl AggregationUpdateQueue {\n if retry > MAX_RETRIES {\n panic!(\n \"inner_of_uppers_lost_follower is not able to remove follower \\...
2025-09-23T18:37:10
nodejs/node
046be6d28f2b10ea47477d8f401c07cca0eb74b1
9230f22029f1c3fed9b91ebcf5b114d33b915a32
doc: fix parentheses in options PR-URL: https://github.com/nodejs/node/pull/56563 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
[ { "path": "doc/api/child_process.md", "patch": "@@ -536,7 +536,7 @@ changes:\n * `options` {Object}\n * `cwd` {string|URL} Current working directory of the child process.\n * `detached` {boolean} Prepare child process to run independently of its\n- parent process. Specific behavior depends on the pla...
2025-01-12T17:58:56
rust-lang/rust
acbfd79acf662be04745dc0675558e75e0d30d87
e96bb7e44fbcc23c1e6009e8d0ee8ab208668fb4
Fix: On wasm targets, call `panic_in_cleanup` if panic occurs in cleanup Previously this was not correctly implemented. Each funclet may need its own terminate block, so this changes the `terminate_block` into a `terminate_blocks` `IndexVec` which can have a terminate_block for each funclet. We key on the first basic ...
[ { "path": "compiler/rustc_codegen_gcc/src/builder.rs", "patch": "@@ -1653,6 +1653,10 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {\n unimplemented!();\n }\n \n+ fn get_funclet_cleanuppad(&self, _funclet: &Funclet) -> RValue<'gcc> {\n+ unimplemented!();\...
2026-01-27T00:58:31
golang/go
f3606b0825c20e3f3ccdae00bb8d5d7d8dfd745e
ee7bb8969a62b12f466f818e4e3d836a2e126940
cmd/compile/internal/ssa: fix typo in LOONG64Ops.go comment Change-Id: I680bae7fc1a26c1f249ab833fa8d41e9387b2d50 Reviewed-on: https://go-review.googlesource.com/c/go/+/693456 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Re...
[ { "path": "src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go", "patch": "@@ -589,7 +589,7 @@ func init() {\n \t\t{name: \"FPT\", controls: 1}, // FP flag is true\n \t\t{name: \"FPF\", controls: 1}, // FP flag is false\n \t\t{name: \"BEQ\", controls: 2}, // controls[0] == controls[1]\n-\t\t{name: \"BNE\", c...
2025-08-06T02:31:59
nodejs/node
8ca295623510289b1476e9d9d2dca7e56349ad60
0576deb4e5526b89e268d7b6842b221918f9a470
crypto: fix warning of ignoring return value PR-URL: https://github.com/nodejs/node/pull/56527 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
[ { "path": "deps/ncrypto/ncrypto.cc", "patch": "@@ -346,7 +346,7 @@ bool BignumPointer::generate(const PrimeConfig& params,\n PrimeCheckCallback innerCb) const {\n // BN_generate_prime_ex() calls RAND_bytes_ex() internally.\n // Make sure the CSPRNG is properly seeded.\n- CS...
2025-01-11T14:55:30
vercel/next.js
6478e9195140bcb936edc7083fd8095f0511b402
45e28f8fe8a5436e0cc0b9160d5b3b92b18cbf8e
Turbopack: fix run_once when returning error (#84142) Errors returned from the callback are never read. Instead, send errors returned from the `future` over the channel.
[ { "path": "turbopack/crates/turbo-tasks/src/manager.rs", "patch": "@@ -526,13 +526,13 @@ impl<B: Backend + 'static> TurboTasks<B> {\n ) -> Result<T> {\n let (tx, rx) = tokio::sync::oneshot::channel();\n self.spawn_once_task(async move {\n- let result = future.await?;\n+ ...
2025-09-23T16:30:28
facebook/react
400e82227747f6b60fecbc3b43f7515b4fd89d8c
1e8efe7fd401384226865fb4e220038f3505a748
Remove Component Stack from React Logged Warnings and Error Reporting (#30308) React transpiles some of its own `console.error` calls into a helper that appends component stacks to those calls. However, this doesn't cover user space `console.error` calls - which includes React helpers that React has moved into thir...
[ { "path": "packages/internal-test-utils/__tests__/ReactInternalTestUtils-test.js", "patch": "@@ -866,16 +866,40 @@ describe('ReactInternalTestUtils console assertions', () => {\n const message = expectToThrowFailure(() => {\n expect(root).toMatchRenderedOutput(<div>foobarbaz</div>);\n })...
2024-07-12T17:02:22
rust-lang/rust
890434af218987d48f092524490c9a25ff910eeb
3282e2cb9c8c16f6d22d90a6af2515b592b2c692
Fix rustc test suite
[ { "path": "scripts/test_rustc_tests.sh", "patch": "@@ -151,7 +151,6 @@ rm -r tests/run-make/short-ice # ICE backtrace begin/end marker mismatch\n rm -r tests/run-make/remap-path-prefix-dwarf # requires llvm-dwarfdump\n rm -r tests/run-make/strip # same\n rm -r tests/run-make-cargo/compiler-builtins # Expect...
2026-02-24T16:13:56
golang/go
1f7ffca171cd8c50fe6a10eb77a84a95c5b37c61
8282b72d627269ed2c2f7db7ea744e109667d7b1
time: skip TestLongAdjustTimers on plan9 (too slow) The TestLongAdjustTimers test has been consistently timing out after 60 seconds on plan9-arm. Skip the test for plan9, as it is already skipped for being too slow on android and ios. Fixes #74921 Change-Id: Icc32e902cecd2e98971a898373fe8346b179437d Reviewed-on: htt...
[ { "path": "src/time/tick_test.go", "patch": "@@ -151,7 +151,7 @@ func TestTickerResetLtZeroDuration(t *testing.T) {\n }\n \n func TestLongAdjustTimers(t *testing.T) {\n-\tif runtime.GOOS == \"android\" || runtime.GOOS == \"ios\" {\n+\tif runtime.GOOS == \"android\" || runtime.GOOS == \"ios\" || runtime.GOOS...
2025-08-07T10:58:20
nodejs/node
0576deb4e5526b89e268d7b6842b221918f9a470
ad68d088a31c9d607d1eeeadc5cbf3aec78c31bf
test: add error only reporter for node:test This commit introduces a node:test reporter to the common utils. This reporter can be used to silence output other than errors from node:test. This is useful because in Node's own test suite, the output of node:test is included in the output of the Python test runner. Refs:...
[ { "path": ".github/workflows/build-tarball.yml", "patch": "@@ -105,4 +105,4 @@ jobs:\n - name: Test\n run: |\n cd $TAR_DIR\n- make run-ci -j4 V=1 TEST_CI_ARGS=\"-p dots --node-args='--test-reporter=spec' --measure-flakiness 9\"\n+ make run-ci -j4 V=1 TEST_CI_ARGS=\"...
2025-01-11T14:19:35
vercel/next.js
c2081b134ef6a9c54f8d005c72f8c077e8e1a699
58a60479550ee4c2e7a3ff5de696c01c196303f9
Bump Rust to nightly-2025-09-21 (#83415) It compiles fine, but we have another problem: `cargo fmt` really doesn't like it ``` cargo fmt -- turbopack/crates/turbo-tasks-fs/src/lib.rs error: let chains are only allowed in Rust 2024 or later --> /Users/niklas/code/next.js/turbopack/crates/turbo-tasks-fs/src/lib.rs:7...
[ { "path": ".devcontainer/rust/devcontainer-feature.json", "patch": "@@ -5,7 +5,7 @@\n \"dependsOn\": {\n \"ghcr.io/devcontainers/features/rust:1\": {\n // this should match the `rust-toolchain.toml`\n- \"version\": \"nightly-2025-06-04\",\n+ \"version\": \"nightly-2025-09-21\",\n ...
2025-09-23T15:15:44
facebook/react
ff3f1fac65e7b82efe3f90af42af1278bc6f1d5d
df5f273629d8da586351573347e8b32ba19dafa7
[RN] Set enableOwnerStacks and enableUseDeferredValueInitialArg to false In www, the experimental versions get a .modern.js or .classic.js prefix and get copied into the same folder. In RN, they don't seem to have .modern.js and .classic.js versions so they end up getting the same name. sebmarkbage's theory is that w...
[ { "path": "packages/shared/forks/ReactFeatureFlags.native-oss.js", "patch": "@@ -57,7 +57,7 @@ export const enableLegacyFBSupport = false;\n export const enableLegacyHidden = false;\n export const enableNoCloningMemoCache = false;\n export const enableObjectFiber = false;\n-export const enableOwnerStacks = ...
2024-07-12T15:21:10
rust-lang/rust
b26ef2a45d867135135f7fbe2d2545f95454b952
df995ede1b3e61f0e87081d9548e6cd2a3ec9095
fix: `cmp_owned` suggests wrongly on `PathBuf`
[ { "path": "clippy_lints/src/operators/cmp_owned.rs", "patch": "@@ -100,10 +100,10 @@ fn check_op(cx: &LateContext<'_>, outer: &Expr<'_>, expr: &Expr<'_>, other: &Exp\n \n let mut applicability = Applicability::MachineApplicable;\n let (arg_snip, _) = snippet_with_context(cx, arg_span...
2026-02-24T05:08:42
electron/electron
a54afabe044f547e6316d3408da265cf50852569
125bd6aa2bb3b06edf5b9eb3640572475ca1abb2
fix: `win.center()` on Windows (#42195) fix: win.center() on Windows
[ { "path": "shell/browser/native_window_views.cc", "patch": "@@ -1085,7 +1085,7 @@ void NativeWindowViews::Center() {\n #else\n HWND hwnd = GetAcceleratedWidget();\n gfx::Size size = display::win::ScreenWin::DIPToScreenSize(hwnd, GetSize());\n- gfx::CenterAndSizeWindow(hwnd, hwnd, size);\n+ gfx::Center...
2024-05-15T17:36:24
nodejs/node
ad68d088a31c9d607d1eeeadc5cbf3aec78c31bf
649da3b8377e030ea7b9a1bc0308451e26e28740
doc: fix location of NO_COLOR in CLI docs The 'coverage output' and 'source map cache' sections were appearing under the NO_COLOR environment variable instead of the NODE_V8_COVERAGE enviroment variable where they were intended to be. This commit fixes that issue. PR-URL: https://github.com/nodejs/node/pull/56525 Rev...
[ { "path": "doc/api/cli.md", "patch": "@@ -3378,11 +3378,6 @@ easier to instrument applications that call the `child_process.spawn()` family\n of functions. `NODE_V8_COVERAGE` can be set to an empty string, to prevent\n propagation.\n \n-### `NO_COLOR=<any>`\n-\n-[`NO_COLOR`][] is an alias for `NODE_DISABLE...
2025-01-11T00:03:08
vercel/next.js
521dcf55bffc12bfab7b1de4dde729865febc28e
90d4ff74debe7e7f1eb4fb719b9e214c36b3932c
Turbopack: add more details to the graph panic (#84126) ### What? give more information when a graph panic happens
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/aggregation_update.rs", "patch": "@@ -1419,8 +1419,14 @@ impl AggregationUpdateQueue {\n if retry > MAX_RETRIES {\n panic!(\n \"inner_of_uppers_lost_follower is not able to remove follower \...
2025-09-23T13:04:29
facebook/react
5dcf3ca8d45a276a8b4cee0cedd234967661ca35
433068eece2071a96de98b60f99ce6a9121a629c
Add FB RSC Entry for React Package (#30310) I noticed that the www-modern builds pick up the `.experimental.js` entry points but these flags that are associated with these exports are not enabled in www, so it gets the wrong builds. This file is just a clone over the stable `ReactServer.js` one. We should probab...
[ { "path": "packages/react/src/ReactServer.fb.js", "patch": "@@ -0,0 +1,60 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this source tree.\n+ *\n+ * @flow\n+ */\n+\n+export ...
2024-07-11T22:44:49
golang/go
8eb5f6020e707672a846f0f83011b87e48039550
b226bcc4a9ae71dd75effbd020220590a29a68a9
[dev.simd] cmd/compile, simd: API interface fixes - Absolute -> Abs - ApproximateReciprocal -> Reciprocal - Other derived apis also changed. - Round -> RoundToEven - Other derived apis also changed. - Drop DotProdBroadcast - Fused(Mul|Add)(Mul|Add)? -> remove the "Fused" - MulEvenWi...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -24,18 +24,6 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPABSQ128,\n \t\tssa.OpAMD64VPABSQ256,\n \t\tssa.OpAMD64VPABSQ512,\n-\t\tssa.OpAMD64VRCPPS128,\n-\t\tssa.OpAMD64VRCPPS256,\n-\t\tssa.OpAMD64VRCP14PS...
2025-08-07T17:05:50
rust-lang/rust
78ea9996cd057887698af79f74375cae650f50d1
0028f344ce9f64766259577c998a1959ca1f6a0b
std random.rs: update link to RTEMS docs The old URL with `master` resulted in a 404 error - use `main` instead.
[ { "path": "library/std/src/random.rs", "patch": "@@ -37,7 +37,7 @@ use crate::sys::random as sys;\n /// Horizon, Cygwin | `getrandom`\n /// AIX, Hurd, L4Re, QNX | `/dev/urandom`\n /// Redox | `/scheme/rand`\n-/// RTEMS | [`arc4random_buf`](https://docs.rtems.org/br...
2026-02-24T15:38:46
nodejs/node
3946f1678681f89f37d9e42d67e51dfcadb6c817
ba6800d1d6f2c1662d010d0618d999119da270ca
process: fix symbol key and mark experimental new `node:process` methods PR-URL: https://github.com/nodejs/node/pull/56517 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/process.md", "patch": "@@ -3248,11 +3248,13 @@ console.log(`The parent process is pid ${ppid}`);\n added: v23.6.0\n -->\n \n+> Stability: 1 - Experimental\n+\n * `maybeRefable` {any} An object that may be \"refable\".\n \n An object is \"refable\" if it implements the Node.js \"Refable pr...
2025-01-10T14:40:28
facebook/react
433068eece2071a96de98b60f99ce6a9121a629c
af28f480e8e74ce71bb33259b61fef8a5a228f74
Remove top stack frame from getCurrentStack (#30306) The full stack is the current execution stack (`new Error().stack`) + the current owner stack (`React.captureOwnerStack()`). The idea with the top frame was that when we append it to console.error we'd include both since otherwise the true reason would be obscu...
[ { "path": "packages/react-reconciler/src/ReactCurrentFiber.js", "patch": "@@ -33,7 +33,7 @@ export function getCurrentFiberOwnerNameInDevOrNull(): string | null {\n return null;\n }\n \n-function getCurrentFiberStackInDev(stack: null | Error): string {\n+function getCurrentFiberStackInDev(): string {\n ...
2024-07-11T22:34:41
electron/electron
125bd6aa2bb3b06edf5b9eb3640572475ca1abb2
7f8fabbe7b93f1d44421c12b42b8fc8a6cd69a96
docs: troubleshooting advice for rbe auth 'token not valid' error (#42027)
[ { "path": "docs/development/build-instructions-gn.md", "patch": "@@ -329,3 +329,7 @@ Error: Cannot find module '/Users/<user>/.electron_build_tools/src/e'\n ```\n \n We recommend installing Node through [nvm](https://github.com/nvm-sh/nvm). This allows for easier Node version management, and is often a fix ...
2024-05-15T17:35:32
golang/go
8282b72d627269ed2c2f7db7ea744e109667d7b1
dc54d7b607488e71776ba0fa3d09398d65daf033
runtime/race: update darwin race syso On macOS, the script in LLVM TSAN building the race syso files produces the Mach-O object with a malformed dynamic symbol table, which new Apple linker doesn't like and emits an annoying warning (https://github.com/golang/go/issues/61229#issuecomment-1988965927). The dynamic symbo...
[ { "path": "src/runtime/race/README", "patch": "@@ -4,14 +4,14 @@ the LLVM project (https://github.com/llvm/llvm-project/tree/main/compiler-rt).\n \n To update the .syso files use golang.org/x/build/cmd/racebuild.\n \n-internal/amd64v1/race_darwin.syso built with LLVM 51bfeff0e4b0757ff773da6882f4d538996c9b04...
2025-03-25T19:21:04
nodejs/node
ba6800d1d6f2c1662d010d0618d999119da270ca
529b56ef9d2a0b3402dee5a812a1d88983b09a80
esm: fix jsdoc type refs to `ModuleJobBase` in esm/loader Co-Authored-By: Carlos Espa <43477095+Ceres6@users.noreply.github.com> PR-URL: https://github.com/nodejs/node/pull/56499 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoi...
[ { "path": "lib/internal/modules/esm/loader.js", "patch": "@@ -54,6 +54,8 @@ const { tracingChannel } = require('diagnostics_channel');\n const onImport = tracingChannel('module.import');\n \n /**\n+ * @typedef {import('./hooks.js').HooksProxy} HooksProxy\n+ * @typedef {import('./module_job.js').ModuleJobBas...
2025-01-10T13:44:43
facebook/react
a09950ed418adb26a5e735b4ee9eca5e5282ffc7
a5cc797b8801dfe58c7a34c99a9fa60c6c9c8274
Gate inlined consoleWithStackDev transpilation (#30317) This code is getting deleted in #30313 anyway but it should've been gated all along. This code exists to basically manually transpile console.error to consoleWithStackDev because the transpiler doesn't work on `.apply` or `.bind` or the dynamic look up. We ...
[ { "path": "packages/react-client/src/ReactClientConsoleConfigBrowser.js", "patch": "@@ -65,9 +65,9 @@ export function printToConsole(\n );\n }\n \n- if (methodName === 'error') {\n+ if (methodName === 'error' && __DEV__) {\n error.apply(console, newArgs);\n- } else if (methodName === 'warn') {\...
2024-07-11T17:05:26
electron/electron
435003566dbfe0aedbe52b39774f32148635ed00
d7099b0ad4594284eb3143d6839e167c1a9b1a44
fix: restore non-panel focus behavior (#42180)
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -426,20 +426,7 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n // If we're a panel window, we do not want to activate the app,\n // which enables Electron-apps to build Spotlight-like experiences.\n ...
2024-05-14T22:52:08
golang/go
e0a1ea431c960c3ed740f9b32754e7c31737035c
2747f925dd1f08f9b9a1ef23170ee601519d70c2
cmd/compile: make panicBounds stack frame smaller on ppc64 We're running into nosplit limits when compiled with all=-N -l. Fixes #74910 Change-Id: I156263ae9b54ded240000001719512af86af70ee Reviewed-on: https://go-review.googlesource.com/c/go/+/693557 Reviewed-by: Paul Murphy <paumurph@redhat.com> Auto-Submit: Keith ...
[ { "path": "src/cmd/compile/internal/ssa/_gen/PPC64Ops.go", "patch": "@@ -171,7 +171,7 @@ func init() {\n \t\tfpstore = regInfo{inputs: []regMask{gp | sp | sb, fp}}\n \t\tfpstoreidx = regInfo{inputs: []regMask{gp | sp | sb, gp | sp | sb, fp}}\n \t\tcallerSave = regMask(gp | fp | gr | xer)\n-\t\tfirst8 ...
2025-08-06T16:59:12
nodejs/node
b8f6d84ff5893b1274d658da22bc4067c2fb93fa
483e3d5e4b006d65ebeacef06b8bfacbd475c9d0
test: mark test-http-server-request-timeouts-mixed as flaky This has been flaking the CI for more than 2 years with various attempts to fix without success. It has still been flaking the CI (failed 19 out of 100 recent testing CI runs). It's time to mark it as flaky. PR-URL: https://github.com/nodejs/node/pull/56503 ...
[ { "path": "test/sequential/sequential.status", "patch": "@@ -28,6 +28,9 @@ test-http-server-request-timeouts-mixed: PASS, FLAKY\n # https://github.com/nodejs/node/issues/54816\n test-single-executable-application-empty: PASS, FLAKY\n \n+# https://github.com/nodejs/node/issues/43465\n+test-http-server-reques...
2025-01-09T15:31:01
vercel/next.js
94fe834574fade7008eb36e7a6e157017e52bea2
42cc1a85888311a7f0745fd68fb29e4767b1d9e3
docs: onRequestError request header type (#83988) Aligning with the actual type https://github.com/vercel/next.js/blob/canary/packages/next/src/server/instrumentation/types.ts#L18
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/instrumentation.mdx", "patch": "@@ -88,7 +88,7 @@ export function onRequestError(\n request: {\n path: string // resource path, e.g. /blog?name=foo\n method: string // request method. e.g. GET, POST, etc\n- headers: { [key: string]: st...
2025-09-23T12:48:36
facebook/react
a5cc797b8801dfe58c7a34c99a9fa60c6c9c8274
85acf2d19527df568136ba08be97aa766d427ff2
Updates ViewConfig types to delegate isInAParentText context (#29872) <!-- 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 ...
[ { "path": "packages/react-native-renderer/src/ReactNativeTypes.js", "patch": "@@ -85,13 +85,15 @@ export type ViewConfig = $ReadOnly<{\n }>,\n ...\n }>,\n+ supportsRawText?: boolean,\n uiViewClassName: string,\n validAttributes: AttributeConfiguration,\n }>;\n \n export type PartialViewConfig...
2024-07-11T16:47:20
golang/go
2747f925dd1f08f9b9a1ef23170ee601519d70c2
025d36917c8f56baede2f477131bbf08bf1382ca
debug/macho: support reading imported symbols without LC_DYSYMTAB Currently, the ImportedSymbols method requires an LC_DYSYMTAB load command to exist. However, a Mach-O object file may not have an LC_DYSYMTAB load command, e.g. the one produced by "ld -r". Support this case by just reading the symbol table and gathers...
[ { "path": "src/debug/macho/file.go", "patch": "@@ -719,15 +719,28 @@ func (f *File) DWARF() (*dwarf.Data, error) {\n // referred to by the binary f that are expected to be\n // satisfied by other libraries at dynamic load time.\n func (f *File) ImportedSymbols() ([]string, error) {\n-\tif f.Dysymtab == nil ...
2025-08-04T14:30:26
nodejs/node
483e3d5e4b006d65ebeacef06b8bfacbd475c9d0
6b3937a072ae27535bdd83539c4d9ae539d263f1
src: fix undefined script name in error source PR-URL: https://github.com/nodejs/node/pull/56502 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/node_errors.cc", "patch": "@@ -136,8 +136,13 @@ static std::string GetErrorSource(Isolate* isolate,\n \n // Print (filename):(line number): (message).\n ScriptOrigin origin = message->GetScriptOrigin();\n- node::Utf8Value filename(isolate, message->GetScriptResourceName());\n- const cha...
2025-01-09T14:06:31
vercel/next.js
81bccc93e99bc33759d0789538dafa42c45d068e
ce4d40b00b53aacd546bb061b9964cc34cc3f076
Guide users to `experimental.cacheComponents` config (#84121) In error messages and in docs for `'use cache'` and related APIs, we now guide users to the `experimental.cacheComponents` config instead of `experimental.useCache`. closes NAR-410
[ { "path": "crates/next-custom-transforms/src/transforms/server_actions.rs", "patch": "@@ -3191,15 +3191,15 @@ fn emit_error(error_kind: ServerActionsErrorKind) {\n span,\n formatdoc! {\n r#\"\n- Unknown cache kind \"{cache_kind}\". Please configure ...
2025-09-23T10:23:59
electron/electron
f2af35182c9a7b13a7047992cb330652c15cec69
d0cb298f95c905ba78e4746c560b9be6a1d0208f
fix: fix cast in ElectronDesktopWindowTreeHostLinux (#42179) Fix cast in ElectronDesktopWindowTreeHostLinux The frame view of the widget is an `ClientFrameViewLinux` instance only when both `frame` and `client_frame` booleans are set to `true`. Otherwise it is an instance of a different class and thus casting to ...
[ { "path": "shell/browser/ui/electron_desktop_window_tree_host_linux.cc", "patch": "@@ -87,9 +87,15 @@ void ElectronDesktopWindowTreeHostLinux::OnWindowStateChanged(\n \n void ElectronDesktopWindowTreeHostLinux::OnWindowTiledStateChanged(\n ui::WindowTiledEdges new_tiled_edges) {\n- static_cast<ClientFr...
2024-05-14T21:26:39
facebook/react
6587fe19338d22076b9c0fe50185717218b4a8bc
29552c7907230222acd3f2c586784d24f9da6200
feat(compiler): Ignore `TSInterfaceDeclaration` (#30314) ## Summary The following was not supported: ```ts function A() { interface C { id: number; } return 0; } ``` Message: > Todo: (BuildHIR::lowerStatement) Handle TSInterfaceDeclaration statements (2:4) Playground: https://playground...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts", "patch": "@@ -1332,6 +1332,7 @@ function lowerStatement(\n return;\n }\n case \"TypeAlias\":\n+ case \"TSInterfaceDeclaration\":\n case \"TSTypeAliasDeclaration\": {\n // We do not preserve type annotat...
2024-07-11T02:11:04
golang/go
f53dcb6280a66acb7f6a66d39eaf51e5f0f5698b
a3895fe9f18682d5055cb68283eba21d7255a67f
cmd/internal/testdir: unify link command There are three places where we manually construct a "go tool link" command. Unify them. Test binaries don't need the symbol table or debug info, so pass -s -w always. Change-Id: I40143894172877738e250f291d7e7ef8dce62488 Reviewed-on: https://go-review.googlesource.com/c/go/+/...
[ { "path": "src/cmd/internal/testdir/testdir_test.go", "patch": "@@ -233,19 +233,23 @@ var stdlibImportcfgFile = sync.OnceValue(func() string {\n \treturn filename\n })\n \n-func linkFile(runcmd runCmd, goname string, importcfg string, ldflags []string) (err error) {\n+// linkFile links infile with the given...
2025-08-02T22:06:57
nodejs/node
6b3937a072ae27535bdd83539c4d9ae539d263f1
8975748527a82d2dcfd6168ada30359f39de91ba
src: refactor --trace-env to reuse option selection and handling This reduces the duplication in the code base, also makes makes the log messages more concise since the `[--trace-env]` prefix should provide enough indication about the fact that it's about environment variable access. PR-URL: https://github.com/nodejs...
[ { "path": "src/node_credentials.cc", "patch": "@@ -99,15 +99,7 @@ bool SafeGetenv(const char* key, std::string* text, Environment* env) {\n *text = value.value();\n }\n \n- auto options =\n- (env != nullptr ? env->options()\n- : per_process::cli_options->per_isolate->per_env...
2025-01-09T12:46:22
electron/electron
d0cb298f95c905ba78e4746c560b9be6a1d0208f
1ef5406c8cd88a4de8d8d70b32ca383ecfc907a6
fix: `webContents.navigationHistory` should be enumerable (#42139) fix: webContents.navigationHistory should be enumerable
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -541,7 +541,8 @@ WebContents.prototype._init = function () {\n length: this._historyLength.bind(this),\n getEntryAtIndex: this._getNavigationEntryAtIndex.bind(this)\n },\n- writable: false\n+ writable: false,\n+ enumerable: t...
2024-05-14T20:47:47
vercel/next.js
ce4d40b00b53aacd546bb061b9964cc34cc3f076
90af4259ffff9934dcafeb9a00e91609fd0e68e5
fix(docs): Fix links in UPGRADING.md (#84114) ### What? Both links in this file were broken/out of date. ### Why? ### How? Updated with new links, open to suggestions if we want to link elsewhere! Co-authored-by: Joseph <joseph.chamochumbi@vercel.com>
[ { "path": "UPGRADING.md", "patch": "@@ -1 +1 @@\n-This document has been moved to [nextjs.org/docs/upgrading](https://nextjs.org/docs/upgrading). It's also available in this repository on [/docs/01-app/03-building-your-application/11-upgrading](/docs/01-app/03-building-your-application/11-upgrading).\n+This...
2025-09-23T10:23:16
facebook/react
29552c7907230222acd3f2c586784d24f9da6200
fe9828954adcc51aa2bd21fe53d969a44dd3c9d2
Override the getCurrentStack temporarily while printing uncaught errors (#30309) This is just a follow up to #30300. I forgot the uncaught branch.
[ { "path": "packages/react-reconciler/src/ReactFiberErrorLogger.js", "patch": "@@ -46,27 +46,29 @@ export function defaultOnUncaughtError(\n 'Consider adding an error boundary to your tree to customize error handling behavior.\\n' +\n 'Visit https://react.dev/link/error-boundaries to learn more a...
2024-07-10T20:58:46
golang/go
a3895fe9f18682d5055cb68283eba21d7255a67f
608e9fac9055aa188c513f4dd53f12e692bc3c0c
database/sql: avoid closing Rows while scan is in progress A database/sql/driver.Rows can return database-owned data from Rows.Next. The driver.Rows documentation doesn't explicitly document the lifetime guarantees for this data, but a reasonable expectation is that the caller of Next should only access it until the n...
[ { "path": "src/database/sql/convert.go", "patch": "@@ -335,7 +335,6 @@ func convertAssignRows(dest, src any, rows *Rows) error {\n \t\t\tif rows == nil {\n \t\t\t\treturn errors.New(\"invalid context to convert cursor rows, missing parent *Rows\")\n \t\t\t}\n-\t\t\trows.closemu.Lock()\n \t\t\t*d = Rows{\n \...
2025-07-23T21:26:54
nodejs/node
7b472fdfe7e16e2a472440ba148b88fbcfb03635
c0ad1937d0004800f23b53308b5272208860dbbf
src: minor cleanups on OneByteString usage * Provide a OneByteString variant that accepts std::string_view * Use FIXED_ONE_BYTE_STRING in appropriate places Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: https://github.com/nodejs/node/pull/56482 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Lu...
[ { "path": "src/crypto/crypto_ec.cc", "patch": "@@ -767,16 +767,16 @@ Maybe<void> ExportJWKEcKey(Environment* env,\n const int nid = EC_GROUP_get_curve_name(group);\n switch (nid) {\n case NID_X9_62_prime256v1:\n- crv_name = OneByteString(env->isolate(), \"P-256\");\n+ crv_name = FIXED_ONE_...
2025-01-05T20:36:27
vercel/next.js
fa57e47f78683fc09fa1955980782e01dbc22dab
7ff17dd13ed347fa450341ea7d640d298d50cdba
[Turbopack] avoid attaching referenced output assets to chunks (#75933) ### What? `referenced_output_assets` are different for every chunk group. Attaching them as references to a random chunk in the group causes a different Chunk instance which not only causes duplicate work, but also multiple writes to the same f...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -39,8 +39,8 @@ use serde::{Deserialize, Serialize};\n use tracing::Instrument;\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{\n- Completion, FxIndexSet, NonLocalValue, ResolvedVc, TryJoinIterExt, ValueToString, Vc,\n- fxindexset, trace::Tra...
2025-09-23T09:37:29
facebook/react
34dccefeb9302c1f4a39a7bde00eb8b1a6a36bdf
9647333b3d5a5d2a3ca7fe2a78d2d3da24bc4984
Convert some tests to use assertConsoleErrorDev or just avoid mocking (#30307) This is mainly so that I can rely on the helpers more for component stack testing.
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -1812,83 +1812,59 @@ describe('ReactDOMFizzServer', () => {\n );\n }\n \n- // We can't use the toErrorDev helper here because this is an async act.\n- const originalConsoleError = console.error;\n- const...
2024-07-10T20:23:55
electron/electron
e19754d7fd4a24d058031121b0ac73b3fcb6e6cd
c56e1dffb0adc6140b8b112678885cbccfc3d6f6
test: add tests for electron fuses (#42129) * spec: add tests for electron fuses * spec: fix tests for windows * spec: handle weird crash codes on win32 * spec: disable fuse tests on arm64 windows
[ { "path": "shell/common/asar/archive.cc", "patch": "@@ -116,7 +116,7 @@ bool FillFileInfoWithNode(Archive::FileInfo* info,\n info->executable = *executable;\n }\n \n-#if BUILDFLAG(IS_MAC)\n+#if BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)\n if (load_integrity &&\n electron::fuses::IsEmbeddedAsarInte...
2024-05-13T17:48:26
nodejs/node
c0ad1937d0004800f23b53308b5272208860dbbf
799d9204f2e5bb92df49e90d7d7bc745a6a7ae32
src: move more crypto impl detail to ncrypto dep * remove obsolete LogSecret function * move StackOfX509 decl to ncrypto * colocate GetSSLOCSPResponse with callsite * move x509 error code and reason to ncrypto * simplify X509Pointer/X509View pointer derefs a bit * move prime gen and checks to ncrypto * move BN_* metho...
[ { "path": "deps/ncrypto/ncrypto.cc", "patch": "@@ -311,6 +311,87 @@ BignumPointer BignumPointer::clone() {\n return BignumPointer(BN_dup(bn_.get()));\n }\n \n+int BignumPointer::isPrime(int nchecks,\n+ BignumPointer::PrimeCheckCallback innerCb) const {\n+ BignumCtxPointer ctx(BN...
2024-12-31T22:02:31
vercel/next.js
8f162b138d50ec460cd8ceb3b93f7783a55c99e2
df29b988c235d2dd82a0a470b51a262851165a3a
Fix: Client should auto reload after server restarts (#83971) Port the implementation from pages router to app router. https://github.com/vercel/next.js/blob/27515900b31bfad83c3ecc65ed2e5d020ec289a6/packages/next/src/client/dev/hot-reloader/pages/websocket.ts --------- Co-authored-by: devjiwonchoi <devjiwonchoi@gma...
[ { "path": "packages/next/src/client/dev/hot-reloader/app/web-socket.ts", "patch": "@@ -17,6 +17,12 @@ import {\n logQueue,\n } from '../../../../next-devtools/userspace/app/forward-logs'\n import { InvariantError } from '../../../../shared/lib/invariant-error'\n+import { WEB_SOCKET_MAX_RECONNECTIONS } fro...
2025-09-23T05:45:13
facebook/react
9647333b3d5a5d2a3ca7fe2a78d2d3da24bc4984
2d3f81bb6a650386832d885d7b63a7d0d517ba15
Add RN fork of consoleWithStackDev so we can improve the mainline one (#30305) We're removing this wrapper from the mainline but RN is still using component stacks to filter out warnings. This is unfortunate since it'll be hard to keep track of the interplay with these, DevTools and how you're supposed to impleme...
[ { "path": "packages/shared/forks/consoleWithStackDev.rn.js", "patch": "@@ -0,0 +1,59 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this source tree.\n+ */\n+\n+import React...
2024-07-10T17:37:56
golang/go
608e9fac9055aa188c513f4dd53f12e692bc3c0c
72e8237cc11569de2faf9885a1b83d06446533b5
go/types, types2: flip on position tracing Running compilebench with flags off / on, we get the below: │ old.txt │ new.txt │ │ sec/op │ sec/op vs base │ Template 149.2m ± 6% 155.5m ± 5% ...
[ { "path": "src/cmd/compile/internal/types2/check.go", "patch": "@@ -22,7 +22,7 @@ var nopos syntax.Pos\n const debug = false // leave on during development\n \n // position tracing for panics during type checking\n-const tracePos = false // TODO(markfreeman): check performance implications\n+const tracePos ...
2025-05-28T16:12:35
electron/electron
c56e1dffb0adc6140b8b112678885cbccfc3d6f6
653d0f009e5ec9a5e903b5179f335fbbd7b2e6ef
fix: partially revert invalidate focus ring (#42126)
[ { "path": "patches/chromium/.patches", "patch": "@@ -128,3 +128,4 @@ refactor_expose_file_system_access_blocklist.patch\n partially_revert_is_newly_created_to_allow_for_browser_initiated.patch\n fix_use_app_launch_prefetch_namespace_for_subprocesstype.patch\n feat_add_support_for_missing_dialog_features_to_...
2024-05-13T16:02:59
nodejs/node
ea493c18b262b082c310542533d369914b367111
5119049ca606fa2d0f6c64187ceab3150dcbe5c1
crypto: make generatePrime/checkPrime interruptible The `generatePrime` and `checkPrime` functions in the `crypto` module are only somewhat interruptible. This change makes it possible to interrupt these more reliably. Note that generating overly large primes can still take a long time and may not be interruptible as ...
[ { "path": "doc/api/crypto.md", "patch": "@@ -3940,6 +3940,13 @@ By default, the prime is encoded as a big-endian sequence of octets\n in an {ArrayBuffer}. If the `bigint` option is `true`, then a {bigint}\n is provided.\n \n+The `size` of the prime will have a direct impact on how long it takes to\n+generat...
2025-01-03T23:22:12
facebook/react
2d3f81bb6a650386832d885d7b63a7d0d517ba15
378b305958eb7259cacfce8ad0e66eec07e07074
Format DOM Nesting Warning as Diff View + An Additional Log for Stack Trace (#30302) Currently we're printing parent stacks at the end of DOM nesting even with owner stacks enabled. That's because the context of parent tree is relevant for determining why two things are nested. It might not be sufficient to see the...
[ { "path": "packages/react-dom-bindings/src/client/validateDOMNesting.js", "patch": "@@ -7,7 +7,54 @@\n * @flow\n */\n \n-import {getCurrentParentStackInDev} from 'react-reconciler/src/ReactCurrentFiber';\n+import type {Fiber} from 'react-reconciler/src/ReactInternalTypes';\n+import type {HydrationDiffNode...
2024-07-10T16:17:13
golang/go
72e8237cc11569de2faf9885a1b83d06446533b5
3406a617d9643902e932ca99c6f276fa7b19e030
cmd/compile: allow more args in StructMake folding rule imakeOfStructMake does the right thing, but we never call it when the StructMake has more than one argument. Fixes #74908 Change-Id: Ib4b1a025bfb1fa69a325207e47b74bd6217092bf Reviewed-on: https://go-review.googlesource.com/c/go/+/693615 Auto-Submit: Keith Randa...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -921,7 +921,7 @@\n @x.Block (Load <v.Type> (OffPtr <v.Type.PtrTo()> [t.FieldOff(int(i))] ptr) mem)\n \n // Putting struct{*byte} and similar into direct interfaces.\n-(IMake _typ (StructMake val)) => imakeOfStructMake(v)\n+(IMake _t...
2025-08-06T16:21:41
vercel/next.js
df29b988c235d2dd82a0a470b51a262851165a3a
51656e537ce529ae80d247f6b651eff3bd78649b
docs: Fix the title/path of the turbopack page on pages router (#84001) This option was renamed/stabilized from `experimental.turbo` to `turbopack` in 15.3. The app router page title/path was correct, but pages router had the wrong thing. Let me know if I should add a redirect for this somewhere?
[ { "path": "docs/02-pages/04-api-reference/04-config/01-next-config-js/turbopack.mdx", "patch": "@@ -1,5 +1,5 @@\n ---\n-title: turbo\n+title: turbopack\n description: Configure Next.js with Turbopack-specific options\n version: experimental\n source: app/api-reference/config/next-config-js/turbopack", "...
2025-09-23T04:47:08
nodejs/node
5119049ca606fa2d0f6c64187ceab3150dcbe5c1
8d9dac4877dacb48dfa72f58869e57e48f61fb2c
doc: fix faulty YAML metadata PR-URL: https://github.com/nodejs/node/pull/56508 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
[ { "path": "doc/api/cli.md", "patch": "@@ -192,8 +192,9 @@ Error: Access to this API has been restricted\n <!-- YAML\n added: v20.0.0\n changes:\n- - version: v23.5.0\n- - version: v22.13.0\n+ - version:\n+ - v23.5.0\n+ - v22.13.0\n pr-url: https://github.com/nodejs/node/pull/56201\n descrip...
2025-01-07T22:17:58
electron/electron
653d0f009e5ec9a5e903b5179f335fbbd7b2e6ef
10fd0ba655d619681e3e28182b891fda3b916209
chore: bump node to v20.13.1 (main) (#42088) * chore: bump node in DEPS to v20.13.0 * crypto: enable NODE_EXTRA_CA_CERTS with BoringSSL https://github.com/nodejs/node/pull/52217 * test: skip test for dynamically linked OpenSSL https://github.com/nodejs/node/pull/52542 * lib, url: add a `windows` option ...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '126.0.6445.0',\n 'node_version':\n- 'v20.12.2',\n+ 'v20.13.1',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2024-05-13T15:43:14
facebook/react
14fdd0e21c420deb4bb96fc1e9021b531543d15a
3b2e5f27c5b72708677da27779852b9aa83ef909
[Flight] Serialize rate limited objects in console logs as marker an increase limit (#30294) This marker can then be emitted as a getter. When this object gets accessed we use a special error to let the user know what is going on. <img width="1350" alt="Screenshot 2024-07-08 at 10 13 46 PM" src="https://github.co...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -1231,6 +1231,29 @@ function parseModelString(\n }\n // Fallthrough\n }\n+ case 'Y': {\n+ if (__DEV__) {\n+ // In DEV mode we encode omitted objects in logs as a getter that throws\n+ ...
2024-07-10T04:15:15
vercel/next.js
4edf40d7dbdda6fcdea2a0bbb61ec0cd39165642
36bff1060eef4f6d0a8a9ad408be66489a276cc4
Fix layout for `ssgPageRoutes` in the file tree (#84104) Fix layout for ssgPageRoutes in the file tree there was an extraneous column that messed with offsets accidentally left behind by #83815 Closes NEXT-4727
[ { "path": "packages/next/src/build/utils.ts", "patch": "@@ -383,7 +383,6 @@ export async function printTreeView(\n ? ` (avg ${getPrettyDuration(avgDuration)})`\n : ''\n }`,\n- '',\n showRevalidate && initialCacheControl\n ...
2025-09-22T23:47:48
golang/go
7ca34599ec4df8a21b7d4580f7e1c716c44f7e0f
82d056ddd7378ee23ab073c7a195d92cfc4a59d6
[dev.simd] simd, cmd/compile: generated files to add 'blend' and 'blendMasked' Generated by arch/internal/simdgen CL 693175 These methods are not public because of simdgen-induced name/signature issues, and because their addition was motivated by the need for emulation tools. The specific name signature problems are...
[ { "path": "src/cmd/compile/internal/amd64/simdssa.go", "patch": "@@ -589,7 +589,11 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPXORDMasked512,\n \t\tssa.OpAMD64VPXORQMasked128,\n \t\tssa.OpAMD64VPXORQMasked256,\n-\t\tssa.OpAMD64VPXORQMasked512:\n+\t\tssa.OpAMD64VPXORQMask...
2025-08-04T19:19:54
rust-lang/rust
87e4a3dad1321d26ce25f223e89fd6511ce52b71
d8ffd9181f8265ca01e292b4060b49ea9d4265d5
fix: detect E0804 when casting raw ptr-to-dyn adds auto traits the `check_ptr_ptr_cast` function had an early return when the source and destination dyn trait objects shared the same principal trait def id: if src_principal == dst_principal { return Ok(()); } this bypassed all three remaining checks ...
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/infer/cast.rs", "patch": "@@ -328,11 +328,7 @@ impl<'db> CastCheck<'db> {\n //\n // Note that trait upcasting goes through a different mechanism (`coerce_unsized`)\n // and is unaffected by this ...
2026-02-24T12:56:08
nodejs/node
8d9dac4877dacb48dfa72f58869e57e48f61fb2c
3b5f235cdbb0c6c33cea0aa8f5d41bd03032abac
src: fixup more ToLocalChecked uses in node_file PR-URL: https://github.com/nodejs/node/pull/56484 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
[ { "path": "src/node_file.cc", "patch": "@@ -1406,16 +1406,15 @@ static void ReadLink(const FunctionCallbackInfo<Value>& args) {\n const char* link_path = static_cast<const char*>(req_wrap_sync.req.ptr);\n \n Local<Value> error;\n- MaybeLocal<Value> rc = StringBytes::Encode(isolate,\n- ...
2025-01-05T21:48:35
electron/electron
88f28a302ff2ba6fd3698e1cb1cfb6497d178f32
8d4467bdc4bb7019b4e150d47a3fbf2599c5392c
docs: improve protocol.handle file examples (#42111) * docs: improve protocol.handle file examples * chore: fix lint
[ { "path": "docs/api/protocol.md", "patch": "@@ -9,10 +9,14 @@ An example of implementing a protocol that has the same effect as the\n \n ```js\n const { app, protocol, net } = require('electron')\n+const path = require('node:path')\n+const url = require('node:url')\n \n app.whenReady().then(() => {\n- prot...
2024-05-13T09:49:18
facebook/react
3b2e5f27c5b72708677da27779852b9aa83ef909
39e69dc665ef6f6dd1f9fe2f63348afb09694eab
[Fiber] Override the getCurrentStack temporarily while printing errors (#30300) Only for parent stacks. This ensures that we can use the regular mechanism for appending stack traces. E.g. you can polyfill it. This is mainly so that I can later remove the automatic appending.
[ { "path": "packages/react-reconciler/src/ReactFiberErrorLogger.js", "patch": "@@ -95,7 +95,19 @@ export function defaultOnCaughtError(\n errorBoundaryName || 'Anonymous'\n }.`;\n \n- if (enableOwnerStacks) {\n+ const prevGetCurrentStack = ReactSharedInternals.getCurrentStack;\n+ if (!...
2024-07-10T04:15:00
vercel/next.js
3c42dfb313e45d58bfc21ed3db6b173f078153fb
b853167072928d0d7bc281a278a518ff489b6223
Turbopack: Document automatic Babel config support (#84002) ~I'm looking for review/feedback, but **DO NOT MERGE UNTIL NEXT 16.0 IS RELEASED.** This is not supported on 15.5, and merging these docs now would be confusing to users. If you want to try it out, use a recent canary release.~ I've been informed that docs ar...
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/turbopack.mdx", "patch": "@@ -55,13 +55,13 @@ The following options are available for the `turbopack` configuration:\n \n The following loaders have been tested to work with Turbopack's webpack loader implementation, but many other webpack ...
2025-09-22T23:22:38
golang/go
e1fd4faf914b914856dfb0be1ad26cd4cef4a9ae
bcd25c79aa5675d3e5d28c09715b8147906da006
runtime: fix godoc comment for inVDSOPage Change-Id: I7dcab0c915a748e52c5c689c1cb774f486d2b9e6 Reviewed-on: https://go-review.googlesource.com/c/go/+/693195 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project...
[ { "path": "src/runtime/vdso_linux.go", "patch": "@@ -285,7 +285,7 @@ func vdsoauxv(tag, val uintptr) {\n \t}\n }\n \n-// vdsoMarker reports whether PC is on the VDSO page.\n+// inVDSOPage reports whether PC is on the VDSO page.\n //\n //go:nosplit\n func inVDSOPage(pc uintptr) bool {", "additions": 1, ...
2025-08-05T10:57:42
electron/electron
8d4467bdc4bb7019b4e150d47a3fbf2599c5392c
188196e78cd714c9fb2c75b4074c41ae2dcb2793
docs: fixing typo in dark mode fiddle and doc (#42112)
[ { "path": "docs/fiddles/features/dark-mode/index.html", "patch": "@@ -14,6 +14,5 @@ <h1>Hello World!</h1>\n <button id=\"reset-to-system\">Reset to System Theme</button>\n \n <script src=\"renderer.js\"></script>\n- </body>\n </body>\n </html>", "additions": 0, "deletions": 1, "language...
2024-05-13T08:50:55
facebook/react
b73dcdc04ffa2dd9f2197d796388657d64ad53be
8aafbcf115e67df899ddbb180ef025c7c260a3fe
[Fizz] Refactor Component Stack Nodes (#30298) Component stacks have a similar problem to the problem with keyPath where we had to move it down and set it late right before recursing. Currently we work around that by popping exactly one off when something suspends. That doesn't work with the new server stacks being...
[ { "path": "packages/react-devtools-shared/src/backend/DevToolsFiberComponentStack.js", "patch": "@@ -47,6 +47,7 @@ export function describeFiber(\n case HostComponent:\n return describeBuiltInComponentFrame(workInProgress.type);\n case LazyComponent:\n+ // TODO: When we support Thenables ...
2024-07-09T19:44:01
nodejs/node
a344300bfa146fce9d1f20a71b073263a4720eab
36c53c69c40273900df1af319711d56ec6a13eef
2025-01-07, Version 22.13.0 'Jod' (LTS) Notable changes: assert: * (SEMVER-MINOR) add partialDeepStrictEqual (Giovanni Bucci) https://github.com/nodejs/node/pull/54630 cli: * (SEMVER-MINOR) implement --trace-env and --trace-env-[js|native]-stack (Joyee Cheung) https://github.com/nodejs/node/pull/55604 crypto: *...
[ { "path": "CHANGELOG.md", "patch": "@@ -48,7 +48,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V23.md#23.0.0\">23.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.12.0\">22.12.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.13.0\">22.13.0...
2025-01-05T18:33:23
golang/go
bcd25c79aa5675d3e5d28c09715b8147906da006
b0945a54b5ec65f79ad722d62f8c3ed62ba0b9d9
cmd/compile: allow StructSelect [x] of interface data fields for x>0 As of CL 681937 we can now have structs which are pointer shaped, but their pointer field is not the first field, like struct{ struct{}; *int }. Fixes #74888 Change-Id: Idc80f6b1abde3ae01437e2a9cadb5aa23d04b806 Reviewed-on: https://go-review.google...
[ { "path": "src/cmd/compile/internal/ssa/_gen/dec.rules", "patch": "@@ -98,7 +98,7 @@\n // Some of these are copied from generic.rules\n \n (IMake _typ (StructMake val)) => (IMake _typ val)\n-(StructSelect [0] (IData x)) => (IData x)\n+(StructSelect (IData x)) => (IData x)\n \n (StructSelect [i] x:(StructMak...
2025-08-05T20:37:21
rust-lang/rust
4eaf448fae00fa7971dac07826987228c5ab1f34
d8ffd9181f8265ca01e292b4060b49ea9d4265d5
fix: Fix scrutinee expr indent for replace_if_let_with_match - Remove some redundant `.clone_for_update()` and `.indent(IndentLevel::single())` Example --- ```rust fn main() { if true { $0if true && false { foo() } } } ``` **Before this PR** ```rust fn main() ...
[ { "path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/replace_if_let_with_match.rs", "patch": "@@ -57,7 +57,7 @@ pub(crate) fn replace_if_let_with_match(acc: &mut Assists, ctx: &AssistContext<'\n let if_exprs = successors(Some(if_expr.clone()), |expr| match expr.else_branch()? {\n a...
2026-02-24T10:50:21
vercel/next.js
b853167072928d0d7bc281a278a518ff489b6223
34f1f5a0642902c5d15d1c5f8439a30bb10962bd
Turbopack: Merge babel-loader and react-compiler configuration logic to avoid running babel twice (#83502) Port the logic for configuring react-compiler from JS to Rust. This fixes two issues: - Babel could run twice if you had both react compiler enabled and a babel config file. - We can now emit a warning if we det...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -1314,9 +1314,7 @@ impl AppEndpoint {\n \n // polyfill-nomodule.js is a pre-compiled asset distributed as part of next,\n // load it as a RawModule.\n- let next_package = get_next_package(project.project_path().owned().await?)\n- ...
2025-09-22T22:33:55
electron/electron
188196e78cd714c9fb2c75b4074c41ae2dcb2793
c765d57265efa92c5b22bcdcedd08bc8be52a89a
ci: auto label bug issues with version label (#42044)
[ { "path": ".github/workflows/issue-opened.yml", "patch": "@@ -35,7 +35,7 @@ jobs:\n with:\n creds: ${{ secrets.ISSUE_TRIAGE_GH_APP_CREDS }}\n org: electron\n- - run: npm install mdast-util-from-markdown@2.0.0 unist-util-select@5.1.0\n+ - run: npm install mdast-util-from...
2024-05-13T08:49:23
facebook/react
c3cdbec0a78d39b5ff7329384cb41c4573a38212
491a4eacce69fec4144725beaac7141da269e8cf
[Flight] Add context for non null prototype error (#30293) We already added this for other thrown errors, not just console.errors. There's a production form of this. We just missed adding this context. Mainly the best context is the line number though which comes from owner stacks.
[ { "path": "packages/react-client/src/ReactFlightReplyClient.js", "patch": "@@ -692,7 +692,8 @@ export function processReply(\n if (temporaryReferences === undefined) {\n throw new Error(\n 'Only plain objects, and a few built-ins, can be passed to Server Actions. ' +\n- ...
2024-07-09T02:51:59
nodejs/node
7c3aa9fe8573df35fde3315b2d04b84af665f542
75b9c1cdd844c108d6c420093ad96289b16f95ec
src: lock the thread properly in snapshot builder Otherwise it can crash DCHECK when V8 expects that at least someone is locking the current thread. PR-URL: https://github.com/nodejs/node/pull/56327 Fixes: https://github.com/nodejs/node-v8/issues/294 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chengzh...
[ { "path": "src/node_snapshotable.cc", "patch": "@@ -962,6 +962,8 @@ ExitCode BuildSnapshotWithoutCodeCache(\n }\n \n Isolate* isolate = setup->isolate();\n+ v8::Locker locker(isolate);\n+\n {\n HandleScope scope(isolate);\n TryCatch bootstrapCatch(isolate);", "additions": 2, "deletion...
2025-01-07T16:49:10
golang/go
af0c4fe2ca51918bd82231ac48a28a0d0ef15c98
e73afaae69bb6f098e3c1dbd98cfe134843910a1
runtime: save scalar registers off stack in amd64 async preemption Asynchronous preemption must save all registers that could be in use by Go code. Currently, it saves all of these to the goroutine stack. As a result, the stack frame requirements of asynchronous preemption can be rather high. On amd64, this requires 3...
[ { "path": "src/runtime/export_test.go", "patch": "@@ -554,6 +554,8 @@ type G = g\n \n type Sudog = sudog\n \n+type XRegPerG = xRegPerG\n+\n func Getg() *G {\n \treturn getg()\n }", "additions": 2, "deletions": 0, "language": "Go" }, { "path": "src/runtime/lockrank.go", "patch": "@@ -...
2025-04-30T02:55:40
vercel/next.js
704c15311a3c2ceae546ac7f35853f2cd30c0d08
a12283e511f2cc7f79381a2b4b622027a8ad7d34
babel-loader: Fix a few issues with config caching (#83973) - `isReactCompilerRequired` needs to be called in `getCacheCharacteristics`, not in `getFreshConfig` because it depends on the file contents, so we don't want to cache the result of `isReactCompilerRequired`. - Moving react compiler detection outside of the c...
[ { "path": "packages/next/src/build/babel/loader/get-config.ts", "patch": "@@ -59,27 +59,26 @@ interface CharacteristicsGermaneToCaching {\n isPageFile: boolean | undefined\n isNextDist: boolean\n hasModuleExports: boolean\n- fileNameOrExt: string\n+ hasReactCompiler: boolean\n+ fileExt: string\n ...
2025-09-22T21:53:12
electron/electron
c765d57265efa92c5b22bcdcedd08bc8be52a89a
3ea3b0e8e1bf8283a9b270431e1d79a46acf72b3
fix: BrowserView autoresizing conversion error (#42056)
[ { "path": "lib/browser/api/browser-view.ts", "patch": "@@ -34,13 +34,17 @@ export default class BrowserView {\n }\n \n setAutoResize (options: AutoResizeOptions) {\n- if (options == null || typeof options !== 'object') { throw new Error('Invalid auto resize options'); }\n+ if (options == null || t...
2024-05-13T08:27:01
facebook/react
491a4eacce69fec4144725beaac7141da269e8cf
274c980c535bb34e17f5d97cc22ef4dd296ab413
[DevTools] Print component stacks as error objects to get source mapping (#30289) Before: <img width="844" alt="Screenshot 2024-07-04 at 3 20 34 PM" src="https://github.com/facebook/react/assets/63648/0fd8a53f-538a-4429-a4cf-c22f85a09aa8"> After: <img width="845" alt="Screenshot 2024-07-05 at 6 08 28 PM" sr...
[ { "path": ".eslintrc.js", "patch": "@@ -490,6 +490,7 @@ module.exports = {\n 'packages/react-devtools-extensions/**/*.js',\n 'packages/react-devtools-shared/src/hook.js',\n 'packages/react-devtools-shared/src/backend/console.js',\n+ 'packages/react-devtools-shared/src/backend/...
2024-07-08T22:42:58