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 | 57b21b16d20f7327dca870dca3a1998e5dc10b6c | 14803eaa9aaec5373a862521ae212891f2c92c10 | stream: validate undefined sizeAlgorithm in WritableStream
PR-URL: https://github.com/nodejs/node/pull/56067
Fixes: https://github.com/nodejs/node/issues/56014
Refs: https://github.com/whatwg/streams/pull/1333
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> | [
{
"path": "lib/internal/webstreams/writablestream.js",
"patch": "@@ -1176,9 +1176,18 @@ function writableStreamDefaultControllerGetDesiredSize(controller) {\n }\n \n function writableStreamDefaultControllerGetChunkSize(controller, chunk) {\n+ const {\n+ stream,\n+ sizeAlgorithm,\n+ } = controller[kS... | 2024-12-20T06:57:34 |
facebook/react | fc7467ac0ed735aefbfdddc7889d9f1b7aefccf1 | 6bf64df5383113d71bf6ebc8823c6a3ef412e6d0 | [dx] Update error messages for config parsing
ghstack-source-id: 693a3526a73f1fbd25f4e59416f8c65a0f8f1235
Pull Request resolved: https://github.com/facebook/react-forget/pull/2857 | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts",
"patch": "@@ -299,7 +299,8 @@ export function compileProgram(\n */\n if (environment.isErr()) {\n CompilerError.throwInvalidConfig({\n- reason: \"Error in validating environment config\",\n+ ... | 2024-04-18T01:16:32 |
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 |
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 |
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 | a33ec1248bc2df74811da8b0cd811f16663205db | 990497c514c30a2f104ed8da3a0f91284bad26b0 | lib: suppress source map lookup exceptions
When the source map data are invalid json strings, skip construct
`SourceMap` on it. Additionally, suppress exceptions on source map
lookups and fix test runners crash on invalid source maps.
PR-URL: https://github.com/nodejs/node/pull/56299
Refs: https://github.com/nodejs/n... | [
{
"path": "lib/internal/source_map/source_map_cache.js",
"patch": "@@ -155,6 +155,9 @@ function maybeCacheSourceMap(filename, content, moduleInstance, isGeneratedSourc\n }\n \n const data = dataFromUrl(filename, sourceMapURL);\n+ // `data` could be null if the source map is invalid.\n+ // In this case... | 2024-12-17T23:12:00 |
facebook/react | da6ba53b10d8240fc251ba14a3e5878604d3dc7d | 0c245df1dc162d387ce6f5483505921b6cd4cfe2 | [UMD] Remove umd builds (#28735)
In React 19 React will finally stop publishing UMD builds. This is
motivated primarily by the lack of use of UMD format and the added
complexity of maintaining build infra for these releases. Additionally
with ESM becoming more prevalent in browsers and services like esm.sh
which c... | [
{
"path": ".eslintrc.js",
"patch": "@@ -545,7 +545,6 @@ module.exports = {\n __EXTENSION__: 'readonly',\n __PROFILE__: 'readonly',\n __TEST__: 'readonly',\n- __UMD__: 'readonly',\n __VARIANT__: 'readonly',\n __unmockReact: 'readonly',\n gate: 'readonly',",
"additions": 0,
... | 2024-04-17T18:15:27 |
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 |
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 |
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 | 0c245df1dc162d387ce6f5483505921b6cd4cfe2 | f82051d7abf9a2137f62cb84f0dd3618397951bc | Complete the typo fix (#28856) | [
{
"path": "packages/internal-test-utils/__tests__/ReactInternalTestUtils-test.js",
"patch": "@@ -2146,7 +2146,7 @@ describe('ReactInternalTestUtils console assertions', () => {\n - Expected errors\n + Received errors\n \n- - This is a complete different message that happens to start w... | 2024-04-17T18:04:22 |
nodejs/node | 854d23b0d60bec3ebdaf5b4c05a4f57fd1bbf62a | a85ef6a04a8b10de037c62b446e92ee1102e82f2 | 2024-12-19, Version 23.5.0 (Current)
Notable changes:
crypto:
* graduate WebCryptoAPI Ed25519 and X25519 algorithms as stable (Filip Skokan) https://github.com/nodejs/node/pull/56142
dgram:
* (SEMVER-MINOR) support blocklist in udp (theanarkh) https://github.com/nodejs/node/pull/56087
doc:
* stabilize util.styl... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -39,7 +39,8 @@ release.\n </tr>\n <tr>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.4.0\">23.4.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.5.0\">23.5.0</a></b><br/>\n+<a href=\"doc/changelogs/CHANGELOG_V23.md#23.4.0\">2... | 2024-12-18T21:40:13 |
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 |
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 | 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 | f82051d7abf9a2137f62cb84f0dd3618397951bc | 4ca20fd36b2444a74279e7022f89894710b1daab | console test utils fix: match entire string, not just first letter (#28855)
Fixes issue where if the first letter of the expected string appeared
anywhere in actual message, the assertion would pass, leading to false
negatives. We should check the entire expected string.
---------
Co-authored-by: Ricky <rickha... | [
{
"path": "packages/internal-test-utils/__tests__/ReactInternalTestUtils-test.js",
"patch": "@@ -2129,6 +2129,28 @@ describe('ReactInternalTestUtils console assertions', () => {\n `);\n });\n \n+ // @gate __DEV__\n+ it('regression: checks entire string, not just the first letter', async () =... | 2024-04-17T17:04:54 |
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 |
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 |
nodejs/node | fd8de670da4d2a80e21e0f8a12ec7a6b0a13014d | 0675e05a04cd64a1d3b1c9032af5c2e9e2e6ab06 | stream: catch and forward error from dest.write
PR-URL: https://github.com/nodejs/node/pull/55270
Fixes: https://github.com/nodejs/node/issues/54945
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Ja... | [
{
"path": "lib/internal/streams/readable.js",
"patch": "@@ -1004,10 +1004,15 @@ Readable.prototype.pipe = function(dest, pipeOpts) {\n src.on('data', ondata);\n function ondata(chunk) {\n debug('ondata');\n- const ret = dest.write(chunk);\n- debug('dest.write', ret);\n- if (ret === false) {... | 2024-12-19T11:49:34 |
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 |
facebook/react | 7909d8eabb7a702618f51e16a351df41aa8da88e | 13eb61d0566bdcb6e41a19e433f66ec2ebf62bde | [Flight] Encode ReadableStream and AsyncIterables (#28847)
This adds support in Flight for serializing four kinds of streams:
- `ReadableStream` with objects as a model. This is a single shot
iterator so you can read it only once. It can contain any value
including Server Components. Chunks are encoded as is so i... | [
{
"path": ".eslintrc.js",
"patch": "@@ -499,7 +499,12 @@ module.exports = {\n DOMHighResTimeStamp: 'readonly',\n EventListener: 'readonly',\n Iterable: 'readonly',\n+ AsyncIterable: 'readonly',\n+ $AsyncIterable: 'readonly',\n+ $AsyncIterator: 'readonly',\n Iterator: 'readonly',\n+ ... | 2024-04-16T16:20:07 |
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 |
nodejs/node | 0675e05a04cd64a1d3b1c9032af5c2e9e2e6ab06 | 756077867b4901377c11abd5840e040f9e0d135e | doc: fix links in `module.md`
PR-URL: https://github.com/nodejs/node/pull/56283
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/module.md",
"patch": "@@ -1159,13 +1159,13 @@ validating the import attributes.\n \n The final value of `format` must be one of the following:\n \n-| `format` | Description | Acceptable types for `source` returned by `load` |\n-| ----------... | 2024-12-19T10:34:42 |
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 |
facebook/react | 0347fcd0073cf529f67a05be86a0545c3efab8e2 | c113503ad131101b19b4a5c1e4639b8588ecd993 | Add on(Caught|Uncaught|Recoverable) opts to RN (#28836)
## Overview
There's currently a bug in RN now that we no longer re-throw errors. The
`showErrorDialog` function in React Native only logs the errors as soft
errors, and never a fatal. RN was depending on the global handler for
the fatal error handling and l... | [
{
"path": "packages/react-native-renderer/src/ReactFabric.js",
"patch": "@@ -101,11 +101,30 @@ function nativeOnCaughtError(\n defaultOnCaughtError(error, errorInfo);\n }\n \n+type NativeRenderOptions = {\n+ onUncaughtError?: (\n+ error: mixed,\n+ errorInfo: {+componentStack?: ?string},\n+ ) => vo... | 2024-04-15T16:03:28 |
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 | 756077867b4901377c11abd5840e040f9e0d135e | 60bd4fd2cc7d59440a8b55199dbc060f82655457 | build: build v8 with -fvisibility=hidden on macOS
V8 should be built with -fvisibility=hidden, otherwise
the resulting binary would contain unnecessary symbols. In
particular, on macOS, this leads to 5000+ weak symbols
resolved at runtime, leading to a startup regression.
On macOS this also reduces the binary size ab... | [
{
"path": "tools/v8_gypfiles/v8.gyp",
"patch": "@@ -41,6 +41,19 @@\n 'AdditionalOptions': ['/utf-8']\n }\n },\n+ 'conditions': [\n+ ['OS==\"mac\"', {\n+ # Hide symbols that are not explicitly exported with V8_EXPORT.\n+ # TODO(joyeecheung): enable it on other platform... | 2024-12-19T03:24:51 |
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 |
facebook/react | c113503ad131101b19b4a5c1e4639b8588ecd993 | 2d128ff041e4cd97f92c0dfe9ce5ab73eab27ae9 | Flush direct streams in Bun (#28837)
<!--
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 a pull request, please make sure ... | [
{
"path": "packages/react-server/src/ReactServerStreamConfigBun.js",
"patch": "@@ -13,6 +13,7 @@ type BunReadableStreamController = ReadableStreamController & {\n end(): mixed,\n write(data: Chunk | BinaryChunk): void,\n error(error: Error): void,\n+ flush?: () => void,\n };\n export type Destination... | 2024-04-15T15:25:08 |
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 |
nodejs/node | e477978dd4d728705e964d19fb81e8c4063275c2 | 0d005119edbeac0f986a67e0c12873f7fd126022 | doc: fix color contrast issue in light mode
Attributes are being highlighted as #f00 on a background of #f2f2f2.
That's a color contrast of 3.98:1, failing to meet the 4.5:1 requirement
of WCAG 2.1 AA. This changes the attribute color to #d00, which has a
color contrast of 5.09:1 meeting the 4.5:1 requirement.
PR-URL... | [
{
"path": "doc/api_assets/hljs.css",
"patch": "@@ -49,7 +49,7 @@\n color: #808080;\n }\n .hljs-attr {\n- color: #f00;\n+ color: #d00;\n }\n .hljs-symbol,\n .hljs-bullet,",
"additions": 1,
"deletions": 1,
"language": "CSS"
}
] | 2024-12-18T16:19:08 |
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 | 2d128ff041e4cd97f92c0dfe9ce5ab73eab27ae9 | d486051de7a77236e729d395a18acac2c5ece35f | React DevTools 5.0.2 -> 5.1.0 (#28840)
Full list of changes:
* Look for a ReactMemoCacheSentinel on state
([gsathya](https://github.com/gsathya) in
[#28831](https://github.com/facebook/react/pull/28831))
* Use use() in the Cache if available
([sebmarkbage](https://github.com/sebmarkbage) in
[#28793](https://gith... | [
{
"path": "packages/react-devtools-core/package.json",
"patch": "@@ -1,6 +1,6 @@\n {\n \"name\": \"react-devtools-core\",\n- \"version\": \"5.0.2\",\n+ \"version\": \"5.1.0\",\n \"description\": \"Use react-devtools outside of the browser\",\n \"license\": \"MIT\",\n \"main\": \"./dist/backend.js\... | 2024-04-15T13:56:57 |
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 |
nodejs/node | 8253290d6019f8594118395301294e77d4d35f57 | 7302b6fa3d0293405bd8ee864871a50ed6fea18b | build: fix missing fp16 dependency in d8 builds
PR-URL: https://github.com/nodejs/node/pull/56266
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "tools/v8_gypfiles/d8.gyp",
"patch": "@@ -21,6 +21,7 @@\n 'v8.gyp:v8_libplatform',\n 'v8.gyp:generate_bytecode_builtins_list',\n 'v8.gyp:v8_abseil',\n+ 'v8.gyp:fp16',\n ],\n # Generated source files need this explicitly:\n 'include_dirs+': [",
"... | 2024-12-17T22:18:32 |
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 | ed4023603632787db6416bee8e85e68d98ad29bd | ba1a9797eebee694f6872e425b3a697c39a17dfc | Fix mistaken "react-server" condition (#28835)
This is a Fizz server. | [
{
"path": "scripts/rollup/bundles.js",
"patch": "@@ -293,7 +293,6 @@ const bundles = [\n bundleTypes: __EXPERIMENTAL__ ? [FB_WWW_DEV, FB_WWW_PROD] : [],\n moduleType: RENDERER,\n entry: 'react-server-dom-fb/src/ReactDOMServerFB.js',\n- condition: 'react-server',\n global: 'ReactDOMServerS... | 2024-04-12T19:53:41 |
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 |
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 |
facebook/react | ba1a9797eebee694f6872e425b3a697c39a17dfc | 7625f0d501bea50efe1e3cfc7208329c18e3369e | Remove `flight-browser` fixture (#28828)
The flight-browser fixtures doesn't make sense. It also uses UMD builds
which are being removed so we'd have to make it use esm.sh or something
and really it just won't work because it needs to be built by webpack to
not error. We could potentially shim the webpack globals ... | [
{
"path": "fixtures/flight-browser/index.html",
"patch": "@@ -1,101 +0,0 @@\n-<!DOCTYPE html>\n-<html style=\"width: 100%; height: 100%; overflow: hidden\">\n- <head>\n- <meta charset=\"utf-8\">\n- <title>Flight Example</title>\n- </head>\n- <body>\n- <h1>Flight Example</h1>\n- <div id=\"cont... | 2024-04-12T16:48:40 |
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 |
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 |
nodejs/node | a73c41c51e7711086b9801afd5e91ae2f96a7694 | 6012a4e9a2733b25a7023baa0a58bef85c9ebc5f | sqlite: aggregate constants in a single property
PR-URL: https://github.com/nodejs/node/pull/56213
Fixes: https://github.com/nodejs/node/issues/56193
Refs: https://github.com/nodejs/node/issues/56193
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Yongsheng Zhan... | [
{
"path": "doc/api/sqlite.md",
"patch": "@@ -482,11 +482,19 @@ exception.\n | `TEXT` | {string} |\n | `BLOB` | {Uint8Array} |\n \n-## SQLite constants\n+## `sqlite.constants`\n \n-The following constants are exported by the `node:sqlite` module.\n+<!-- YAML\n+added: REPLACEME\n+-->... | 2024-12-17T17:36:58 |
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 | 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 | 435415962371adc69e6a7211f7c65a5d72fc609c | adb71739386c1d8800ee80d11713a401ccdc7af8 | Backwards compatibility for string refs on WWW (#28826)
Seeing errors with undefined string ref values when trying to sync
https://github.com/facebook/react/pull/28473
Added a test that reproduces the failing pattern.
@acdlite pushed
https://github.com/facebook/react/pull/28826/commits/a786481ae5702f1966ecdb62... | [
{
"path": "packages/react-dom/src/__tests__/ReactComponent-test.js",
"patch": "@@ -129,6 +129,55 @@ describe('ReactComponent', () => {\n }\n });\n \n+ // @gate !disableStringRefs\n+ it('string refs do not detach and reattach on every render', async () => {\n+ spyOnDev(console, 'error').mockImplem... | 2024-04-11T19:30:37 |
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 |
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 |
nodejs/node | 6012a4e9a2733b25a7023baa0a58bef85c9ebc5f | 5a868b5b30e551d375c73d65013883e6078bba84 | tools: fix `node:` enforcement for docs
PR-URL: https://github.com/nodejs/node/pull/56284
Refs: https://github.com/nodejs/node/pull/56185
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "doc/eslint.config_partial.mjs",
"patch": "@@ -3,7 +3,9 @@ import {\n noRestrictedSyntaxCommonLib,\n requireEslintTool,\n } from '../tools/eslint/eslint.config_utils.mjs';\n-import { builtinModules as builtin } from 'node:module';\n+import { builtinModules } from 'node:module';\n+\n+const buil... | 2024-12-17T14:57:37 |
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 |
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 |
facebook/react | adb71739386c1d8800ee80d11713a401ccdc7af8 | a2582074b84e95f8e9be6d9f51c80f09dd620ad7 | Fix nightly release job for real (#28825) | [
{
"path": "scripts/release/publish-commands/publish-to-npm.js",
"patch": "@@ -19,7 +19,7 @@ const run = async ({cwd, dry, tags, ci}, packageName, otp) => {\n // But for now the easiest way is just to ask if this is expected.\n const {status} = spawnSync('npm', ['view', `${packageName}@${version}`]);\n ... | 2024-04-11T16:28:10 |
nodejs/node | ca96c8dcbee20297c3a771d0b21942df1d87b3ec | 6536978726f1bffa08a03d7b7cb0826960605481 | deps: update libuv to 1.49.2
Fixes: https://github.com/nodejs/node/issues/56137
Refs: https://github.com/nodejs/node/pull/56223
PR-URL: https://github.com/nodejs/node/pull/56224
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com> | [
{
"path": "deps/uv/AUTHORS",
"patch": "@@ -588,3 +588,5 @@ Raihaan Shouhell <raihaanhimself@gmail.com>\n Rialbat <miha-wead@mail.ru>\n Adam <adam@NetBSD.org>\n Poul T Lomholt <ptlomholt@users.noreply.github.com>\n+dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\n+Thad House <ThadHouse@us... | 2024-12-17T13:06:51 |
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 |
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 |
facebook/react | a2582074b84e95f8e9be6d9f51c80f09dd620ad7 | 608edcc90a9e1dcee896c6c93cb381d0a61aac37 | Fix nightly release job (#28824) | [
{
"path": "scripts/release/publish-commands/publish-to-npm.js",
"patch": "@@ -2,10 +2,11 @@\n \n 'use strict';\n \n+const {spawnSync} = require('child_process');\n const {exec} = require('child-process-promise');\n const {readJsonSync} = require('fs-extra');\n const {join} = require('path');\n-const {confir... | 2024-04-11T16:08:13 |
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 | 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 |
nodejs/node | b171afefb61c6c0f54fe1421438ffffbdd0c9a33 | c39875a32df75b08b457d7fed46eef1c23e5a31c | deps: define V8_PRESERVE_MOST as no-op on Windows
It's causing linker errors with node.lib in node-gyp and potentially
breaks other 3rd party tools
PR-URL: https://github.com/nodejs/node/pull/56238
Refs: https://github.com/nodejs/node/pull/55784
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M ... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.11',\n+ 'v8_embedder_string': '-node.12',\n \n ##### V8 defaults for Node.js #####\n... | 2024-12-16T10:11:22 |
facebook/react | 608edcc90a9e1dcee896c6c93cb381d0a61aac37 | da69b6af9697b8042834644b14d0e715d4ace18a | [tests] add `assertConsole<method>Dev` helpers (#28732)
## Overview
**Internal React repo tests only**
Depends on https://github.com/facebook/react/pull/28710
Adds three new assertions:
- `assertConsoleLogDev`
- `assertConsoleWarnDev`
- `assertConsoleErrorDev`
These will replace this pattern:
```js
aw... | [
{
"path": "packages/internal-test-utils/ReactInternalTestUtils.js",
"patch": "@@ -10,8 +10,14 @@ import {diff} from 'jest-diff';\n import {equals} from '@jest/expect-utils';\n import enqueueTask from './enqueueTask';\n import simulateBrowserEventDispatch from './simulateBrowserEventDispatch';\n-\n+import {\... | 2024-04-11T12:19:46 |
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 |
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 |
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 |
nodejs/node | c39875a32df75b08b457d7fed46eef1c23e5a31c | bc64114ebfef9360b5b78e3119807d05c2c940a0 | doc: clarify util.aborted resource usage
PR-URL: https://github.com/nodejs/node/pull/55780
Fixes: https://github.com/nodejs/node/issues/55340
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Jason Zhang <x... | [
{
"path": "doc/api/util.md",
"patch": "@@ -2248,39 +2248,55 @@ added:\n > Stability: 1 - Experimental\n \n * `signal` {AbortSignal}\n-* `resource` {Object} Any non-null entity, reference to which is held weakly.\n+* `resource` {Object} Any non-null object tied to the abortable operation and held weakly.\n+ ... | 2024-12-15T21:56:47 |
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 |
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 |
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 |
nodejs/node | e7a397a773e0cca01184c66f8807eada4035571f | 86c29253f85e673ec491d1d310a8459248f6e69a | util: fix Latin1 decoding to return string output
PR-URL: https://github.com/nodejs/node/pull/56222
Fixes: https://github.com/nodejs/node/issues/56219
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Daniel Lemire <daniel@lemire.me>
Reviewe... | [
{
"path": "src/encoding_binding.cc",
"patch": "@@ -286,9 +286,11 @@ void BindingData::DecodeLatin1(const FunctionCallbackInfo<Value>& args) {\n env->isolate(), \"The encoded data was not valid for encoding latin1\");\n }\n \n- Local<Object> buffer_result =\n- node::Buffer::Copy(env, result.c... | 2024-12-14T18:09:49 |
rust-lang/rust | fba1ca8b9f841ea5e43a0790e2e45576a74c9541 | 86d0e71947d0309723e3546869e2599ae28549ab | fix: correctly parenthesize inverted condition in convert_if_to_bool_then
The convert_if_to_bool_then assist was producing incorrect code when
the Some branch was in the else arm and the condition was a method call
expression (e.g. is_empty()).
Before:
if test.is_empty() { None } else { Some(()) }
was incorrectly... | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/convert_bool_then.rs",
"patch": "@@ -102,6 +102,11 @@ pub(crate) fn convert_if_to_bool_then(acc: &mut Assists, ctx: &AssistContext<'_>\n ast::Expr::BlockExpr(block) => unwrap_trivial_block(block),\n e => e,\n ... | 2026-02-21T05:33:20 |
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 |
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 |
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 |
nodejs/node | 656dd5d81701a0889971bd313ba014c69983deae | 414c5ed4ace6cb5e2235af99284007f87983f3f6 | doc: fix 'which' to 'that' and add commas
PR-URL: https://github.com/nodejs/node/pull/56216
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il> | [
{
"path": "doc/contributing/technical-priorities.md",
"patch": "@@ -21,11 +21,11 @@ on October 1st 2022.\n \n _Present in: 2021_\n \n-Base HTTP support is a key component of modern cloud-native applications\n+Base HTTP support is a key component of modern cloud-native applications,\n and built-in support wa... | 2024-12-14T10:07:58 |
facebook/react | dc6a7e01e1d2fa5eb4974f9bb66e9e8fb40f6ef8 | 3f947b1b468a2a2a419227ce26842c4b6ba31082 | [Float] Don't preload images inside `<noscript>` (#28815)
`<noscript>` scopes should be considered inert from the perspective of
Fizz since we assume they'll only be used in rare and adverse
circumstances. When we added preload support for img tags we did not
include the noscript scope check in the opt-out for prel... | [
{
"path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js",
"patch": "@@ -2762,7 +2762,7 @@ function pushImg(\n props: Object,\n resumableState: ResumableState,\n renderState: RenderState,\n- pictureTagInScope: boolean,\n+ pictureOrNoScriptTagInScope: boolean,\n ): null {\n const {sr... | 2024-04-10T19:15:04 |
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 |
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 |
nodejs/node | 414c5ed4ace6cb5e2235af99284007f87983f3f6 | 26d0559f14c904ccae0ce785ca7ed8b63edd4044 | module: add prefix-only modules to `module.builtinModules`
Fixes https://github.com/nodejs/node/issues/42785
PR-URL: https://github.com/nodejs/node/pull/56185
Fixes: https://github.com/nodejs/node/issues/42785
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Revi... | [
{
"path": "doc/api/module.md",
"patch": "@@ -21,15 +21,17 @@ added:\n - v9.3.0\n - v8.10.0\n - v6.13.0\n+changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/56185\n+ description: The list now also contains prefix-only modules.\n -->\n \n * {string\\[]}\n \n A list of... | 2024-12-14T07:35:00 |
facebook/react | c836a0158b8720fa368574068dfca925d28430b5 | 6e65445911e15e51a549fe456a428d342ba745e5 | Fix usage of renamed React internals
ghstack-source-id: d646c84815c324bd490584d34488a73f5e39d589
Pull Request resolved: https://github.com/facebook/react-forget/pull/2845 | [
{
"path": "compiler/packages/react-forget-runtime/src/index.ts",
"patch": "@@ -9,14 +9,12 @@\n \n import * as React from \"react\";\n \n-const {\n- // @ts-ignore\n- __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED: {\n- ReactCurrentDispatcher,\n- },\n- useRef,\n- useEffect,\n-} = React;\n+const { ... | 2024-04-11T15:10:42 |
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 |
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 | 6e65445911e15e51a549fe456a428d342ba745e5 | ec05176fb3950f905f16616934c560d4150130d3 | Fix playground e2e test for real
ghstack-source-id: 1b52cb312a5f26e8e058bfe4a29b586ffaeb25d7
Pull Request resolved: https://github.com/facebook/react-forget/pull/2843 | [
{
"path": "compiler/apps/playground/__tests__/e2e/page.spec.ts",
"patch": "@@ -6,30 +6,44 @@\n */\n \n import { expect, test } from \"@playwright/test\";\n+import { encodeStore, type Store } from \"../../lib/stores\";\n \n-const delay = 50;\n+const STORE: Store = {\n+ source: `export default function Test... | 2024-04-11T16:13:59 |
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 |
nodejs/node | 26d0559f14c904ccae0ce785ca7ed8b63edd4044 | 24841561e0c9795757a1f7d70273c8401f7555d7 | doc: fix winget config path
PR-URL: https://github.com/nodejs/node/pull/56233
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Jason Zhang <xzha4350@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> | [
{
"path": "BUILDING.md",
"patch": "@@ -683,7 +683,7 @@ easily. These files will install the following\n To install Node.js prerequisites from Powershell Terminal:\n \n ```powershell\n-winget configure .\\configuration.dsc.yaml\n+winget configure .\\configurations\\configuration.dsc.yaml\n ```\n \n Alternati... | 2024-12-13T20:16:55 |
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 |
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 |
rust-lang/rust | ca3d3b7f719defbc5009ddc0ee56ab55f9966b64 | aa2da37260def88070d1c6d3567b605d7677a8fa | fix: remove redundant comment | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/generate_function.rs",
"patch": "@@ -146,7 +146,7 @@ fn gen_method(acc: &mut Assists, ctx: &AssistContext<'_>) -> Option<()> {\n if !is_editable_crate(target_module.krate(ctx.db()), ctx.db()) {\n return None;\n }\n- //Chan... | 2026-02-21T01:54:22 |
facebook/react | ec05176fb3950f905f16616934c560d4150130d3 | 9cdd6b243e8e633c4322424cd4b963e03819b1f9 | Make string values for config case-insensitive
Fixes a tiny inconsistency with compiler options where one was all
uppercase and one all lowercase by normalizing to lowercase regardless
of the casing of the user's config.
ghstack-source-id: fe60a3259de89a1b3fdd7475950e16e96cc57f6b
Pull Request resolved: https://github... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Babel/RunReactForgetBabelPlugin.ts",
"patch": "@@ -18,7 +18,7 @@ export function runReactForgetBabelPlugin(\n text: string,\n file: string,\n language: \"flow\" | \"typescript\",\n- options: PluginOptions | null,\n+ options: Partial<PluginOp... | 2024-04-11T14:45:35 |
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 |
nodejs/node | 938a581b4da945a468da5c423c4814be64c5bc97 | 95912f6ec059e6564cde3c3993ea25d48637499a | report: fix typos in report keys and bump the version
Replace "kbytes" with "bytes" in `PrintSystemInformation()` in
`src/node_report.cc`, as RLIMIT_DATA, RLIMIT_RSS, and RLIMIT_AS are
given in bytes.
The report version is bumped from 4 to 5.
Refs: https://www.ibm.com/docs/en/aix/7.3?topic=k-kgetrlimit64-kernel-servi... | [
{
"path": "doc/api/report.md",
"patch": "@@ -35,7 +35,7 @@ is provided below for reference.\n ```json\n {\n \"header\": {\n- \"reportVersion\": 4,\n+ \"reportVersion\": 5,\n \"event\": \"exception\",\n \"trigger\": \"Exception\",\n \"filename\": \"report.20181221.005011.8974.0.001.json\"... | 2024-12-13T11:28:30 |
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 | f4dcfa2e7f0f354220114069bc45c867cd2ee36f | c8d56aa26a0061c02aa23f337041c7cf72ccccde | fix: offer block `.let` in ref-expr in match arm
Example
---
```rust
fn main() {
match 2 {
bar => &bar.l$0
}
}
```
**Before this PR**
```text
sn deref *expr
sn match match expr {}
```
**After this PR**
```text
sn deref *expr
sn let let
sn letm let mut
sn match mat... | [
{
"path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/postfix.rs",
"patch": "@@ -16,7 +16,7 @@ use itertools::Itertools;\n use stdx::never;\n use syntax::{\n SmolStr,\n- SyntaxKind::{BLOCK_EXPR, EXPR_STMT, STMT_LIST},\n+ SyntaxKind::{EXPR_STMT, STMT_LIST},\n T, TextRange, Te... | 2026-02-17T15:09:29 |
vercel/next.js | 7a43540b0dcb3ab2ba0a9b195801c9904cce9d6f | 70ece6ef7856c816ee3e200b62228d44286376c0 | cna: fix typo (#83121)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributors
### Improving Documentation... | [
{
"path": "packages/create-next-app/templates/app-api/ts/gitignore",
"patch": "@@ -29,7 +29,7 @@ npm-debug.log*\n yarn-debug.log*\n yarn-error.log*\n \n-# env files (can opt-in for commiting if needed)\n+# env files (can opt-in for committing if needed)\n .env*\n \n # vercel",
"additions": 1,
"delet... | 2025-09-08T20:06:21 |
facebook/react | 9cdd6b243e8e633c4322424cd4b963e03819b1f9 | 200b0f233378f8450fc3078c6200d56cc720f2ea | Fix playground e2e test
ghstack-source-id: 3904ff9beea21ffbb79a6a15fcfbb72f04a2d170
Pull Request resolved: https://github.com/facebook/react-forget/pull/2842 | [
{
"path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/user-input.txt",
"patch": "@@ -0,0 +1,13 @@\n+function TestComponent(t0) {\n+ const $ = useMemoCache(2);\n+ const { x } = t0;\n+ let t1;\n+ if ($[0] !== x) {\n+ t1 = <Button>{x}</Button>;\n+ $[0] = x;\n+ $[1] = t1;\n+ ... | 2024-04-10T22:17:38 |
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 | e698bd0943dfd5000a4bff3d580aa5bc3d6cf7a3 | 96cd2a6ec32917f430444904ab13239564480b1a | test: remove exludes for sea tests on PPC
The referenced issue is closed as having been
fixed, so the tests should run ok. Unexclude them.
Signed-off-by: Michael Dawson <midawson@redhat.com>
PR-URL: https://github.com/nodejs/node/pull/56217
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: James M Snell <ja... | [
{
"path": "test/sequential/sequential.status",
"patch": "@@ -52,14 +52,3 @@ test-watch-mode-inspect: SKIP\n [$arch==s390x]\n # https://github.com/nodejs/node/issues/41286\n test-performance-eventloopdelay: PASS, FLAKY\n-\n-[$system==linux && $arch==ppc64]\n-# https://github.com/nodejs/node/issues/50740\n-te... | 2024-12-12T23:05:01 |
rust-lang/rust | d6ff921cd940e6500f4e477c164627e129535b72 | b6bed6f2d9f27e15d425958bbd288138ecdff61c | Fixed ByteStr not padding within its Display trait when no specific alignment is not mentioned (e.g. ':10' instead of ':<10', ':>10', or ':^1') | [
{
"path": "library/core/src/bstr/mod.rs",
"patch": "@@ -174,39 +174,38 @@ impl fmt::Debug for ByteStr {\n #[unstable(feature = \"bstr\", issue = \"134915\")]\n impl fmt::Display for ByteStr {\n fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {\n- fn fmt_nopad(this: &ByteStr, f: &mut fmt:... | 2026-02-19T19:53:10 |
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 |
vercel/next.js | cdefea9874423d5f54faa2481ecd1df32bd5e352 | 17d80397814086029b8b22269dd7f5dda9eca4f2 | fix: transpile-config should await import before return (#83566)
The fallback didn't work because it didn't await the import when
returning.
x-ref:
https://github.com/vercel/next.js/actions/runs/17548458762/job/49837846122
---------
Co-authored-by: Hendrik Liebau <mail@hendrik-liebau.de> | [
{
"path": "packages/next/src/build/next-config-ts/transpile-config.ts",
"patch": "@@ -123,7 +123,8 @@ export async function transpileConfig({\n // Value is 'strip' or 'transform' based on how the feature is enabled.\n // https://nodejs.org/api/process.html#processfeaturestypescript\n ... | 2025-09-08T15:03:41 |
facebook/react | 3f947b1b468a2a2a419227ce26842c4b6ba31082 | 870e4045ab67020e9cc0f0940d46db7bbbffad3b | [tests] Assert scheduler log empty in internalAct (#28737)
We should force `assertLog` to be called before each `act` block to
ensure the queue is empty.
Requires fixing tests:
- https://github.com/facebook/react/pull/28745
- https://github.com/facebook/react/pull/28758
- https://github.com/facebook/react/pull/... | [
{
"path": "packages/internal-test-utils/internalAct.js",
"patch": "@@ -19,6 +19,7 @@ import type {Thenable} from 'shared/ReactTypes';\n import * as Scheduler from 'scheduler/unstable_mock';\n \n import enqueueTask from './enqueueTask';\n+import {diff} from 'jest-diff';\n \n export let actingUpdatesScopeDept... | 2024-04-10T18:13:46 |
rust-lang/rust | 7c011122e9053f6f71b297cd69ad9d2422600f4c | fd20f16ffcfc9d19ae191ebef7dbc9469ad1d1c6 | Fix copy_and_clone.rs | [
{
"path": "tests/mir-opt/pre-codegen/copy_and_clone.rs",
"patch": "@@ -1,4 +1,3 @@\n-//@ [COPY] compile-flags: --cfg=copy\n //@ revisions: COPY CLONE\n \n // Test case from https://github.com/rust-lang/rust/issues/128081.",
"additions": 0,
"deletions": 1,
"language": "Rust"
}
] | 2026-02-20T21:18:10 |
Subsets and Splits
Assembly Language GitHub Issues
Retrieves a sample of assembly-language related commits with their details, but doesn't provide meaningful analysis or patterns beyond basic filtering.
Swift Compiler Issues Analysis
Retrieves all training data for the Swift programming language repository, providing basic filtering but offering limited analytical insight beyond identifying relevant code examples.