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 | 4d133b0aeb1da1a376ef533271f2c8ea289639bc | dcdb2e18d6c7faadc56c22d4087affd0d29cab48 | docs: fix a typo in `static-exports.mdx` (#80541)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributors
... | [
{
"path": "docs/01-app/02-guides/static-exports.mdx",
"patch": "@@ -1,5 +1,5 @@\n ---\n-title: How to create an static export of your Next.js application\n+title: How to create a static export of your Next.js application\n nav_title: Static Exports\n description: Next.js enables starting as a static site or... | 2025-06-16T11:39:12 |
golang/go | 0312e31ed197b3bf1434e8dbb283f0d2374d7457 | bda9f85e5cb57d64e9ff8ef39f0d5222c5ceeea0 | net: fix parsing of interfaces on plan9 without associated devices
Fixes #72060
Updates #39908
Change-Id: I7d5bda1654753acebc8aa9937d010b41c5722b36
Reviewed-on: https://go-review.googlesource.com/c/go/+/654055
Reviewed-by: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acco... | [
{
"path": "src/net/interface_plan9.go",
"patch": "@@ -57,6 +57,17 @@ func readInterface(i int) (*Interface, error) {\n \t}\n \n \tfields := getFields(line)\n+\n+\t// If the interface has no device file then we see two spaces between \"device\" and\n+\t// \"maxtu\" and and getFields treats the two spaces as ... | 2025-03-02T04:34:45 |
rust-lang/rust | 724606d3491faff9a4edb1b88ec7c3b1b4af923e | 8d2811a7c312135c832432af94953c16cdf97f4c | add error variant for cancelled expansion | [
{
"path": "src/tools/rust-analyzer/crates/proc-macro-srv-cli/src/main_loop.rs",
"patch": "@@ -3,11 +3,11 @@ use proc_macro_api::{\n ProtocolFormat, bidirectional_protocol::msg as bidirectional, legacy_protocol::msg as legacy,\n version::CURRENT_API_VERSION,\n };\n+use std::panic::panic_any;\n use st... | 2026-01-09T21:34:02 |
facebook/react | 794b770dbd6be48d42438ea76911d32c37c7dd6e | 254cbdbd6d851a30bf3b649a6cb7c52786766fa4 | fix[devtools]: check if fiber is unmounted before trying to highlight (#26983)
For React Native environment, we sometimes spam the console with
warnings `"Could not find Fiber with id ..."`.
This is an attempt to fix this or at least reduce the amount of such
potential warnings being thrown.
Now checking if fi... | [
{
"path": "packages/react-devtools-shared/src/backend/legacy/renderer.js",
"patch": "@@ -1101,6 +1101,10 @@ export function attach(\n \n function unpatchConsoleForStrictMode() {}\n \n+ function hasFiberWithId(id: number): boolean {\n+ return idToInternalInstanceMap.has(id);\n+ }\n+\n return {\n ... | 2023-06-22T07:51:24 |
electron/electron | 679ce632a99d35e42ee3c42be5cb05401bd2af77 | 629c54ba36fcca787cd3ac69924a2527ba131bfc | build: fixup appveyor image for release (#36429)
* build: make sure symstore is in the PATH when baking an image
* build: update to use fixed baked image
* cleanup sdk install | [
{
"path": "appveyor.yml",
"patch": "@@ -25,7 +25,7 @@\n \n version: 1.0.{build}\n build_cloud: electronhq-16-core\n-image: e-110.0.5415.0\n+image: e-110.0.5415.0-fix\n environment:\n GIT_CACHE_PATH: C:\\Users\\appveyor\\libcc_cache\n ELECTRON_OUT_DIR: Default",
"additions": 1,
"deletions": 1,
... | 2022-11-22T21:57:49 |
vercel/next.js | dcdb2e18d6c7faadc56c22d4087affd0d29cab48 | 3efa94ec5bdc37b05e069b1cfc9082b83e5afeac | Fix small grammar error in searchParams section (#80548)
<!-- 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 Contrib... | [
{
"path": "docs/01-app/05-api-reference/03-file-conventions/page.mdx",
"patch": "@@ -60,7 +60,7 @@ export default async function Page({ params }) {\n | `app/shop/[category]/[item]/page.js` | `/shop/1/2` | `Promise<{ category: '1', item: '2' }>` |\n | `app/shop/[...slug]/page.js` | `/shop/1/2` | `Pro... | 2025-06-16T11:38:21 |
golang/go | 68949049742f737ac4d54f48b1291f3b73d1b4f6 | 64feded8afd7280f533e09138efa31b6772e34ce | cmd/go/internal/modindex: clean modroot and pkgdir for openIndexPackage
GetPackage is sometimes called with a modroot or pkgdir that ends with a
path separator, and sometimes without. Clean them before passing them to
openIndexPackage to deduplicate calls to mcache.Do and action entry
files.
This shouldn't affect #71... | [
{
"path": "src/cmd/go/internal/modindex/read.go",
"patch": "@@ -146,6 +146,8 @@ func GetPackage(modroot, pkgdir string) (*IndexPackage, error) {\n \tif strings.Contains(filepath.ToSlash(pkgdir), \"internal/fips140/v\") {\n \t\treturn nil, errFIPS140\n \t}\n+\tmodroot = filepath.Clean(modroot)\n+\tpkgdir = f... | 2025-02-25T17:51:04 |
rust-lang/rust | 8d2811a7c312135c832432af94953c16cdf97f4c | 489245903e30492055a479b7e36b8efa505207e6 | remove repititive error block in callbacks | [
{
"path": "src/tools/rust-analyzer/crates/proc-macro-srv-cli/src/main_loop.rs",
"patch": "@@ -197,19 +197,25 @@ impl<'a> ProcMacroClientHandle<'a> {\n }\n }\n \n-impl proc_macro_srv::ProcMacroClientInterface for ProcMacroClientHandle<'_> {\n+fn handle_failure(failure: Result<bidirectional::SubResponse, ... | 2026-01-09T21:33:36 |
facebook/react | 254cbdbd6d851a30bf3b649a6cb7c52786766fa4 | e3fb7c1de1ed375e32397b3502a30b8ae4c2db9f | Add a temporary internal option to disable double useEffect in legacy strict mode (#26914)
<!--
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.
... | [
{
"path": "packages/react-reconciler/src/ReactFiber.js",
"patch": "@@ -39,6 +39,7 @@ import {\n enableDebugTracing,\n enableFloat,\n enableHostSingletons,\n+ enableDO_NOT_USE_disableStrictPassiveEffect,\n } from 'shared/ReactFeatureFlags';\n import {NoFlags, Placement, StaticMask} from './ReactFiberF... | 2023-06-21T18:14:57 |
nodejs/node | 7e6d92c485cbffdb7bec9cd6d57c824bda8a5913 | b9ad94b6dadc2c34e7183e2b5f16702132d97c8d | tools: update ESLint to v9 and use flat config
Closes: https://github.com/nodejs/node/issues/52567
PR-URL: https://github.com/nodejs/node/pull/52780
Fixes: https://github.com/nodejs/node/issues/52567
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Antoine ... | [
{
"path": ".eslintignore",
"patch": "@@ -1,15 +0,0 @@\n-node_modules\n-lib/punycode.js\n-test/addons/??_*\n-test/fixtures\n-test/message/esm_display_syntax_error.mjs\n-tools/icu\n-tools/lint-md/lint-md.mjs\n-tools/github_reporter\n-benchmark/tmp\n-benchmark/fixtures\n-doc/**/*.js\n-doc/changelogs/CHANGELOG_... | 2024-05-23T19:45:18 |
vercel/next.js | 3efa94ec5bdc37b05e069b1cfc9082b83e5afeac | 64702a9e422d42034a714ae40a8514d7911d0150 | docs: fix typo (#80549)
<!-- 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 Documentatio... | [
{
"path": "docs/01-app/02-guides/forms.mdx",
"patch": "@@ -111,7 +111,7 @@ export async function updateUser(userId, formData) {}\n \n ## Form validation\n \n-Forms can be validate on the client or server.\n+Forms can be validated on the client or server.\n \n - For **client-side validation**, you can use th... | 2025-06-16T11:33:58 |
electron/electron | 629c54ba36fcca787cd3ac69924a2527ba131bfc | 2751c2b07f52b65822dc1c1f25687f4f4770d01f | feat: add support for WebUSB (#36289)
* feat: add support for WebUSB
* fixup for gn check
* fixup gn check on Windows
* Apply review feedback
Co-authored-by: Charles Kerr <charles@charleskerr.com>
* chore: address review feedback
* chore: removed unneeded code
* Migrate non-default ScopedObservati... | [
{
"path": "docs/api/session.md",
"patch": "@@ -239,7 +239,7 @@ app.whenReady().then(() => {\n const selectedDevice = details.deviceList.find((device) => {\n return device.vendorId === '9025' && device.productId === '67'\n })\n- callback(selectedPort?.deviceId)\n+ callback(selectedDevice?... | 2022-11-22T21:50:32 |
golang/go | 1dafccaaf324547c92fbba40e343d9a142f106b4 | 6e8d7a113cc0f2cf59e0f67f86476cb003881a68 | runtime: increase timeout in TestSpuriousWakeupsNeverHangSemasleep
This change tries increasing the timeout in
TestSpuriousWakeupsNeverHangSemasleep. I'm not entirely sure of the
mechanism, but GODEBUG=gcstoptheworld=2 and GODEBUG=gccheckmark=1 can
cause this test to fail at it's regular timeout. It does not seem to
i... | [
{
"path": "src/runtime/semasleep_test.go",
"patch": "@@ -72,14 +72,6 @@ func TestSpuriousWakeupsNeverHangSemasleep(t *testing.T) {\n \t\tclose(doneCh)\n \t}()\n \n-\t// Wait for an arbitrary timeout longer than one second. The subprocess itself\n-\t// attempts to sleep for one second, but if the machine run... | 2025-02-26T23:11:29 |
rust-lang/rust | 26bc8cbc7797d8a988c5b096b14f121dac22035a | d2ac252cf258f7d2d1962e31382e17363c8ff7ee | make sure we panic in callback so the srv panics and stops | [
{
"path": "src/tools/rust-analyzer/crates/proc-macro-srv-cli/src/main_loop.rs",
"patch": "@@ -10,7 +10,7 @@ use std::{\n \n use legacy::Message;\n \n-use proc_macro_srv::{EnvSnapshot, SpanId};\n+use proc_macro_srv::{EnvSnapshot, ProcMacroClientError, SpanId};\n \n struct SpanTrans;\n \n@@ -172,27 +172,43 @@... | 2026-01-06T04:13:19 |
facebook/react | e3fb7c1de1ed375e32397b3502a30b8ae4c2db9f | d1c8cdae3b20a670ee91b684e8e0ad0c400ae51c | feat[devtools]: support x_google_ignoreList source maps extension (#26951)
## Summary
This was originally implemented by Mengdi @mondaychen in
https://github.com/facebook/react/pull/26506.
Because we patch console methods (to append components stack and some
other features), errors in console will include
`reac... | [
{
"path": "packages/react-devtools-extensions/package.json",
"patch": "@@ -39,6 +39,7 @@\n \"chrome-launch\": \"^1.1.4\",\n \"crx\": \"^5.0.0\",\n \"css-loader\": \"^1.0.1\",\n+ \"devtools-ignore-webpack-plugin\": \"^0.1.1\",\n \"file-loader\": \"^6.1.0\",\n \"filesize\": \"^6.0.1\",\... | 2023-06-21T11:36:48 |
nodejs/node | b9ad94b6dadc2c34e7183e2b5f16702132d97c8d | 98a1ecfc7b5e675bfe05e3c0869a841e3d07e472 | src: fix external module env and kDisableNodeOptionsEnv
PR-URL: https://github.com/nodejs/node/pull/52905
Fixes: https://github.com/nodejs/node/issues/51227
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> | [
{
"path": "doc/api/cli.md",
"patch": "@@ -2870,6 +2870,13 @@ equivalent to using the `--redirect-warnings=file` command-line flag.\n added:\n - v13.0.0\n - v12.16.0\n+changes:\n+ - version:\n+ - REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/52905\n+ description:\n+ Remove the po... | 2024-05-23T18:41:55 |
vercel/next.js | 2c95fefdacdeed440893273d34f956fb8d36e8f8 | c6775aef908f4a85ffdf3f8d25cc038b937bbc15 | [dynamicIO] Use filled Resume Data Cache for final-phase prerenders (#79743)
When a route with dynamic params is prerendered using defined params
from `generateStaticParams`, the filled Resume Data Cache is now used
for the final-phase prerender of the matching optional fallback shell.
This ensures that the fallback ... | [
{
"path": "packages/next/src/build/templates/app-page.ts",
"patch": "@@ -365,9 +365,9 @@ export async function handler(\n \n // If the warmup is successful, we should use the resume data\n // cache from the warmup.\n- if (warmup.metadata.devRenderResumeDataCache) {\n- ... | 2025-06-14T13:19:32 |
golang/go | d31c805535f3fde95646ee4d87636aaaea66847b | 01351209225d609f8012e2406550211137716727 | net/http: reject newlines in chunk-size lines
Unlike request headers, where we are allowed to leniently accept
a bare LF in place of a CRLF, chunked bodies must always use CRLF
line terminators. We were already enforcing this for chunk-data lines;
do so for chunk-size lines as well. Also reject bare CRs anywhere
other... | [
{
"path": "src/net/http/internal/chunked.go",
"patch": "@@ -164,21 +164,34 @@ func readChunkLine(b *bufio.Reader) ([]byte, error) {\n \t\t}\n \t\treturn nil, err\n \t}\n+\n+\t// RFC 9112 permits parsers to accept a bare \\n as a line ending in headers,\n+\t// but not in chunked encoding lines. See https://w... | 2025-02-26T21:40:00 |
rust-lang/rust | d2ac252cf258f7d2d1962e31382e17363c8ff7ee | fb2cb46ea873f90c5a0a237772d4a42a2b7e4188 | add proc-macro-client error variant | [
{
"path": "src/tools/rust-analyzer/crates/proc-macro-srv/src/lib.rs",
"patch": "@@ -96,6 +96,14 @@ impl<'env> ProcMacroSrv<'env> {\n }\n }\n \n+#[derive(Debug)]\n+pub enum ProcMacroClientError {\n+ Cancelled { reason: String },\n+ Io(std::io::Error),\n+ Protocol(String),\n+ Eof,\n+}\n+\n pub... | 2026-01-06T04:03:07 |
facebook/react | 9c033a481d41252d88f05668723f7e061d37f562 | e7e67f335adea5a24ff59a467b22b92702350a5e | [eslint-plugin] Only report on InvalidInput errors
Invariants aren't actionable by users, so we can omit reporting them in eslint
as errors (while continuing to throw in the compiler itself) | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/index.ts",
"patch": "@@ -19,7 +19,7 @@ export {\n parsePluginOptions,\n run,\n } from \"./Entrypoint\";\n-export { Effect, Hook, ValueKind, printHIR } from \"./HIR\";\n+export { Effect, Hook, SourceLocation, ValueKind, printHIR } from \".... | 2023-06-22T14:18:43 |
electron/electron | c6d6af255109b9fc0c48f245c908d87830c26620 | b71cccb0d657919ac80d30fde646b0260425f1a1 | chore: bump node to v18.12.1 (main) (#36356)
* chore: bump node in DEPS to v18.12.1
* chore: update patches
* chore: add missing <algorithm> include
* src: add detailed embedder process initialization AP
https://github.com/nodejs/node/pull/44121
* chore: update gn build files
* dns: support dns modul... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '110.0.5415.0',\n 'node_version':\n- 'v18.10.0',\n+ 'v18.12.1',\n 'nan_version':\n '16fa32231e2ccd89d2804b3f765319128b20c4ac',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2022-11-21T15:55:01 |
nodejs/node | c137d6eb31013f2785db7bcff66bdb8a68799e2b | 124aed22d54e7ec1ff110a87fbb7c481b7dbcc93 | src: fix execArgv in worker
PR-URL: https://github.com/nodejs/node/pull/53029
Fixes: https://github.com/nodejs/node/issues/53011
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "src/node_worker.cc",
"patch": "@@ -590,9 +590,8 @@ void Worker::New(const FunctionCallbackInfo<Value>& args) {\n exec_argv.push_back(arg_string);\n }\n } else {\n- exec_argv_out = env->exec_argv();\n exec_argv.insert(\n- exec_argv.end(), exec_argv_out.begin()... | 2024-05-23T15:27:50 |
vercel/next.js | 16cb4c5360a7f27cc3d89c0e03840e26511888f2 | 8e0c32228be83d3acf8ffced5c61e4320440c5db | fix(turbopack): Fix config caching for turbopack + React Compiler (#80498)
### What?
Modify the caching logic to include the whole filename when compiling with the React Compiler.
### Why?
When RC is enabled, we cannot cache the config merely using the extension. | [
{
"path": "packages/next/src/build/babel/loader/get-config.ts",
"patch": "@@ -37,27 +37,31 @@ interface CharacteristicsGermaneToCaching {\n isPageFile: boolean\n isNextDist: boolean\n hasModuleExports: boolean\n- fileExt: string\n+ fileNameOrExt: string\n }\n \n const fileExtensionRegex = /\\.([a-z]... | 2025-06-13T20:24:02 |
facebook/react | e7e67f335adea5a24ff59a467b22b92702350a5e | e9faa5b90d8e5f979216e725eec2d4ca91f78807 | Use CompilerError.invariant consistently
This PR updates all current usages of invariant to CompilerError.invariant along
with any available locs | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -8,7 +8,6 @@\n import { NodePath, Scope } from \"@babel/traverse\";\n import * as t from \"@babel/types\";\n import { Expression } from \"@babel/types\";\n-import invariant from \"invariant\";\n import { Compile... | 2023-06-22T14:18:42 |
electron/electron | 9c48992e21c64f25391b7057c85f35a61ba5ff08 | 7529ebfe0e20ff0456aaab29c22346e35cf074ce | chore: fix dangling promise in npm install (#36379)
* Fix dangling promise introduced in #33979
* fix reject in callback
* simplify code
Co-authored-by: Black-Hole <158blackhole@gmail.com>
Co-authored-by: Black-Hole <158blackhole@gmail.com> | [
{
"path": "npm/install.js",
"patch": "@@ -70,29 +70,21 @@ function isInstalled () {\n \n // unzips and makes path.txt point at the correct executable\n function extractFile (zipPath) {\n- return new Promise((resolve, reject) => {\n- const distPath = process.env.ELECTRON_OVERRIDE_DIST_PATH || path.join(_... | 2022-11-18T23:21:11 |
golang/go | 01351209225d609f8012e2406550211137716727 | 2b737073587cb8f82d41fa96fdec9e56a5bac8ba | cmd/go: update c document
Fixes: #11875
Change-Id: I0ea2c3e94d7d1647c2aaa3d488ac3c1f5fb6cb18
GitHub-Last-Rev: 7512b33f055aa225d365d6c949a53778834e8dcd
GitHub-Pull-Request: golang/go#71966
Reviewed-on: https://go-review.googlesource.com/c/go/+/652675
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -2255,7 +2255,9 @@\n // interfacing between languages. For information on SWIG see\n // https://swig.org/. When running go build, any file with a .swig\n // extension will be passed to SWIG. Any file with a .swigcxx extension\n-// will be passed to SWIG with t... | 2025-02-27T00:43:12 |
nodejs/node | 124aed22d54e7ec1ff110a87fbb7c481b7dbcc93 | 007b93437985825ccf8ef6cbd9ce6122323c90b8 | doc: add StefanStojanovic to collaborators
Fixes: https://github.com/nodejs/node/issues/52929
PR-URL: https://github.com/nodejs/node/pull/53118
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> | [
{
"path": "README.md",
"patch": "@@ -433,6 +433,8 @@ For information about the governance of the Node.js project, see\n **Paolo Insogna** <<paolo@cowtech.it>> (he/him)\n * [srl295](https://github.com/srl295) -\n **Steven R Loomis** <<srl295@gmail.com>>\n+* [StefanStojanovic](https://github.com/StefanSto... | 2024-05-23T14:28:18 |
vercel/next.js | 711b1bad5fff3045bc880c88ca4c384d47b48fd3 | 2aa74a8978ec056f9358c66a46a0329da096feae | [dynamicIO] Split up static generation into two phases (#79629)
When `experimental.dynamicIO` is enabled, we're now prerendering
fallback shells for routes that have some entries defined in
`generateStaticParams` in a second phase, after the more specific route
are prerendered.
This will allow us to offer better erro... | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -735,7 +735,7 @@ const staticWorkerExposedMethods = [\n 'getDefinedNamedExports',\n 'exportPages',\n ] as const\n-type StaticWorker = typeof import('./worker') & Worker\n+export type StaticWorker = typeof import('./worker') & Worker\n export fun... | 2025-06-13T18:15:26 |
facebook/react | 3f2b346ba0df118e2e6a1bbc4387159d82437873 | 6c425f6b369bfc6b31a9d7931b358ec3c42f30b1 | Make CompilerError.invariant assert the condition
This allows us to mimic the `invariant` api, which means you can just assert
that something holds true after execution proceeds to the next line without
throwing | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/CompilerError.ts",
"patch": "@@ -70,20 +70,23 @@ export class CompilerError extends Error {\n details: CompilerErrorDetail[] = [];\n \n static invariant(\n+ condition: unknown,\n reason: string,\n loc: SourceLocation,\n des... | 2023-06-22T14:18:41 |
golang/go | f8f08bfd7c3894b4ea8481065ddd5609aa21d6a6 | 872496da2bbda59ef598e8c16f0ebfa41c98a462 | math/big: improve scan test and benchmark
Add a few more test cases for scanning (integer conversion),
which were helpful in debugging some upcoming changes.
BenchmarkScan currently times converting the value 10**N
represented in base B back into []Word form.
When B = 10, the text is 1 followed by many zeros, which
c... | [
{
"path": "src/math/big/intconv_test.go",
"patch": "@@ -7,6 +7,7 @@ package big\n import (\n \t\"bytes\"\n \t\"fmt\"\n+\t\"math/rand/v2\"\n \t\"testing\"\n )\n \n@@ -389,12 +390,14 @@ func TestFormat(t *testing.T) {\n \t}\n }\n \n-var scanTests = []struct {\n+type scanTest struct {\n \tinput string\n \t... | 2025-01-18T15:20:13 |
electron/electron | 7529ebfe0e20ff0456aaab29c22346e35cf074ce | 4f1f263a9a98abb1c4e265c1d19e281312adf5b2 | fix: remove unneeded --turbo-profiling-input arg from mksnapshot_args (#36378)
fix: remove unneeded --turbo-profiling-input args from mksnapshot_args | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -701,6 +701,13 @@ step-mksnapshot-build: &step-mksnapshot-build\n if [ \"$USE_PREBUILT_V8_CONTEXT_SNAPSHOT\" != \"1\" ]; then\n ninja -C out/Default electron:electron_mksnapshot -j $NUMBER_OF_NINJA_PROCESSES\n gn desc out/Default v8:r... | 2022-11-17T22:49:12 |
rust-lang/rust | 7bb156395edb2bdc591b4774bc2cea9dd28d94da | d222ddc4d90743dfc1e53b610be8fc9d95893d2c | fix: fix `handle_explain` to always respect `--color always` | [
{
"path": "compiler/rustc_driver_impl/src/lib.rs",
"patch": "@@ -491,10 +491,18 @@ fn handle_explain(early_dcx: &EarlyDiagCtxt, registry: Registry, code: &str, col\n }\n text.push('\\n');\n }\n+\n+ // If output is a terminal, use a pager to display the content.\n ... | 2026-01-31T18:07:56 |
nodejs/node | 007b93437985825ccf8ef6cbd9ce6122323c90b8 | a81d83325d9d8e676bf43aa82ad5cbeaee90ff87 | build: fix ./configure --help format error
PR-URL: https://github.com/nodejs/node/pull/53066
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com... | [
{
"path": "configure.py",
"patch": "@@ -397,7 +397,7 @@\n action='store',\n dest='shared_uvwasi_libname',\n default='uvwasi',\n- help='alternative lib name to link to [default: %default]')\n+ help='alternative lib name to link to [default: %(default)s]')\n \n shared_optgroup.add_argument('... | 2024-05-23T13:34:43 |
vercel/next.js | 7dad4ac2bc32e4c3c408b1d5368243296fa1b75c | 3d599a673b725132df9adcba42bea69a8976d143 | chore: fix link to good first issue (#80478)
Fixes: #80472
Link to good-first-issue lacked some encoding | [
{
"path": "packages/next/README.md",
"patch": "@@ -39,7 +39,7 @@ Contributions to Next.js are welcome and highly appreciated. However, before you\n \n ### Good First Issues:\n \n-We have a list of **[good first issues](https://github.com/vercel/next.js/labels/good%20first%20issue)** that contain bugs that h... | 2025-06-13T12:57:40 |
facebook/react | 6c425f6b369bfc6b31a9d7931b358ec3c42f30b1 | ba75c96077494248e8c877cc3c403372d866b3e9 | Remove codeframe/nodepath options from CompilerError
These were effectively unused since we almost always passed in null when
creating errors, so remove them and instead pass in a `loc` explicitly. The
downside is that we no longer will see Babel codeframes in our test fixtures,
which doesn't seem like a huge loss | [
{
"path": "compiler/forget/apps/playground/lib/forgetMonacoDiagnostics.ts",
"patch": "@@ -30,7 +30,7 @@ function mapForgetDiagnosticToMonacoMarker(\n detail: CompilerErrorDetail,\n monaco: Monaco\n ): editor.IMarkerData | null {\n- if (detail.loc == null) {\n+ if (detail.loc == null || typeof detail.l... | 2023-06-22T14:18:41 |
golang/go | 2e71ae33ca3339cc2f7554ec6a8a39c5938f1001 | c55c1cbd04ca42c70adadc86e1f48f3678be10cc | runtime/cgo: avoid errors from -Wdeclaration-after-statement
CL 652181 accidentally missed this iPhone only code.
For #71961
Change-Id: I567f8bb38958907442e69494da330d5199d11f54
Reviewed-on: https://go-review.googlesource.com/c/go/+/653135
Auto-Submit: Ian Lance Taylor <iant@google.com>
Reviewed-by: Ian Lance Taylor... | [
{
"path": "src/runtime/cgo/gcc_darwin_arm64.c",
"patch": "@@ -76,19 +76,27 @@ threadentry(void *v)\n static void\n init_working_dir()\n {\n-\tCFBundleRef bundle = CFBundleGetMainBundle();\n+\tCFBundleRef bundle;\n+\tCFURLRef url_ref;\n+\tCFStringRef url_str_ref;\n+\tchar buf[MAXPATHLEN];\n+\tBoolean res;\n+... | 2025-02-26T22:02:14 |
rust-lang/rust | 631120b803ddf096922832d41ea88afd212e5ed0 | dc8b277271bd6520a1b3384393d721268a7772ea | fix: `unwrap_used` and `expect_used` FN when using fully qualified syntax | [
{
"path": "clippy_lints/src/methods/mod.rs",
"patch": "@@ -4965,6 +4965,16 @@ impl<'tcx> LateLintPass<'tcx> for Methods {\n io_other_error::check(cx, expr, func, args, self.msrv);\n swap_with_temporary::check(cx, expr, func, args);\n ip_constant::check(cx, exp... | 2026-01-31T17:48:26 |
nodejs/node | a81d83325d9d8e676bf43aa82ad5cbeaee90ff87 | dcaf756b21e8dda3c1e5268a27db75c2d52fe392 | test: remove timers from test-tls-socket-close
Fixes: https://github.com/nodejs/node/issues/49902
PR-URL: https://github.com/nodejs/node/pull/53019
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "test/parallel/test-tls-socket-close.js",
"patch": "@@ -15,6 +15,10 @@ const cert = fixtures.readKey('agent2-cert.pem');\n let serverTlsSocket;\n const tlsServer = tls.createServer({ cert, key }, (socket) => {\n serverTlsSocket = socket;\n+ socket.on('data', (chunk) => {\n+ assert.strictEqua... | 2024-05-23T11:51:39 |
facebook/react | ba75c96077494248e8c877cc3c403372d866b3e9 | fa913b423e5b039cb948464ccd2aef96011b6006 | Fix mutable range validation in PrintHIR
Fixes the mutable range validation in PrintHIR: when we checked the identifier
scope's range we failed to allow end=start=0 cases which are also valid.
While I was here, I created a separate assertion pass to check all ranges, that
way we aren't relying on the printer to v... | [
{
"path": "compiler/forget/apps/playground/components/Editor/index.tsx",
"patch": "@@ -127,6 +127,7 @@ function compile(source: string): CompilerOutput {\n inlineUseMemo: true,\n memoizeJsxElements: true,\n validateHooksUsage: true,\n+ assertValidMutableRanges: true,\n }... | 2023-06-21T23:08:44 |
vercel/next.js | 3d599a673b725132df9adcba42bea69a8976d143 | e1045df08d9f8f0d6c57afbf9ab9ab576bf67a25 | Fix variable assignment in docs example (#80418)
### What?
Fixes small bug in Javascript code example where same variable is
declared again.
### How?
Same as this PR #74744 which fixed the Typescript code.
Co-authored-by: Delba de Oliveira <32464864+delbaoliveira@users.noreply.github.com> | [
{
"path": "docs/01-app/01-getting-started/07-fetching-data.mdx",
"patch": "@@ -165,11 +165,11 @@ export default function Posts({\n import { use } from 'react'\n \n export default function Posts({ posts }) {\n- const posts = use(posts)\n+ const allPosts = use(posts)\n \n return (\n <ul>\n- {post... | 2025-06-13T12:22:26 |
golang/go | c55c1cbd04ca42c70adadc86e1f48f3678be10cc | 9cceaf87361d0b797dd23ec7467d9adb62910fc9 | net: return proper error from Context
Sadly err was a named parameter so this did not cause
compile error.
Fixes #71974
Change-Id: I10cf29ae14c52d48a793c9a6cb01b01d79b1b356
GitHub-Last-Rev: 4dc0e6670a9265612b8ec26dbc378219b25156b4
GitHub-Pull-Request: golang/go#71976
Reviewed-on: https://go-review.googlesource.com/c... | [
{
"path": "src/net/lookup_plan9.go",
"patch": "@@ -65,7 +65,7 @@ func query(ctx context.Context, filename, query string, bufSize int) (addrs []st\n \tcase r := <-ch:\n \t\treturn r.addrs, r.err\n \tcase <-ctx.Done():\n-\t\treturn nil, mapErr(err)\n+\t\treturn nil, mapErr(ctx.Err())\n \t}\n }\n ",
"addit... | 2025-02-26T16:31:58 |
electron/electron | 87c183df6a6b758ace3097eeb176c2643398e29d | 517225b99e5ba2bac068a58208ce9a85402ba9eb | chore: bump chromium to 110.0.5415.0 (main) (#36186)
* chore: bump chromium in DEPS to 109.0.5386.0
* chore: bump chromium in DEPS to 109.0.5388.0
* chore: bump chromium in DEPS to 109.0.5390.0
* chore: bump chromium in DEPS to 109.0.5392.0
* chore: bump chromium in DEPS to 109.0.5394.0
* chore: bump ch... | [
{
"path": "BUILD.gn",
"patch": "@@ -1485,7 +1485,7 @@ dist_zip(\"electron_ffmpeg_zip\") {\n \n electron_chromedriver_deps = [\n \":licenses\",\n- \"//chrome/test/chromedriver\",\n+ \"//chrome/test/chromedriver:chromedriver_server\",\n \"//electron/buildflags\",\n ]\n ",
"additions": 1,
"deleti... | 2022-11-17T19:59:23 |
facebook/react | 6efd1f99d77e50ef26d94c411a1e0336a39b64ca | 4a36b8379611bfaf4bc628eb45542bc3946961cb | Make function name a string not an identifier
Fixes #1751. Function ids can be plain strings, and we can refer to them as
globals rather than via a local identifier. In addition to the bug from $1751
this also cleans up an existing todo. | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -23,7 +23,6 @@ import {\n GeneratedSource,\n GotoVariant,\n HIRFunction,\n- Identifier,\n IfTerminal,\n InstructionKind,\n InstructionValue,\n@@ -77,9 +76,9 @@ export function lower(\n // Internal... | 2023-06-20T22:16:55 |
nodejs/node | 4a54a80aa36dde4019f77ddab3cb419fc77bb90e | 695cd8b9e202e2cad813d3d9dbdf841e9ce98cdb | test: replace `.substr` with `.slice`
`String.prototype.substr` is deprecated, and using it will raise an
error when using ESLint 9+.
Co-authored-by: =?UTF-8?q?Micha=C3=ABl=20Zasso?= <targos@protonmail.com>
PR-URL: https://github.com/nodejs/node/pull/53070
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-B... | [
{
"path": "test/es-module/test-esm-exports.mjs",
"patch": "@@ -231,7 +231,7 @@ const { requireFromInside, importFromInside } = fromInside;\n });\n \n function assertStartsWith(actual, expected) {\n- const start = actual.toString().substr(0, expected.length);\n+ const start = actual.toString().slice(0, exp... | 2024-05-22T05:08:59 |
vercel/next.js | e1045df08d9f8f0d6c57afbf9ab9ab576bf67a25 | 3019c227827d58a14aba3417d485ed650b168bb9 | Update from-create-react-app.mdx (#80451)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributors
### Impr... | [
{
"path": "docs/01-app/02-guides/migrating/from-create-react-app.mdx",
"patch": "@@ -12,7 +12,7 @@ There are several reasons why you might want to switch from Create React App to\n \n ### Slow initial page loading time\n \n-Create React App uses purely client-side React. Client-side only applications, also ... | 2025-06-13T12:11:26 |
golang/go | 9cceaf87361d0b797dd23ec7467d9adb62910fc9 | 983e30bd3b78ca77a5028a94323c6da363358648 | cmd/link: require cgo for -linkmode=external test
For #71416
Fixes #71957
Change-Id: I2180dada34d9dd2d3f5b0aaf8525951fd2e86a27
Reviewed-on: https://go-review.googlesource.com/c/go/+/652277
Reviewed-by: Michael Pratt <mpratt@google.com>
Reviewed-by: Quim Muntal <quimmuntal@gmail.com>
LUCI-TryBot-Result: Go LUCI <golan... | [
{
"path": "src/cmd/link/internal/ld/macho_test.go",
"patch": "@@ -40,10 +40,11 @@ func TestMachoSectionsReadOnly(t *testing.T) {\n \t\t\twantSecsRO: []string{\"__nl_symbol_ptr\", \"__rodata\", \"__itablink\", \"__typelink\", \"__gosymtab\", \"__gopclntab\"},\n \t\t},\n \t\t{\n-\t\t\tname: \"link... | 2025-02-26T05:44:25 |
electron/electron | d8bb17231814b85df0ff492e8198522efa830da3 | 654e5715125d1aad8222feeb4c793adf6215dc78 | fix: abort ShipIt installation attempt at the final mile if the app is running (#36130)
* fix: abort ShipIt installation attempt at the final mile if the app is running
* chore: remove only
* Update patches/squirrel.mac/fix_abort_installation_attempt_at_the_final_mile_if_the_app_is.patch
Co-authored-by: Jerem... | [
{
"path": "patches/squirrel.mac/.patches",
"patch": "@@ -3,3 +3,4 @@ fix_ensure_that_self_is_retained_until_the_racsignal_is_complete.patch\n fix_use_kseccschecknestedcode_kseccsstrictvalidate_in_the_sec.patch\n feat_add_new_squirrel_mac_bundle_installation_method_behind_flag.patch\n refactor_use_posix_spaw... | 2022-11-14T18:12:16 |
facebook/react | a9868cc2b1c19066e9d93bbc404fdca02a314651 | 04f4b50997f347c2c7793274872cb9e70828905d | Fix memoization of lambdas in @enableOptimizeFunctionExpr feature
This is a fix specifically for the `enableOptimizeFunctionExpression` feature
(disabled by default). I tried running all of our fixtures with that flag on
everywhere, and this was the only issue. It's actually extracted from another
fixture which is... | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/Inference/AnalyseFunctions.ts",
"patch": "@@ -17,7 +17,7 @@ import {\n Place,\n ReactiveScopeDependency,\n } from \"../HIR\";\n-import { constantPropagation } from \"../Optimization\";\n+import { constantPropagation, deadCodeElimination }... | 2023-06-16T21:42:19 |
vercel/next.js | 7e310f8d2a076cb036297cca9408703083dfd1d2 | 9c1f2727f929b92e1a04d31c6cf425b4f42b5072 | fix(turbopack): Improve error message for PURE selector error (#80068)
### What?
Use CSS string for CSS errors instead of Rust debug representation, and remove `lightningcss` text from the error message.
### Why?
We don't need them. | [
{
"path": "test/development/acceptance-app/ReactRefreshLogBox.test.ts",
"patch": "@@ -464,7 +464,7 @@ describe('ReactRefreshLogBox app', () => {\n \"label\": \"Build Error\",\n \"source\": \"./index.module.css\n Parsing css source code failed\n- Selector is not pure (pure sele... | 2025-06-12T22:44:36 |
nodejs/node | d03198712e33c43df896e02156b32061523746f9 | b4e148cd8c8bfc3153f6a424e73291e1049209b4 | 2024-05-21, Version 18.20.3 'Hydrogen' (LTS)
Notable changes:
This release fixes a regression introduced in Node.js 18.19.0 where
`http.server.close()` was incorrectly closing idle connections.
A fix has also been included for compiling Node.js from source with
newer versions of Clang.
The list of keys used to sign... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -82,7 +82,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V20.md#20.0.0\">20.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V18.md#18.20.2\">18.20.2</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V18.md#18.20.3\">18.20.3... | 2024-05-16T15:42:22 |
golang/go | ee0d03fab6e38dc3f8d10032e7c30c68ac7ec066 | 1421b982dca738daf47fe11aec9b56050798d739 | sync: don't keep func alive after OnceFunc panics
This moves the f = nil assignment to the defer statement,
so that in case the functions panics, the f func is not
referenced anymore.
Change-Id: I3e53b90a10f21741e26602270822c8a75679f163
GitHub-Last-Rev: bda01100c6d48d1b0ca3e1baefef4d592cca1fee
GitHub-Pull-Request: go... | [
{
"path": "src/sync/oncefunc.go",
"patch": "@@ -21,6 +21,7 @@ func OnceFunc(f func()) func() {\n \treturn func() {\n \t\td.once.Do(func() {\n \t\t\tdefer func() {\n+\t\t\t\td.f = nil // Do not keep f alive after invoking it.\n \t\t\t\td.p = recover()\n \t\t\t\tif !d.valid {\n \t\t\t\t\t// Re-panic immediate... | 2025-02-25T20:07:12 |
facebook/react | 278c7f56babc574a66392eacace297715e4d5446 | 1db261980741de0ba5590332c60f44bc90a2d1b9 | ValidateFrozenLambdas: visit terminals
The original version of the code wasn't checking return values. I missed this
since my examples were passing functions _into_ the return value, as opposed to
return the functions directly. This revealed some existing test fixtures that
were technically invalid, but easy to fi... | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/HIR/ValidateFrozenLambdas.ts",
"patch": "@@ -15,11 +15,12 @@ import {\n FunctionExpression,\n HIRFunction,\n IdentifierId,\n+ Place,\n isMutableEffect,\n isRefValueType,\n isUseRefType,\n } from \"./HIR\";\n-import { eachInstruct... | 2023-06-16T21:42:16 |
vercel/next.js | 9c1f2727f929b92e1a04d31c6cf425b4f42b5072 | 50d6dd0332a68ab6ab73cd2a014331644917bd82 | Revert "refactor(turbopack): Make invalidator flag explicit" (#80466)
Reverts vercel/next.js#80414
it turns out that we were not running debug assertions from CI.
x-ref: https://vercel.slack.com/archives/C03EWR7LGEN/p1749765841011769 | [
{
"path": "crates/next-api/src/project.rs",
"patch": "@@ -423,7 +423,7 @@ impl ProjectContainer {\n \n #[turbo_tasks::value_impl]\n impl ProjectContainer {\n- #[turbo_tasks::function(invalidator)]\n+ #[turbo_tasks::function]\n pub async fn project(&self) -> Result<Vc<Project>> {\n let env_... | 2025-06-12T22:43:11 |
nodejs/node | f9a09131d76db6ef74b0d8da91ded9a2ab623687 | 4d7706676bd98ceaede12f68e0386645049a03b6 | test_runner: fix t.assert methods
The node:assert module contains several top level APIs that do
not make sense to expose as methods on t.assert. Examples include
AssertionError and CallTracker. This commit removes such APIs from
t.assert.
Refs: https://github.com/nodejs/node/pull/52860
PR-URL: https://github.com/nod... | [
{
"path": "lib/internal/test_runner/test.js",
"patch": "@@ -12,7 +12,6 @@ const {\n MathMax,\n Number,\n ObjectDefineProperty,\n- ObjectEntries,\n ObjectSeal,\n PromisePrototypeThen,\n PromiseResolve,\n@@ -107,10 +106,28 @@ function lazyAssertObject() {\n if (assertObj === undefined) {\n ... | 2024-05-20T16:49:15 |
electron/electron | 75d2caf451c925a826229ae27264c9b54de9b6db | 1b1609aa0f7e282286ef2e842d5c895adcedfc86 | chore: upgrade to Node.js v18 (#35999)
* chore: update to Node.js v18
* child_process: improve argument validation
https://github.com/nodejs/node/pull/41305
* bootstrap: support configure-time user-land snapshot
https://github.com/nodejs/node/pull/42466
* chore: update GN patch
* src: disambiguate te... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '109.0.5382.0',\n 'node_version':\n- 'v16.17.1',\n+ 'v18.10.0',\n 'nan_version':\n '16fa32231e2ccd89d2804b3f765319128b20c4ac',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2022-11-10T21:31:20 |
golang/go | 1421b982dca738daf47fe11aec9b56050798d739 | 76c70282538bf4cccd6f98b5b26df7f5a7f2cebd | runtime: document that cleanups can run concurrently with each other
Fixes #71825.
Change-Id: I25af19eb72d75f13cf661fc47ee5717782785326
Reviewed-on: https://go-review.googlesource.com/c/go/+/650696
Reviewed-by: Carlos Amedee <carlos@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gser... | [
{
"path": "src/runtime/mcleanup.go",
"patch": "@@ -30,8 +30,10 @@ import (\n // unreachable at the same time, their cleanups all become eligible to run\n // and can run in any order. This is true even if the objects form a cycle.\n //\n-// A single goroutine runs all cleanup calls for a program, sequentiall... | 2025-02-19T17:28:45 |
facebook/react | 46fa83d854c1332f45d1ba4b3cf11969023e4289 | 2f0ab0ec9dc1ff02d28afadfb5d745be03ffc582 | [eslint-plugin] Disambiguate compiler errors without instanceof
Babel re-emits errors from plugins so the `instanceof` check was no longer
working | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/CompilerError.ts",
"patch": "@@ -182,6 +182,7 @@ export class CompilerError extends Error {\n \n constructor(...args: any[]) {\n super(...args);\n+ this.name = \"ReactForgetCompilerError\";\n }\n \n override get message(): string... | 2023-06-20T16:30:07 |
vercel/next.js | 1a854967e8a5cbdfb985316a04d0e5734b883df4 | a720ef8e056d6dcea8bc5ed8f34f43968d3a0c0d | fix(next-swc): Update `styled-jsx` SWC plugin (#80459)
### What?
Apply https://github.com/swc-project/plugins/pull/471
### Why?
To fix the content escaping bug of `styled-jsx` | [
{
"path": "Cargo.lock",
"patch": "@@ -6894,9 +6894,9 @@ dependencies = [\n \n [[package]]\n name = \"styled_jsx\"\n-version = \"0.91.1\"\n+version = \"0.91.2\"\n source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"4eeb6bc4423bb2f48d3aad71b09e37ac704fa509b9ddb36540ca321cfb8e91da... | 2025-06-12T22:21:50 |
nodejs/node | a6d54f179d997497a95c18456bef6bc3ee15e2c4 | a619789ef019301ed1bbc2a0b35f9b4b32fe2667 | src: remove calls to recently deprecated V8 APIs
Closes: https://github.com/nodejs/node/issues/52991
PR-URL: https://github.com/nodejs/node/pull/52996
Fixes: https://github.com/nodejs/node/issues/52991
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: J... | [
{
"path": "src/module_wrap.cc",
"patch": "@@ -339,8 +339,7 @@ MaybeLocal<Module> ModuleWrap::CompileSourceTextModule(\n bool* cache_rejected) {\n Isolate* isolate = realm->isolate();\n EscapableHandleScope scope(isolate);\n- ScriptOrigin origin(isolate,\n- url,\n+ ScriptOrigin... | 2024-05-15T07:16:00 |
facebook/react | 98633d10a6dd15e59269e9fe444329525c61707e | 79dbf6fc19bb26336f0043cc6fb62eaac2676f96 | Add a noEmit compiler option
Defaults to false, ie it runs the codegen pass. When enabled it will simply run
all passes up to codegen and then skip over it. Naming of this option is copied
from [TypeScript](https://www.typescriptlang.org/tsconfig#noEmit) which has the
same named option that makes the compiler only... | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/Entrypoint/Options.ts",
"patch": "@@ -79,6 +79,14 @@ export type PluginOptions = {\n panicOnBailout: boolean;\n \n isDev: boolean;\n+\n+ /**\n+ * When enabled, Forget will continue statically analyzing and linting code, but skip over c... | 2023-06-20T16:30:06 |
golang/go | 76c70282538bf4cccd6f98b5b26df7f5a7f2cebd | 194696f1d1f6e5609f96d0fb0192595e7e0f5b90 | runtime/cgo: avoid errors from -Wdeclaration-after-statement
It's used by the SWIG CI build, at least, and it's an easy fix.
Fixes #71961
Change-Id: Id21071a5aef216b35ecf0e9cd3e05d08972d92fe
Reviewed-on: https://go-review.googlesource.com/c/go/+/652181
Reviewed-by: Cherry Mui <cherryyz@google.com>
Reviewed-by: Micha... | [
{
"path": "src/runtime/cgo/cgo.go",
"patch": "@@ -25,7 +25,8 @@ package cgo\n \n // Use -fno-stack-protector to avoid problems locating the\n // proper support functions. See issues #52919, #54313, #58385.\n-#cgo CFLAGS: -Wall -Werror -fno-stack-protector\n+// Use -Wdeclaration-after-statement because some ... | 2025-02-26T05:35:32 |
electron/electron | 1b1609aa0f7e282286ef2e842d5c895adcedfc86 | 5fc3ed936e7ee5f3258782c0a0312cd9a2ebb174 | fix: `app.dock.setIcon()` crash before app ready (#36279)
fix: dock.setIcon() crash before app ready | [
{
"path": "shell/browser/browser_mac.mm",
"patch": "@@ -447,6 +447,13 @@\n image = native_image->image();\n }\n \n+ // This is needed when this fn is called before the browser\n+ // process is ready, since supported scales are normally set\n+ // by ui::ResourceBundle::InitSharedInstance\n+ // duri... | 2022-11-09T16:13:24 |
vercel/next.js | f8add0d9ffadf0287542eb19421fbcb918a5f861 | ae1f0be351dbf83bc7cb1c9210123fc609aba0b7 | [segment explorer] fix soft navigation case (#80443) | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/overview/segment-explorer.tsx",
"patch": "@@ -80,6 +80,8 @@ function PageSegmentTreeLayerPresentation({\n {folderName && (\n <span className=\"segment-explorer-filename--path\">\n {f... | 2025-06-12T11:10:33 |
facebook/react | 5c0622af3957ac876ce7ce301dcd2c34f3ef9e17 | e378eed0f3ec04319e9501d0a1424f5f71499590 | Add failing test for InferReferenceEffects bug | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/error._bug.recursive-function-expr.expect.md",
"patch": "@@ -0,0 +1,18 @@\n+\n+## Input\n+\n+```javascript\n+function foo() {\n+ (() => foo())();\n+}\n+\n+```\n+\n+\n+## Error\n+\n+```\n+Expected value for identif... | 2023-06-20T16:30:04 |
nodejs/node | a619789ef019301ed1bbc2a0b35f9b4b32fe2667 | cb90a316d020a8188d225e5cd9d03dedac4b14b1 | test_runner: support module mocking
This commit adds experimental module mocking to the test runner.
PR-URL: https://github.com/nodejs/node/pull/52848
Fixes: https://github.com/nodejs/node/issues/51164
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Raf... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -981,6 +981,16 @@ generated as part of the test runner output. If no tests are run, a coverage\n report is not generated. See the documentation on\n [collecting code coverage from tests][] for more details.\n \n+### `--experimental-test-module-mocks`\n+\n+<!-- YAML\n... | 2024-05-19T05:09:09 |
golang/go | 194696f1d1f6e5609f96d0fb0192595e7e0f5b90 | 8b8bff7bb29210db868306cd07a03fb15e247b2f | reflect: let Value.Seq return the iteration value correct type
Fixes #71905
Change-Id: I50a418f8552e071c6e5011af5b9accc7d41548d0
Reviewed-on: https://go-review.googlesource.com/c/go/+/651855
Reviewed-by: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceac... | [
{
"path": "src/reflect/iter.go",
"patch": "@@ -4,15 +4,24 @@\n \n package reflect\n \n-import \"iter\"\n+import (\n+\t\"iter\"\n+)\n \n func rangeNum[T int8 | int16 | int32 | int64 | int |\n \tuint8 | uint16 | uint32 | uint64 | uint |\n-\tuintptr, N int64 | uint64](v N) iter.Seq[Value] {\n+\tuintptr, N int6... | 2025-02-23T03:06:17 |
electron/electron | 5fc3ed936e7ee5f3258782c0a0312cd9a2ebb174 | 8f5959aad2bb195f54d3a026e39fbc099c952057 | feat: add app.getPreferredSystemLanguages() API (#36035)
* feat: add app.getSystemLanguage() API
* Change the API to getPreferredSystemLanguages
* Fix test
* Clarify docs and add Linux impl
* Remove USE_GLIB
* Don't add C to list
* Remove examples since there's a lot of edge cases
* Fix lint
* ... | [
{
"path": "docs/api/app.md",
"patch": "@@ -717,6 +717,8 @@ To set the locale, you'll want to use a command line switch at app startup, whic\n \n **Note:** This API must be called after the `ready` event is emitted.\n \n+**Note:** To see example return values of this API compared to other locale and language... | 2022-11-09T15:50:43 |
rust-lang/rust | 8c0d93bc54f857bf04c294a25bdbfbe1e29b0900 | 1e9be1b77fe89d9757d6179973b2fc970c6e83b7 | Skip overlapping spans in argument error suggestions | [
{
"path": "compiler/rustc_hir_typeck/src/fn_ctxt/checks.rs",
"patch": "@@ -2647,7 +2647,15 @@ impl<'a, 'b, 'tcx> FnCallDiagCtxt<'a, 'b, 'tcx> {\n // To suggest a multipart suggestion when encountering `foo(1, \"\")` where the def\n // was `fn foo(())`.\n let (... | 2026-01-31T11:01:45 |
vercel/next.js | f646f4df2fda7fe0005c93a95c0492e06aac9278 | 301e79db455f2c1c4eb2448dd074863ae3512269 | chore: Remove useActionState from auto wrapping list (#80420)
Fixes: https://github.com/vercel/next.js/issues/80419 | [
{
"path": "docs/01-app/01-getting-started/08-updating-data.mdx",
"patch": "@@ -22,7 +22,6 @@ By convention, a Server Action is an async function used with [`startTransition`\n \n - Passed to a `<form>` using the `action` prop.\n - Passed to a `<button>` using the `formAction` prop.\n-- Passed to `useActionS... | 2025-06-12T10:41:26 |
facebook/react | a558b1536a41768d50f4cd5f20ab01ac0eaf9824 | 501cf92f1e06cf88e4f0f2b49099f36568e794a5 | [babel-plugin] buildFunctionDeclaration errors are todos
The existing errors thrown were marked as InvalidInput, which is now considered
critical. This was causing an error in the sync since we had 2 occurrences of
the errors being thrown. These are really todos and not invalid code. | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts",
"patch": "@@ -144,8 +144,9 @@ export function compileProgram(\n }\n \n const loweredFn = buildFunctionDeclaration(fn);\n- if (loweredFn instanceof CompilerError) {\n- const error = loweredFn;\n+... | 2023-06-16T16:18:45 |
nodejs/node | 8216cc964e76d0849dfb829181d831e0df9554a3 | 7380252ae50e1d71544ce52d6246f2cde4dfabf7 | benchmark: fix api restriction for the permission category
give appropriate permissions to the following scripts:
* permission-processhas-fs-read.js: 'ChildProcess' permission
* permission-startup.js: 'FileSystemRead' permission
> Paths delimited by comma (,) are no longer allowed.
Refs: https://github.com/nodejs/... | [
{
"path": "benchmark/permission/permission-processhas-fs-read.js",
"patch": "@@ -13,6 +13,7 @@ const options = {\n flags: [\n '--experimental-permission',\n `--allow-fs-read=${rootPath}`,\n+ '--allow-child-process',\n ],\n };\n ",
"additions": 1,
"deletions": 0,
"language": "JavaS... | 2024-05-18T20:37:31 |
golang/go | 8b8bff7bb29210db868306cd07a03fb15e247b2f | 4c75671871af56fa68076ee3741780e52726ec82 | cmd/compile: don't pull constant offsets out of pointer arithmetic
This could lead to manufacturing a pointer that points outside
its original allocation.
Bug was introduced in CL 629858.
Fixes #71932
Change-Id: Ia86ab0b65ce5f80a8e0f4f4c81babd07c5904f8d
Reviewed-on: https://go-review.googlesource.com/c/go/+/652078
... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/ARM64.rules",
"patch": "@@ -1149,10 +1149,12 @@\n (SUB a l:(MNEGW x y)) && v.Type.Size() <= 4 && l.Uses==1 && clobber(l) => (MADDW a x y)\n \n // madd/msub can't take constant arguments, so do a bit of reordering if a non-constant is available.\n-(ADD a p:(ADDcon... | 2025-02-24T21:07:29 |
electron/electron | 2008c9a5d0be0c169e8016dac8a90744c504c3f7 | 0ba0df45232d0c1c4542d6647a862305aff28bb4 | fix: arm linux glibc dependency (#36247) | [
{
"path": "script/sysroots.json",
"patch": "@@ -1,43 +1,43 @@\n {\n \"bullseye_amd64\": {\n \"Key\": \"20220331T153654Z-0\",\n- \"Sha1Sum\": \"f515568ba23311d4ae5cb40354d012d4e52f756f\",\n+ \"Sha1Sum\": \"f631cf53b56adcf0d6231c9dfe72affb25516e85\",\n \"SysrootDir\": \"debia... | 2022-11-07T14:38:08 |
vercel/next.js | e52ffc1f91402ae8a188d9cf86638ffd9d0813ab | 9dd1db5e6e2a4b18719ef86bd09e40445b8ae977 | Turbopack: fix persistent caching bit number typo (#80431)
### What?
fix typo discovered by @bgw | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/storage.rs",
"patch": "@@ -97,7 +97,7 @@ bitfield! {\n pub data_modified, set_data_modified: 3;\n /// Item was modified after snapshot mode was entered. A snapshot was taken.\n pub meta_snapshot, set_meta_snapshot: 4;\n- pub data_sna... | 2025-06-12T08:43:05 |
nodejs/node | 559212e64c21af74e1aedf9fe43a3bf844111bd8 | 00550b043b004053cb529d9e9a517f6b6deb049d | tls: fix negative sessionTimeout handling
For historical reasons, the second argument of SSL_CTX_set_timeout is a
signed integer, and Node.js has so far passed arbitrary (signed) int32_t
values. However, new versions of OpenSSL have changed the handling of
negative values inside SSL_CTX_set_timeout, and we should shie... | [
{
"path": "lib/internal/tls/secure-context.js",
"patch": "@@ -311,7 +311,7 @@ function configSecureContext(context, options = kEmptyObject, name = 'options')\n }\n \n if (sessionTimeout !== undefined && sessionTimeout !== null) {\n- validateInt32(sessionTimeout, `${name}.sessionTimeout`);\n+ valid... | 2024-05-18T00:26:11 |
electron/electron | 0ba0df45232d0c1c4542d6647a862305aff28bb4 | 71b8804fd0b53c4b87de8863a1be627732f60c89 | docs: fix driverId -> deviceId typo (#36246) | [
{
"path": "docs/api/app.md",
"patch": "@@ -1203,7 +1203,7 @@ For `infoType` equal to `basic`:\n }\n ```\n \n-Using `basic` should be preferred if only basic information like `vendorId` or `driverId` is needed.\n+Using `basic` should be preferred if only basic information like `vendorId` or `deviceId` is nee... | 2022-11-07T14:37:51 |
golang/go | 011da163f475b38ad70c9c652df6dc8dc2ba5168 | 1b1c6b838e678cbc9d93a78324fb5de873cd4487 | cmd/compile/internal/test: fix noopt builder
The function argument passed to hash function escaped to heap when
optimization is disabled, causing the builder failed.
To fix this, skip the test on noopt builder.
Updates #71943
Fixes #71965
Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-noopt
Change-Id: I3a9ec... | [
{
"path": "src/cmd/compile/internal/test/issue71943_test.go",
"patch": "@@ -6,6 +6,7 @@ package test\n \n import (\n \t\"crypto/sha256\"\n+\t\"internal/testenv\"\n \t\"runtime\"\n \t\"testing\"\n )\n@@ -15,6 +16,7 @@ func Verify(token, salt string) [32]byte {\n }\n \n func TestIssue71943(t *testing.T) {\n+\... | 2025-02-26T14:04:04 |
nodejs/node | d4442a93e21d2f881c264a8dd44c613b5f1d02e6 | fac55e3ef99262877b40a1df461f0e5b94069b28 | test_runner: avoid error when coverage line not found
PR-URL: https://github.com/nodejs/node/pull/53000
Fixes: https://github.com/nodejs/node/issues/52775
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Yagiz ... | [
{
"path": "lib/internal/test_runner/coverage.js",
"patch": "@@ -177,7 +177,7 @@ class TestCoverage {\n if (isBlockCoverage) {\n ArrayPrototypePush(branchReports, {\n __proto__: null,\n- line: range.lines[0].line,\n+ line: range.lines[0]?.line,\n ... | 2024-05-17T08:46:52 |
electron/electron | 71b8804fd0b53c4b87de8863a1be627732f60c89 | 15540975ff3f3979ba93ed560fdb18489c458b98 | docs: Fixed outdated documentation (uploading to App Store) (#35116)
* Updated docs on uploading
- replaced mention of Application Loader with Apple Transporter, its replacement
- replaced mention of iTunes Connect with App Store Connect
- updated link for creating a record
* Update mac-app-store-submission-g... | [
{
"path": "docs/tutorial/mac-app-store-submission-guide.md",
"patch": "@@ -232,7 +232,7 @@ how to meet the Mac App Store requirements.\n \n ### Upload\n \n-The Application Loader should be used to upload the signed app to iTunes\n+[Apple Transporter][apple-transporter] should be used to upload the signed ap... | 2022-11-01T21:07:50 |
golang/go | 969a0da362ce846360782b34bfad7a18c2f64628 | 767c0fb9fd1e7d7210276be45b0abb5d14d34484 | runtime: route calls to msan_memmove through cgo
This avoids problems when the C linker doesn't want to see the Go relocation.
Fixes #71954
Change-Id: I7cf884c4059d596cad6074ade02020d5a724f20e
Reviewed-on: https://go-review.googlesource.com/c/go/+/652180
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accoun... | [
{
"path": "src/runtime/msan.go",
"patch": "@@ -64,4 +64,4 @@ func msanmove(dst, src unsafe.Pointer, sz uintptr)\n //go:cgo_import_static __msan_write_go\n //go:cgo_import_static __msan_malloc_go\n //go:cgo_import_static __msan_free_go\n-//go:cgo_import_static __msan_memmove\n+//go:cgo_import_static __msan_m... | 2025-02-25T23:40:39 |
facebook/react | fc929cf4ead35f99c4e9612a95e8a0bb8f5df25d | 86acc10f2596e1a6fe2fd57a5b325de85175800b | [Float][Fizz][Fiber] support imagesrcset and imagesizes for `ReactDOM.preload()` (#26940)
For float methods the href argument is usually all we need to uniquely
key the request. However when preloading responsive images it is
possible that you may need more than one preload for differing
imagesizes attributes. When... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -105,7 +105,6 @@ import {\n } from 'react-reconciler/src/ReactWorkTags';\n import {listenToAllSupportedEvents} from '../events/DOMPluginEventSystem';\n import {\n- validatePreloadArguments,\n validatePreinitArguments,... | 2023-06-15T21:50:22 |
rust-lang/rust | dc48704f98f77822e8f6aea7fdac255c5aea101f | 44e34e1ac6d7e69b40856cf1403d3da145319c30 | Fix ICE when parsing frontmatter without newline | [
{
"path": "compiler/rustc_parse/src/lexer/mod.rs",
"patch": "@@ -623,7 +623,7 @@ impl<'psess, 'src> Lexer<'psess, 'src> {\n self.dcx().emit_err(errors::FrontmatterInvalidInfostring { span });\n }\n \n- let last_line_start = real_s.rfind('\\n').map_or(0, |i| i + 1);\n+ let l... | 2026-01-31T02:05:07 |
nodejs/node | b0bd534bce3e712b54d1d43173997e4c785a572e | 2693f0916ff404af9ca6cddb0bf52e7c03799d8f | doc: avoid hiding by navigation bar in anchor jumping
PR-URL: https://github.com/nodejs/node/pull/45131
Fixes: https://github.com/nodejs/node/issues/42286
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "doc/api_assets/style.css",
"patch": "@@ -67,9 +67,16 @@ h5 :target {\n }\n \n /*--------------------- Layout and Typography ----------------------------*/\n+@media (prefers-reduced-motion: no-preference) {\n+ html {\n+ scroll-behavior: smooth;\n+ }\n+}\n+\n html {\n font-size: 1rem;\n ov... | 2024-05-16T19:24:51 |
golang/go | 767c0fb9fd1e7d7210276be45b0abb5d14d34484 | b38b0c0088039b03117b87eee61583ac4153f2b7 | go/scanner: report specific error for UCS-2 encoded files
Windows text files may be encoded as UCS-2 (i.e. 2-byte UTF-16).
This CL causes the scanner to emit a better error when it reads
a file in this encoding.
+ test
Fixes #71950
Change-Id: Ia65bbf9a60e36984b0f3e4865591aa6978d2bde2
Reviewed-on: https://go-review.... | [
{
"path": "src/go/scanner/scanner.go",
"patch": "@@ -71,7 +71,17 @@ func (s *Scanner) next() {\n \t\t\t// not ASCII\n \t\t\tr, w = utf8.DecodeRune(s.src[s.rdOffset:])\n \t\t\tif r == utf8.RuneError && w == 1 {\n-\t\t\t\ts.error(s.offset, \"illegal UTF-8 encoding\")\n+\t\t\t\tin := s.src[s.rdOffset:]\n+\t\t\... | 2025-02-25T20:25:56 |
facebook/react | 0fdb1e5ac74e46ad4302c31a4334f7dd8dc8765f | 87a39e1995865b72b719ff9159786da7417d7e31 | [eslint-plugin] Add test for invariants
Turning off this flag makes only critical errors throw, so TODO errors will no
longer be surfaced by the plugin. The previously failing test for unsupported
syntax is now valid. | [
{
"path": "compiler/forget/packages/eslint-plugin-react-forget/__tests__/ReactForgetDiagnostics-test.ts",
"patch": "@@ -30,8 +30,6 @@ const tests: ForgetTestCases = {\n }\n `,\n },\n- ],\n- invalid: [\n {\n name: \"Unsupported syntax\",\n code: normalizeIndent`\n@@ -40,8 ... | 2023-06-15T18:57:07 |
rust-lang/rust | 4e5b6455b888a7f556f22dcc9add7196d6991444 | b6e4f13583eeb3ea5e7a8ec84d99407c9f1695a3 | fix: Fix more glob issues | [
{
"path": "src/tools/rust-analyzer/crates/hir-def/src/item_scope.rs",
"patch": "@@ -893,6 +893,24 @@ impl ItemScope {\n self.macros.get_mut(name).expect(\"tried to update visibility of non-existent macro\");\n res.vis = vis;\n }\n+\n+ pub(crate) fn update_def_types(&mut self, name... | 2026-01-31T08:31:54 |
nodejs/node | 5f96db7270818f32ab441ff19c008b5677a4a604 | c1657510b55ed5e8719401278e462a917e2742df | tools: fix v8-update workflow
- Add a step that configures Git so the update script can create
commits.
- Use `peter-evans/create-pull-request` as it's more maintained and
correctly handles commits that are created before it runs.
Refs: https://github.com/peter-evans/create-pull-request
PR-URL: https://github.com... | [
{
"path": ".github/workflows/update-v8.yml",
"patch": "@@ -35,22 +35,23 @@ jobs:\n node-version: ${{ env.NODE_VERSION }}\n - name: Install @node-core/utils\n run: npm install -g @node-core/utils\n+ - name: Setup Git config\n+ run: |\n+ git config --global user.na... | 2024-05-14T09:36:56 |
vercel/next.js | 5261ed8db95d4b056f0ed6fb1788a17dabc4b166 | fba3b9b0b76310eb60eb2b368cf206cf3069cfc0 | Turbopack Build: Fix /index/index handling (#80413)
## What?
Alternative for #80385 | [
{
"path": "packages/next/src/shared/lib/turbopack/manifest-loader.ts",
"patch": "@@ -478,22 +478,29 @@ export class TurbopackManifestLoader {\n }\n \n const sortedPageKeys = getSortedRoutes(pagesKeys)\n- const content: ClientBuildManifest = {\n+ const clientBuildManifest: ClientBuildManifest =... | 2025-06-11T15:52:51 |
golang/go | b38b0c0088039b03117b87eee61583ac4153f2b7 | 8203265d5eef37bf41d7d2df126f77ebd5abc999 | cmd/compile: document -embedcfg flag
Fixes #71942
Change-Id: Ie7e795506a9c8781f0e0963012233a7ed1093855
Reviewed-on: https://go-review.googlesource.com/c/go/+/652475
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Mi... | [
{
"path": "src/cmd/compile/doc.go",
"patch": "@@ -60,6 +60,11 @@ Flags:\n \t\tAllow references to Go symbols in shared libraries (experimental).\n \t-e\n \t\tRemove the limit on the number of errors reported (default limit is 10).\n+\t-embedcfg file\n+\t\tRead go:embed configuration from file.\n+\t\tThis is... | 2025-02-25T18:51:29 |
facebook/react | 87a39e1995865b72b719ff9159786da7417d7e31 | b68c409a6b8adb0e58d978b4d085b1197c030ac9 | Mark InvalidInput errors as critical | [
{
"path": "compiler/forget/packages/babel-plugin-react-forget/src/CompilerError.ts",
"patch": "@@ -237,8 +237,8 @@ export class CompilerError extends Error {\n return this.details.some((detail) => {\n switch (detail.severity) {\n case ErrorSeverity.Invariant:\n- return true;\n ... | 2023-06-15T18:34:49 |
nodejs/node | c1657510b55ed5e8719401278e462a917e2742df | 8125a7e89fa50d388778045bd5554f04aff03a11 | test_runner: fix watch mode race condition
PR-URL: https://github.com/nodejs/node/pull/52954
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il> | [
{
"path": "lib/internal/test_runner/runner.js",
"patch": "@@ -36,7 +36,6 @@ const { createInterface } = require('readline');\n const { deserializeError } = require('internal/error_serdes');\n const { Buffer } = require('buffer');\n const { FilesWatcher } = require('internal/watch_mode/files_watcher');\n-con... | 2024-05-14T08:31:02 |
vercel/next.js | 2ecfdb8bf3c2782f539ed494f6442942ec6c1023 | c8bcde6bf83fb7382d680525fece246f0b0d13fb | Fix a couple typos (#80080) | [
{
"path": "examples/cms-wordpress/README.md",
"patch": "@@ -153,7 +153,7 @@ module.exports = {\n ## Advanced Custom Fields PRO (optional, but recommended)\n \n I will recommend building your page content by using the [Flexible Content](https://www.advancedcustomfields.com/resources/flexible-content/) data t... | 2025-06-11T12:43:59 |
facebook/react | b68c409a6b8adb0e58d978b4d085b1197c030ac9 | fe91cd8ac18e3a99e6a941cc4c5b0a4f20edbd4a | [eslint-plugin] Throw non CompilerErrors | [
{
"path": "compiler/forget/packages/eslint-plugin-react-forget/src/rules/ReactForgetDiagnostics.ts",
"patch": "@@ -48,6 +48,8 @@ const rule: Rule.RuleModule = {\n });\n }\n }\n+ } else {\n+ throw new Error(err);\n }\n ... | 2023-06-15T18:34:46 |
golang/go | 8203265d5eef37bf41d7d2df126f77ebd5abc999 | beb314c0dbcbe03b576123e99e1331348f858ecc | cmd/compile, runtime: optimize concatbytes
CL 527935 optimized []byte(string1 + string2) to use runtime.concatbytes
to prevent concatenating of strings before converting to slices.
However, the optimization is implemented without allowing temporary
buffer for slice on stack, causing un-necessary allocations.
To fix t... | [
{
"path": "src/cmd/compile/internal/test/issue71943_test.go",
"patch": "@@ -0,0 +1,23 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package test\n+\n+import (\n+\t\"crypto/sha256\"\... | 2025-02-25T16:59:14 |
nodejs/node | efa63f3d054a42399b7183d4690dd5dfe65fbd02 | dcd8b82e15980077941d53560b266c5ed53fb9f0 | build: add option to enable clang-cl on Windows
Most changes are gated by the `clang==1` condition to avoid breaking
MSVC builds.
Select C/C++ language standard with ClCompile options.
This avoids passing the `-std:c++20` flag while compiling C code.
Do it only under clang option to avoid breaking addons until node-g... | [
{
"path": "common.gypi",
"patch": "@@ -152,6 +152,9 @@\n 'cflags': [ '-fPIC' ],\n 'ldflags': [ '-fPIC' ]\n }],\n+ ['clang==1', {\n+ 'msbuild_toolset': 'ClangCL',\n+ }],\n ],\n 'msvs_settings': {\n 'VCCLCompilerTool': {\... | 2024-05-13T19:05:05 |
vercel/next.js | 2251d0f74a25a9da0b0efb7b62431bab218d5b6a | b268caeac5f7cfefb90471252716bf854460d2e7 | docs: server-only/client-only in Next.js (#80408)
Closes:
https://linear.app/vercel/issue/DOC-4679/server-only-client-only-as-managed-by-nextjs
Fixes: https://github.com/vercel/next.js/issues/71071 | [
{
"path": "docs/01-app/01-getting-started/08-server-and-client-components.mdx",
"patch": "@@ -507,7 +507,7 @@ export default function Page() {\n \n ### Preventing environment poisoning\n \n-JavaScript modules can be shared between both Server and Client Components modules. This means it's possible to accide... | 2025-06-11T12:06:46 |
electron/electron | 2f2c43e5e513e65a0aabac62622d51a1dfe49357 | 169cf531ba72247552ade73f7107a38b4362eab4 | build: fix building with enable_plugins = false (#36193)
Co-authored-by: Milan Burda <miburda@microsoft.com> | [
{
"path": "BUILD.gn",
"patch": "@@ -665,6 +665,8 @@ source_set(\"electron_lib\") {\n sources += [\n \"shell/common/plugin_info.cc\",\n \"shell/common/plugin_info.h\",\n+ \"shell/renderer/electron_renderer_pepper_host_factory.cc\",\n+ \"shell/renderer/electron_renderer_pepper_host_f... | 2022-10-31T23:18:15 |
facebook/react | f5c249db8b0bec00faa9633d67814e980c24fbb5 | a1723e18fd42e67d610adb0107c9015319613bd7 | fix[devtools]: display NaN as string in values (#26947)
## Summary
>Warning: Received NaN for the `children` attribute. If this is
expected, cast the value to a string.
Fixes this warning, when we try to display NaN as NaN in key-value list. | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/KeyValue.js",
"patch": "@@ -255,6 +255,8 @@ export default function KeyValue({\n displayValue = 'null';\n } else if (value === undefined) {\n displayValue = 'undefined';\n+ } else if (isNaN(value)) {\n+ displayVa... | 2023-06-14T10:45:30 |
rust-lang/rust | a77b9e62ccf1f5fd93c6d899a37d074dd84d3eac | 8a133ce46e94007b68b1b511c52c9e4ccf520828 | Fix tense | [
{
"path": "src/doc/rustc-dev-guide/src/offload/internals.md",
"patch": "@@ -13,4 +13,4 @@ We use a single-source, two-pass compilation approach.\n \n First we compile all functions that should be offloaded for the device (e.g nvptx64, amdgcn-amd-amdhsa, intel in the future). Currently we require cumbersome ... | 2026-01-31T06:58:24 |
golang/go | 61641c11455af9571e6e01449c7ea774b0069594 | eed2208f152d1172993a3193374625683e244100 | cmd/link: put .got section in __DATA_CONST segment
On Darwin, the .got section can be placed in a read-only segment. Only the dynamic linker should modify it at start-up time.
Other read-only sections, like .typelink and .itablink, are already placed in the __DATA_CONST segment. Do the same for the .got section.
Fix... | [
{
"path": "src/cmd/link/internal/ld/data.go",
"patch": "@@ -1920,7 +1920,6 @@ func (state *dodataState) allocateDataSections(ctxt *Link) {\n \t\tsym.SFIPSINFO,\n \t\tsym.SELFSECT,\n \t\tsym.SMACHO,\n-\t\tsym.SMACHOGOT,\n \t\tsym.SWINDOWS,\n \t}\n \tfor _, symn := range writable {\n@@ -1932,6 +1931,9 @@ func... | 2025-01-24T11:23:42 |
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.