repo
stringclasses
15 values
fix_commit
stringlengths
40
40
buggy_commit
stringlengths
40
40
message
stringlengths
3
64.3k
files
listlengths
1
300
timestamp
timestamp[s]date
2013-03-13 20:45:00
2026-04-11 07:48:46
nodejs/node
e5524eaefae48034e4c8cc1a960fd65df4d03161
7a40aa75a58047076da80ae16955c89cdf58de78
sqlite: add support for custom functions This commit adds support to node:sqlite for defining custom functions that can be invoked from SQL. Fixes: https://github.com/nodejs/node/issues/54349 PR-URL: https://github.com/nodejs/node/pull/55985 Reviewed-By: Zeyu "Alex" Yang <himself65@outlook.com> Reviewed-By: James M S...
[ { "path": "doc/api/sqlite.md", "patch": "@@ -160,6 +160,31 @@ This method allows one or more SQL statements to be executed without returning\n any results. This method is useful when executing SQL statements read from a\n file. This method is a wrapper around [`sqlite3_exec()`][].\n \n+### `database.functio...
2024-12-12T16:48:12
electron/electron
41ba9633924a14d992f495dee6eac2467def0d35
43a9f70d19b9576ae922768dd521915367529009
fix: typos in comment section of `in_app_purchase.mm` (#41788) fix 2 typo Signed-off-by: Michael Seibt <github@roboschmie.de>
[ { "path": "shell/browser/mac/in_app_purchase.mm", "patch": "@@ -79,10 +79,10 @@ - (void)purchaseProduct:(NSString*)productID {\n }\n \n /**\n- * Process product informations and start the payment.\n+ * Process product information and start the payment.\n *\n * @param request - The product request.\n- * @p...
2024-04-10T15:54:56
golang/go
5045fdd8ff8769c34e837fbfb0894a72dfa73b4d
d28b27cd8e612f3e3e6ffcfb7444a4e8829dbb48
cmd/compile: fix containsUnavoidableCall computation The previous algorithm was incorrect, as it reused the dominatedByCall slice without resetting it. It also used the depth fields even though they were not yet calculated. Also, clean up a lot of the loop detector code that we never use. Always compute depths. It i...
[ { "path": "src/cmd/compile/internal/ssa/likelyadjust.go", "patch": "@@ -12,18 +12,15 @@ type loop struct {\n \theader *Block // The header node of this (reducible) loop\n \touter *loop // loop containing this loop\n \n-\t// By default, children, exits, and depth are not initialized.\n-\tchildren []*loop ...
2025-06-10T21:37:47
vercel/next.js
bba9b2f3667c61b78d95865422f15c8fff909dd5
1fc18244547263409a82db35edbe5908ba403410
docs: Fix self-referential link to Middleware in middleware.mdx (#83854) This link was to the current page, which isn't very useful. Link to the getting started page (https://nextjs.org/docs/app/getting-started/route-handlers-and-middleware#middleware) instead
[ { "path": "docs/01-app/03-api-reference/03-file-conventions/middleware.mdx", "patch": "@@ -8,7 +8,7 @@ related:\n - app/api-reference/functions/next-response\n ---\n \n-The `middleware.js|ts` file is used to write [Middleware](/docs/app/api-reference/file-conventions/middleware) and run code on the serv...
2025-09-16T20:50:47
facebook/react
395e2fc6a0f6b90b4b7b1319a4029def73118518
a5554190c1c44aa6ecef0cef46cd109e21b5c0bf
[chore] Fix TypeError in shouldSkipBundle During yarn build-for-devtools-dev and yarn build-for-devtools-prod Commands (#29906) ## Summary Fix bundle type filtering logic to correctly handle array input in argv.type and use some with includes for accurate filtering. This addresses a TypeError encountered during ...
[ { "path": "scripts/rollup/build.js", "patch": "@@ -85,9 +85,11 @@ function parseRequestedNames(names, toCase) {\n return result;\n }\n \n+const argvType = Array.isArray(argv.type) ? argv.type : [argv.type];\n const requestedBundleTypes = argv.type\n- ? parseRequestedNames([argv.type], 'uppercase')\n+ ? ...
2024-06-20T20:12:41
nodejs/node
37766dcad8b962b1af05daab7612a43a06e4ce24
55413004c8ab489a03793b80c20d2ec6552668c0
tools: fix release proposal linter to support more than 1 folk preparing PR-URL: https://github.com/nodejs/node/pull/56203 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: James M Snell <jasnell@gmail.c...
[ { "path": ".github/workflows/lint-release-proposal.yml", "patch": "@@ -43,7 +43,7 @@ jobs:\n PR_HEAD=\"$(gh pr view \"$PR_URL\" --json headRefOid -q .headRefOid)\"\n echo \"Head of $PR_URL: $PR_HEAD\"\n echo \"Current commit: $GITHUB_SHA\"\n- [[ \"$PR_HEAD\" == \"$GITH...
2024-12-12T10:43:18
golang/go
d28b27cd8e612f3e3e6ffcfb7444a4e8829dbb48
7b53d8d06ec432b1434b675b96a11526de6e6abe
go/types, types2: use nil to represent incomplete explicit aliases Using Invalid to represent an incomplete alias is problematic since it implies that an error has been reported somewhere. This causes confusion for observers of invalid aliases trying not to emit follow-on errors. This change uses nil instead to repre...
[ { "path": "src/cmd/compile/internal/types2/alias.go", "patch": "@@ -6,7 +6,6 @@ package types2\n \n import (\n \t\"cmd/compile/internal/syntax\"\n-\t\"fmt\"\n )\n \n // An Alias represents an alias type.\n@@ -50,7 +49,7 @@ type Alias struct {\n }\n \n // NewAlias creates a new Alias type with the given type...
2025-06-24T21:16:24
electron/electron
0a7df0ef3deb0a76b4a372d180c6139ecb2f3995
38ef9a76909a74eb99d290f29feefcfb2293ea9e
docs: typo fix (#41787) Typo fix
[ { "path": "docs/tutorial/esm.md", "patch": "@@ -59,7 +59,7 @@ need to be called **before** the app's `ready` event is emitted.\n With top-level `await` available in Node.js ESM, make sure to `await` every Promise that you need to\n execute before the `ready` event. Otherwise, your app may be `ready` before ...
2024-04-10T08:25:13
vercel/next.js
9c9456906b8bc0c48b47969ae81275736c196570
a850edbec99c3f887d19777f90f0529ce0f0e382
Allow headers, rewrites and redirects to be defined as sync functions (#83743) ### What and why? Typings in `NextConfig` make us specify `headers`, `rewrites` and `redirects` as $${\color{red}async}$$ functions. Doing so is needed even if the result is known straight away, without having to call async IO. This tight...
[ { "path": "packages/next/src/server/config-shared.ts", "patch": "@@ -920,28 +920,35 @@ export interface NextConfig extends Record<string, any> {\n *\n * @see [Headers configuration documentation](https://nextjs.org/docs/app/api-reference/config/next-config-js/headers)\n */\n- headers?: () => Promi...
2025-09-16T19:31:08
facebook/react
a5554190c1c44aa6ecef0cef46cd109e21b5c0bf
b15c8492ca227abff2b1c921dd06e54d421fc415
fix[compiler playground]: Set source as the pre-change state in HIR diff (#29957) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before...
[ { "path": "compiler/apps/playground/components/Editor/Output.tsx", "patch": "@@ -104,7 +104,7 @@ async function tabify(source: string, compilerOutput: CompilerOutput) {\n passName,\n <TextTabContent\n output={text}\n- diff={lastPassOutput ?? null}\n+ diff={passName !== \"HI...
2024-06-20T16:01:35
nodejs/node
64cc3b83268c76ade4b8f29109a64eef2016da79
5c2f599712c777d123d198266b05ca2c4cc8eba3
src: fix outdated js2c.cc references PR-URL: https://github.com/nodejs/node/pull/56133 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: ...
[ { "path": "src/node_builtins.h", "patch": "@@ -71,7 +71,7 @@ using BuiltinSourceMap = std::map<std::string, UnionBytes>;\n using BuiltinCodeCacheMap =\n std::unordered_map<std::string, BuiltinCodeCacheData>;\n \n-// Generated by tools/js2c.py as node_javascript.cc\n+// Generated by tools/js2c.cc as node...
2024-12-11T17:04:19
golang/go
7b53d8d06ec432b1434b675b96a11526de6e6abe
374e3be2eb9b546ef1340f750e343c15a8f87dde
cmd/compile/internal/types2: add loaded state between loader calls and constraint expansion There is a deadlock issue when calling SetConstraint from a lazy loader because the loader is called from resolve(), which is holding a lock on the loaded type. If the loaded type has a generic constraint which refers back to ...
[ { "path": "src/cmd/compile/internal/importer/gcimporter_test.go", "patch": "@@ -673,3 +673,50 @@ type S struct {\n \t}\n \twg.Wait()\n }\n+\n+func TestIssue63285(t *testing.T) {\n+\ttestenv.MustHaveGoBuild(t)\n+\n+\t// This package only handles gc export data.\n+\tif runtime.Compiler != \"gc\" {\n+\t\tt.Ski...
2025-06-13T15:47:57
electron/electron
ba3b647fd73d9c3f5f411ff414e7a0d12a8c692b
76f7bbb0a8db04c002293b2753f24146518737b5
fix: WCO maximize button visibility when non-maximizable (#41793) fix: WCO button visibility when non-maximizable
[ { "path": "shell/browser/ui/views/win_caption_button_container.cc", "patch": "@@ -156,36 +156,26 @@ void WinCaptionButtonContainer::UpdateBackground() {\n }\n \n void WinCaptionButtonContainer::UpdateButtons() {\n- const bool is_maximized = frame_view_->frame()->IsMaximized();\n- restore_button_->SetVisib...
2024-04-09T11:14:29
vercel/next.js
d43e5f9378c2e7eb093095fe8f4f816a4906f695
aab50c395b4a3ba96cb4319714869f2b3fa0895c
docs: Convert relative imports to @ aliases in examples (#83813) ## For Contributors ### Improving Documentation This PR improves the Next.js examples by converting relative imports to @ aliases, making them more readable and maintainable. ## Description Fixes #83717 by converting deep relative imports to clean @ ...
[ { "path": "examples/i18n-routing/app/[lang]/components/counter.tsx", "patch": "@@ -1,7 +1,7 @@\n \"use client\";\n \n import { useState } from \"react\";\n-import { type getDictionary } from \"../../../get-dictionary\";\n+import { type getDictionary } from \"@/get-dictionary\";\n \n export default function ...
2025-09-16T13:53:53
facebook/react
b15c8492ca227abff2b1c921dd06e54d421fc415
6b4646cbd0fd20a7c37f5dfcb0f12193259a6289
fix[react-devtools/extensions]: propagate globals from env (#29963) Somehow missed this while working on https://github.com/facebook/react/pull/29869. With these changes, manual inspection of the `react_devtools_backend_compact.js` doesn't have any occurences of `__IS_FIREFOX__` flag.
[ { "path": "packages/react-devtools-extensions/webpack.backend.js", "patch": "@@ -74,6 +74,9 @@ module.exports = {\n 'process.env.IS_CHROME': IS_CHROME,\n 'process.env.IS_FIREFOX': IS_FIREFOX,\n 'process.env.IS_EDGE': IS_EDGE,\n+ __IS_CHROME__: IS_CHROME,\n+ __IS_FIREFOX__: IS_FIR...
2024-06-20T08:29:05
nodejs/node
b6c9dbe7e1fd208db20b6aac0d25a14e3fc5a456
586814bcd96462ae88a131431ec780e69a0764c3
module: only emit require(esm) warning under --trace-require-module require(esm) is relatively stable now and the experimental warning has run its course - it's now more troublesome than useful. This patch changes it to no longer emit a warning unless `--trace-require-module` is explicitly used. The flag supports two ...
[ { "path": "doc/api/cli.md", "patch": "@@ -2616,6 +2616,18 @@ added:\n Prints a stack trace whenever an environment is exited proactively,\n i.e. invoking `process.exit()`.\n \n+### `--trace-require-module=mode`\n+\n+<!-- YAML\n+added:\n+ - REPLACEME\n+-->\n+\n+Prints information about usage of [Loading ECMA...
2024-12-09T14:47:25
electron/electron
76f7bbb0a8db04c002293b2753f24146518737b5
22c149812c6ffb67b88e3035c9d242de7c94cea9
fix: move BrowserWindow's WebContentsView to be a child of rootview (#41256)
[ { "path": "shell/browser/api/electron_api_browser_window.cc", "patch": "@@ -77,6 +77,7 @@ BrowserWindow::BrowserWindow(gin::Arguments* args,\n WebContentsView::Create(isolate, web_preferences);\n DCHECK(web_contents_view.get());\n window_->AddDraggableRegionProvider(web_contents_view.get());\n+ w...
2024-04-08T17:30:23
golang/go
374e3be2eb9b546ef1340f750e343c15a8f87dde
1aa154621d414c0d9886e581ae058187f5277e60
os/user: user random name for the test user account TestImpersonated and TestGroupIdsTestUser are flaky due to sporadic failures when creating the test user account when running the tests from different processes at the same time. This flakiness can be fixed by using a random name for the test user account. Fixes #7...
[ { "path": "src/os/user/user_windows_test.go", "patch": "@@ -7,6 +7,7 @@ package user\n import (\n \t\"crypto/rand\"\n \t\"encoding/base64\"\n+\t\"encoding/binary\"\n \t\"errors\"\n \t\"fmt\"\n \t\"internal/syscall/windows\"\n@@ -16,11 +17,92 @@ import (\n \t\"runtime\"\n \t\"slices\"\n \t\"strconv\"\n+\t\"s...
2025-07-24T13:38:35
vercel/next.js
a93515b6125cfe272a9702ea9ee96ab181592011
e2f7cb206d7ede740023cd14f310ec457d4ea59e
chore: Ensure Import Trace starts in a newline (#83638) Fixes: https://github.com/vercel/next.js/issues/83637
[ { "path": "packages/next/src/shared/lib/turbopack/utils.ts", "patch": "@@ -163,7 +163,7 @@ export function formatIssue(issue: Issue) {\n message +=\n \"To use Next.js' built-in Sass support, you first need to install `sass`.\\n\"\n message += 'Run `npm i sass` or `yarn add sass` inside y...
2025-09-16T12:30:59
nodejs/node
586814bcd96462ae88a131431ec780e69a0764c3
acff0ef6371821b9aa8dd5e945235babea954f85
worker: fix crash when a worker joins after exit If a worker has not already joined before running to completion it will join in a SetImmediateThreadsafe which could occur after the worker has already ended by other means. Mutating a JS object at that point would fail because the isolate is already disposed. PR-URL: ...
[ { "path": "src/node_worker.cc", "patch": "@@ -449,6 +449,9 @@ void Worker::JoinThread() {\n \n env()->remove_sub_worker_context(this);\n \n+ // Join may happen after the worker exits and disposes the isolate\n+ if (!env()->can_call_into_js()) return;\n+\n {\n HandleScope handle_scope(env()->isolat...
2024-12-11T13:37:36
facebook/react
6b4646cbd0fd20a7c37f5dfcb0f12193259a6289
e684ca66abf785548b05f2185579cd12b50b2910
Export captureOwnerStacks() only in DEV "react" builds (#29923) Only with the enableOwnerStacks flag (which is not on in www). This is a new DEV-only API to be able to implement what we do for console.error in user space. This API does not actually include the current stack that you'd get from `new Error().sta...
[ { "path": "packages/react-reconciler/src/ReactCurrentFiber.js", "patch": "@@ -44,7 +44,7 @@ export function getCurrentParentStackInDev(): string {\n return '';\n }\n \n-function getCurrentFiberStackInDev(stack: Error): string {\n+function getCurrentFiberStackInDev(stack: null | Error): string {\n if (__...
2024-06-19T18:19:48
electron/electron
22c149812c6ffb67b88e3035c9d242de7c94cea9
42164d70813b32390426e372003f9f144a811593
build: add missing header for `content::SyntheticGestureTarget` (#41789) IWYU: add missing header for `content::SyntheticGestureTarget` GNU libstdc++ does not allow using std::unique_ptr on incomplete types, leading to a compile error.
[ { "path": "shell/browser/osr/osr_render_widget_host_view.cc", "patch": "@@ -25,6 +25,7 @@\n #include \"content/browser/renderer_host/render_widget_host_delegate.h\" // nogncheck\n #include \"content/browser/renderer_host/render_widget_host_owner_delegate.h\" // nogncheck\n #include \"content/common/input/...
2024-04-08T16:17:00
rust-lang/rust
f2a134b403c614e9529869d9d519602ae2a3ed58
34d0b12346b374951bd2d3990c9ff61a3bc3dc1e
remove `no-rustfix` marker for tests
[ { "path": "tests/ui/join_absolute_paths.1.fixed", "patch": "@@ -0,0 +1,36 @@\n+#![allow(clippy::needless_raw_string_hashes)]\n+#![warn(clippy::join_absolute_paths)]\n+\n+use std::path::{Path, PathBuf};\n+\n+fn main() {\n+ let path = Path::new(\"/bin\");\n+ path.join(\"sh\");\n+ //~^ join_absolute_p...
2026-02-22T12:43:54
nodejs/node
acff0ef6371821b9aa8dd5e945235babea954f85
4a91507b25764230f2090f1a8f036a95b3cd6945
http2: support ALPNCallback option PR-URL: https://github.com/nodejs/node/pull/56187 Fixes: https://github.com/nodejs/node/issues/55994 Refs: https://github.com/nodejs/node/pull/45190 Reviewed-By: Tim Perry <pimterry@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Luigi Pinca <luigipin...
[ { "path": "lib/internal/http2/core.js", "patch": "@@ -3136,9 +3136,13 @@ function initializeOptions(options) {\n \n function initializeTLSOptions(options, servername) {\n options = initializeOptions(options);\n- options.ALPNProtocols = ['h2'];\n- if (options.allowHTTP1 === true)\n- options.ALPNProtoc...
2024-12-11T13:37:21
facebook/react
1434af3d228e216366bd4b7dd324c6408087b3df
ddcecbbebf6af3fa32a323c0591dad1f63587aeb
React DevTools 5.2.0 -> 5.3.0 (#29918) Full list of changes: * chore[react-devtools]: improve console arguments formatting before passing it to original console ([hoxyq](https://github.com/hoxyq) in [#29873](https://github.com/facebook/react/pull/29873)) * chore[react-devtools]: unify console patching and defaul...
[ { "path": "packages/react-devtools-core/package.json", "patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"5.2.0\",\n+ \"version\": \"5.3.0\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\...
2024-06-18T11:12:27
golang/go
aeb256e98ac479e2b590d79f6237174343934d10
08376e1a9c57d4b07a77d156810d3fec46caba79
cmd/compile: remove unused arg from gorecover We don't need this argument anymore to match up a recover with its corresponding panic. Change-Id: I5d3646cdd766259ee9d3d995a2f215f02e17abc6 Reviewed-on: https://go-review.googlesource.com/c/go/+/685555 Reviewed-by: Michael Knyszek <mknyszek@google.com> LUCI-TryBot-Result...
[ { "path": "src/cmd/compile/internal/escape/call.go", "patch": "@@ -192,7 +192,7 @@ func (e *escape) call(ks []hole, call ir.Node) {\n \t\te.discard(call.X)\n \t\te.discard(call.Y)\n \n-\tcase ir.ODELETE, ir.OPRINT, ir.OPRINTLN, ir.ORECOVERFP:\n+\tcase ir.ODELETE, ir.OPRINT, ir.OPRINTLN, ir.ORECOVER:\n \t\tc...
2025-07-02T17:00:42
electron/electron
3eb94b72ba6659fb27d59a71f1f9ba945219bd15
752f2eb1248e42fb3d3aceceec76e18079ab34d1
feat: Options parameter for `Session.clearData` API (#41355) * feat: Options parameter for `Session.clearData` API * Consolidate & curate data type categories * Update docs for better typing * off-by-one typo * refactor to use `std::shared_ptr` instead of `base::RefCounted` * fix compile errors * std...
[ { "path": "docs/api/session.md", "patch": "@@ -1428,23 +1428,34 @@ is emitted.\n Returns `string | null` - The absolute file system path where data for this\n session is persisted on disk. For in memory sessions this returns `null`.\n \n-#### `ses.clearData()`\n+#### `ses.clearData([options])`\n \n-Returns...
2024-04-01T16:09:01
vercel/next.js
8b17a636bc9169e05eeed5df77553b725de29d45
ed1db36c46afc5e4e972200a9db2000c18380e28
Removed link to maintain text consistency (#83644) <!-- 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": "docs/01-app/03-api-reference/04-functions/use-router.mdx", "patch": "@@ -41,8 +41,8 @@ export default function Page() {\n \n ## `useRouter()`\n \n-- `router.push(href: string, { scroll: boolean })`: Perform a client-side navigation to the provided route. Adds a new entry into the [browser’s histo...
2025-09-16T08:41:11
nodejs/node
4a91507b25764230f2090f1a8f036a95b3cd6945
fd9a79df7dcf63990ff15c99433d6d86c95b794e
util: do not rely on mutable `Object` and `Function`' `constructor` prop PR-URL: https://github.com/nodejs/node/pull/56188 Fixes: https://github.com/nodejs/node/issues/55924 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Jordan Harband <ljharb@gmail.com>
[ { "path": "lib/internal/util/inspect.js", "patch": "@@ -22,8 +22,11 @@ const {\n DatePrototypeToISOString,\n DatePrototypeToString,\n ErrorPrototypeToString,\n+ Function,\n+ FunctionPrototype,\n FunctionPrototypeBind,\n FunctionPrototypeCall,\n+ FunctionPrototypeSymbolHasInstance,\n FunctionP...
2024-12-11T11:11:38
facebook/react
dbc5f36fe985258040976056889d8d27b9f67b8d
92219ff9b80d0884cfc9c4123e7dcbd54ec0221d
[compiler] Support method-call version of macro functions Adds fixtures for `macro.namespace(...)` style invocations which we use internally in some cases instead of just `macro(...)`. I tried every example i could think of that could possibly break it (including basing one off of another fixture where we hit an invar...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts", "patch": "@@ -254,7 +254,7 @@ function* runWithEnvironment(\n memoizeFbtOperandsInSameScope(hir);\n yield log({\n kind: \"hir\",\n- name: \"MemoizeFbtOperandsInSameScope\",\n+ name: \"MemoizeFbtAndMacroOperan...
2024-06-14T15:44:40
golang/go
08376e1a9c57d4b07a77d156810d3fec46caba79
c76c3abc5426ab3d183514c834bcd7d6a653ae89
runtime: iterate through inlinings when processing recover() We care about the wrapper-ness of logical frames, not physical frames. Fixes #73916 Fixes #73917 Fixex #73920 Change-Id: Ia17c8390e71e6c0e13e23dcbb7bc7273ef25da90 Reviewed-on: https://go-review.googlesource.com/c/go/+/685375 Reviewed-by: Keith Randall <khr...
[ { "path": "src/runtime/panic.go", "patch": "@@ -1142,18 +1142,21 @@ func gorecover(_ uintptr) any {\n \t\tnonWrapperFrames := 0\n \tloop:\n \t\tfor ; u.valid(); u.next() {\n-\t\t\tswitch u.frame.fn.funcID {\n-\t\t\tcase abi.FuncIDWrapper:\n-\t\t\t\tcontinue\n-\t\t\tcase abi.FuncID_gopanic:\n-\t\t\t\tif u.fr...
2025-07-01T22:29:12
electron/electron
0bf53a3876f493080a15c6d609feb3436aa435e0
62d4b21819ecee4f634731f7aad80da8abf2801e
fix: `Storage.{get|set|clear}Cookies` via CDP not working (#41718)
[ { "path": "shell/browser/ui/devtools_manager_delegate.cc", "patch": "@@ -28,6 +28,7 @@\n #include \"net/socket/stream_socket.h\"\n #include \"net/socket/tcp_server_socket.h\"\n #include \"shell/browser/browser.h\"\n+#include \"shell/browser/electron_browser_context.h\"\n #include \"shell/common/electron_pat...
2024-03-28T23:09:27
vercel/next.js
ed1db36c46afc5e4e972200a9db2000c18380e28
5712c05c5532303d54e3e6ff18aec0384dcc0a7a
Turbopack: chunking debugging utilities (#83801) <!-- 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-core/src/module_graph/chunk_group_info.rs", "patch": "@@ -288,6 +288,47 @@ pub enum ChunkGroupKey {\n },\n }\n \n+impl ChunkGroupKey {\n+ pub async fn debug_str(\n+ &self,\n+ keys: impl std::ops::Index<usize, Output = Self>,\n+ ) -> Result<String...
2025-09-16T08:28:45
rust-lang/rust
bde075b6f34b06938c4349832a593ef129d00a97
e0cb264b814526acb82def4b5810e394a2ed294f
Fix ICE when an associated type or const is wrongly marked as `final` Co-authored-by: León Orell Valerian Liehr <me@fmease.dev>
[ { "path": "compiler/rustc_ast_lowering/src/item.rs", "patch": "@@ -1088,9 +1088,18 @@ impl<'hir> LoweringContext<'_, 'hir> {\n }\n };\n \n- let (defaultness, _) = self.lower_defaultness(i.kind.defaultness(), has_value, || {\n- hir::Defaultness::Default { has_value }\n- ...
2026-02-22T15:42:15
facebook/react
92219ff9b80d0884cfc9c4123e7dcbd54ec0221d
d7bb6039de6d8fa7c89b00626418c110872cc2e7
chore[react-devtools/backend]: remove consoleManagedByDevToolsDuringStrictMode (#29856) ## Summary Removes the usage of `consoleManagedByDevToolsDuringStrictMode` flag from React DevTools backend, this is the only place in RDT where this flag was used. The only remaining part is [`ReactFiberDevToolsHook`](https:...
[ { "path": "packages/react-devtools-shared/src/backend/console.js", "patch": "@@ -22,7 +22,6 @@ import {\n getStackByFiberInDevAndProd,\n supportsNativeConsoleTasks,\n } from './DevToolsFiberComponentStack';\n-import {consoleManagedByDevToolsDuringStrictMode} from 'react-devtools-feature-flags';\n import...
2024-06-17T15:13:04
golang/go
c76c3abc5426ab3d183514c834bcd7d6a653ae89
ebdbfccd989b07a8aef75af5fbe7448f035ee239
encoding/json: fix truncated Token error regression in goexperiment.jsonv2 The jsontext.Decoder.ReadToken method reports a non-EOF error, if the token stream is truncated and does not form a valid JSON value. In contrast, the v1 json.Decoder.Token method would report EOF so long as the input was a prefix of some valid...
[ { "path": "src/encoding/json/stream_test.go", "patch": "@@ -522,3 +522,38 @@ func TestHTTPDecoding(t *testing.T) {\n \t\tt.Errorf(\"Decode error:\\n\\tgot: %v\\n\\twant: io.EOF\", err)\n \t}\n }\n+\n+func TestTokenTruncation(t *testing.T) {\n+\ttests := []struct {\n+\t\tin string\n+\t\terr error\n+\t}{\n+...
2025-07-25T00:10:54
electron/electron
61457c9498e02213b96c92b1bd121d716fc74575
c6102b9278c81dfed3de3011f93d547921c41263
feat(serial): allow Bluetooth ports to be requested by service class ID (#41638) * feat(serial): allow Bluetooth ports to be requested by service class ID * fix: bluetooth dependency
[ { "path": "BUILD.gn", "patch": "@@ -475,6 +475,7 @@ source_set(\"electron_lib\") {\n \"//net:extras\",\n \"//net:net_resources\",\n \"//printing/buildflags\",\n+ \"//services/device/public/cpp/bluetooth:bluetooth\",\n \"//services/device/public/cpp/geolocation\",\n \"//services/device...
2024-03-28T17:23:13
rust-lang/rust
dbf337f5022d3cc8344717eb7018953c1840ff07
e883143db0dc1897148ed92de642bcadccbd8f84
Fix another case where we forgot to put the type param for `PartialOrd` and `PartialEq` in builtin derives
[ { "path": "src/tools/rust-analyzer/crates/hir-ty/src/builtin_derive.rs", "patch": "@@ -35,6 +35,24 @@ fn coerce_pointee_new_type_param(trait_id: TraitId) -> TypeParamId {\n })\n }\n \n+fn trait_args(trait_: BuiltinDeriveImplTrait, self_ty: Ty<'_>) -> GenericArgs<'_> {\n+ match trait_ {\n+ Buil...
2026-02-22T14:58:09
vercel/next.js
5712c05c5532303d54e3e6ff18aec0384dcc0a7a
844abcac192d702161531468996eadfd1a1c4f13
fix(Rspack): resolve HMR unresponsiveness or unexpected full reload & update dev snapshot (#83480) This commit addresses the bugs where Hot Module Replacement (HMR) was not functioning correctly in Rspack mode. Component edits would often result in no update or a full page reload instead of a fast, state-preserving re...
[ { "path": "package.json", "patch": "@@ -124,7 +124,6 @@\n \"@opentelemetry/api\": \"1.4.1\",\n \"@picocss/pico\": \"1.5.10\",\n \"@rspack/core\": \"1.5.0\",\n- \"@rspack/plugin-react-refresh\": \"1.2.0\",\n \"@slack/web-api\": \"7.9.1\",\n \"@swc/cli\": \"0.1.55\",\n \"@swc/core\"...
2025-09-16T01:26:36
facebook/react
59e73d90163b16ce820316b1c69710f23096857e
ed8dd2036bfd228638e40f0559f652d062ce0689
[compiler] Instruction reordering Adds a pass just after DCE to reorder safely reorderable instructions (jsx, primitives, globals) closer to where they are used, to allow other optimization passes to be more effective. Notably, the reordering allows scope merging to be more effective, since that pass relies on two sco...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts", "patch": "@@ -41,6 +41,7 @@ import {\n deadCodeElimination,\n pruneMaybeThrows,\n } from \"../Optimization\";\n+import { instructionReordering } from \"../Optimization/InstructionReordering\";\n import {\n CodegenFun...
2024-06-12T22:48:34
golang/go
91c4f0ccd542a505f72ad0db952f55688851e49e
3636ced112d89da03739fa7d5468c0270addaa28
reflect: avoid a bounds check in stack-constrained code Since CL 682496 we need more stack space to handle bounds checks. The code modified here normally has no bounds checks, but in -N builds it still does and thus uses too much stack. Use unsafe arithmetic to avoid the bounds check. This will hopefully fix some of...
[ { "path": "src/reflect/makefunc.go", "patch": "@@ -8,6 +8,7 @@ package reflect\n \n import (\n \t\"internal/abi\"\n+\t\"internal/goarch\"\n \t\"unsafe\"\n )\n \n@@ -164,13 +165,18 @@ func moveMakeFuncArgPtrs(ctxt *makeFuncCtxt, args *abi.RegArgs) {\n \tfor i, arg := range args.Ints {\n \t\t// Avoid write ba...
2025-07-24T23:41:23
electron/electron
72c2b9e8625be58aafe3f90f42da745f40663a07
08241669bc7a899142a7dbd48ee27dc5a9af5c12
fix: recognize 'undefined' header value in `ClientRequest` (#41615) Co-authored-by: zowu <luke.wu@nokia-sbell.com>
[ { "path": "lib/common/api/net-client-request.ts", "patch": "@@ -209,6 +209,22 @@ type ExtraURLLoaderOptions = {\n headers: Record<string, { name: string, value: string | string[] }>;\n allowNonHttpProtocols: boolean;\n }\n+\n+function validateHeader (name: any, value: any): void {\n+ if (typeof name ...
2024-03-27T23:46:07
vercel/next.js
19bc1acccbd2a80193d163f9851188e47dbec3f8
4d7f8366a0d3d8b4bf487065b5357eec85e92dc9
fix: unstable_cache should perform blocking revalidation during ISR revalidation (#83820) When ISR revalidation occurs and `unstable_cache` entries are stale, Next.js returns stale cached data instead of waiting for fresh data. This differs from fetch() behavior, which performs foreground revalidation during ISR ([ref...
[ { "path": "packages/next/src/server/web/spec-extension/unstable-cache.ts", "patch": "@@ -238,18 +238,19 @@ export function unstable_cache<T extends Callback>(\n cacheEntry.value.data.body !== undefined\n ? JSON.parse(cacheEntry.value.data.body)\n : undefin...
2025-09-15T23:12:48
facebook/react
3154ec8a38e6014090039be54e0ca597fa967fdd
f0e8164410049aabc680035e8fd45b657eb020ab
Use a constant HostContext in prod builds for Fabric renderer (#29888) <!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please provide enough information so that others can review your pull request. The three fields below are mandatory. Before submitting...
[ { "path": "packages/react-native-renderer/src/ReactFiberConfigFabric.js", "patch": "@@ -132,6 +132,8 @@ export function appendInitialChild(\n appendChildNode(parentInstance.node, child.node);\n }\n \n+const PROD_HOST_CONTEXT: HostContext = {isInAParentText: true};\n+\n export function createInstance(\n ...
2024-06-14T17:37:19
golang/go
3636ced112d89da03739fa7d5468c0270addaa28
a6eec8bdc79a89f6001d7788d280b8910c5f1b13
encoding/json: fix extra data regression under goexperiment.jsonv2 When operating under v1 semantics in the v2 implementation, a extra data error should take precedence over any semantic error that could theoretically occur within the value itself. This change only affects code compiled under goexperiment.jsonv2. Fi...
[ { "path": "src/encoding/json/jsontext/decode.go", "patch": "@@ -776,7 +776,8 @@ func (d *decoderState) ReadValue(flags *jsonwire.ValueFlags) (Value, error) {\n \n // CheckNextValue checks whether the next value is syntactically valid,\n // but does not advance the read offset.\n-func (d *decoderState) Check...
2025-07-24T19:16:35
nodejs/node
549037f772b6e27090aac4e675b54b9595d83a54
b9329306c66f1e40f16f6992d0e74ec4f374c7dd
doc: fix incorrect link to style guide The link to the style guide in `pull-requests.md` linked to the main `README.md` instead of `doc/README.md`. This commit fixes the link. Refs: https://github.com/nodejs/node/pull/41119 PR-URL: https://github.com/nodejs/node/pull/56181 Reviewed-By: Gireesh Punathil <gpunathi@in.i...
[ { "path": "doc/contributing/pull-requests.md", "patch": "@@ -122,7 +122,7 @@ If you are modifying code, please be sure to run `make lint` (or\n code style guide.\n \n Any documentation you write (including code comments and API documentation)\n-should follow the [Style Guide](../../README.md). Code samples\...
2024-12-10T19:13:22
vercel/next.js
fcd1809fb47102af730c7e42a92b652f83942d54
4bee38175cf17e7f5899ea79968abbf93d77e1c5
fix: Rspack splitChunks.chunks regex (#83670) Related test case: https://github.com/vercel/next.js/blob/canary/test/production/production-browser-sourcemaps/index.test.ts
[ { "path": "packages/next/src/build/webpack-config.ts", "patch": "@@ -1188,7 +1188,7 @@ export default async function getBaseWebpackConfig(\n chunks: isRspack\n ? // using a function here causes noticable slowdown\n // in rspack\n- /(?!polyfills|main|pages\\/_...
2025-09-15T18:08:36
facebook/react
2ba462b665bb4691067e67db3cfbffc56959b788
dfd30974aba0d7740e084f70a8af1cd4c54bb273
[compiler][playground] Make change detection work in playground Summary: The change detection mode was unavailable in the playground because the pragma was not a boolean. This fixes that by special casing it in pragma parsing, similar to validateNoCapitalizedCalls ghstack-source-id: 4a8c17d21ab8b7936ca61c9dd1f7fdf832...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts", "patch": "@@ -410,6 +410,17 @@ export function parseConfigPragma(pragma: string): EnvironmentConfig {\n continue;\n }\n \n+ if (\n+ key === \"enableChangeDetectionForDebugging\" &&\n+ (val === undefined ...
2024-06-13T18:02:47
nodejs/node
f184a0aca0493fba27b762d1bd8985bc06711635
eef06f72eb6856454024943fdf0793a949d88392
fs,win: fix readdir for named pipe PR-URL: https://github.com/nodejs/node/pull/56110 Fixes: https://github.com/nodejs/node/issues/56002 Refs: https://github.com/nodejs/node/pull/55623 Refs: https://github.com/nodejs/node/pull/56088 Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> Reviewed-By: Luigi Pinca <luigip...
[ { "path": "src/node_file.cc", "patch": "@@ -1986,8 +1986,29 @@ static void ReadDir(const FunctionCallbackInfo<Value>& args) {\n \n BufferValue path(isolate, args[0]);\n CHECK_NOT_NULL(*path);\n+#ifdef _WIN32\n+ // On Windows, some API functions accept paths with trailing slashes,\n+ // while others do...
2024-12-10T13:31:21
golang/go
a6eec8bdc79a89f6001d7788d280b8910c5f1b13
0fa88dec1e23ceeef9f5719e0f9ccb94766e53e7
encoding/json: reduce error text regressions under goexperiment.jsonv2 There were minor and unnecessary error text changes when v1 was implemented using v2. Reduce divergences if possible. Of the cases reported in #74713, there are no more differences for: v1: json: cannot unmarshal number into Go value of type cha...
[ { "path": "src/encoding/json/decode_test.go", "patch": "@@ -416,6 +416,8 @@ type DoublePtr struct {\n \tJ **int\n }\n \n+type NestedUnamed struct{ F struct{ V int } }\n+\n var unmarshalTests = []struct {\n \tCaseName\n \tin string\n@@ -1213,6 +1215,28 @@ var unmarshalTests = []struct {\n ...
2025-07-24T18:34:18
facebook/react
dfd30974aba0d7740e084f70a8af1cd4c54bb273
ca9b6a7ebc75371c82748e057f55403518ebb5b1
created a vscode workspace file for the repo (#29830) ### Summary Similarly to what has been done on the `react-native` repo in https://github.com/facebook/react-native/pull/43851, this PR adds a `react.code-workspace` workspace file when using VSCode. This disables the built-in TypeScript Language Service for...
[ { "path": ".prettierrc.js", "patch": "@@ -14,6 +14,12 @@ module.exports = {\n parser: 'flow',\n arrowParens: 'avoid',\n overrides: [\n+ {\n+ files: ['*.code-workspace'],\n+ options: {\n+ parser: 'json-stringify',\n+ },\n+ },\n {\n files: esNextPaths,\n optio...
2024-06-13T15:23:42
vercel/next.js
4bee38175cf17e7f5899ea79968abbf93d77e1c5
721def6b5815c6618e152e62501d0d2338d41c77
[Breaking] Flat config as default in `@next/eslint-plugin-next` (#83763) > [!NOTE] > This is not a breaking change for `eslint-config-next` as they are modified to use the legacy. Therefore, CNA templates or current users that use `eslint-config-next` won't be affected. ### Why? This PR uses v16 as an opportunity to...
[ { "path": "packages/eslint-config-next/core-web-vitals.js", "patch": "@@ -1,3 +1,3 @@\n module.exports = {\n- extends: [require.resolve('.'), 'plugin:@next/next/core-web-vitals'],\n+ extends: [require.resolve('.'), 'plugin:@next/next/core-web-vitals-legacy'],\n }", "additions": 1, "deletions": 1, ...
2025-09-15T14:34:13
nodejs/node
0a7eeb506865893e69a85aac1a53dd58f1a04c05
80c0055e38b9c79b27a2c3b7da3b62e8d0f5e435
doc: fix c++ addon hello world sample PR-URL: https://github.com/nodejs/node/pull/56172 Refs: https://github.com/nodejs/node/issues/56173 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: theanarkh <theratliter@gmail.com>
[ { "path": "doc/api/addons.md", "patch": "@@ -72,14 +72,15 @@ namespace demo {\n using v8::FunctionCallbackInfo;\n using v8::Isolate;\n using v8::Local;\n+using v8::NewStringType;\n using v8::Object;\n using v8::String;\n using v8::Value;\n \n void Method(const FunctionCallbackInfo<Value>& args) {\n Isolat...
2024-12-09T17:43:50
golang/go
7b5002433026cd1b0d99859bb76af12ec7ced54b
7b9de668bd68f366d87ba50e9aeb1ba1d0bdb8e5
runtime: detect successful recovers differently Use stack unwinding instead of keeping incremental track of the argp of defers that are allowed to recover. It's much simpler, and it lets us get rid of the incremental tracking by wrapper code. (Ripped out in a subsequent CL.) We only need to stack unwind a few frames...
[ { "path": "src/runtime/panic.go", "patch": "@@ -864,6 +864,7 @@ func gopanic(e any) {\n \n \tvar p _panic\n \tp.arg = e\n+\tp.gopanicFP = unsafe.Pointer(sys.GetCallerSP())\n \n \trunningPanicDefers.Add(1)\n \n@@ -1086,27 +1087,86 @@ func (p *_panic) initOpenCodedDefers(fn funcInfo, varp unsafe.Pointer) bool...
2025-07-01T21:45:45
facebook/react
ca9b6a7ebc75371c82748e057f55403518ebb5b1
d9a5b6393a9329b60592e34c9e1fe091e6af5090
[compiler] Fix visitors to emit the correct kind Our passes aren't sequenced such that we could observe this bug, but this retains the proper terminal kind for pruned-scopes in mapTerminalSuccessors. ghstack-source-id: 1a03b40e45649bbef7d6db968fb2dbd6261a246a Pull Request resolved: https://github.com/facebook/react/p...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/HIR/visitors.ts", "patch": "@@ -856,7 +856,7 @@ export function mapTerminalSuccessors(\n const block = fn(terminal.block);\n const fallthrough = fn(terminal.fallthrough);\n return {\n- kind: \"scope\",\n+ kind: term...
2024-06-12T23:56:22
electron/electron
6e361537994dfeedae2f64b07243118ba0d838d7
4f76fff97879ee8f9b2d0dcfd43e686ff8757c69
build: fix potential source of errors in issue workflow (#41715)
[ { "path": ".github/workflows/issue-opened.yml", "patch": "@@ -38,6 +38,8 @@ jobs:\n - run: npm install mdast-util-from-markdown@2.0.0 unist-util-select@5.1.0\n - name: Add labels\n uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1\n+ env:\n+ IS...
2024-03-27T16:50:55
nodejs/node
3837c8d71e364833e7f6f3b08f41deb54cfdf106
dbfcbe371cfedf33fe16856cc71b4ed06b0155ba
build: fix GN build on macOS use_gold is not defined on macOS. PR-URL: https://github.com/nodejs/node/pull/56141 Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> Reviewed-By: Shelley Vohr <shelley.vohr@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tierney Cyren <hello@bnb.im> Reviewed-B...
[ { "path": "unofficial.gni", "patch": "@@ -263,7 +263,7 @@ template(\"node_gn_build\") {\n ldflags = [ \"/OPT:NOICF\" ] # link.exe, but also lld-link.exe.\n } else if (is_apple && !use_lld) {\n ldflags = [ \"-Wl,-no_deduplicate\" ] # ld64.\n- } else if (use_gold || use_ll...
2024-12-09T10:01:55
vercel/next.js
721def6b5815c6618e152e62501d0d2338d41c77
deee6f3089e3f4407ef5b8882ba00a273a50df8f
Update next-intlayer reference in i18n doc (#83761) [`next-intlayer`](https://intlayer.org/doc/environment/nextjs) is an i18n library that adopts a per-component approach to manage multilingual content in a next.js application. ### Changes - Fix doc related to page-router documentation, - And add App Router realted d...
[ { "path": "docs/01-app/02-guides/internationalization.mdx", "patch": "@@ -215,3 +215,4 @@ export default async function RootLayout({ children, params }) {\n - [`paraglide-next`](https://inlang.com/m/osslbuzt/paraglide-next-i18n)\n - [`lingui`](https://lingui.dev)\n - [`tolgee`](https://tolgee.io/apps-integr...
2025-09-15T14:09:42
golang/go
3024785b929cd8a740da87e1c24aef2c9b30e019
741a19ab4197fb528f8d7f7d8a73d3db3ef99355
cmd/compile,runtime: remember idx+len for bounds check failure with less code Currently we must put the index and length into specific registers so we can call into the runtime to report a bounds check failure. So a typical bounds check call is something like: MOVD R3, R0 MOVD R7, R1 CALL runtime.panicIndex or, ...
[ { "path": "src/cmd/compile/internal/ir/symtab.go", "patch": "@@ -37,6 +37,8 @@ type symsStruct struct {\n \tMsanmove *obj.LSym\n \tNewobject *obj.LSym\n \tNewproc *obj.LSym\n+\tPanicBounds *obj.LSym\n+\tPanicExtend *obj.LSym\n \tPanicdivide *obj.LSym\n \tPanicshi...
2025-06-18T21:50:23
facebook/react
d9a5b6393a9329b60592e34c9e1fe091e6af5090
814a4186459eb79ed9bc6f22de4a4f75ff77558c
fix[react-devtools] divided inspecting elements between inspecting do… (#29885) # **before** * nav to dom element from devtools * nav to devtools element from page are enabled on extension and disabled on the rest of the flavors. ## extension: * nav to dom element from devtools **enabled** and working * nav to...
[ { "path": "packages/react-devtools-core/src/standalone.js", "patch": "@@ -280,6 +280,7 @@ function initialize(socket: WebSocket) {\n store = new Store(bridge, {\n checkBridgeProtocolCompatibility: true,\n supportsTraceUpdates: true,\n+ supportsClickToInspect: true,\n });\n \n log('Connected...
2024-06-13T14:37:51
electron/electron
4f76fff97879ee8f9b2d0dcfd43e686ff8757c69
c82ec0c72b8558a13147fe8f8cd98b2bdef8364e
fix: don't do self-destroy in LibnotifyNotification::Dismiss() (#41691) Callers of Notification::Dismiss() assume that the notification instance is not deleted after the call, but this was not the case for LibnotifyNotification: - Destroy() would get `this` deleted. - notify_notification_close() in portal environm...
[ { "path": "shell/browser/notifications/linux/libnotify_notification.cc", "patch": "@@ -159,21 +159,21 @@ void LibnotifyNotification::Show(const NotificationOptions& options) {\n \n void LibnotifyNotification::Dismiss() {\n if (!notification_) {\n- Destroy();\n return;\n }\n \n GError* error = n...
2024-03-27T09:53:23
vercel/next.js
deee6f3089e3f4407ef5b8882ba00a273a50df8f
de42be7c87340c06abd3a4cabf7b5ce5b1623a03
docs(data-security): add bun package manager example (#83735) Adds the `bun add server-only` command to the data security guide. This change adds the missing Bun package manager example to the `docs/01-app/02-guides/data-security.mdx` file, ensuring consistency with other documentation sections. Fixes #83734 Co-aut...
[ { "path": "docs/01-app/02-guides/data-security.mdx", "patch": "@@ -251,6 +251,10 @@ yarn add server-only\n pnpm add server-only\n ```\n \n+```bash package=\"bun\"\n+bun add server-only\n+```\n+\n ```ts filename=\"lib/data.ts\"\n import 'server-only'\n ", "additions": 4, "deletions": 0, "language...
2025-09-15T13:51:41
nodejs/node
dbfcbe371cfedf33fe16856cc71b4ed06b0155ba
4f51d461d1fc588c65abcb0911b7c8f22edad607
assert: make partialDeepStrictEqual work with ArrayBuffers Fixes: https://github.com/nodejs/node/issues/56097 PR-URL: https://github.com/nodejs/node/pull/56098 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "lib/assert.js", "patch": "@@ -21,35 +21,44 @@\n 'use strict';\n \n const {\n+ ArrayBufferIsView,\n+ ArrayBufferPrototypeGetByteLength,\n ArrayFrom,\n ArrayIsArray,\n ArrayPrototypeIndexOf,\n ArrayPrototypeJoin,\n ArrayPrototypePush,\n ArrayPrototypeSlice,\n+ DataViewPrototypeGetBuf...
2024-12-08T22:41:26
golang/go
c641900f72a595ff2e826367b64e3e418c265409
d71d8aeafd7aa5c2ff3da6a782acdd573a0409af
cmd/compile: prefer base.Fatalf to panic in dwarfgen Updates a few spots which call `panic` to instead call `base.Fatalf`. Change-Id: I30b73c7994caa647245b0e253f20e0b88185e644 GitHub-Last-Rev: b3839bbe424294f92a1f9448e5e0ac074e722e4d GitHub-Pull-Request: golang/go#74616 Reviewed-on: https://go-review.googlesource.com...
[ { "path": "src/cmd/compile/internal/dwarfgen/dwarf.go", "patch": "@@ -203,7 +203,7 @@ func createDwarfVars(fnsym *obj.LSym, complexOK bool, fn *ir.Func, apDecls []*ir\n \t\t\t\tcontinue\n \t\t\t}\n \t\t\tif n.Class != ir.PPARAMOUT || !n.IsOutputParamInRegisters() {\n-\t\t\t\tpanic(\"invalid ir.Name on debug...
2025-07-14T22:28:59
facebook/react
55fdcf87bdab39853252369ad0dc68cb88a15102
195d5bb99e366889f0905779a0f9432d1624f999
[compiler] Fix merging of queued states in InferReferenceEffects Fixes a bug found by mofeiZ in #29878. When we merge queued states, if the new state does not introduce changes relative to the queued state we should use the queued state, not the new state. ghstack-source-id: c59f69de15fa89bd1ed049d0a7d221651577ae34 P...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferReferenceEffects.ts", "patch": "@@ -201,7 +201,7 @@ export default function inferReferenceEffects(\n let queuedState = queuedStates.get(blockId);\n if (queuedState != null) {\n // merge the queued states for this block...
2024-06-12T21:49:13
electron/electron
c57ce31e84120efc74125fd084931092c9a4d228
32b44aa5c8a7e3dd26951aa4201d6faacb5d2851
test: fix flaky tests in `webContents.navigationHistory` (#41705) test: fix flaky tests by replacing real urls with data urls
[ { "path": "spec/api-web-contents-spec.ts", "patch": "@@ -548,6 +548,9 @@ describe('webContents module', () => {\n \n describe('navigationHistory', () => {\n let w: BrowserWindow;\n+ const urlPage1 = 'data:text/html,<html><head><script>document.title = \"Page 1\";</script></head><body></body></html>...
2024-03-27T04:49:11
nodejs/node
91b6e3c2874b6f6940e6dde5b5d00501d698fd30
b5056be8544345ae4dd53601400240479f99b9a1
lib: clean up persisted signals when they are settled PR-URL: https://github.com/nodejs/node/pull/56001 Refs: https://github.com/nodejs/node/issues/55328 Fixes: https://github.com/nodejs/node/issues/55328 Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Jason Zhang <xzha4350@gmail.com> Reviewed-By: Juan José ...
[ { "path": "lib/internal/abort_controller.js", "patch": "@@ -96,8 +96,21 @@ const dependantSignalsCleanupRegistry = new SafeFinalizationRegistry((signalWeak\n }\n });\n });\n+\n const gcPersistentSignals = new SafeSet();\n \n+const sourceSignalsCleanupRegistry = new SafeFinalizationRegistry(({ sourceSi...
2024-12-08T12:24:09
vercel/next.js
bf46a6fad745f702b2ec093683035d9d4b43b979
323eebcee7f15d4c880654ed9cd3b46c49e80dc7
Turbopack: Remove matchers.reload() call on each request (#83720) ## What? It's likely that because of the bug in #83628 this logic existed in order to make the tests pass but it adds significant overhead depending on the size of your `app` directory. Since #83628 matches the watcher no longer wait for 200ms it shoul...
[ { "path": "packages/next/src/server/base-server.ts", "patch": "@@ -606,6 +606,10 @@ export default abstract class Server<\n this.responseCache = this.getResponseCache({ dev })\n }\n \n+ protected reloadMatchers() {\n+ return this.matchers.reload()\n+ }\n+\n private handleRSCRequest: RouteHandle...
2025-09-15T09:51:57
golang/go
bd04f65511791860276f2f3f982133f7be007448
5c8624a396d1c0aa4f436d17044330bc931d5fbd
internal/runtime/exithook: fix a typo That is the say -> That is to say Change-Id: I4a19d4c500103e16e6ae55f41a9fbdddd4bb84a8 GitHub-Last-Rev: 571d49ab8e6d81ac9db8b47d89118fb74bd3f2f6 GitHub-Pull-Request: golang/go#74741 Reviewed-on: https://go-review.googlesource.com/c/go/+/690195 Reviewed-by: Michael Knyszek <mknysz...
[ { "path": "src/internal/runtime/exithook/hooks.go", "patch": "@@ -8,7 +8,7 @@\n // from a safe context (e.g. not an error/panic path or signal\n // handler, preemption enabled, allocation allowed, write barriers\n // allowed, etc), and that the exit function F will be invoked under\n-// similar circumstance...
2025-07-24T13:58:50
facebook/react
195d5bb99e366889f0905779a0f9432d1624f999
50e89ec9f2d44ab140e771e585226f7771da9652
Execute event handlers in the context of the instance that it's associated with (#29876) That way we get owner stacks (native or otherwise) for `console.error` or `console.warn` inside of them. Since the `reportError` is also called within this context, we also get them for errors thrown within event listeners. Y...
[ { "path": "packages/react-dom-bindings/src/events/DOMPluginEventSystem.js", "patch": "@@ -52,6 +52,7 @@ import {\n enableLegacyFBSupport,\n enableCreateEventHandleAPI,\n enableScopeAPI,\n+ enableOwnerStacks,\n } from 'shared/ReactFeatureFlags';\n import {createEventListenerWrapperWithPriority} from '...
2024-06-12T20:15:22
electron/electron
32b44aa5c8a7e3dd26951aa4201d6faacb5d2851
7032c0d03c9d4b80fd11bfb972d6fda48b0e6a20
fix: crash on extension unload when script validation finishes (#41686) https://chromium-review.googlesource.com/c/chromium/src/+/5225796
[ { "path": "shell/browser/extensions/api/scripting/scripting_api.cc", "patch": "@@ -22,6 +22,7 @@\n #include \"extensions/browser/api/scripting/scripting_utils.h\"\n #include \"extensions/browser/extension_api_frame_id_map.h\"\n #include \"extensions/browser/extension_file_task_runner.h\"\n+#include \"extens...
2024-03-26T13:32:06
nodejs/node
ac7fea6a1239feb9bc8c25281860aeb0e5864bc3
7fdeeac4d34a66c023ab3c1bb791f123031a82fb
lib: handle Float16Array in node:v8 serdes PR-URL: https://github.com/nodejs/node/pull/55996 Fixes: https://github.com/nodejs/node/issues/55574 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name>
[ { "path": "lib/eslint.config_partial.mjs", "patch": "@@ -347,6 +347,11 @@ export default [\n name: 'SubtleCrypto',\n message: \"Use `const { SubtleCrypto } = require('internal/crypto/webcrypto');` instead of the global.\",\n },\n+ // Float16Array is not available in primor...
2024-12-07T18:24:28
vercel/next.js
99b078b8dacaf93cfdcbd6ff7b5558971fca8562
370ba8d05e28723e424979f7a0ae7c6ebed520d9
Emit build error when `'use cache'` directive is misspelled (#83756) Handles cases like: - `'use cache:remote'` (missing space after colon) - `'use cache : default'` (extra space before colon) - `'use cache private'` (missing colon) - `'use cache: '` (missing cache kind) closes NAR-392
[ { "path": "crates/next-custom-transforms/src/transforms/server_actions.rs", "patch": "@@ -2739,7 +2739,7 @@ impl DirectiveVisitor<'_> {\n });\n } else\n // `use cache` or `use cache: foo`\n- if value == \"use cache\" || value.starts_with(\"u...
2025-09-13T18:59:39
golang/go
5c8624a396d1c0aa4f436d17044330bc931d5fbd
44d73dfb4e5f80998dc0276e239e3e860c8d9e91
cmd/internal/goobj: make error output clear Change-Id: Ic8510037e5d745f3c9f1b9c203439d3fe2e2d5a5 GitHub-Last-Rev: 4101a1595bd542bec8c20e4332c884125ee57aff GitHub-Pull-Request: golang/go#74703 Reviewed-on: https://go-review.googlesource.com/c/go/+/689515 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: K...
[ { "path": "src/cmd/internal/goobj/mkbuiltin.go", "patch": "@@ -78,7 +78,7 @@ func mkbuiltin(w io.Writer) {\n \t\t\t\tcontinue\n \t\t\t}\n \t\t\tif decl.Tok != token.VAR {\n-\t\t\t\tlog.Fatal(\"unhandled declaration kind\", decl.Tok)\n+\t\t\t\tlog.Fatal(\"unhandled declaration kind: \", decl.Tok)\n \t\t\t}\n...
2025-07-22T15:12:58
facebook/react
f3e09d6328eb0eca53d8dbc19ea6f8f4aa43db25
93826c8483ffaf6676c437c25619d82f13444413
Bump braces from 3.0.2 to 3.0.3 in /fixtures/flight-esm (#29857) Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/micromatch/braces/commit/74b2db2938fad48a2ea54a9c8bf27a37a62c350d"><code>74b2db2</code></a> 3.0.3</...
[ { "path": "fixtures/flight-esm/yarn.lock", "patch": "@@ -79,11 +79,11 @@ brace-expansion@^1.1.7:\n concat-map \"0.0.1\"\n \n braces@~3.0.2:\n- version \"3.0.2\"\n- resolved \"https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107\"\n- integrity sha512-b8um+L1R...
2024-06-12T15:17:06
rust-lang/rust
b12ef56efd242f9a9a2f947cb3b689c8c5cb786f
d074e48dcb19122c4a1d4855b8e68b4c4aa41be0
Remove `no-rustfix` marker for tests with valid suggestions
[ { "path": "tests/ui/crashes/ice-6250.fixed", "patch": "@@ -0,0 +1,19 @@\n+// originally from glacier/fixed/77218.rs\n+// ice while adjusting...\n+#![expect(clippy::useless_vec)]\n+\n+pub struct Cache {\n+ data: Vec<i32>,\n+}\n+\n+pub fn list_data(cache: &Cache, key: usize) {\n+ for reference in vec![1...
2026-02-22T10:37:44
electron/electron
8c427253b3cc0bff8499c1fc0188c9ebaee135bc
ed28ead8ac0cd2e8544d1b437a1b8e529fa3e429
refactor: update `gin_helper/function_template` (#41534) * refactor: update gin_helper/function_template * fix: crash in Node.js Worker threads
[ { "path": "shell/common/gin_helper/callback.h", "patch": "@@ -132,8 +132,9 @@ template <typename ReturnType, typename... ArgTypes>\n struct NativeFunctionInvoker<ReturnType(ArgTypes...)> {\n static void Go(base::RepeatingCallback<ReturnType(ArgTypes...)> val,\n gin::Arguments* args) {\n- ...
2024-03-25T09:01:54
nodejs/node
7fdeeac4d34a66c023ab3c1bb791f123031a82fb
ee8810731dac3065395d892b8f82d366df687146
sea: only assert snapshot main function for main threads Snapshot main functions are only loaded for main threads in single executable applications. Update the check to avoid asserting it in worker threads - this allows worker threads to be spawned in snapshot main functions bundled into a single executable applicatio...
[ { "path": "src/node.cc", "patch": "@@ -320,7 +320,8 @@ MaybeLocal<Value> StartExecution(Environment* env, StartExecutionCallback cb) {\n CHECK(!env->isolate_data()->is_building_snapshot());\n \n #ifndef DISABLE_SINGLE_EXECUTABLE_APPLICATION\n- if (sea::IsSingleExecutable()) {\n+ // Snapshot in SEA is on...
2024-12-07T17:25:02
golang/go
da8b50c83087897e2a8abef2d8909253f1fb4f23
6669aa3b14d98d90929ca860421e5308374b0f46
cmd/doc: delete Users should not invoke "go tool doc" directly, but should instead run "go doc". Remove "cmd/doc" because it no longer invokes the "doc" tool but incorporates its logic directly. Fixes #74667 Change-Id: I357a3d7e0ca075f028df66e34951a41354c08941 Reviewed-on: https://go-review.googlesource.com/c/go/+/6...
[ { "path": "doc/next/3-tools.md", "patch": "@@ -2,5 +2,10 @@\n \n ### Go command {#go-command}\n \n+<!-- go.dev/issue/74667 -->\n+`cmd/doc`, and `go tool doc` have been deleted. `go doc` can be used as\n+a replacement for `go tool doc`: it takes the same flags and arguments and\n+has the same behavior.\n+\n ...
2025-07-23T15:25:14
vercel/next.js
370ba8d05e28723e424979f7a0ae7c6ebed520d9
fc307c4f23b18a054cdc6dfb5453749a2947b1a0
[OTel] fix: Root span name should not include high cardinality URL (#75416) > HTTP span names SHOULD be {method} {target} if there is a (low-cardinality) target available. If there is no (low-cardinality) {target} available, HTTP span names SHOULD be {method}. Some root spans don't have the `next.route` name availabl...
[ { "path": "packages/next/src/build/templates/app-page.ts", "patch": "@@ -459,7 +459,7 @@ export async function handler(\n })\n span.updateName(name)\n } else {\n- span.updateName(`${method} ${req.url}`)\n+ span.updateName(`${method}`)\n }\n })\n ...
2025-09-12T23:42:47
facebook/react
55c9d45f3b9239d5997788f10b8cdad5bcb81daf
fb57fc5a8a66f38d65e3bc9f83213a0003da5702
[Flight] Let environmentName vary over time by making it a function of string (#29867) This lets the environment name vary within a request by the context a component, log or error being executed in. A potentially different API would be something like `setEnvironmentName()` but we'd have to extend the `ReadableS...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -2565,6 +2565,50 @@ describe('ReactFlight', () => {\n );\n });\n \n+ it('can change the environment name inside a component', async () => {\n+ let env = 'A';\n+ function Component(props) {\n+ env = 'B';\n+ ...
2024-06-12T14:55:42
rust-lang/rust
394afbe88f30dc56347ab56b24e47aa7386e42b9
d074e48dcb19122c4a1d4855b8e68b4c4aa41be0
Remove `no-rustfix` marker for tests with no lint suggestions
[ { "path": "tests/ui-toml/expect_used/expect_used.rs", "patch": "@@ -1,5 +1,4 @@\n //@compile-flags: --test\n-//@no-rustfix\n #![warn(clippy::expect_used)]\n #![allow(clippy::unnecessary_literal_unwrap)]\n ", "additions": 0, "deletions": 1, "language": "Rust" }, { "path": "tests/ui-toml/e...
2026-02-22T10:32:23
electron/electron
ed28ead8ac0cd2e8544d1b437a1b8e529fa3e429
90a7e5acae5ac8f77443bdc16c678fcee350d22b
fix: WTF-8 decoding issue in `node:fs` (#41673) fix: WTF-8 decoding issue in node:fs
[ { "path": "patches/node/.patches", "patch": "@@ -47,3 +47,4 @@ build_ensure_v8_pointer_compression_sandbox_is_enabled_on_64bit.patch\n fix_revert_src_lb_reducing_c_calls_of_esm_legacy_main_resolve.patch\n src_preload_function_for_environment.patch\n deprecate_vector_v8_local_in_v8.patch\n+fs_fix_wtf-8_decod...
2024-03-24T19:39:37
nodejs/node
f6f519c6b6118dadb442842de98f2d947b095407
0547dcfc005ae7d9b60d31a7edc90f5a180f907a
stream: commit pull-into descriptors after filling from queue Fixes: https://github.com/nodejs/node/issues/56044 PR-URL: https://github.com/nodejs/node/pull/56072 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Matthew Aitken <maitken033380023@gmail.com>
[ { "path": "lib/internal/webstreams/readablestream.js", "patch": "@@ -94,6 +94,7 @@ const {\n ArrayBufferViewGetByteLength,\n ArrayBufferViewGetByteOffset,\n AsyncIterator,\n+ canCopyArrayBuffer,\n cloneAsUint8Array,\n copyArrayBuffer,\n createPromiseCallback,\n@@ -2552,6 +2553,15 @@ function re...
2024-11-27T23:04:18
golang/go
6669aa3b14d98d90929ca860421e5308374b0f46
26338a7f691b45017168b6523c95d4578a2cfd4d
runtime: randomize heap base address During initialization, allow randomizing the heap base address by generating a random uint64 and using its bits to randomize various portions of the heap base address. We use the following method to randomize the base address: * We first generate a random heapArenaBytes aligned a...
[ { "path": "src/internal/goexperiment/exp_randomizedheapbase64_off.go", "patch": "@@ -0,0 +1,8 @@\n+// Code generated by mkconsts.go. DO NOT EDIT.\n+\n+//go:build !goexperiment.randomizedheapbase64\n+\n+package goexperiment\n+\n+const RandomizedHeapBase64 = false\n+const RandomizedHeapBase64Int = 0", "ad...
2025-05-21T02:03:44
vercel/next.js
c6a00f4f534efbd12cbee05d91ad9592df70b294
51b14409bdd13695fb420db9cdc968bcb7e26a4c
Fix type for unhandled rejection handler process.removeListener (#83748)
[ { "path": "packages/next/src/server/node-environment-extensions/unhandled-rejection.tsx", "patch": "@@ -221,7 +221,7 @@ function installUnhandledRejectionFilter(): void {\n }\n // For other events, use the original method\n return originalProcessRemoveListener.call(process, event, listener...
2025-09-12T23:11:43
facebook/react
fb57fc5a8a66f38d65e3bc9f83213a0003da5702
383b2a18456215d2d3ec46f33c0c912e84efa08f
[Flight] Let Errored/Blocked Direct References Turn Nearest Element Lazy (#29823) Stacked on #29807. This lets the nearest Suspense/Error Boundary handle it even if that boundary is defined by the model itself. It also ensures that when we have an error during serialization of properties, those can be associat...
[ { "path": ".eslintrc.js", "patch": "@@ -571,6 +571,7 @@ module.exports = {\n TimeoutID: 'readonly',\n WheelEventHandler: 'readonly',\n FinalizationRegistry: 'readonly',\n+ Omit: 'readonly',\n \n spyOnDev: 'readonly',\n spyOnDevAndProd: 'readonly',", "additions": 1, "deletions"...
2024-06-11T23:12:39
electron/electron
90a7e5acae5ac8f77443bdc16c678fcee350d22b
707b9a58cc991a7a7d120f719701f06181753a0e
fix: normalize path before calling `showItemInFolder` and `openPath` (#41642) * fix: normalize path before calling ShowItemInFolder * fix: normalize path before calling OpenPath
[ { "path": "shell/common/platform_util_win.cc", "patch": "@@ -336,17 +336,20 @@ void ShowItemInFolder(const base::FilePath& full_path) {\n base::ThreadPool::CreateCOMSTATaskRunner(\n {base::MayBlock(), base::TaskPriority::USER_BLOCKING})\n ->PostTask(FROM_HERE,\n- base::BindOnce...
2024-03-22T14:28:44
nodejs/node
65024ae5a14aea2f264769faf01cfafb2e0c307c
eb5aa5f0e1a159b11765d4638eaeb7399e5bc333
doc: fix module.md headings PR-URL: https://github.com/nodejs/node/pull/56131 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "doc/api/module.md", "patch": "@@ -64,159 +64,6 @@ const require = createRequire(import.meta.url);\n const siblingModule = require('./sibling-module');\n ```\n \n-### `module.constants.compileCacheStatus`\n-\n-<!-- YAML\n-added: v22.8.0\n--->\n-\n-> Stability: 1.1 - Active Development\n-\n-The fol...
2024-12-06T14:22:06
facebook/react
383b2a18456215d2d3ec46f33c0c912e84efa08f
a26e3f403e1d732ecde87db119b4ce21cee20038
Use the Nearest Parent of an Errored Promise as its Owner (#29814) Stacked on #29807. Conceptually the error's owner/task should ideally be captured when the Error constructor is called but neither `console.createTask` does this, nor do we override `Error` to capture our `owner`. So instead, we use the nearest p...
[ { "path": ".eslintrc.js", "patch": "@@ -245,7 +245,7 @@ module.exports = {\n },\n ],\n 'no-shadow': ERROR,\n- 'no-unused-vars': [ERROR, {args: 'none'}],\n+ 'no-unused-vars': [ERROR, {args: 'none', ignoreRestSiblings: true}],\n 'no-use-before-define': OFF,\n 'no-useless-concat': O...
2024-06-11T22:10:24
vercel/next.js
51b14409bdd13695fb420db9cdc968bcb7e26a4c
99e09714e4f84b961ce3ad95510dced647f12445
Fix reentrancy of unhandledRejection filtering (#83741) Node's internal implementation of process.removeAllListeners calls process.removeListener internally. The simple patching method originally tried does not account for this which can lead to listeners not being removed from the actual process event emitter. To fi...
[ { "path": "packages/next/src/server/node-environment-extensions/unhandled-rejection.test.ts", "patch": "@@ -0,0 +1,1015 @@\n+/**\n+ * Testing unhandled rejections in Jest is quite tricky because by default Jest will fail the test\n+ * if there are any unhandled rejections. This is a unit test and we want to...
2025-09-12T23:09:43
electron/electron
707b9a58cc991a7a7d120f719701f06181753a0e
a32705fd306d8f8f698fb3ae1043b0d84bb0dcb8
fix: `app.setLoginItemSettings` error getting swallowed by gin conversion (#41647) * fix: errors getting swallowed by gin conversion * fix: Windows build * test: re-enable disabled test
[ { "path": "filenames.gni", "patch": "@@ -583,6 +583,8 @@ filenames = {\n \"shell/common/gin_converters/hid_device_info_converter.h\",\n \"shell/common/gin_converters/image_converter.cc\",\n \"shell/common/gin_converters/image_converter.h\",\n+ \"shell/common/gin_converters/login_item_settings...
2024-03-22T13:00:21
nodejs/node
53356c37b759f54b7da0c66558dde7f5755894e2
d7fdbb994cda8b2e1da4240eb97270c6abbaa9dd
lib: fix `fs.readdir` recursive async Fixes: https://github.com/nodejs/node/issues/56006 PR-URL: https://github.com/nodejs/node/pull/56041 Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
[ { "path": "lib/fs.js", "patch": "@@ -1370,6 +1370,102 @@ function mkdirSync(path, options) {\n }\n }\n \n+/*\n+ * An recursive algorithm for reading the entire contents of the `basePath` directory.\n+ * This function does not validate `basePath` as a directory. It is passed directly to\n+ * `binding.readd...
2024-12-05T20:25:25
facebook/react
2c959f1d775e9c216d029d198971d06a1f8c892a
270229f0c337dc652f07ef27d2254bb922bfaa9e
[Fiber] Track debugInfo on module state instead of stack (#29807) Stacked on #29804. Transferring of debugInfo was added in #28286. It represents the parent stack between the current Fiber and into the next Fiber we're about to create. I.e. Server Components in between. ~I don't love passing DEV-only fields as a...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -1050,8 +1050,10 @@ describe('ReactFlight', () => {\n }\n \n const expectedStack = __DEV__\n- ? // TODO: This should include Throw but it doesn't have a Fiber.\n- '\\n in div' + '\\n in ErrorBoundary ...
2024-06-11T21:04:13
golang/go
26338a7f691b45017168b6523c95d4578a2cfd4d
8587ba272ede9b6607ec06822e743db71f3ba563
cmd/compile: use better fatal message for staticValue1 So the position of the wrong assignment statement will be reported, instead of using incorrect base.Pos one. Notice while fixing issue #73823. Change-Id: I53f240bf99d11b5f5082ee4ca0903d9f099881b6 Reviewed-on: https://go-review.googlesource.com/c/go/+/675495 LUCI...
[ { "path": "src/cmd/compile/internal/ir/expr.go", "patch": "@@ -912,12 +912,12 @@ FindRHS:\n \t\t\t\tbreak FindRHS\n \t\t\t}\n \t\t}\n-\t\tbase.Fatalf(\"%v missing from LHS of %v\", n, defn)\n+\t\tbase.FatalfAt(defn.Pos(), \"%v missing from LHS of %v\", n, defn)\n \tdefault:\n \t\treturn nil\n \t}\n \tif rhs...
2025-05-22T13:57:33
vercel/next.js
72cf080a7307957c4a714c1fb36b1b7a390f9766
33016f3c55f4595f2601fe9d5ced8f7c675cf7fc
Fix index data route for adapter build-complete (#83730) Fixes another case caught by testing ensuring we normalize the `_next/data` filename correctly for `index`.
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -851,7 +851,10 @@ export async function handleBuildComplete({\n outputs.prerenders.push(initialOutput)\n \n if (dataRoute) {\n- let dataFilePath = path.join(pagesDistDir, `${route}.json`)\n+ let dat...
2025-09-12T16:51:57
electron/electron
587b66acc1609e78e2d8e86e5f40f2942650e79f
040acaaf3026aec8148aa010283e650e629d682b
docs: nodejs trademark policy link broken (#41558) * Fix broken Trademark Policy link * add durable link Per codebyter: https://github.com/electron/electron/pull/41558#discussion_r1522938560
[ { "path": "README.md", "patch": "@@ -112,4 +112,4 @@ and more can be found on the [Community page](https://www.electronjs.org/communi\n \n [MIT](https://github.com/electron/electron/blob/main/LICENSE)\n \n-When using Electron logos, make sure to follow [OpenJS Foundation Trademark Policy](https://openjsf.or...
2024-03-21T14:25:35
nodejs/node
d7fdbb994cda8b2e1da4240eb97270c6abbaa9dd
839ad8bd0814c576ae2dd078b178ba904add53a0
module: mark evaluation rejection in require(esm) as handled Previously the implemention of require(esm) only converted the rejected promise from module evaluation into an error, but the rejected promise was still treated as a pending unhandled rejection by the promise rejection callback, because the promise is create...
[ { "path": "src/module_wrap.cc", "patch": "@@ -663,6 +663,22 @@ void ModuleWrap::EvaluateSync(const FunctionCallbackInfo<Value>& args) {\n CHECK(result->IsPromise());\n Local<Promise> promise = result.As<Promise>();\n if (promise->State() == Promise::PromiseState::kRejected) {\n+ // The rejected pro...
2024-12-05T16:12:50
facebook/react
270229f0c337dc652f07ef27d2254bb922bfaa9e
01a40570c3cd852593c9bc88978b11cb9a2c5720
[Fiber] Create virtual Fiber when an error occurs during reconcilation (#29804) This lets us rethrow it in the conceptual place of the child. There's currently a problem when we suspend or throw in the child fiber reconciliation phase. This work is done by the parent component, so if it suspends or errors it is a...
[ { "path": "packages/react-client/src/__tests__/ReactFlight-test.js", "patch": "@@ -964,67 +964,47 @@ describe('ReactFlight', () => {\n const testCases = (\n <>\n <ClientErrorBoundary expectedMessage=\"This is a real Error.\">\n- <div>\n- <Throw value={new TypeError('Thi...
2024-06-11T19:57:41
golang/go
8587ba272ede9b6607ec06822e743db71f3ba563
cae45167b79ec3838f0cabb19394bcd99810f79a
cmd/cgo: compare malloc return value to NULL instead of literal 0 Follow the pattern used in the other _cgoPREFIX_Cfunc* functions. This also avoids a -Wzero-as-null-pointer-constant warning when compiling with g++. Change-Id: I95ac8842df048105f4c738f3603136d9cfa2dfdc Reviewed-on: https://go-review.googlesource.com/c...
[ { "path": "src/cmd/cgo/out.go", "patch": "@@ -1812,7 +1812,7 @@ void _cgoPREFIX_Cfunc__Cmalloc(void *v) {\n \tvoid *ret;\n \t_cgo_tsan_acquire();\n \tret = malloc(a->p0);\n-\tif (ret == 0 && a->p0 == 0) {\n+\tif (ret == NULL && a->p0 == 0) {\n \t\tret = malloc(1);\n \t}\n \ta->r1 = ret;", "additions": 1...
2025-05-28T09:26:17