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
facebook/react
dfc64c6e31586f63703b81284b69b4ee5be82e5b
b02199d322c3876f213dc9bba815acaa839609fd
[tests] assertLog before act in ReactUse (#28762) Fixes tests blocking https://github.com/facebook/react/pull/28737
[ { "path": "packages/react-reconciler/src/__tests__/ReactUse-test.js", "patch": "@@ -663,6 +663,8 @@ describe('ReactUse', () => {\n }\n \n const root1 = ReactNoop.createRoot();\n+ assertLog(['Async text requested [Hi]']);\n+\n await act(() => {\n root1.render(<Suspense fallback={<Text te...
2024-04-10T14:34:27
rust-lang/rust
71e4b03b02dcd190d48b508e14d70146fa7007ef
b451b42018616243f66ffd96f40b2cc1cee08561
fix: no complete suggest param in complex pattern Example --- ```rust fn foo(bar: u32) {} fn bar((a, bar$0)) {} ``` **Before this PR** ```rust fn foo(bar: u32) {} fn bar(bar: u32)) {} ``` **After this PR** Not complete `bar: u32`
[ { "path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/fn_param.rs", "patch": "@@ -25,7 +25,7 @@ pub(crate) fn complete_fn_param(\n ctx: &CompletionContext<'_>,\n pattern_ctx: &PatternContext,\n ) -> Option<()> {\n- let (ParamContext { param_list, kind, .. }, impl_or_trait) = ma...
2026-02-14T14:01:28
vercel/next.js
925f8a9446ca67551324825033febea3accd6419
fdbe67678bc9ec8f885f76b1035c1847b829b008
fix: find root dir on fs root (#82590) Attempt at fixing from our side: https://github.com/vercel/next.js/issues/82577 Rather, the issue is that when the project is at the root of the file system - `findRootDir` loops indefinitely, and we keep pushing to the lockFiles found. I also noticed the warning claims we use ...
[ { "path": "packages/next/src/lib/find-root.ts", "patch": "@@ -23,21 +23,25 @@ export function findRootDir(cwd: string) {\n \n const lockFiles = [lockFile]\n while (true) {\n- const nextDir = dirname(dirname(lockFiles[lockFiles.length - 1]))\n- const newLockFile = findRootLockFile(nextDir)\n+ co...
2025-08-13T21:33:18
nodejs/node
653b96527a996eea7b32773bfd7f428cf494e4fe
29357cb0efffddf708ab0fd5c0d8a19532ac392b
build,win: float VS 17.11 compilation patch Fixes: https://github.com/nodejs/node/issues/54898 PR-URL: https://github.com/nodejs/node/pull/54970 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Luigi Pinca <luigipi...
[ { "path": "deps/ngtcp2/nghttp3/lib/nghttp3_ringbuf.c", "patch": "@@ -33,7 +33,7 @@\n \n #include \"nghttp3_macro.h\"\n \n-#if defined(_MSC_VER) && !defined(__clang__) && \\\n+#if defined(_MSC_VER) && _MSC_VER < 1941 && !defined(__clang__) && \\\n...
2024-09-19T20:36:42
rust-lang/rust
40a3ca1189940ad1805c8deb3ba60744fa16dc57
5d04477ea8118ba54d9ce402848dda19a41d61eb
fix: remove unused source span
[ { "path": "src/librustdoc/html/render/mod.rs", "patch": "@@ -2779,46 +2779,12 @@ fn render_call_locations<W: fmt::Write>(\n let needs_expansion = line_max - line_min > NUM_VISIBLE_LINES;\n let locations_encoded = serde_json::to_string(&line_ranges).unwrap();\n \n- let source_map = tcx...
2026-02-15T14:01:01
electron/electron
24bc0ee5c71a0ebf467c14ba0a11e872420cce96
f5c177698ed8ad80c068d0f5788c8606e81d31c2
test: fix "crashed event does not crash main process when destroying WebContents in it" (#40135)
[ { "path": "spec/api-web-contents-spec.ts", "patch": "@@ -2333,13 +2333,13 @@ describe('webContents module', () => {\n describe('crashed event', () => {\n afterEach(() => deprecate.setHandler(null));\n \n- it('does not crash main process when destroying WebContents in it', async () => {\n+ it('do...
2023-10-09T07:56:48
facebook/react
b02199d322c3876f213dc9bba815acaa839609fd
6e1e2f2198b9c1f9259417cb569d92206ccf55f5
[tests] assertLog before act in ReactErrorBoundaries (#28761) Fixes tests blocking https://github.com/facebook/react/pull/28737
[ { "path": "packages/react-dom/src/__tests__/ReactErrorBoundaries-test.internal.js", "patch": "@@ -584,6 +584,7 @@ describe('ReactErrorBoundaries', () => {\n });\n }).rejects.toThrow('Hello');\n \n+ Scheduler.unstable_clearLog();\n container = document.createElement('div');\n root = Reac...
2024-04-10T14:34:19
vercel/next.js
f88de0d8f1b8ec508b7cfef6abfaaa32e72e690c
7a6ee79ae17a0870bd8f3e66818e0bb95efa1f1d
feat: type guard file generation (#81400) ## Overview Generates `.next/types/validator.ts` - a single TypeScript file that validates all route exports using the `satisfies` operator. Replaces the old `next-types-plugin` webpack plugin. ## Why needed - **Turbopack compatibility**: Old webpack plugin didn't work with T...
[ { "path": "packages/next/src/build/entries.ts", "patch": "@@ -76,37 +76,36 @@ import type { MappedPages } from './build-context'\n import { PAGE_TYPES } from '../lib/page-types'\n import { isAppPageRoute } from '../lib/is-app-page-route'\n import { recursiveReadDir } from '../lib/recursive-readdir'\n-import...
2025-08-13T20:21:51
golang/go
961818e0131aaa7468616a90ce9ebf00111ccdaa
c8c3d661b084c01242fa7837e3853d7492ba1717
cmd/compile/internal/walk: use original type for composite literals in addrTemp When creating a new *ir.Name or *ir.LinksymOffsetExpr to represent a composite literal stored in the read-only data section, we should use the original type of the expression that was found via ir.ReassignOracle.StaticValue. (This is neede...
[ { "path": "src/cmd/compile/internal/ir/expr.go", "patch": "@@ -853,6 +853,10 @@ func IsAddressable(n Node) bool {\n //\n // calling StaticValue on the \"int(y)\" expression returns the outer\n // \"g()\" expression.\n+//\n+// NOTE: StaticValue can return a result with a different type than\n+// n's type bec...
2025-05-27T17:32:36
rust-lang/rust
88f0ac34dce0e0d21da576aa111ce3b7d66bfafc
ce0bf0b22b646bacf91f73393483f684a44848ca
Fix const normalization for generic const items with trait assoc consts
[ { "path": "compiler/rustc_trait_selection/src/traits/query/normalize.rs", "patch": "@@ -376,10 +376,14 @@ impl<'a, 'tcx> QueryNormalizer<'a, 'tcx> {\n // `tcx.normalize_canonicalized_projection` may normalize to a type that\n // still has unevaluated consts, so keep normalizing here if that'...
2026-02-07T09:51:44
facebook/react
6e1e2f2198b9c1f9259417cb569d92206ccf55f5
88df5242d6f8e319d7903f6fa984e3a02cd44b34
[tests] assertLog before act in ReactUpdates (#28760) Fixes tests blocking https://github.com/facebook/react/pull/28737
[ { "path": "packages/react-dom/src/__tests__/ReactUpdates-test.js", "patch": "@@ -1900,6 +1900,8 @@ describe('ReactUpdates', () => {\n await act(() => {\n root.render(<Terminating />);\n });\n+\n+ assertLog(Array.from({length: LIMIT + 1}, (_, k) => k));\n expect(container.textC...
2024-04-10T14:34:11
nodejs/node
1e16779fa18ef0b912ec6d8cf5d10afed13e375a
762a440e68b1893c9b0478050d9a018cf285a9de
deps: V8: cherry-pick 01a47f3ffff2 Original commit message: [cfi] Add missing 'typename' in SegmentedTable Makes the code more consistent and fixes compilation on older Clang versions. Change-Id: I82abebd500e6651ac5c5b180cd7b49b4f20e8299 Reviewed-on: https://chromium-review.googlesource.com/c/v8...
[ { "path": "common.gypi", "patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.7',\n+ 'v8_embedder_string': '-node.8',\n \n ##### V8 defaults for Node.js #####\n "...
2024-08-26T18:04:23
electron/electron
f5c177698ed8ad80c068d0f5788c8606e81d31c2
737e3de3fa34acd9b9222a898de44cf233ca9575
fix: remove EarlyMallocZoneRegistration call (#40128)
[ { "path": "BUILD.gn", "patch": "@@ -916,10 +916,7 @@ if (is_mac) {\n assert(defined(invoker.helper_name_suffix))\n \n output_name = electron_helper_name + invoker.helper_name_suffix\n- deps = [\n- \":electron_framework+link\",\n- \"//base/allocator:early_zone_registration_appl...
2023-10-09T00:43:51
vercel/next.js
b6d2c365791e6557df977d828648e5c8b6a928af
39fb1ea8d72d06a504f6857beb44ee39d565e977
[turbopack] Update Turbopack build warning message (#82591) Drop the scare text about not running turbopack in production. Instead clarify that builds are beta and direct people to our documentation site. For example: ![image.png](https://graphite-user-uploaded-assets-prod.s3.amazonaws.com/AwJ29EfoPcPdLSwCZxAz/a50c...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -3980,7 +3980,7 @@ export default async function build(\n await lockfilePatchPromise.cur\n \n if (isTurbopack && !process.env.__NEXT_TEST_MODE) {\n- warnAboutTurbopackBuilds(loadedConfig)\n+ warnAboutTurbopackBuilds()\n }\n \n ...
2025-08-13T17:06:36
golang/go
0e1b14bc2e13aed697854e3859f73ba4dba9fb22
09f1546cba2998a8d89f4506c16ba3bff115071d
cmd/go: fix get with the new 'work' pattern Before this change, go get didn't have support for the work pattern. The work pattern is new in Go 1.25 and evaluates to the packages in the work (also called main) modules. 'go get work' would cause a panic because 'work' would be incorrectly considered a path pattern and t...
[ { "path": "src/cmd/go/internal/modget/get.go", "patch": "@@ -337,6 +337,7 @@ func runGet(ctx context.Context, cmd *base.Command, args []string) {\n \tr.performLocalQueries(ctx)\n \tr.performPathQueries(ctx)\n \tr.performToolQueries(ctx)\n+\tr.performWorkQueries(ctx)\n \n \tfor {\n \t\tr.performWildcardQueri...
2025-05-23T17:19:44
rust-lang/rust
9fb9225cf498b6f215502df4bf0023809c2f3056
75b9d89c68a4a92758349272aa4e35a8eb7a6708
Disable debug_assert_not_in_new_nodes for multiple threads
[ { "path": "compiler/rustc_middle/src/dep_graph/graph.rs", "patch": "@@ -9,7 +9,7 @@ use rustc_data_structures::fx::{FxHashMap, FxHashSet};\n use rustc_data_structures::profiling::QueryInvocationId;\n use rustc_data_structures::sharded::{self, ShardedHashMap};\n use rustc_data_structures::stable_hasher::{Has...
2026-02-15T11:41:46
facebook/react
88df5242d6f8e319d7903f6fa984e3a02cd44b34
e36ee763faf9f273f162ad3292b36382834bdf30
[tests] assertLog before act in ReactDOMServerSelectiveHydration (#28759) Fixes tests blocking https://github.com/facebook/react/pull/28737
[ { "path": "packages/react-dom/src/__tests__/ReactDOMServerSelectiveHydration-test.internal.js", "patch": "@@ -1114,14 +1114,16 @@ describe('ReactDOMServerSelectiveHydration', () => {\n // Outer was hydrated earlier\n OuterTestUtils.assertLog([]);\n \n+ // First Inner Mouse Enter fires then ...
2024-04-10T14:34:02
nodejs/node
95f2213eed80232e6ddfbf8aad1db13af3c45aa4
09d997f1819a4f0f3433e14769d226c09037f377
deps: always define V8_NODISCARD as no-op It's causing compiler errors with some classes on Xcode 11 and the attribute should have no runtime effect. PR-URL: https://github.com/nodejs/node/pull/54077 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Joyee Cheun...
[ { "path": "common.gypi", "patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.5',\n+ 'v8_embedder_string': '-node.6',\n \n ##### V8 defaults for Node.js #####\n "...
2024-08-08T04:53:41
electron/electron
737e3de3fa34acd9b9222a898de44cf233ca9575
8b8fbd0408c95487afcee28fa18b2a8b2270f713
chore: restore deprecate as an internal module (#40124) * Revert "refactor: don't expose deprecate as an internal module (#35311)" This reverts commit 8424779906ae33222764db9ed837f55115143e71. * check crashed event warnings
[ { "path": "filenames.auto.gni", "patch": "@@ -142,6 +142,7 @@ auto_filenames = {\n ]\n \n sandbox_bundle_deps = [\n+ \"lib/common/api/deprecate.ts\",\n \"lib/common/api/native-image.ts\",\n \"lib/common/define-properties.ts\",\n \"lib/common/ipc-messages.ts\",\n@@ -247,11 +248,11 @@ auto_...
2023-10-08T23:55:16
golang/go
09f1546cba2998a8d89f4506c16ba3bff115071d
de05282a2c3bba1d869f8686e7b38d582af17a0a
log/slog: fix longtests with empty source Tests broken by CL 674875 Updates #73808 Change-Id: I7ad93e4a8ba1977d136f99b9d4963fa8a9c159ff Reviewed-on: https://go-review.googlesource.com/c/go/+/676595 Auto-Submit: Michael Knyszek <mknyszek@google.com> TryBot-Bypass: Michael Knyszek <mknyszek@google.com> Reviewed-by: Mi...
[ { "path": "src/log/slog/logger_test.go", "patch": "@@ -315,7 +315,7 @@ func TestCallDepthConnection(t *testing.T) {\n \t\t\tgot := string(firstLine)\n \n \t\t\twant := fmt.Sprintf(\n-\t\t\t\t`source=:0 msg=\"logger_test.go:%d: %s\"`,\n+\t\t\t\t`msg=\"logger_test.go:%d: %s\"`,\n \t\t\t\tline+i, tt.name,\n \t...
2025-05-27T18:11:28
rust-lang/rust
7733f65ff9fbd5b033e5ad012250f0fc4bee44ad
646418838fc494822f4814e6fd58a59f08d3575a
fix: use `ExprIsRead::Yes` for rhs of ordinary assignments the rhs of an ordinary assignment `x = *never_ptr` was inferred with `ExprIsRead::No`, which prevented `NeverToAny` coercion for place expressions of type `!`. this caused false type mismatches and missing divergence detection. the destructuring assignment pat...
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/infer/expr.rs", "patch": "@@ -751,7 +751,7 @@ impl<'db> InferenceContext<'_, 'db> {\n \n if let Some(lhs_ty) = lhs_ty {\n self.write_pat_ty(target, lhs_ty);\n- self.infer_expr_coerce(value, &Expectati...
2026-02-15T11:37:51
vercel/next.js
9542b8b03856413c9378160be7678949139c28f7
5fa0987aea78f594b46d03ce1c9e8c4963563372
Docs/feedback round aug (#82549) Closes: https://linear.app/vercel/issue/DOC-4949/clarification-redirecting-in-server-actions-to-self, https://linear.app/vercel/issue/DOC-4973/global-error-and-global-not-found-in-prod-checklist Additionally addresses community confusion and feedback around Server Functions initial cl...
[ { "path": "docs/01-app/01-getting-started/08-updating-data.mdx", "patch": "@@ -172,6 +172,8 @@ There are two main ways you can invoke a Server Function:\n 1. [Forms](#forms) in Server and Client Components\n 2. [Event Handlers](#event-handlers) and [useEffect](#useeffect) in Client Components\n \n+> **Good ...
2025-08-13T10:17:14
facebook/react
e36ee763faf9f273f162ad3292b36382834bdf30
42eff4bc78a3636953c55096ca0b220c611a74cc
[tests] assertLog before act in ReactCompositeComponentState (#28758) Fixes tests blocking https://github.com/facebook/react/pull/28737
[ { "path": "packages/react-dom/src/__tests__/ReactCompositeComponentState-test.js", "patch": "@@ -152,21 +152,6 @@ describe('ReactCompositeComponent-state', () => {\n root.render(<TestComponent />);\n });\n \n- await act(() => {\n- root.render(<TestComponent nextColor=\"green\" />);\n- }...
2024-04-10T14:33:51
nodejs/node
09d997f1819a4f0f3433e14769d226c09037f377
1866363854ed6e2d040cd7d25dbf0aca2fbf5fd3
deps: fix FP16 bitcasts.h PR-URL: https://github.com/nodejs/node/pull/53134 Refs: https://github.com/nodejs/node/issues/52809 Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> PR-URL: https://github.com/nodejs/node/pul...
[ { "path": "common.gypi", "patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.4',\n+ 'v8_embedder_string': '-node.5',\n \n ##### V8 defaults for Node.js #####\n "...
2024-05-28T07:10:52
electron/electron
cff50ac65a9c6d4f53aa74570ea42859466c4469
a55c163db02a3092226ba20731b08292404561d4
fix: fix vibrancy applying without transparency on MacOS (#40109)
[ { "path": "shell/browser/native_window.cc", "patch": "@@ -101,6 +101,11 @@ NativeWindow::NativeWindow(const gin_helper::Dictionary& options,\n options.Get(options::kTransparent, &transparent_);\n options.Get(options::kEnableLargerThanScreen, &enable_larger_than_screen_);\n options.Get(options::kTitleB...
2023-10-06T18:57:26
vercel/next.js
61f0853021e078eed39d315719ec0c848843fdcd
6881843ac0c4c7d9fc1fdb55fe51bced1abca914
[turbopack] Fix a crash under turbopackPersistentCaching (#82592) Address a crash found at head when testing caching while switching back and forth from `dev` and `build`. ``` thread '<unnamed>' panicked at turbopack/crates/turbo-persistence/src/db.rs:798:17: attempt to subtract with overflow stack backtrace: 0:...
[ { "path": "turbopack/crates/turbo-persistence/src/compaction/selector.rs", "patch": "@@ -200,10 +200,13 @@ fn total_duplication_size(duplication: &IntervalMap<Option<DuplicationInfo>>) ->\n \n type MergeSegments = Vec<SmallVec<[usize; 1]>>;\n \n+/// Computes the set of merge segments that should be run to c...
2025-08-13T05:14:03
facebook/react
42eff4bc78a3636953c55096ca0b220c611a74cc
ed3c65caf042f75fe2fdc2a5e568a9624c6175fb
[tests] Fix assertions not flushed before act (#28745) Fixes some easy cases blocking https://github.com/facebook/react/pull/28737, I'll follow up with more complex/interesting cases in other PRs.
[ { "path": "packages/react-dom/src/__tests__/ReactCompositeComponent-test.js", "patch": "@@ -913,15 +913,13 @@ describe('ReactCompositeComponent', () => {\n await act(() => {\n root.render(<Wrapper name=\"A\" />);\n });\n+\n+ assertLog(['A componentWillMount', 'A render', 'A componentDidMoun...
2024-04-10T14:33:41
golang/go
ae0824883e7f851173ff1855ad1c638bec87a426
8dd7d2111b8622dac4b0127fa1d26da3c1c4c274
go/ast: deprecate FilterPackage, PackageExports, MergePackageFiles (More symbols that belong to the ast.Object deprecation.) Fixes #73088 Fixes #7124 Updates #52463 Updates #71122 Change-Id: I10e3ef35b587da2f3f0a65e9154e33bd53e7a093 Reviewed-on: https://go-review.googlesource.com/c/go/+/674176 LUCI-TryBot-Result: Go...
[ { "path": "api/next/73088.txt", "patch": "@@ -0,0 +1,7 @@\n+pkg go/ast, const FilterFuncDuplicates //deprecated #73088\n+pkg go/ast, const FilterImportDuplicates //deprecated #73088\n+pkg go/ast, const FilterUnassociatedComments //deprecated #73088\n+pkg go/ast, func FilterPackage //deprecated #73088\n+pkg ...
2025-05-19T18:11:51
nodejs/node
dfff61475eb2b31043947b914bdcabfae7a60c0a
69ad89f8eb47bebe90d0c6ba607b7628f103a076
deps: disable V8 concurrent sparkplug compilation It introduces process hangs on some platforms because Node.js doesn't tear down V8 correctly. Disable it while we work on a solution. Refs: https://github.com/nodejs/node/issues/47297 Refs: https://bugs.chromium.org/p/v8/issues/detail?id=13902 PR-URL: https://github.c...
[ { "path": "common.gypi", "patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.1',\n+ 'v8_embedder_string': '-node.2',\n \n ##### V8 defaults for Node.js #####\n "...
2023-04-06T12:50:56
electron/electron
73553032ea99929b1511d6e873ec81328a42a356
8f7a48879ef8633a76279803637cdee7f7c6cd4f
fix: toggling DevTools while minimized on Windows (#40091) fix: toggling devtools while minimized on Windows
[ { "path": "shell/browser/ui/views/inspectable_web_contents_view_views.cc", "patch": "@@ -142,8 +142,11 @@ void InspectableWebContentsViewViews::CloseDevTools() {\n \n devtools_visible_ = false;\n if (devtools_window_) {\n- inspectable_web_contents()->SaveDevToolsBounds(\n- devtools_window_->Ge...
2023-10-06T00:26:31
facebook/react
ed3c65caf042f75fe2fdc2a5e568a9624c6175fb
3f9e237a2feb74f1fca23b76d9d2e9e1713e2ba1
Warn if outdated JSX transform is detected (#28781) We want to warn if we detect that an app is using an outdated JSX transform. We can't just warn if `createElement` is called because we still support `createElement` when it's called manually. We only want to warn if `createElement` is output by the compiler. T...
[ { "path": "packages/react-dom/src/__tests__/ReactDeprecationWarnings-test.js", "patch": "@@ -91,6 +91,9 @@ describe('ReactDeprecationWarnings', () => {\n );\n });\n \n+ // Disabling this until #28732 lands so we can assert on the warning message.\n+ // (It's already disabled in all but the Meta buil...
2024-04-09T21:13:19
vercel/next.js
7cc0ed1fba6badef4375b34c3769635773484eac
9c9aaed5bb9338ef31b0517ccf0ab4414f2093d8
Fix: Resolve <Head> PPR resume mismatch by search params (#82587) The `key` prop on `<Head>` component differs during prerender and a PPR resume because of search params being part of the key, causing the resume to treat them as distinct components, hence the error\*. However, it is necessary semantically to include s...
[ { "path": "packages/next/src/client/components/app-router.tsx", "patch": "@@ -474,8 +474,17 @@ function Router({\n //\n // The `key` is used to remount the component whenever the head moves to\n // a different segment.\n- const [headCacheNode, headKey] = matchingHead\n- head = <Head key={h...
2025-08-13T00:51:34
golang/go
3a3c006ac07886aa923a8aad0a4b3ed954640973
ed70477909c97f86f8d73bee2d8680b6788acec7
crypto/tls: enable signature algorithm BoGo tests (and fix two bugs) The two bugs are very minor: - We were trying to set the ConnectionState CurveID field even if the RSA key exchange was in use - We were sending the wrong alert from TLS 1.2 clients if none of the certificate signature algorithms were supported...
[ { "path": "src/crypto/tls/auth.go", "patch": "@@ -149,20 +149,18 @@ func legacyTypeAndHashFromPublicKey(pub crypto.PublicKey) (sigType uint8, hash c\n var rsaSignatureSchemes = []struct {\n \tscheme SignatureScheme\n \tminModulusBytes int\n-\tmaxVersion uint16\n }{\n \t// RSA-PSS is used with ...
2025-05-23T16:04:36
nodejs/node
bb405210c58919a61d8b2dd9577411784bcbed85
be4babb3c2cb46030057577bc93153ebd245f2a3
test_runner: support typescript module mocking PR-URL: https://github.com/nodejs/node/pull/54878 Fixes: https://github.com/nodejs/node/issues/54428 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Erick Wendel <erick.w...
[ { "path": "lib/internal/modules/esm/translators.js", "patch": "@@ -459,7 +459,7 @@ translators.set('wasm', async function(url, source) {\n // Strategy for loading a commonjs TypeScript module\n translators.set('commonjs-typescript', function(url, source) {\n emitExperimentalWarning('Type Stripping');\n- ...
2024-09-19T13:36:52
electron/electron
83a928f6e3fa3567462dd90eeb50666af0dd4dff
3392d9a2e74973960ca516adc1c1684e03f78414
fix: crashed events deprecation (#40090)
[ { "path": "lib/browser/api/app.ts", "patch": "@@ -114,5 +114,11 @@ for (const name of events) {\n }\n \n // Deprecation.\n-deprecate.event(app, 'gpu-process-crashed', 'child-process-gone');\n-deprecate.event(app, 'renderer-process-crashed', 'render-process-gone');\n+deprecate.event(app, 'gpu-process-crashed...
2023-10-05T23:57:14
vercel/next.js
9c9aaed5bb9338ef31b0517ccf0ab4414f2093d8
b1c08857cb2ece10cc373747031555ac8af7fb89
fix router handling when setting a location response header (#82588) When middleware sets a `Location` header on the response, we should not assume that the target URL is the one we want to handle the request. We only want to route to the underlying location header when a rewrite is explicitly triggered rather than re...
[ { "path": "packages/next/src/server/lib/router-utils/resolve-routes.ts", "patch": "@@ -18,7 +18,10 @@ import { formatHostname } from '../format-hostname'\n import { toNodeOutgoingHttpHeaders } from '../../web/utils'\n import { isAbortError } from '../../pipe-readable'\n import { getHostname } from '../../.....
2025-08-13T00:26:49
facebook/react
3f9e237a2feb74f1fca23b76d9d2e9e1713e2ba1
64c8d2d45d49dbb2f59ea23e5e739eb79e124abc
Fix: Suspend while recovering from hydration error (#28800) Fixes a bug that happens when an error occurs during hydration, React switches to client rendering, and then the client render suspends. It works correctly if there's a Suspense boundary on the stack, but not if it happens in the shell of the app. Prior...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzShellHydration-test.js", "patch": "@@ -548,4 +548,79 @@ describe('ReactDOMFizzShellHydration', () => {\n ]);\n expect(container.textContent).toBe('Hello world');\n });\n+\n+ it(\n+ 'handles suspending while recovering from a hydration err...
2024-04-09T21:11:46
golang/go
ed70477909c97f86f8d73bee2d8680b6788acec7
787362327fbc2ec010659cd9067cc899cc15203c
errors: add joinError Unwrap example Change-Id: Id7489247e9bdd413f82fdf5a70197856c47abfb5 Reviewed-on: https://go-review.googlesource.com/c/go/+/674336 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: Sean Liao <sean@liao.dev> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservice...
[ { "path": "src/errors/example_test.go", "patch": "@@ -66,11 +66,13 @@ func ExampleJoin() {\n \tif errors.Is(err, err2) {\n \t\tfmt.Println(\"err is err2\")\n \t}\n+\tfmt.Println(err.(interface{ Unwrap() []error }).Unwrap())\n \t// Output:\n \t// err1\n \t// err2\n \t// err is err1\n \t// err is err2\n+\t// ...
2025-05-20T05:40:18
nodejs/node
be4babb3c2cb46030057577bc93153ebd245f2a3
6031a4bc7cab01623d93e75d17c5b796b5bb831e
module: report unfinished TLA in ambiguous modules PR-URL: https://github.com/nodejs/node/pull/54980 Fixes: https://github.com/nodejs/node/issues/54931 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -1381,7 +1381,7 @@ function loadESMFromCJS(mod, filename) {\n if (isMain) {\n require('internal/modules/run_main').runEntryPointWithESMLoader((cascadedLoader) => {\n const mainURL = pathToFileURL(filename).href;\n- cascadedLoader....
2024-09-19T10:34:13
electron/electron
3392d9a2e74973960ca516adc1c1684e03f78414
5ad69df52ea16a21561992f63b17cbaae866b77d
fix: all children showing when showing child window (#40062)
[ { "path": "shell/browser/native_window_mac.h", "patch": "@@ -189,6 +189,9 @@ class NativeWindowMac : public NativeWindow,\n has_deferred_window_close_ = defer_close;\n }\n \n+ void set_wants_to_be_visible(bool visible) { wants_to_be_visible_ = visible; }\n+ bool wants_to_be_visible() const { return ...
2023-10-05T13:19:57
facebook/react
64c8d2d45d49dbb2f59ea23e5e739eb79e124abc
7f5d25e23e82adef262493794010385f1955f0b6
Attempt to fix diff syncing for Meta (#28801) #28796 broke Meta's PR syncing tool, hoping this fixes it
[ { "path": ".github/workflows/commit_artifacts.yml", "patch": "@@ -132,7 +132,7 @@ jobs:\n ./compiled/facebook-www/eslint-plugin-react-hooks.js\n \n # Move unstable_server-external-runtime.js into facebook-www\n- mv build/oss-stable/react-dom/unstable_server-external-runtime.js...
2024-04-09T21:05:18
vercel/next.js
2036a5b1bf844a5492e109a841b47317613eface
3d5e456a928041ca638ebca54ab511a23d70cd75
[Cache Components] Avoid cache misses when resuming a cached page (#82578) When a page component (or a parallel route slot) is cached, but other parts of the component tree are dynamic, we generate a partially static shell at buildtime that's resumed at runtime. During the resume, we need to ensure that the cache key ...
[ { "path": "packages/next/errors.json", "patch": "@@ -776,5 +776,6 @@\n \"775\": \"Node.js instrumentation extensions should not be loaded in the Edge runtime.\",\n \"776\": \"`unstable_isUnrecognizedActionError` can only be used on the client.\",\n \"777\": \"Invariant: failed to find source route %s ...
2025-08-12T19:40:33
golang/go
3fd729b2a14a7efcf08465cbea60a74da5457f06
c07ffe980a52b309d48d33265cfee438a01cb513
log/slog: make TextHandler discard empty Source Fixes #73808 Change-Id: Ica4b7a63eebbf0fff41d68f4de928f9da90c8ada Reviewed-on: https://go-review.googlesource.com/c/go/+/674875 Reviewed-by: Jonathan Amsterdam <jba@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Sean Liao <sean@liao.dev> LU...
[ { "path": "src/log/slog/handler.go", "patch": "@@ -492,6 +492,9 @@ func (s *handleState) appendAttr(a Attr) bool {\n \t// Special case: Source.\n \tif v := a.Value; v.Kind() == KindAny {\n \t\tif src, ok := v.Any().(*Source); ok {\n+\t\t\tif src.isEmpty() {\n+\t\t\t\treturn false\n+\t\t\t}\n \t\t\tif s.h.js...
2025-05-21T09:58:13
nodejs/node
f8b7a171463e775da304bccf4cf165e634525c7e
50136a167ddf94328c53f10c804804f0ffeb0ea2
test: update test to support OpenSSL32 Refs: https://github.com/nodejs/node/issues/53382 This test fails on OpenSSL32 because it complains the key being used is too short. It seems to have been missed when the test suite was udpated to have a Makefile to generate key material as the keys are hard coded in the test a...
[ { "path": "test/parallel/test-tls-cert-regression.js", "patch": "@@ -21,50 +21,26 @@\n \n 'use strict';\n const common = require('../common');\n+const fixtures = require('../common/fixtures');\n \n if (!common.hasCrypto)\n common.skip('missing crypto');\n \n const tls = require('tls');\n \n-const cert =\n...
2024-09-18T16:36:08
electron/electron
b3a1c6d13cfad8b0519dd7957c2f2db10acf98e8
b0590b6ee874fbeac49bb5615525d145835eb64f
fix: error using `webcrypto.subtle.importKey()` (#40070) fix: error using webcrypto.subtle.importKey()
[ { "path": "patches/node/.patches", "patch": "@@ -51,3 +51,4 @@ net_use_asserts_in_js_socket_stream_to_catch_races_in_future.patch\n lib_fix_broadcastchannel_initialization_location.patch\n src_adapt_to_v8_exception_api_change.patch\n lib_test_do_not_hardcode_buffer_kmaxlength.patch\n+fix_handle_possible_dis...
2023-10-05T08:46:53
facebook/react
7f5d25e23e82adef262493794010385f1955f0b6
bf40b024421a0e1f2f882fd7171ea39cd74c88df
Fix cloneElement using string ref w no owner (#28797) Fix for an issue introduced in #28473 where cloneElement() with a string ref fails due to lack of an owner. We should use the current owner in this case. --------- Co-authored-by: Rick Hanlon <rickhanlonii@fb.com>
[ { "path": "packages/react/src/__tests__/ReactElementClone-test.js", "patch": "@@ -274,8 +274,56 @@ describe('ReactElementClone', () => {\n \n const root = ReactDOMClient.createRoot(document.createElement('div'));\n await act(() => root.render(<Grandparent />));\n- expect(component.childRef).toEqu...
2024-04-09T20:43:49
vercel/next.js
1e5932d5503d833b42fca86eb84d0cf508dd7139
4a0763e4524d298fa97e2f6f8217780c28555930
[Runtime prefetch] resolve runtime APIs in a separate task (#82475) In a runtime prefetch, sync IO is dangerous, because it makes us abort the whole prerender. If this abort happens early, a runtime prefetch can end up giving us *less* data than a static prefetch. To prevent this, we can split the final prerender into...
[ { "path": "packages/next/errors.json", "patch": "@@ -775,5 +775,6 @@\n \"774\": \"Route %s used %s outside of a Server Component. This is not allowed.\",\n \"775\": \"Node.js instrumentation extensions should not be loaded in the Edge runtime.\",\n \"776\": \"`unstable_isUnrecognizedActionError` can o...
2025-08-12T17:42:28
golang/go
c07ffe980a52b309d48d33265cfee438a01cb513
3db50924e2c74dfa0cb9295215529a65880eb708
testing/synctest: correct duration in doc example Fixes #73839 Change-Id: I961641c6d8244cdeb101a3c9ae91931828a893ad Reviewed-on: https://go-review.googlesource.com/c/go/+/676035 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com...
[ { "path": "src/testing/synctest/synctest.go", "patch": "@@ -24,11 +24,11 @@\n //\t\tsynctest.Test(t, func(t *testing.T) {\n //\t\t\tstart := time.Now() // always midnight UTC 2001-01-01\n //\t\t\tgo func() {\n-//\t\t\t\ttime.Sleep(1 * time.Nanosecond)\n-//\t\t\t\tt.Log(time.Since(start)) // always logs \"1n...
2025-05-24T11:10:12
rust-lang/rust
d13828b2c7cedb6147999222118cd87bf4fe28cd
a8bbacd2702cfbc260b52f9c19fc5c01c510a7bb
fix: re-format the changes
[ { "path": "src/librustdoc/html/render/mod.rs", "patch": "@@ -59,8 +59,8 @@ use rustc_hir::def_id::{DefId, DefIdSet};\n use rustc_hir::{ConstStability, Mutability, RustcVersion, StabilityLevel, StableSince};\n use rustc_middle::ty::print::PrintTraitRefExt;\n use rustc_middle::ty::{self, TyCtxt};\n-use rustc_...
2026-02-15T14:34:53
electron/electron
b0590b6ee874fbeac49bb5615525d145835eb64f
713d8c4167a07971775db847adca880f49e8d381
fix: failing build with `enable_electron_extensions=false` (#40032) * fix: ENABLE_EXTENSIONS -> ENABLE_ELECTRON_EXTENSIONS * fix: extension guard fixes * chore: fix linker errors
[ { "path": "chromium_src/BUILD.gn", "patch": "@@ -342,6 +342,34 @@ static_library(\"chrome\") {\n \"//components/pdf/renderer\",\n ]\n }\n+ } else {\n+ # These are required by the webRequest module.\n+ sources += [\n+ \"//extensions/browser/api/declarative_net_request/request_ac...
2023-10-04T08:40:01
facebook/react
7f93cb41c8e1352eec158e508bc612025425266d
f6131653570bbbf62d642ba9343b9cd0ab1ae97c
[DOM] Infer react-server entries bundles if not explicitly configured (#28795) When packaging we want to infer that a bundle exists for a `react-server` file even if it isn't explicitly configured. This is useful in particular for the react-server entrypoints that error on import that were recently added to `react-...
[ { "path": "packages/react-dom/src/ReactDOMSharedInternals.js", "patch": "@@ -47,8 +47,4 @@ const Internals: ReactDOMInternals = {\n usingClientEntryPoint: false,\n };\n \n-// if (__DEV__) {\n-// (Internals: any).usingClientEntryPoint = false;\n-// }\n-\n export default Internals;", "additions": 0, ...
2024-04-09T17:39:25
nodejs/node
50136a167ddf94328c53f10c804804f0ffeb0ea2
7e00be765090e122f377e4d83e58c26658d4bfbf
test_runner: avoid coverage report partial file names Co-author: Medhansh404 <21ucs126@lnmiit.ac.in> PR-URL: https://github.com/nodejs/node/pull/54379 Fixes: https://github.com/nodejs/node/issues/51299 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Mo...
[ { "path": "lib/internal/test_runner/utils.js", "patch": "@@ -1,8 +1,10 @@\n 'use strict';\n const {\n ArrayPrototypeFlatMap,\n+ ArrayPrototypeForEach,\n ArrayPrototypeJoin,\n ArrayPrototypeMap,\n+ ArrayPrototypePop,\n ArrayPrototypePush,\n ArrayPrototypeReduce,\n ArrayPrototypeSome,\n@@ -24,7 ...
2024-09-18T16:24:19
vercel/next.js
4ade2cf4c389933f434d3ea8cd9d8d8453daf0ef
4984ac44af186336f22061d7653bf17dd6846136
Turbopack: Watch parent directories before watching children in `non_recursive_helpers::start_watching_dir_and_parents` (#82454) Fixes a potential race condition https://github.com/vercel/next.js/pull/82130#discussion_r2249131891: > I think there is a race condition here, when the child dir is created while we are ...
[ { "path": "turbopack/crates/turbo-tasks-fs/src/watcher.rs", "patch": "@@ -287,23 +287,39 @@ mod non_recursive_helpers {\n dir_path: &Path,\n root_path: &Path,\n ) -> Result<()> {\n- let mut cur_path = dir_path;\n- loop {\n- start_watching_dir(&mut state.notify_wa...
2025-08-12T16:07:28
rust-lang/rust
a8bbacd2702cfbc260b52f9c19fc5c01c510a7bb
40a3ca1189940ad1805c8deb3ba60744fa16dc57
fix: remove unused import
[ { "path": "src/librustdoc/html/render/mod.rs", "patch": "@@ -60,7 +60,7 @@ use rustc_hir::{ConstStability, Mutability, RustcVersion, StabilityLevel, Stable\n use rustc_middle::ty::print::PrintTraitRefExt;\n use rustc_middle::ty::{self, TyCtxt};\n use rustc_span::symbol::{Symbol, sym};\n-use rustc_span::{Byt...
2026-02-15T14:26:54
golang/go
8cb0941a85de6ddbd6f49f8e7dc2dd3caeeee61c
68f4434df02c3d1bde5b42c9adeaf79d15858ff3
net: use runtime.AddCleanup instead of runtime.SetFinalizer Adds TODO for replacement of runtime.SetFinalizer. Fixes #70907 Change-Id: Ic009018a93ccc46a776ae34afac44635d2340cbf Reviewed-on: https://go-review.googlesource.com/c/go/+/638557 Reviewed-by: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golan...
[ { "path": "src/net/fd_fake.go", "patch": "@@ -104,13 +104,15 @@ func (fd *netFD) accept() (netfd *netFD, err error) {\n func (fd *netFD) setAddr(laddr, raddr Addr) {\n \tfd.laddr = laddr\n \tfd.raddr = raddr\n+\t// TODO Replace with runtime.AddCleanup.\n \truntime.SetFinalizer(fd, (*netFD).Close)\n }\n \n f...
2024-12-23T16:52:43
facebook/react
acef2f811125af250631965e6c1a8c7479b30b42
556a087de3c94761d3834b11c30630dcaa82600c
[DOM] Fix package.json files for #28784 (#28785) Missed some files for the react-server disallow client change in #28784
[ { "path": "packages/react-dom/package.json", "patch": "@@ -25,23 +25,28 @@\n \"files\": [\n \"LICENSE\",\n \"README.md\",\n- \"index.js\",\n \"client.js\",\n+ \"client.react-server.js\",\n+ \"index.js\",\n \"profiling.js\",\n- \"server.js\",\n+ \"profiling.react-server.js\",...
2024-04-08T22:49:18
nodejs/node
65768bca59f6d086beca782549a3d15a55988595
5e87577b4f37911c2279176f183514d9496a1ceb
cli: fix spacing for port range error PR-URL: https://github.com/nodejs/node/pull/54495 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "src/node_options.cc", "patch": "@@ -1165,7 +1165,7 @@ inline uint16_t ParseAndValidatePort(const std::string_view port,\n \n if (r.ec == std::errc::result_out_of_range ||\n (result != 0 && result < 1024)) {\n- errors->push_back(\" must be 0 or in range 1024 to 65535.\");\n+ errors->...
2024-09-18T09:18:16
electron/electron
9d0e6d09f0be0abbeae46dd3d66afd96d2daacaa
503ae86ab216406485bf437969da8c56266c3346
chore: bump chromium to 119.0.6043.0 (main) (#40045) * chore: bump chromium in DEPS to 119.0.6036.0 * chore: bump chromium in DEPS to 119.0.6037.0 * chore: bump chromium in DEPS to 119.0.6039.0 * chore: bump chromium in DEPS to 119.0.6041.0 * chore: update chromium patches * 4765230: Move //content/brow...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -775,6 +775,7 @@ step-mksnapshot-build: &step-mksnapshot-build\n fi\n sed $SEDOPTION '/.*builtins-pgo/d' out/Default/mksnapshot_args\n sed $SEDOPTION '/--turbo-profiling-input/d' out/Default/mksnapshot_args\n+ sed $SEDOPTION '/The gn...
2023-10-02T22:01:07
golang/go
c0e149b6b1aa2daca64c00804809bc2279e21eee
db3e02994c98f1d6dc00f7df807579c4619885c7
net/http: document that ServeMux.Handler can also synthetize a 405 Also, fix a minor typo in ServeMux.Handle and ServeMux.HandleFunc. Change-Id: I6a6a46565719104cb8f2484daf0e39f35b55a078 Reviewed-on: https://go-review.googlesource.com/c/go/+/675835 Reviewed-by: David Chase <drchase@google.com> Auto-Submit: Filippo Va...
[ { "path": "src/net/http/server.go", "patch": "@@ -2674,7 +2674,8 @@ func stripHostPort(h string) string {\n // the path that will match after following the redirect.\n //\n // If there is no registered handler that applies to the request,\n-// Handler returns a “page not found” handler and an empty pattern....
2025-05-23T10:44:24
vercel/next.js
4984ac44af186336f22061d7653bf17dd6846136
a5317ed693cdfd2c97f4313bedf3cec895561074
fix: Prevent duplicate file entries in modulesCode (#82550) Fixes: https://github.com/vercel/next.js/issues/82515 When global-error, and presumably other similar files are defined by users,`next build` (Webpack) outputs this to `.next/server/app/page.js`(removed some values for brevity, see OP for more): ```js l...
[ { "path": "packages/next/src/build/webpack/loaders/next-app-loader/index.ts", "patch": "@@ -287,7 +287,7 @@ async function createTreeCodeFromPath(\n \n // Fill in the loader tree for all of the special files types (layout, default, etc) at this level\n // `page` is not included here as it's adde...
2025-08-12T15:39:43
facebook/react
556a087de3c94761d3834b11c30630dcaa82600c
f62cf8c62052ae780d351090013f7155cf9a868c
[DOM] disallow client entrypoints with react-server condition (#28784) `react-server` precludes loading code that expects to be run in a client context. This includes react-dom/client react-dom/server react-dom/unstable_testing react-dom/profiling and react-dom/static This update makes importing any of these clie...
[ { "path": "packages/react-dom/npm/client.react-server.js", "patch": "@@ -0,0 +1,5 @@\n+'use strict';\n+\n+throw new Error(\n+ 'react-dom/client is not supported in React Server Components.'\n+);", "additions": 5, "deletions": 0, "language": "JavaScript" }, { "path": "packages/react-dom/...
2024-04-08T22:37:06
nodejs/node
7014e50ca32d39b94d04e04a5e6498e5c2f4346f
421977cd48264f6be43a94c19b1f5cc10f0b7bbb
lib: the REPL should survive deletion of Array.prototype methods Specifically, `delete Array.prototype.lastIndexOf` immediately crashes the REPL, as does deletion of a few other Array prototype methods. PR-URL: https://github.com/nodejs/node/pull/31457 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna He...
[ { "path": "lib/domain.js", "patch": "@@ -40,6 +40,7 @@ const {\n ReflectApply,\n SafeMap,\n SafeWeakMap,\n+ StringPrototypeRepeat,\n Symbol,\n } = primordials;\n \n@@ -131,7 +132,7 @@ const domainRequireStack = new Error('require(`domain`) at this point').stack;\n const { setUncaughtExceptionCaptur...
2024-09-17T15:08:43
electron/electron
93bcb30c3e84694d9df0d59fb15bd5bdb4617b2a
d301616f6087f306ac7bc53e5b6803f325255bd3
fix: `BroadcastChannel` initialization location (#40049) fix: `BroadcastChannel` initialization location (#37421) * fix: BroadcastChannel initialization location * chore: update patches --------- Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com>
[ { "path": "patches/node/.patches", "patch": "@@ -48,3 +48,4 @@ tls_ensure_tls_sockets_are_closed_if_the_underlying_wrap_closes.patch\n test_deflake_test-tls-socket-close.patch\n net_fix_crash_due_to_simultaneous_close_shutdown_on_js_stream.patch\n net_use_asserts_in_js_socket_stream_to_catch_races_in_future...
2023-10-02T08:57:09
vercel/next.js
a5317ed693cdfd2c97f4313bedf3cec895561074
756221bb2d4c0498fe1d36f1c68bf79944b4d4c0
fix: amp deprecation warning should assert on user config (#82572)
[ { "path": "packages/next/src/server/config.ts", "patch": "@@ -161,6 +161,26 @@ function assignDefaults(\n delete userConfig.exportTrailingSlash\n }\n \n+ // There are a good amount of test fixtures that have amp enabled\n+ // that also assert on stderr output being empty, so we're gating the\n+ // ...
2025-08-12T15:04:48
rust-lang/rust
71e4b03b02dcd190d48b508e14d70146fa7007ef
b451b42018616243f66ffd96f40b2cc1cee08561
fix: no complete suggest param in complex pattern Example --- ```rust fn foo(bar: u32) {} fn bar((a, bar$0)) {} ``` **Before this PR** ```rust fn foo(bar: u32) {} fn bar(bar: u32)) {} ``` **After this PR** Not complete `bar: u32`
[ { "path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/fn_param.rs", "patch": "@@ -25,7 +25,7 @@ pub(crate) fn complete_fn_param(\n ctx: &CompletionContext<'_>,\n pattern_ctx: &PatternContext,\n ) -> Option<()> {\n- let (ParamContext { param_list, kind, .. }, impl_or_trait) = ma...
2026-02-14T14:01:28
golang/go
db3e02994c98f1d6dc00f7df807579c4619885c7
db55b83ce437577c0738f56808853b078d656a0b
runtime/trace: fix flaky test for SetMinAge This change fixes the flaky test which expects setting SetMinAge to a small ammount. It expects two sync events but should realistically expect up to 3. Change-Id: Ibd02fe55ebca99eb880025eb968fcebae9cb09c9 Reviewed-on: https://go-review.googlesource.com/c/go/+/675597 Review...
[ { "path": "src/runtime/trace/flightrecorder_test.go", "patch": "@@ -170,7 +170,7 @@ func TestFlightRecorderLog(t *testing.T) {\n \t}\n }\n \n-func TestFlightRecorderOneGeneration(t *testing.T) {\n+func TestFlightRecorderGenerationCount(t *testing.T) {\n \ttest := func(t *testing.T, fr *trace.FlightRecorder)...
2025-05-22T17:33:28
facebook/react
6de7733e73152ecb9a0cb8bcf73dcc1c96ca7dde
4c12339ce3fa398050d1026c616ea43d43dcaf4a
feat[devtools]: ship source maps for content scripts and ignore list installHook script (#28730) ## Summary 1. RDT browser extension's content scripts will now ship source maps (without source in prod, to save some bundle size). 2. `installHook` content script will be ignore listed via `ignoreList` field in the ...
[ { "path": "packages/react-devtools-extensions/package.json", "patch": "@@ -39,7 +39,6 @@\n \"chrome-launch\": \"^1.1.4\",\n \"crx\": \"^5.0.0\",\n \"css-loader\": \"^1.0.1\",\n- \"devtools-ignore-webpack-plugin\": \"^0.1.1\",\n \"file-loader\": \"^6.1.0\",\n \"filesize\": \"^6.0.1\",\...
2024-04-08T17:10:09
nodejs/node
421977cd48264f6be43a94c19b1f5cc10f0b7bbb
a428b210669b656910dd10a036e4f349c3e9e85e
doc: fix history of `process.features` PR-URL: https://github.com/nodejs/node/pull/54982 Refs: https://github.com/nodejs/node/commit/aa0308d6182b2f7a2508373770952eefd2fdb0ac Refs: https://github.com/nodejs/node/commit/9010f5fbab2695e6c0435db396f3e92118da6d76 Refs: https://github.com/nodejs/node/commit/52a40e0fd5f59b29...
[ { "path": "doc/api/process.md", "patch": "@@ -1899,7 +1899,7 @@ previous setting of `process.exitCode`.\n ## `process.features.cached_builtins`\n \n <!-- YAML\n-added: REPLACEME\n+added: v12.0.0\n -->\n \n * {boolean}\n@@ -1909,7 +1909,7 @@ A boolean value that is `true` if the current Node.js build is cach...
2024-09-17T14:49:52
electron/electron
371e83a8d2390c63bc9171c0b3949b460ab9ad17
d6c8ff2e7050f30dffd784915bcbd2a9f993cdb2
fix: support esm entrypoint to utility process (#40047)
[ { "path": "lib/utility/init.ts", "patch": "@@ -1,5 +1,7 @@\n+import { pathToFileURL } from 'url';\n+\n import { ParentPort } from '@electron/internal/utility/parent-port';\n-const Module = require('module') as NodeJS.ModuleInternal;\n+\n const v8Util = process._linkedBinding('electron_common_v8_util');\n \n...
2023-09-29T21:38:37
vercel/next.js
756221bb2d4c0498fe1d36f1c68bf79944b4d4c0
bb617a8777a5b4e0d19e8729a059beeca9491608
Turbopack: fix module rules for `.module.scss` (#82570) It ran `postcss(webpack(postcss(filesource)))`, which doesn't work. And changing the order does make sense, since we do want Webpack (SCSS) to run first, and only then PostCSS? #82554 didn't catch every case
[ { "path": "test/e2e/app-dir/css-modules-rsc-postcss/app/other.module.scss", "patch": "@@ -0,0 +1,4 @@\n+.other {\n+ // some SCSS\n+ color: red;\n+}", "additions": 4, "deletions": 0, "language": "Unknown" }, { "path": "test/e2e/app-dir/css-modules-rsc-postcss/app/page.tsx", "patch":...
2025-08-12T14:17:26
rust-lang/rust
40a3ca1189940ad1805c8deb3ba60744fa16dc57
5d04477ea8118ba54d9ce402848dda19a41d61eb
fix: remove unused source span
[ { "path": "src/librustdoc/html/render/mod.rs", "patch": "@@ -2779,46 +2779,12 @@ fn render_call_locations<W: fmt::Write>(\n let needs_expansion = line_max - line_min > NUM_VISIBLE_LINES;\n let locations_encoded = serde_json::to_string(&line_ranges).unwrap();\n \n- let source_map = tcx...
2026-02-15T14:01:01
golang/go
db55b83ce437577c0738f56808853b078d656a0b
aec96d686be16fda519f6fd4a6e3bbfe3454c0b9
doc: fix TBD mark Change-Id: I2133e3c62b4de0cec08eeb120d593c644643a62c Reviewed-on: https://go-review.googlesource.com/c/go/+/675755 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Keith Randall <khr@google.com> LUCI-TryBot-Result: Go LUCI <golang-sc...
[ { "path": "doc/next/5-toolchain.md", "patch": "@@ -38,7 +38,7 @@ successfully in Go 1.25. If this change is affecting your code, the solution is\n the non-nil error check earlier in your code, preferably immediately after\n the error-generating statement.\n \n-<!-- CLs 653856, 657937, 663795, TBD 664299 -->...
2025-05-22T22:17:37
facebook/react
5bf2323880ec6e00b21d2cbaea98ce9dbf83dbeb
9a6cb241504027688c166f7fedba8bd443cb9639
Fix missing playground snapshot ghstack-source-id: f2c8a542b525ab8c91beaad6327c128a96d122f6 Pull Request resolved: https://github.com/facebook/react-forget/pull/2827
[ { "path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/results.txt", "patch": "@@ -0,0 +1,11 @@\n+function MyApp() {\n+  const $ = useMemoCache(1);\n+  let t0;\n+  if ($[0] === Symbol.for(\"react.memo_cache_sentinel\")) {\n+    t0 = <div>Hello World</div>;\n+    $[0] = t0;\n+  } else {...
2024-04-08T15:23:29
nodejs/node
c6269cb0693bde94b610ed5c613af7e2db63e144
3c4ef343eeb4a65e4fdf4b180a5fd9766aaf4913
tools: fix path of abseil file in v8.gyp PR-URL: https://github.com/nodejs/node/pull/54659 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Luigi Pinca <luigip...
[ { "path": "tools/v8_gypfiles/v8.gyp", "patch": "@@ -2233,6 +2233,7 @@\n '<(ABSEIL_ROOT)/absl/base/internal/low_level_alloc.h',\n '<(ABSEIL_ROOT)/absl/base/internal/low_level_alloc.cc',\n '<(ABSEIL_ROOT)/absl/base/internal/low_level_scheduling.h',\n+ '<(ABSEIL_ROOT)/absl/base/i...
2024-09-17T11:47:08
vercel/next.js
55f705f1ab8e50d9012a4e0b88b8277fbdc85d8e
2bca1fde21db21e39e35c30a5c9eb88cb06178ee
fix(next/image): handle empty buffer and experimental flag for `skipMetadata` (#82569) As a follow up to PR https://github.com/vercel/next.js/pull/82538 this PR adds an experimental flag to optionally skip `sharp.metadata()` and rely only on the JS implementation for format detection.
[ { "path": "packages/next/src/server/config-schema.ts", "patch": "@@ -385,6 +385,7 @@ export const configSchema: zod.ZodType<NextConfig> = z.lazy(() =>\n imgOptTimeoutInSeconds: z.number().int().optional(),\n imgOptMaxInputPixels: z.number().int().optional(),\n imgOptSequentialRead: z...
2025-08-12T14:12:52
rust-lang/rust
88f0ac34dce0e0d21da576aa111ce3b7d66bfafc
ce0bf0b22b646bacf91f73393483f684a44848ca
Fix const normalization for generic const items with trait assoc consts
[ { "path": "compiler/rustc_trait_selection/src/traits/query/normalize.rs", "patch": "@@ -376,10 +376,14 @@ impl<'a, 'tcx> QueryNormalizer<'a, 'tcx> {\n // `tcx.normalize_canonicalized_projection` may normalize to a type that\n // still has unevaluated consts, so keep normalizing here if that'...
2026-02-07T09:51:44
golang/go
aec96d686be16fda519f6fd4a6e3bbfe3454c0b9
c684dfcb8a8fe38a8414bfd07b94e9995e5cd308
doc: mention stack allocation of variable-sized make calls Also mention the bisect tool and flag used to track down incorrect uses. Change-Id: Id36a236e1bb2733b8611b22a5b16916e7d9f5522 Reviewed-on: https://go-review.googlesource.com/c/go/+/666075 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Keith ...
[ { "path": "doc/next/5-toolchain.md", "patch": "@@ -38,6 +38,18 @@ successfully in Go 1.25. If this change is affecting your code, the solution is\n the non-nil error check earlier in your code, preferably immediately after\n the error-generating statement.\n \n+<!-- CLs 653856, 657937, 663795, TBD 664299 --...
2025-04-16T20:50:44
electron/electron
d6c8ff2e7050f30dffd784915bcbd2a9f993cdb2
d002f16157bbc7f4bc70f2db6edde21d74c02276
chore: bump chromium to 119.0.6029.0 (main) (#39944) * chore: bump chromium in DEPS to 119.0.6021.0 * 4727729: Initial ScreenCaptureKit AudioInputStream implementation https://chromium-review.googlesource.com/c/chromium/src/+/4727729 * chore: fixup patch indices * chore: bump chromium in DEPS to 119.0.6023...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -68,8 +68,8 @@ executors:\n version:\n description: \"xcode version\"\n type: enum\n- enum: [\"14.3.0\", \"14.0.0\"]\n- default: 14.3.0\n+ enum: [\"15.0.0\", \"14.0.0\"]\n+ default: 15.0.0\n macos:\n ...
2023-09-29T05:26:41
nodejs/node
3c4ef343eeb4a65e4fdf4b180a5fd9766aaf4913
d17fefcd71658ffd7244405034bbdecb91e33745
module: remove bogus assertion in CJS entrypoint handling with --import The synchronous CJS translator can handle entrypoints now, this can be hit when --import is used, so lift the bogus assertions and added tests. PR-URL: https://github.com/nodejs/node/pull/54592 Fixes: https://github.com/nodejs/node/issues/54577 R...
[ { "path": "lib/internal/modules/esm/translators.js", "patch": "@@ -240,11 +240,9 @@ function createCJSModuleWrap(url, source, isMain, loadCJS = loadCJSModule) {\n \n translators.set('commonjs-sync', function requireCommonJS(url, source, isMain) {\n initCJSParseSync();\n- assert(!isMain); // This is only...
2024-08-27T15:49:25
facebook/react
e63918d2cd53b03c19119b475e116d1b45fd0f84
f86afca090b668d8be10b642750844759768d1ad
Add Promise as a child test to Flight fixture (#28778)
[ { "path": "fixtures/flight/__tests__/__e2e__/smoke.test.js", "patch": "@@ -13,7 +13,9 @@ test('smoke test', async ({page}) => {\n pageErrors.push(error.stack);\n });\n await page.goto('/');\n- await expect(page.locator('h1')).toHaveText('Hello World');\n+ await expect(page.getByTestId('promise-as-...
2024-04-08T15:06:17
rust-lang/rust
9fb9225cf498b6f215502df4bf0023809c2f3056
75b9d89c68a4a92758349272aa4e35a8eb7a6708
Disable debug_assert_not_in_new_nodes for multiple threads
[ { "path": "compiler/rustc_middle/src/dep_graph/graph.rs", "patch": "@@ -9,7 +9,7 @@ use rustc_data_structures::fx::{FxHashMap, FxHashSet};\n use rustc_data_structures::profiling::QueryInvocationId;\n use rustc_data_structures::sharded::{self, ShardedHashMap};\n use rustc_data_structures::stable_hasher::{Has...
2026-02-15T11:41:46
vercel/next.js
bd802d13277f4b44d5cf4c1f1d61f9c32956bbc3
5bbd5ddf82e6c917b98c72a1632a7d2fffdf562d
[turbopack] Handle relative paths before matching in node file traces (#82539) # Fix glob handling for NFT JSON asset includes and excludes The current webpack version uses the https://www.npmjs.com/package/glob package to match and notably only handles `../` when it appears in a prefix position ([ref](https://www.n...
[ { "path": "crates/next-api/src/nft_json.rs", "patch": "@@ -4,7 +4,7 @@ use anyhow::{Result, bail};\n use serde_json::json;\n use turbo_rcstr::RcStr;\n use turbo_tasks::{\n- ReadRef, ResolvedVc, TryFlatJoinIterExt, Vc,\n+ FxIndexMap, ReadRef, ResolvedVc, TryFlatJoinIterExt, TryJoinIterExt, Vc,\n gr...
2025-08-12T11:13:43
electron/electron
d002f16157bbc7f4bc70f2db6edde21d74c02276
dd7395ebedf0cfef3129697f9585035a4ddbde63
feat: `systemPreferences.getColor` should return RGBA instead of RGB (#38960) * fix: return RGBA hex value from `SystemPreferences.getColor` * docs: update docs to match changes of last commit * fix: GetColor on windows now returns RGBA too * fix: update tests for getColor RGBA on Windows --------- Co-a...
[ { "path": "docs/api/system-preferences.md", "patch": "@@ -306,7 +306,7 @@ This API is only available on macOS 10.14 Mojave or newer.\n * `window-background` - The background of a window.\n * `window-frame-text` - The text in the window's titlebar area.\n \n-Returns `string` - The system color settin...
2023-09-28T22:56:16
nodejs/node
305137faaec137a1f0c40bafd0edac0eed7b8ead
7feff2434dab5a45ba1fe4f4bc72cf521ebd28c5
doc: fix typo callsite.lineNumber PR-URL: https://github.com/nodejs/node/pull/54969 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
[ { "path": "doc/api/util.md", "patch": "@@ -395,7 +395,7 @@ function exampleFunction() {\n console.log(`CallSite ${index + 1}:`);\n console.log(`Function Name: ${callSite.functionName}`);\n console.log(`Script Name: ${callSite.scriptName}`);\n- console.log(`Line Number: ${callSite.lineNumer}`)...
2024-09-16T20:25:24
golang/go
c684dfcb8a8fe38a8414bfd07b94e9995e5cd308
bfbf736564925fd91701a08395f903955cb4cbc7
runtime: don't spin looking for a tiny alloc address with asan or race CL 674655 modified the checkfinalizers test to spin looking for an appropriate address to trip the detector, but this doesn't work with ASAN or in race mode, which both disable the tiny allocator. Fixes #73834. Change-Id: I27416da1f29cd9532716985...
[ { "path": "src/runtime/testdata/testprog/checkfinalizers.go", "patch": "@@ -5,6 +5,8 @@\n package main\n \n import (\n+\t\"internal/asan\"\n+\t\"internal/race\"\n \t\"runtime\"\n \t\"runtime/debug\"\n \t\"unsafe\"\n@@ -39,20 +41,25 @@ func DetectFinalizerAndCleanupLeaks() {\n \t\t**cNoLeak = x\n \t}, int(0)...
2025-05-22T00:29:14
facebook/react
9a6cb241504027688c166f7fedba8bd443cb9639
0d0f7c2ad178cc546f04bf5b302d0c27609bc3cc
[ez] Fix comments to be star blocks ghstack-source-id: 6a9e844a3ba548d3bf2b7373dc023ad42c2e719b Pull Request resolved: https://github.com/facebook/react-forget/pull/2826
[ { "path": "compiler/packages/babel-plugin-react-forget/src/CompilerError.ts", "patch": "@@ -9,17 +9,29 @@ import type { SourceLocation } from \"./HIR\";\n import { assertExhaustive } from \"./Utils/utils\";\n \n export enum ErrorSeverity {\n- // Invalid JS syntax, or valid syntax that is semantically inval...
2024-04-08T14:55:55
rust-lang/rust
7733f65ff9fbd5b033e5ad012250f0fc4bee44ad
646418838fc494822f4814e6fd58a59f08d3575a
fix: use `ExprIsRead::Yes` for rhs of ordinary assignments the rhs of an ordinary assignment `x = *never_ptr` was inferred with `ExprIsRead::No`, which prevented `NeverToAny` coercion for place expressions of type `!`. this caused false type mismatches and missing divergence detection. the destructuring assignment pat...
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/infer/expr.rs", "patch": "@@ -751,7 +751,7 @@ impl<'db> InferenceContext<'_, 'db> {\n \n if let Some(lhs_ty) = lhs_ty {\n self.write_pat_ty(target, lhs_ty);\n- self.infer_expr_coerce(value, &Expectati...
2026-02-15T11:37:51
vercel/next.js
5bbd5ddf82e6c917b98c72a1632a7d2fffdf562d
39fffcc300473ae2f9568d5c993f3e866cfd03b3
Turbopack: improve Lightning CSS error handling (#82561) Don't return the `Result:Err`, but turn into an issue and return `Unparseable` Also fixes the location translation: Lightning CSS uses 1-based columns, while Turbopack uses 0-based column indices.
[ { "path": "test/development/acceptance-app/ReactRefreshLogBox.test.ts", "patch": "@@ -415,13 +415,13 @@ describe('ReactRefreshLogBox app', () => {\n if (isTurbopack) {\n await expect(browser).toDisplayRedbox(`\n {\n- \"description\": \"Parsing css source code failed\",\n+ \"...
2025-08-12T11:12:17
electron/electron
e3e793d25bfa04f3003fdd09cb78c3ff4afc08e7
da92c9aa27fd9d0085d957f0e17bd0ca7b5ad898
chore: remove invalid constexpr qualification (#40006) GetPathConstant calls base::internal::flat_tree<Key, GetKeyFromValue, KeyCompare, Container>::find(Key const&) const which is not constexpr. GCC 12 and earlier raise a compile error on this.
[ { "path": "shell/browser/api/electron_api_app.cc", "patch": "@@ -433,7 +433,7 @@ IconLoader::IconSize GetIconSizeByString(const std::string& size) {\n }\n \n // Return the path constant from string.\n-constexpr int GetPathConstant(base::StringPiece name) {\n+int GetPathConstant(base::StringPiece name) {\n ...
2023-09-28T16:49:09
nodejs/node
c1afd2c8e3298c28a0ea7a14b5e0761e688e5697
53ede878a51aee2dd2d1c97b5cefa43ae12f14aa
fs: translate error code properly in cpSync UV error code needs to be negative integer so it can be mapped correctly. The filesystem error are positive integer, so we need to handle it before throwing. Co-authored-by: Jake Yuesong Li <jake.yuesong@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54906 Reviewed-...
[ { "path": "src/node_file.cc", "patch": "@@ -3147,7 +3147,14 @@ static void CpSyncCheckPaths(const FunctionCallbackInfo<Value>& args) {\n ? std::filesystem::symlink_status(src_path, error_code)\n : std::filesystem::status(src_path, error_code);\n if (error_co...
2024-09-16T12:41:55
golang/go
bfbf736564925fd91701a08395f903955cb4cbc7
b1f259b1b42f055863a67492e7815ec752eae56b
cmd/compile: do not shapify when reading reshaping expr Fixes #71184 Change-Id: I22e7ae5203311e86a90502bfe155b0597007887d Reviewed-on: https://go-review.googlesource.com/c/go/+/641955 Auto-Submit: Cuong Manh Le <cuong.manhle.vn@gmail.com> Reviewed-by: Keith Randall <khr@google.com> LUCI-TryBot-Result: Go LUCI <golang...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -49,6 +49,9 @@ type pkgReader struct {\n \t// but bitwise inverted so we can detect if we're missing the entry\n \t// or not.\n \tnewindex []index\n+\n+\t// indicates whether the data is reading during reshaping.\n+\treshaping bool\n }\n \n ...
2025-01-10T05:49:59
facebook/react
0d0f7c2ad178cc546f04bf5b302d0c27609bc3cc
1f35f7e320bd2f75421a7d4b0b13cf2a7604a980
Update ValidatePreservedManualMemoization severity to CannotPreserveMemoization We do need to fix the error location to point to the "callsite" rather than the definition of the useMemo callback, but that aside, even if the error message were perfect, it's not meant to be actionable to the user. So let's change the s...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Validation/ValidatePreservedManualMemoization.ts", "patch": "@@ -439,7 +439,7 @@ class Visitor extends ReactiveFunctionVisitor<VisitorState> {\n reason:\n \"This value was manually memoized, but cannot be memoized under For...
2024-04-08T14:55:54
vercel/next.js
333489d8dbfacfbe3c91b3f8945503192a93ace8
b8508126f99bba26fcf6511b3637f3f50eeba9e7
Turbopack: fix postcss in RSC CSS (#82554) ### What? make sure to apply PostCSS on .module.css that is requested from RSC. Fixes a regression from #82448 Closes #82545
[ { "path": "test/e2e/app-dir/css-modules-rsc-postcss/app/layout.tsx", "patch": "@@ -0,0 +1,8 @@\n+import { ReactNode } from 'react'\n+export default function Root({ children }: { children: ReactNode }) {\n+ return (\n+ <html>\n+ <body>{children}</body>\n+ </html>\n+ )\n+}", "additions": 8, ...
2025-08-12T08:54:17
electron/electron
4cf6884dd418aa7d6e4dc549efc3db1ee2a67900
94585f5889b83d4961a57619aab4f1f041f5b857
fix: detect screen readers by testing their existences (#39988)
[ { "path": "shell/browser/native_window_views_win.cc", "patch": "@@ -7,6 +7,7 @@\n #include <wrl/client.h>\n \n #include \"base/win/atl.h\" // Must be before UIAutomationCore.h\n+#include \"base/win/scoped_handle.h\"\n #include \"content/public/browser/browser_accessibility_state.h\"\n #include \"shell/brow...
2023-09-28T15:17:42
nodejs/node
53ede878a51aee2dd2d1c97b5cefa43ae12f14aa
91952103991b809805115ac176b05cd34144bae3
src: add `--env-file-if-exists` flag Fixes: https://github.com/nodejs/node/issues/50993 Refs: https://github.com/nodejs/node/issues/51451 test: remove unnecessary comment src: conform to style guidelines src: change flag to `--env-file-optional` test: revert automatic linter changes doc: fix typos src: change fl...
[ { "path": "doc/api/cli.md", "patch": "@@ -828,6 +828,8 @@ in the file, the value from the environment takes precedence.\n You can pass multiple `--env-file` arguments. Subsequent files override\n pre-existing variables defined in previous files.\n \n+An error is thrown if the file does not exist.\n+\n ```ba...
2024-09-16T00:58:16
facebook/react
1f35f7e320bd2f75421a7d4b0b13cf2a7604a980
76bb13cd26717312fc5fc5d4a69b4938e7ce27a9
Add new ErrorSeverity.CannotPreserveMemoization This adds a new category of error where the compiler cannot preserve memoization exactly how as it was originally authored. We're adding a new category here because it's not an actionable error, and allows us to more specifically control whether it's reportable or not. ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/CompilerError.ts", "patch": "@@ -15,6 +15,8 @@ export enum ErrorSeverity {\n InvalidReact = \"InvalidReact\",\n // Incorrect configuration of the compiler.\n InvalidConfig = \"InvalidConfig\",\n+ // Code that can reasonably occur and that doe...
2024-04-08T14:55:53
golang/go
b1f259b1b42f055863a67492e7815ec752eae56b
155ba387a93fddbd6ced288fe539a55c31b2597e
cmd/compile: fix ICE with recursive alias type parameter CL 585399 fixed an initialization loop during IR contruction that involving alias type, by avoiding publishing alias declarations until the RHS type expression has been constructed. There's an assertion to ensure that the alias's type must be the same during th...
[ { "path": "src/cmd/compile/internal/noder/reader.go", "patch": "@@ -762,7 +762,7 @@ func (pr *pkgReader) objIdxMayFail(idx index, implicits, explicits []*types.Type\n \t\tif hack {\n \t\t\tif sym.Def != nil {\n \t\t\t\tname = sym.Def.(*ir.Name)\n-\t\t\t\tassert(name.Type() == typ)\n+\t\t\t\tassert(types.Ide...
2025-04-25T12:13:52
vercel/next.js
cc5e9e67006b24b808217a34528dff3455905ee3
4dc34109a49b688752572c9df480fde8d1773e5b
Fix: Allow dynamic rendering when root layout is wrapped in Suspense (#82378) The prelude is empty when the entire app is suspended during prerender. Typically this indicates a lack of suspense boundary in the app, which creates no static shell, thus throwing error. However, if the root layout itself is dynamic but wr...
[ { "path": "packages/next/src/client/components/app-router.tsx", "patch": "@@ -44,6 +44,7 @@ import { isRedirectError, RedirectType } from './redirect-error'\n import { pingVisibleLinks } from './links'\n import RootErrorBoundary from './errors/root-error-boundary'\n import DefaultGlobalError from './builtin...
2025-08-12T00:18:40
electron/electron
94585f5889b83d4961a57619aab4f1f041f5b857
43a646ed8592f31e0c8fa08b684dac329b7bf976
fix: propagate layout call to all children of `InspectableWebContentsViewViews` (#39994) Propagate layout call to all children of InspectableWebContentsViewViews. When BrowserView bounds are set from js, those might not trigger layout immediately, sometimes propagating InvalidateLayout call to parent. View is mar...
[ { "path": "shell/browser/ui/views/inspectable_web_contents_view_views.cc", "patch": "@@ -216,6 +216,8 @@ const std::u16string InspectableWebContentsViewViews::GetTitle() {\n void InspectableWebContentsViewViews::Layout() {\n if (!devtools_web_view_->GetVisible()) {\n contents_web_view_->SetBoundsRect(...
2023-09-28T15:17:21
nodejs/node
c77bcf018716e97ae35203990bcd51c143840348
3da465a8158906606b6df9feb2b2339ddcf3f3b7
test: adjust test-tls-junk-server for OpenSSL32 Refs: #53382 OpenSSL32 returns different error text. Looking through the test it seems like the expected error text has been adjusted for different OpenSSL versions in the past and what the test is testing is not related to the error being returned. Update test to allo...
[ { "path": "test/parallel/test-tls-junk-server.js", "patch": "@@ -20,8 +20,12 @@ server.listen(0, function() {\n const req = https.request({ port: this.address().port });\n req.end();\n \n+ let expectedErrorMessage = new RegExp('wrong version number');\n+ if (common.hasOpenSSL(3, 2)) {\n+ expectedEr...
2024-09-15T16:40:05