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
vercel/next.js
9a4d31f1ca56318662b106281e5eb1c22375ffdd
4d26abdd268b3ac9ee0d42ea6bf6f72a72725d8a
Only enable unhandledRejection filtering when opted in (#83726) We need to debug some unexpected process crashes in front. This change makes the unhandled rejection filter only enabled when configred with the __NEXT_USE_UNHANDLED_REJECTION_FILTER environment variable.
[ { "path": "packages/next/src/server/node-environment-extensions/unhandled-rejection.tsx", "patch": "@@ -21,6 +21,48 @@\n \n import { workUnitAsyncStorage } from '../app-render/work-unit-async-storage.external'\n \n+const MODE:\n+ | 'enabled'\n+ | 'debug'\n+ | 'true'\n+ | 'false'\n+ | '1'\n+ | '0'\n+ ...
2025-09-12T15:57:20
nodejs/node
c4aa34aa4dc5accb100be07b4aceded83eeb3956
3c2da4b849db2e19f7e92f6fb741b6604cbdf6c2
doc: add LJHarb to collaborators Fixes: https://github.com/nodejs/node/issues/55918 PR-URL: https://github.com/nodejs/node/pull/56132 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Debadree Chatterjee <debad...
[ { "path": "README.md", "patch": "@@ -379,6 +379,8 @@ For information about the governance of the Node.js project, see\n **Nitzan Uziely** <<linkgoron@gmail.com>>\n * [LiviaMedeiros](https://github.com/LiviaMedeiros) -\n **LiviaMedeiros** <<livia@cirno.name>>\n+* [ljharb](https://github.com/ljharb) -\n+ ...
2024-12-04T19:14:44
electron/electron
040acaaf3026aec8148aa010283e650e629d682b
dd3fd78e63bac52211cc3c271a39681ac3135e97
fix: support `withFileTypes` in `fs.{readdir|readdirSync}` (#41627) fix: support withFileTypes in fs.{readdir|readdirSync}
[ { "path": "lib/node/asar-fs-wrapper.ts", "patch": "@@ -89,18 +89,19 @@ const gid = process.getgid?.() ?? 0;\n const fakeTime = new Date();\n \n function getDirents (p: string, { 0: names, 1: types }: any[][]): Dirent[] {\n- const info = splitPath(p);\n- const len = names.length;\n- for (let i = 0; i < le...
2024-03-21T14:22:40
facebook/react
0c65538be85d7e0f55e683512849486114ae56d9
2f47e667daec604e0e2314984066987a05bd96e9
Bump braces from 3.0.2 to 3.0.3 in /fixtures/legacy-jsx-runtimes (#29844) 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>...
[ { "path": "fixtures/legacy-jsx-runtimes/yarn.lock", "patch": "@@ -1030,11 +1030,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 sh...
2024-06-11T15:36:36
golang/go
cae45167b79ec3838f0cabb19394bcd99810f79a
2ddf542e4c30b2d4886482c44b57259f5b461158
go/types, types2: better error messages for certain type mismatches When an untyped operand of a (typically binary) operation does not match the type of the operand and an implicit conversion is not possible, the error message should report a "type mismatch". The type-checkers mostly did so, but not for untyped numer...
[ { "path": "src/cmd/compile/internal/types2/expr.go", "patch": "@@ -895,6 +895,10 @@ func (check *Checker) matchTypes(x, y *operand) {\n \t\tif isTyped(x.typ) && isTyped(y.typ) {\n \t\t\treturn false\n \t\t}\n+\t\t// A numeric type can only convert to another numeric type.\n+\t\tif allNumeric(x.typ) != allNu...
2025-06-18T00:09:27
vercel/next.js
e578335fbf0f757a26fb1155308af2e12b28de12
a63cd29bae8674719032ce3187593c1f2abd7fb0
[devtool] fix overlay styles are missing (#83721)
[ { "path": "packages/next/src/build/webpack/loaders/devtool/devtool-style-inject.js", "patch": "@@ -85,42 +85,50 @@ function startObservingForPortal() {\n \n // Set up MutationObserver to watch for the portal element\n const observer = new MutationObserver((mutations) => {\n- if (mutations.length === ...
2025-09-12T13:46:08
nodejs/node
7bedcfd4a2144f7dbcf8d13f0a38ac733acd4088
fe12b01bf49cee1597596d817f7a1d451bb71ba7
doc: fix typo PR-URL: https://github.com/nodejs/node/pull/56125 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
[ { "path": "doc/changelogs/CHANGELOG_V22.md", "patch": "@@ -80,11 +80,11 @@ When a `Buffer` is created using a resizable `ArrayBuffer`, the `Buffer` length\n ```js\n const ab = new ArrayBuffer(10, { maxByteLength: 20 });\n const buffer = Buffer.from(ab);\n-console.log(buffer.byteLength); 10\n+console.log(buf...
2024-12-04T02:35:30
electron/electron
61ddb1aa07551d0a157bbc0b855d3074f5fe4e22
00da7279cb4e4bef2ba2d6ba7f0f0afb32ea2650
chore: bump pylint to 2.17 (#41576) * build: bump pylint to 2.17 Xref: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/5062345 * fix pylint consider-using-f-string warnings pt 1: use flynt for automated fixes * fix pylint consider-using-f-string warnings pt 2: manual fixes * fix pyl...
[ { "path": "script/apply_all_patches.py", "patch": "@@ -13,7 +13,7 @@\n def apply_patches(target):\n repo = target.get('repo')\n if not os.path.exists(repo):\n- warnings.warn('repo not found: %s' % repo)\n+ warnings.warn(f'repo not found: {repo}')\n return\n patch_dir = target.get('patch_dir'...
2024-03-21T13:48:23
golang/go
52b6d7f67af28a4df6665a595e3f35b9875be2b5
1ebebf1cc1c91faa6e7c32bc987dd42f4f3da2e5
runtime: drop NetBSD kernel bug sysmon workaround fixed in NetBSD 9.2 The NetBSD releases supported by the NetBSD project as off today are 9.4 and 10.1. The Go project's NetBSD builders are on 9.3. Thus, it is fine to drop the workaround which was only needed for NetBSD before 9.2. Fixes #46495 Cq-Include-Trybots: l...
[ { "path": "src/runtime/os_netbsd.go", "patch": "@@ -101,9 +101,6 @@ var sigset_all = sigset{[4]uint32{^uint32(0), ^uint32(0), ^uint32(0), ^uint32(0)\n \n // From NetBSD's <sys/sysctl.h>\n const (\n-\t_CTL_KERN = 1\n-\t_KERN_OSREV = 3\n-\n \t_CTL_HW = 6\n \t_HW_NCPU = 3\n \t_HW_PAGESIZE = 7\...
2025-07-11T20:59:10
facebook/react
2f47e667daec604e0e2314984066987a05bd96e9
54185a35d90b3a82a638999a7f7c15970932fd1b
Bump braces from 3.0.2 to 3.0.3 in /fixtures/flight (#29845) 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</li> ...
[ { "path": "fixtures/flight/yarn.lock", "patch": "@@ -3674,11 +3674,11 @@ brace-expansion@^1.1.7:\n concat-map \"0.0.1\"\n \n braces@^3.0.2, braces@~3.0.2:\n- version \"3.0.2\"\n- resolved \"https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107\"\n- integrity ...
2024-06-11T15:35:53
vercel/next.js
a63cd29bae8674719032ce3187593c1f2abd7fb0
b1e2dc2ad52e0447aad9d567074b1ceb56368e4c
Docs/sep paper cuts (#83689) Addressing `papercuts` found this month - Fixes: #83622
[ { "path": "docs/01-app/01-getting-started/01-installation.mdx", "patch": "@@ -101,7 +101,7 @@ Then, add the following scripts to your `package.json` file:\n ```json filename=\"package.json\"\n {\n \"scripts\": {\n- \"dev\": \"next dev\",\n+ \"dev\": \"next dev --turbopack\",\n \"build\": \"next ...
2025-09-12T13:12:04
electron/electron
66dec24e32a001d3517461b78bf7e9f488bb4e62
433d6c33d87b62eab2e920d7b74af9ab3e397f62
fix: `serial-port-added` should respect filters (#41621) fix: serial-port-added should respect filters
[ { "path": "shell/browser/serial/serial_chooser_controller.cc", "patch": "@@ -93,6 +93,9 @@ api::Session* SerialChooserController::GetSession() {\n \n void SerialChooserController::OnPortAdded(\n const device::mojom::SerialPortInfo& port) {\n+ if (!FilterMatchesAny(port))\n+ return;\n+\n ports_.pus...
2024-03-20T14:18:41
golang/go
1ebebf1cc1c91faa6e7c32bc987dd42f4f3da2e5
6536a9354728523f7ac3627f558ba3f51163e72c
cmd/go: clean should respect workspaces The existing implementation doesn't invoke modload.InitWorkfile during runClean which in turn causes go clean to ignore workspaces and consequentially workspace vendoring. Fixes #74337 Change-Id: I295a1fcc5e81d096971c8cee9c9baa840c7725e7 Reviewed-on: https://go-review.googleso...
[ { "path": "src/cmd/go/internal/clean/clean.go", "patch": "@@ -120,6 +120,7 @@ func init() {\n }\n \n func runClean(ctx context.Context, cmd *base.Command, args []string) {\n+\tmodload.InitWorkfile()\n \tif len(args) > 0 {\n \t\tcacheFlag := \"\"\n \t\tswitch {", "additions": 1, "deletions": 0, "...
2025-06-23T10:39:20
facebook/react
54185a35d90b3a82a638999a7f7c15970932fd1b
b5b9daa44d3cd5849d2a48da3c1db71410d9e294
Bump braces from 3.0.2 to 3.0.3 in /fixtures/stacks (#29843) 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</li> ...
[ { "path": "fixtures/stacks/yarn.lock", "patch": "@@ -298,11 +298,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+L1RzM...
2024-06-11T15:35:40
nodejs/node
7924ea351822f9954d057ae05d9124b25425d31c
b915124e49447a138f0f311289acc9f57e63674b
2024-12-03, Version 22.12.0 'Jod' (LTS) Notable changes: assert: * (SEMVER-MINOR) make assertion_error use Myers diff algorithm (Giovanni Bucci) https://github.com/nodejs/node/pull/54862 buffer: * (SEMVER-MINOR) make Buffer work with resizable ArrayBuffer (James M Snell) https://github.com/nodejs/node/pull/55377 ...
[ { "path": "CHANGELOG.md", "patch": "@@ -45,7 +45,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V23.md#23.0.0\">23.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.11.0\">22.11.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.12.0\">22.12.0...
2024-11-27T21:58:44
vercel/next.js
b1e2dc2ad52e0447aad9d567074b1ceb56368e4c
c03aaee5508f82370db2d6121eae3b4acee75a4e
[test] Update snapshots for Rspack + React 18 (#83712) After fixing the workflow config for Rspack in #83677, we're now running more Rspack tests with React 18 on the `canary` branch. A few snapshot tests now need to be updated because of that. The special cases are the same as what we already had for Turbopack + Reac...
[ { "path": "test/development/acceptance/ReactRefreshLogBox.test.ts", "patch": "@@ -11,6 +11,7 @@ import path from 'path'\n import { outdent } from 'outdent'\n \n const isReact18 = parseInt(process.env.NEXT_TEST_REACT_VERSION) === 18\n+const isRspack = !!process.env.NEXT_RSPACK\n \n describe('ReactRefreshLogB...
2025-09-12T08:58:03
facebook/react
b5b9daa44d3cd5849d2a48da3c1db71410d9e294
43c17d13efc0c356a89a9036f173680ba1c115d2
[compiler] HIR-based FlattenScopesWithHooksOrUse Per title, implements an HIR-based version of FlattenScopesWithHooksOrUse as part of our push to use HIR everywhere. This is the last pass to migrate before PropagateScopeDeps, which is blocking the fix for `bug.invalid-hoisting-functionexpr`, ie where we can infer inco...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts", "patch": "@@ -71,6 +71,7 @@ import {\n import { alignMethodCallScopes } from \"../ReactiveScopes/AlignMethodCallScopes\";\n import { alignReactiveScopesToBlockScopesHIR } from \"../ReactiveScopes/AlignReactiveScopesToBlock...
2024-06-10T21:14:52
golang/go
6536a9354728523f7ac3627f558ba3f51163e72c
efc37e97c0f358f3cffe7ca2b78c743470345189
encoding/json/jsontext: preserve buffer capacity in Decoder.Reset The Decoder.Reset method is not preserving the internal buffer between resets, causing buffer capacity to be lost and resulting in unnecessary allocations when reusing decoders. This is particularly problematic when decoding many small messages. This c...
[ { "path": "src/encoding/json/jsontext/decode.go", "patch": "@@ -138,7 +138,14 @@ func (d *Decoder) Reset(r io.Reader, opts ...Options) {\n \tcase d.s.Flags.Get(jsonflags.WithinArshalCall):\n \t\tpanic(\"jsontext: cannot reset Decoder passed to json.UnmarshalerFrom\")\n \t}\n-\td.s.reset(nil, r, opts...)\n+\...
2025-06-23T11:47:21
electron/electron
433d6c33d87b62eab2e920d7b74af9ab3e397f62
b02918883fffcb6bcd726e7cc6e60d4e3e8a7d73
fix: missing badge text on Windows (#41618) https://chromium-review.googlesource.com/c/chromium/src/+/5053607
[ { "path": "shell/browser/browser_win.cc", "patch": "@@ -40,6 +40,7 @@\n #include \"shell/common/gin_helper/dictionary.h\"\n #include \"shell/common/skia_util.h\"\n #include \"shell/common/thread_restrictions.h\"\n+#include \"skia/ext/font_utils.h\"\n #include \"skia/ext/legacy_display_globals.h\"\n #include...
2024-03-19T11:50:30
nodejs/node
61b077d346545ba91c46a1a88b8d96db99a29e3b
4efb7ae454cb67e2ff2cbf7291cf9cb4ce2f3a1d
tools: fix update-undici script The `build:node` npm script now expects esbuild to be installed and bin-linked. Closes: https://github.com/nodejs/node/issues/56061 PR-URL: https://github.com/nodejs/node/pull/56069 Fixes: https://github.com/nodejs/node/issues/56061 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Revie...
[ { "path": "tools/dep_updaters/update-undici.sh", "patch": "@@ -80,7 +80,7 @@ cd \"$ROOT\"\n \n # Rebuild components from source\n rm lib/llhttp/llhttp*.*\n- \"$NODE\" \"$NPM\" install --no-bin-link --ignore-scripts\n+ \"$NODE\" \"$NPM\" install --ignore-scripts\n \"$NODE\" \"$NPM\" run build:wasm > ...
2024-11-29T09:09:04
vercel/next.js
58641694bc4df15280dbee0d502828f1f8e24b41
ea034f6ff96e54ddab4b81796ae5ad7232e05ede
fix: dev should produce the correct default fallback regex to match builds/Turbopack (#83701) `test/e2e/middleware-general/test/index.test.ts` has been frequently flaking recently in dev likely due to a timing change. If a default middleware matcher isn't written to disk, `setup-dev-bundler` returns a default regex of...
[ { "path": "packages/next/src/server/lib/router-utils/setup-dev-bundler.ts", "patch": "@@ -474,7 +474,7 @@ async function startWatcher(\n serverFields.actualMiddlewareFile\n )\n middlewareMatchers = staticInfo.middleware?.matchers || [\n- { regexp: '.*', originalSou...
2025-09-12T02:28:37
golang/go
efc37e97c0f358f3cffe7ca2b78c743470345189
98a031193b93d7b0e8353810351c9544250e7bcd
cmd/go: always return the cached path from go tool -n If we're running go tool -n always return the cached path of the tool. We can't always use the cached path when running the tool because if we copied the tool to the cached location in the same process and then try to run it we'll run into #22315, producing spuriou...
[ { "path": "src/cmd/go/internal/tool/tool.go", "patch": "@@ -277,6 +277,29 @@ func loadModTool(ctx context.Context, name string) string {\n \treturn \"\"\n }\n \n+func builtTool(runAction *work.Action) string {\n+\tlinkAction := runAction.Deps[0]\n+\tif toolN {\n+\t\t// #72824: If -n is set, use the cached p...
2025-07-18T18:14:16
electron/electron
b02918883fffcb6bcd726e7cc6e60d4e3e8a7d73
1cd7419718e4246bc663680f5a6ade61d7bd8ced
fix: support recursive readdir in Asar files (#41582)
[ { "path": "lib/node/asar-fs-wrapper.ts", "patch": "@@ -1,5 +1,5 @@\n import { Buffer } from 'buffer';\n-import { constants } from 'fs';\n+import { Dirent, constants } from 'fs';\n import * as path from 'path';\n import * as util from 'util';\n \n@@ -46,7 +46,17 @@ process._getOrCreateArchive = getOrCreateAr...
2024-03-19T10:10:14
facebook/react
fb3b9ead472ec0254e4ce7bd9000eb100010f08e
c015abd9dc32e9604e992cf351f1e130fd2a0de0
fix[react-devtools] component badge in light mode is now not invisible (#29852) In light mode, component badges in profiler were invisible due to using the alpha channel to produce the grayish color. Instead I'm using the equivalent RGB without that alpha. **before** In light mode, component badges in profiler w...
[ { "path": "packages/react-devtools-shared/src/devtools/constants.js", "patch": "@@ -50,7 +50,7 @@ export const THEME_STYLES: {[style: Theme | DisplayDensity]: any, ...} = {\n '--color-commit-gradient-text': '#000000',\n '--color-component-name': '#6a51b2',\n '--color-component-name-inverted': '#...
2024-06-11T13:32:39
vercel/next.js
8348bd32add9fae26a78b217750fa596ae9e6cc6
5abb663b96493292031b04ef977686949f0a4445
Update content-security-policy.mdx, fix development environment error (#83665) fix _nextjsDevtools csp error which happens in development environment after enabling csp and following the current documents. Full Error: - Refused to apply inline style because it violates the following Content Security Policy directive:...
[ { "path": "docs/01-app/02-guides/content-security-policy.mdx", "patch": "@@ -548,7 +548,7 @@ export function middleware(request: NextRequest) {\n const cspHeader = `\n default-src 'self';\n script-src 'self' 'nonce-${nonce}' 'strict-dynamic' ${isDev ? \"'unsafe-eval'\" : ''};\n- style-src 'self...
2025-09-11T21:07:49
nodejs/node
0a9524bd3519301ee392c3c6f89d0d14beaf9a71
4cf6fabce20eb3050c5b543d249e931ea3d3cad5
tools: fix nghttp3 updater script PR-URL: https://github.com/nodejs/node/pull/56007 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
[ { "path": "tools/dep_updaters/update-nghttp3.sh", "patch": "@@ -42,16 +42,17 @@ cleanup () {\n trap cleanup INT TERM EXIT\n \n NGHTTP3_REF=\"v$NEW_VERSION\"\n-NGHTTP3_ZIP=\"nghttp3-$NEW_VERSION\"\n+ARCHIVE_BASENAME=\"nghttp3-${NEW_VERSION}\"\n \n cd \"$WORKSPACE\"\n \n echo \"Fetching nghttp3 source archive...
2024-11-28T23:52:23
rust-lang/rust
ecb778fc61906ea2e94247435e516c8fcbc124c5
cb083142f215bf20c05e97a3ecddd15962d89707
Remove explicit `tcx` bindings from `query` entries. As currently written, these have big problems. - `desc` and `cache_on_disk_if` modifiers use different syntaxes to introduce `tcx`. - `desc` is mis-implemented such that the explicit binding isn't even necessary and the key name can be botched, as the previous t...
[ { "path": "compiler/rustc_macros/src/query.rs", "patch": "@@ -103,13 +103,11 @@ impl<T: Parse> Parse for List<T> {\n \n struct Desc {\n modifier: Ident,\n- tcx_binding: Option<Ident>,\n expr_list: Punctuated<Expr, Token![,]>,\n }\n \n struct CacheOnDiskIf {\n modifier: Ident,\n- tcx_bindin...
2026-02-20T06:01:50
golang/go
98a031193b93d7b0e8353810351c9544250e7bcd
6bb42997c8741f301f2655175abe2b6bdc943ed8
runtime: check TestUsingVDSO ExitError type assertion Currently this test panics if the error is not an ExitError. We aren't expecting other errors, but we want to continue to the t.Fatal so the error contents actually get logged. For #74672. Change-Id: I6a6a636cee5ddac500ed7ec549340b02944101ab Reviewed-on: https://...
[ { "path": "src/runtime/vdso_test.go", "patch": "@@ -62,7 +62,7 @@ func TestUsingVDSO(t *testing.T) {\n \t\tt.Logf(\"%s\", out)\n \t}\n \tif err != nil {\n-\t\tif err := err.(*exec.ExitError); err != nil && err.Sys().(syscall.WaitStatus).Signaled() {\n+\t\tif err, ok := err.(*exec.ExitError); ok && err.Sys()...
2025-07-23T20:56:50
nodejs/node
aa7c8ccd45a7cd0f300d0598b6cca951ca8ea592
d09458f3f0033779f0f7f56b819cd576490cc17f
src: fix check fd PR-URL: https://github.com/nodejs/node/pull/56000 Fixes: https://github.com/nodejs/node/issues/55983 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Jason Zhang <xzha4350@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@...
[ { "path": "src/util.cc", "patch": "@@ -782,6 +782,16 @@ std::string DetermineSpecificErrorType(Environment* env,\n input.As<v8::Object>()->GetConstructorName();\n Utf8Value name(env->isolate(), constructor_name);\n return SPrintF(\"an instance of %s\", name.out());\n+ } else if (input->IsSy...
2024-11-28T16:26:17
vercel/next.js
5abb663b96493292031b04ef977686949f0a4445
1c341690c1bee097702d50881b3bc331a040d740
Don't create client-side debug channel if the feature is disabled (#83699) Creating the client-side debug channel when `experimental.reactDebugChannel` is falsy went unnoticed in the [original PR](https://github.com/vercel/next.js/pull/82748), because this doesn't provoke any obvious errors. The debug info is still co...
[ { "path": "packages/next/src/build/define-env.ts", "patch": "@@ -333,6 +333,8 @@ export function getDefineEnv({\n !isTurbopack || (config.experimental.turbopackPersistentCaching ?? false),\n 'process.env.__NEXT_OPTIMIZE_ROUTER_SCROLL':\n config.experimental.optimizeRouterScrolling ?? false,\...
2025-09-11T19:04:42
electron/electron
193e162ec6efbb688de2a0fd533c87ab0666d133
3759e59bbda0ea9fe0660288b2f3e6ff8d139c56
chore: bump chromium to 124.0.6359.0 (main) (#41584) * chore: bump chromium in DEPS to 124.0.6355.0 * 5341411: view-transition: Ensure resources are cleaned up in all cases. https://chromium-review.googlesource.com/c/chromium/src/+/5341411 * chore: fixup patch indices * 5354013: Return nullopt on error fro...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '124.0.6353.0',\n+ '124.0.6359.0',\n 'node_version':\n 'v20.11.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2024-03-15T18:03:42
golang/go
71c2bf551303930faa32886446910fa5bd0a701a
c74399e7f5e763e6c25978d090122a0a73a695ee
cmd/compile: fix loclist for heap return vars without optimizations When compiling without optimizations certain variables such as return params end up missing location lists. Fixes #65405 Change-Id: Id4ec6b1ab6681fd77b8fefb47a4ec05060c128ef GitHub-Last-Rev: 5ab6a5398162119dd0cd5325f4239b4559b030bd GitHub-Pull-Reque...
[ { "path": "src/cmd/compile/internal/dwarfgen/dwarf.go", "patch": "@@ -248,11 +248,6 @@ func createDwarfVars(fnsym *obj.LSym, complexOK bool, fn *ir.Func, apDecls []*ir\n \t\tif n.Class == ir.PPARAM || n.Class == ir.PPARAMOUT {\n \t\t\ttag = dwarf.DW_TAG_formal_parameter\n \t\t}\n-\t\tif n.Esc() == ir.EscHea...
2025-07-22T22:05:06
facebook/react
a714685c156dd241b1d5e5ae3a98c439c88e64e4
277420803947724b43c47bbc47d3a353553868f1
fix[compiler] remove duplicate parsePluginOptions from the compilePro… (#29831) <!-- 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 s...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Program.ts", "patch": "@@ -24,7 +24,7 @@ import { isHookDeclaration } from \"../Utils/HookDeclaration\";\n import { assertExhaustive } from \"../Utils/utils\";\n import { insertGatedFunctionDeclaration } from \"./Gating\";\n import { ad...
2024-06-10T23:18:01
nodejs/node
853b304db89410b3809049352f8211f6113fea6e
24a8662359afb5ec90a0be95529f088f8e69ebc4
doc: add added tag and fix typo sqlite.md PR-URL: https://github.com/nodejs/node/pull/56012 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
[ { "path": "doc/api/sqlite.md", "patch": "@@ -156,6 +156,10 @@ around [`sqlite3_prepare_v2()`][].\n \n ### `database.createSession([options])`\n \n+<!-- YAML\n+added: v23.3.0\n+-->\n+\n * `options` {Object} The configuration options for the session.\n * `table` {string} A specific table to track changes fo...
2024-11-27T20:56:40
electron/electron
3759e59bbda0ea9fe0660288b2f3e6ff8d139c56
41b2102d10b46a71361df378593e9042118fefee
fix: asan build on macos (#41587)
[ { "path": "BUILD.gn", "patch": "@@ -855,7 +855,7 @@ if (is_mac) {\n if (is_asan) {\n # crashpad_handler requires the ASan runtime at its @executable_path.\n sources += [ \"$root_out_dir/libclang_rt.asan_osx_dynamic.dylib\" ]\n- public_deps += [ \"//build/config/sanitizers:copy_asan_runt...
2024-03-15T04:06:43
vercel/next.js
cc00206c51113190c3b51eaa09ee1b6cd0474dd8
c8edeb6f6c50ba232c3a32fd027ebc4b162d4c1e
fix(Turbopack): Enable scope hoisting for large files or module counts (#83399) # Improve BytePos encoding for large source maps This PR enhances the BytePos encoding mechanism in scope-hoisted modules to handle larger source maps. The previous implementation had limitations when dealing with large byte positions, wh...
[ { "path": "turbopack/crates/turbopack-ecmascript/src/lib.rs", "patch": "@@ -39,7 +39,7 @@ use std::{\n collections::hash_map::Entry,\n fmt::{Debug, Display, Formatter},\n mem::take,\n- sync::Arc,\n+ sync::{Arc, Mutex},\n };\n \n use anyhow::{Context, Result, anyhow, bail};\n@@ -1101,7 +110...
2025-09-11T16:22:27
rust-lang/rust
cb083142f215bf20c05e97a3ecddd15962d89707
46ccd829eb45012d94bd701d982bb296fb64863b
Remove explicit `tcx` bindings from query `desc`s. Due to a bug they aren't actually necessary! (A few queries already take advantage of this, probably unintentionally.) And the next commit will remove support for explicit `tcx` bindings in favour of implicit.
[ { "path": "compiler/rustc_middle/src/queries.rs", "patch": "@@ -239,13 +239,13 @@ rustc_queries! {\n /// Avoid calling this query directly.\n query hir_module_items(key: LocalModDefId) -> &'tcx rustc_middle::hir::ModuleItems {\n arena_cache\n- desc { |tcx| \"getting HIR module items i...
2026-02-20T05:48:05
golang/go
c74399e7f5e763e6c25978d090122a0a73a695ee
4ed9943b264170b11af375f9cc82807516578c77
net: correct comment for ListenConfig.ListenPacket Fixes #74634 Change-Id: I21196c4aef1b717bfda0b54e61b35e83cfa9dc1b Reviewed-on: https://go-review.googlesource.com/c/go/+/689075 Reviewed-by: Sean Liao <sean@liao.dev> Auto-Submit: Sean Liao <sean@liao.dev> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accou...
[ { "path": "src/net/dial.go", "patch": "@@ -837,7 +837,7 @@ func (lc *ListenConfig) Listen(ctx context.Context, network, address string) (Li\n // parameters.\n //\n // The ctx argument is used while resolving the address on which to listen;\n-// it does not affect the returned Listener.\n+// it does not affe...
2025-07-20T23:20:11
nodejs/node
090aa8bd8e6a6a3bd2c994c4954fcc0a086d701b
c6d3fddbb344aed5cec692cebef94b03bb8b502c
doc: add history entry for textEncoder.encodeInto() Fixes: https://github.com/nodejs/node/issues/55938 PR-URL: https://github.com/nodejs/node/pull/55990 Refs: https://github.com/nodejs/node/pull/29524 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name>
[ { "path": "doc/api/util.md", "patch": "@@ -2166,6 +2166,10 @@ encoded bytes.\n \n ### `textEncoder.encodeInto(src, dest)`\n \n+<!-- YAML\n+added: v12.11.0\n+-->\n+\n * `src` {string} The text to encode.\n * `dest` {Uint8Array} The array to hold the encode result.\n * Returns: {Object}", "additions": 4, ...
2024-11-27T14:11:49
facebook/react
277420803947724b43c47bbc47d3a353553868f1
d172bdaf95b0be869f7d36b87c95a5f12b229195
Remove Warning: prefix and toString on console Arguments (#29839) Basically make `console.error` and `console.warn` behave like normal - when a component stack isn't appended. I need this because I need to be able to print rich logs with the component stack option and to be able to disable instrumentation completel...
[ { "path": "packages/internal-test-utils/shouldIgnoreConsoleError.js", "patch": "@@ -7,6 +7,9 @@ module.exports = function shouldIgnoreConsoleError(format, args) {\n args[0] != null &&\n ((typeof args[0] === 'object' &&\n typeof args[0].message === 'string' &&\n+ // This sp...
2024-06-10T22:41:56
electron/electron
1bfd3e0631a00a4940d7ce89bebb515ad7e519ca
122a2fd177823e2bf26d8218992648d0483c1b1f
fix: account for potentially swapped `FrameTreeNodeId` in `WebFrameMain` (#41538) fix: account for potentially swapped FrameTreeNodeId in WebFrameMain Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
[ { "path": "shell/browser/api/electron_api_web_frame_main.cc", "patch": "@@ -72,7 +72,17 @@ WebFrameMain* WebFrameMain::FromFrameTreeNodeId(int frame_tree_node_id) {\n \n // static\n WebFrameMain* WebFrameMain::FromRenderFrameHost(content::RenderFrameHost* rfh) {\n- return rfh ? FromFrameTreeNodeId(rfh->Get...
2024-03-14T08:50:52
rust-lang/rust
46ccd829eb45012d94bd701d982bb296fb64863b
d8b2222b11fc03a31d43707c8c9006f025809ece
Fix bad key names in a couple of queries. Due to a bug, you can currently use `key` within the `desc` block and it'll just work regardless of what actual key name you specified. A subsequent commit will fix this, so let's correct the affected queries first.
[ { "path": "compiler/rustc_middle/src/queries.rs", "patch": "@@ -589,7 +589,7 @@ rustc_queries! {\n }\n \n /// Checks whether a type is representable or infinitely sized\n- query representability(_: LocalDefId) -> rustc_middle::ty::Representability {\n+ query representability(key: LocalDefId) -...
2026-02-20T05:41:49
golang/go
d5ec0815e69175d93bb741e9bb0a55b919facc6d
f7cc61e7d7f77521e073137c6045ba73f66ef902
runtime: relax TestMemoryLimitNoGCPercent a bit It seems to be pretty flaky. I've seen: retained=289438024 limit=268435456 bound=285212672 Which is ~4MB over the bound. Not sure why this tends to be darwin-specific, but we'll fix just darwin for now. (It isn't quite darwin-only, as it appeared in #66893. But ...
[ { "path": "src/runtime/testdata/testprog/gc.go", "patch": "@@ -395,6 +395,9 @@ func gcMemoryLimit(gcPercent int) {\n \t\t// somewhat heavily here) this bound is kept loose. In practice the Go runtime\n \t\t// should do considerably better than this bound.\n \t\tbound := int64(myLimit + 16<<20)\n+\t\tif runt...
2025-07-21T20:37:27
nodejs/node
5bdf1c4ee8f0efecaef8c29370badc5f427179d5
17f39bcf3c853d73838f8f008cf1c8d1a371ec23
doc: fix deprecation codes PR-URL: https://github.com/nodejs/node/pull/56018 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
[ { "path": "doc/api/deprecations.md", "patch": "@@ -3786,7 +3786,7 @@ Type: Documentation-only\n Passing non-supported argument types is deprecated and, instead of returning `false`,\n will throw an error in a future version.\n \n-### DEP0187: `process.features.ipv6` and `process.features.uv`\n+### DEP0188: ...
2024-11-27T13:16:21
facebook/react
bf1bb2e5e52733a9577848f2913d06edcf24df14
f81d5ee219848c7a02c0afdbd46fc1cedcc72df0
Fix xplat sync syntax error
[ { "path": ".github/workflows/commit_artifacts.yml", "patch": "@@ -335,7 +335,7 @@ jobs:\n git --no-pager diff -U0 --cached | grep '^[+-]' | head -n 100\n echo \"====================\"\n # Ignore REVISION or lines removing @generated headers.\n- if git diff --cached' :(...
2024-06-10T17:30:30
electron/electron
1840d7b7eecb7ae59de4f81de1813c643fdfa6b4
6cb84ddbfba5eecab1c66f6d990896124f38b1dc
fix: improve caption button appearance on Windows 11 (#41561) https://chromium-review.googlesource.com/c/chromium/src/+/4428171
[ { "path": "shell/browser/ui/views/win_caption_button.cc", "patch": "@@ -163,7 +163,7 @@ void WinCaptionButton::PaintSymbol(gfx::Canvas* canvas) {\n gfx::ScopedCanvas scoped_canvas(canvas);\n const float scale = canvas->UndoDeviceScaleFactor();\n \n- const int symbol_size_pixels = std::round(10 * scale)...
2024-03-13T14:58:48
rust-lang/rust
417e4f9c9d9e2b0ad36599503af0e02bd7db096b
5fb2ff8611e5a4af4dc85977cfdecfbf3ffa6ade
Fix typo in armv7a-vex-v5.md Remove duplicate "to" in armv7-vex-v5.md
[ { "path": "src/doc/rustc/src/platform-support/armv7a-vex-v5.md", "patch": "@@ -24,7 +24,7 @@ This target is cross-compiled. Dynamic linking is unsupported.\n `std` has only partial support due to platform limitations. Notably:\n - `std::process` and `std::net` are unimplemented. `std::thread` only supports ...
2026-02-22T03:38:31
facebook/react
f81d5ee219848c7a02c0afdbd46fc1cedcc72df0
a532d91d010a11083e598027cbd40fc0c935ea92
Fix xplat sync (#29833) ## Overview The clever trick in https://github.com/facebook/react/pull/29799 turns out to not work because signedsource includes the generated hash in the header. Reverts back to checking git diff, filtering out the REVISION file and `@generated` headers.
[ { "path": ".github/workflows/commit_artifacts.yml", "patch": "@@ -327,108 +327,18 @@ jobs:\n grep -rl \"$CURRENT_VERSION\" ./compiled-rn || echo \"No files found with $CURRENT_VERSION\"\n grep -rl \"$CURRENT_VERSION\" ./compiled-rn | xargs -r sed -i -e \"s/$CURRENT_VERSION/$LAST_VERSION/...
2024-06-10T17:24:45
nodejs/node
17f39bcf3c853d73838f8f008cf1c8d1a371ec23
9029aec834b537967c9ca46389ba74dd37f6e98f
doc: remove confusing and outdated sentence Remove confusing and outdated sentence in `doc/api/stream.md`. Fixes: https://github.com/nodejs/node/issues/55987 PR-URL: https://github.com/nodejs/node/pull/55988 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Re...
[ { "path": "doc/api/stream.md", "patch": "@@ -3846,8 +3846,6 @@ added: v8.0.0\n \n The `_destroy()` method is called by [`writable.destroy()`][writable-destroy].\n It can be overridden by child classes but it **must not** be called directly.\n-Furthermore, the `callback` should not be mixed with async/await\...
2024-11-27T10:26:27
golang/go
f7cc61e7d7f77521e073137c6045ba73f66ef902
5dac42363ba8281a3f4f08e03af2292b763adc38
cmd/compile: for arm64 epilog, do SP increment with a single instruction That way, the frame is atomically popped. Previously, for big frames the SP was unwound in two steps (because arm64 can only add constants up to 1<<12 in a single instruction). Fixes #73259 Change-Id: I382c249194ad7bc9fc19607c27487c58d90d49e5 R...
[ { "path": "src/cmd/internal/obj/arm64/obj7.go", "patch": "@@ -907,18 +907,49 @@ func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {\n \t\t\t\tp.To.Reg = REGFP\n \t\t\t\tp.To.Offset = REGLINK\n \n-\t\t\t\t// ADD $aoffset, RSP, RSP\n-\t\t\t\tq = newprog()\n-\t\t\t\tq.As = AADD\n-\t\t\t\...
2025-07-21T17:09:35
vercel/next.js
6b0559f0b81206cfda51c04dee338ffaf6f3f4ce
4d82a4aa13ff4d5f9b0179dcaa185666df617756
[CI] Fix GitHub Actions matrix configuration for React versions (#83677) The `build-and-test` workflow runs on `canary` are currently annotated with the following error ([x-ref](https://github.com/vercel/next.js/actions/runs/17629372493)): ``` Error when evaluating 'strategy' for job 'test-rspack-production'. .github...
[ { "path": ".github/workflows/build_and_test.yml", "patch": "@@ -269,9 +269,9 @@ jobs:\n group: [1/6, 2/6, 3/6, 4/6, 5/6, 6/6]\n # Empty value uses default\n # TODO: Run with React 18.\n- # Integration tests use the installed React version in next/package.json.include:\n+ ...
2025-09-11T13:59:22
vercel/next.js
a64c5915a948f69e05212ef22ce675dab9e61c4c
c654bec6eb08382ed2ef47c90317039b6693f62a
Turbopack: Only load capsize-font-metrics once (#83654) ## What? Currently each `next/font` import would cause the capsize-font-metrics json to be loaded which is 4.2Mb so not super fast to load on machines with a slower filesystem. On one trace provided it showed 100-160ms spent on loading for each `next/font` impor...
[ { "path": "crates/next-core/src/next_font/google/font_fallback.rs", "patch": "@@ -1,10 +1,9 @@\n use anyhow::{Context, Result};\n use once_cell::sync::Lazy;\n use regex::Regex;\n-use rustc_hash::FxHashMap;\n use serde::{Deserialize, Serialize};\n use turbo_rcstr::{RcStr, rcstr};\n-use turbo_tasks::{NonLocal...
2025-09-11T11:35:36
rust-lang/rust
7be626903c786021ed1bf50b5601758714e6f5c4
e077016d18b711d5599deff8e9be725be86db13c
Fix typo in tracing.md for `tracing_separate_thread` Remove duplicate "the" in documentation.
[ { "path": "src/tools/miri/doc/tracing.md", "patch": "@@ -243,7 +243,7 @@ let _trace = enter_trace_span!(M, \"borrow_tracker\", borrow_tracker = \"on_stack_p\n \n ### `tracing_separate_thread` parameter\n \n-Miri saves traces using the the `tracing_chrome` `tracing::Layer` so that they can be visualized in P...
2026-02-22T03:32:24
facebook/react
cdbafc8e67bb0669e70d361a956ab56ccd3bf7a3
7d445acb02d3f1011fa231898535c58197d6163a
compiler: Log metrics on pruned memo blocks/values Adds additional information to the CompileSuccess LoggerEvent: * `prunedMemoBlocks` is the number of reactive scopes that were pruned for some reason. * `prunedMemoValues` is the number of unique _values_ produced by those scopes. Both numbers exclude blocks that are...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Options.ts", "patch": "@@ -169,6 +169,9 @@ export type LoggerEvent =\n fnName: string | null;\n memoSlots: number;\n memoBlocks: number;\n+ memoValues: number;\n+ prunedMemoBlocks: number;\n+ prunedMemoV...
2024-06-07T23:44:36
nodejs/node
ae8280c95df2ef7d02b37df6bc0c5b307147a5e5
7450332339ed40481f470df2a3014e2ec355d8d8
process: deprecate `features.{ipv6,uv}` and `features.tls_*` PR-URL: https://github.com/nodejs/node/pull/55545 Fixes: https://github.com/nodejs/node/issues/55537 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.co...
[ { "path": "doc/api/deprecations.md", "patch": "@@ -3786,6 +3786,33 @@ Type: Documentation-only\n Passing non-supported argument types is deprecated and, instead of returning `false`,\n will throw an error in a future version.\n \n+### DEP0187: `process.features.ipv6` and `process.features.uv`\n+\n+<!-- YAML...
2024-11-27T04:19:16
electron/electron
150c2bcef990e90b0fff232cdb15ad6fb59c2b63
1252f92431add122d7ab5f0947f7cf2f634c9fb8
chore: bump chromium to 124.0.6351.0 (main) (#41514) * chore: bump chromium in DEPS to 124.0.6339.0 * chore: update patches * chore: bump chromium in DEPS to 124.0.6341.0 * chore: update patches * chore: bump chromium in DEPS to 124.0.6343.0 * chore: bump chromium in DEPS to 124.0.6345.0 * chore: upd...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '124.0.6331.0',\n+ '124.0.6351.0',\n 'node_version':\n 'v20.11.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "filena...
2024-03-12T09:15:41
golang/go
f0e9dc09752cc2f03fcedff458660ab2276bcf8d
03a3887f31264e778c9aaf62247a478eedd3633d
[dev.simd] cmd/compile: fix opLen(2|3)Imm8_2I intrinsic function This function reads the const from the wrong arg, this CL fixes it. Change-Id: Icd38977a35f0df9064efb290fa6390453d6b9e5b Reviewed-on: https://go-review.googlesource.com/c/go/+/688595 Reviewed-by: David Chase <drchase@google.com> LUCI-TryBot-Result: Go L...
[ { "path": "src/cmd/compile/internal/ssagen/intrinsics.go", "patch": "@@ -1722,7 +1722,7 @@ func opLen3Imm8(op ssa.Op, t *types.Type, offset int) func(s *state, n *ir.CallE\n \n func opLen2Imm8_2I(op ssa.Op, t *types.Type, offset int) func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {\n \treturn ...
2025-07-17T22:23:15
vercel/next.js
bdb12360376a6996d84cac06b7c3a2671232973a
22798842b43341b992b69b6f37566d5656a28898
Turbopack: remove `css_environment` from `Environment` (#83487) Change the fix from #83334 to not have a "CSS environment" inside of every environment. I don't think that this makes sense, and it also makes the implementation more complicated. ```diff pub struct Environment { execution: ExecutionEnvironment, + ...
[ { "path": "crates/next-api/src/app.rs", "patch": "@@ -218,6 +218,7 @@ impl AppProject {\n NextRuntime::NodeJs,\n self.project().encryption_key(),\n self.project().server_compile_time_info().environment(),\n+ self.project().client_compile_time_info().environment...
2025-09-11T06:41:46
facebook/react
7d445acb02d3f1011fa231898535c58197d6163a
d193455fc37a91045112fbf0240a289a45173de0
compiler: treat pruned scope outputs as reactive Mostly addresses the issue with non-reactive pruned scopes. Before, values from pruned scopes would not be memoized, but could still be depended upon by downstream scopes. However, those downstream scopes would assume the value could never change. This could allow the d...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CollectReactiveIdentifiers.ts", "patch": "@@ -9,7 +9,9 @@ import {\n IdentifierId,\n InstructionId,\n Place,\n+ PrunedReactiveScopeBlock,\n ReactiveFunction,\n+ isPrimitiveType,\n } from \"../HIR/HIR\";\n import { Reactive...
2024-06-07T19:10:59
electron/electron
fb1b5ca4ce9d79192df307b641fb2adb74b82da5
f826506218fc72da8b1792221284a247b09cf800
test: disable CapturableScreen tests on Windows x64 (#41543) * test: disable CapturableScreen tests on Windows x64 * test: disable js-execute-iframe" case should not crash on win 32-bit
[ { "path": "spec/crash-spec.ts", "patch": "@@ -40,9 +40,13 @@ const shouldRunCase = (crashCase: string) => {\n case 'quit-on-crashed-event': {\n return (process.platform !== 'win32' || process.arch !== 'ia32');\n }\n- // TODO(jkleinsc) fix this test on Linux on arm/arm64\n+ // TODO(jklein...
2024-03-08T00:17:39
golang/go
5dac42363ba8281a3f4f08e03af2292b763adc38
e5502e0959bb54ec70ca500e8d2b6f5ac5efbc53
runtime: fix asan wrapper for riscv64 Make sure we keep the M in X21. The instruction at line 87 needs to be loading from the M, not from the gsignal. Fixes #73979, maybe? Change-Id: I3aba1c35454636138b305bca26e20dbc8e6b1d6e Reviewed-on: https://go-review.googlesource.com/c/go/+/688975 Reviewed-by: Joel Sing <joel@s...
[ { "path": "src/runtime/asan_riscv64.s", "patch": "@@ -81,13 +81,13 @@ TEXT\tasancall<>(SB), NOSPLIT, $0-0\n \tMOV\tg_m(g), X21\n \n \t// Switch to g0 stack if we aren't already on g0 or gsignal.\n-\tMOV\tm_gsignal(X21), X21\n-\tBEQ\tX21, g, call\n+\tMOV\tm_gsignal(X21), X22\n+\tBEQ\tX22, g, call\n \n-\tMOV\...
2025-07-19T16:34:04
facebook/react
d193455fc37a91045112fbf0240a289a45173de0
aa0930452b06cee00a03544f1fbe1a6888578801
compiler: Promote pruned scope declarations to temporaries if used in a later scope There's a category of bug currently where pruned reactive scopes whose outputs are non-reactive can have their code end up inlining into another scope, moving the location of the instruction. Any value that had a scope assigned has to ...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts", "patch": "@@ -36,7 +36,7 @@ import {\n getHookKind,\n makeIdentifierName,\n } from \"../HIR/HIR\";\n-import { printPlace } from \"../HIR/PrintHIR\";\n+import { printIdentifier, printPlace } from \".....
2024-06-07T19:10:59
electron/electron
f826506218fc72da8b1792221284a247b09cf800
62331f5ac14954367e1e762b9f206c81ebe35109
fix: `chrome://process-internals` failing to load (#41476) fix: chrome://process-internals failing to load
[ { "path": "electron_paks.gni", "patch": "@@ -77,6 +77,7 @@ template(\"electron_extra_paks\") {\n \"//content:content_resources\",\n \"//content/browser/resources/gpu:resources\",\n \"//content/browser/resources/media:resources\",\n+ \"//content/browser/resources/process:resources\",\n...
2024-03-07T14:31:16
golang/go
e5502e0959bb54ec70ca500e8d2b6f5ac5efbc53
2363897932cfb279dd8810d2c92438f7ddcfd951
cmd/go: check subcommand properties This change corrects the properties checked by Lookup. We were inspecting the properties of the Command receiver; now we are inspecting the properties of the subcommand. Fixes #73864. Change-Id: Ieb462e489fc4f8f0568aa3a2d404b322d627166c Reviewed-on: https://go-review.googlesource...
[ { "path": "src/cmd/go/internal/base/base.go", "patch": "@@ -62,11 +62,11 @@ var Go = &Command{\n // Lookup returns the subcommand with the given name, if any.\n // Otherwise it returns nil.\n //\n-// Lookup ignores subcommands that have len(c.Commands) == 0 and c.Run == nil.\n+// Lookup ignores any subcomma...
2025-05-30T21:59:34
vercel/next.js
1482af898d7490ce417901c566f6641be48f80a5
345450a176f3bf8d50aef7a5b22f84743595c2e6
[dev] Serve static metadata from filesystem (#83460) Current metadata files are compiled to `route.js` files. This happens not only to metadata API (e.g., `icon.tsx`), but to static files as well, which is unnecessary. In development, this leads to confusing logs such as: ``` Compiled /favicon.ico in ...ms ``` Users...
[ { "path": "packages/next/src/lib/metadata/is-metadata-route.ts", "patch": "@@ -44,6 +44,15 @@ export const getExtensionRegexString = (\n return `(?:\\\\.(${staticExtensions.join('|')})|(\\\\.(${dynamicExtensions.join('|')})))`\n }\n \n+/**\n+ * Matches the static metadata files, e.g. /robots.txt, /sitemap...
2025-09-10T12:25:41
electron/electron
a7d664e3a3d06a4d3f059cb51a375ee3155a23d6
62a897b75b68ce97ef241bdb0e63ab4ed6a8d8a7
fix: `user-did-{resign|become}-active` events on macOS (#41506) fix: user-did-{resign|become}-active events on macOS
[ { "path": "shell/browser/api/electron_api_power_monitor_mac.mm", "patch": "@@ -22,41 +22,45 @@ @implementation MacLockMonitor\n \n - (id)init {\n if ((self = [super init])) {\n- NSDistributedNotificationCenter* distCenter =\n+ NSDistributedNotificationCenter* distributed_center =\n [NSDistri...
2024-03-06T11:43:39
vercel/next.js
c5dab314072857cfab6cd1c7a7fb5e8e7019f20c
bc3ab4470c4b17baf54bf6229c641ca18d5ae3b5
Ignore unhandledRejection events for promises that reject after a React render aborts (#83590) Currently we only abort React renders that are prerendered so this change in practice only affects prerendering. The intent is to not report unhandledRejections that are downstream of an abort because the signal these errors...
[ { "path": "packages/next/src/server/node-environment-extensions/unhandled-rejection.tsx", "patch": "@@ -0,0 +1,388 @@\n+/**\n+ * Manages unhandled rejection listeners to intelligently filter rejections\n+ * from aborted prerenders when cache components are enabled.\n+ *\n+ * THE PROBLEM:\n+ * When we abort ...
2025-09-10T03:46:31
golang/go
2363897932cfb279dd8810d2c92438f7ddcfd951
e32255fcc0861727243fca4e94766c0a322954fb
cmd/internal/obj: enable got pcrel itype in fips140 for riscv64 This CL enable R_RISCV_GOT_PCREL_ITYPE in fips140 Fixes #74662 Change-Id: Ic189c4e352517ae74034f207a5f944b610f2eb73 Reviewed-on: https://go-review.googlesource.com/c/go/+/688635 Reviewed-by: Mark Ryan <markdryan@rivosinc.com> Reviewed-by: Cherry Mui <che...
[ { "path": "src/cmd/internal/obj/fips140.go", "patch": "@@ -384,6 +384,7 @@ func (s *LSym) checkFIPSReloc(ctxt *Link, rel Reloc) {\n \t\tobjabi.R_RISCV_TLS_IE,\n \t\tobjabi.R_RISCV_TLS_LE,\n \t\tobjabi.R_RISCV_GOT_HI20,\n+\t\tobjabi.R_RISCV_GOT_PCREL_ITYPE,\n \t\tobjabi.R_RISCV_PCREL_HI20,\n \t\tobjabi.R_RIS...
2025-07-18T03:06:24
nodejs/node
fb8de039c9ef97dc3bdd237d8711d8b3d911f265
619355b9c69eb99024d5198520425fa87879a727
http2: fix memory leak caused by premature listener removing Http2Session should always call ondone into JS to detach the handle. In some case, ondone is defered to be called by the StreamListener through WriteWrap, we should be careful of this before getting rid of the StreamListener. PR-URL: https://github.com/node...
[ { "path": "src/node_http2.cc", "patch": "@@ -803,13 +803,15 @@ void Http2Session::Close(uint32_t code, bool socket_closed) {\n CHECK_EQ(nghttp2_session_terminate_session(session_.get(), code), 0);\n SendPendingData();\n } else if (stream_ != nullptr) {\n+ // so that the previous listener of the...
2024-11-26T03:25:22
electron/electron
62a897b75b68ce97ef241bdb0e63ab4ed6a8d8a7
cc7e80c4e3b54b118ba8086fdb9a8fcb0c3612c0
chore: fix fs overrides for asar (#41507) fix: fs overrides for asar
[ { "path": "patches/node/chore_allow_the_node_entrypoint_to_be_a_builtin_module.patch", "patch": "@@ -8,10 +8,10 @@ they use themselves as the entry point. We should try to upstream some form\n of this.\n \n diff --git a/lib/internal/modules/cjs/loader.js b/lib/internal/modules/cjs/loader.js\n-index 1f3b7190...
2024-03-06T09:39:30
vercel/next.js
22bd9dec085bcc7bbdd0849169cdc5adfcd3a86a
7ef02019cf0636df05f52167c16afe85f4aee61c
Update PPR cases with adapter config (#83595) Continues https://github.com/vercel/next.js/pull/82919 from testing fixing `fallback` value missing the extension and `/` app route not being mapping to it's output file correctly. This also adds a test suite with PPR enabled to catch these cases.
[ { "path": "packages/next/src/build/adapter/build-complete.ts", "patch": "@@ -795,7 +795,7 @@ export async function handleBuildComplete({\n \n let filePath = path.join(\n isAppPage ? appDistDir : pagesDistDir,\n- `${route}.${isAppPage && !dataRoute ? 'body' : 'html'}`\n+ `...
2025-09-09T15:14:38
nodejs/node
b17a1fb1cec919c09aa3401c040b79e35c5ed82e
abd95a85c5144d5e9651c5379d4ab31cd211f242
doc: add doc for PerformanceObserver.takeRecords() PR-URL: https://github.com/nodejs/node/pull/55786 Fixes: https://github.com/nodejs/node/issues/55779 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jason Zhang <xzha4350@gmail.com>
[ { "path": "doc/api/perf_hooks.md", "patch": "@@ -1339,6 +1339,14 @@ for (let n = 0; n < 3; n++)\n performance.mark(`test${n}`);\n ```\n \n+### `performanceObserver.takeRecords()`\n+\n+<!-- YAML\n+added: v16.0.0\n+-->\n+\n+* Returns: {PerformanceEntry\\[]} Current list of entries stored in the performance ...
2024-11-25T10:02:32
golang/go
e32255fcc0861727243fca4e94766c0a322954fb
0451816430486a25966dd76aa92735ac0588b8e5
cmd/compile/internal/ssa: restrict architectures for TestDebugLines_74576 CL 687815 recently added TestDebugLines_74576. The pre-existing debug_lines_test.go file generally restricts the tested architectures and contains multiple warnings that the testing approach is useful but fragile, such as: "These files must ...
[ { "path": "src/cmd/compile/internal/ssa/debug_lines_test.go", "patch": "@@ -116,20 +116,30 @@ func TestDebugLines_53456(t *testing.T) {\n }\n \n func TestDebugLines_74576(t *testing.T) {\n-\ttests := []struct {\n-\t\tfile string\n-\t\twantStmts []int\n-\t}{\n-\t\t{\"i74576a.go\", []int{12, 13, 13, 14}}...
2025-07-18T22:25:08
facebook/react
20b6f4c0e8a1f40ee61735201645e0395ff08f94
20841f9a6205a633e6d08a274db974481daaca23
[Float][Fiber] Assume stylesheets in document are already loaded (#29811) When we made stylesheets suspend even during high priority updates we exposed a bug in the loading tracking of stylesheets that are loaded as part of the preamble. This allowed these stylesheets to put suspense boundaries into fallback mode m...
[ { "path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js", "patch": "@@ -2412,23 +2412,42 @@ export function getResource(\n if (!resource) {\n // We asserted this above but Flow can't figure out that the type satisfies\n const ownerDocument = getDocumentFromRoot(r...
2024-06-07T23:53:24
vercel/next.js
7ef02019cf0636df05f52167c16afe85f4aee61c
318aacca9029831beccb5dedd8c73fbcdb0cf317
Fix logic bug in sortByPageExts (#83610) ## What? Fixes a logic bug caught by the code review bot: https://github.com/vercel/next.js/pull/83555#discussion_r2329668930
[ { "path": "packages/next/src/build/sort-by-page-exts.ts", "patch": "@@ -11,7 +11,7 @@ export function sortByPageExts(pageExtensions: PageExtensions) {\n const bExt = extname(b)\n \n const aNoExt = a.substring(0, a.length - aExt.length)\n- const bNoExt = a.substring(0, b.length - bExt.length)\n+ ...
2025-09-09T14:12:41
electron/electron
9f673c859d5021eb9778a84160bbb5b4de04906c
e67ab9a93dadccecff30de50ab4555191c30b6c4
chore: bump chromium to 124.0.6331.0 (main) (#41474) * chore: bump chromium in DEPS to 124.0.6329.0 * chore: update patches * 5319449: Activate popups after async opener fullscreen exit transitions | https://chromium-review.googlesource.com/c/chromium/src/+/5319449 * 5321532: [//ui] Remove ContextFactory::Sha...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '124.0.6323.0',\n+ '124.0.6331.0',\n 'node_version':\n 'v20.11.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "patche...
2024-03-05T16:47:48
rust-lang/rust
041e3a57a2a111604b3b4ba762fea164cb59d638
e3062fa780fefc860c1d5005b9665751c4d14283
Remove RDTSC timer and always rely on Instant instead Fixes https://github.com/rust-lang/miri/issues/4563
[ { "path": "src/tools/miri/src/bin/log/mod.rs", "patch": "@@ -1,3 +1,2 @@\n pub mod setup;\n mod tracing_chrome;\n-mod tracing_chrome_instant;", "additions": 0, "deletions": 1, "language": "Rust" }, { "path": "src/tools/miri/src/bin/log/tracing_chrome.rs", "patch": "@@ -50,8 +50,6 @@ ...
2026-02-16T17:13:11
facebook/react
a65de775e2120b7b8195bfdc75791fc1cb6ac14f
a0a435d68f2e4e506faef4e763d13cbeb2e819c8
[compiler] Add repro for func properties bug with gating When gating is enabled, any function declaration properties that were previously set (typically `Function.displayName`) would cause a crash after compilation as the original identifier is no longer present. ghstack-source-id: beb7e258561ea598d306fa67706d34a8788...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-gating-invalid-function-properties.expect.md", "patch": "@@ -0,0 +1,84 @@\n+\n+## Input\n+\n+```javascript\n+// @gating\n+\n+/**\n+ * Fail: bug-gating-invalid-function-properties\n+ * Unexpected error in Forget ru...
2024-06-07T19:39:14
golang/go
34b70684ba2fc8c5cba900e9abdfb874c1bd8c0e
66536242fce34787230c42078a7bbd373ef8dcb0
go/types: infer correct type for y in append(bytes, y...) The type-checking logic for append has a special case for append(bytes, s...) where the typeset for s contains string. However, this case was triggering even when the typeset contained only []byte, causing the creation of Signature types of the form func([]byte...
[ { "path": "src/cmd/compile/internal/types2/builtins.go", "patch": "@@ -91,22 +91,25 @@ func (check *Checker) builtin(x *operand, call *syntax.CallExpr, id builtinId) (\n \t\t// to type []byte with a second argument of string type followed by ... .\n \t\t// This form appends the bytes of the string.\"\n \n-\...
2025-07-18T17:16:21
nodejs/node
c9bf257180e7edaa493e5bd326a240fc9a765b7a
b09618e474e520e5fcb5ab97b4f750614c05564a
lib: avoid excluding symlinks in recursive fs.readdir with filetypes Fixes: https://github.com/nodejs/node/issues/52663 Signed-off-by: Juan José Arboleda <soyjuanarbol@gmail.com> PR-URL: https://github.com/nodejs/node/pull/55714 Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> Reviewed-By: James M Snell <jasnell@gmail...
[ { "path": "lib/fs.js", "patch": "@@ -1402,9 +1402,12 @@ function readdirSyncRecursive(basePath, options) {\n // of the first array within the result.\n const length = readdirResult[0].length;\n for (let i = 0; i < length; i++) {\n+ // Avoid excluding symlinks, as they are not direct...
2024-11-25T05:07:13
vercel/next.js
7a76e9fa68e0dfad4070177a25e300bd9dc230ee
988110276402463b00277156ea3396a473598e61
docs: rewrite+usePathname+prerender hydration error mitigation (#83462) Closes: https://linear.app/vercel/issue/DOC-5040/usepathname-and-rewrites
[ { "path": "docs/01-app/03-api-reference/04-functions/use-pathname.mdx", "patch": "@@ -65,6 +65,7 @@ const pathname = usePathname()\n ```tsx filename=\"app/example-client-component.tsx\" switcher\n 'use client'\n \n+import { useEffect } from 'react'\n import { usePathname, useSearchParams } from 'next/naviga...
2025-09-09T13:14:57
rust-lang/rust
e3062fa780fefc860c1d5005b9665751c4d14283
16507514414b2bb5b839db6bb5b52e22bd45a062
Avoid keeping ThreadData borrowed while formatting tracing arguments Fixes RefCell being borrowed mutably twice, see https://github.com/rust-lang/miri/issues/4563#issuecomment-3415871750 . There are some places in rustc where the implementation of an argument passed to a tracing span makes a nested tracing call, e.g....
[ { "path": "src/tools/miri/src/bin/log/tracing_chrome.rs", "patch": "@@ -53,6 +53,7 @@ use std::{\n use crate::log::tracing_chrome_instant::TracingChromeInstant;\n \n /// Contains thread-local data for threads that send tracing spans or events.\n+#[derive(Clone)]\n struct ThreadData {\n /// A unique ID f...
2026-02-16T17:24:19
electron/electron
d5912fd05a1f998b347aa97a7b80951a453d1f4c
a0dad83ded4661eb873cc62b75bb0f406ad7fecb
fix: webContents.print options should be optional (#41467)
[ { "path": "lib/browser/api/web-contents.ts", "patch": "@@ -263,13 +263,11 @@ WebContents.prototype.printToPDF = async function (options) {\n \n // TODO(codebytere): deduplicate argument sanitization by moving rest of\n // print param logic into new file shared between printToPDF and print\n-WebContents.prot...
2024-02-29T15:19:44
facebook/react
0a5e0b0c2e496f335136c34663e8763cfa160b82
cc1ec60d0de3be60948fc152b2377a42504f551a
[compiler] Fix outdated comment in scripts/release ghstack-source-id: a37c6faa8b6d0fa443b5a3cb2f0d8398f8e7588c Pull Request resolved: https://github.com/facebook/react/pull/29800
[ { "path": "compiler/scripts/release/publish-manual.js", "patch": "@@ -51,19 +51,18 @@ async function getDateStringForCommit(commit) {\n }\n \n /**\n- * Please login to npm first with `npm login`. You will also need 2FA enabled to push to npm.\n- *\n * Script for publishing PUBLISHABLE_PACKAGES to npm. By d...
2024-06-07T15:46:53
nodejs/node
b6fe731c55eb4cb9d14042a23e5002ed39b7c8b7
1d0738a85e7a0fce67ddcbef0a7e6b93b9559e99
test: make HTTP/1.0 connection test more robust Fixes: https://github.com/nodejs/node/issues/47200 Co-authored-by: Luigi Pinca <luigipinca@gmail.com> PR-URL: https://github.com/nodejs/node/pull/55959 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Jason Zhan...
[ { "path": "test/parallel/test-http-remove-connection-header-persists-connection.js", "patch": "@@ -10,6 +10,13 @@ const server = http.createServer(function(request, response) {\n // For HTTP/1.0, the connection should be closed after the response automatically.\n response.removeHeader('connection');\n \...
2024-11-24T22:30:38
golang/go
66536242fce34787230c42078a7bbd373ef8dcb0
385000b004616d5c42c868a2a072432cb65ca692
cmd/compile/internal/escape: improve DWARF .debug_line numbering for literal rewriting optimizations The literal rewriting optimizations to reduce user allocations that were implemented in CL 649079 and related CLs like CL 684116 could produce .debug_line tables such that the line numbers sometimes jumped back to a va...
[ { "path": "src/cmd/compile/internal/escape/escape.go", "patch": "@@ -539,9 +539,8 @@ func (b *batch) rewriteWithLiterals(n ir.Node, fn *ir.Func) {\n \t\treturn\n \t}\n \n-\tassignTemp := func(n ir.Node, init *ir.Nodes) {\n+\tassignTemp := func(pos src.XPos, n ir.Node, init *ir.Nodes) {\n \t\t// Preserve any...
2025-07-12T21:01:44
vercel/next.js
107458887e7cb5125940e146e2974a9a018a8a2b
89ab752acdb2c5e39228e67a8b7a7852778a7863
examples(with-supabase): fix import statement in tutorial (#83605) Fixed import statements in tutorial code to point to files in the correct folders. Co-authored-by: Joseph <joseph.chamochumbi@vercel.com>
[ { "path": "examples/with-supabase/components/tutorial/fetch-data-steps.tsx", "patch": "@@ -18,7 +18,7 @@ create policy \"Allow public read access\" on notes\n for select\n using (true);`.trim();\n \n-const server = `import { createClient } from '@/utils/supabase/server'\n+const server = `import { createClie...
2025-09-09T11:59:00
facebook/react
cc1ec60d0de3be60948fc152b2377a42504f551a
142b2a8230130ddf3de8a9c8e7799a291f4d1a97
[Flight] Run recreated Errors within a fake native stack (#29717) Stacked on #29740. Before: <img width="719" alt="Screenshot 2024-06-02 at 11 51 20 AM" src="https://github.com/facebook/react/assets/63648/8f79fa82-2474-4583-894e-a2329e9a6304"> After (updated with my patches to Chrome): <img width="813" al...
[ { "path": "fixtures/flight/config/webpack.config.js", "patch": "@@ -7,6 +7,7 @@ const ReactFlightWebpackPlugin = require('react-server-dom-webpack/plugin');\n const fs = require('fs');\n const {createHash} = require('crypto');\n const path = require('path');\n+const {pathToFileURL} = require('url');\n const...
2024-06-07T15:54:14
nodejs/node
d0d52092cf4002dfc07254a2a2cb55aa9a3485af
a2a0c22fbf89a9172142e0f776a35932ac3ce514
assert: add partialDeepStrictEqual Fixes: https://github.com/nodejs/node/issues/50399 Co-Authored-By: Cristian Barlutiu <cristian.barlutiu@gmail.com> PR-URL: https://github.com/nodejs/node/pull/54630 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Mos...
[ { "path": "doc/api/assert.md", "patch": "@@ -2548,6 +2548,96 @@ assert.throws(throwingFirst, /Second$/);\n Due to the confusing error-prone notation, avoid a string as the second\n argument.\n \n+## `assert.partialDeepStrictEqual(actual, expected[, message])`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+> S...
2024-11-23T17:45:49
golang/go
385000b004616d5c42c868a2a072432cb65ca692
f506ad2644ff9c76d7e9fa00710248009d449cac
runtime: fix idle time double-counting bug This change fixes a bug in the accounting of sched.idleTime. In just the case where the GC CPU limiter needs up-to-date data, sched.idleTime is incremented in both the P-idle-time and idle-mark-work paths, but it should only be incremented in the former case. Fixes #74627. ...
[ { "path": "src/runtime/mgclimit.go", "patch": "@@ -209,14 +209,12 @@ func (l *gcCPULimiterState) updateLocked(now int64) {\n \t\tfor _, pp := range allp {\n \t\t\ttyp, duration := pp.limiterEvent.consume(now)\n \t\t\tswitch typ {\n-\t\t\tcase limiterEventIdleMarkWork:\n-\t\t\t\tfallthrough\n \t\t\tcase limi...
2025-07-15T17:11:18
vercel/next.js
25b9f490bbca3feedd0489997f1764a73c1a953e
f507b0e66bb10275fa2c1c6c6d344b36e28458a1
fix: devtools initial position should be from next config (#83571)
[ { "path": "packages/next/src/next-devtools/dev-overlay/shared.ts", "patch": "@@ -251,6 +251,9 @@ function getStackIgnoringStrictMode(stack: string | undefined) {\n const shouldDisableDevIndicator =\n process.env.__NEXT_DEV_INDICATOR?.toString() === 'false'\n \n+const devToolsInitialPositionFromNextConfig ...
2025-09-08T23:12:41
facebook/react
827cbea417a4058ce544184adff2ee2014625309
c4b433f8cb31d6f73d4a800fcf11ed55c8689daf
compiler: Add support for ref effects Fixes false positives where we currently disallow mutations of refs from callbacks passed to JSX, if the ref is also passed to jsx. We consider these to be mutations of "frozen" values, but refs are explicitly allowed to have interior mutability. The fix is to always allow (at lea...
[ { "path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferReferenceEffects.ts", "patch": "@@ -29,6 +29,8 @@ import {\n isArrayType,\n isMutableEffect,\n isObjectType,\n+ isRefValueType,\n+ isUseRefType,\n } from \"../HIR/HIR\";\n import { FunctionSignature } from \"../HIR/ObjectSha...
2024-06-07T00:02:19
electron/electron
04df5ce492f61fd67912fc8bc0cd6a064618f231
13e601e35c43ad640fbe2bfea57e9a054f1dca4c
chore: bump chromium to 124.0.6323.0 (main) (#41412) * chore: bump chromium in DEPS to 124.0.6315.0 * chore: update patches * 5279678: Stream AIDA responses https://chromium-review.googlesource.com/c/chromium/src/+/5279678 * 5276439: Remove non_network_url_loader_factory_remotes_ https://chromium-review...
[ { "path": "DEPS", "patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '123.0.6312.5',\n+ '124.0.6323.0',\n 'node_version':\n 'v20.11.1',\n 'nan_version':", "additions": 1, "deletions": 1, "language": "Unknown" }, { "path": "docs/a...
2024-02-29T09:31:13
nodejs/node
19195608fcbf83969d32ea60197a20e4c0c98bd5
d3bcb97e5a1c8caeba0b05102c03f60091fb5c69
module: do not warn when require(esm) comes from node_modules As part of the standard experimental feature graduation policy, when we unflagged require(esm) we moved the experimental warning to be emitted when require() is actually used to load ESM, which previously was an error. However, some packages in the ecosyste...
[ { "path": "lib/internal/modules/cjs/loader.js", "patch": "@@ -70,6 +70,7 @@ const {\n module_export_private_symbol,\n module_parent_private_symbol,\n },\n+ isInsideNodeModules,\n } = internalBinding('util');\n \n const { kEvaluated, createRequiredModuleFacade } = internalBinding('module_wrap');\n...
2024-11-23T11:28:47
golang/go
f506ad2644ff9c76d7e9fa00710248009d449cac
9c507e794297c9a7f160f71b9910d5de27b9a517
cmd/compile/internal/escape: speed up analyzing some functions with many closures Escape analysis examines functions in batches. In some cases, closures are in the same batch as their parent function, but in other cases, the closures are in different batches. This can mean the per-batch ir.ReassignOracle cache is not ...
[ { "path": "src/cmd/compile/internal/escape/escape.go", "patch": "@@ -122,17 +122,24 @@ type escape struct {\n }\n \n func Funcs(all []*ir.Func) {\n-\tir.VisitFuncsBottomUp(all, Batch)\n+\t// Make a cache of ir.ReassignOracles. The cache is lazily populated.\n+\t// TODO(thepudds): consider adding a field on ...
2025-07-14T23:36:00
vercel/next.js
3b8ce1a479778dc161fec7c8e9401861deaaf447
7a43540b0dcb3ab2ba0a9b195801c9904cce9d6f
Fix build-indicator test flaking (#83585) ## What? Fixes the flaky build-indicator test to use `retry` instead of `waitFor`. `waitFor` assumes something happens within x amount of time but if that's slightly slower than that it fails the test even though the test is not broken.
[ { "path": "test/integration/build-indicator/test/index.test.js", "patch": "@@ -3,7 +3,7 @@\n import fs from 'fs-extra'\n import { join } from 'path'\n import webdriver from 'next-webdriver'\n-import { findPort, launchApp, killApp, waitFor, check } from 'next-test-utils'\n+import { findPort, launchApp, killA...
2025-09-08T21:10:10
facebook/react
c4b433f8cb31d6f73d4a800fcf11ed55c8689daf
fe5ce4e3e969aca4705b9973a6fdb5f132e03025
[Flight] Allow aborting during render (#29764) Stacked on #29491 Previously if you aborted during a render the currently rendering task would itself be aborted which will cause the entire model to be replaced by the aborted error rather than just the slot currently being rendered. This change updates the abort...
[ { "path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOM-test.js", "patch": "@@ -36,6 +36,7 @@ let ErrorBoundary;\n let JSDOM;\n let ReactServerScheduler;\n let reactServerAct;\n+let assertConsoleErrorDev;\n \n describe('ReactFlightDOM', () => {\n beforeEach(() => {\n@@ -70,6 +71,8 @@ des...
2024-06-06T21:41:27
nodejs/node
05b3fcb4d7d421a079ebf0740ce5444e5a118090
3178a762d6a2b1a37b74f02266eea0f3d86603be
doc: fix Node.js 23 column in CHANGELOG.md The column for Node.js 23 in `CHANGELOG.md` is missing an opening `<td>` tag so was not correctly rendering. PR-URL: https://github.com/nodejs/node/pull/55935 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed...
[ { "path": "CHANGELOG.md", "patch": "@@ -38,6 +38,7 @@ release.\n <th title=\"LTS Until 2025-04\"><a href=\"doc/changelogs/CHANGELOG_V18.md\">18</a> (LTS)</th>\n </tr>\n <tr>\n+ <td valign=\"top\">\n <b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.3.0\">23.3.0</a></b><br/>\n <a href=\"doc/changelogs/CHANG...
2024-11-22T18:01:35
golang/go
9c507e794297c9a7f160f71b9910d5de27b9a517
9782dcfd16bcf10f576504bacf67eb41a6cef88f
cmd/link, runtime: on Wasm, put only function index in method table and func table In the type descriptor's method table, it contains relative PCs of the methods (relative to the start of the text section) stored as 32-bit offsets. On Wasm, a PC is PC_F<<16 + PC_B, where PC_F is the function index, and PC_B is the blo...
[ { "path": "src/cmd/internal/obj/wasm/wasmobj.go", "patch": "@@ -372,6 +372,9 @@ func preprocess(ctxt *obj.Link, s *obj.LSym, newprog obj.ProgAlloc) {\n \t}\n \ttableIdxs = append(tableIdxs, uint64(numResumePoints))\n \ts.Size = pc + 1\n+\tif pc >= 1<<16 {\n+\t\tctxt.Diag(\"function too big: %s exceeds 65536...
2023-12-26T20:35:56
electron/electron
a6133e85d19d5f87ba12ec42bdbeca7061762aee
267c0796dd779aa443d7d17f2eae23972bd7d083
test: disable flaky macOS panel test & refactor screen capture testing (#41441) * Disable flaky test * Add helper for storing test artifacts * Refactor screen capture tests We have a pattern for inspecting a screen capture, so this refactor codifies that pattern into a helper. This gives us shorter test code,...
[ { "path": ".circleci/config/base.yml", "patch": "@@ -1642,6 +1642,8 @@ commands:\n fi\n - store_test_results:\n path: src/junit\n+ - store_artifacts:\n+ path: src/electron/spec/artifacts\n \n - *step-verify-mksnapshot\n - *step-verify-chromedriver", ...
2024-02-28T03:54:20