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
2efa38332adc1fc1500753d79fcba41a0197a7a6
3d1da1f9ab7d54984c096e6a04c8729f3a50fd8a
fix(eslint-plugin-react-hooks): accepting `as` expression as a callback (#28202) ## Summary Closes #20750 ## How did you test this change? Added a test case
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js", "patch": "@@ -7765,6 +7765,15 @@ const testsTypescript = {\n }\n `,\n },\n+ {\n+ code: normalizeIndent`\n+ function App(props) {\n+ React.useEffect((() => {\n+ cons...
2024-02-01T20:08:21
nodejs/node
4fe0f826a80365ce2512b8193ceaa9466c288aa5
0881c1f01ac90006315cae5b9c38cfbf44d37e59
2024-07-08, Version 22.4.1 (Current) This is a security release. Notable changes: * CVE-2024-36138 - Bypass incomplete fix of CVE-2024-27980 (High) * CVE-2024-22020 - Bypass network import restriction via data URL (Medium) * CVE-2024-22018 - fs.lstat bypasses permission model (Low) * CVE-2024-36137 - fs.fchown/fchmo...
[ { "path": "CHANGELOG.md", "patch": "@@ -38,7 +38,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.4.0\">22.4.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.4.1\">22.4.1</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V22.md#22.4.0\">2...
2024-07-04T03:05:26
golang/go
53badd4836f88c45e686c60712ac3c9d6364e505
ec4a9fb3211e1b7bd4035af7d70f17a21cd26508
net/http: push roundTrip panic higher in the stack If Transport is a non-nil interface pointing to a nil implementer, then a panic inside of roundTrip further obsfucates the issue. Change-Id: I47664b8e6185c5f56b5e529f49022484b5ea1d94 Reviewed-on: https://go-review.googlesource.com/c/go/+/661897 LUCI-TryBot-Result: Go...
[ { "path": "src/net/http/roundtrip.go", "patch": "@@ -27,5 +27,8 @@ func badRoundTrip(*Transport, *Request) (*Response, error)\n // Like the RoundTripper interface, the error types returned\n // by RoundTrip are unspecified.\n func (t *Transport) RoundTrip(req *Request) (*Response, error) {\n+\tif t == nil {...
2025-04-01T21:04:29
vercel/next.js
e2422f4c94685e040d868033a6d666ccc183d6fd
8ecf21e59f219d4f91ba19eafd3f32bdc11a841d
[turbopack] Add FileSystemPath.has_extension and optimize module graph operations (#81205) ## Optimize file extension checks and module graph traversal ### What? This PR introduces several optimizations: 1. Added a new `has_extension()` method to `FileSystemPath` for more efficient extension checking 2. Improved mod...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -861,14 +861,13 @@ impl AppProject {\n client_shared_entries: Vc<EvaluatableAssets>,\n has_layout_segments: bool,\n ) -> Result<Vc<ModuleGraphs>> {\n- let client_shared_entries = client_shared_entries\n- .await?\n- ...
2025-07-03T15:43:01
facebook/react
a1433ca0bacff76f720ffec9a0020f56e8c9ffed
53b12e46a17549ec7644e13c126440ed2f3629fd
fix(eslint-plugin-react-hooks): accepting `as` expressions as deps array (#28189) ## Summary This PR closes #25844 The original issue talks about `as const`, but seems like it fails for any `as X` expressions since it adds another nesting level to the AST. EDIT: Also closes #20162 ## How did you test this c...
[ { "path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js", "patch": "@@ -7747,6 +7747,24 @@ const testsTypescript = {\n }\n `,\n },\n+ {\n+ code: normalizeIndent`\n+ function App(props) {\n+ React.useEffect(() => {\n+ conso...
2024-02-01T19:30:17
nodejs/node
0881c1f01ac90006315cae5b9c38cfbf44d37e59
4324e11935659a2ed2d17f84bc87b9c9198b4fdf
2024-07-08, Version 20.15.1 'Iron' (LTS) This is a security release. Notable changes: * CVE-2024-36138 - Bypass incomplete fix of CVE-2024-27980 (High) * CVE-2024-22020 - Bypass network import restriction via data URL (Medium) * CVE-2024-22018 - fs.lstat bypasses permission model (Low) * CVE-2024-36137 - fs.fchown/f...
[ { "path": "CHANGELOG.md", "patch": "@@ -60,7 +60,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V21.md#21.0.0\">21.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.15.0\">20.15.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V20.md#20.15.1\">20.15.1...
2024-06-27T13:45:03
golang/go
ec4a9fb3211e1b7bd4035af7d70f17a21cd26508
3acd4402195aadc581aa68977154ac3b3403f8af
context: don't return a nil Cause for a canceled custom context Avoid a case where Cause(ctx) could return nil for a canceled context, when ctx is a custom context implementation and descends from a cancellable-but-not-canceled first-party Context. Fixes #73258 Change-Id: Idbd81ccddea82ecabece4373d718baae6ca4b58e Re...
[ { "path": "src/context/context.go", "patch": "@@ -288,11 +288,17 @@ func withCancel(parent Context) *cancelCtx {\n func Cause(c Context) error {\n \tif cc, ok := c.Value(&cancelCtxKey).(*cancelCtx); ok {\n \t\tcc.mu.Lock()\n-\t\tdefer cc.mu.Unlock()\n-\t\treturn cc.cause\n+\t\tcause := cc.cause\n+\t\tcc.mu....
2025-04-08T20:39:08
rust-lang/rust
d3ec6a351a027a71bdfbd36429288c1357ccdbea
c69e1a04db484db8974904e6f8eb1e8df21a39ba
fix: add continue
[ { "path": "compiler/rustc_borrowck/src/diagnostics/region_errors.rs", "patch": "@@ -872,6 +872,7 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {\n for alias_ty in alias_tys {\n if alias_ty.span.desugaring_kind().is_some() {\n // Skip `async` desugari...
2026-02-08T03:40:56
vercel/next.js
8ecf21e59f219d4f91ba19eafd3f32bdc11a841d
7ed2d23ae59f557e99c0e512a986e1c4fe2fb5e9
perf(next-napi): optimize output assets collection using flat_map (#81222) <!-- 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 mak...
[ { "path": "crates/napi/src/next_api/project.rs", "patch": "@@ -956,10 +956,10 @@ async fn output_assets_operation(\n .try_join()\n .await?;\n \n- let mut output_assets: FxIndexSet<ResolvedVc<Box<dyn OutputAsset>>> = FxIndexSet::default();\n- for assets in endpoint_assets {\n- ou...
2025-07-03T15:24:20
nodejs/node
4324e11935659a2ed2d17f84bc87b9c9198b4fdf
53483a13449a703647ce0383fa1f292476c09cbe
2024-07-08, Version 18.20.4 'Hydrogen' (LTS) This is a security release. Notable changes: * CVE-2024-36138 - Bypass incomplete fix of CVE-2024-27980 (High) * CVE-2024-22020 - Bypass network import restriction via data URL (Medium) PR-URL: https://github.com/nodejs-private/node-private/pull/609
[ { "path": "CHANGELOG.md", "patch": "@@ -86,7 +86,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V20.md#20.0.0\">20.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V18.md#18.20.3\">18.20.3</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V18.md#18.20.4\">18.20.4...
2024-06-27T15:22:19
facebook/react
7bce30242137b4668b656feb866184a418cb537a
a0aa66ca8f68bdc66f04e8aa55a7f41a52c41f0d
Make Other mutation validation message more generic The current error message "This mutates a global or a variable after it was passed to React" no longer makes sense since we now have more specific error messages for different kinds of Effect.Mutate or Effect.Stores. This replaces the fallthrough "Other" case ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferReferenceEffects.ts", "patch": "@@ -1506,6 +1506,6 @@ function getWriteErrorReason(abstractValue: AbstractValue): string {\n } else if (abstractValue.reason.has(ValueReason.ReactiveFunctionArgument)) {\n return \"Mutating props ...
2024-02-01T16:02:30
golang/go
559b5d814f63bbeee626778c41ab4ee4fd48030a
3a4f077710b96ee72fcd4214280a41a7c355205b
go/types, types2: fix failing error message test for s390x Fixes #73206. Change-Id: If27ce5fe7aa71415b6e2d525c78b1f04b88a308b Reviewed-on: https://go-review.googlesource.com/c/go/+/663635 TryBot-Result: Gopher Robot <gobot@golang.org> TryBot-Bypass: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Robert Griesemer...
[ { "path": "src/internal/types/testdata/fixedbugs/issue70549.go", "patch": "@@ -7,9 +7,9 @@ package p\n import \"math\"\n \n var (\n-\t_ = math.Sin\n-\t_ = math.SIn /* ERROR \"undefined: math.SIn (but have Sin)\" */\n-\t_ = math.sin /* ERROR \"name sin not exported by package math\" */\n-\t_ = math.Foo /* ER...
2025-04-07T21:28:47
rust-lang/rust
7c5ea7ffd648cb1170510a7b50b0294a30891ffd
8c5605e130081cbff57f505c56466538039346b1
Fix bound var resolution for trait aliases Handle DefKind::TraitAlias in resolve_bound_vars so that associated item constraints and return type notation work through trait aliases.
[ { "path": "compiler/rustc_hir_analysis/src/collect/resolve_bound_vars.rs", "patch": "@@ -1695,7 +1695,8 @@ impl<'a, 'tcx> BoundVarContext<'a, 'tcx> {\n | DefKind::Union\n | DefKind::Enum\n | DefKind::TyAlias\n- | DefKind::Trait,\n+ ...
2026-02-07T17:57:53
electron/electron
f35b9b3f06663e657a2f3b36cc021cf4b109ab26
a0a44f07dda3562bcd7039e0270eae32be7549d6
fix: `AXManualAccessibility` showing failure (#38102) fix: AXManualAccessibility showing failure
[ { "path": "docs/tutorial/accessibility.md", "patch": "@@ -28,6 +28,8 @@ On macOS, third-party assistive technology can toggle accessibility features ins\n Electron applications by setting the `AXManualAccessibility` attribute\n programmatically:\n \n+Using Objective-C:\n+\n ```objc\n CFStringRef kAXManualAc...
2023-04-26T17:41:56
golang/go
3a4f077710b96ee72fcd4214280a41a7c355205b
58b6891108fa75f5856750e13dff3fa980987f07
syscall: fix dangling pointers in Windows' process attributes Windows' _PROC_THREAD_ATTRIBUTE_LIST can contain pointers to memory owned by Go, but the GC is not aware of this. This can lead to the memory being freed while the _PROC_THREAD_ATTRIBUTE_LIST is still in use. This CL uses the same approach as in x/sys/wind...
[ { "path": "src/syscall/exec_windows.go", "patch": "@@ -332,20 +332,20 @@ func StartProcess(argv0 string, argv []string, attr *ProcAttr) (pid int, handle\n \t\t\tdefer DuplicateHandle(parentProcess, fd[i], 0, nil, 0, false, DUPLICATE_CLOSE_SOURCE)\n \t\t}\n \t}\n-\tsi := new(_STARTUPINFOEXW)\n-\tsi.ProcThrea...
2025-04-08T09:19:57
vercel/next.js
c28261568f50c47595b06dce631ac89c07338d07
81f0c7645b360d4056976ada0dc2e81de49e08e8
Update caching.mdx (#81185) Updating caching guide to be more specific on fetch API. Solves https://github.com/vercel/next.js/issues/81183 <!-- 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 belo...
[ { "path": "docs/01-app/02-guides/caching.mdx", "patch": "@@ -376,24 +376,24 @@ When configuring the different caching mechanisms, it's important to understand\n \n The following table provides an overview of how different Next.js APIs affect caching:\n \n-| API ...
2025-07-03T10:45:47
nodejs/node
1d4d76ff3fb08f9a0c55a1d5530b46c4d5d550c7
0095726bf3d0a2c01062d98e087526299e709515
src: fix typo in node.h Signed-off-by: Daeyeon Jeong <daeyeon.dev@gmail.com> PR-URL: https://github.com/nodejs/node/pull/53759 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Deokjin Kim <deokjin81.kim@gma...
[ { "path": "src/node.h", "patch": "@@ -658,8 +658,8 @@ enum Flags : uint64_t {\n // inspector in situations where one has already been created,\n // e.g. Blink's in Chromium.\n kNoCreateInspector = 1 << 9,\n- // Controls where or not the InspectorAgent for this Environment should\n- // call StartDebu...
2024-07-08T14:39:37
facebook/react
a0aa66ca8f68bdc66f04e8aa55a7f41a52c41f0d
d55420c430cee6338fcc63ad663cb4b778af55de
Add test for function property mutation There were no previous test paths that tested it, so I'm adding the example from https://github.com/facebookexternal/forget-feedback/issues/32 as a fixture
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.mutate-function-property.expect.md", "patch": "@@ -0,0 +1,21 @@\n+\n+## Input\n+\n+```javascript\n+export function ViewModeSelector(props) {\n+ const renderIcon = () => <AcceptIcon />;\n+ renderIcon.displayName = ...
2024-02-01T16:02:30
vercel/next.js
81f0c7645b360d4056976ada0dc2e81de49e08e8
4551373c972d0a9c49874258f66ffff73d7109c3
[devtool] styling fixes (#81228) ### Styling fixes * The overlay needs to have the highiest index, it's regressed from the change in #80974 while tweaking around new panel UI * Noticed the route info needs to be set as nowrap when pathname is super long | After | Before | |:-- |:-- | | ![image](https://github...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/overlay/styles.tsx", "patch": "@@ -5,7 +5,8 @@ const styles = `\n right: 0;\n bottom: 0;\n left: 0;\n- z-index: 3;\n+ /* secondary z-index, -1 than toast z-index */\n+ z-index: 2147483646;\n \n display: flex;\n al...
2025-07-03T10:15:31
electron/electron
a0a44f07dda3562bcd7039e0270eae32be7549d6
08593fd2bdb38de2b409cda0692ac57abf410e9e
chore: correct extra qualification causing build error with GCC (#37548) * chore: correct extra qualification causing build error with GCC * fixup for lint * chore: fix lint --------- Co-authored-by: John Kleinschmidt <kleinschmidtorama@gmail.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
[ { "path": "shell/browser/hid/electron_hid_delegate.h", "patch": "@@ -94,9 +94,8 @@ class ElectronHidDelegate : public content::HidDelegate,\n namespace base {\n \n template <>\n-struct base::ScopedObservationTraits<\n- electron::HidChooserContext,\n- electron::HidChooserContext::DeviceObserver> {\n+st...
2023-04-26T14:40:02
golang/go
58b6891108fa75f5856750e13dff3fa980987f07
38a2a3c7ce156e01f8980cb97912b7067709aaa3
go/ast: don't MergeLine in SortImports when last import on the same line as RParen Fixes #69183 Change-Id: I8b78dadaa8ba91e74ea2bfc21abd6abe72b7e38b GitHub-Last-Rev: 1a41f9e8e3bef9926993813568902d1a77c991c1 GitHub-Pull-Request: golang/go#69187 Reviewed-on: https://go-review.googlesource.com/c/go/+/610035 Reviewed-by:...
[ { "path": "src/go/ast/import.go", "patch": "@@ -33,11 +33,11 @@ func SortImports(fset *token.FileSet, f *File) {\n \t\tfor j, s := range d.Specs {\n \t\t\tif j > i && lineAt(fset, s.Pos()) > 1+lineAt(fset, d.Specs[j-1].End()) {\n \t\t\t\t// j begins a new run. End this one.\n-\t\t\t\tspecs = append(specs, s...
2025-04-08T06:43:33
nodejs/node
11f4efc73ad7c533623f09daa32c8f3d38b37f29
7e80584829277915813df77fa30b430b77a2250f
build: fix build error in sqlite under GN build PR-URL: https://github.com/nodejs/node/pull/53686 Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "deps/sqlite/unofficial.gni", "patch": "@@ -18,5 +18,13 @@ template(\"sqlite_gn_build\") {\n forward_variables_from(invoker, \"*\")\n public_configs = [ \":sqlite_config\" ]\n sources = gypi_values.sqlite_sources\n+ if (is_win) {\n+ cflags_c = [\n+ \"-Wno-sign-compare\",...
2024-07-02T06:21:56
facebook/react
1219d57fc9fcbf44c873c0b10e5acbd31f613c15
d29f7d973da616a02d6240ea10306a6f33e35ca1
[Fizz] Support aborting with Postpone (#28183) Semantically if you make your reason for aborting a Postpone instance the render should not hit the error pathways but should instead follow the postpone pathways. It's awkward today to actually get your hands on a Postpone instance because you have to catch the throw ...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js", "patch": "@@ -7498,4 +7498,451 @@ describe('ReactDOMFizzServer', () => {\n </div>,\n );\n });\n+\n+ // @gate enablePostpone\n+ it('does not call onError when you abort with a postpone instance during prerender', async () ...
2024-02-01T15:14:08
rust-lang/rust
236dac8d0e41ae9d4e31908c9a0a3fdf2789f5f6
15e0ce9d69340dc83fd8a37ba2c1596354bea6bc
fix: remove unnecessary trailing commas in format strings This PR makes the new comma-removing lint PR less noisy, allowing it focus only on the new functionality
[ { "path": "clippy_dev/src/new_lint.rs", "patch": "@@ -167,9 +167,9 @@ fn add_lint(lint: &LintData<'_>, enable_msrv: bool) -> io::Result<()> {\n let camel_name = to_camel_case(lint.name);\n \n let new_lint = if enable_msrv {\n- format!(\"Box::new(move |{ctor_arg}| Box::new({module_name}::{came...
2026-02-07T19:02:33
vercel/next.js
4551373c972d0a9c49874258f66ffff73d7109c3
2212ea72dd1dd87df95d9b5090d42157daea24cd
Docs: include effect in docs for default optimized libraries (#81203) This PR updates the docs for `optimizePackageImports` default optimized packages to include `effect` and the `@effect/*` packages These were added by 9f647f311fc051ca65a3fd810533ed1d5254020b <!-- Thanks for opening a PR! Your contribution is much...
[ { "path": "docs/01-app/03-api-reference/05-config/01-next-config-js/optimizePackageImports.mdx", "patch": "@@ -44,3 +44,5 @@ The following libraries are optimized by default:\n - `@tabler/icons-react`\n - `mui-core`\n - `react-icons/*`\n+- `effect`\n+- `@effect/*`", "additions": 2, "deletions": 0, ...
2025-07-03T09:38:48
golang/go
14b15a2beaed423ba6b6c97fa5983bd57999038e
af278bfb1f07b9f8f84d325a84b3891a3ab0dbf1
internal/runtime/maps: pass proper func PC to race.WritePC/race.ReadPC Fixes #73191 Change-Id: I0f8a5a19faa745943a98476c7caf4c97ccdce184 Reviewed-on: https://go-review.googlesource.com/c/go/+/663175 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Pratt <m...
[ { "path": "src/internal/runtime/maps/runtime_fast32_swiss.go", "patch": "@@ -17,7 +17,7 @@ import (\n func runtime_mapaccess1_fast32(typ *abi.SwissMapType, m *Map, key uint32) unsafe.Pointer {\n \tif race.Enabled && m != nil {\n \t\tcallerpc := sys.GetCallerPC()\n-\t\tpc := abi.FuncPCABIInternal(runtime_map...
2025-04-05T17:29:49
electron/electron
08593fd2bdb38de2b409cda0692ac57abf410e9e
fe5cdd39d64d6c43ee01fed969816260abdf4410
chore: fix clang-tidy warnings (#38079) * chore: fix clang-tidy warnings * refactor: avoid need for NOLINTNEXTLINE
[ { "path": ".clang-tidy", "patch": "@@ -0,0 +1,4 @@\n+---\n+Checks: '-modernize-use-nullptr'\n+InheritParentConfig: true\n+...", "additions": 4, "deletions": 0, "language": "Unknown" }, { "path": "shell/browser/api/electron_api_desktop_capturer.cc", "patch": "@@ -243,8 +243,8 @@ void ...
2023-04-26T14:09:54
facebook/react
d29f7d973da616a02d6240ea10306a6f33e35ca1
f7ce4164c90990bd43b2671bf0b1db45e160fc15
Enable enableFilterEmptyStringAttributesDOM everywhere (#28125) ## Summary Stacked on [#28124](https://github.com/facebook/react/pull/28124) ([Diff against #28124](https://github.com/facebook/react/compare/eps1lon:fix/anchor-href-empty...eps1lon:feat/enableFilterEmptyStringAttributesDOM-canary)) Enables `enabl...
[ { "path": "packages/shared/forks/ReactFeatureFlags.native-fb.js", "patch": "@@ -64,7 +64,7 @@ export const enableUseEffectEventHook = false;\n export const enableClientRenderFallbackOnTextMismatch = true;\n export const enableComponentStackLocations = false;\n export const enableLegacyFBSupport = false;\n-e...
2024-01-31T16:23:21
nodejs/node
e1b80a5fb32a19523dcf6e75304aefb4766d650d
3ca05ffa02fdf3a765c6e3f957e007e6eebf4f0c
src: fix Worker termination when '--inspect-brk' is passed Signed-off-by: Daeyeon Jeong <daeyeon.dev@gmail.com> PR-URL: https://github.com/nodejs/node/pull/53724 Fixes: https://github.com/nodejs/node/issues/53648 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Revi...
[ { "path": "src/debug_utils.h", "patch": "@@ -46,6 +46,7 @@ void NODE_EXTERN_PRIVATE FWrite(FILE* file, const std::string& str);\n V(DIAGNOSTICS) \\\n V(HUGEPAGES) \\\n V(INSPEC...
2024-07-06T15:49:50
golang/go
af278bfb1f07b9f8f84d325a84b3891a3ab0dbf1
92309ff771be5daa113acb85ad22e8783188ca67
cmd/compile: add additional flag constant folding rules Fixes #73200 Change-Id: I77518d37acd838acf79ed113194bac5e2c30897f Reviewed-on: https://go-review.googlesource.com/c/go/+/663535 Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com...
[ { "path": "src/cmd/compile/internal/ssa/_gen/ARM64.rules", "patch": "@@ -1385,16 +1385,18 @@\n (CSNEG [cc] x y (InvertFlags cmp)) => (CSNEG [arm64Invert(cc)] x y cmp)\n \n // absorb flag constants into boolean values\n-(Equal (FlagConstant [fc])) => (MOVDconst [b2i(fc.eq())])\n-(NotEqual (FlagC...
2025-04-07T17:33:31
electron/electron
f4b7e59b2d4ec7e6c15574d476feae5a862ee498
a0a1a3645b7353c010311aff17f6a10048e676bd
fix: crash on missing `RenderWidgetHostView` (#38100) chore: fix crash on missing RenderWidgetHostView
[ { "path": "shell/browser/ui/cocoa/electron_inspectable_web_contents_view.mm", "patch": "@@ -287,12 +287,14 @@ - (void)redispatchContextMenuEvent:(NSEvent*)event {\n // Temporarily pretend that the WebContents is fully non-draggable while we\n // re-send the mouse event. This allows the re-dispatched...
2023-04-25T09:30:16
vercel/next.js
82115d6e5e3bb746846af35dfe61169d00cb8f70
0bad0e5d87aa2d40afdc6c8e8bde2fde0122daee
Docs/after function mdx fix (#81174) The current formatting caused the mdx parser to do `details > p > summary` - which caused a hydration error for invalid HTML, but also just rendered `> Details` <img width="501" alt="Screenshot 2025-07-02 at 10 38 51" src="https://github.com/user-attachments/assets/61819edc-75bb-4...
[ { "path": "docs/01-app/03-api-reference/04-functions/after.mdx", "patch": "@@ -126,7 +126,8 @@ Learn how to [configure `after`](/docs/app/guides/self-hosting#after) when self-\n \n <details id=\"after-serverless\">\n <summary>Reference: supporting `after` for serverless platforms</summary>\n- Using `afte...
2025-07-03T08:44:21
rust-lang/rust
57650eeb9dd4d4af3cf265c360864716b2badc4f
06cafcbe08b1b0d4235685abd5f817ae1979cefa
fix: don't suggest replacing `env!("CARGO_BIN_NAME")` with itself
[ { "path": "compiler/rustc_builtin_macros/src/env.rs", "patch": "@@ -140,18 +140,21 @@ pub(crate) fn expand_env<'cx>(\n unreachable!(\"`expr_to_string` ensures this is a string lit\")\n };\n \n+ let var = var.as_str();\n let guar = match err {\n ...
2026-02-07T16:24:16
nodejs/node
b32c7229d536cd0dfb967f297759991849481755
dca7bc5b1059a99a676b2cb7fddeb8052bba58c2
worker: allow copied NODE_OPTIONS in the env setting When the worker spawning code copies NODE_OPTIONS from process.env, previously we do a check again on the copied NODE_OPTIONS and throw if it contains per-process settings. This can be problematic if the end user starts the process with a NODE_OPTIONS and the worker...
[ { "path": "src/node_worker.cc", "patch": "@@ -549,12 +549,40 @@ void Worker::New(const FunctionCallbackInfo<Value>& args) {\n // [0] is expected to be the program name, add dummy string.\n env_argv.insert(env_argv.begin(), \"\");\n std::vector<std::string> invalid_args{};\n- options_p...
2024-07-05T18:40:03
golang/go
92309ff771be5daa113acb85ad22e8783188ca67
8054d2da5bdbaf154b258d8d2fd24025a809b0de
doc/next: fix link It was rendering incorrectly at https://tip.golang.org/doc/go1.25 Change-Id: I2f66c95414ac5d71b9b02b91bcdc0d0a87b3f605 Reviewed-on: https://go-review.googlesource.com/c/go/+/662436 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Brad Fitzpatric...
[ { "path": "doc/next/6-stdlib/99-minor/net/56025.md", "patch": "@@ -1,4 +1,4 @@\n-[LookupMX] and [(*Resolver).LookupMX] now return DNS names that look\n+[LookupMX] and [*Resolver.LookupMX] now return DNS names that look\n like valid IP address, as well as valid domain names.\n Previously if a name server ret...
2025-04-02T23:12:37
electron/electron
a0a1a3645b7353c010311aff17f6a10048e676bd
9b41ab1e5351a3b810916063ca3a0b19e4098d40
docs: fix start highlight tutorial-2-first-app.md (#38069) doc: fix start highlight tutorial-2-first-app.md
[ { "path": "docs/tutorial/tutorial-2-first-app.md", "patch": "@@ -134,7 +134,7 @@ add `electron .` to the `start` command in the [`scripts`][package-scripts]\n field of your package.json. This command will tell the Electron executable to look for the main\n script in the current directory and run it in dev m...
2023-04-25T09:19:14
facebook/react
d55420c430cee6338fcc63ad663cb4b778af55de
d0bb1fed61cba004f8014337488b3e8c398ab880
Allow prefixed hooks for compiling bundled code We're doing some internal benchmarking using a lightweight bundler that @pieterv wrote for experimentation purposes. It's designed to fully preserve Flow type annotations so we can experiment with type-driven compilation and test out what benefits we might get from "...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts", "patch": "@@ -376,11 +376,12 @@ function shouldVisitNode(fn: BabelFn, pass: CompilerPass): boolean {\n return false;\n }\n case \"infer\": {\n+ const hookPattern = pass.opts.environment?.hookPattern ?? null...
2024-01-31T03:11:17
vercel/next.js
0bad0e5d87aa2d40afdc6c8e8bde2fde0122daee
36764b9916f317d5d5bd1c430e44802906abe82a
chore(turbopack): Remove unused dependencies reported by cargo-shear (#81221) <!-- 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 ma...
[ { "path": "Cargo.lock", "patch": "@@ -9359,7 +9359,6 @@ dependencies = [\n \"dashmap 6.1.0\",\n \"dunce\",\n \"futures\",\n- \"futures-retry\",\n \"include_dir\",\n \"indexmap 2.9.0\",\n \"jsonc-parser 0.21.0\",\n@@ -9623,7 +9622,6 @@ dependencies = [\n \"const_format\",\n \"data-encoding\",\n \"ei...
2025-07-03T08:03:34
rust-lang/rust
85ca098f55cade17d59dd625d2e9af724a73a33b
8c5605e130081cbff57f505c56466538039346b1
rustc_parse: improve the error diagnostic for "missing let" Signed-off-by: Usman Akinyemi <usmanakinyemi202@gmail.com>
[ { "path": "compiler/rustc_parse/src/errors.rs", "patch": "@@ -573,6 +573,24 @@ pub(crate) struct ExpectedExpressionFoundLet {\n pub comparison: Option<MaybeComparison>,\n }\n \n+#[derive(Diagnostic)]\n+#[diag(\"let-chain with missing `let`\")]\n+pub(crate) struct LetChainMissingLet {\n+ #[primary_spa...
2026-02-01T17:04:22
nodejs/node
3f86bdd34e3538b4d8b29d41c8bc93f91f174b4e
88beb76e5c1b895a6758c19bdeba9ed80512253d
doc: fix releases guide for recent Git versions PR-URL: https://github.com/nodejs/node/pull/53709 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Beth Griggs <bethanyngriggs@gmail.com> Reviewed-By: Matteo Coll...
[ { "path": "doc/contributing/releases.md", "patch": "@@ -819,7 +819,7 @@ Git should stop to let you fix conflicts.\n Revert all changes that were made to `src/node_version.h`:\n \n ```bash\n-git checkout --ours HEAD -- src/node_version.h\n+git restore --source=upstream/main src/node_version.h\n ```\n \n <det...
2024-07-05T11:36:00
golang/go
8054d2da5bdbaf154b258d8d2fd24025a809b0de
b2819d13dbe19343426e688da4ddfeb57c8589fc
strconv: use switch for '+'/'-' prefix handling Follow the approach used in strconv's readFloat, decimal.set, and Atoi, where leading '+' and '-' are handled using a switch for clarity and consistency. Change-Id: I41eff34ce90b5ac43fcdbc0bb88910d6d5fb4d39 GitHub-Last-Rev: 0c9d2efb5a828515fa00afdba8c436aa31fb0e53 GitHu...
[ { "path": "src/strconv/atof.go", "patch": "@@ -77,12 +77,12 @@ func (b *decimal) set(s string) (ok bool) {\n \tif i >= len(s) {\n \t\treturn\n \t}\n-\tswitch {\n-\tcase s[i] == '+':\n+\tswitch s[i] {\n+\tcase '+':\n \t\ti++\n-\tcase s[i] == '-':\n-\t\tb.neg = true\n+\tcase '-':\n \t\ti++\n+\t\tb.neg = true\...
2025-04-06T13:08:57
facebook/react
d0bb1fed61cba004f8014337488b3e8c398ab880
69733c5ad8cfb66204c53a71eb9f2545ba937a73
[be] Explicit todo diagnostics for hoisting --- Currently, we error on non-hoisted identifiers in EnterSSA with a somewhat cryptic message. This PR changes `BuildHIR` hoisting logic to find ALL hoistable bindings, then error when we try to lower hoisting for unsupported declaration types. Two benefits to this ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -333,14 +333,9 @@ function lowerStatement(\n const hoistableIdentifiers: Set<t.Identifier> = new Set();\n \n for (const [, binding] of Object.entries(stmt.scope.bindings)) {\n- // TODO: support other...
2024-01-31T15:59:25
electron/electron
141f65b291763bb70dd971f92ac20c5f71de4177
b626be5e33be3d25b6b371770dfeb675449ab7cf
fix: webContents return type incorrect (#38026) * fix: webContents type incorrect * fix: ci failed * fix: ci failed 2
[ { "path": "docs/api/web-contents.md", "patch": "@@ -65,28 +65,28 @@ for all windows, webviews, opened devtools, and devtools extension background pa\n \n ### `webContents.getFocusedWebContents()`\n \n-Returns `WebContents` | null - The web contents that is focused in this application, otherwise\n+Returns `W...
2023-04-24T14:28:21
vercel/next.js
36764b9916f317d5d5bd1c430e44802906abe82a
97958668025bedbc51e188cc01143e9be80f764f
Turbopack: fix source map panic (#81212) Fix a panic, related to scope hoisting. ``` An error occurred while generating the chunk item X Caused by: - Cannot decode dummy BytePos ``` ``` thread 'tokio-runtime-worker' panicked at turbopack/crates/turbopack-ecmascript/src/lib.rs:2431:13: Cannot decode dummy BytePos stac...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/lib.rs", "patch": "@@ -2498,14 +2498,17 @@ fn encode_module_into_comment_span(\n \n impl Comments for CodeGenResultCommentsConsumable<'_> {\n fn add_leading(&self, _pos: BytePos, _cmt: Comment) {\n- unimplemented!()\n+ unimplemented!(\"a...
2025-07-03T07:54:42
nodejs/node
60b2754c87a0b4bed96b38d1f920ab41ef85ab9e
e55587e39835f493c835e09b2a45244f4fbdd7a3
build: fix mac build error of c-ares under GN PR-URL: https://github.com/nodejs/node/pull/53687 Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "deps/cares/unofficial.gni", "patch": "@@ -62,7 +62,7 @@ template(\"cares_gn_build\") {\n sources += [ \"config/linux/ares_config.h\" ]\n }\n if (is_mac) {\n- sources += [ \"config/darwin/ares_config.h\" ]\n+ sources += gypi_values.cares_sources_mac\n }\n \n if (is_...
2024-07-05T00:51:00
electron/electron
b626be5e33be3d25b6b371770dfeb675449ab7cf
964934c16122767e3554e372126fb7def0243c1c
docs: fix 'usb-device-added', 'usb-device-removed', 'usb-device-revoked' typings (#38035) * Fix 'usb-device-added', 'usb-device-removed', 'usb-device-revoked' typings * Add webContents
[ { "path": "docs/api/session.md", "patch": "@@ -519,9 +519,8 @@ app.whenReady().then(() => {\n Returns:\n \n * `event` Event\n-* `details` Object\n- * `device` [USBDevice](structures/usb-device.md)\n- * `frame` [WebFrameMain](web-frame-main.md)\n+* `device` [USBDevice](structures/usb-device.md)\n+* `webCon...
2023-04-23T20:16:38
rust-lang/rust
1ec5101f20cfffb67557692a5ec647133e2bcd19
7c9ae5b0213393660abe57add8d4b34c90c3430f
Bump the libm MSRV to 1.67 This gets us: * `saturating_sub_unsigned` * `<int>::ilog2` * Correct lexing of float literals with the `f16` or `f128` suffix Link: https://github.com/rust-lang/compiler-builtins/issues/1017
[ { "path": "library/compiler-builtins/libm/Cargo.toml", "patch": "@@ -13,7 +13,7 @@ keywords = [\"libm\", \"math\"]\n repository = \"https://github.com/rust-lang/compiler-builtins\"\n license = \"MIT\"\n edition = \"2021\"\n-rust-version = \"1.63\"\n+rust-version = \"1.67\"\n \n [dev-dependencies]\n # FIXME(...
2026-02-07T13:06:05
facebook/react
69733c5ad8cfb66204c53a71eb9f2545ba937a73
c3e9cba0bb71c1fa315d75272c759081faad3599
[hoisting][patch] use Babel identifier apis in BuildHIR hoisting logic --- Three functional changes: - Instead of visiting all identifier references, explicitly traverse only function decls/exprs. This avoids bugs like accidentally hoisting inline references ```js // input const x = identity(y); const y...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts", "patch": "@@ -5,7 +5,7 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n-import { Binding, NodePath, Scope } from \"@babel/traverse\";\n+import { NodePath, Scope } from \"@babel/traverse\";\n import * as t ...
2024-01-31T15:59:25
golang/go
d584d2b3dda9ab88a51a3e9cffe8ecd140479cef
a08d2db6d1b8a46d2fc909b848da20ef1b8f5e8f
cmd/go: fix version stamping for v2 modules and subdirectories We were not passing the module path to newCodeRepo which caused it to incorrectly parse the major version. This allowed v0 and v1 modules to work because an empty major version is allowed in that case. Additionally we need to pass the root module path to ...
[ { "path": "src/cmd/go/internal/load/pkg.go", "patch": "@@ -2577,7 +2577,16 @@ func (p *Package) setBuildInfo(ctx context.Context, autoVCS bool) {\n \t\t}\n \t\tappendSetting(\"vcs.modified\", strconv.FormatBool(st.Uncommitted))\n \t\t// Determine the correct version of this module at the current revision an...
2025-03-31T19:06:43
vercel/next.js
97958668025bedbc51e188cc01143e9be80f764f
fbc988d042e7a421d1e2aaf993eb6671d8614cf0
Fix future Rust warnings (#81217) I tried to upgrade to nightly-2025-07-02, but rust-analyzer is just completely broken: ![Bildschirmfoto 2025-07-03 um 08.52.48.png](https://graphite-user-uploaded-assets-prod.s3.amazonaws.com/sjZSbv6AFeuDg7Gb9rma/56c6fece-893c-41fb-98e6-fa225b325225.png) So I reverted that again but...
[ { "path": "turbopack/crates/turbo-tasks-backend/src/backend/dynamic_storage.rs", "patch": "@@ -75,11 +75,11 @@ impl DynamicStorage {\n })\n }\n \n- pub fn get(&self, key: &CachedDataItemKey) -> Option<CachedDataItemValueRef> {\n+ pub fn get(&self, key: &CachedDataItemKey) -> Option<CachedD...
2025-07-03T07:37:57
nodejs/node
e55587e39835f493c835e09b2a45244f4fbdd7a3
ba3aedc2083eaaaffeae87079091a67098b95901
test: un-set inspector-async-hook-setup-at-inspect-brk as flaky There was a commit that got merged that should have fixed the issue ref: https://github.com/nodejs/node/issues/50222#issuecomment-1962680957 PR-URL: https://github.com/nodejs/node/pull/53692 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: James M...
[ { "path": "test/parallel/parallel.status", "patch": "@@ -101,10 +101,6 @@ test-http-pipeline-flood: SKIP\n # https://github.com/nodejs/node/issues/39655\n test-cluster-primary-error: PASS, FLAKY\n \n-[$arch==s390x]\n-# https://github.com/nodejs/node/issues/50222\n-test-inspector-async-hook-setup-at-inspect-...
2024-07-04T20:45:42
nodejs/node
f1ac7df535e9e600929c04c4b5d92e0fcf1c2d5e
ce2faef3a70ae1b8336b2628b7f01b07d5402fbc
fs: fix typings PR-URL: https://github.com/nodejs/node/pull/53626 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "lib/fs.js", "patch": "@@ -255,7 +255,7 @@ function exists(path, callback) {\n validateFunction(callback, 'cb');\n \n function suppressedCallback(err) {\n- callback(err ? false : true);\n+ callback(!err);\n }\n \n try {\n@@ -751,8 +751,8 @@ function readSync(fd, buffer, offsetOrOptio...
2024-07-04T11:04:37
electron/electron
964934c16122767e3554e372126fb7def0243c1c
f727da4a74a93cca627f5db0da9f88c450944f69
fix: defaults broken in shell.openExternal() options (#38038) Co-authored-by: Milan Burda <miburda@microsoft.com>
[ { "path": "shell/common/api/electron_api_shell.cc", "patch": "@@ -59,13 +59,11 @@ v8::Local<v8::Promise> OpenExternal(const GURL& url, gin::Arguments* args) {\n v8::Local<v8::Promise> handle = promise.GetHandle();\n \n platform_util::OpenExternalOptions options;\n- if (args->Length() >= 2) {\n- gin:...
2023-04-21T17:13:59
vercel/next.js
289f5d55f3514b362e416a168341812a00b1c23b
ee1026494618291b62a23be57546dc41e17aff3e
Sync NFT test suite from upstream (#81189) Prompted by https://github.com/vercel/next.js/pull/81186 zeromq fails with: ``` 2025-07-02T18:18:18.6796394Z FAIL [ 2.187s] turbopack::node-file-trace node_file_trace_noop_backing_storage::case_109_zeromq Error: Failed to load zeromq.js addon.node: Error: EN...
[ { "path": "turbopack/crates/turbopack/tests/node-file-trace.rs", "patch": "@@ -60,6 +60,7 @@ static ALLOC: turbo_tasks_malloc::TurboMalloc = turbo_tasks_malloc::TurboMalloc;\n #[case::argon2(\"integration/argon2.js\")]\n #[case::auth0(\"integration/auth0.js\")]\n #[case::aws_sdk(\"integration/aws-sdk.js\")]...
2025-07-03T06:44:15
golang/go
adb29670fcf704e1b76db4d31331aaecd0db7118
20a924fe877b70af75d26d0e7fa86b3310851f76
runtime: protect plan9 time_now function with !faketime build tag The introduction of monotonic time support for Plan 9 in CL 656755 causes a build error with multiple declaration of time_now when built with tag faketime. Correct this by moving function time_now into its own source file with !faketime build tag. Fixe...
[ { "path": "src/runtime/os_plan9.go", "patch": "@@ -222,6 +222,7 @@ func unminit() {\n // resources in minit, semacreate, or elsewhere. Do not take locks after calling this.\n //\n // This always runs without a P, so //go:nowritebarrierrec is required.\n+//\n //go:nowritebarrierrec\n func mdestroy(mp *m) {\n...
2025-04-04T19:48:18
electron/electron
cf4c46c8e0337b3123c7256ddf033ae556731fee
0240f6664e5c94d68cb9ad7fb1a9e7c8bbf281d3
build: fix Codespaces prebuilds with missing comma (#38052) Add missing comma
[ { "path": ".devcontainer/on-create-command.sh", "patch": "@@ -41,7 +41,7 @@ if [ ! -f $buildtools/configs/evm.testing.json ]; then\n \\\"electron\\\": {\n \\\"origin\\\": \\\"https://github.com/electron/electron.git\\\"\n }\n- }\n+ },...
2023-04-20T22:41:54
facebook/react
407faf5a69955f23f3549cff77b1a37199daa95f
91212b09ed53c8d5a0f414ed93972681caa5ac7e
Remove ReactDOM.render tests in ReactDOMConsoleErrorReporting-test (#28053) Each it block here was duplicated to cover ReactDOM.render and ReactDOMClient.createRoot. Here we delete the ReactDOM.render coverage. Co-authored-by: Jack Pope <jackpope@meta.com>
[ { "path": "packages/react-dom/src/__tests__/ReactDOMConsoleErrorReporting-test.js", "patch": "@@ -10,7 +10,6 @@\n describe('ReactDOMConsoleErrorReporting', () => {\n let act;\n let React;\n- let ReactDOM;\n let ReactDOMClient;\n \n let ErrorBoundary;\n@@ -23,7 +22,6 @@ describe('ReactDOMConsoleErro...
2024-01-27T00:29:45
nodejs/node
056f055f38b0e89dd9ca335a911065cef9b6f789
8f71a1b248a485caf11e6855d2f88e0d31d966b9
2024-07-02, Version 22.4.0 (Current) Notable changes: deps,lib,src: * (SEMVER-MINOR) add experimental web storage (Colin Ihrig) https://github.com/nodejs/node/pull/52435 doc: * move `node --run` stability to rc (Yagiz Nizipli) https://github.com/nodejs/node/pull/53433 * mark WebSocket as stable (Matthew Aitken)...
[ { "path": "CHANGELOG.md", "patch": "@@ -38,7 +38,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.3.0\">22.3.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.4.0\">22.4.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V22.md#22.3.0\">2...
2024-06-25T11:54:15
vercel/next.js
ee1026494618291b62a23be57546dc41e17aff3e
e358e301dc00e4d18e00da4bb80e53c9087af423
Turbopack: add `EcmascriptExports::Unknown` (#81214) Closes PACK-4881 Previously, you'd get both a `Parsing ecmascript source code failed` error and a `export Abc was not found in module` error if anything imported from the module with the parse error (because it had `EcmascriptExports::None` in that case).
[ { "path": ".prettierignore", "patch": "@@ -64,6 +64,7 @@ test/e2e/async-modules/amp-validator-wasm.js\n /turbopack/crates/next-transform-strip-page-exports/tests\n /turbopack/crates/next-transform-dynamic/tests\n /turbopack/crates/turbopack-tests/tests/execution/turbopack/basic/error/input/broken.js\n+/turb...
2025-07-03T06:36:36
golang/go
20a924fe877b70af75d26d0e7fa86b3310851f76
3046b499918929944cbce1c0ed14c14d0b431adf
log/slog: make examples playable Fixes #69246 Change-Id: I8e59132980404ee58ba2ca8718dd9f68404fdf8d GitHub-Last-Rev: f59d3fad2002cda69a24789f2fdd4e9753cede9c GitHub-Pull-Request: golang/go#69249 Reviewed-on: https://go-review.googlesource.com/c/go/+/610535 Reviewed-by: Sean Liao <sean@liao.dev> Auto-Submit: Sean Liao ...
[ { "path": "src/log/slog/example_discard_test.go", "patch": "@@ -6,15 +6,20 @@ package slog_test\n \n import (\n \t\"log/slog\"\n-\t\"log/slog/internal/slogtest\"\n \t\"os\"\n )\n \n func Example_discardHandler() {\n+\tremoveTime := func(groups []string, a slog.Attr) slog.Attr {\n+\t\tif a.Key == slog.TimeKe...
2025-04-06T16:29:46
rust-lang/rust
6af91c56d199851abfebbbab4745f34f229649f1
cee9cc6113b1c5ae3f47a87b73f546099d4b4296
Move tests from tests/crashes to tests/ui now that they don't ICE
[ { "path": "tests/crashes/137190-2.rs", "patch": "@@ -1,18 +0,0 @@\n-//@ known-bug: #137190\n-trait Supertrait<T> {\n- fn method(&self) {}\n-}\n-\n-trait Trait<P>: Supertrait<()> {}\n-\n-impl<P> Trait<P> for () {}\n-\n-const fn upcast<P>(x: &dyn Trait<P>) -> &dyn Supertrait<()> {\n- x\n-}\n-\n-const fn...
2026-02-07T11:42:59
electron/electron
0240f6664e5c94d68cb9ad7fb1a9e7c8bbf281d3
f12e12b341cbc202388d704449b2fcf6c1743ae0
fix: crash in utilityProcess when generating code from strings (#38014)
[ { "path": "shell/app/electron_main_delegate.cc", "patch": "@@ -40,6 +40,7 @@\n #include \"shell/common/logging.h\"\n #include \"shell/common/options_switches.h\"\n #include \"shell/common/platform_util.h\"\n+#include \"shell/common/process_util.h\"\n #include \"shell/common/thread_restrictions.h\"\n #includ...
2023-04-20T00:27:02
facebook/react
766eac46bb52bda28f87c11740214a4444ca881b
37bdff675c28e247333ffe35055534ad94941e8c
Remove outdated enableSchedulerDebugging flag (#28101) This flag was moved to the scheduler feature flags, so these flags don't do anything.
[ { "path": "packages/shared/ReactFeatureFlags.js", "patch": "@@ -34,11 +34,6 @@ export const enableClientRenderFallbackOnTextMismatch = true;\n export const enableFormActions = true;\n export const enableAsyncActions = true;\n \n-// Not sure if www still uses this. We don't have a replacement but whatever we...
2024-01-26T21:53:01
nodejs/node
dda30f972ad8c304800edab3cba5d3a8533ee68a
c1dc3072213c49a57493a4d4396761ed921617ae
doc: fix module customization hook examples When running these examples, `node` fails to return as this `MessagePort` keeps the event loop active in the main thread unless it is `unref()`ed. Fixes: https://github.com/nodejs/node/issues/52846 PR-URL: https://github.com/nodejs/node/pull/53637 Reviewed-By: Antoine du Ha...
[ { "path": "doc/api/module.md", "patch": "@@ -327,6 +327,7 @@ const { port1, port2 } = new MessageChannel();\n port1.on('message', (msg) => {\n console.log(msg);\n });\n+port1.unref();\n \n register('./my-hooks.mjs', {\n parentURL: import.meta.url,\n@@ -347,6 +348,7 @@ const { port1, port2 } = new Messag...
2024-07-01T13:34:35
golang/go
3046b499918929944cbce1c0ed14c14d0b431adf
a6e74454577c68ea96ce6512e3e92beffbe15c5c
crypto/tls: add offered cipher suites to the handshake error This change makes debugging easier if the server handshake fails because the client only offers unsupported algorithms. Change-Id: I7daac173a16af2e073aec3d9b59709560f540c6f Reviewed-on: https://go-review.googlesource.com/c/go/+/631555 Reviewed-by: Dmitri Sh...
[ { "path": "src/crypto/tls/handshake_server.go", "patch": "@@ -378,7 +378,8 @@ func (hs *serverHandshakeState) pickCipherSuite() error {\n \ths.suite = selectCipherSuite(preferenceList, hs.clientHello.cipherSuites, hs.cipherSuiteOk)\n \tif hs.suite == nil {\n \t\tc.sendAlert(alertHandshakeFailure)\n-\t\tretu...
2024-11-24T14:28:34
rust-lang/rust
cee9cc6113b1c5ae3f47a87b73f546099d4b4296
06cafcbe08b1b0d4235685abd5f817ae1979cefa
Fix an ICE in the vtable iteration for a trait reference in const eval when a supertrait not implemented compiler/rustc_trait_selection/src/traits/vtable.rs@`vtable_entries`: The impossible predicates check in `vtable_entries` used `instantiate_own` which only includes the method's own where-clauses, not the parent tr...
[ { "path": "compiler/rustc_trait_selection/src/traits/vtable.rs", "patch": "@@ -12,7 +12,7 @@ use rustc_span::DUMMY_SP;\n use smallvec::{SmallVec, smallvec};\n use tracing::debug;\n \n-use crate::traits::{impossible_predicates, is_vtable_safe_method};\n+use crate::traits::is_vtable_safe_method;\n \n #[derive...
2026-02-07T11:37:00
electron/electron
de192c2db26c673b5dd0fcc0e44990d580b3543e
941153be329c0f0321bb8ba7cc73fb3f01499642
chore: bump node to v18.16.0 (main) (#37973) * chore: bump node in DEPS to v18.16.0 * build,test: add proper support for IBM i https://github.com/nodejs/node/pull/46739 * lib: enforce use of trailing commas https://github.com/nodejs/node/pull/46881 * src: add initial support for single executable applic...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '114.0.5715.0',\n 'node_version':\n- 'v18.15.0',\n+ 'v18.16.0',\n 'nan_version':\n '16fa32231e2ccd89d2804b3f765319128b20c4ac',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2023-04-18T20:23:11
facebook/react
788182f7099cf927a454ff0c37d25d94b4f0e895
4ec05660a2f56aa47d9d82eaeeb8a34df56f8dbc
[patch] Patch edge case: RenameVariables should visit lvalues --- This is likely a rare edge case, but it does produce a parse error. RenameVariables visits all identifier references to ensure we don't end up producing conflicting variable declarations, using a stack of block scopes to check "in scope variables...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/RenameVariables.ts", "patch": "@@ -16,6 +16,7 @@ import {\n ReactiveInstruction,\n ReactiveScopeBlock,\n } from \"../HIR/HIR\";\n+import { eachInstructionLValue } from \"../HIR/visitors\";\n import {\n ReactiveFunctionVisitor,\n...
2024-01-26T20:29:09
vercel/next.js
e358e301dc00e4d18e00da4bb80e53c9087af423
c66739e60fbd3d119e18ae00354e2dfcbb2a50bd
Format Turbopack NFT tests (#81199) <!-- Thanks for opening a PR! Your contribution is much appreciated. To make sure your PR is handled as smoothly as possible we request that you follow the checklist sections below. Choose the right checklist for the change(s) that you're making: ## For Contributors ### Improving ...
[ { "path": ".prettierignore", "patch": "@@ -59,7 +59,6 @@ test/e2e/async-modules/amp-validator-wasm.js\n # turbopack crates, disable for some tests and precompiled dependencies.\n /turbopack/crates/*/js/src/compiled\n /turbopack/crates/turbopack/bench.json\n-/turbopack/crates/turbopack/tests\n /turbopack/cra...
2025-07-03T05:19:33
nodejs/node
2e5fc8aa1aaf18bdee227dfc03380e9e60dd0cd5
d4a40fd1f77e4a3a7dff3b4cf654ce8557198846
doc: fix doc for correct usage with plan & TestContext Fixed section in the doc that describes a test that uses the ⁠plan feature in the test-runner. However, the test in this example fails. The fix use (Textcontext) and reduce the plan number to 1 since we have 1 assertion. PR-URL: https://github.com/nodejs/node/pu...
[ { "path": "doc/api/test.md", "patch": "@@ -3423,9 +3423,9 @@ behaves in the same fashion as the top level [`test()`][] function.\n test('top level test', async (t) => {\n await t.test(\n 'This is a subtest',\n- { only: false, skip: false, concurrency: 1, todo: false, plan: 4 },\n+ { only: false,...
2024-06-29T19:20:35
facebook/react
9aef5d225b489ceeba753c5c86b236259baf816c
60f190a55948a7512d4e2a336f03b45fd38d6a80
Use modern rendering APIs for attribute-behavior fixture (#27883) The attribute-behavior fixture now uses `createRoot().render()` and `renderToReadableStream` instead of depdrecated APIs. This revealed some changes to the snapshots that I annotated for discussion. I also added some new tests related to upcomin...
[ { "path": "fixtures/attribute-behavior/.gitignore", "patch": "@@ -10,7 +10,7 @@\n /build\n /public/react.development.js\n /public/react-dom.development.js\n-/public/react-dom-server-legacy.browser.development.js\n+/public/react-dom-server.browser.development.js\n \n # misc\n .DS_Store", "additions": 1, ...
2024-01-26T18:03:42
vercel/next.js
c66739e60fbd3d119e18ae00354e2dfcbb2a50bd
2db64b485eb684212109a8e464382522c36db70a
Fix if condition in retry workflow (#81211) Fixes: https://github.com/vercel/next.js/actions/runs/16040442318
[ { "path": ".github/workflows/retry_deploy_test.yml", "patch": "@@ -18,7 +18,7 @@ jobs:\n # Retry the test-e2e-deploy-release workflow up to 2 times\n if: >-\n ${{ \n- github.event.workflow_run.display_title == 'test-e2e-deploy canary'\n+ github.event.workflow_run.display_title ==...
2025-07-03T03:07:42
rust-lang/rust
3ee0286396e9cfacd3c0cb1ce7417b6a7a8e6308
9aebf045fb16941e2273aaba2a6d44231dad84e1
internal: Remove `Edition::CURRENT_FIXME`
[ { "path": "src/tools/rust-analyzer/Cargo.toml", "patch": "@@ -192,8 +192,6 @@ unused_lifetimes = \"warn\"\n unreachable_pub = \"warn\"\n \n [workspace.lints.clippy]\n-# FIXME Remove the tidy test once the lint table is stable\n-\n ## lint groups\n complexity = { level = \"warn\", priority = -1 }\n correctne...
2026-01-18T12:35:42
electron/electron
7a6af1a5299a6f54e169e57683cf9089e7db62e6
1ffe7ee76b8c61d7ef6a0fc03eaff7debc2accc0
chore: bump chromium to 114.0.5715.0 (main) (#37976) * chore: bump chromium in DEPS to 114.0.5712.0 * chore: update patches * 4401084: Remove extensions::InfoMap which is no longer needed. | https://chromium-review.googlesource.com/c/chromium/src/+/4401084 * 4415646: Add more details to print settings error l...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '114.0.5710.0',\n+ '114.0.5715.0',\n 'node_version':\n 'v18.15.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "filena...
2023-04-17T21:40:26
golang/go
a6e74454577c68ea96ce6512e3e92beffbe15c5c
e8adc393327c92525902d38a34af7f2a24e78e25
cmd/go/internal/load: join incompatible and dirty build specifiers with . Change "+incompatible+dirty" version to be "+incompatible.dirty" such that it is SemVer spec compatible. Fixes #71971 Change-Id: I714ffb3f1ad88c793656c3652367db34739a2144 Reviewed-on: https://go-review.googlesource.com/c/go/+/652955 LUCI-TryBo...
[ { "path": "src/cmd/go/internal/load/pkg.go", "patch": "@@ -2585,7 +2585,12 @@ func (p *Package) setBuildInfo(ctx context.Context, autoVCS bool) {\n \t\tvers := revInfo.Version\n \t\tif vers != \"\" {\n \t\t\tif st.Uncommitted {\n-\t\t\t\tvers += \"+dirty\"\n+\t\t\t\t// SemVer build metadata is dot-separated...
2022-07-19T15:07:00
vercel/next.js
4cf90059c3ca91e8b2a4f718c98972b48aa08c2e
ac393c2658ea12a579a5c89d903696d104e3a6fc
Reuse resolvedPathname from prepare (#81194) This applies the fixed `resolvedPathname` from https://github.com/vercel/next.js/pull/81144 to the other route handlers that were trying to build this value as well so we use single source of truth. Validated against our deploy tests https://github.com/vercel/vercel/action...
[ { "path": "packages/next/src/build/templates/app-route.ts", "patch": "@@ -21,7 +21,6 @@ import {\n fromNodeOutgoingHttpHeaders,\n toNodeOutgoingHttpHeaders,\n } from '../../server/web/utils'\n-import { decodePathParams } from '../../server/lib/router-utils/decode-path-params'\n import { getCacheControlH...
2025-07-03T02:21:09
facebook/react
60f190a55948a7512d4e2a336f03b45fd38d6a80
51c380d6ed303a54dad7b55258dd7aa8c6bb3fe1
Capture React.startTransition errors and pass to reportError (#28111) To make React.startTransition more consistent with the hook form of startTransition, we capture errors thrown by the scope function and pass them to the global reportError function. (This is also what we do as a default for onRecoverableError.) ...
[ { "path": "packages/react-reconciler/src/ReactFiberHooks.js", "patch": "@@ -1983,15 +1983,14 @@ function runFormStateAction<S, P>(\n }\n try {\n const returnValue = action(prevState, payload);\n- notifyTransitionCallbacks(currentTransition, returnValue);\n-\n if (\n returnValue !== null...
2024-01-26T17:10:33
electron/electron
1ffe7ee76b8c61d7ef6a0fc03eaff7debc2accc0
c857c9b7e2575769a26769dfa32e967a3da26e99
build: fix building with no PDF support (#38003)
[ { "path": "shell/browser/extensions/api/resources_private/resources_private_api.cc", "patch": "@@ -9,7 +9,6 @@\n \n #include \"base/values.h\"\n #include \"chrome/browser/browser_process.h\"\n-#include \"chrome/browser/pdf/pdf_extension_util.h\"\n #include \"chrome/common/extensions/api/resources_private.h\...
2023-04-17T15:02:43
golang/go
e8adc393327c92525902d38a34af7f2a24e78e25
16dbd2be3969f4658ced59ddb89871d9f00cf3a5
cmd/go: fix GOAUTH parsing for trailing slash We were treating a url with a trailing slash differently than one without. This CL treats them the same. Additionally this fixes a bug in the way we iteratively try different prefixes. We were only trying the host url but this change now tries all different prefixes. Fix...
[ { "path": "src/cmd/go/alldocs.go", "patch": "@@ -2618,7 +2618,7 @@\n //\t\tBlankLine = '\\n' .\n //\n //\tExample:\n-//\t\thttps://example.com/\n+//\t\thttps://example.com\n //\t\thttps://example.net/api/\n //\n //\t\tAuthorization: Basic <token>", "additions": 1, "deletions": 1, "language":...
2025-04-02T20:30:37
facebook/react
763612647ceb66d95f728af896ca5e18a8181db8
6c64428d904f8339cddaa0f4850cba89acabe0bb
fix incorrect insertion order of stylesheets (#28108) ## Summary In the precendences Map every key is prefixed with `p`. This fixes one case where this is missing. ## How did you test this change? <!-- Demonstrate the code is solid. Example: The exact commands you ran and their output, screenshots / videos...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -3559,7 +3559,7 @@ function insertStylesheetIntoRoot(\n if (prior === last) {\n precedences.set('last', instance);\n }\n- precedences.set(precedence, instance);\n+ precedences.set('p' + precedence, instance);\n...
2024-01-26T15:54:58
electron/electron
c7ea8872270a281fea344faa9c51510740a1bc08
fa3379a5d5cd6494c126be4d4d21a36c75f46554
chore: drop patch for fixed Linux menus issue in Views (#37984)
[ { "path": "patches/chromium/.patches", "patch": "@@ -126,4 +126,3 @@ expose_v8initializer_codegenerationcheckcallbackinmainthread.patch\n chore_patch_out_profile_methods_in_profile_selections_cc.patch\n add_gin_converter_support_for_arraybufferview.patch\n chore_defer_usb_service_getdevices_request_until_us...
2023-04-16T04:20:34
vercel/next.js
084825c2a548634cf660e98d8631d841f6b995a7
799b1be6652438dfd6ec71b25d51ac784f492aca
[segment explorer] fix route path in top navbar (#81195) * Remove the `app` prefix in top bar of route info as we only need to know the pathname. It's also removed in the new design * `state.page` was only passed for panel ui but missing in segment explorer of dock indicator
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/errors/dev-tools-indicator/dev-tools-indicator.tsx", "patch": "@@ -64,6 +64,7 @@ export function DevToolsIndicator({\n isTurbopack={!!process.env.TURBOPACK}\n disabled={state.disableDevIndicator || !isDevToolsIndicatorVisible}\n ...
2025-07-02T23:10:08
golang/go
16dbd2be3969f4658ced59ddb89871d9f00cf3a5
6fd9ee3da9dc5570f66735e835cac2d66a0f6244
cmd/compile: be more conservative about arm64 insns that can take zero register It's really only needed for stores and store-like instructions (atomic exchange, compare-and-swap, ...). Fixes #73180 Change-Id: I8ecd833a301355adf0fa4bff43250091640c6226 Reviewed-on: https://go-review.googlesource.com/c/go/+/663155 Revi...
[ { "path": "src/cmd/compile/internal/ssa/_gen/ARM64Ops.go", "patch": "@@ -138,17 +138,17 @@ func init() {\n \t// Common individual register masks\n \tvar (\n \t\tgp = buildReg(\"R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 R16 R17 R19 R20 R21 R22 R23 R24 R25 R26 R30\")\n-\t\tgpg = gp ...
2025-04-05T15:34:12
vercel/next.js
799b1be6652438dfd6ec71b25d51ac784f492aca
6111192f4ad08c79856497942d48028a604dc0e5
cleanup(turbopack) Show users an error message when Webpack loaders have a glob in only the extension (#81084) This PR adds validation for webpack loader rules in Next.js configuration to prevent a common issue where users define wildcard extensions without corresponding wildcard patterns in the `as` option. This situ...
[ { "path": "crates/next-core/src/next_config.rs", "patch": "@@ -9,11 +9,15 @@ use turbo_tasks::{\n trace::TraceRawVcs,\n };\n use turbo_tasks_env::EnvMap;\n+use turbo_tasks_fs::FileSystemPath;\n use turbopack::module_options::{\n ConditionItem, ConditionPath, LoaderRuleItem, OptionWebpackRules,\n ...
2025-07-02T20:39:14
electron/electron
fa3379a5d5cd6494c126be4d4d21a36c75f46554
cdace753894b693ea9b0d6c5570d585fc118c24b
chore: fix lint (#37971)
[ { "path": "shell/browser/web_contents_preferences.cc", "patch": "@@ -432,14 +432,16 @@ void WebContentsPreferences::OverrideWebkitPrefs(\n iter->second;\n if (auto iter = default_font_family_.find(\"serif\");\n iter != default_font_family_.end())\n- prefs->serif_font_family_map[bl...
2023-04-13T13:54:41
golang/go
1647896aa227d8546de3dbe70a5049eecee964e3
e373771490bab84449c7981a6be84e995de1ae80
cmd/compile: on 32-bit, bump up align for values that may contain 64-bit fields On 32-bit systems, these need to be aligned to 8 bytes, even though the typechecker doesn't tell us that. The 64-bit allocations might be the target of atomic operations that require 64-bit alignment. Fixes 386 longtest builder. Fixes #...
[ { "path": "src/cmd/compile/internal/ssagen/ssa.go", "patch": "@@ -701,20 +701,42 @@ func (s *state) paramsToHeap() {\n \tdo(typ.Results())\n }\n \n+// allocSizeAndAlign returns the size and alignment of t.\n+// Normally just t.Size() and t.Alignment(), but there\n+// is a special case to handle 64-bit atomi...
2025-04-04T20:05:23
electron/electron
e84bcb39e7b6b5ff606236f9e31dc86afa6710c2
fceeb64e7c835868bec48442cfb4c7450bddf959
fix: defaultFontFamily in webPreferences (#37863) * fix: defaultFontFamily in webPreferences * chore: check if default_font_family_ is empty
[ { "path": "shell/browser/web_contents_preferences.cc", "patch": "@@ -425,24 +425,30 @@ void WebContentsPreferences::OverrideWebkitPrefs(\n prefs->web_security_enabled = web_security_;\n prefs->allow_running_insecure_content = allow_running_insecure_content_;\n \n- if (auto font =\n- default_fo...
2023-04-13T09:30:25
vercel/next.js
5dac44820cdb54bcffeb31fdf534bed75db93649
cd3f86815f3ffefff8bb2143a7339655fd93621a
Turbopack: fix and finish immutable tasks (#80996) ### What? Fixes the problems with the implementation of immutable tasks, adds tests and debug asserts to ensure it's working. * There was some confusion between children and dependencies. Children are not involved with immutablility, only dependencies are. * Opt out...
[ { "path": "crates/next-api/src/project.rs", "patch": "@@ -431,7 +431,7 @@ impl ProjectContainer {\n \n #[turbo_tasks::value_impl]\n impl ProjectContainer {\n- #[turbo_tasks::function(invalidator)]\n+ #[turbo_tasks::function]\n pub async fn project(&self) -> Result<Vc<Project>> {\n let env_...
2025-07-02T13:18:41
nodejs/node
8e5d88b6413558b6b4bc127f87fc8122311639ae
27f1306ee17b32db30ba9949d374482eb3b2c74c
stream: pipeline wait for close before calling the callback The pipeline should wait for close event to finish before calling the callback. The `finishCount` should not below 0 when calling finish function. Fixes: https://github.com/nodejs/node/issues/51540 Co-authored-by: wh0 <wh0@users.noreply.github.com> PR-URL:...
[ { "path": "lib/internal/streams/pipeline.js", "patch": "@@ -225,6 +225,10 @@ function pipelineImpl(streams, callback, opts) {\n finishImpl(err, --finishCount === 0);\n }\n \n+ function finishOnlyHandleError(err) {\n+ finishImpl(err, false);\n+ }\n+\n function finishImpl(err, final) {\n if (...
2024-06-27T11:29:35
facebook/react
85b296e9b6ded4accd9ec3389297f95091fb1ac0
382190c595126837ee7e43b4fa953f4edd30e01c
Async action support for React.startTransition (#28097) This adds support for async actions to the "isomorphic" version of startTransition (i.e. the one exported by the "react" package). Previously, async actions were only supported by the startTransition that is returned from the useTransition hook. The interes...
[ { "path": "packages/react-reconciler/src/ReactFiberAsyncAction.js", "patch": "@@ -13,6 +13,7 @@ import type {\n RejectedThenable,\n } from 'shared/ReactTypes';\n import type {Lane} from './ReactFiberLane';\n+import type {BatchConfigTransition} from './ReactFiberTracingMarkerComponent';\n \n import {reques...
2024-01-26T02:54:45
golang/go
6839e71d82e0f2c93e043820db6c0238a65ae0fa
7a427143b6ff296125359084a8959bf0c9d23e78
internal/syscall/windows: use unsafe.Pointer instead of uintptr Some functions accept a uintptr when they should accept an unsafe.Pointer, else the compiler won't know that the pointer should be kept alive across the call, potentially causing undefined behavior. Fixes #73156 (potentially) Change-Id: I29c847eb8ffbb78...
[ { "path": "src/internal/syscall/windows/at_windows.go", "patch": "@@ -116,7 +116,7 @@ func Openat(dirfd syscall.Handle, name string, flag uint64, perm uint32) (_ sysc\n \t\tFILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,\n \t\tdisposition,\n \t\tFILE_SYNCHRONOUS_IO_NONALERT|FILE_OPEN_FOR_BACKUP_INTENT|o...
2025-04-04T10:16:09
vercel/next.js
fa3e45ea158effc2e98800d349dfbddcbf21792d
5efef452262235a19baee2e35c9acdb0c1cbd7e7
build(turbopack): Update `swc_core` to `v30.0.1` (#81179) ### What? ChangeLog: https://github.com/swc-project/swc/compare/swc_core%40v29.4.2...swc_core%40v30.0.1 ### Why? Apply https://github.com/swc-project/swc/pull/10754 to fix preset-env
[ { "path": ".cargo/config.toml", "patch": "@@ -71,3 +71,6 @@ rustflags = [\n \n [target.armv7-unknown-linux-gnueabihf]\n linker = \"arm-linux-gnueabihf-gcc\"\n+\n+[target.wasm32-unknown-unknown]\n+rustflags = [\"-Zshare-generics=y\", \"--cfg\", 'getrandom_backend=\"wasm_js\"']\n\\ No newline at end of file",...
2025-07-02T12:02:12
electron/electron
fceeb64e7c835868bec48442cfb4c7450bddf959
f03315ad4d16d0d066f7c3f8a35ab06d297fb440
fix: swipe event emission on macOS (#37946)
[ { "path": "shell/browser/ui/cocoa/electron_ns_window.mm", "patch": "@@ -25,7 +25,6 @@ - (NSImage*)_cornerMask;\n - (int64_t)_resizeDirectionForMouseLocation:(CGPoint)location;\n @end\n \n-#if IS_MAS_BUILD()\n // See components/remote_cocoa/app_shim/native_widget_mac_nswindow.mm\n @interface NSView (CRFrameV...
2023-04-13T09:28:22
nodejs/node
53ac448022b7cdfcc09296da88d9a1b59921f6bf
b40ff3afc5d26208dcfe96ab1c94472ad36eafac
test: fix OpenSSL version checks As per the original pull request that introduced the OpenSSL version check in `parallel/test-crypto-dh`: ``` Error message change is test-only and uses the right error message for versions >=3.0.12 in 3.0.x and >= 3.1.4 in 3.1.x series. ``` Fix the check so that: - The older message ...
[ { "path": "test/parallel/test-crypto-dh.js", "patch": "@@ -86,8 +86,9 @@ const crypto = require('crypto');\n }\n \n {\n- const hasOpenSSL3WithNewErrorMessage = (common.hasOpenSSL(3, 0, 12) && !common.hasOpenSSL(3, 1, 1)) ||\n- (common.hasOpenSSL(3, 1, 4) && !...
2024-06-26T19:45:54
golang/go
16a6b71f18a5d05dde1a208a317a75fd652597f0
822031dffc43567b4c60e12e77afe48a00028c0e
cmd/compile: improve store-to-load forwarding with compatible types Improve the compiler's store-to-load forwarding optimization by relaxing the type comparison condition. Instead of requiring exact type equality (CMPeq), we now use copyCompatibleType which allows forwarding between compatible types where safe. Fix s...
[ { "path": "src/cmd/compile/internal/ssa/_gen/generic.rules", "patch": "@@ -736,26 +736,26 @@\n // Load of store of same address, with compatibly typed value and same size\n (Load <t1> p1 (Store {t2} p2 x _))\n \t&& isSamePtr(p1, p2)\n-\t&& t1.Compare(x.Type) == types.CMPeq\n+\t&& copyCompatibleType(t1, x.Ty...
2025-04-01T15:43:38
facebook/react
b123b9c4f054a7def7ed84e350ccd46cc86672a6
8bb6ee1d33ca6c7e34342bc4b17aac0449ab6899
[Flight] Refactor the Render Loop to Behave More Like Fizz (#28065) This refactors the Flight render loop to behave more like Fizz with similar naming conventions. So it's easier to apply similar techniques across both. This is not necessarily better/faster - at least not yet. This doesn't yet implement serializa...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOMEdge-test.js", "patch": "@@ -242,6 +242,20 @@ describe('ReactFlightDOMEdge', () => {\n expect(result).toEqual(resolvedChildren);\n });\n \n+ it('should execute repeated server components in a compact form', async () => {\n+ a...
2024-01-25T17:09:11
vercel/next.js
5efef452262235a19baee2e35c9acdb0c1cbd7e7
d41950dc96761d4b5f85e50462cd84ec3b35f498
Update caching.mdx (#81129) ### What? Fix misleading information in the docs about mixing cached and uncached `fetch` calls during dynamic rendering. ### Why? I followed the guide (using Next.js 15.3.2) and tried it out with this code: ```ts const joke = await fetch("https://api.chucknorris.io/jokes/random", { ...
[ { "path": "docs/01-app/02-guides/caching.mdx", "patch": "@@ -312,7 +312,7 @@ You can opt out of the Full Route Cache, or in other words, dynamically render c\n \n - **Using a [Dynamic API](#dynamic-apis)**: This will opt the route out from the Full Route Cache and dynamically render it at request time. The ...
2025-07-02T07:56:02
electron/electron
f03315ad4d16d0d066f7c3f8a35ab06d297fb440
6f2ab392abb3b18f79c1287727e0fafa8ec94a73
docs: Fix the syntax error for code fragment (#37939) By using `app.on('ready').then(xxx)`, application will throw a TypeError
[ { "path": "docs/tutorial/tutorial-2-first-app.md", "patch": "@@ -274,7 +274,7 @@ calling `createWindow()` once its promise is fulfilled.\n You typically listen to Node.js events by using an emitter's `.on` function.\n \n ```diff\n-+ app.on('ready').then(() => {\n++ app.on('ready', () => {\n - app.whenReady(...
2023-04-13T08:00:27
nodejs/node
2068c4083bd8672175a434bc0774d1be72a284a5
4c730aed7f825af1691740663d599e9de5958f89
tools: fix skip detection of test runner output Fix the Python test harness so that it no longer treats the `# skipped` part of the summary at the end of the built-in test runner output as marking the test as skipped. PR-URL: https://github.com/nodejs/node/pull/53545 Fixes: https://github.com/nodejs/node/issues/50346...
[ { "path": "tools/test.py", "patch": "@@ -83,7 +83,7 @@ def get_module(name, path):\n \n \n logger = logging.getLogger('testrunner')\n-skip_regex = re.compile(r'# SKIP\\S*\\s+(.*)', re.IGNORECASE)\n+skip_regex = re.compile(r'(?:\\d+\\.\\.\\d+|ok|not ok).*# SKIP\\S*\\s+(.*)', re.IGNORECASE)\n \n VERBOSE = Fal...
2024-06-24T13:05:56
golang/go
822031dffc43567b4c60e12e77afe48a00028c0e
d164776615f75105c6f988900d798a0f476c4668
sync: add WaitGroup.Go Fixes #63796 Change-Id: I2a941275dd64ef858cbf02d31a759fdc5c082ceb Reviewed-on: https://go-review.googlesource.com/c/go/+/662635 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Alan Donovan <adonovan@google.com> Auto-Submit: Carlos Amedee <c...
[ { "path": "api/next/63796.txt", "patch": "@@ -0,0 +1 @@\n+pkg sync, method (*WaitGroup) Go(func()) #63769", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/sync/63769.md", "patch": "@@ -0,0 +1,2 @@\n+[WaitGroup] has added a new method...
2025-04-03T15:10:16