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
b55ccb1b84e4fb7f15a092c05b6c159c397c9922
eacf189eca0af417f3250b9bbf15a987e3710da3
Repro for hoisting bug I had added a repro for this earlier but hadn't realized it was due to const hoisting. Renaming this test to clarify what's causing the problem and to make it easier to find.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.repro-uninitialized-value-kind-with-function-expression-params.expect.md", "patch": "@@ -1,24 +0,0 @@\n-\n-## Input\n-\n-```javascript\n-function Component(props) {\n- // This `x` uses a context variable:\n- const...
2023-11-16T00:34:28
electron/electron
b142fce229c5821083ad6b7c9aa6aa5790032127
f959fb0c963701c40f309eb8256530f788d5851e
fix: `protocol.handle` not intercepting file protocol (#39048) fix: protocol.handle not intercepting file protocol
[ { "path": "lib/browser/api/protocol.ts", "patch": "@@ -9,7 +9,7 @@ const { registerSchemesAsPrivileged, getStandardSchemes, Protocol } = process._l\n const ERR_FAILED = -2;\n const ERR_UNEXPECTED = -9;\n \n-const isBuiltInScheme = (scheme: string) => scheme === 'http' || scheme === 'https';\n+const isBuiltI...
2023-07-12T09:42:49
nodejs/node
dd8eeec3f036549f1d8ed3c8b648b80795a48099
74ea78ddc605554319fe242e45523a65b102d80d
buffer: truncate instead of throw when writing beyond buffer Fixes: https://github.com/nodejs/node/issues/54523 Fixes: https://github.com/nodejs/node/issues/54518 PR-URL: https://github.com/nodejs/node/pull/54524 Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Re...
[ { "path": "lib/internal/buffer.js", "patch": "@@ -1040,7 +1040,7 @@ function addBufferPrototypeMethods(proto) {\n if (offset < 0 || offset > this.byteLength) {\n throw new ERR_BUFFER_OUT_OF_BOUNDS('offset');\n }\n- if (length < 0 || length > this.byteLength - offset) {\n+ if (length < 0)...
2024-08-27T08:48:52
vercel/next.js
7d030a0295d36e649320ae501b609d9eac48bcb6
cf1b7194a882b07f2e59021fedb6fbed44ac8f4c
[devtool] copy decoded info of error details (#81735) Change the copy button's content from the original error stack trace to a prompt template with error details from the error page and ask AI to fix it. You can copy it for either bug reporting or asking AI agent to explain/fix the errors for you. ### Example cont...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/copy-button/index.tsx", "patch": "@@ -133,20 +133,35 @@ function useCopyModern(content: string) {\n const useCopy =\n typeof React.useActionState === 'function' ? useCopyModern : useCopyLegacy\n \n-export function CopyButton({\n- actionLab...
2025-07-18T00:17:09
golang/go
66ea0ee409df5a025296d7dac8bb3dc1ec0d2b90
d365f2266df98985f19705717ff8cf4ad3e743dc
spec: avoid use of "raise" in conjunction with panics For #73526 Change-Id: I06d8ae9080695745db68a51635faa0b244c1760e Reviewed-on: https://go-review.googlesource.com/c/go/+/670155 Reviewed-by: Robert Griesemer <gri@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> R...
[ { "path": "doc/go_spec.html", "patch": "@@ -7894,7 +7894,7 @@ <h3 id=\"Handling_panics\">Handling panics</h3>\n <p>\n The <code>protect</code> function in the example below invokes\n the function argument <code>g</code> and protects callers from\n-run-time panics raised by <code>g</code>.\n+run-time panics ...
2025-05-05T20:39:11
facebook/react
eacf189eca0af417f3250b9bbf15a987e3710da3
369c315ac49806f5869ec3754cbd9747fe72993d
[playground] Remove button from error message We show the entire error in panel, no need to click to console.log This makes it easier to copy the error now. Before: https://github.com/facebook/react-forget/assets/565765/4c13abfe-a06d-4580-b3d7-b02792f53e57 After: https://github.com/facebook/react-forget/a...
[ { "path": "compiler/apps/playground/components/Editor/Output.tsx", "patch": "@@ -17,7 +17,7 @@ import { type CompilerError } from \"babel-plugin-react-forget\";\n import parserBabel from \"prettier/plugins/babel\";\n import * as prettierPluginEstree from \"prettier/plugins/estree\";\n import * as prettier f...
2023-11-16T12:01:59
electron/electron
905e41bbddd72f4d19c294b430d1a7c282e22a5d
3e3152008ff569632e0b36d53ac9a24fae515709
fix: use StartUpdating method for PipeWire capturer (#38833) * fix: use StartUpdating method for PipeWire capturer Fixed a crash related to PipeWire capturer by adapting to Chromium's interface changes. Chromium expects a call to `NativeDesktopMediaList::StartUpdating` with an implementation of `DesktopMediaList...
[ { "path": "patches/chromium/desktop_media_list.patch", "patch": "@@ -82,7 +82,7 @@ index 33ca7a53dfb6d2c9e3a33f0065a3acd806e82e01..9fdf2e8ff0056ff407015b914c6b03eb\n const Source& GetSource(int index) const override;\n DesktopMediaList::Type GetMediaListType() const override;\n diff --git a/chrome/bro...
2023-07-11T08:21:11
nodejs/node
c00ea01f2bbee0427d38ba4573dae310394f42fe
b39fad6052b17b5c211c675111da0a6846134c3a
buffer: allow invalid encoding in from Looks like a bug to me but the change should probably done in a semver majpr. PR-URL: https://github.com/nodejs/node/pull/54533 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yueson...
[ { "path": "lib/buffer.js", "patch": "@@ -476,7 +476,7 @@ function createFromString(string, ops, length = ops.byteLength(string)) {\n \n function fromString(string, encoding) {\n let ops;\n- if (!encoding || encoding === 'utf8') {\n+ if (!encoding || encoding === 'utf8' || typeof encoding !== 'string') {...
2024-08-27T04:01:30
vercel/next.js
53a92f872236c9fd0208519a6e91e3d3187d8722
a87a0721098e3fb6fbfb9102f7c160917ae72461
Add trigger for v0 sync workflow (#81645) <!-- 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 ### Impr...
[ { "path": ".github/workflows/test_e2e_deploy_release.yml", "patch": "@@ -89,10 +89,20 @@ jobs:\n DD_ENV=ci npx @datadog/datadog-ci@2.23.1 junit upload --tags test.type:deploy --service nextjs ./test/test-junit-report\n fi\n \n- front-sync:\n+ sync-repositories:\n needs: test-depl...
2025-07-17T22:53:03
golang/go
d365f2266df98985f19705717ff8cf4ad3e743dc
92e23b683f01fe581a0e14b5658f0c59d9ce0d38
runtime: replace mentions of "raised" with "panicked" Fixes #73526 Change-Id: I4b801cf3e54b99559e6d5ca8fdb2fd0692a0d3a5 Reviewed-on: https://go-review.googlesource.com/c/go/+/669975 TryBot-Bypass: Mark Freeman <mark@golang.org> Reviewed-by: Robert Griesemer <gri@google.com> Auto-Submit: Mark Freeman <mark@golang.org>...
[ { "path": "doc/next/4-runtime.md", "patch": "@@ -3,19 +3,19 @@\n <!-- go.dev/issue/71517 -->\n \n The message printed when a program exits due to an unhandled panic\n-that was recovered and re-raised no longer repeats the text of\n+that was recovered and repanicked no longer repeats the text of\n the panic ...
2025-05-05T16:33:46
facebook/react
ee68446ff198755bd38202ac9139275b657968b0
aec521a96d3f1bebc2ba38553d14f4989c6e88e0
[Fizz] handle errors in `onHeaders` (#27712) `onHeaders` can throw however for now we can assume that headers are optimistic values since the only things we produce for them are preload links. This is a pragmatic decision because React could concievably have headers in the future which were not optimistic and thus ...
[ { "path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js", "patch": "@@ -6131,6 +6131,10 @@ export function emitEarlyPreloads(\n if (onHeaders) {\n const headers = renderState.headers;\n if (headers) {\n+ // Even if onHeaders throws we don't want to call this again so\n+ /...
2023-11-15T20:53:38
electron/electron
3e3152008ff569632e0b36d53ac9a24fae515709
f3f3f5390423207bd2d26e398a565bf2f13dc759
fix: remove types from GTK CSS selectors (#39003) Remove types from GTK CSS selectors similar to Chromium's changes in CL 4289229. Fixes #38786 Co-authored-by: Athul Iddya <athul@iddya.com>
[ { "path": "shell/browser/ui/views/client_frame_view_linux.cc", "patch": "@@ -309,13 +309,13 @@ void ClientFrameViewLinux::PaintAsActiveChanged() {\n \n void ClientFrameViewLinux::UpdateThemeValues() {\n gtk::GtkCssContext window_context =\n- gtk::AppendCssNodeToStyleContext({}, \"GtkWindow#window.bac...
2023-07-10T20:52:12
golang/go
92e23b683f01fe581a0e14b5658f0c59d9ce0d38
30b2b767d6d902787b90476fd00eee4c9b3a3f15
os: avoid escape from Root via paths ending in ../ The doInRoot function operates on a path split into components. The final path component retained any trailing path separator characters, to permit operations in a Root to retain the trailing-separator behavior of non-Root operations. However, doInRoot failed to take ...
[ { "path": "src/os/root.go", "patch": "@@ -254,20 +254,20 @@ func (r *Root) logStat(name string) {\n //\n // \".\" components are removed, except in the last component.\n //\n-// Path separators following the last component are preserved.\n-func splitPathInRoot(s string, prefix, suffix []string) (_ []string,...
2025-04-16T18:01:19
nodejs/node
4f1c27af8c09c45ac7dcb7c48146aa9392cebde8
4ce986468c98098ddf08b34570c949c0d089e344
src: handle errors correctly in webstorage PR-URL: https://github.com/nodejs/node/pull/54544 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
[ { "path": "src/node_webstorage.cc", "patch": "@@ -24,12 +24,16 @@ using v8::IndexedPropertyHandlerConfiguration;\n using v8::Integer;\n using v8::Intercepted;\n using v8::Isolate;\n+using v8::JustVoid;\n using v8::Local;\n using v8::Map;\n using v8::Maybe;\n using v8::MaybeLocal;\n using v8::Name;\n using v...
2024-08-26T17:20:09
vercel/next.js
a87a0721098e3fb6fbfb9102f7c160917ae72461
65e0b7b7579614b07a53ed24d229064c7e2f869d
fix(turbopack) Adjust the way catchall routes are handled when a more specific parallel route exists (#81634) ## Improve App Router Route Prioritization ### What? Fixed a logic bug where we were failing to correctly identify routes as catchall routes due to treating parallel routes as a completed route path. This sho...
[ { "path": "crates/next-core/src/next_app/mod.rs", "patch": "@@ -257,17 +257,22 @@ impl AppPage {\n matches!(self.0.last(), Some(PageSegment::PageType(..)))\n }\n \n- pub fn is_catchall(&self) -> bool {\n- let segment = if self.is_complete() {\n- // The `PageType` is the last...
2025-07-17T21:22:47
facebook/react
369c315ac49806f5869ec3754cbd9747fe72993d
392a4fd9da8ff45f8cd050a17d4a01d89fc0c25f
[hir] Update error message to say global This is non ideal but at least it's a step in the right direction. Getting the correct error requires us to track every identifier and global, which seems a bit excessive for now. We can revisit and improve this error if this is starting to confuse folks.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferReferenceEffects.ts", "patch": "@@ -353,7 +353,7 @@ class InferenceState {\n effect = Effect.Mutate;\n } else {\n CompilerError.throwInvalidReact({\n- reason: `This mutates a variable after it wa...
2023-11-15T17:03:55
electron/electron
117a700724074dfc62649e3e561ff284f07e7cae
c7bdd907d7e1fdcb7741de02f5ca23d47a436437
fix: printing optional access crash on Windows (#38976)
[ { "path": "patches/chromium/printing.patch", "patch": "@@ -91,7 +91,7 @@ index 3a66a52b8d3c6da9cd8d7e9afdc8d59f528ec3d5..facaa6fbca8ee7c04f83607e62b81b95\n : PdfRenderSettings::Mode::POSTSCRIPT_LEVEL3;\n }\n diff --git a/chrome/browser/printing/print_view_manager_base.cc b/chrome/browser/...
2023-07-10T13:26:29
golang/go
5e7f0b947c3907bd23a13864c3fea2b204f11567
044ca4e5c878c785e2c69e5ebcb3d44bf97abc9f
go/types, types2: set up recording of positions for declarations This creates the infrastructure needed to record compiler panics induced somewhere beneath a declaration. For now, this is turned off via a flag. This does not yet use the position information for better error messages. That is moved off to a separate C...
[ { "path": "src/cmd/compile/internal/types2/check.go", "patch": "@@ -20,6 +20,9 @@ var nopos syntax.Pos\n // debugging/development support\n const debug = false // leave on during development\n \n+// position tracing for panics during type checking\n+const tracePos = false // TODO(markfreeman): check perform...
2025-04-10T15:27:29
nodejs/node
4ce986468c98098ddf08b34570c949c0d089e344
eab97b54d4bc7d7a15d26a40cc2c66f032972954
src: handle errors correctly in `permission.cc` Return an empty `MaybeLocal` to indicate that an exception is pending. PR-URL: https://github.com/nodejs/node/pull/54541 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>...
[ { "path": "src/permission/permission.cc", "patch": "@@ -18,6 +18,8 @@ namespace node {\n using v8::Context;\n using v8::FunctionCallbackInfo;\n using v8::Local;\n+using v8::MaybeLocal;\n+using v8::NewStringType;\n using v8::Object;\n using v8::String;\n using v8::Value;\n@@ -105,46 +107,43 @@ Permission::Pe...
2024-08-24T14:45:11
facebook/react
392a4fd9da8ff45f8cd050a17d4a01d89fc0c25f
306fe03e7897199175780f80974b05bf376ad4f9
[test] Add tests for mutating a global The error is thrown correctly but the error message is incorrect.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error.mutate-property-from-global.expect.md", "patch": "@@ -0,0 +1,21 @@\n+\n+## Input\n+\n+```javascript\n+let wat = {};\n+\n+function Foo() {\n+ delete wat.foo;\n+ return wat;\n+}\n+\n+```\n+\n+\n+## Error\n+\n+```\n+...
2023-11-15T17:03:51
vercel/next.js
65e0b7b7579614b07a53ed24d229064c7e2f869d
8a4abf7dc3b378bf9795c122b270534cae598357
bugfix: static resources staleTime should be renewed once refetched (#81771) When the `x-nextjs-staletime` header is sent from the server, the client router was discarding all of its staleTime heuristics (such as lastUsedTime and "reusable" cache entries). This caused an issue where after the static staleTime window e...
[ { "path": "packages/next/src/client/components/router-reducer/prefetch-cache-utils.ts", "patch": "@@ -404,22 +404,7 @@ function getPrefetchEntryCacheStatus({\n kind,\n prefetchTime,\n lastUsedTime,\n- staleTime,\n }: PrefetchCacheEntry): PrefetchCacheEntryStatus {\n- if (staleTime !== -1) {\n- //...
2025-07-17T20:31:55
electron/electron
c7bdd907d7e1fdcb7741de02f5ca23d47a436437
56b5c003122562066971c4fb44ab933563bb10db
fix: set prototype names on `gin::Constructible` classes (#39006) * fix: set prototype names on gin::Constructible classes * test: add tests
[ { "path": "shell/browser/api/electron_api_browser_view.cc", "patch": "@@ -198,7 +198,7 @@ v8::Local<v8::Value> BrowserView::GetWebContents(v8::Isolate* isolate) {\n // static\n void BrowserView::FillObjectTemplate(v8::Isolate* isolate,\n v8::Local<v8::ObjectTemplate> tem...
2023-07-10T09:49:20
golang/go
044ca4e5c878c785e2c69e5ebcb3d44bf97abc9f
35b4fd9f373cbe13778eb259a19c496c9c613a1f
log/slog: export Source method in Record for custom handler support Currently, the `source` method in `slog.Record` is not accessible to custom handlers, requiring developers to re-implement logic for retrieving source location information. This commit exports the `source` method as `Source`, enabling consistent acces...
[ { "path": "api/next/70280.txt", "patch": "@@ -0,0 +1 @@\n+pkg log/slog, method (Record) Source() *Source #70280", "additions": 1, "deletions": 0, "language": "Plain Text" }, { "path": "doc/next/6-stdlib/99-minor/log/slog/70280.md", "patch": "@@ -0,0 +1 @@\n+[Record] now has a Source(...
2025-05-04T04:30:25
facebook/react
696434fed83215829c6d907999ad7d636aa0baf5
c434ef4b704ede228471697a49ba1e48d9d2486b
Fix ValidateNoSetStateInRender for loops
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Validation/ValidateNoSetStateInRender.ts", "patch": "@@ -16,7 +16,6 @@ import {\n } from \"../HIR\";\n import { PostDominator } from \"../HIR/Dominator\";\n import { eachInstructionValueOperand } from \"../HIR/visitors\";\n-import { findBlocksWithBa...
2023-11-14T19:33:39
nodejs/node
eab97b54d4bc7d7a15d26a40cc2c66f032972954
8f1fa03c130828d7ccb6e445274653496c94edd7
src: return `v8::Object` from error constructors It's more specific than `v8::Value`. PR-URL: https://github.com/nodejs/node/pull/54541 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Mohammed Keyvanzade...
[ { "path": "src/node_errors.h", "patch": "@@ -113,7 +113,7 @@ void OOMErrorHandler(const char* location, const v8::OOMDetails& details);\n \n #define V(code, type) \\\n template <typename... Args> \\\n...
2024-08-24T14:33:04
vercel/next.js
5b998d69553df2f96c0dc398d8e483a6cc7c387f
cff812b4d02764961571069818e172053984003f
fix: revert client segment route changes for sub shell generation (#81740) ### What? Implements a new sortable routes system that distinguishes between source pages and rendered pages for sub-shell generation. ### Why? The existing route sorting logic in Next.js doesn't account for the distinction between the origi...
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -81,11 +81,7 @@ import {\n DYNAMIC_CSS_MANIFEST,\n TURBOPACK_CLIENT_MIDDLEWARE_MANIFEST,\n } from '../shared/lib/constants'\n-import {\n- getSortedRoutes,\n- isDynamicRoute,\n- getSortedRouteObjects,\n-} from '../shared/lib/router/utils'\n+im...
2025-07-17T19:23:46
electron/electron
a97028bacfba8c0416e02805897e89d1c013717c
cc7d724a3b85a858044916e5a4b61269610cab09
fix: Notification 'Show' button visible when no actions exist (#38997)
[ { "path": "shell/browser/notifications/mac/cocoa_notification.mm", "patch": "@@ -64,6 +64,11 @@\n options.reply_placeholder)];\n }\n \n+ // We need to explicitly set this to false if there are no\n+ // actions, otherwise a Show button will appear by default....
2023-07-06T19:50:08
facebook/react
aec521a96d3f1bebc2ba38553d14f4989c6e88e0
593ecee66a609d4a4c2b36b39b1e5e23b2456dd1
fix[devtools/useMemoCache]: implement a working copy of useMemoCache (#27659) In https://github.com/facebook/react/pull/27472 I've removed broken `useMemoCache` implementation and replaced it with a stub. It actually produces errors when trying to inspect components, which are compiled with Forget. The main diff...
[ { "path": "packages/react-debug-tools/src/ReactDebugHooks.js", "patch": "@@ -26,6 +26,7 @@ import {\n ContextProvider,\n ForwardRef,\n } from 'react-reconciler/src/ReactWorkTags';\n+import {REACT_MEMO_CACHE_SENTINEL} from 'shared/ReactSymbols';\n \n type CurrentDispatcherRef = typeof ReactSharedInternal...
2023-11-14T18:23:39
golang/go
fa2bb342d7b0024440d996c2d6d6778b7a5e0247
6729fbe93e535080e9e050b3ca0a80ab407dbacc
Revert "cmd/compile: allow all of the preamble to be preemptible" This reverts commits 3f3782feed6e0726ddb08afd32dad7d94fbb38c6 (CL 648518) b386b628521780c048af14a148f373c84e687b26 (CL 668475) Fixes #73542 Change-Id: I218851c5c0b62700281feb0b3f82b6b9b97b910d Reviewed-on: https://go-review.googlesource.com/c/go/+/67...
[ { "path": "src/cmd/internal/obj/arm/obj5.go", "patch": "@@ -703,6 +703,12 @@ func (c *ctxt5) stacksplit(p *obj.Prog, framesize int32) *obj.Prog {\n \tp.To.Type = obj.TYPE_REG\n \tp.To.Reg = REG_R1\n \n+\t// Mark the stack bound check and morestack call async nonpreemptible.\n+\t// If we get preempted here, ...
2025-05-05T17:51:52
nodejs/node
8f1fa03c130828d7ccb6e445274653496c94edd7
05bd3cfc73c0200a905d78c62a80edd85ba879e1
src: use better return types in KVStore - Use `v8::Maybe<void>` instead of `v8::Maybe<bool>` and handle error from `AssignFromObject`. - An empty `v8::Maybe` is supposed to be returned when an exception is pending. Use `std::optional` instead to indicate a missing value in `Get(key)`. PR-URL: https://github.com...
[ { "path": "src/inspector_profiler.cc", "patch": "@@ -472,7 +472,7 @@ void StartProfilers(Environment* env) {\n }, env);\n \n std::string coverage_str =\n- env->env_vars()->Get(\"NODE_V8_COVERAGE\").FromMaybe(std::string());\n+ env->env_vars()->Get(\"NODE_V8_COVERAGE\").value_or(std::string());...
2024-08-24T12:51:26
vercel/next.js
cff812b4d02764961571069818e172053984003f
a093d32d3e6f90d5afd3ac7d0dd1e4c6267f505c
Turbopack: include more details in panic (#81773) <!-- 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 ...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/lib.rs", "patch": "@@ -2430,7 +2430,10 @@ impl CodeGenResultComments {\n } else if old_high_bits == 0 {\n false\n } else {\n- panic!(\"The high bits of the position {pos} are not all 0s or 1s: {old_high_bits:b}\",);\...
2025-07-17T19:21:12
facebook/react
c434ef4b704ede228471697a49ba1e48d9d2486b
00abc5acf5e02fc72b1f7107d803efcdb358f441
[validation] Patch false positives for hook calls after loops --- We were throwing `InvalidReact` errors on valid inputs. ```js // Input function Foo() { log("block0"); for (const _ of foo) { log("loop"); } useBar(); } // IR bb0: // log("block0"); ForOf init=bb2 loop=bb3 fallthrough=bb1 ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Validation/ValidateUnconditionalHooks.ts", "patch": "@@ -12,7 +12,6 @@ import {\n } from \"../CompilerError\";\n import { PostDominator, computePostDominatorTree } from \"../HIR/Dominator\";\n import { BlockId, HIRFunction, SourceLocation, getHookKi...
2023-11-14T18:04:31
electron/electron
cc7d724a3b85a858044916e5a4b61269610cab09
c7a64ab994de826ed6e4c300cce75d9fd88efa20
fix: menu border being created properly on Windows 11 (#38998) * fix: menu border being created properly on Windows 11 * chore: update patches --------- Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com>
[ { "path": "patches/chromium/fix_crash_on_nativetheme_change_during_context_menu_close.patch", "patch": "@@ -15,7 +15,7 @@ This should be upstreamed, as other uses of MenuController in this\n file do check for menu controller being null.\n \n diff --git a/ui/views/controls/menu/menu_scroll_view_container.cc ...
2023-07-06T13:46:12
golang/go
6953ef86cd72a835d398319c4da560c8b78ba28e
8ec555931dc65f1cd0e7cf28d771615d8064a8ad
net,os: support converting between *os.File and net.Conn on Windows The runtime poller and os.NewFile recently gained support for disassociating the handle from the runtime poller IOCP (see CL 664455). This was the main blocker for allowing the conversion between *os.File and net.Conn. Implementing the conversion is ...
[ { "path": "doc/next/6-stdlib/99-minor/net/10350.md", "patch": "@@ -0,0 +1,3 @@\n+On Windows, the [TCPConn.File], [UDPConn.File], [UnixConn.File],\n+[IPConn.File], [TCPListener.File], and [UnixListener.File]\n+methods are now supported.\n\\ No newline at end of file", "additions": 3, "deletions": 0, ...
2025-04-25T12:11:31
vercel/next.js
3a5d293c38881b2f37b165b24dc31b309f1c4175
f8afa172a0710575ca514b700d282935c5bd2d79
feat(turbopack): Log anonymized internal error (panic) information to telemetry (#81272) ## Goals - Pass through a custom `TurbopackInternalError` type when a Rust panic or an unexpected top-level `anyhow::Error` occurs. - Make a best-effort attempt to log a location of the error to telemetry. - In the case of a pa...
[ { "path": "Cargo.lock", "patch": "@@ -2321,9 +2321,9 @@ checksum = \"e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c\"\n \n [[package]]\n name = \"futures\"\n-version = \"0.3.30\"\n+version = \"0.3.31\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"645c...
2025-07-17T15:51:59
nodejs/node
05bd3cfc73c0200a905d78c62a80edd85ba879e1
c6a72f2de44936aa3c5d8420c1758180e7fae1c2
test: force spec reporter in test-runner-watch-mode.mjs In the CI this test generates TAP output that can confuse the Python test runner. Avoid the problem by not outputting TAP at from the spawned child process. Fixes: https://github.com/nodejs/node/issues/54535 PR-URL: https://github.com/nodejs/node/pull/54538 Revi...
[ { "path": "test/parallel/test-runner-watch-mode.mjs", "patch": "@@ -41,7 +41,8 @@ async function testWatch({ fileToUpdate, file, action = 'update' }) {\n const ran1 = util.createDeferredPromise();\n const ran2 = util.createDeferredPromise();\n const child = spawn(process.execPath,\n- ...
2024-08-26T12:39:36
electron/electron
c7a64ab994de826ed6e4c300cce75d9fd88efa20
5a77c75753f560bbc4fe6560441ba88433a561f8
fix: webview crash when removing in close event (#38996)
[ { "path": "shell/browser/api/electron_api_web_contents.cc", "patch": "@@ -1297,7 +1297,9 @@ void WebContents::CloseContents(content::WebContents* source) {\n for (ExtendedWebContentsObserver& observer : observers_)\n observer.OnCloseContents();\n \n- Destroy();\n+ // This is handled by the embedder ...
2023-07-06T08:20:34
facebook/react
00abc5acf5e02fc72b1f7107d803efcdb358f441
2efd85f145c021ac61098844b69353fc49b3878d
[be][tests] Run todo fixtures --- Snap should compile all fixtures to record changes in results, even `todo` prefixed ones. Previously, they were skipped as we noted the correlation of `// @skip` pragmas and file naming. Now, no fixture should be skipped as our compiler pipeline should be able to handle every ...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/rules-of-hooks/todo.bail.rules-of-hooks-279ac76f53af.expect.md", "patch": "@@ -0,0 +1,29 @@\n+\n+## Input\n+\n+```javascript\n+// @skip\n+// Unsupported input\n+\n+// Valid -- this is a regression test.\n+jest.useFakeTime...
2023-11-14T18:04:28
golang/go
8ec555931dc65f1cd0e7cf28d771615d8064a8ad
93fb2c90740aef00553c9ce6a7cd4578c2469675
go/types: fix typo in Info.Types doc comment Change-Id: Ib95b77ab3dc6e48158e25e70fabb2579f3706b5f Reviewed-on: https://go-review.googlesource.com/c/go/+/669755 Auto-Submit: Russ Cox <rsc@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Robert Griesemer ...
[ { "path": "src/go/types/api.go", "patch": "@@ -228,7 +228,7 @@ type Info struct {\n \t// Similarly, no type is recorded for the (synthetic) FuncType\n \t// node in a FuncDecl.Type field, since there is no corresponding\n \t// syntactic function type expression in the source in this case\n-\t// Instead, the ...
2025-05-03T21:06:41
nodejs/node
43f699d4d2799cfc17cbcad5770e1889075d5dbe
52322aa42a43cb820432946e7997d070de078a10
benchmark: fix benchmark for file path and URL conversion PR-URL: https://github.com/nodejs/node/pull/54190 Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "benchmark/url/whatwg-url-to-and-from-path.js", "patch": "@@ -3,28 +3,46 @@ const common = require('../common.js');\n const { fileURLToPath, pathToFileURL } = require('node:url');\n const isWindows = process.platform === 'win32';\n \n-const bench = common.createBenchmark(main, {\n- input: isWindo...
2024-08-25T13:41:13
vercel/next.js
96b31f8e678bfe2c259a96b97d35632373bced38
4e0b1125a466bdc81ead94969008c55509ea4ad0
[devtool] fix duplicate rendered indicator on server (#81729) There're should be only one indicator rendered when `showIndicator` state is true, the previous condition is not correct since the previous change seem causing indicator always rendered even on SSR. since devtool bundle is also bundled on ssr layer, but the...
[ { "path": "packages/next/src/next-devtools/dev-overlay/components/devtools-indicator/devtools-indicator.css", "patch": "@@ -0,0 +1,145 @@\n+[data-nextjs-toast] {\n+ &[data-hidden='true'] {\n+ display: none;\n+ }\n+}\n+\n+.dev-tools-indicator-menu {\n+ -webkit-font-smoothing: antialiased;\n+ display: ...
2025-07-16T23:19:46
electron/electron
3fa15ebb7e8aef2029cd23370fdc96f382c9d161
52fe76ca28286400ab61927b2b4e937c52ae9ab5
fix: use Chromium's way to compute min/max sizes (#38974)
[ { "path": "patches/chromium/.patches", "patch": "@@ -129,5 +129,4 @@ chore_patch_out_profile_methods_in_titlebar_config.patch\n fix_crash_on_nativetheme_change_during_context_menu_close.patch\n fix_select_the_first_menu_item_when_opened_via_keyboard.patch\n fix_return_v8_value_from_localframe_requestexecute...
2023-07-05T15:02:05
facebook/react
593ecee66a609d4a4c2b36b39b1e5e23b2456dd1
07cc4a0002d0bbaaf8910404895eeb9c199831c4
Add a feature flag to enable expiration of retry lanes (#27694) An attempt to see if we can bring back expiration of retry lanes to avoid cases resolving Suspense can be starved by frequent updates. In the past, this caused increase browser crashes, but a lot of time has passed since then. Just trying if we can r...
[ { "path": "packages/react-reconciler/src/ReactFiberLane.js", "patch": "@@ -19,11 +19,12 @@ export type Lane = number;\n export type LaneMap<T> = Array<T>;\n \n import {\n- enableSchedulingProfiler,\n- enableUpdaterTracking,\n allowConcurrentByDefault,\n+ enableRetryLaneExpiration,\n+ enableSchedulingP...
2023-11-14T15:15:17
golang/go
21908c3dec35f19d283051e150143a651cc2a71f
1b40dbce1ab039f6715b8b151a4db093ede87fff
cmd/go/internal/vcs: include Subversion VCS build information The existing implementation lacks the Status function for retrieving VCS build information for Subversion. As a consequence, binaries aren't stamped with the Revision, CommitTime and Uncommitted information from SVN repositories. This change provides the s...
[ { "path": "src/cmd/go/internal/vcs/vcs.go", "patch": "@@ -498,6 +498,7 @@ var vcsSvn = &Cmd{\n \tScheme: []string{\"https\", \"http\", \"svn\", \"svn+ssh\"},\n \tPingCmd: \"info -- {scheme}://{repo}\",\n \tRemoteRepo: svnRemoteRepo,\n+\tStatus: svnStatus,\n }\n \n func svnRemoteRepo(vcsSvn *Cmd, ...
2025-04-22T15:49:26
rust-lang/rust
6eb2a8fa9ef2b35d34b021550942cc327fa93b3a
41e0e0690f74685f094d88ae2a0f05379e38873f
Reformat existing error messages
[ { "path": "compiler/rustc_const_eval/src/const_eval/eval_queries.rs", "patch": "@@ -471,9 +471,9 @@ fn report_eval_error<'tcx>(\n span,\n inline_fluent!(\n \"evaluation of `{$instance}` failed {$num_frames ->\n- [0] here\n- *[other] inside this call\...
2026-02-09T18:12:22
nodejs/node
52322aa42a43cb820432946e7997d070de078a10
7fea0108d57224c9aafbdf7c72d31f4b9da95c43
net: validate host name for server listen Fixes: https://github.com/nodejs/node/issues/54441 Co-authored-by: Luigi Pinca <luigipinca@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54470 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Jake Yueso...
[ { "path": "lib/net.js", "patch": "@@ -35,6 +35,8 @@ const {\n NumberParseInt,\n ObjectDefineProperty,\n ObjectSetPrototypeOf,\n+ RegExp,\n+ RegExpPrototypeExec,\n Symbol,\n SymbolAsyncDispose,\n SymbolDispose,\n@@ -143,6 +145,8 @@ const { kTimeout } = require('internal/timers');\n const DEFAUL...
2024-08-25T12:36:40
facebook/react
084e4325b9eaa26d4c5313f55c2d612579d379fb
0821a57fa88021ffaca92043653c7ff8646f89ba
Convert PanicThresholdOptions to zod type
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Options.ts", "patch": "@@ -6,25 +6,29 @@\n */\n \n import * as t from \"@babel/types\";\n+import { z } from \"zod\";\n import { CompilerErrorDetailOptions } from \"../CompilerError\";\n import { ExternalFunction, PartialEnvironmentConfig...
2023-11-14T11:46:23
vercel/next.js
4e0b1125a466bdc81ead94969008c55509ea4ad0
63090e20f198f7bda7bb746e29fe6a25a1391d8c
Improve error handling for `headers`/`cookies`/`draftMode` in `'use cache'` (#81716) This ensures that we show a proper error with an error stack (potentially source-mapped) when accessing `headers`/`cookies`/`draftMode` in `'use cache'`, even when caught in user-land code. For `searchParams` (currently triggering a t...
[ { "path": "packages/next/src/server/app-render/app-render.tsx", "patch": "@@ -135,6 +135,7 @@ import {\n PreludeState,\n consumeDynamicAccess,\n type DynamicAccess,\n+ logDisallowedDynamicError,\n } from './dynamic-rendering'\n import {\n getClientComponentLoaderMetrics,\n@@ -1456,7 +1457,8 @@ asyn...
2025-07-16T21:27:05
electron/electron
e991c1868e301fab1fa9c160cc1317a47a468e8c
ccd4531bfb9d14c54de70a10a5d6f35f72db3abb
docs: fix misleading code sample for handling deeplinks on Linux (#38862) Fix misleading docs for handling deeplinks in Linux
[ { "path": "docs/tutorial/launch-app-from-url-in-another-app.md", "patch": "@@ -63,9 +63,9 @@ const createWindow = () => {\n \n In this next step, we will create our `BrowserWindow` and tell our application how to handle an event in which an external protocol is clicked.\n \n-This code will be different in ...
2023-07-03T08:30:45
golang/go
1b40dbce1ab039f6715b8b151a4db093ede87fff
f760e1fe494681297c5f050b646b5bcde9c71662
runtime: mark and scan small objects in whole spans [green tea] Our current parallel mark algorithm suffers from frequent stalls on memory since its access pattern is essentially random. Small objects are the worst offenders, since each one forces pulling in at least one full cache line to access even when the amount ...
[ { "path": "src/cmd/compile/internal/test/inl_test.go", "patch": "@@ -67,16 +67,18 @@ func TestIntendedInlining(t *testing.T) {\n \t\t\t// GC-related ones\n \t\t\t\"cgoInRange\",\n \t\t\t\"gclinkptr.ptr\",\n+\t\t\t\"gcUsesSpanInlineMarkBits\",\n \t\t\t\"guintptr.ptr\",\n \t\t\t\"heapBitsSlice\",\n \t\t\t\"ma...
2025-03-12T18:52:58
facebook/react
0821a57fa88021ffaca92043653c7ff8646f89ba
07d6c6d8aad8767f1b6dc9b6724e60951df5598d
[playground] Capture Babel parsing errors Before: <img width="1416" alt="Screenshot 2023-11-14 at 9 09 53 AM" src="https://github.com/facebook/react-forget/assets/565765/f53daf34-080a-4804-9a61-77c141c05d21"> After: <img width="1444" alt="Screenshot 2023-11-14 at 9 09 45 AM" src="https://github.com/facebook/r...
[ { "path": "compiler/apps/playground/components/Editor/EditorImpl.tsx", "patch": "@@ -84,6 +84,12 @@ function parseFunctions(\n });\n } catch (e) {\n console.error(e);\n+ CompilerError.throwInvalidJS({\n+ reason: String(e),\n+ description: null,\n+ loc: null,\n+ suggestions: ...
2023-11-14T18:24:38
nodejs/node
7fea0108d57224c9aafbdf7c72d31f4b9da95c43
c3fe2d60bdda943d5fcb96fe0df80f99c82f584b
sqlite: return results with null prototype These objects are dictionaries, and a query can return columns with special names like `__proto__` (which would be ignored without this change). Also construct the object by passing vectors of properties for better performance and improve error handling by using `MaybeLocal`...
[ { "path": "src/node_sqlite.cc", "patch": "@@ -25,6 +25,10 @@ using v8::FunctionTemplate;\n using v8::Integer;\n using v8::Isolate;\n using v8::Local;\n+using v8::LocalVector;\n+using v8::MaybeLocal;\n+using v8::Name;\n+using v8::Null;\n using v8::Number;\n using v8::Object;\n using v8::String;\n@@ -405,7 +4...
2024-08-25T10:43:17
vercel/next.js
63090e20f198f7bda7bb746e29fe6a25a1391d8c
2eac9dccd85d8ec941c416de5f8f01236a8f1e2e
fix: pages router metadata bugs with React 19 (#81733) When we updated `experimental.strictNextHead` to be true in #65418, we did not update all spots that would default to true in the case where the value was omitted entirely. This led to the default value not being correctly applied in pages router, which resulted ...
[ { "path": "packages/next/src/build/templates/pages.ts", "patch": "@@ -289,9 +289,8 @@ export async function handler(\n reactLoadableManifest,\n \n assetPrefix: nextConfig.assetPrefix,\n- strictNextHead: Boolean(\n- nextConfig.experiment...
2025-07-16T21:25:01
facebook/react
07d6c6d8aad8767f1b6dc9b6724e60951df5598d
0794aacdbf8b3a995cdbb49966c716cf8d6d224f
[playground] Show error when compiling unsupported functions Before: <img width="1117" alt="Screenshot 2023-11-14 at 9 11 28 AM" src="https://github.com/facebook/react-forget/assets/565765/d1ec2b5f-1bc5-4d29-9811-effcd39581e4"> After: <img width="1115" alt="Screenshot 2023-11-14 at 9 11 18 AM" src="https://gi...
[ { "path": "compiler/apps/playground/components/Editor/EditorImpl.tsx", "patch": "@@ -9,7 +9,10 @@ import { parse, ParserPlugin } from \"@babel/parser\";\n import traverse, { NodePath } from \"@babel/traverse\";\n import * as t from \"@babel/types\";\n import {\n+ CompilerError,\n+ CompilerErrorDetail,\n ...
2023-11-14T09:10:31
golang/go
7785528c505f6ef9afdb3e089d23dadb860aee11
9921537a96deb3cdfc64478bc041dc97326590ab
os: fix Root.Mkdir permission bits on OpenBSD Pass missing mode bits in the mkdirat() syscall wrapper. Fixes #73559 Change-Id: I54b1985bd77b1fe5d1a48acab9f2597f8c931854 GitHub-Last-Rev: 669c17361d86bc9065bb6b47a2d60aa86bcfa12d GitHub-Pull-Request: golang/go#73565 Reviewed-on: https://go-review.googlesource.com/c/go/...
[ { "path": "src/internal/syscall/unix/at_openbsd.go", "patch": "@@ -43,7 +43,7 @@ func Mkdirat(dirfd int, path string, mode uint32) error {\n \tif err != nil {\n \t\treturn err\n \t}\n-\t_, _, errno := syscall_syscall6(abi.FuncPCABI0(libc_mkdirat_trampoline), uintptr(dirfd), uintptr(unsafe.Pointer(p)), 0, 0,...
2025-05-01T15:09:40
nodejs/node
6d654ddd0065b75a8b1173f71fcc5a1005a98208
4e68b541fd7ccd9fe1328d5b4dc93a3689aa505d
timers: fix validation PR-URL: https://github.com/nodejs/node/pull/54404 Reviewed-By: Claudio Wunder <cwunder@gnome.org>
[ { "path": "doc/api/timers.md", "patch": "@@ -532,9 +532,8 @@ added:\n An experimental API defined by the [Scheduling APIs][] draft specification\n being developed as a standard Web Platform API.\n \n-Calling `timersPromises.scheduler.wait(delay, options)` is roughly equivalent\n-to calling `timersPromises.s...
2024-08-25T07:30:10
electron/electron
ccd4531bfb9d14c54de70a10a5d6f35f72db3abb
499d893040b5590bf88bd7f3d4e3685d1e95a272
chore: bump chromium to 117.0.5852.0 (main) (#38891) * chore: bump chromium in DEPS to 117.0.5846.0 * chore: update patches * 4628901: Bump the macOS deployment target to 10.15 https://chromium-review.googlesource.com/c/chromium/src/+/4628901 * 4593350: [Private Network Access] Trigger Permission Prompt ...
[ { "path": "BUILD.gn", "patch": "@@ -37,7 +37,7 @@ if (is_mac) {\n import(\"build/rules.gni\")\n \n assert(\n- mac_deployment_target == \"10.13\",\n+ mac_deployment_target == \"10.15\",\n \"Chromium has updated the mac_deployment_target, please update this assert, update the supported ver...
2023-07-01T20:22:55
vercel/next.js
2eac9dccd85d8ec941c416de5f8f01236a8f1e2e
40d2fa9b5e578c71989251ad387214ffb2c1507f
chore: update username from 'nebrelbug' to 'bgub' (#81734) ## Update GitHub username in labeler configuration I just changed my username from "nebrelbug" to "bgub"
[ { "path": ".github/labeler.json", "patch": "@@ -59,7 +59,7 @@\n { \"type\": \"user\", \"pattern\": \"ijjk\" },\n { \"type\": \"user\", \"pattern\": \"lazarv\" },\n { \"type\": \"user\", \"pattern\": \"lubieowoce\" },\n- { \"type\": \"user\", \"pattern\": \"nebrelbug\" },\n+ { \"t...
2025-07-16T20:58:34
facebook/react
480c11bdb199794160cab0ede3a7b696e47edb98
800b874ed1841220e97737136a3a18b1a139eb31
[hoisting] Make hoisting related errors consolidatable Noticed from our paste that we weren't correctly rolling up hoisting related errors due to specific information being in the error title, so this PR moves them into description instead.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferReferenceEffects.ts", "patch": "@@ -27,6 +27,7 @@ import {\n } from \"../HIR/HIR\";\n import { FunctionSignature } from \"../HIR/ObjectShape\";\n import {\n+ printIdentifier,\n printMixedHIR,\n printPlace,\n printSourceLocation...
2023-11-13T21:54:54
golang/go
9921537a96deb3cdfc64478bc041dc97326590ab
12110c3f7ed378cd1819abf72ffadcb18502c127
sync: WaitGroup.Go: document that f must not panic Fixes #63796 Change-Id: Ib11d32574011e13aab3a0ad504f0d10009627503 Reviewed-on: https://go-review.googlesource.com/c/go/+/667695 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Damien Neil <dneil@google.com> Commi...
[ { "path": "src/sync/waitgroup.go", "patch": "@@ -163,6 +163,8 @@ func (wg *WaitGroup) Wait() {\n // Go calls f in a new goroutine and adds that task to the [WaitGroup].\n // When f returns, the task is removed from the WaitGroup.\n //\n+// The function f must not panic.\n+//\n // If the WaitGroup is empty, ...
2025-04-24T02:58:05
nodejs/node
4e68b541fd7ccd9fe1328d5b4dc93a3689aa505d
c062b5242a7d3f91f7aed77dcfc90b7fc3a372aa
test: fix improper path to URL conversion PR-URL: https://github.com/nodejs/node/pull/54509 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
[ { "path": "test/fixtures/permission/fs-read.js", "patch": "@@ -5,10 +5,11 @@ const common = require('../../common');\n const assert = require('assert');\n const fs = require('fs');\n const path = require('path');\n+const { pathToFileURL } = require('url');\n \n const blockedFile = process.env.BLOCKEDFILE;\n...
2024-08-24T20:10:11
electron/electron
499d893040b5590bf88bd7f3d4e3685d1e95a272
607e71d563377b64bc0cb3d127f73dafe83c4df2
feat: add support for keyboard initialized menu popup (#38903) * feat: add support for keyboard initialized menu popup * Update docs/api/menu.md Co-authored-by: Erick Zhao <erick@hotmail.ca> * fix: add patch to chromium for keyboard accessibility menu behavior * refactor: s/initiatedByKeyboard/sourceType ...
[ { "path": "docs/api/menu.md", "patch": "@@ -80,6 +80,10 @@ The `menu` object has the following instance methods:\n * `positioningItem` number (optional) _macOS_ - The index of the menu item to\n be positioned under the mouse cursor at the specified coordinates. Default\n is -1.\n+ * `sourceType` ...
2023-06-29T22:54:06
vercel/next.js
9d1e94d56d4d3ad8ff0119192733b760fe8752ad
382b79bcc9fb1446e8f88d7a321c365aaece8a2c
fix: revert client segment route changes for sub shell generation (#81731) Reverts changes to the `routes-manifest.json` from #81321. Incorrect route sorting was causing some routing errors.
[ { "path": "packages/next/src/build/index.ts", "patch": "@@ -3103,44 +3103,18 @@ export default async function build(\n }\n \n let prefetchDataRoute: string | undefined\n- let dynamicRoute = routesManifest.dynamicRoutes.find(\n- (r) => r.page ==...
2025-07-16T19:25:12
facebook/react
800b874ed1841220e97737136a3a18b1a139eb31
e6c5c9a0053a466b3049e3bd4513b92b5c18e1c5
fix main Forgot to update snapshots when addressing PR feedback.
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/validate-no-set-state-in-render-uncalled-function-with-mutable-range-is-valid.expect.md", "patch": "@@ -7,12 +7,12 @@ function Component(props) {\n const logEvent = useLogging(props.appId);\n const [currentStep, setCu...
2023-11-13T21:14:27
nodejs/node
c062b5242a7d3f91f7aed77dcfc90b7fc3a372aa
6dce10ff77f9e9a53adf95f027f60fadcef47ce7
src: use correct way to signal interceptor error PR-URL: https://github.com/nodejs/node/pull/54418 Refs: https://github.com/nodejs/node/blob/e4f61de14f8cfb83f1ce0ad1597b86278cd5f5f1/deps/v8/include/v8-function-callback.h#L398-L408 Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Cheng Zhao <zcbenz@g...
[ { "path": "src/node_webstorage.cc", "patch": "@@ -572,8 +572,8 @@ static Intercepted StorageSetter(Local<Name> property,\n Storage* storage;\n ASSIGN_OR_RETURN_UNWRAP(&storage, info.This(), Intercepted::kNo);\n \n- if (storage->Store(property, value)) {\n- info.GetReturnValue().Set(value);\n+ if (!...
2024-08-24T17:09:39
electron/electron
09669f9d215ceb96d7f02f9085d7906e27c2b301
ff6d0df2d534efe1aa8d466e1ea75333290cb0dc
fix: child window may have opener removed (#38910)
[ { "path": "shell/renderer/electron_render_frame_observer.cc", "patch": "@@ -63,7 +63,7 @@ void ElectronRenderFrameObserver::DidClearWindowObject() {\n // Check DidInstallConditionalFeatures below for the background.\n auto* web_frame =\n static_cast<blink::WebLocalFrameImpl*>(render_frame_->GetWeb...
2023-06-26T21:04:54
vercel/next.js
a04a5efe80d88e603ded31c20645a0ddc76e1104
5444efa2d205bcbc49fbbde4a753582731b0a4a2
Add an e2e test for the css serving issue (#81683) ## Add a regression test for when a not-found component depends on css and triggers a bug in turbopack To correctly serve js and css resources during server side rendering we construct a client manifest that lists all the server components and their required resource...
[ { "path": "test/e2e/app-dir/initial-css-not-found/app/(default)/layout.tsx", "patch": "@@ -0,0 +1,10 @@\n+import type { ReactNode } from 'react'\n+import styles from '../styles.module.css'\n+\n+export default function RootLayout({ children }: { children: ReactNode }) {\n+ return (\n+ <html lang=\"en\">\...
2025-07-16T18:11:26
golang/go
12110c3f7ed378cd1819abf72ffadcb18502c127
4d10d4ad849467f12a1a16a5ade26cc03d8f1a1f
cmd/compile: improve multiplication strength reduction Use an automatic algorithm to generate strength reduction code. You give it all the linear combination (a*x+b*y) instructions in your architecture, it figures out the rest. Just amd64 and arm64 for now. Fixes #67575 Change-Id: I35c69382bebb1d2abf4bb4e7c43fd8548...
[ { "path": "src/cmd/compile/internal/ssa/_gen/AMD64.rules", "patch": "@@ -882,44 +882,10 @@\n // (ANDQconst [0xFFFFFFFF] x) => (MOVLQZX x)\n \n // strength reduction\n-// Assumes that the following costs from https://gmplib.org/~tege/x86-timing.pdf:\n-// 1 - addq, shlq, leaq, negq, subq\n-// 3 - imulq\...
2024-11-11T20:21:14
facebook/react
dcbdf064915fc2187687acc12cf62232ab2b2a47
8d415296009b3a014e4d4678c41a9520d5acd894
Extra test case related to memoization "within" freeze I found an interesting edge case in the previous diff with mutation of a value that appears in the expression of an object key: ```javascript const key = {} const object = { [mutateAndReturnOtherValue(key)]: 42, }; mutate(key); ``` We analyze and...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/mutation-during-jsx-construction.expect.md", "patch": "@@ -0,0 +1,53 @@\n+\n+## Input\n+\n+```javascript\n+import { identity, mutate, mutateAndReturnNewValue } from \"shared-runtime\";\n+\n+function Component(props) {\n+ ...
2023-11-13T19:03:00
rust-lang/rust
ce2bda4edaf9a14f19a2913410355f6a5e939a86
893e9721cdc202a4c06198d80863d3cbe972e9bc
Allow provisional mgca syntax of type const <IDENT> = <EXPR> to be reconized. Revert, but without type const. Update symbol for feature err, then update suggestion output, and lastly update tests that change because of those. Update these new tests with the correct syntax, and few existing tests with the new outputs...
[ { "path": "src/items.rs", "patch": "@@ -2028,12 +2028,16 @@ impl<'a> StaticParts<'a> {\n ),\n ast::ItemKind::Const(c) => (\n Some(c.defaultness),\n- \"const\",\n+ if c.rhs_kind.is_type_const() {\n+ ...
2026-02-06T06:01:57
nodejs/node
e272cfbf05adc8d8687aad9ede5660ab99b360c6
bec3425d0c38545506e7f18491ceefb518b656d2
build: don't clean obj.target directory if it doesn't exist This can happen to ninja builds, which would then throw an error instead of being a noop if the command is executed. PR-URL: https://github.com/nodejs/node/pull/54337 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.c...
[ { "path": "Makefile", "patch": "@@ -241,8 +241,10 @@ coverage-clean:\n \t$(RM) -r node_modules\n \t$(RM) -r gcovr\n \t$(RM) -r coverage/tmp\n-\t$(FIND) out/$(BUILDTYPE)/obj.target \\( -name \"*.gcda\" -o -name \"*.gcno\" \\) \\\n-\t\t-type f -exec $(RM) {} \\;\n+\t@if [ -d \"out/Release/obj.target\" ]; then...
2024-08-24T14:17:44
vercel/next.js
f74a1697a919ec222c3950190ddd09519432baf3
964d0634cd5f8782cfbac145865c7e0f3f414b70
[Segment Cache] Support dynamic head prefetching (#81677) Fixes an issue where opting into dynamic prefetching with prefetch={true} would not apply to head data (like the title), only the page data. Although the head was being sent by the server as part of the prefetch response, it wasn't being transferred correctly t...
[ { "path": "packages/next/src/client/components/segment-cache-impl/cache.ts", "patch": "@@ -1534,6 +1534,16 @@ function writeDynamicRenderResponseIntoCache(\n // TODO: We should cache this, too, so that the MPA navigation is immediate.\n return null\n }\n+\n+ const staleTimeHeaderSeconds = respons...
2025-07-16T16:13:54
facebook/react
f47685c6020cf3a9b5cec21e2c6eef02c7303ec6
7db2388fff15a6c66a9b9e96ce596ccd3c98f099
[be] Flag and test for unexpected exceptions during compilations
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts", "patch": "@@ -361,6 +361,15 @@ function* runWithEnvironment(\n const ast = codegenReactiveFunction(reactiveFunction).unwrap();\n yield log({ kind: \"ast\", name: \"Codegen\", value: ast });\n \n+ /**\n+ * This flag sh...
2023-11-12T19:56:10
electron/electron
327af3b03ccdb435d25b94c74d1c74552564ab21
ef6569b7d3b0dfb8c7dc33b109b573bf7eb55184
chore: bump node to v18.16.1 (main) (#38869) * chore: bump node in DEPS to v18.16.1 * chore: update patches * deps: update c-ares to 1.19.1 https://github.com/nodejs/node/pull/48115 * chore: fix -Wunreachable-code,-Werror FTBFS in c-ares * chore: disable x509 bssl test new test added in bf3e2c892 ...
[ { "path": "DEPS", "patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '116.0.5845.0',\n 'node_version':\n- 'v18.16.0',\n+ 'v18.16.1',\n 'nan_version':\n '16fa32231e2ccd89d2804b3f765319128b20c4ac',\n 'squirrel.mac_version':", "additions": 1, "deletions": 1, "language"...
2023-06-26T16:03:30
golang/go
6109185cf9641ea401812c63ba3538742b872952
b48e52b4282631ecda45ac985d398e19eca1e745
math/big: fix incorrect register allocation for mipsx/mips64x According to the MIPS ABI, R26/R27 are reserved for OS kernel, and may be clobbered by it. They must not be used by user mode. See Figure 3-18 of MIPS ELF ABI specification: https://refspecs.linuxfoundation.org/elf/mipsabi.pdf Fixes #73472 Change-Id: Ifd...
[ { "path": "src/math/big/arith_mips64x.s", "patch": "@@ -17,18 +17,18 @@ TEXT ·addVV(SB), NOSPLIT, $0\n \t// compute unrolled loop lengths\n \tAND $3, R1, R5\n \tSRLV $2, R1\n-\tXOR R26, R26\t// clear carry\n+\tXOR R24, R24\t// clear carry\n loop1:\n \tBEQ R5, loop1done\n loop1cont:\n \t// unroll 1X\n \tMOVV...
2025-04-25T12:59:13
rust-lang/rust
9bf9a12381bfab41c5d7c7a1d3f5c1457064575d
f090e9ce83e0873591e5faca204cfb68da93ff67
Allow provisional mgca syntax of type const <IDENT> = <EXPR> to be reconized. Revert, but without type const. Update symbol for feature err, then update suggestion output, and lastly update tests that change because of those. Update these new tests with the correct syntax, and few existing tests with the new outputs...
[ { "path": "clippy_lints/src/non_copy_const.rs", "patch": "@@ -739,7 +739,7 @@ impl<'tcx> LateLintPass<'tcx> for NonCopyConst<'tcx> {\n }\n \n fn check_trait_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx TraitItem<'_>) {\n- if let TraitItemKind::Const(_, ct_rhs_opt) = item.kind\n+ ...
2026-02-06T06:01:57
facebook/react
9965db70bdb7b97a12e791e1463d67fe169c2b50
bd3661020e325378efd0bd2fe3e391ded9923ce0
Revert "[babel] Remove unused PipelineError" This reverts commit 10d129a8406e9d226abdb6943bf8512e34ce91db --- Reverts #2311 due to undocumented assumptions being broken. I also added some comments to `LoggerEvents` to explain each event type. In `Program.ts`, we have something like the following code. `compile...
[ { "path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Options.ts", "patch": "@@ -138,6 +138,11 @@ export type LoggerEvent =\n fnLoc: t.SourceLocation | null;\n fnName: string | null;\n memoSlots: number;\n+ }\n+ | {\n+ kind: \"PipelineError\";\n+ fnLoc: t.Sour...
2023-11-10T22:09:29
vercel/next.js
964d0634cd5f8782cfbac145865c7e0f3f414b70
6f88000f0bce63bb447de2b6843883043347e84a
Fix: createRouterAct "reject" config (#81720) Fixes a problem with the internal `createRouterAct` testing helper where the `block: "reject"` option would not error correctly, leading to potential false negatives. I think I accidentally broke this when I added the ability to provide an array of expected responses.
[ { "path": "test/e2e/app-dir/segment-cache/router-act.ts", "patch": "@@ -72,6 +72,7 @@ export function createRouterAct(\n }\n \n let expectedResponses: Array<ExpectedResponseConfig> | null\n+ let forbiddenResponses: Array<ExpectedResponseConfig> | null = null\n let shouldBlockAll = false\n ...
2025-07-16T16:12:58
nodejs/node
d5dc540f10b597a3dfb23aa1e5391b6964aa2ed6
9ee3a720fe7f4b7cf20143dcfdbd24b97a1bedc6
meta: remind users to use a supported version in bug reports PR-URL: https://github.com/nodejs/node/pull/54481 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": ".github/ISSUE_TEMPLATE/1-bug-report.yml", "patch": "@@ -13,7 +13,9 @@ body:\n - type: input\n attributes:\n label: Version\n- description: Output of `node -v`\n+ description: |\n+ Output of `node -v`.\n+ Please verify that you are reproducing the issue in a [cu...
2024-08-23T12:29:47
electron/electron
395b608dd56d78155700cab3d4f75250e4d32eb4
1eb19f3078b46227eb773ec417808971de0b478a
refactor: more constexpr lookup tables (#38886) * refactor: use constexpr lookup table in electron_api_web_contents.cc * refactor: make KeyboardCodeFromStr() private it is only used as a helper to KeyboardCodeFromStr() * chore: savepoint * chore: make lint happy * fixup! refactor: make KeyboardCodeFromS...
[ { "path": "shell/browser/api/electron_api_tray.cc", "patch": "@@ -6,6 +6,7 @@\n \n #include <string>\n \n+#include \"base/containers/fixed_flat_map.h\"\n #include \"gin/dictionary.h\"\n #include \"gin/object_template_builder.h\"\n #include \"shell/browser/api/electron_api_menu.h\"\n@@ -29,27 +30,16 @@ struc...
2023-06-22T12:33:44
golang/go
b48e52b4282631ecda45ac985d398e19eca1e745
12e5efd71011fbb5816a1d815e91b5c865fa9a83
cmd/dist: move "devel" substring in git-inferred development version Keep the property that the "devel" substring is always present in these development versions of Go, but also gain the property that it's viable to use functions in the go/version package such as Lang, Compare, and get the expected results without nee...
[ { "path": "src/cmd/dist/build.go", "patch": "@@ -426,6 +426,10 @@ func findgoversion() string {\n \t// Otherwise, use Git.\n \t//\n \t// Include 1.x base version, hash, and date in the version.\n+\t// Make sure it includes the substring \"devel\", but otherwise\n+\t// use a format compatible with https://go...
2025-04-25T00:48:10
facebook/react
6b3834a45b585e4340734139841ae81dc1b1a75d
6a7f3aa858b3a8670d6a4861e30f248b335e55bd
Guard against unmounted components when accessing public instances on Fabric (#27687) ## Summary This fixes an error in `getPublicInstanceFromInstanceHandle` where we throw an error when trying to access the public instance from the fiber of an unmounted component. This shouldn't throw but return `null` instead....
[ { "path": "packages/react-native-renderer/src/ReactFiberConfigFabric.js", "patch": "@@ -278,13 +278,21 @@ function getPublicTextInstance(\n export function getPublicInstanceFromInternalInstanceHandle(\n internalInstanceHandle: InternalInstanceHandle,\n ): null | PublicInstance | PublicTextInstance {\n+ c...
2023-11-10T15:49:07
vercel/next.js
10ce117bdf5d702969fd81ec15d539be4dfa24cd
9088ece15f42ff5e11df5ef164fb307494a36e74
[test] Fix `app-static` deploy test (#81712)
[ { "path": "test/e2e/app-dir/app-static/app-static.test.ts", "patch": "@@ -2763,27 +2763,51 @@ describe('app-dir static/dynamic handling', () => {\n for (let i = 0; i < 6; i++) {\n await waitFor(1000)\n \n- const timings = {\n- start: Date.now(),\n- startedStreaming: 0,\n- }...
2025-07-16T16:02:53
nodejs/node
628469c7e1327fe6b3369c7824d7bcbb1b70f9c1
4de992fa5b31a81cfc309a8e37702e7b6a66ea9b
net: exclude ipv6 loopback addresses from server.listen Fixes: https://github.com/nodejs/node/issues/51732 PR-URL: https://github.com/nodejs/node/pull/54264 Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
[ { "path": "lib/net.js", "patch": "@@ -62,6 +62,7 @@ const {\n UV_ECANCELED,\n UV_ETIMEDOUT,\n } = internalBinding('uv');\n+const { convertIpv6StringToBuffer } = internalBinding('cares_wrap');\n \n const { Buffer } = require('buffer');\n const { ShutdownWrap } = internalBinding('stream_wrap');\n@@ -2118,...
2024-08-23T09:11:43
golang/go
12e5efd71011fbb5816a1d815e91b5c865fa9a83
214b208e248d30a3b6c35a5ebf344cc2de3b9e3f
cmd/link: fix cgo on riscv64 when building with gcc-15 It's not currently possible to build cgo programs that are partially compiled with gcc-15 on riscv64 using the internal linker. There are two reasons for this. 1. When gcc-15 compiles _cgo_export.c, which contains no actual code, for a riscv64 target, it emits...
[ { "path": "src/cmd/link/internal/loadelf/ldelf.go", "patch": "@@ -609,7 +609,7 @@ func Load(l *loader.Loader, arch *sys.Arch, localSymVersion int, f *bio.Reader,\n \t\t\t\tcontinue\n \t\t\t}\n \n-\t\t\tif strings.HasPrefix(elfsym.name, \".LASF\") || strings.HasPrefix(elfsym.name, \".LLRL\") || strings.HasPr...
2025-04-25T15:23:49
electron/electron
1eb19f3078b46227eb773ec417808971de0b478a
a00a25376d339ba78c4a1efbae2de05fd534332e
chore: bump chromium to 116.0.5845.0 (main) (#38827) * chore: bump chromium in DEPS to 116.0.5835.0 * chore: update patches * chore: bump chromium in DEPS to 116.0.5837.0 * chore: bump chromium in DEPS to 116.0.5839.0 * chore: bump chromium in DEPS to 116.0.5841.0 * chore: bump chromium in DEPS to 116.0...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '116.0.5833.0',\n+ '116.0.5845.0',\n 'node_version':\n 'v18.16.0',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2023-06-22T08:51:15
rust-lang/rust
73a991fb9d7f68f497f047d4e948bde463f2f6eb
4cd4c18438fa57e005ee2bf9b80634f3a12d2998
Allow provisional mgca syntax of type const <IDENT> = <EXPR> to be reconized. Revert, but without type const. Update symbol for feature err, then update suggestion output, and lastly update tests that change because of those. Update these new tests with the correct syntax, and few existing tests with the new outputs...
[ { "path": "compiler/rustc_ast/src/ast.rs", "patch": "@@ -3869,27 +3869,44 @@ pub struct ConstItem {\n pub ident: Ident,\n pub generics: Generics,\n pub ty: Box<Ty>,\n- pub rhs: Option<ConstItemRhs>,\n+ pub rhs_kind: ConstItemRhsKind,\n pub define_opaque: Option<ThinVec<(NodeId, Path)>>...
2026-02-06T06:01:57
facebook/react
0e352ea01c0209b6c5e23f0e857af4e01c783024
78c71bc545bf5c0fdeedc023b69fafe05d988067
[Fizz] Fix for failing id overwrites for postpone (#27684) When we postpone during a render we inject a new segment synchronously which we postpone. That gets assigned an ID so we can refer to it immediately in the postponed state. When we do that, the parent segment may complete later even though it's also sync...
[ { "path": "packages/react-dom/src/__tests__/ReactDOMFizzStaticBrowser-test.js", "patch": "@@ -1495,4 +1495,51 @@ describe('ReactDOMFizzStaticBrowser', () => {\n 'hello',\n ]);\n });\n+\n+ // @gate enablePostpone\n+ it('can render a deep list of single components where one postpones', async () ...
2023-11-10T03:52:31
nodejs/node
a21af4bfb51ff8f0b4fe79ff10d85d6b58501efa
99f4a73b81d52d41140c6aba04091d12a3df88c4
doc: fix capitalization in module.md PR-URL: https://github.com/nodejs/node/pull/54488 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
[ { "path": "doc/api/modules.md", "patch": "@@ -417,7 +417,7 @@ described in greater detail elsewhere in this documentation.\n The built-in modules are defined within the Node.js source and are located in the\n `lib/` folder.\n \n-built-in modules can be identified using the `node:` prefix, in which case\n+Bu...
2024-08-23T00:52:53
golang/go
06751c455d89e09d29affc343ca9e38a02e2f5a2
c966f1c0c0e872773c38a6ddbd08df72726c8ba8
syscall: cache Errno.Error() on Windows Windows is unlike the other OSs and depends on a syscall for most errors. This can be costly; cache the returned string for later reuse. This helps test caching, since errors are written out as string to the test ID, which are often PathErrors wrapping Errnos. For now, only ca...
[ { "path": "src/syscall/syscall_windows.go", "patch": "@@ -138,12 +138,32 @@ func FormatMessage(flags uint32, msgsrc uint32, msgid uint32, langid uint32, buf\n \treturn formatMessage(flags, uintptr(msgsrc), msgid, langid, buf, args)\n }\n \n+var errnoErrorCache sync.Map\n+\n func (e Errno) Error() string {\n...
2025-03-24T23:01:06
electron/electron
a00a25376d339ba78c4a1efbae2de05fd534332e
ce6fe040feefe326a557132fb81137097d4a39c1
fix: crash calling `BrowserWindow.removeBrowserView()` with destroyed `webContents` (#38842) fix: crash calling removeBrowserView() with destroyed webContents https://github.com/electron/electron/issues/37642
[ { "path": "shell/browser/api/electron_api_browser_view.cc", "patch": "@@ -131,6 +131,10 @@ void BrowserView::WebContentsDestroyed() {\n Unpin();\n }\n \n+void BrowserView::OnCloseContents() {\n+ api_web_contents_ = nullptr;\n+}\n+\n // static\n gin::Handle<BrowserView> BrowserView::New(gin_helper::ErrorT...
2023-06-21T19:20:54
rust-lang/rust
6494dabc33a27dafd61b98dca55915b5cb7f60de
7d521a2cd9e2bbcbfc97edddbd07318359a00e80
fix: Sync `allow_normalize` to rustc
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/next_solver/predicate.rs", "patch": "@@ -714,9 +714,9 @@ impl<'db> rustc_type_ir::inherent::Predicate<DbInterner<'db>> for Predicate<'db>\n fn allow_normalization(self) -> bool {\n // TODO: this should probably live in rustc_type_ir\n ...
2026-02-09T15:57:41
facebook/react
c47c306a7a23d3c796b148d303764e2832da480c
7bdd7cc2d8aca24ea46474ee8a5a5e300109332e
refactor[ci/build]: preserve header format in artifacts (#27671) In order to make Haste work with React's artifacts, It is important to keep headers in this format: ``` /** * ... ... * ... */ ``` For optimization purposes, Closure compiler will actually modify these headers by removing * prefixes, which is...
[ { "path": "scripts/rollup/build.js", "patch": "@@ -470,11 +470,10 @@ function getPlugins(\n // I'm going to port \"art\" to ES modules to avoid this problem.\n // Please don't enable this for anything else!\n isUMDBundle && entry === 'react-art' && commonjs(),\n- // License and haste ...
2023-11-09T16:00:21
vercel/next.js
115eff7201191fcc1d2f10bbc4c69f5359897311
c3e6680bfd245d840d479ba3ba1d0b1a570a19b1
Turbopack: Support string without options for @next/mdx (#81713) ## What? Adds support for `remarkPlugins: ['remark-gfm']` and `rehypePlugins: ['rehype-slug']`. Previously you had to nest an array like `remarkPlugins: [['remark-gfm']]` but that's a bug, that case is only for passing options. Directly passing the str...
[ { "path": "docs/01-app/02-guides/mdx.mdx", "patch": "@@ -727,8 +727,18 @@ const nextConfig = {\n \n const withMDX = createMDX({\n options: {\n- remarkPlugins: [],\n- rehypePlugins: [['rehype-katex', { strict: true, throwOnError: true }]],\n+ remarkPlugins: [\n+ // Without options\n+ 're...
2025-07-16T15:05:23
golang/go
c966f1c0c0e872773c38a6ddbd08df72726c8ba8
8270b858ee8744e5b7584b49ae6ed93aa975c8bc
net: support IPv6 addresses in ListenMulticastUDP on Windows Fixes #63529. Change-Id: Id9246af1a72beef3149af571f0891437bba2f4e0 Reviewed-on: https://go-review.googlesource.com/c/go/+/668216 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Junyang Shao <shaojunyang...
[ { "path": "doc/next/6-stdlib/99-minor/net/63529.md", "patch": "@@ -0,0 +1 @@\n+On Windows, the [ListenMulticastUDP] now supports IPv6 addresses.", "additions": 1, "deletions": 0, "language": "Markdown" }, { "path": "src/net/listen_test.go", "patch": "@@ -610,7 +610,8 @@ func TestIPv6...
2025-04-25T13:30:53
electron/electron
ce6fe040feefe326a557132fb81137097d4a39c1
e73edb54817acb8f0e548916a97a9ed9340dfc3f
fix: set minimize visibility true with enable (#38860)
[ { "path": "shell/browser/ui/views/win_caption_button_container.cc", "patch": "@@ -162,6 +162,7 @@ void WinCaptionButtonContainer::UpdateButtons() {\n \n const bool minimizable = frame_view_->window()->IsMinimizable();\n minimize_button_->SetEnabled(minimizable);\n+ minimize_button_->SetVisible(minimiza...
2023-06-21T18:58:33
nodejs/node
cef2047b1fdd797d5125c4cafe9f17220a0774f7
e35902cddb8ae5e0335f4c26588834245ec4cb68
tools: add swc license PR-URL: https://github.com/nodejs/node/pull/54462 Fixes: https://github.com/nodejs/amaro/issues/49 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>...
[ { "path": "LICENSE", "patch": "@@ -155,6 +155,211 @@ The externally maintained libraries used by Node.js are:\n SOFTWARE.\n \"\"\"\n \n+- swc, located at deps/amaro, is licensed as follows:\n+ \"\"\"\n+ Apache License\n+ Version 2.0, January...
2024-08-22T08:48:47
rust-lang/rust
00432c0b85ecd3a099fbe4b0f867f3929b099366
15e0ce9d69340dc83fd8a37ba2c1596354bea6bc
fix dead links in type checking section of the doc
[ { "path": "book/src/development/type_checking.md", "patch": "@@ -146,7 +146,7 @@ in this chapter:\n \n - [Stages of compilation](https://rustc-dev-guide.rust-lang.org/compiler-src.html#the-main-stages-of-compilation)\n - [Diagnostic items](https://rustc-dev-guide.rust-lang.org/diagnostics/diagnostic-items.h...
2026-02-09T14:54:17
facebook/react
69eb9ccccc93d0ac4bf63e64c515e544c6dbff16
f92a058ca5ebde1566d70f85cfd40d7fb5cfc38b
[snap] Add option to set panicThreshold
[ { "path": "compiler/packages/fixture-test-utils/src/compiler-utils.ts", "patch": "@@ -7,7 +7,10 @@\n \n import assert from \"assert\";\n import type { runReactForgetBabelPlugin as RunReactForgetBabelPlugin } from \"babel-plugin-react-forget/src/Babel/RunReactForgetBabelPlugin\";\n-import { CompilationMode }...
2023-11-09T12:00:34
vercel/next.js
a3f031d834af6da4640a6f33ab6fb86d87df442c
5608f19a4d4bcf202fbd7df8d5b7dd7d4e4f2b3f
fix: rootParams should throw in client when fallbackParams are not present (#81711) `rootParams` was erroring if used in a `'prerender-client'`, but only if we had `fallbackRouteParams`. this is an edge case, but it is technically possible to hit if our compiler checks for using `rootParams` in client code are bypasse...
[ { "path": "packages/next/src/server/app-render/work-unit-async-storage.external.ts", "patch": "@@ -78,12 +78,19 @@ export interface RequestStore extends CommonWorkUnitStore {\n * only needs to happen during the RSC prerender when we are prospectively prerendering\n * to fill all caches.\n */\n-export int...
2025-07-16T14:23:34