repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
nodejs/node
2ef33af16ebc5da9bd1b7261ee88add0ae9a835a
5c8d0ebf305bc4bc5a5adc293977389df4d5b222
esm: fix support for `URL` instances in `import.meta.resolve` PR-URL: https://github.com/nodejs/node/pull/54690 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: James M...
[ { "path": "lib/internal/modules/esm/loader.js", "patch": "@@ -512,6 +512,7 @@ class ModuleLoader {\n * @returns {{ format: string, url: URL['href'] }}\n */\n resolve(originalSpecifier, parentURL, importAttributes) {\n+ originalSpecifier = `${originalSpecifier}`;\n if (this.#customizations) {\...
2024-09-09T23:00:33
vercel/next.js
2ba4a8548ca0c02f69120265b18f666bf79a6295
d016157ce646565a6ca806afa260e1ceb89b063e
global-error, revalidatePath and PWA headings (#82408) Complement to: https://github.com/vercel/next.js/issues/82379 Also adding corrections to other sections
[ { "path": "docs/01-app/01-getting-started/14-metadata-and-og-images.mdx", "patch": "@@ -23,6 +23,8 @@ The Metadata APIs can be used to define your application metadata for improved S\n \n With all the options above, Next.js will automatically generate the relevant `<head>` tags for your page, which can be i...
2025-08-07T08:10:21
facebook/react
93f91795a0c71bae4aadd7f082b91de0068a0f91
95e6f032cf59f27b41e150e8a7746ee689acf634
[Flight] Update stale blocked values in `createModelResolver` (#28669) Alternative to #28620. Instead of emitting lazy references to not-yet-emitted models in the Flight Server, this fixes the observed issue in https://github.com/unstubbable/ai-rsc-test/pull/1 by adjusting the lazy model resolution in the Flight...
[ { "path": "packages/react-client/src/ReactFlightClient.js", "patch": "@@ -584,6 +584,13 @@ function createModelResolver<T>(\n }\n return value => {\n parentObject[key] = value;\n+\n+ // If this is the root object for a model reference, where `blocked.value`\n+ // is a stale `null`, the resolve...
2024-04-01T16:37:27
golang/go
ce46c9db867fb54a9c1f39b73ac8c2f339ca0587
d327e52d438854acae275cdf9d2c1fe42f037eb8
internal/godebug,crypto/fips140: make fips140 setting immutable Updates #70123 Co-authored-by: qmuntal <quimmuntal@gmail.com> Change-Id: I6a6a4656fd23ecd82428cccbd7c48692287fc75a Reviewed-on: https://go-review.googlesource.com/c/go/+/657116 Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> Reviewed-by: Roland S...
[ { "path": "src/crypto/fips140/fips140.go", "patch": "@@ -7,11 +7,8 @@ package fips140\n import (\n \t\"crypto/internal/fips140\"\n \t\"crypto/internal/fips140/check\"\n-\t\"internal/godebug\"\n )\n \n-var fips140GODEBUG = godebug.New(\"fips140\")\n-\n // Enabled reports whether the cryptography libraries ar...
2025-03-12T17:02:39
nodejs/node
c3a7b29e56a5ada6327ebb622ba746d022685742
2ef4b15604082abfd7aa26a4619a46802258ff3c
tls: add `allowPartialTrustChain` flag This commit exposes the `X509_V_FLAG_PARTIAL_CHAIN` OpenSSL flag to users. This is behavior that has been requested repeatedly in the Github issues, and allows aligning behavior with other TLS libraries and commonly used applications (e.g. `curl`). As a drive-by, simplify the `S...
[ { "path": "doc/api/tls.md", "patch": "@@ -1856,6 +1856,9 @@ argument.\n <!-- YAML\n added: v0.11.13\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/54790\n+ description: The `allowPartialTrustChain` option has been added.\n - version:\n - v22.4.0\n - v20.16...
2024-09-05T14:31:24
facebook/react
df95577db0d1d7ca383f281bc1d9e6ba5579bef2
9f835e69ab1c87192b5da4421519b69785c12f69
Finish cleaning up digest from onRecoverableError (#28686) Don't need to track it separately on the captured value anymore. Shouldn't be in the types. I used a getter for the warning instead because Proxies are kind of heavy weight options for this kind of warning. We typically use getters.
[ { "path": "packages/react-dom/src/client/ReactDOMRoot.js", "patch": "@@ -45,7 +45,7 @@ export type CreateRootOptions = {\n ) => void,\n onRecoverableError?: (\n error: mixed,\n- errorInfo: {+digest?: ?string, +componentStack?: ?string},\n+ errorInfo: {+componentStack?: ?string},\n ) => void,...
2024-03-30T22:32:20
golang/go
d6c29c71562df407cc18846efd2e9d8fe0b28960
a21b71daf57a54a12c2aedff0fba0860fa977590
cmd/compile: fix offset calculation error in memcombine Fixes #73812 Change-Id: If7a6e103ae9e1442a2cf4a3c6b1270b6a1887196 Reviewed-on: https://go-review.googlesource.com/c/go/+/675175 Reviewed-by: Keith Randall <khr@google.com> Auto-Submit: Junyang Shao <shaojunyang@google.com> Reviewed-by: Keith Randall <khr@golang....
[ { "path": "src/cmd/compile/internal/ssa/memcombine.go", "patch": "@@ -581,7 +581,7 @@ func combineStores(root *Value) {\n \t\t\tmask := int64(1)<<(8*a[i].size) - 1\n \t\t\ts := 8 * (a[i].offset - a[0].offset)\n \t\t\tif root.Block.Func.Config.BigEndian {\n-\t\t\t\ts = aTotalSize*8 - a[i].size - s\n+\t\t\t\t...
2025-05-21T18:50:39
vercel/next.js
f63290fef95f4174044b515fafdb05956feb6022
6cae6d86b8dc8e53f81e7d1100a16766eecde9b1
[Segment Cache]: fix infinite prefetching when staleTime is 0 (#82388) This PR fixes an infinite loop bug that occurred when using `cacheLife({ stale: 0 })` with `clientSegmentCache`. When the server returned a stale time of 0 seconds, cache entries would have `staleAt = Date.now()`, making them immediately stale. The...
[ { "path": "packages/next/src/client/components/segment-cache-impl/cache.ts", "patch": "@@ -244,6 +244,14 @@ const isOutputExportMode =\n process.env.NODE_ENV === 'production' &&\n process.env.__NEXT_CONFIG_OUTPUT === 'export'\n \n+/**\n+ * Ensures a minimum stale time of 30s to avoid issues where the se...
2025-08-06T23:11:55
nodejs/node
79a33a7433b55de4f5e749524b9a22f7b72b5f4e
9404d3aaaf0a8264ee08ba169ec24685bf8d487d
build,win: enable clang-cl compilation This uses the backported ICU fix needed for compiling with ClangCL. Refs: https://github.com/nodejs/node/pull/54502 Fixes: https://github.com/nodejs/node/issues/34201 PR-URL: https://github.com/nodejs/node/pull/54655 Refs: https://github.com/nodejs/node/issues/52809 Reviewed-By:...
[ { "path": "tools/icu/icu-generic.gyp", "patch": "@@ -139,20 +139,43 @@\n # full data - just build the full data file, then we are done.\n 'sources': [ '<(SHARED_INTERMEDIATE_DIR)/icudt<(icu_ver_major)<(icu_endianness)_dat.<(icu_asm_ext)' ],\n 'dependencies': [ 'genc...
2024-09-09T10:26:00
electron/electron
73e33bc8762114c4a365d81b70147a8f9f18d20c
c8544e25dffd7a7ca6133e00518afa72fc976c63
chore: bump chromium to 119.0.6006.0 (main) (#39774) * chore: bump chromium in DEPS to 119.0.5994.0 * chore: update patches * Add some more debugging for navigation origin & process lock mismatch https://chromium-review.googlesource.com/c/chromium/src/+/4829483 * chore: bump chromium in DEPS to 119.0.5996....
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '118.0.5993.0',\n+ '119.0.6006.0',\n 'node_version':\n 'v18.17.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "packag...
2023-09-18T20:44:09
golang/go
c5a1fc1f97b4b6b384a9852d96a77868e0f5e6a9
a731955f0f48b9d1e74ea3aa65f8485388a2849e
crypto/tls: add GetEncryptedClientHelloKeys This allows servers to rotate their ECH keys without needing to restart the server. Fixes #71920 Change-Id: I55591ab3303d5fde639038541c50edcf1fafc9aa Reviewed-on: https://go-review.googlesource.com/c/go/+/670655 TryBot-Bypass: Roland Shoemaker <roland@golang.org> Reviewed-...
[ { "path": "api/next/71920.txt", "patch": "@@ -0,0 +1 @@\n+pkg crypto/tls, type Config struct, GetEncryptedClientHelloKeys func(*ClientHelloInfo) ([]EncryptedClientHelloKey, error) #71920", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/c...
2025-05-07T18:37:52
facebook/react
b9149cc6e6442389accf1f7c34a77ba2e6e52b5e
5d4b7587da52dd81bc5c366b909c4511e2970cd1
Include regular stack trace in serialized errors from Fizz (#28684) We previously only included the component stack. Cleaned up the fields in Fizz server that wasn't using consistent hidden classes in dev vs prod. Added a prefix to errors serialized from server rendering. It can be a bit confusing to see w...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -1226,22 +1226,29 @@ export function isSuspenseInstanceFallback(\n \n export function getSuspenseInstanceFallbackErrorDetails(\n instance: SuspenseInstance,\n-): {digest: ?string, message?: string, stack?: string} {\n+...
2024-03-30T15:08:54
vercel/next.js
6cae6d86b8dc8e53f81e7d1100a16766eecde9b1
0a42be97b0b8c5f8ba3fd597c379fbdc2e15b529
docs: polyfills usage in app router (#80447) Closes: https://linear.app/vercel/issue/DOC-4752/docs-polyfills-in-app-router Fixes: https://github.com/vercel/next.js/issues/74730
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/instrumentation-client.mdx", "patch": "@@ -3,7 +3,7 @@ title: instrumentation-client.js\n description: Learn how to add client-side instrumentation to track and monitor your Next.js application's frontend performance.\n ---\n \n-The `instrumentatio...
2025-08-06T21:09:51
electron/electron
c8544e25dffd7a7ca6133e00518afa72fc976c63
9c7086074eb0e883e8af5a7b1ba8b59f3b3de1f9
build: fixup autoninja (#39896) chore: set GOMA_DIR for autoninja (cherry picked from commit 94f24bde4dd19764fbbae083f5970b007c9dc8b2) (cherry picked from commit 90c1f6e1cb8d22d94dd01791dc4b9c3e0a7e86fc)
[ { "path": ".circleci/config/base.yml", "patch": "@@ -354,7 +354,7 @@ step-setup-goma-for-build: &step-setup-goma-for-build\n exit 1\n fi\n echo 'export GN_GOMA_FILE='`node -e \"console.log(require('./src/utils/goma.js').gnFilePath)\"` >> $BASH_ENV\n- echo 'export LOCAL_GOMA_DIR='`no...
2023-09-18T20:43:27
nodejs/node
e1e312d7f0c45f5e280c0b34ecf7e506bdcaba28
533853337381cd73104c04c2f404e8960061dc21
test: fix Windows async-context-frame memory failure PR-URL: https://github.com/nodejs/node/pull/54823 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
[ { "path": "test/parallel/test-async-context-frame.mjs", "patch": "@@ -42,7 +42,8 @@ const tests = testSets.reduce((m, v) => {\n }, []);\n \n describe('AsyncContextFrame', {\n- concurrency: tests.length\n+ // TODO(qard): I think high concurrency causes memory problems on Windows\n+ // concurrency: tests.l...
2024-09-08T14:21:18
vercel/next.js
5c9d8551c6189e2c1e09ae74bb29f8262150c739
0a890da22cb368ea0edcd3897d163fa9e6c6884a
fix(turbopack): external module shouldn't wrap by esm when type as global (#82374) When use externalType: `global` or `script` under utoopack(turbopack only use esm or cjs external): like externalType is global , and the external package is react. The generate external module code like: ```ts 263: ((__turbopack_cont...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/references/external_module.rs", "patch": "@@ -28,8 +28,8 @@ use crate::{\n },\n references::async_module::{AsyncModule, OptionAsyncModule},\n runtime_functions::{\n- TURBOPACK_EXPORT_NAMESPACE, TURBOPACK_EXTERNAL_IMPORT, TURBOPACK_EXTER...
2025-08-06T18:28:28
facebook/react
5d4b7587da52dd81bc5c366b909c4511e2970cd1
2aed507a76a0b1524426c398897cbe47d80c51e5
Don't let error boundaries catch errors during hydration (#28675) When an error boundary catches an error during hydration it'll try to render the error state which will then try to hydrate that state, causing hydration warnings. When an error happens inside a Suspense boundary during hydration, we instead let t...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzShellHydration-test.js", "patch": "@@ -314,4 +314,229 @@ describe('ReactDOMFizzShellHydration', () => {\n 'RangeError: Maximum call stack size exceeded',\n );\n });\n+\n+ it('client renders when an error is thrown in an error boundary', as...
2024-03-29T20:43:22
rust-lang/rust
3fdb366140b46097434b608707fc93e0b3e26439
d29c931c9dc4bd4cca3695d54c7b46153ac99e2b
Fix clippy warning
[ { "path": "src/declare.rs", "patch": "@@ -151,7 +151,6 @@ impl<'gcc, 'tcx> CodegenCx<'gcc, 'tcx> {\n ///\n /// If there’s a value with the same name already declared, the function will\n /// update the declaration and return existing Value instead.\n-#[expect(clippy::let_and_return)]\n fn declare_raw_fn<'gc...
2026-02-14T12:47:54
golang/go
77345f41ee36c8db3ba7e0f687a8834fa7b83c48
ed24bb4e6047890af272733c5a8bdcc43834e517
internal/trace: skip clock snapshot checks on Windows in stress mode Windows' monotonic and wall clock granularity is just too coarse to get reasonable values out of stress mode, which is creating new trace generations constantly. Fixes #73813. Change-Id: Id9cb2fed9775ce8d78a736d0164daa7bf45075e0 Reviewed-on: https:...
[ { "path": "src/internal/trace/reader_test.go", "patch": "@@ -42,7 +42,9 @@ func TestReaderGolden(t *testing.T) {\n \t\t\tif err != nil {\n \t\t\t\tt.Fatalf(\"failed to parse test file at %s: %v\", testPath, err)\n \t\t\t}\n-\t\t\ttestReader(t, tr, ver, exp)\n+\t\t\tv := testtrace.NewValidator()\n+\t\t\tv.Go...
2025-05-21T17:50:15
nodejs/node
67357ba8ff3d71f837a100aacd76e5ed3b15592b
3d410f863508107c9e1d61cb06db13b7d6f1789d
doc: add `ERR_INVALID_ADDRESS` to `errors.md` PR-URL: https://github.com/nodejs/node/pull/54661 Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "doc/api/errors.md", "patch": "@@ -1855,6 +1855,12 @@ the worker thread.\n There was a bug in Node.js or incorrect usage of Node.js internals.\n To fix the error, open an issue at <https://github.com/nodejs/node/issues>.\n \n+<a id=\"ERR_INVALID_ADDRESS\"></a>\n+\n+### `ERR_INVALID_ADDRESS`\n+\n+T...
2024-09-07T23:16:40
electron/electron
9c7086074eb0e883e8af5a7b1ba8b59f3b3de1f9
d7e4bb660848dc68856dd62d33d5257d147f9b26
docs: add missing `ipcRenderer.off()` / `ipcRenderer.addListener()` aliases (#39816) * docs: add missing `ipcRenderer.off()` / `ipcRenderer.addListener()` aliases * Update docs/api/ipc-renderer.md Co-authored-by: David Sanders <dsanders11@ucsbalum.com> * fix ipcRenderer.removeListener * update ts-smoke ...
[ { "path": "docs/api/ipc-renderer.md", "patch": "@@ -32,6 +32,15 @@ The `ipcRenderer` module has the following method to listen for events and send\n Listens to `channel`, when a new message arrives `listener` would be called with\n `listener(event, args...)`.\n \n+### `ipcRenderer.off(channel, listener)`\n+...
2023-09-18T16:58:20
vercel/next.js
2dc45422a1c61952a9d8503341cd88d68d674d77
95d7db7d203936d8301b6207f4507ec5385808b0
add unstable_isUnrecognizedActionError (#78933) `unstable_isUnrecognizedActionError` is a new API that lets user code check if a server action call failed because the action id wasn't recognized by the server. This usually happens as a result of version skew between client and server. Example usage: ```ts try { ...
[ { "path": "crates/next-custom-transforms/src/transforms/react_server_components.rs", "patch": "@@ -624,6 +624,7 @@ impl ReactServerComponentValidator {\n \"useRouter\",\n \"useServerInsertedHTML\",\n \"ServerInsertedHTMLContext\",\n+ ...
2025-08-06T16:41:30
rust-lang/rust
2737b26c2e5eee9229663552d0c70e2affbb8511
0f4f81df13a18212e1b3b578ccfc8d055ad120be
Fix the compile-test tests when setting Cargo's `build.build-dir` setting to a path that's distinct from `target-dir`.
[ { "path": "tests/compile-test.rs", "patch": "@@ -197,10 +197,6 @@ impl TestContext {\n defaults.set_custom(\"diagnostic-collector\", collector);\n }\n config.with_args(&self.args);\n- let current_exe_path = env::current_exe().unwrap();\n- let deps_path = current_exe...
2026-02-14T12:01:38
facebook/react
13f35433bca9fc08fc7c4ab001f39c982cbde051
6cd6ba703de77e332ab201518b6e30e47cd49aaf
Mock modules in tests using `Module` (#28678) ## Summary Fixes a type validation error introduced in newer versions of Node.js when calling `Module.prototype._compile` in our unit tests. (I tried but have yet to pinpoint the precise change in Node.js that introduced this vaildation.) The specific error that c...
[ { "path": "packages/react-server-dom-turbopack/src/__tests__/utils/TurbopackMock.js", "patch": "@@ -55,7 +55,7 @@ exports.clientModuleError = function clientModuleError(moduleError) {\n chunks: [],\n name: '*',\n };\n- const mod = {exports: {}};\n+ const mod = new Module();\n nodeCompile.call(...
2024-03-29T20:19:54
golang/go
ed24bb4e6047890af272733c5a8bdcc43834e517
e89791983a1330e467c8ba2cca9d7a581a5789cc
cmd/compile/internal/escape: propagate constants to interface conversions to avoid allocs Currently, the integer value in the following interface conversion gets heap allocated: v := 1000 fmt.Println(v) In contrast, this conversion does not currently cause the integer value to be heap allocated: fmt.Printl...
[ { "path": "src/cmd/compile/internal/escape/escape.go", "patch": "@@ -531,8 +531,11 @@ func (b *batch) rewriteWithLiterals(n ir.Node, fn *ir.Func) {\n \tif n == nil || fn == nil {\n \t\treturn\n \t}\n-\tif n.Op() != ir.OMAKESLICE {\n-\t\t// TODO(thepudds): we handle more cases later in our CL stack.\n+\tif n...
2025-02-12T23:55:04
nodejs/node
eab9729d166311d0e3da512bfb3da0f8ae245160
46c6f8ce26ce1223b0e8e1442d7193529932481d
src: fix unhandled error in structuredClone Signed-off-by: Daeyeon Jeong <daeyeon.dev@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54764 Fixes: https://github.com/nodejs/node/issues/54602 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/node_messaging.cc", "patch": "@@ -567,7 +567,9 @@ Maybe<bool> Message::Serialize(Environment* env,\n if (host_object &&\n host_object->GetTransferMode() == TransferMode::kTransferable) {\n delegate.AddHostObject(host_object);\n- continue;\n+ } else {\n+ ThrowDat...
2024-09-07T23:05:00
electron/electron
706653d5e4d06922f75aa5621533a16fc34d3a77
65952abc995b86783922094ace75323dcaf36892
ci: fix issue-commented workflow sytnax (#39875)
[ { "path": ".github/workflows/issue-commented.yml", "patch": "@@ -10,7 +10,7 @@ permissions: {}\n jobs:\n issue-commented:\n name: Remove blocked/need-repro on comment\n- if: ${{ contains(github.event.issue.labels.*.name, 'blocked/need-repro') && !contains(fromJSON('[\"MEMBER\", \"OWNER\"]'), github...
2023-09-18T02:23:59
vercel/next.js
95d7db7d203936d8301b6207f4507ec5385808b0
5ae7baa0e8dea2528c7b6e07d774ec729c5aa8cb
update rspack-dev-tests-manifest for failing tests (#82414) Rspack `testing for test/development/tsconfig-path-reloading` is failing often these days. Noticed `test/development/jsconfig-path-reloading` is already in the manifest of the "failed" section. - [Failed CI](https://github.com/vercel/next.js/actions/runs/166...
[ { "path": "test/rspack-dev-tests-manifest.json", "patch": "@@ -4289,14 +4289,14 @@\n },\n \"test/development/tsconfig-path-reloading/index.test.ts\": {\n \"passed\": [\n- \"tsconfig-path-reloading tsconfig added after starting dev should automatically fast refresh content when path is added wit...
2025-08-06T16:34:34
rust-lang/rust
87166b545e435a1bffac968a023260d3795e532c
873e96b6752a323f149495abc2479d3d70df611a
libm: Reenable should_panic tests on ppc64le The tests pass successfully for me on powerpc64le-unknown-linux-gnu with nightly 1.95.
[ { "path": "library/compiler-builtins/libm/src/math/support/big/tests.rs", "patch": "@@ -261,8 +261,6 @@ fn shr_u256() {\n #[test]\n #[should_panic]\n #[cfg(debug_assertions)]\n-// FIXME(ppc): ppc64le seems to have issues with `should_panic` tests.\n-#[cfg(not(all(target_arch = \"powerpc64\", target_endian =...
2026-02-14T03:59:28
golang/go
3ae95aafb5d656596212c672c6e104e5c8802dbc
ce49eb488af1c5273b226b3b52a8cbd7eae63a51
log/slog: add GroupAttrs GroupAttrs is a more efficient version of Group that takes a slice of Attr values. Fixes #66365 Change-Id: Ic3046704825e17098f2fea5751f2959dce1073e2 Reviewed-on: https://go-review.googlesource.com/c/go/+/672915 Reviewed-by: Jonathan Amsterdam <jba@google.com> LUCI-TryBot-Result: Go LUCI <gol...
[ { "path": "api/next/66365.txt", "patch": "@@ -0,0 +1 @@\n+pkg log/slog, func GroupAttrs(string, ...Attr) Attr #66365", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/log/slog/66365.md", "patch": "@@ -0,0 +1 @@\n+[GroupAttrs] creates ...
2025-05-14T20:26:57
facebook/react
f2690747239533fa266612d2d4dd9ae88ea92fbc
cc56bed38cbe5a5c76dfdc4e9c642fab4884a3fc
Revert "Remove module pattern function component support" (#28670) This breaks internal tests, so must be something in the refactor. Since it's the top commit let's revert and split into two PRs, one that removes the flag and one that does the refactor, so we can find the bug.
[ { "path": "packages/react-devtools-shared/src/backend/renderer.js", "patch": "@@ -225,7 +225,7 @@ export function getInternalReactConstants(version: string): {\n HostSingleton: 27, // Same as above\n HostText: 6,\n IncompleteClassComponent: 17,\n- IndeterminateComponent: 2, // removed...
2024-03-29T14:10:11
nodejs/node
38974a2eb3609cac6417d15ada264f87a0ffc940
8882a21b04ceba1030e961aedf009e2d2abec6b4
test: fix volatile for CauseSegfault with clang PR-URL: https://github.com/nodejs/node/pull/54325 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "src/node_process_methods.cc", "patch": "@@ -73,7 +73,7 @@ static void Abort(const FunctionCallbackInfo<Value>& args) {\n // For internal testing only, not exposed to userland.\n static void CauseSegfault(const FunctionCallbackInfo<Value>& args) {\n // This should crash hard all platforms.\n- v...
2024-09-07T22:29:24
electron/electron
65952abc995b86783922094ace75323dcaf36892
50ce02c312ac78d170d3e94dda0282fc64080862
test: fixup node flakes (#39871) chore: fixup node flakes
[ { "path": "patches/node/chore_update_fixtures_errors_force_colors_snapshot.patch", "patch": "@@ -11,7 +11,7 @@ trying to see whether or not the lines are greyed out. One possibility\n would be to upstream a changed test that doesn't hardcode line numbers.\n \n diff --git a/test/fixtures/errors/force_colors....
2023-09-15T10:43:13
vercel/next.js
373f3e1de16b01150698df6ab6a24e3a1c81b850
ea08bf273ce03ac2ba8c6b021f35c27a8facdac1
fix: implications of global-not-found skipping 'normal' rendering (#82399) Fixes: https://github.com/vercel/next.js/issues/82379 Also fixing the Metadata snippets at the bottom of the page
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/not-found.mdx", "patch": "@@ -44,7 +44,11 @@ export default function NotFound() {\n \n The `global-not-found.js` file lets you define a 404 page for your entire application. Unlike `not-found.js`, which works at the route level, this is used when a...
2025-08-06T11:13:29
rust-lang/rust
ed091aaf5dcaba246cb6193872145f42ed080a3a
fa3b046aa5aed92eb7501c8c3ded322c247539ab
Move `rustc_query_system::query::dep_graph` to `rustc_middle`. Most of the files within the `dep_graph` module can be moved wholesale into `rustc_middle`. But two of them (`mod.rs` and `dep_node.rs`) have the same name as existing files in `rustc_middle`, so for those I just copied the contents into the existing files...
[ { "path": "Cargo.lock", "patch": "@@ -4093,7 +4093,6 @@ dependencies = [\n \"rustc_passes\",\n \"rustc_privacy\",\n \"rustc_query_impl\",\n- \"rustc_query_system\",\n \"rustc_resolve\",\n \"rustc_session\",\n \"rustc_span\",\n@@ -4519,13 +4518,11 @@ dependencies = [\n \"rustc_errors\",\n \"rustc_fea...
2026-02-11T06:02:27
facebook/react
299a9c0598576f7dba170771b1c0b821281b1e15
e10a7b5cd541882a78ff659147c1a0294413ccb0
[Fiber] Remove the digest property from errorInfo passed to onRecoverableError (#28222) Removes the digest property from errorInfo passed to onRecoverableError when handling an error propagated from the server. Previously we warned in Dev but still provided the digest on the errorInfo object. This change removes di...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -3563,11 +3563,11 @@ describe('ReactDOMFizzServer', () => {\n onRecoverableError(error, errorInfo) {\n expect(() => {\n expect(error.digest).toBe('a digest');\n- expect(errorInfo.di...
2024-03-28T15:01:35
golang/go
304d9e2fd1b62d236eb48ec838be3680cb7845e6
d3d22cc5e4be996345e47d6994c5f3d5f51811fa
bufio: update buffer documentation Fixes #73778 Change-Id: If6d87a92786c9b0ee2bd790b57937919afe0fc5c GitHub-Last-Rev: 4b4c7595d5779a127b01a5d71adca91cb5aa6c05 GitHub-Pull-Request: golang/go#73804 Reviewed-on: https://go-review.googlesource.com/c/go/+/674695 Auto-Submit: Alan Donovan <adonovan@google.com> LUCI-TryBot-...
[ { "path": "src/bufio/scan.go", "patch": "@@ -260,8 +260,11 @@ func (s *Scanner) setErr(err error) {\n \t}\n }\n \n-// Buffer sets the initial buffer to use when scanning\n+// Buffer controls memory allocation by the Scanner.\n+// It sets the initial buffer to use when scanning\n // and the maximum size of b...
2025-05-21T14:48:21
nodejs/node
17b49bd7d370b9973eeebe7ef87c6242c6ce42d4
6c85d40593735a1dd4186a27425a091ed0788b9c
sqlite: fix segfault in expandedSQL The call to sqlite3_expanded_sql() may return NULL depending on various factors. Handle this case instead of running into a segmentation fault. PR-URL: https://github.com/nodejs/node/pull/54687 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonma...
[ { "path": "src/node_sqlite.cc", "patch": "@@ -52,18 +52,23 @@ using v8::Value;\n } \\\n } while (0)\n \n-inline Local<Value> CreateSQLiteError(Isolate* isolate, sqlite3* db) {\n- int errcode = sqlite3_extended_errcode(db);\n- c...
2024-09-07T09:20:45
electron/electron
50ce02c312ac78d170d3e94dda0282fc64080862
fb6b92076e4a0a75e3b2ea67f9ef3b7a4cba2399
fix: check PipeWire init before creating generic capturer (#39846) Check if PipeWire can be initialized before creating generic capturer. This harmonizes the conditions with the ones used in Linux implementations of DesktopCapturer::CreateRawScreenCapturer and DesktopCapturer::CreateRawWindowCapturer.
[ { "path": "patches/webrtc/.patches", "patch": "@@ -1,2 +1,3 @@\n fix_fallback_to_x11_capturer_on_wayland.patch\n fix_mark_pipewire_capturer_as_failed_after_session_is_closed.patch\n+fix_check_pipewire_init_before_creating_generic_capturer.patch", "additions": 1, "deletions": 0, "language": "Unkn...
2023-09-14T19:50:20
vercel/next.js
fc70d77d571ad7fd7ade56ddbf5dd640585563bb
4b613a569eb5dd0eef616a151fc34e418e470934
fix: add `?dpl` to fonts in `/_next/static/media` (#82384) Fonts were not protected from version skew so this PR fixes it https://nextjs.org/docs/14/app/building-your-application/deploying#version-skew
[ { "path": "packages/next/src/pages/_document.tsx", "patch": "@@ -363,7 +363,8 @@ function getAmpPath(ampPath: string, asPath: string): string {\n function getNextFontLinkTags(\n nextFontManifest: DeepReadonly<NextFontManifest> | undefined,\n dangerousAsPath: string,\n- assetPrefix: string = ''\n+ asse...
2025-08-05T23:45:15
rust-lang/rust
924dbc46d9afea739aa51769f426c52a4f267e58
940f30792c614ee18c551c7321470c8f60ae6422
Move `CycleErrorHandling`. From `rustc_query_system` to `rustc_middle`.
[ { "path": "compiler/rustc_middle/src/query/mod.rs", "patch": "@@ -7,8 +7,8 @@ pub use self::caches::{\n pub use self::job::{QueryInfo, QueryJob, QueryJobId, QueryLatch, QueryWaiter};\n pub use self::keys::{AsLocalKey, Key, LocalCrate};\n pub use self::plumbing::{\n- ActiveKeyStatus, CycleError, IntoQuery...
2026-02-11T03:57:33
golang/go
d3d22cc5e4be996345e47d6994c5f3d5f51811fa
419367969c88e6e97f8648669969a01b60bdd350
lib/fips140: set inprocess.txt to v1.0.0 Fixes #70200 Change-Id: I6a6a46567ce0834fb4b7f28bf06646326f8e5105 Reviewed-on: https://go-review.googlesource.com/c/go/+/674916 Reviewed-by: Daniel McCarney <daniel@binaryparadox.net> Auto-Submit: Filippo Valsorda <filippo@golang.org> Reviewed-by: Roland Shoemaker <roland@gola...
[ { "path": "lib/fips140/inprocess.txt", "patch": "@@ -0,0 +1 @@\n+v1.0.0", "additions": 1, "deletions": 0, "language": "Plain Text" } ]
2025-05-21T12:41:28
facebook/react
7748ce8f3ff89065b7c25622873f86e3693a5667
df5ff9753a7d338b90c57a1d1471fb01fb405870
Update compiler naming in remaining error text
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Suppression.ts", "patch": "@@ -164,12 +164,12 @@ export function suppressionsToCompilerError(\n switch (suppressionRange.source) {\n case \"Eslint\":\n reason =\n- \"React Forget has bailed out of optimizing thi...
2024-03-28T14:40:05
vercel/next.js
b6d4433c1c4c59701705f3d8c22c7423de526757
08e5b06bce04e034d2e82ad79038b4420c3771f9
loader tree: add special segment name to virtual parallel route segments (#82383) When constructing the loader tree for parallel route segments, we inject a `children` segment, which could contain things like slot level layout/error/loading files. We want a way to distinguish between these virtual segments that exist ...
[ { "path": "crates/next-core/src/app_structure.rs", "patch": "@@ -1054,7 +1054,7 @@ async fn directory_tree_to_loader_tree_internal(\n let current_level_is_parallel_route = is_parallel_route(&directory_name);\n \n if current_level_is_parallel_route {\n- tree.segment = rcstr!(\"children\");\n+ ...
2025-08-05T22:23:41
nodejs/node
6c85d40593735a1dd4186a27425a091ed0788b9c
dcc2ed944f641004c0339bf76db58ccfefedd138
esm: use Undici/`fetch` `data:` URL parser Fixes: https://github.com/nodejs/node/issues/53775 PR-URL: https://github.com/nodejs/node/pull/54748 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/internal/data_url.js", "patch": "@@ -0,0 +1,352 @@\n+'use strict';\n+\n+const {\n+ RegExpPrototypeExec,\n+ RegExpPrototypeSymbolReplace,\n+ StringFromCharCodeApply,\n+ StringPrototypeCharCodeAt,\n+ StringPrototypeIndexOf,\n+ StringPrototypeSlice,\n+ TypedArrayPrototypeSubarray,\n+ Uin...
2024-09-07T08:22:03
electron/electron
fb6b92076e4a0a75e3b2ea67f9ef3b7a4cba2399
d6c04a3787eed78f0eaab5858fcb5ba6071cdcf3
fix: prevent `gin_helper::Locker` heap allocation (#39847) fix: prevent gin_helper::Locker heap allocation
[ { "path": "shell/common/gin_helper/locker.h", "patch": "@@ -21,6 +21,10 @@ class Locker {\n Locker(const Locker&) = delete;\n Locker& operator=(const Locker&) = delete;\n \n+ // prevent heap allocation\n+ void* operator new(size_t size) = delete;\n+ void operator delete(void*, size_t) = delete;\n+\n ...
2023-09-14T19:48:43
rust-lang/rust
8b0dc1ece0a6fd515b7bdb5c3d28f2fdd54bef61
1ac199af0a923580b97db6fdf6e798b37f97d43f
Move `rustc_query_system::query::job` to `rustc_middle`. This includes the types `QueryInfo`, `QueryJob`, `QueryJobId`, `QueryWaiter`, `QueryLatch`, and `QueryLatchInfo`. `CycleError` and `QueryStack*` had to come along too, due to type interdependencies. The `QueryStack*` types are put into a new submodule `rustc_mi...
[ { "path": "Cargo.lock", "patch": "@@ -4226,6 +4226,7 @@ dependencies = [\n \"bitflags\",\n \"either\",\n \"gsgdt\",\n+ \"parking_lot\",\n \"polonius-engine\",\n \"rustc_abi\",\n \"rustc_apfloat\",\n@@ -4512,20 +4513,17 @@ dependencies = [\n name = \"rustc_query_system\"\n version = \"0.0.0\"\n depende...
2026-02-11T02:16:31
facebook/react
df5ff9753a7d338b90c57a1d1471fb01fb405870
f4229cdb7fd53cf95bdb79209fa86f4216701c9b
Fix jest script
[ { "path": "compiler/packages/babel-plugin-react-forget/package.json", "patch": "@@ -10,7 +10,7 @@\n \"scripts\": {\n \"build\": \"rimraf dist && rollup --config --bundleConfigAsCjs\",\n \"test\": \"yarn snap:ci\",\n- \"jest\": \"tsc && ts-node \\\"$(yarn --silent which jest)\\\"\",\n+ \"jest...
2024-03-28T14:40:05
golang/go
e6dacf91ffb0a356aa692ab5c46411e2eef913f3
f12c66fbed546645389cf184b0e2ffd6ad9f78ec
runtime: use cgroup CPU limit to set GOMAXPROCS This CL adds two related features enabled by default via compatibility GODEBUGs containermaxprocs and updatemaxprocs. On Linux, containermaxprocs makes the Go runtime consider cgroup CPU bandwidth limits (quota/period) when setting GOMAXPROCS. If the cgroup limit is low...
[ { "path": "api/next/73193.txt", "patch": "@@ -0,0 +1 @@\n+pkg runtime, func SetDefaultGOMAXPROCS() #73193", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/godebug.md", "patch": "@@ -169,6 +169,17 @@ Go command will follow symlinks to regular files embeddin...
2025-05-05T17:44:26
vercel/next.js
08e5b06bce04e034d2e82ad79038b4420c3771f9
1180a6ecf0a4aa4a47d7fc95d0e0bf8c5a3fa1e8
Bump swc to 35 (#82237) To pull in a minifier bugfix: https://github.com/swc-project/swc/pull/10950 Fixes error locations again: https://github.com/swc-project/swc/issues/10930 https://vercel.slack.com/archives/C02HY34AKME/p1753429211338319 Blocked on https://github.com/swc-project/plugins/pull/514
[ { "path": "Cargo.lock", "patch": "@@ -588,9 +588,9 @@ dependencies = [\n \n [[package]]\n name = \"binding_macros\"\n-version = \"33.0.0\"\n+version = \"34.0.0\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"48bdcc71d9d0d017c17b486367323ff3931ed3ab545d65030133e4a7e94bec...
2025-08-05T21:55:30
nodejs/node
c4c580bfd596a440f2de722bd32608ec8ee5c7b5
c813de46fc17dea8eb724f115fa1860d14bba694
test: set `test-debugger-heap-profiler` as flaky PR-URL: https://github.com/nodejs/node/pull/54802 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
[ { "path": "test/parallel/parallel.status", "patch": "@@ -52,6 +52,8 @@ test-crypto-dh-stateless: SKIP\n test-crypto-keygen: SKIP\n # https://github.com/nodejs/node/issues/52963\n test-pipe-file-to-http: PASS, FLAKY\n+# https://github.com/nodejs/node/issues/54801\n+test-debugger-heap-profiler: PASS, FLAKY\n ...
2024-09-06T14:40:06
facebook/react
f4229cdb7fd53cf95bdb79209fa86f4216701c9b
638f8e3ddc9a73036d527dfc396e21fa8862a20f
Rename error type
[ { "path": "compiler/packages/babel-plugin-react-forget/src/CompilerError.ts", "patch": "@@ -173,7 +173,7 @@ export class CompilerError extends Error {\n \n constructor(...args: any[]) {\n super(...args);\n- this.name = \"ReactForgetCompilerError\";\n+ this.name = \"ReactCompilerError\";\n }\n ...
2024-03-28T14:40:04
nodejs/node
f061210819669931fbb5fc96fc1a5ca175bd240f
18101d83a158b877ac765936aba973c664130ea2
doc: fix typo in recognizing-contributors PR-URL: https://github.com/nodejs/node/pull/54822 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Richard Lau <rlau@redhat.com>
[ { "path": "doc/contributing/recognizing-contributors.md", "patch": "@@ -47,7 +47,7 @@ by the Node.js social media accounts. They can request that a post highlighting\n that they are speaking at the event be amplified by the Node.js accounts by\n making a request in the #nodejs-social channel in the OpenJS F...
2024-09-06T22:31:12
vercel/next.js
1180a6ecf0a4aa4a47d7fc95d0e0bf8c5a3fa1e8
ff4f10a510328151ae618c1689e203cc76b00e15
fix(Turbopack): Address duplicated metadata image modules when they are impored (#82367)
[ { "path": "crates/next-core/src/next_image/source_asset.rs", "patch": "@@ -35,9 +35,16 @@ pub struct StructuredImageFileSource {\n impl Source for StructuredImageFileSource {\n #[turbo_tasks::function]\n fn ident(&self) -> Vc<AssetIdent> {\n+ let modifier = match self.blur_placeholder_mode {\...
2025-08-05T18:19:06
rust-lang/rust
b4ee9953d8dd037fcfce60a0d10c0da90ec81650
8af02e230aac276d7eaa538729abca8618f02225
modify error comment and bless test, delete tests/ui/const-generics/generic_const_exprs/lit_type_mismatch.rs
[ { "path": "tests/crashes/133966.rs", "patch": "@@ -1,3 +0,0 @@\n-//@ known-bug: #133966\n-pub struct Data([[&'static str]; 5_i32]);\n-const _: &'static Data = unsafe { &*(&[] as *const Data) };", "additions": 0, "deletions": 3, "language": "Rust" }, { "path": "tests/ui/const-generics/adt...
2026-02-10T16:01:13
facebook/react
638f8e3ddc9a73036d527dfc396e21fa8862a20f
51668692046ebd997d93c45a91f7cc1ca1479fac
Remove [ReactForget] prefix from error messages
[ { "path": "compiler/packages/babel-plugin-react-forget/src/CompilerError.ts", "patch": "@@ -93,7 +93,7 @@ export class CompilerErrorDetail {\n }\n \n toString(): string {\n- return `[ReactForget] ${this.printErrorMessage()}`;\n+ return this.printErrorMessage();\n }\n }\n ", "additions": 1, ...
2024-03-28T14:40:03
nodejs/node
18101d83a158b877ac765936aba973c664130ea2
c046c9b3d8bc933b1c9760ad5663c365785ceac7
crypto: reject dh,x25519,x448 in {Sign,Verify}Final Fixes: https://github.com/nodejs/node/issues/53742 PR-URL: https://github.com/nodejs/node/pull/53774 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
[ { "path": "src/crypto/crypto_sig.cc", "patch": "@@ -92,12 +92,15 @@ std::unique_ptr<BackingStore> Node_SignFinal(Environment* env,\n sig = ArrayBuffer::NewBackingStore(env->isolate(), sig_len);\n }\n EVPKeyCtxPointer pkctx(EVP_PKEY_CTX_new(pkey.get(), nullptr));\n- if (pkctx &&\n- EVP_PKEY_sig...
2024-09-06T22:07:16
vercel/next.js
ff4f10a510328151ae618c1689e203cc76b00e15
ffd7f13c17c33e59ddc0b24b99828dca32113322
[Pages] fix: use `asPath` for query-only navigation with `useRouter` (#82236) ### Why? The issue was brought up when the app had rewrites (say `/ -> /foo`), and the page used `useRouter.push/replace` to add the search queries; it used the destination's pathname (`/foo?query=1`) instead of just adding the query (`/?qu...
[ { "path": "packages/next/src/client/resolve-href.ts", "patch": "@@ -8,6 +8,8 @@ import { normalizePathTrailingSlash } from './normalize-trailing-slash'\n import { isLocalURL } from '../shared/lib/router/utils/is-local-url'\n import { isDynamicRoute } from '../shared/lib/router/utils'\n import { interpolateA...
2025-08-05T18:15:16
electron/electron
a1c44a18e2acc1d4e4443ada75eee49ae0dd434f
ec9c8476fe2c789d8d3bfe94eee6ab88dceeede2
fix: NodeService order-of-destruction issue (#39783) * refactor: make ElectronRendererClient::node_bindings_ a const ptr refactor: make ElectronRendererClient::electron_bindings_ a const ptr * fix: order-of-destruction bug in NodeService js_env_ depends on the uv_loop from node_bindings_, but is destroyed aft...
[ { "path": "shell/services/node/node_service.cc", "patch": "@@ -20,10 +20,10 @@ namespace electron {\n \n NodeService::NodeService(\n mojo::PendingReceiver<node::mojom::NodeService> receiver)\n- : node_bindings_(\n- NodeBindings::Create(NodeBindings::BrowserEnvironment::kUtility)),\n- el...
2023-09-12T10:27:14
facebook/react
e10a7b5cd541882a78ff659147c1a0294413ccb0
323b6e98a76fe6ee721f10d327a9a682334d1a97
Don't log onRecoverableError if the current commit fail (#28665) We didn't recover after all. Currently we might log a recoverable error in the recovery pass. E.g. the SSR server had an error. Then the client component fails to render which errors again. This ends up double logging. So if we fail to actually c...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -6004,23 +6004,23 @@ describe('ReactDOMFizzServer', () => {\n expect(reportedServerErrors.length).toBe(1);\n expect(reportedServerErrors[0].message).toBe('Oops!');\n \n+ const reportedCaughtErrors = [];\n co...
2024-03-28T14:39:49
vercel/next.js
ffd7f13c17c33e59ddc0b24b99828dca32113322
1122b1f26fda9da45f0d69430e24e69d55161a84
[Pages] fix: `_error` page's `req.url` can be overwritten to dynamic param on minimal mode (#82347) In minimal mode, if there was `/[slug].js` with `notFound: true` on the same segment of `_error.js`, `req.url` and `ctx.asPath` were returned as `/[slug]`, since it was re-initialized to the request url. Therefore, don...
[ { "path": "packages/next/src/server/base-server.ts", "patch": "@@ -2355,7 +2355,13 @@ export default abstract class Server<\n initPathname = normalizer.normalize(initPathname)\n }\n }\n- request.url = `${initPathname}${parsedInitUrl.search || ''}`\n+\n+ // On minimal mode, the reques...
2025-08-05T18:06:32
nodejs/node
973144b7c6ce60da2f51c43ac9b65e7de25e54f2
1c67899ffb32871461c7ff2d82597d8f9c5cd6af
lib: convert signals to array before validation Co-authored-by: Jake Yuesong Li <jake.yuesong@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54714 Fixes: https://github.com/nodejs/node/issues/54674 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Rev...
[ { "path": "lib/internal/abort_controller.js", "patch": "@@ -39,6 +39,10 @@ const {\n ERR_INVALID_THIS,\n },\n } = require('internal/errors');\n+const {\n+ converters,\n+ createSequenceConverter,\n+} = require('internal/webidl');\n \n const {\n validateAbortSignal,\n@@ -225,15 +229,19 @@ class Abor...
2024-09-06T17:40:21
electron/electron
ec9c8476fe2c789d8d3bfe94eee6ab88dceeede2
470a14d8d4c2748ede41fe78d686f63cff4d6fe3
fix: `keyCode`s being incorrectly converted in `webContents.sendInputEvent()` (#39776) fix: sendInputEvent keyCodes being incorrectly converted
[ { "path": "shell/common/gin_converters/blink_converter.cc", "patch": "@@ -10,6 +10,7 @@\n \n #include \"base/containers/fixed_flat_map.h\"\n #include \"base/strings/string_util.h\"\n+#include \"base/strings/utf_string_conversion_utils.h\"\n #include \"base/strings/utf_string_conversions.h\"\n #include \"gin...
2023-09-12T09:28:45
facebook/react
323b6e98a76fe6ee721f10d327a9a682334d1a97
9f33f699e4f832971dc0f2047129f832655a3b6d
Remove errorHydratingContainer (#28664) I originally added this in #21021 but I didn't mention why and I don't quite remember why. Maybe because there were no other message? However at the time the recoverable errors mechanism didn't exist. Today I believe all cases where this happens will trigger another recove...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -2406,19 +2406,12 @@ describe('ReactDOMFizzServer', () => {\n },\n });\n \n- await expect(async () => {\n- // The first paint switches to client rendering due to mismatch\n- await waitForPaint([\n- ...
2024-03-28T03:48:18
vercel/next.js
bdd41bbcab24e25b925f53424d244b3a81188a18
2da86a46918dd20a2f496ba89d8c0fd9a2eb0a54
Docs: Updating guides on PPR and ISR (#81307) The PR fixes issues in two different guides. ### PPR In PPR, the code for jsx and tsx versions should use the language switcher. Currently, these are displayed below each other in the guide which seems unintentional. ### ISR This change fixes multiple issues: **fixes i...
[ { "path": "docs/01-app/01-getting-started/06-partial-prerendering.mdx", "patch": "@@ -142,7 +142,7 @@ export default function Layout({ children }: { children: React.ReactNode }) {\n }\n ```\n \n-```jsx filename=\"/app/dashboard/layout.js\" switcher\n+```jsx filename=\"/app/dashboard/layout.jsx\" switcher\n ...
2025-08-05T16:18:35
nodejs/node
1c67899ffb32871461c7ff2d82597d8f9c5cd6af
a75e3dff7e640f56d4b4eaca8105b8acfeebb54b
buffer: fix out of range for toString Co-authored-by: Michaël Zasso <targos@protonmail.com> PR-URL: https://github.com/nodejs/node/pull/54553 Fixes: https://github.com/nodejs/node/issues/52298 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
[ { "path": "lib/buffer.js", "patch": "@@ -843,12 +843,12 @@ Buffer.prototype.toString = function toString(encoding, start, end) {\n else if (start >= len)\n return '';\n else\n- start |= 0;\n+ start = MathTrunc(start) || 0;\n \n if (end === undefined || end > len)\n end = len;\n else\n-...
2024-09-06T17:39:24
electron/electron
5bff0fe342be7579191a7ddccf6b777c8fafb455
16aec702b407af24aab4632c97a21d24c2015acc
feat: add new ElectronSquirrelPreventDowngrades flag (#38625) * sketch * feat: add new ElectronSquirrelPreventDowngrades flag * test: remove only * chore: fix lint
[ { "path": "patches/squirrel.mac/.patches", "patch": "@@ -5,3 +5,4 @@ feat_add_new_squirrel_mac_bundle_installation_method_behind_flag.patch\n refactor_use_posix_spawn_instead_of_nstask_so_we_can_disclaim_the.patch\n fix_abort_installation_attempt_at_the_final_mile_if_the_app_is.patch\n chore_disable_api_dep...
2023-09-11T18:54:51
golang/go
40b19b56a94c4d53a3c1d98275df44049b2f5917
2a5ac1a993efc463efdce7996efd356dabf03a25
runtime: add valgrind instrumentation Add build tag gated Valgrind annotations to the runtime which let it understand how the runtime manages memory. This allows for Go binaries to be run under Valgrind without emitting spurious errors. Instead of adding the Valgrind headers to the tree, and using cgo to call the var...
[ { "path": "src/os/pidfd_linux.go", "patch": "@@ -170,7 +170,10 @@ func checkPidfd() error {\n \n \t// Check waitid(P_PIDFD) works.\n \terr = ignoringEINTR(func() error {\n-\t\treturn unix.Waitid(unix.P_PIDFD, int(fd), nil, syscall.WEXITED, nil)\n+\t\tvar info unix.SiginfoChild\n+\t\t// We don't actually car...
2025-03-22T00:58:55
facebook/react
51668692046ebd997d93c45a91f7cc1ca1479fac
b98b569017c1fd896159ba2430faadcf03d7bf70
[patch] Fix control flow bug in PropagateScopeDeps A dependency D from either an instruction or scope is poisoned if there may be a (non-linear) jump instruction between it and the start of its immediate parent scope. Poisoned dependencies are added as conditional dependencies to their parent scope. (done: reduc...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/PropagateScopeDependencies.ts", "patch": "@@ -7,6 +7,8 @@\n \n import { CompilerError } from \"../CompilerError\";\n import {\n+ BlockId,\n+ GeneratedSource,\n Identifier,\n IdentifierId,\n InstructionId,\n@@ -135,9 +137,152 @...
2024-03-28T00:26:18
vercel/next.js
2da86a46918dd20a2f496ba89d8c0fd9a2eb0a54
a388c0a095c72a1ade80ac68a0e3cbcc9b1fdae7
fix: OTel root span should indicate error status on exceptions (#82212) For cases when the root span's status returned 500, the span status returned `OK`. This results in inaccurate telemetry, as users may expect the span to indicate an error when a 500 occurs. Failed CI: https://github.com/vercel/next.js/actions/run...
[ { "path": "packages/next/src/server/app-render/create-error-handler.tsx", "patch": "@@ -91,6 +91,7 @@ export function createFlightReactServerErrorHandler(\n const span = getTracer().getActiveScopeSpan()\n if (span) {\n span.recordException(err)\n+ span.setAttribute('error.type', err.name)...
2025-08-05T15:28:23
nodejs/node
a75e3dff7e640f56d4b4eaca8105b8acfeebb54b
b345118e1e4960e8dcfa0dd5797f91dc4c4565e1
test: fix `test-process-load-env-file` when path contains `'` If the repo is cloned on a path that contains a quote, the test should not fail. PR-URL: https://github.com/nodejs/node/pull/54511 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "test/parallel/test-process-load-env-file.js", "patch": "@@ -8,7 +8,7 @@ const { join } = require('node:path');\n \n const basicValidEnvFilePath = fixtures.path('dotenv/basic-valid.env');\n const validEnvFilePath = fixtures.path('dotenv/valid.env');\n-const missingEnvFile = fixtures.path('dotenv/n...
2024-09-06T17:38:42
electron/electron
16aec702b407af24aab4632c97a21d24c2015acc
ac040bf734090cef83c954a63463bd9e21656217
fix: ensure app load is limited to real asar files when appropriate (#39788)
[ { "path": "lib/asar/fs-wrapper.ts", "patch": "@@ -27,7 +27,7 @@ const cachedArchives = new Map<string, NodeJS.AsarArchive>();\n const getOrCreateArchive = (archivePath: string) => {\n const isCached = cachedArchives.has(archivePath);\n if (isCached) {\n- return cachedArchives.get(archivePath);\n+ ...
2023-09-11T18:51:14
golang/go
8b45a3f78b178ce66f419038a664cbd6a82ada54
896097000912761dbd31cead2bec99f17534f521
runtime: guarantee checkfinalizers test allocates in a shared tiny block Currently the checkfinalizers test (TestDetectCleanupOrFinalizerLeak) only *tries* to ensure the tiny alloc with a cleanup attached shares a block with other objects. However, what it does is insufficient, because it could get unlucky and have th...
[ { "path": "src/runtime/malloc.go", "patch": "@@ -1672,7 +1672,10 @@ func postMallocgcDebug(x unsafe.Pointer, elemsize uintptr, typ *_type) {\n \t}\n \n \t// N.B. elemsize == 0 indicates a tiny allocation, since no new slot was\n-\t// allocated to fulfill this call to mallocgc.\n+\t// allocated to fulfill th...
2025-05-20T20:26:56
facebook/react
b98b569017c1fd896159ba2430faadcf03d7bf70
2782fa2664784d7c3c941aa708349e570418103d
[DeriveMinimalDeps] Account for conditional / poisoned accesses within conditionals This change is needed for #2752. To minimize renaming `error.fixture` -> `fixture` files, I'm reordering this PR to earlier in the stack. Prior to the fix in #2752, we only expected unconditional accesses within `depsInCurrentCon...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/DeriveMinimalDependencies.ts", "patch": "@@ -6,7 +6,7 @@\n */\n \n import { CompilerError } from \"../CompilerError\";\n-import { GeneratedSource, Identifier, ReactiveScopeDependency } from \"../HIR\";\n+import { Identifier, Reactive...
2024-03-28T00:26:18
vercel/next.js
a388c0a095c72a1ade80ac68a0e3cbcc9b1fdae7
5c38caab382517104ff80f94d93275073381cf8f
Turbopack: clean up some old TODOs (#82364) I looked through all TODOs if there are any remaining "todo fix this for prod builds"-style comments, but there weren't any. But some of them are outdated now
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -66,7 +66,7 @@ use turbopack_core::{\n },\n output::{OutputAsset, OutputAssets},\n raw_output::RawOutput,\n- reference_type::{CssReferenceSubType, ReferenceType},\n+ reference_type::{CommonJsReferenceSubType, CssReferenceSubType, Referen...
2025-08-05T15:15:23
electron/electron
ac040bf734090cef83c954a63463bd9e21656217
aceb432f45287492fa00982a7f2679ee7f6a04a8
build: update @electron/typescript-definitions to fix titlebaroverlay (#39799) build: update @electron/typescript-definitions to fix titlebarstyle
[ { "path": "yarn.lock", "patch": "@@ -220,9 +220,9 @@\n vscode-uri \"^3.0.7\"\n \n \"@electron/typescript-definitions@^8.14.5\":\n- version \"8.14.5\"\n- resolved \"https://registry.yarnpkg.com/@electron/typescript-definitions/-/typescript-definitions-8.14.5.tgz#07ffc7dac6008e0f659215e3b88bc0d7c6bc6ece...
2023-09-11T18:36:36
golang/go
4ce1c8e9e1aab695bb0da506f2de336a5caa81f6
0810fd2d9282dda12532e249c931b36a2d2526ed
cmd/compile: add rules about ORN and ANDN Reduce the number of go toolchain instructions on loong64 as follows. file before after Δ % addr2line 279880 279776 -104 -0.0372% asm 556638 556410 -228 -0.0410% buildid 272272 272072 -200 -0.0735% cgo 4815...
[ { "path": "src/cmd/compile/internal/loong64/ssa.go", "patch": "@@ -165,6 +165,8 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tssa.OpLOONG64OR,\n \t\tssa.OpLOONG64XOR,\n \t\tssa.OpLOONG64NOR,\n+\t\tssa.OpLOONG64ANDN,\n+\t\tssa.OpLOONG64ORN,\n \t\tssa.OpLOONG64SLL,\n \t\tssa.OpLOONG64SLLV,\n \t\t...
2025-05-20T02:28:17
facebook/react
1515cb32182e48c25369673607abb76ba773bab6
4d37a599e302ec11647c75b9cedfce52922256b8
[be][sprout] Add ErrorBoundary to test exceptions in sequentialRenders
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/reduce-reactive-deps/cfg-condexpr.expect.md", "patch": "@@ -6,11 +6,18 @@\n // scope that produces x, since it is accessed unconditionally in all cfg\n // paths\n \n-function TestCondDepInConditionalExpr(props, other) {\n...
2024-03-28T00:26:15
vercel/next.js
d63378945224ab2d246d817768e690402d512a9d
fb83b8345fe63838e5e5efc46b772b5c9eb76717
Turbopack: pass `is_development` to `next_page_config` (#82363) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For ...
[ { "path": "crates/next-core/src/next_client/transforms.rs", "patch": "@@ -45,7 +45,8 @@ pub async fn get_next_client_transforms_rules(\n \n rules.push(get_next_font_transform_rule(enable_mdx_rs));\n \n- if mode.await?.is_development() {\n+ let is_development = mode.await?.is_development();\n+ i...
2025-08-05T12:36:22
electron/electron
d1827941790f23b241ef3f234a9782750ac97e8d
ab185c058f894ddc556f67b2853de4adad2bb10c
fix: frameless mica/acrylic windows (#39708) * fix: backgroundMaterial works with frameless * TODO: fix frameless mica/acrylic windows * update caption color appropriately * set background color properly * refactor translucency method * actualization
[ { "path": "patches/chromium/.patches", "patch": "@@ -130,5 +130,6 @@ fix_harden_blink_scriptstate_maybefrom.patch\n chore_add_buildflag_guard_around_new_include.patch\n fix_use_delegated_generic_capturer_when_available.patch\n build_remove_ent_content_analysis_assert.patch\n+fix_activate_background_material...
2023-09-11T12:51:54
golang/go
0d7dc6842b3de170fcc8c72aa4380269b8f21f80
0375edd901f2807af29af95f60a06065c489708c
cmd/internal/obj/riscv: fix vector integer multiply add The RISC-V integer vector multiply add instructions are not encoded correctly; the first and second arguments are swapped. For example, the instruction VMACCVV V1, V2, V3 encodes to b620a1d7 or vmacc.vv v3,v1,v2 and not b61121d7 or vmacc.vv v3,v2,v1 as expe...
[ { "path": "src/cmd/asm/internal/asm/testdata/riscv64.s", "patch": "@@ -830,38 +830,38 @@ start:\n \tVWMULSUVX\tX10, V2, V0, V3\t\t\t// d76125e8\n \n \t// 31.11.13: Vector Single-Width Integer Multiply-Add Instructions\n-\tVMACCVV\t\tV1, V2, V3\t\t\t// d7a120b6\n-\tVMACCVV\t\tV1, V2, V0, V3\t\t\t// d7a120b4\...
2025-05-06T12:07:09
facebook/react
4d37a599e302ec11647c75b9cedfce52922256b8
a37f242f593c685f0a71a8ff35d9f0ebd4e8391a
[be][tests] Move PropagateScopeDep fixtures to separate directory
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/reduce-reactive-deps/cfg-condexpr.expect.md", "patch": "@@ -36,4 +36,12 @@ function TestCondDepInConditionalExpr(props, other) {\n }\n \n ```\n- \n\\ No newline at end of file\n+ \n+### Eval output\n+(kind: exce...
2024-03-28T00:26:14
vercel/next.js
fb83b8345fe63838e5e5efc46b772b5c9eb76717
9e9ee8521784b9c92c24f3599d84fde55bbae12c
Turbopack: run styled-jsx after typescript transform (#82359) Closes PACK-5183 Based on https://github.com/swc-project/swc/issues/10944#issuecomment-3120775091, we need to run styled-jsx after typescript Fixes this crash ``` entered unreachable code: This visitor does not support TypeScript. This method fails for o...
[ { "path": "crates/next-core/src/next_server/context.rs", "patch": "@@ -58,7 +58,7 @@ use crate::{\n get_invalid_styled_jsx_resolve_plugin,\n },\n transforms::{\n- emotion::get_emotion_transform_rule, get_ecma_transform_rule,\n+ EcmascriptTransformStage, emot...
2025-08-05T12:33:50
nodejs/node
b345118e1e4960e8dcfa0dd5797f91dc4c4565e1
bec80892b324f55e030b354c87bfb011f28fff62
test: refactor fs-watch tests due to macOS issue In `macOS`, fsevents generated immediately before start watching may leak into the event callback. See: https://github.com/nodejs/node/issues/54450 for an explanation. This might be fixed at some point in `libuv` though it may take some time (see: https://github.com/lib...
[ { "path": "test/parallel/test-fs-promises-watch.js", "patch": "@@ -8,6 +8,7 @@ const { watch } = require('fs/promises');\n const fs = require('fs');\n const assert = require('assert');\n const { join } = require('path');\n+const { setTimeout } = require('timers/promises');\n const tmpdir = require('../commo...
2024-09-06T17:38:28
electron/electron
ab185c058f894ddc556f67b2853de4adad2bb10c
2324c4d8fd6f7b2cd336d4e93591464544e12953
fix: fullscreen crashing with no roundedCorners and no frame (#39747)
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -683,9 +683,6 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n }\n \n void NativeWindowMac::SetFullScreen(bool fullscreen) {\n- if (!has_frame() && !HasStyleMask(NSWindowStyleMaskTitled))\n- return;\n-\n //...
2023-09-11T07:38:10
golang/go
0375edd901f2807af29af95f60a06065c489708c
7f806c1052aa919c1c195a5b2223626beab2495c
os: skip TestOpenFileCreateExclDanglingSymlink when no symlinks Skip this test on plan9, and any other platform that doesn't have symlinks. Fixes #73729 Change-Id: I8052db24ed54c3361530bd4f54c96c9d10c4714c Reviewed-on: https://go-review.googlesource.com/c/go/+/674697 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-p...
[ { "path": "src/os/os_test.go", "patch": "@@ -2300,6 +2300,7 @@ func TestFilePermissions(t *testing.T) {\n }\n \n func TestOpenFileCreateExclDanglingSymlink(t *testing.T) {\n+\ttestenv.MustHaveSymlink(t)\n \ttestMaybeRooted(t, func(t *testing.T, r *Root) {\n \t\tconst link = \"link\"\n \t\tif err := Symlink(...
2025-05-21T00:02:11
facebook/react
0a3d1c3d31ce83d18906357c29381e722cbec8b4
a6c6855dd12b0e3fb40b6b987e6c7ad60045c026
Add type defs for reanimated The reanimated babel plugin specifically looks for args to their hooks that are callbacks, then it workletizes the body of that callback so it can run on the main thread. But, forget extracts that callback into a temporary variable and then replaces the previously inlined callback as...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/Environment.ts", "patch": "@@ -17,6 +17,7 @@ import {\n DEFAULT_SHAPES,\n Global,\n GlobalRegistry,\n+ installReAnimatedTypes,\n } from \"./Globals\";\n import {\n BlockId,\n@@ -357,6 +358,16 @@ const EnvironmentConfigSchema = z.object(...
2024-03-28T12:26:22
vercel/next.js
cee784dea0a4dffcf8f09261cfe2412f2df4f0d2
ba47a7c3cf3aad10719fe5deae73ebf9ba4a4216
[turbopack] vibecode a benchmark runner for module-cost (#82287) # Add automated benchmark runner for module-cost ## What? This PR adds an automated benchmark runner for the module-cost benchmark, allowing for consistent measurement of module loading and execution times. ## Why? It is to tedious and error prone to ...
[ { "path": "bench/module-cost/.gitignore", "patch": "@@ -1,3 +1,4 @@\n commonjs/*\n esm/*\n-CPU*\n\\ No newline at end of file\n+CPU*\n+benchmark-results-*.json\n\\ No newline at end of file", "additions": 2, "deletions": 1, "language": "Unknown" }, { "path": "bench/module-cost/components...
2025-08-04T23:16:57
nodejs/node
e4fdd0b492f6a022a7a2bc63190dc6764a6ec7d6
94419bf64de32d27f9d3b693abd9924a56d8799d
test: refactor `test-esm-type-field-errors` Co-Authored-By: Jacob Smith <jacob@frende.me> PR-URL: https://github.com/nodejs/node/pull/54368 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "test/es-module/test-esm-type-field-errors.js", "patch": "@@ -2,6 +2,7 @@\n const common = require('../common');\n const assert = require('assert');\n const exec = require('child_process').execFile;\n+const { describe, it } = require('node:test');\n \n const mjsFile = require.resolve('../fixtures/...
2024-09-06T08:29:26
electron/electron
792037b338ecab58dca67ae96b255743a444be4b
0b44f433c8764e710ad5a36b8e82cc5720dd1be0
fix: raw_ptr destruction order in NodeBindings (#39762)
[ { "path": "shell/common/node_bindings.cc", "patch": "@@ -394,21 +394,11 @@ base::FilePath GetResourcesPath() {\n return exec_path.DirName().Append(FILE_PATH_LITERAL(\"resources\"));\n #endif\n }\n-\n } // namespace\n \n NodeBindings::NodeBindings(BrowserEnvironment browser_env)\n- : browser_env_(brows...
2023-09-07T23:25:17
golang/go
d37a1bdd48458e48de13cdc320c8ddf9b021e356
74304cda29381fd5ba07a4090b701f8a670896c6
cmd/compile: fix the implementation of NORconst on loong64 In the loong64 instruction set, there is no NORI instruction, so the immediate value in NORconst need to be stored in register and then use the three-register NOR instruction. Change-Id: I5ef697450619317218cb3ef47fc07e238bdc2139 Reviewed-on: https://go-review...
[ { "path": "src/cmd/compile/internal/loong64/ssa.go", "patch": "@@ -276,7 +276,6 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tssa.OpLOONG64ANDconst,\n \t\tssa.OpLOONG64ORconst,\n \t\tssa.OpLOONG64XORconst,\n-\t\tssa.OpLOONG64NORconst,\n \t\tssa.OpLOONG64SLLconst,\n \t\tssa.OpLOONG64SLLVconst,\n...
2025-05-19T09:02:48
vercel/next.js
ba47a7c3cf3aad10719fe5deae73ebf9ba4a4216
1f8ea2a1b09bf6017bee7d72e99727c1f351bc69
Turbopack: Update `jsonc-parser`, dedupe with SWC (#82343) I noticed we had two copies of this library. There are a few minor API changes (some things that were properties are now methods, "message" is now "kind"), and I switched our error type over to use `RcStr` since it implements `Clone`.
[ { "path": "Cargo.lock", "patch": "@@ -3475,18 +3475,9 @@ dependencies = [\n \n [[package]]\n name = \"jsonc-parser\"\n-version = \"0.21.0\"\n-source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"3a1853e40333206f9a685358046d13ab200169e3ee573019bddf0ede0dc29307\"\n-dependencies = ...
2025-08-04T23:09:47
facebook/react
a0537160771bafae90c6fd3154eeead2f2c903e7
9f8daa6cb5aae476cf54611874ea7522243c6ba6
Make onUncaughtError and onCaughtError Configurable (#28641) Stacked on #28627. This makes error logging configurable using these `createRoot`/`hydrateRoot` options: ``` onUncaughtError(error: mixed, errorInfo: {componentStack?: ?string}) => void onCaughtError(error: mixed, errorInfo: {componentStack?: ?strin...
[ { "path": "packages/react-dom/index.classic.fb.js", "patch": "@@ -20,11 +20,8 @@ Object.assign((Internals: any), {\n \n export {\n createPortal,\n- createRoot,\n- hydrateRoot,\n findDOMNode,\n flushSync,\n- render,\n unmountComponentAtNode,\n unstable_batchedUpdates,\n unstable_createEventHan...
2024-03-27T04:51:37
rust-lang/rust
c22301b0991e641b276271bea1930dcd2a02176e
a423f68a0d75656eabab4982a06bed9f316f7109
Test(lib/win/net): Skip UDS tests when under Win7 Unix Domain Socket support has only been added to Windows since Windows 10 Insider Preview Build 17063. Thus, it has no chance of ever being supported under Windows 7, making current tests fail. This therefore adds the necessary in order to make the tests dynamically s...
[ { "path": "library/std/src/os/windows/net/listener.rs", "patch": "@@ -12,6 +12,8 @@ use crate::{fmt, io};\n \n /// A structure representing a Unix domain socket server.\n ///\n+/// Under Windows, it will only work starting from Windows 10 17063.\n+///\n /// # Examples\n ///\n /// ```no_run", "additions"...
2026-02-12T11:21:32
nodejs/node
94419bf64de32d27f9d3b693abd9924a56d8799d
13d6950a6c5a17ae078f8f8d32a8ac1338efbb4a
typings: fix TypedArray to a global type PR-URL: https://github.com/nodejs/node/pull/54063 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "typings/globals.d.ts", "patch": "@@ -19,19 +19,6 @@ import { WASIBinding } from './internalBinding/wasi';\n import { WorkerBinding } from './internalBinding/worker';\n import { ModulesBinding } from './internalBinding/modules';\n \n-declare type TypedArray =\n- | Uint8Array\n- | Uint8ClampedArr...
2024-09-06T08:29:11
electron/electron
0b44f433c8764e710ad5a36b8e82cc5720dd1be0
5fa9dee68a7ef9f0fd74d5be0c836dc4fefa5b70
fix: make titlebar opaque while fullscreen (#39759)
[ { "path": "shell/browser/native_window_mac.mm", "patch": "@@ -1692,6 +1692,9 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n // Restore the window title under fullscreen mode.\n if (buttons_proxy_)\n [window_ setTitleVisibility:NSWindowTitleVisible];\n+\n+ if (tr...
2023-09-07T22:55:17
vercel/next.js
1f8ea2a1b09bf6017bee7d72e99727c1f351bc69
752599478f68a25f25cb3a5dcfc660ef063f9fbc
docs: Clarify revalidatePath (#82142) Fixes: https://github.com/vercel/next.js/issues/81776
[ { "path": "docs/01-app/03-api-reference/04-functions/revalidatePath.mdx", "patch": "@@ -5,25 +5,83 @@ description: API Reference for the revalidatePath function.\n \n `revalidatePath` allows you to purge [cached data](/docs/app/guides/caching) on-demand for a specific path.\n \n+## Usage\n+\n+`revalidatePat...
2025-08-04T18:02:36
golang/go
74304cda29381fd5ba07a4090b701f8a670896c6
a070533633bd709bc3598dbd7c28edca1d2ba6e2
cmd/compile/internal/escape: improve order of work to speed up analyzing many locations For the package github.com/microsoft/typescript-go/internal/checker, compilation currently spends most of its time in escape analysis. Here, we re-order work to be more efficient when analyzing many locations, and delay visiting s...
[ { "path": "src/cmd/compile/internal/escape/graph.go", "patch": "@@ -62,9 +62,14 @@ type location struct {\n \tdst *location\n \tdstEdgeIdx int\n \n-\t// queued is used by walkAll to track whether this location is\n-\t// in the walk queue.\n-\tqueued bool\n+\t// queuedWalkAll is used by walkAll to tra...
2025-03-12T21:29:25
nodejs/node
5fb9083b1a3bd2b89d9c013f11bb4ad0f69b8cc3
9441ce1c905df5584eeeabc0a5f069360eb42686
doc: fix typo in module.md PR-URL: https://github.com/nodejs/node/pull/54794 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "doc/api/module.md", "patch": "@@ -171,7 +171,7 @@ changes:\n -->\n \n The module compile cache can be enabled either using the [`module.enableCompileCache()`][]\n-method or the [`NODE_COMPILE_CACHE=dir`][] environemnt variable. After it's enabled,\n+method or the [`NODE_COMPILE_CACHE=dir`][] envi...
2024-09-05T23:11:54
electron/electron
75bad341317fa62fe16525c7084df8c3a4662179
0a064cece99b266262a6fd69ca62933c9e56313a
fix: prevent errors when extensions listen for `chrome.tabs` events (#39729) * fix: prevent errors when extensions listen for chrome.tabs events * chore: mark events unsupported in Electron
[ { "path": "shell/common/extensions/api/tabs.json", "patch": "@@ -704,9 +704,362 @@\n }\n }\n ],\n+ // Electron does not yet support tab events - we define them here because otherwise extensions crash when\n+ // they try to listen for them.\n \"events\": [\n+ {\n+ \"n...
2023-09-07T10:41:24