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 |
|---|---|---|---|---|---|
electron/electron | 5b18cc46bc4ef293a5cfe54c52b94447bd7dc11c | 7c79221a543eeb874b1f1aef90ccda894a7dc623 | chore: bump chromium to 129.0.6630.0 (main) (#43087)
* chore: bump chromium in DEPS to 129.0.6623.0
* chore: update mas_avoid_private_macos_api_usage.patch.patch
remove the changes to media/audio/mac/audio_manager_mac.cc,
since upstream has also made this change now.
Xref: https://chromium-review.googlesourc... | [
{
"path": "BUILD.gn",
"patch": "@@ -38,7 +38,7 @@ if (is_mac) {\n import(\"build/rules.gni\")\n \n assert(\n- mac_deployment_target == \"10.15\",\n+ mac_deployment_target == \"11.0\",\n \"Chromium has updated the mac_deployment_target, please update this assert, update the supported vers... | 2024-08-02T14:02:11 |
rust-lang/rust | d6eefce00d307fbc7d939671e390abb5beed24e6 | 53fffef2b96022b796b3d2c1491e5b1d7837b627 | Remember whether a struct literal had syntax errors.
This adds a variant `NoneWithError` to AST and HIR representations of
the “rest” or “tail”, which is currently always treated identically to
the `None` variant. | [
{
"path": "compiler/rustc_ast/src/ast.rs",
"patch": "@@ -1724,6 +1724,12 @@ pub enum StructRest {\n Rest(Span),\n /// No trailing `..` or expression.\n None,\n+ /// No trailing `..` or expression, and also, a parse error occurred inside the struct braces.\n+ ///\n+ /// This struct shoul... | 2026-03-01T01:25:41 |
nodejs/node | 90ab559f4df36dbb0b2be0f55b18ad192289645e | 9e6a62f211273300ab31a2b26e37312156741ba5 | typings: fix `ImportModuleDynamicallyCallback` return type
PR-URL: https://github.com/nodejs/node/pull/57160
Refs: https://github.com/nodejs/node/pull/56919/files#r1955336054
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: James M Snell ... | [
{
"path": "lib/internal/modules/esm/loader.js",
"patch": "@@ -323,7 +323,7 @@ class ModuleLoader {\n * @param {string} source Source code. TODO(joyeecheung): pass the raw buffer.\n * @param {string} isMain Whether this module is a main module.\n * @param {CJSModule|undefined} parent Parent module, ... | 2025-02-21T17:06:34 |
golang/go | 0e1b98993ea6574819813cfad89d7fd1d1c47552 | 84e9ab398438bc728683ca68485c6e89526b0441 | testing: exit B.Loop early upon saturation
There's a cap of 1 billion benchmark iterations because more than that
is usually not going to give more useful data. Unfortunately, the
existing implementation neglected to check whether the 1e9 cap had
already been exceeded when it adjusted the number of iterations in the
B... | [
{
"path": "src/testing/benchmark.go",
"patch": "@@ -298,6 +298,9 @@ func (b *B) doBench() BenchmarkResult {\n \treturn b.result\n }\n \n+// Don't run more than 1e9 times. (This also keeps n in int range on 32 bit platforms.)\n+const maxBenchPredictIters = 1_000_000_000\n+\n func predictN(goalns int64, prevI... | 2025-08-31T17:34:47 |
electron/electron | 7c79221a543eeb874b1f1aef90ccda894a7dc623 | e7ca92a574a47dcfc2e00dc2d0a49410146f2284 | docs: fixed broken electron-fiddle links in the "Tutorial - Publishing and Updating" doc (#43129)
fixed electron-fiddle build and config links | [
{
"path": "docs/tutorial/tutorial-6-publishing-updating.md",
"patch": "@@ -222,8 +222,8 @@ rest of our docs and happy developing! If you have questions, please stop by our\n [code-signed]: ./code-signing.md\n [discord server]: https://discord.gg/electronjs\n [electron fiddle]: https://www.electronjs.org/fid... | 2024-08-02T01:28:50 |
facebook/react | 97e2ce6a003db070d1d14ca25ac4b30e1df4a8ce | e483df4658473ca9c917a42be4869d445be00807 | [Flight] Enable Server Action Source Maps in flight-esm Fixture (#30763)
Stacked on #30758 and #30755.
This is copy paste from #30755 into the ESM package. We use the
`webpack-sources` package for the source map utility but it's not
actually dependent on Webpack itself. Could probably inline it in the
build. | [
{
"path": "fixtures/flight-esm/package.json",
"patch": "@@ -13,14 +13,15 @@\n \"prompts\": \"^2.4.2\",\n \"react\": \"experimental\",\n \"react-dom\": \"experimental\",\n- \"undici\": \"^5.20.0\"\n+ \"undici\": \"^5.20.0\",\n+ \"webpack-sources\": \"^3.2.0\"\n },\n \"scripts\": {\n ... | 2024-08-22T16:35:16 |
vercel/next.js | 051351309f13215d80fb6aacab3bf6c7b0de5b03 | 7336c550033789e5969d3150b5587f56201e1408 | Fix build compile mode if pages dir does not exist in Next.js 16 (#84783)
## Fixing a bug
### What?
Fixes `next build --experimental-build-mode=compile` for standalone
output when there is no pages directory (app-dir only projects) in Next
16.
### Why?
When building a Next.js 16 application with:
- `output: 'stand... | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -765,17 +765,22 @@ async function writeStandaloneDirectory(\n )\n }\n \n- await recursiveCopy(\n- path.join(distDir, SERVER_DIRECTORY, 'pages'),\n- path.join(\n- distDir,\n- STANDALONE_DIRECTORY,\n-... | 2025-10-14T15:32:45 |
nodejs/node | 8fc919d3cb29a9a4664260bafe8b213efa810271 | 772c609eb49420aa67aa594dc9bef3b6abbda0f0 | test: improve error output of test-http2-client-promisify-connect-error
PR-URL: https://github.com/nodejs/node/pull/57135
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "test/parallel/test-http2-client-promisify-connect-error.js",
"patch": "@@ -12,13 +12,10 @@ const server = http2.createServer();\n \n server.listen(0, common.mustCall(() => {\n const port = server.address().port;\n- server.close(() => {\n+ server.close(common.mustCall(() => {\n const conne... | 2025-02-21T11:39:44 |
electron/electron | 3a07bd8821f3ea70edc0a86d90270a47adf0309d | cc956420ef39c9b659a11965721bcc972b0f6d88 | fix: take bluetooth serial ports into account in `serial.getPorts()` (#43101)
* fix: take bluetooth serial ports into account in serial.getPorts()
* chore: remove port.path.LossyDisplayName() | [
{
"path": "shell/browser/serial/serial_chooser_context.cc",
"patch": "@@ -25,14 +25,15 @@ namespace electron {\n \n constexpr char kPortNameKey[] = \"name\";\n constexpr char kTokenKey[] = \"token\";\n+constexpr char kBluetoothDevicePathKey[] = \"bluetooth_device_path\";\n #if BUILDFLAG(IS_WIN)\n-const char... | 2024-08-01T16:13:31 |
facebook/react | e483df4658473ca9c917a42be4869d445be00807 | 7a3fcc9898d57a723613814bd19ec1d60805e5c8 | [Flight ESM] Wire up Source Maps in the flight-esm fixture (#30758)
Same as #29708 but for the flight-esm fixture. | [
{
"path": "fixtures/flight-esm/server/global.js",
"patch": "@@ -131,6 +131,45 @@ app.use(\n express.static('node_modules/react-server-dom-esm/esm')\n );\n \n+if (process.env.NODE_ENV === 'development') {\n+ app.get('/source-maps', async function (req, res, next) {\n+ // Proxy the request to the region... | 2024-08-22T16:34:48 |
vercel/next.js | f06d951d6addca43cf47c43c61f368221c889e28 | ef16156880a1c6c300b5680fe3a0d096bf31f2cb | [Cache Components] Dev - restart render on cache miss (#84088)
This PR replaces the previous approach to the dev-time cache warmup. On
full-page requests, we
1. We attempt an initial RSC render. It uses a RequestStore, but
includes a `cacheSignal` and a `prerenderResumeDataCache` to be filled
1. if there's no cache mi... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -872,5 +872,7 @@\n \"871\": \"Image with src \\\"%s\\\" is using a query string which is not configured in images.localPatterns.\\\\nRead more: https://nextjs.org/docs/messages/next-image-unconfigured-localpatterns\",\n \"872\": \"updateTag can only be... | 2025-10-14T14:33:05 |
nodejs/node | 8d10bc7b09efa49e17df17afabfd75462c231058 | d601c7d1048931156999d809407ab1036a7077fd | module: improve error message from asynchronicity in require(esm)
- Improve the error message that shows up when there is a race
from doing require(esm) and import(esm) at the same time.
- Improve error message of ERR_REQUIRE_ASYNC_MODULE by showing
parent and target file names, if available.
Drive-by: split the ... | [
{
"path": "lib/internal/errors.js",
"patch": "@@ -1656,9 +1656,18 @@ E('ERR_QUIC_ENDPOINT_CLOSED', 'QUIC endpoint closed: %s (%d)', Error);\n E('ERR_QUIC_OPEN_STREAM_FAILED', 'Failed to open QUIC stream', Error);\n E('ERR_QUIC_TRANSPORT_ERROR', 'A QUIC transport error occurred. %d [%s]', Error);\n E('ERR_QU... | 2025-02-17T18:44:50 |
facebook/react | 0ef00b3e17447ae94dc5701a5ad410c137680d86 | f7bb717e9e9f876c6a466a5f6d31004c7f7590c5 | [compiler] Transitively freezing functions marks values as frozen, not effects
The fixture from the previous PR was getting inconsistent behavior because of the following:
1. Create an object in a useMemo
2. Create a callback in a useCallback, where the callback captures the object from (1) into a local object, then p... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferReferenceEffects.ts",
"patch": "@@ -453,6 +453,37 @@ class InferenceState {\n }\n }\n \n+ freezeValues(values: Set<InstructionValue>, reason: Set<ValueReason>): void {\n+ for (const value of values) {\n+ this.#values.... | 2024-08-21T21:07:12 |
electron/electron | 2337d8676dbde6cd10f6112a13e73e3bb18a28e5 | 45e5ccc55e8b13a45899bacff5cb98c9994446f2 | fix: handle failing to enter fullscreen on macOS (#43112)
* fix: handle failing to enter/exit fullscreen on macOS
On macOS, failing to enter/exit fullscreen can fail. If this happens,
properly restore the original window state.
* refactor: remove fail to exit fullscreen handlers
Seem to be unnecessary since ... | [
{
"path": "shell/browser/native_window_mac.h",
"patch": "@@ -167,6 +167,7 @@ class NativeWindowMac : public NativeWindow,\n void DetachChildren() override;\n \n void NotifyWindowWillEnterFullScreen();\n+ void NotifyWindowDidFailToEnterFullScreen();\n void NotifyWindowWillLeaveFullScreen();\n \n // ... | 2024-08-01T10:13:13 |
vercel/next.js | e30082161443d774b18182256bc980f3ee4fbaac | de2b47f8bee1e8e0866b33d3f8cf202ebfc8dfaa | [mcp] capture next config schema errors (#84832) | [
{
"path": "packages/next/src/server/config.ts",
"patch": "@@ -46,6 +46,7 @@ import { interopDefault } from '../lib/interop-default'\n import { djb2Hash } from '../shared/lib/hash'\n import type { NextAdapter } from '../build/adapter/build-complete'\n import { HardDeprecatedConfigError } from '../shared/lib/... | 2025-10-13T22:08:03 |
rust-lang/rust | af299893fdbf2bef1716705f7c458ea61eb4ddf0 | 99246f40931ce1d1d29517b61bd70dd9ed4fbe5d | Introduce --ci flag in tidy
* add --ci flag in tidy
This commit introduces --ci flag in tidy because currently bootstrap can't pass its ci env information to tidy. It also modifies how CiInfo initialize its ci_env variable. tidy codes which uses CiEnv::is_ci for checking ci are now using ci_env in CiInfo.
* address r... | [
{
"path": "src/bootstrap/src/core/build_steps/test.rs",
"patch": "@@ -1320,6 +1320,9 @@ impl Step for Tidy {\n if builder.config.cmd.bless() {\n cmd.arg(\"--bless\");\n }\n+ if builder.config.is_running_on_ci() {\n+ cmd.arg(\"--ci=true\");\n+ }\n ... | 2026-02-28T21:37:32 |
facebook/react | f7bb717e9e9f876c6a466a5f6d31004c7f7590c5 | eb3ad065a10e542eb501bcb7dba7f9617e8c363e | [compiler] Repro for missing memoization due to inferred mutation
This fixture bails out on ValidatePreserveExistingMemo but would ideally memoize since the original memoization is safe. It's trivial to make it pass by commenting out the commented line (`LogEvent.log(() => object)`). I would expect the compiler to inf... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidatePreservedManualMemoization.ts",
"patch": "@@ -23,7 +23,7 @@ import {\n ScopeId,\n SourceLocation,\n } from '../HIR';\n-import {printManualMemoDependency} from '../HIR/PrintHIR';\n+import {printIdentifier, printManualMemoDepe... | 2024-08-21T21:07:11 |
electron/electron | a68a33f036ad782165140ab36d9054a03a2d194a | 791e6df82a691b0282d64bfa582e2cd853b5f155 | docs: fix broken link in bug report template (#43105)
chore: fix broken link in bug report template | [
{
"path": ".github/ISSUE_TEMPLATE/bug_report.yml",
"patch": "@@ -20,8 +20,8 @@ body:\n description: |\n What version of Electron are you using?\n \n- Note: Please only report issues for [currently supported versions of Electron](https://www.electronjs.org/docs/latest/tutorial/support#currentl... | 2024-07-31T15:45:07 |
vercel/next.js | 53e104259d39abfc1455cea245c97bba2fe328f1 | 632fa5cd72a011532480ba3689acaf322e173060 | Revert "Fix flakey overlay feedback test" (#84819) | [
{
"path": "test/development/error-overlay/index.test.tsx",
"patch": "@@ -1,5 +1,5 @@\n import { nextTestSetup } from 'e2e-utils'\n-import { assertHasRedbox, retry } from 'next-test-utils'\n+import { assertHasRedbox } from 'next-test-utils'\n \n describe('DevErrorOverlay', () => {\n const { next } = nextTe... | 2025-10-13T15:19:48 |
golang/go | 5a0446d4498fb59853c81300ec387374a98f23bd | c39b2fdd1ec86f68668141a0901d5f3fc634854e | [dev.simd] simd/_gen/simdgen, cmd/compile: add memory op machine ops
This CL adds the machine ops for memory-op and also their prog writing
logic.
This CL also fixes a bug in the XED parser. Previously the
merge of machine ops is not checking the CPU feature, so some AVX
instruction might have their "memFeatures" fie... | [
{
"path": "src/cmd/compile/internal/amd64/simdssa.go",
"patch": "@@ -1353,6 +1353,514 @@ func ssaGenSIMDValue(s *ssagen.State, v *ssa.Value) bool {\n \t\tssa.OpAMD64VPSHRDQMasked512:\n \t\tp = simdV2kvImm8(s, v)\n \n+\tcase ssa.OpAMD64VPABSDMasked128load,\n+\t\tssa.OpAMD64VPABSDMasked256load,\n+\t\tssa.OpAM... | 2025-09-04T18:20:59 |
facebook/react | dd9117e3134f24d1aa39e405a95ab54188a017dd | dc32c7f35ed6699e302dc7dbae17804555c669c6 | [Flight] Source Map Actions in Reference Node Loader Transforms (#30755)
Follow up to #30741.
This is just for the reference Webpack implementation.
If there is a source map associated with a Node ESM loader, we generate
new source map entries for every `registerServerReference` call.
To avoid messing too mu... | [
{
"path": "fixtures/flight/package.json",
"patch": "@@ -49,6 +49,7 @@\n \"react-dev-utils\": \"^12.0.1\",\n \"react-dom\": \"experimental\",\n \"react-refresh\": \"^0.11.0\",\n+ \"react-server-dom-webpack\": \"experimental\",\n \"resolve\": \"^1.20.0\",\n \"resolve-url-loader\": \"^4.... | 2024-08-21T13:52:17 |
electron/electron | ed3242adc1ac2cd1e549a9a8a528b59add6764af | 87fb2ad70cf778752aadc5496f534b7a0793da61 | fix: vibrant view is inserted into Views API hierarchy (#43078)
* fix: vibrant view is inserted into Views API hierarchy (#42263)
* Update shell/browser/native_window_mac.mm
Co-authored-by: Charles Kerr <charles@charleskerr.com>
---------
Co-authored-by: Hans Halverson <hans_halverson@alumni.brown.edu>
Co... | [
{
"path": "shell/browser/native_window_mac.h",
"patch": "@@ -12,6 +12,7 @@\n #include <string>\n #include <vector>\n \n+#include \"base/memory/raw_ptr.h\"\n #include \"electron/shell/common/api/api.mojom.h\"\n #include \"shell/browser/native_window.h\"\n #include \"third_party/skia/include/core/SkRegion.h\"... | 2024-07-30T23:21:20 |
vercel/next.js | 632fa5cd72a011532480ba3689acaf322e173060 | 90bc934b52c23a6a579c8225e481a4f5ce99e5ce | fix missing flight-router-state-tree header normalization (#84718)
When we pass the flight-router-state-tree header to the server, we
should pass it through the normalizer to ensure we remove things that
are client-specific (eg removing "refresh" markers and URLs, which are
only used on the client) | [
{
"path": "packages/next/src/client/components/segment-cache-impl/cache.ts",
"patch": "@@ -71,7 +71,10 @@ import type {\n FlightRouterState,\n NavigationFlightResponse,\n } from '../../../shared/lib/app-router-types'\n-import { normalizeFlightData } from '../../flight-data-helpers'\n+import {\n+ normal... | 2025-10-13T15:12:25 |
golang/go | cf5e993177dac0d9fd30e961416a391c37da1815 | cdb3d467fa2df80611cc7576ce3b3806aa715fa3 | cmd/link: allow one to specify the data section in the internal linker
Fixes #74945
Change-Id: Ia73a8dcdf707222e822522daaa7f31a38b1c31e6
GitHub-Last-Rev: da1526ad8cebd5cfa2f979d49d86f3424d192ce0
GitHub-Pull-Request: golang/go#75117
Reviewed-on: https://go-review.googlesource.com/c/go/+/698355
Reviewed-by: Mark Freema... | [
{
"path": "src/cmd/link/elf_test.go",
"patch": "@@ -59,6 +59,12 @@ package main\n func main() {}\n `\n \n+var goSourceWithData = `\n+package main\n+var globalVar = 42\n+func main() { println(&globalVar) }\n+`\n+\n // The linker used to crash if an ELF input file had multiple text sections\n // with the same... | 2025-09-10T19:25:49 |
facebook/react | 85180b8cf84274795986c8f2c8473f8816db8b7b | 4c2dfb3126f87fc270ad8a07d6180744d25cc585 | [Fizz][Static] when aborting a prerender halt unfinished boundaries instead of erroring (#30732)
When we introduced prerendering for flight we modeled an abort of a
flight prerender as having unfinished rows. This is similar to how
postpone was already implemented when you postponed from "within" a
prerender using ... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -7746,6 +7746,112 @@ describe('ReactDOMFizzServer', () => {\n );\n });\n \n+ // @gate enableHalt\n+ it('can resume a prerender that was aborted', async () => {\n+ const promise = new Promise(r => {});\n+\n+ l... | 2024-08-20T20:30:51 |
electron/electron | 87fb2ad70cf778752aadc5496f534b7a0793da61 | 1bcc566ad898d97ec13623bdf01d7bf4f770a714 | build: fixup ffmpeg release on x64 macOS (#43093)
chore: fixup arch on x64 macOS ffmpeg | [
{
"path": ".github/actions/build-electron/action.yml",
"patch": "@@ -36,7 +36,7 @@ runs:\n shell: bash\n if: ${{ inputs.target-arch == 'x64' && inputs.target-platform == 'macos' }}\n run: |\n- GN_APPENDED_ARGS=\"$GN_EXTRA_ARGS v8_snapshot_toolchain=\\\"//build/toolchain/mac:clang_x6... | 2024-07-30T20:35:11 |
vercel/next.js | 7abd8089a700aea9467e6d7986924648bdc4b822 | 04c7cef99b9effee8a92563b0f70db45621632ae | Turbopack: use the same serialization method for lookup as for storing (#84765)
### What?
This makes sure to use the same method for serializing CachedTaskType for storing and lookup.
Before that we instantiated the serialization twice and that caused some weird behavior on linux.
Before this fix I was seeing that s... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/kv_backing_storage.rs",
"patch": "@@ -357,8 +357,12 @@ impl<T: KeyValueDatabase + Send + Sync + 'static> BackingStorageSealed\n \n let mut task_type_bytes = Vec::new();\n for (task_type, task_id) in u... | 2025-10-13T11:21:33 |
golang/go | fef360964c85d47406bdfbf7333591686720663b | 7d562b8460a210ad9d0b65a44fbfb71d2ea81789 | archive/tar: fix typo in benchmark name
This was accidentally introduced in CL 662835.
Change-Id: I5c7ac67337e33e82037414377912b57d2a45be91
Reviewed-on: https://go-review.googlesource.com/c/go/+/702275
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Auto-Submit:... | [
{
"path": "src/archive/tar/strconv_test.go",
"patch": "@@ -440,7 +440,7 @@ func TestFormatPAXRecord(t *testing.T) {\n \t}\n }\n \n-func BenchmarkParsePAXTIme(b *testing.B) {\n+func BenchmarkParsePAXTime(b *testing.B) {\n \ttests := []struct {\n \t\tname string\n \t\tin string",
"additions": 1,
"de... | 2025-09-10T00:24:20 |
nodejs/node | 867a754acd672a5d5a191d07d03a2a79a72459c9 | 03fdde505e633381a82aa5b8b8d6fe331fa75bb6 | doc: fix 'introduced_in' version in typescript module
PR-URL: https://github.com/nodejs/node/pull/57109
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/typescript.md",
"patch": "@@ -10,7 +10,7 @@ changes:\n description: Added `--experimental-transform-types` flag.\n -->\n \n-<!--introduced_in=v23.6.0-->\n+<!--introduced_in=v22.6.0-->\n \n > Stability: 1.1 - Active development\n ",
"additions": 1,
"deletions": 1,
"language... | 2025-02-20T03:40:16 |
electron/electron | 47dde3b6e23bba1b76387d4478e6d36483116fee | 1a6e6518440cb3cf325b4648e2dfef8f9e68053f | chore: remove unused class `electron::ObjectLifeMonitor` (#43089)
* chore: remove unused electron::ObjectLifeMonitor
The last users were removed in June 2020 e1e73fa5f (#24115)
and May 2020 9d7ba982 (#23592).
* fixup! chore: remove unused electron::ObjectLifeMonitor
fix: oops | [
{
"path": "filenames.gni",
"patch": "@@ -562,8 +562,6 @@ filenames = {\n \"shell/common/api/electron_bindings.cc\",\n \"shell/common/api/electron_bindings.h\",\n \"shell/common/api/features.cc\",\n- \"shell/common/api/object_life_monitor.cc\",\n- \"shell/common/api/object_life_monitor.h\",... | 2024-07-30T13:25:28 |
facebook/react | a960b92cb93e7d006e5e8de850f9b8b51f655c90 | 0fa9476b9b9b7e284fb6ebe7e1c46a6a6ae85f27 | [Flight] model halting as never delivered chunks (#30740)
stacked on: #30731
We've refined the model of halting a prerender. Now when you abort
during a prerender we simply omit the rows that would complete the
flight render. This is analagous to prerendering in Fizz where you must
resume the prerender to actual... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -46,7 +46,6 @@ import {\n enableRefAsProp,\n enableFlightReadableStream,\n enableOwnerStacks,\n- enableHalt,\n } from 'shared/ReactFeatureFlags';\n \n import {\n@@ -1997,20 +1996,6 @@ function resolvePostponeDev(\n }\n }\n \n-... | 2024-08-20T02:34:20 |
vercel/next.js | 04c7cef99b9effee8a92563b0f70db45621632ae | cf76c5b72d3f0f870e8163d5cee635a8564d1bd4 | [docs] fix(with-supabase): Update README env variables (#84745)
Closes #84734
Fixes environmental variable names in `with-supabase` example README to
match the actual `.env.example` file.
Updates `NEXT_PUBLIC_SUPABASE_ANON_KEY` to
`NEXT_PUBLIC_SUPABASE_PUBLISHABLE_OR_ANON_KEY` in two locations.
---------
Co-author... | [
{
"path": "examples/with-supabase/.env.example",
"patch": "@@ -1,4 +1,4 @@\n # Update these with your Supabase details from your project settings > API\n # https://app.supabase.com/project/_/settings/api\n NEXT_PUBLIC_SUPABASE_URL=your-project-url\n-NEXT_PUBLIC_SUPABASE_PUBLISHABLE_OR_ANON_KEY=your-anon-key... | 2025-10-13T11:07:28 |
golang/go | c34958234414a6ec8512967b3681d45314b50d3a | 253dd08f5df3a45eafc97eec388636fcabfe0174 | crypto/rsa: don't test CL 687836 against v1.0.0 FIPS 140-3 module
Fixes #75343 (again)
Updates #74115
Change-Id: I6a6a696431d12e45ec9e302e63ed18990c5ee9d9
Reviewed-on: https://go-review.googlesource.com/c/go/+/702615
Auto-Submit: Filippo Valsorda <filippo@golang.org>
Reviewed-by: Michael Pratt <mpratt@google.com>
Rev... | [
{
"path": "src/crypto/rsa/rsa_test.go",
"patch": "@@ -10,6 +10,7 @@ import (\n \t\"crypto\"\n \t\"crypto/internal/boring\"\n \t\"crypto/internal/cryptotest\"\n+\t\"crypto/internal/fips140\"\n \t\"crypto/rand\"\n \t. \"crypto/rsa\"\n \t\"crypto/sha1\"\n@@ -1245,6 +1246,9 @@ func TestModifiedPrivateKey(t *tes... | 2025-09-10T21:06:39 |
nodejs/node | 15fec136e892ab0c2f25d2146c875705dfaf3800 | 1dc882d6a09481a1981ba7f1c566096a428eda02 | cli: allow --cpu-prof* in NODE_OPTIONS
Fixes: https://github.com/nodejs/node/issues/56944
PR-URL: https://github.com/nodejs/node/pull/57018
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "doc/api/cli.md",
"patch": "@@ -3176,6 +3176,10 @@ one is included in the list below.\n * `--allow-wasi`\n * `--allow-worker`\n * `--conditions`, `-C`\n+* `--cpu-prof-dir`\n+* `--cpu-prof-interval`\n+* `--cpu-prof-name`\n+* `--cpu-prof`\n * `--diagnostic-dir`\n * `--disable-proto`\n * `--disable-s... | 2025-02-20T10:11:01 |
electron/electron | 1a6e6518440cb3cf325b4648e2dfef8f9e68053f | d09a2e513c6a64c96bf0e60699e88dfe7b17791d | test: fixup flaky visibility test (#43064) | [
{
"path": "spec/api-web-contents-view-spec.ts",
"patch": "@@ -3,7 +3,7 @@ import { BaseWindow, BrowserWindow, View, WebContentsView, webContents, screen }\n import { once } from 'node:events';\n \n import { closeAllWindows } from './lib/window-helpers';\n-import { defer, ifdescribe } from './lib/spec-helper... | 2024-07-30T13:14:45 |
facebook/react | 9d082b550086e6be5f54872d518efa14303491db | d2413bf377e7f73661b0700aeb95d07fb2911efc | [Flight] model halted references explicitly (#30731)
using infinitely suspending promises isn't right because this will parse
as a promise which is only appropriate if the value we're halting at is
a promise. Instead we need to have a special marker type that says this
reference will never resolve. Additionally fli... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -46,6 +46,7 @@ import {\n enableRefAsProp,\n enableFlightReadableStream,\n enableOwnerStacks,\n+ enableHalt,\n } from 'shared/ReactFeatureFlags';\n \n import {\n@@ -1986,6 +1987,20 @@ function resolvePostponeDev(\n }\n }\n \n+... | 2024-08-19T18:24:41 |
vercel/next.js | bb964e4d5c2269af10dc4a92e026bb2d7aba3e76 | 51f561bfc56d7af62a5802910d8e42206ae4bb74 | fix: release next-rspack ci (#84673)
should use `secrets.NPM_TOKEN_ELEVATED` to `env.NPM_TOKEN` | [
{
"path": ".github/workflows/release-next-rspack.yml",
"patch": "@@ -118,7 +118,7 @@ jobs:\n run: |\n echo \"//registry.npmjs.org/:_authToken=$NPM_TOKEN\" >> ~/.npmrc\n env:\n- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}\n+ NPM_TOKEN: ${{ secrets.NPM_TOKEN_ELEVATED }}\n \... | 2025-10-11T07:00:52 |
golang/go | 253dd08f5df3a45eafc97eec388636fcabfe0174 | 2009e6c596551673ebb12050daa30171171cb432 | debug/macho: filter non-external symbols when reading imported symbols without LC_DYSYMTAB
File.ImportedSymbols will return symbols with a type that has one of the
N_STAB (0xe0) bits set and no section. That's not the expected behavior,
as those symbols might not be external.
We should expand the type check to also a... | [
{
"path": "src/debug/macho/file.go",
"patch": "@@ -735,9 +735,10 @@ func (f *File) ImportedSymbols() ([]string, error) {\n \t\tconst (\n \t\t\tN_TYPE = 0x0e\n \t\t\tN_UNDF = 0x0\n+\t\t\tN_EXT = 0x01\n \t\t)\n \t\tfor _, s := range st.Syms {\n-\t\t\tif s.Type&N_TYPE == N_UNDF && s.Sect == 0 {\n+\t\t\tif s.T... | 2025-09-10T11:16:00 |
nodejs/node | baa60ce03c699a84c8c99560ef78f6eea4099bdd | a724a9e8dd4c91c1a45521c962b8df8edfe21b13 | test_runner: allow special characters in snapshot keys
Fixes: https://github.com/nodejs/node/issues/56836
PR-URL: https://github.com/nodejs/node/pull/57017
Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il> | [
{
"path": "lib/internal/test_runner/snapshot.js",
"patch": "@@ -77,7 +77,7 @@ class SnapshotFile {\n }\n \n setSnapshot(id, value) {\n- this.snapshots[templateEscape(id)] = value;\n+ this.snapshots[escapeSnapshotKey(id)] = value;\n }\n \n nextId(name) {\n@@ -290,6 +290,13 @@ function validateF... | 2025-02-19T06:34:08 |
electron/electron | d09a2e513c6a64c96bf0e60699e88dfe7b17791d | 7e9eb9e3f1ea4ee73c01e1d1860e2069ee0034d0 | fix: `showInactive` window not showing (#43079)
fix: showInactive window not showing
Refs https://github.com/electron/electron/pull/42226 and https://github.com/electron/electron/pull/43033 | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -466,7 +466,7 @@ void ReorderChildWindowAbove(NSWindow* child_window, NSWindow* other_window) {\n if (parent())\n InternalSetParentWindow(parent(), true);\n \n- [window_ orderFrontKeepWindowKeyState];\n+ [window_ orderFrontRegardless];\n }... | 2024-07-30T10:37:27 |
facebook/react | d2413bf377e7f73661b0700aeb95d07fb2911efc | 6ebfd5b0829c3e7a977ef4d9a0bd96436c681251 | [compiler] Validate against JSX in try statements
Per comments on the new validation pass, this disallows creating JSX (expression/fragment) within a try statement. Developers sometimes use this pattern thinking that they can catch errors during the rendering of the element, without realizing that rendering is lazy. T... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -105,6 +105,7 @@ import {outlineFunctions} from '../Optimization/OutlineFunctions';\n import {propagatePhiTypes} from '../TypeInference/PropagatePhiTypes';\n import {lowerContextAccess} from '../Optimization/L... | 2024-08-17T00:05:29 |
vercel/next.js | 4614b00f924062a4a75c0f45a3878bfed2ce5a92 | 37f4c793c96bb730fa1d06e4e393e78028f08dcb | Add 16.0.0-beta.0 to next/third-parties peerDeps (#84741)
Installing `@next/third-parties` warns about peerDeps
`next@16.0.0-beta.0`
```
Results:
0 errors
41 unmodified
0 skipped
0 ok
Time elapsed: 2.276seconds
✔ Codemods have been applied successfully.
⚠ Found 1 dependency that seem incompatible with the upgraded p... | [
{
"path": "packages/third-parties/package.json",
"patch": "@@ -32,7 +32,7 @@\n \"typescript\": \"5.9.2\"\n },\n \"peerDependencies\": {\n- \"next\": \"^13.0.0 || ^14.0.0 || ^15.0.0\",\n+ \"next\": \"^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0-beta.0\",\n \"react\": \"^18.2.0 || 19.0.0-rc-de68... | 2025-10-10T19:58:38 |
nodejs/node | 7a6b12895eb7580bdc2efae07be164decfd63a49 | 0192a7d05b6c885f9d2d370c14113957be007bee | doc: fix link and history of `SourceMap` sections
PR-URL: https://github.com/nodejs/node/pull/57098
Fixes: https://github.com/nodejs/node/issues/57094
Refs: https://github.com/nodejs/node/pull/48461
Refs: https://github.com/nodejs/node/pull/47790
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Jacob Smi... | [
{
"path": "doc/api/module.md",
"patch": "@@ -1664,6 +1664,13 @@ added:\n \n #### `new SourceMap(payload[, { lineLengths }])`\n \n+<!-- YAML\n+changes:\n+ - version: v20.5.0\n+ pr-url: https://github.com/nodejs/node/pull/48461\n+ description: Add support for `lineLengths`.\n+-->\n+\n * `payload` {Obje... | 2025-02-18T19:26:40 |
golang/go | de5d7eccb99088e3ab42c0d907da6852d8f9cebe | 8098b99547e2bb802c976a424e486ba94d3222a8 | runtime/internal/maps: only conditionally clear groups when sparse
We only want to do the work of clearing slots
if they are full. But we also don't want to do too
much work to figure out whether a slot is full or not,
especially if clearing a slot is cheap.
1) We decide group-by-group instead of slot-by-slot.
If... | [
{
"path": "src/internal/runtime/maps/table.go",
"patch": "@@ -604,12 +604,37 @@ func (t *table) Clear(typ *abi.MapType) {\n \tif t.used == 0 && t.growthLeft == mgl { // no current entries and no tombstones\n \t\treturn\n \t}\n-\tfor i := uint64(0); i <= t.groups.lengthMask; i++ {\n-\t\tg := t.groups.group(t... | 2025-08-21T00:33:14 |
facebook/react | 6ebfd5b0829c3e7a977ef4d9a0bd96436c681251 | 7954db9398b9afa962167577a6c6940be3856c39 | [Flight] Source Map Server Actions to their Server Location (#30741)
This uses a similar technique to what we use to generate fake stack
frames for server components. This generates an eval:ed wrapper function
around the Server Reference proxy we create on the client. This wrapper
function gets the original `name` ... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -13,6 +13,7 @@ import type {\n ReactComponentInfo,\n ReactAsyncInfo,\n ReactStackTrace,\n+ ReactCallSite,\n } from 'shared/ReactTypes';\n import type {LazyComponent} from 'react/src/ReactLazy';\n \n@@ -59,7 +60,7 @@ import {\n ... | 2024-08-18T16:31:45 |
vercel/next.js | 37f4c793c96bb730fa1d06e4e393e78028f08dcb | 537f8c78903990aba7eaf636b3460a6f1e05a33c | [turbopack] Fix a few references to caching configuration as it is no longer canary guarded (#84761) | [
{
"path": "docs/01-app/03-api-reference/05-config/01-next-config-js/turbopackFileSystemCache.mdx",
"patch": "@@ -2,16 +2,13 @@\n title: Turbopack FileSystem Caching\n nav_title: turbopackFileSystemCache\n description: Learn how to enable FileSystem Caching for Turbopack builds\n-version: canary\n ---\n \n #... | 2025-10-10T19:46:14 |
electron/electron | e70ce89235825d19bf1bca5a054d311231925b21 | 92496c1930e35de04725a61e60817704832372b2 | chore: more iwyu (#43063)
* chore: iwyu shell/browser/electron_pdf_document_helper_client.h
* chore: iwyu shell/browser/hid/electron_hid_delegate.h
* chore: iwyu content/public/browser/web_contents.h
* chore: iwyu shell/browser/usb/electron_usb_delegate.h
* chore: iwyu shell/browser/browser_observer.h
*... | [
{
"path": "shell/app/electron_content_client.h",
"patch": "@@ -8,7 +8,6 @@\n #include <string_view>\n #include <vector>\n \n-#include \"base/files/file_path.h\"\n #include \"content/public/common/content_client.h\"\n \n namespace electron {",
"additions": 0,
"deletions": 1,
"language": "C/C++ He... | 2024-07-29T17:42:57 |
golang/go | 8098b99547e2bb802c976a424e486ba94d3222a8 | fe5420b054a091f59f5adbd78f4716d20c7f484c | internal/runtime/maps: speed up Clear
We don't need to know the actual full slots, just whether there
are any or not.
The test for any full slots is simpler on amd64. We don't have to
use PMOVMSKB and do the intreg->floatreg transfer.
Fixes #75097
Change-Id: Iace1c100618d7fc2ac5ddd5fe9e8fe5c9595243f
Reviewed-on: ht... | [
{
"path": "src/internal/runtime/maps/group.go",
"patch": "@@ -215,6 +215,12 @@ func (g ctrlGroup) matchFull() bitset {\n \treturn ctrlGroupMatchFull(g)\n }\n \n+// anyFull reports whether any slots in the group are full.\n+func (g ctrlGroup) anyFull() bool {\n+\t// A slot is full iff bit 7 is unset. Test wh... | 2025-08-20T23:53:09 |
nodejs/node | ea2004a2acd3c2ad19d83944dd7e523fb7039803 | ecf803daca529d583d19db355e164f6c78806796 | module: allow omitting context in synchronous next hooks
This aligns the behavior of synchronous hooks with asynchronous
hooks by allowing omission of the context parameter in the
invocation of next hooks. The contexts are merged along the
chain.
PR-URL: https://github.com/nodejs/node/pull/57056
Fixes: https://github... | [
{
"path": "lib/internal/modules/customization_hooks.js",
"patch": "@@ -4,6 +4,7 @@ const {\n ArrayPrototypeFindIndex,\n ArrayPrototypePush,\n ArrayPrototypeSplice,\n+ ObjectAssign,\n ObjectFreeze,\n StringPrototypeStartsWith,\n Symbol,\n@@ -162,19 +163,31 @@ function convertURLToCJSFilename(url... | 2025-02-18T15:28:59 |
rust-lang/rust | a4c683f7dfdce6781cccd2830e67c6b179fd665f | c1b0b32fe9c150392345c9f9c35f6c056f5ffcd4 | fix: use compound assignment in binop_lhs_never_place_diverges test | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/tests/never_type.rs",
"patch": "@@ -826,8 +826,7 @@ fn binop_lhs_never_place_diverges() {\n fn foo() {\n unsafe {\n let p: *mut ! = 0 as _;\n- *p + 1;\n-// ^^ adjustments: NeverToAny\n+ *p += 1;\n }\n }\n \"#,",
"add... | 2026-02-28T18:04:13 |
facebook/react | 7954db9398b9afa962167577a6c6940be3856c39 | 177b2419b2d8a3d14c3f3304bb7e300985d6f377 | [Fizz] handle throwing after abort during render (#30730)
It is possible to throw after aborting during a render and we were not
properly tracking this. We use an AbortSigil to mark whether a rendering
task needs to abort but the throw interrupts that and we end up handling
an error on the error pathway instead.
... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -8377,6 +8377,48 @@ describe('ReactDOMFizzServer', () => {\n );\n });\n \n+ it('can support throwing after aborting during a render', async () => {\n+ function App() {\n+ return (\n+ <div>\n+ ... | 2024-08-17T01:29:18 |
vercel/next.js | ee152079617926ca1e09c26e86d14e8f8fcfbf21 | bc51d9bb6a6cbcb50a302e4dcc1c8f653bcc86b4 | [turbopack] tweak the doc on the inner graph optimization (#84752)
This optimization is enabled by default and we already link to the docs so referencing the configuration option is more misleading than helpful.
Fixes https://github.com/vercel/feedback/issues/111264 | [
{
"path": "docs/01-app/03-api-reference/08-turbopack.mdx",
"patch": "@@ -134,7 +134,7 @@ This can lead to subtle rendering changes when adopting Turbopack, if applicatio\n \n ### Bundle Sizes\n \n-Turbopack does not yet have an equivalent to the [Inner Graph Optimization](https://webpack.js.org/configuratio... | 2025-10-10T16:52:35 |
nodejs/node | ecf803daca529d583d19db355e164f6c78806796 | 6fe0723e40c298a862737604e08870a6671bc811 | doc: disambiguate pseudo-code statement
the statement `set Y to be the file system root` can be wrongly
interpreted as the file system root being updated to match Y,
removing the `be` term removes this potential interpretation
PR-URL: https://github.com/nodejs/node/pull/57092
Reviewed-By: James M Snell <jasnell@gmail... | [
{
"path": "doc/api/modules.md",
"patch": "@@ -346,7 +346,7 @@ require(X) from module at path Y\n a. return the core module\n b. STOP\n 2. If X begins with '/'\n- a. set Y to be the file system root\n+ a. set Y to the file system root\n 3. If X begins with './' or '/' or '../'\n a. LOAD_AS_FILE(... | 2025-02-18T13:13:29 |
rust-lang/rust | 5a18412c93a32811b135ed4a6ac8fdc2df33226b | ba1567989ee7774a1fb53aa680a8e4e8daa0f519 | Remove `TranslationError` | [
{
"path": "compiler/rustc_errors/src/error.rs",
"patch": "@@ -1,139 +0,0 @@\n-use std::borrow::Cow;\n-use std::error::Error;\n-use std::fmt;\n-\n-use rustc_error_messages::fluent_bundle::resolver::errors::{ReferenceKind, ResolverError};\n-use rustc_error_messages::{FluentArgs, FluentError};\n-\n-#[derive(De... | 2026-02-28T17:34:17 |
golang/go | fad1dc608d178bf2527c249ded24ca22948269b8 | b1f3e38e4153de19b1964068d79e7da6eac7b5d8 | runtime: don't artificially limit TestReadMetricsSched
TestReadMetricsSched/running can take some time to enter in steady state
on busy systems. We currently only allow 1 second for that, we should
let it run unlimitedly until success or the test time's out.
Fixes #75049
Change-Id: I452059e1837caf12a2d2d9cae1f70a0ef... | [
{
"path": "src/runtime/metrics_test.go",
"patch": "@@ -1632,15 +1632,13 @@ func TestReadMetricsSched(t *testing.T) {\n \tcheckEq := func(t *testing.T, s *metrics.Sample, value uint64) {\n \t\tcheck(t, s, value, value)\n \t}\n-\tspinUntil := func(f func() bool, timeout time.Duration) bool {\n-\t\tstart := ti... | 2025-09-10T06:23:42 |
electron/electron | 92496c1930e35de04725a61e60817704832372b2 | 42862347218b61b01c4891036d84ecda0b6a86d6 | chore: bump chromium to 129.0.6616.0 (main) (#43012)
* chore: bump chromium in DEPS to 128.0.6613.0
* chore: 5725076: Update EventType names | https://chromium-review.googlesource.com/c/chromium/src/+/5725076
* chore: export patches
* chore: 5725076: Update EventType names | https://chromium-review.googlesour... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '128.0.6611.0',\n+ '129.0.6616.0',\n 'node_version':\n 'v20.16.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "filena... | 2024-07-29T13:37:35 |
facebook/react | 13ddf1084b4304a60059e3b96fc3c039d23e9432 | a58276cbc3a70ba99572eeb9c2f7b4a54ca44b1e | [DevTools] Find owners from the parent path that matches the Fiber or ReactComponentInfo (#30717)
This enables finding Server Components on the owner path. Server
Components aren't stateful so there's not actually one specific owner
that it necessarily matches. So it can't be a global look up. E.g. the
same Server ... | [
{
"path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js",
"patch": "@@ -2893,26 +2893,29 @@ describe('InspectedElement', () => {\n `);\n \n const inspectedElement = await inspectElementAtIndex(4);\n- expect(inspectedElement.owners).toMatchInlineSnapshot(`\n- [\n- ... | 2024-08-16T23:52:11 |
vercel/next.js | bc51d9bb6a6cbcb50a302e4dcc1c8f653bcc86b4 | a89f854f3eb13814930943e53f4afbd721fd3fac | [Cache Components] Allow hiding logs after abort (#84579)
When Next.js prerenders with Cache Components enabled it will abort
prerenders before they have completed. It is common for user code to log
in a catch block and with this new prerendering behavior these logs will
trigger frequently for cases where the rejectio... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -871,5 +871,6 @@\n \"870\": \"refresh can only be called from within a Server Action. See more info here: https://nextjs.org/docs/app/api-reference/functions/refresh\",\n \"871\": \"Image with src \\\"%s\\\" is using a query string which is not configu... | 2025-10-10T16:13:19 |
nodejs/node | 4afc136efaf7ecd4cefced53b48d0b542893db4d | 11e753536e379d6f8ce34e3baf0572012e22ad9d | src: improve error handling in node_blob
PR-URL: https://github.com/nodejs/node/pull/57078
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "src/node_blob.cc",
"patch": "@@ -30,8 +30,10 @@ using v8::HandleScope;\n using v8::Int32;\n using v8::Isolate;\n using v8::Local;\n+using v8::NewStringType;\n using v8::Object;\n using v8::ObjectTemplate;\n+using v8::SnapshotCreator;\n using v8::String;\n using v8::Uint32;\n using v8::Undefined;\... | 2025-02-15T20:46:06 |
rust-lang/rust | 900bfa15eba65dd5597e5b51892e5e4f2bd21eab | 180e4a7155c019e50a5c375ba9c33e71b1dd644d | refactor(mgca): Change `DefKind::Const` and `DefKind::AssocConst` to have a `is_type_const` flag
* refactor: add `is_type_const` flag to `DefKind::Const` and `AssocConst`
* refactor(cleanup) remove the `rhs_is_type_const` query
* style: fix formatting
* refactor: refactor stuff in librustdoc for new Const and AssocCon... | [
{
"path": "clippy_lints/src/loops/needless_range_loop.rs",
"patch": "@@ -308,7 +308,7 @@ impl<'tcx> VarVisitor<'_, 'tcx> {\n }\n return false; // no need to walk further *on the variable*\n },\n- Res::Def(DefKind::Static { .. } | DefKind... | 2026-02-28T17:27:46 |
golang/go | b1f3e38e4153de19b1964068d79e7da6eac7b5d8 | 00824f5ff5913712710e449de8b7bbae51182197 | cmd/compile: when CSEing two values, prefer the statement marked one
Fixes #75249
Change-Id: Ifd61bf5341f23ce2c9735e607e00d987489caacf
Reviewed-on: https://go-review.googlesource.com/c/go/+/701295
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: David Chase <drchase@google.com>
Reviewed-by: Alexander Musman <... | [
{
"path": "src/cmd/compile/internal/dwarfgen/linenum_test.go",
"patch": "@@ -0,0 +1,105 @@\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 dwarfgen\n+\n+import (\n+\t\"debug/dwar... | 2025-09-05T17:19:17 |
electron/electron | 42862347218b61b01c4891036d84ecda0b6a86d6 | 55e7a47d709ce711e0d9d91b9c8f9d6c4972a839 | fix: redirect webview navigation methods (#42981) | [
{
"path": "lib/browser/guest-view-manager.ts",
"patch": "@@ -2,7 +2,7 @@ import { webContents } from 'electron/main';\n import { ipcMainInternal } from '@electron/internal/browser/ipc-main-internal';\n import * as ipcMainUtils from '@electron/internal/browser/ipc-main-internal-utils';\n import { parseWebVie... | 2024-07-29T11:00:51 |
facebook/react | 34edf3b68471e87d4a92f98a10f7c6c727c948f8 | e9a869fbb59a634fb9a39c9480ffa34970f35858 | [compiler] Surface unused opt out directives in eslint
This PR updates the eslint plugin to report unused opt out directives.
One of the downsides of the opt out directive is that it opts the
component/hook out of compilation forever, even if the underlying issue
was fixed in product code or fixed in the compiler.
gh... | [
{
"path": "compiler/packages/eslint-plugin-react-compiler/__tests__/ReactCompilerRule-test.ts",
"patch": "@@ -215,6 +215,65 @@ const tests: CompilerTestCases = {\n },\n ],\n },\n+ {\n+ name: \"'use no forget' does not disable eslint rule\",\n+ code: normalizeIndent`\n+ ... | 2024-08-16T21:39:51 |
nodejs/node | 11e753536e379d6f8ce34e3baf0572012e22ad9d | 714ced18efe5a4a3f4673722c1de7ef1920aa01e | src: improve error handling in multiple files
PR-URL: https://github.com/nodejs/node/pull/56962
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "src/node_i18n.cc",
"patch": "@@ -104,14 +104,15 @@ namespace {\n \n template <typename T>\n MaybeLocal<Object> ToBufferEndian(Environment* env, MaybeStackBuffer<T>* buf) {\n- MaybeLocal<Object> ret = Buffer::New(env, buf);\n- if (ret.IsEmpty())\n- return ret;\n+ Local<Object> ret;\n+ if (!... | 2025-02-08T17:55:45 |
vercel/next.js | 48e84aacd3cd61e7c45d9a2eeee4cf3287ed7f59 | f766f9b03f38ce4a625c0b3904e573d74ba0418a | Version gate migration docs link (#84740)
Currently, it always logs 15 migration docs when upgrading, so version
gate it.
```
Results:
0 errors
41 unmodified
0 skipped
0 ok
Time elapsed: 2.276seconds
✔ Codemods have been applied successfully.
Please review the local changes and read the Next.js 15 migration guide t... | [
{
"path": "packages/next-codemod/bin/upgrade.ts",
"patch": "@@ -4,6 +4,7 @@ import fs from 'fs'\n import {\n satisfies as satisfiesVersionRange,\n compare as compareVersions,\n+ major,\n } from 'semver'\n import { execSync } from 'child_process'\n import path from 'path'\n@@ -60,20 +61,22 @@ async func... | 2025-10-10T13:50:18 |
facebook/react | e9a869fbb59a634fb9a39c9480ffa34970f35858 | 7b41cdc093c7a28a089e2c402cbe98cac68de509 | [compiler] Run compiler pipeline on 'use no forget'
This PR updates the babel plugin to continue the compilation pipeline as
normal on components/hooks that have been opted out using a directive.
Instead, we no longer emit the compiled function when the directive is
present.
Previously, we would skip over the entire ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Options.ts",
"patch": "@@ -165,6 +165,12 @@ export type LoggerEvent =\n fnLoc: t.SourceLocation | null;\n detail: Omit<Omit<CompilerErrorDetailOptions, 'severity'>, 'suggestions'>;\n }\n+ | {\n+ kind: 'CompileSkip'... | 2024-08-16T21:39:50 |
electron/electron | 55e7a47d709ce711e0d9d91b9c8f9d6c4972a839 | 8db1563d730c8f6a5ca38ad167c670195c553d26 | fix: always terminate active Node Streams (#43056)
`.destroy()` is an important method in the lifecycle of a Node.js
Readable stream. It is typically called to reclaim the resources
(e.g., close file descriptor). The only situations where calling
it manually isn't necessary are when the following events are
emitte... | [
{
"path": "shell/browser/net/node_stream_loader.cc",
"patch": "@@ -43,7 +43,7 @@ NodeStreamLoader::~NodeStreamLoader() {\n }\n \n // Destroy the stream if not already ended\n- if (!ended_) {\n+ if (!destroyed_) {\n node::MakeCallback(isolate_, emitter_.Get(isolate_), \"destroy\", 0, nullptr,\n ... | 2024-07-27T17:25:43 |
rust-lang/rust | efc150e5b3de648871a9ce88b2ca0acf38b066fd | eeb94be79adc9df7a09ad0b2421f16e60e6d932c | refactor(mgca): Change `DefKind::Const` and `DefKind::AssocConst` to have a `is_type_const` flag
* refactor: add `is_type_const` flag to `DefKind::Const` and `AssocConst`
* refactor(cleanup) remove the `rhs_is_type_const` query
* style: fix formatting
* refactor: refactor stuff in librustdoc for new Const and AssocCon... | [
{
"path": "compiler/rustc_ast_lowering/src/path.rs",
"patch": "@@ -112,7 +112,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {\n }\n // `a::b::Trait(Args)::TraitItem`\n Res::Def(DefKind::AssocFn, _)\n- | Res::Def(D... | 2026-02-28T17:27:46 |
vercel/next.js | 8367664b827c75d9b8faf96ed10ea9b058974829 | cd293963abb8ef181d6ed37780319f50e0f7e3a0 | [next-codemod] fix: Set codemod version to the first introduced version (#84726)
<!-- 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... | [
{
"path": "packages/next-codemod/lib/utils.ts",
"patch": "@@ -35,6 +35,11 @@ export function onCancel() {\n process.exit(1)\n }\n \n+/**\n+ * When adding a new codemod, ensure to set the target canary version\n+ * instead of the stable version. This is for `@next/codemod upgrade`\n+ * to correctly pick up... | 2025-10-10T03:22:50 |
nodejs/node | 666e773f22303db262903efd22a7bd72370d8eb8 | f1b951fd2248c9f44b730345e1681f18903aa747 | doc: fix wrong articles used to address modules
PR-URL: https://github.com/nodejs/node/pull/57090
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/modules.md",
"patch": "@@ -253,7 +253,7 @@ This property is experimental and can change in the future. It should only be us\n by tools converting ES modules into CommonJS modules, following existing ecosystem\n conventions. Code authored directly in CommonJS should avoid depending on it.\... | 2025-02-17T11:50:49 |
golang/go | 9650c97d0fad719b372159a6ca59e722a6e487ce | f1c4b860d4cf5d3164fbb5a26bafc36f109d9bdc | syscall: remove unreachable code
Reported by go vet:
$ go vet syscall
# syscall_test
# [syscall_test]
syscall/env_unix_test.go:100:4: unreachable code
The TestVetStdlib test in golang.org/x/tools/go/analysis/unitchecker
also ran into this.
Fixes #73998.
Change-Id: I7f2842a42835a38163433a09a3311be9c30f8a14
Cq-I... | [
{
"path": "src/syscall/env_unix_test.go",
"patch": "@@ -96,7 +96,9 @@ func TestClearenv(t *testing.T) {\n \t\t\tdefer func() {\n \t\t\t\tret = recover()\n \t\t\t}()\n-\t\t\tpanic(nil)\n+\t\t\tif true {\n+\t\t\t\tpanic(nil)\n+\t\t\t}\n \t\t\treturn \"should not return\"\n \t\t}\n ",
"additions": 3,
"... | 2025-09-10T14:41:04 |
electron/electron | 8db1563d730c8f6a5ca38ad167c670195c553d26 | b3d52c01e88417136487600eb21f3e108f1952aa | fix: remove InspectableWebContentsViewMac (#43033)
* Revert "refactor: remove InspectableWebContentsViewMac in favor of the Views version (#41326)"
This reverts commit e67ab9a93dadccecff30de50ab4555191c30b6c4.
* build: fix gn check
* chore: implement setCornerRadii in inspectable_web_contents_view_mac
Co-a... | [
{
"path": "filenames.gni",
"patch": "@@ -159,8 +159,12 @@ filenames = {\n \"shell/browser/osr/osr_web_contents_view_mac.mm\",\n \"shell/browser/relauncher_mac.cc\",\n \"shell/browser/ui/certificate_trust_mac.mm\",\n+ \"shell/browser/ui/cocoa/delayed_native_view_host.h\",\n+ \"shell/browser... | 2024-07-27T16:44:22 |
facebook/react | 7b41cdc093c7a28a089e2c402cbe98cac68de509 | 1eaccd8285f0bd40407705a9356391a171adf3b1 | [Flight][Static] Implement halting a prerender behind enableHalt (#30705)
enableHalt turns on a mode for flight prerenders where aborts are
treated like infinitely stalled outcomes while still completing the
prerender. For regular tasks we simply serialize the slot as a promise
that never settles. For ReadableStrea... | [
{
"path": "packages/react-server-dom-esm/src/server/ReactFlightDOMServerNode.js",
"patch": "@@ -20,12 +20,15 @@ import type {Thenable} from 'shared/ReactTypes';\n \n import {Readable} from 'stream';\n \n+import {enableHalt} from 'shared/ReactFeatureFlags';\n+\n import {\n createRequest,\n startWork,\n ... | 2024-08-16T21:21:57 |
vercel/next.js | f09567eafde22ed29949a1da3548e0fee3e21082 | 8f731e666f87d110538a10d95fbd04cdef553b9e | [turbopack] Emit a warning when there are too many matches from a FileSourceReference (#84701)
Previously we would `eprintln!` in this case, but that is missing key source information that would help with debugging.
Example warning (i hacked the limit to be lower to make this less tedious to repro):
 -> IssueSeverity {\n- IssueSeverity::Fatal\n+ IssueSeverity::Error\n }\n \n #[turbo_tasks::function]",
"additions": 1,
"delet... | 2025-10-10T02:26:02 |
golang/go | f1c4b860d4cf5d3164fbb5a26bafc36f109d9bdc | 30686c4cc89e6952ec00846e34016f37d53f31dd | Revert "crypto/internal/fips140: update frozen module version to "v1.0.0""
This reverts CL 701518. This should land just before CL 701520 to avoid
breaking the builders for long.
Fixes #75343
Change-Id: If1ae1fe933fe443ca9776888967d80875b02f41a
Reviewed-on: https://go-review.googlesource.com/c/go/+/702255
Reviewed-b... | [
{
"path": "src/crypto/internal/cryptotest/hash.go",
"patch": "@@ -20,7 +20,7 @@ type MakeHash func() hash.Hash\n // TestHash performs a set of tests on hash.Hash implementations, checking the\n // documented requirements of Write, Sum, Reset, Size, and BlockSize.\n func TestHash(t *testing.T, mh MakeHash) {... | 2025-09-09T22:05:22 |
facebook/react | 1016174af520fc89bafab7189405fce8ff3a9bb5 | 8a531601115927400aa04d26a5f1800d159e1e7e | [compiler] Reposition ref-in-render errors to the read location of .current
Summary:
Since we want to make ref-in-render errors enabled by default, we should position those errors at the location of the read. Not only will this be a better experience, but it also aligns the behavior of Forget and Flow.
This PR also c... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccesInRender.ts",
"patch": "@@ -15,7 +15,6 @@ import {\n isRefValueType,\n isUseRefType,\n } from '../HIR';\n-import {printPlace} from '../HIR/PrintHIR';\n import {\n eachInstructionValueOperand,\n eachTerminalOper... | 2024-08-16T17:27:13 |
rust-lang/rust | aa53530f2720f92a442290706539d8275ffd4f72 | 70bf845cb2b07be5111d7992223ce98aaa1fd6cb | fix: Fix wrong confiditon in `Visibility::min` | [
{
"path": "src/tools/rust-analyzer/crates/hir-def/src/visibility.rs",
"patch": "@@ -234,7 +234,7 @@ impl Visibility {\n if mod_.krate(db) == krate { Some(Visibility::Module(mod_, exp)) } else { None }\n }\n (Visibility::Module(mod_a, expl_a), Visibility::Module(mod_b,... | 2026-02-28T17:00:32 |
nodejs/node | f1b951fd2248c9f44b730345e1681f18903aa747 | 610e4747283a5bb0e8a05ff07cc38dd5f028976f | doc: update `module.builtinModules` sentence
updates the sentence saying that `module.builtinModule`
only contains the modules that can be loaded without
`node:` (since v23.5.0 also prefix-only modules are
included in the list)
PR-URL: https://github.com/nodejs/node/pull/57089
Refs: https://github.com/nodejs/node/pul... | [
{
"path": "doc/api/modules.md",
"patch": "@@ -516,9 +516,11 @@ by that name.\n \n Some built-in modules are always preferentially loaded if their identifier is\n passed to `require()`. For instance, `require('http')` will always\n-return the built-in HTTP module, even if there is a file by that name. The li... | 2025-02-16T22:31:15 |
electron/electron | b3d52c01e88417136487600eb21f3e108f1952aa | 77ba40bc01a206b5c3bac27cd6143adabd46d437 | chore: bump node to v20.16.0 (main) (#43029)
* chore: bump node in DEPS to v20.16.0
* test: skip unstable shadow realm gc tests
https://github.com/nodejs/node/pull/52855
* test: extend env for `test-node-output-errors`
https://github.com/nodejs/node/pull/53535
* src: fix typo in env.cc
https://github... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '128.0.6611.0',\n 'node_version':\n- 'v20.15.1',\n+ 'v20.16.0',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2024-07-26T16:52:05 |
vercel/next.js | 61a8037835a715f36dd52532ba049f81d4f532d4 | 73a4d0829a8e6a53af5be9c52bcf466e4941344c | Rspack: Fix lockfile test on rspack (#84707)
Noticed this on https://github.com/vercel/next.js/pull/84673
We don't run rspack test on every PR, so this wasn't caught before. | [
{
"path": "test/development/lockfile/lockfile.test.ts",
"patch": "@@ -3,7 +3,7 @@ import execa from 'execa'\n import stripAnsi from 'strip-ansi'\n \n describe('lockfile', () => {\n- const { next, isTurbopack } = nextTestSetup({\n+ const { next, isTurbopack, isRspack } = nextTestSetup({\n files: __dirn... | 2025-10-10T00:28:04 |
facebook/react | 8a531601115927400aa04d26a5f1800d159e1e7e | 7468ac530e73992f28169ac69e18395a75edfc47 | [compiler] Don't error on ref-in-render on StartMemoize
Test Plan:
Fixes the previous issue: ref enforcement ignores memoization marker instructions
ghstack-source-id: f35d6a611c5e740e9ea354ec80c3d7cdb3c0d658
Pull Request resolved: https://github.com/facebook/react/pull/30715 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccesInRender.ts",
"patch": "@@ -185,6 +185,9 @@ function validateNoRefAccessInRenderImpl(\n }\n break;\n }\n+ case 'StartMemoize':\n+ case 'FinishMemoize':\n+ break;\n ... | 2024-08-16T17:27:13 |
golang/go | 30686c4cc89e6952ec00846e34016f37d53f31dd | c5737dc21bbac9fbefc35ac9313e66291d66b382 | encoding/json/v2: document context annotation with SemanticError
When the json package calls
Marshaler, MarshalerTo, Unmarshaler, or UnmarshalerFrom methods
and a SemanticError is returned, it will automatically
annotate the error with context.
Document this behavior.
Change-Id: Id8e775a7c1c2a6ffc29ea518913591915e8a... | [
{
"path": "src/encoding/json/v2/arshal_methods.go",
"patch": "@@ -41,6 +41,10 @@ var (\n //\n // It is recommended that implementations return a buffer that is safe\n // for the caller to retain and potentially mutate.\n+//\n+// If the returned error is a [SemanticError], then unpopulated fields\n+// of the... | 2025-09-09T00:33:47 |
rust-lang/rust | 4ed37668c4b2d4523ba549890c2d9bee32b013f3 | ba1567989ee7774a1fb53aa680a8e4e8daa0f519 | Fix LegacyKeyValueFormat report from docker build: disabled | [
{
"path": "src/ci/docker/host-x86_64/disabled/dist-aarch64-android/Dockerfile",
"patch": "@@ -13,13 +13,12 @@ ENV DEP_Z_ROOT=/android/ndk/arm64-21/sysroot/usr/\n \n ENV HOSTS=aarch64-linux-android\n \n-ENV RUST_CONFIGURE_ARGS \\\n- --aarch64-linux-android-ndk=/android/ndk/arm64-21 \\\n+ENV RUST_CONFIGU... | 2026-02-28T16:37:52 |
nodejs/node | b6cd6b7e31301ea190dac45f876bc7da4e87f8a1 | 69fdce2c7f1bd1c93ec793784dfcfd4ac4f62053 | doc: `modules.md`: fix `distance` definition
It's somewhat esoteric at best to define distance in terms of squared
length!
PR-URL: https://github.com/nodejs/node/pull/57046
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Chengzhong Wu <legend... | [
{
"path": "doc/api/modules.md",
"patch": "@@ -217,7 +217,7 @@ With the following ES Modules:\n \n ```mjs\n // distance.mjs\n-export function distance(a, b) { return (b.x - a.x) ** 2 + (b.y - a.y) ** 2; }\n+export function distance(a, b) { return Math.sqrt((b.x - a.x) ** 2 + (b.y - a.y) ** 2); }\n ```\n \n `... | 2025-02-16T18:26:30 |
vercel/next.js | b2ce9dd9c34d04c2c8d7f872bd0bb0e0f3a8d31a | 7e325d98a2773f1a41596f455516c164835728dc | tweak middlewareClientMaxBodySize handling (#84712)
This ensures we captured `middlewareClientMaxBodySize` in the config
schema and rather than triggering a hard error, it will buffer up to the
limit. | [
{
"path": "docs/01-app/03-api-reference/05-config/01-next-config-js/middlewareClientMaxBodySize.mdx",
"patch": "@@ -0,0 +1,118 @@\n+---\n+title: experimental.middlewareClientMaxBodySize\n+description: Configure the maximum request body size when using middleware.\n+version: experimental\n+---\n+\n+When midd... | 2025-10-10T00:10:41 |
facebook/react | 7468ac530e73992f28169ac69e18395a75edfc47 | 5030e08575c295ef352c5ae928e2366cc4765d32 | [compiler] Fixture to show ref-in-render enforcement issue with useCallback
Test Plan:
Documents that useCallback calls interfere with it being ok for refs to escape as part of functions into jsx
ghstack-source-id: a5df427981ca32406fb2325e583b64bbe26b1cdd
Pull Request resolved: https://github.com/facebook/react/pull/... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/error.return-ref-callback.expect.md",
"patch": "@@ -0,0 +1,37 @@\n+\n+## Input\n+\n+```javascript\n+// @flow @validateRefAccessDuringRender @validatePreserveExistingMemoizationGuarantees\n+\n+component Foo() {\n+ const... | 2024-08-16T17:27:13 |
electron/electron | 77ba40bc01a206b5c3bac27cd6143adabd46d437 | 2fd04a78a1e774a32e9db926d07de686fd03fb79 | chore: avoid crash while notification removal (#43040)
* avoid crash of operation on an invalid entry while erase set iterator.
* fix notification removal crash due to the nullptr presenter
---------
Co-authored-by: bill.shen <shenyb32768@gmail.com> | [
{
"path": "shell/browser/notifications/notification.cc",
"patch": "@@ -46,7 +46,9 @@ void Notification::NotificationFailed(const std::string& error) {\n void Notification::Remove() {}\n \n void Notification::Destroy() {\n- presenter()->RemoveNotification(this);\n+ if (presenter()) {\n+ presenter()->Rem... | 2024-07-26T13:34:40 |
golang/go | c5737dc21bbac9fbefc35ac9313e66291d66b382 | b9a4a09b0fbb54b533f847c784c807db95f68d3b | runtime: when using cgo on 386, call C sigaction function
On 386 the C sigaction function assumes that the caller does not set
the SA_RESTORER flag. It does not copy the C sa_restorer field to
the kernel sa_restorer field. The effect is that the kernel sees
the SA_RESTORER flag but a NULL sa_restorer field, and the pr... | [
{
"path": "src/runtime/cgo/gcc_sigaction.c",
"patch": "@@ -2,7 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-//go:build linux && (amd64 || arm64 || loong64 || ppc64le)\n+//go:build linux && (386 || amd64 || arm64 || loong64 || ppc64l... | 2025-09-06T05:24:37 |
nodejs/node | 69fdce2c7f1bd1c93ec793784dfcfd4ac4f62053 | e892e79f17a1381a067f5738ac3619809a9d8012 | doc: fix wrong verb form
PR-URL: https://github.com/nodejs/node/pull/57091
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "doc/api/modules.md",
"patch": "@@ -208,7 +208,7 @@ regarding which files are parsed as ECMAScript modules.\n 3. The file has a `.js` extension, the closest `package.json` does not contain\n `\"type\": \"commonjs\"`, and the module contains ES module syntax.\n \n-If the ES Module being load... | 2025-02-16T15:28:33 |
vercel/next.js | 7e325d98a2773f1a41596f455516c164835728dc | 36357eba00b8dcc42c5eca8e6f2c39fbcab29f7d | Fix tags check for expired/stale (#84717)
Corrects the expired/stale checks in the tags manifest and updates test
case to capture this. | [
{
"path": "packages/next/src/server/lib/incremental-cache/tags-manifest.external.ts",
"patch": "@@ -12,9 +12,15 @@ export const tagsManifest = new Map<string, TagManifestEntry>()\n export const areTagsExpired = (tags: string[], timestamp: Timestamp) => {\n for (const tag of tags) {\n const entry = tag... | 2025-10-10T00:03:39 |
electron/electron | 2fd04a78a1e774a32e9db926d07de686fd03fb79 | 0886d2f50f35be4810ca0f4de4848b7cb0c8c487 | fix: revert BrowserWindow unresponsive handling refactor (#43034)
* Revert "refactor: JSify BrowserWindow unresponsive handling (#37902)"
This reverts commit 67ba30402bcbf6942fa0846927f2d088cf0a749d.
* chore: remove BrowserWindow::SetTitleBarOverlay
---------
Co-authored-by: Shelley Vohr <shelley.vohr@gmai... | [
{
"path": "lib/browser/api/browser-window.ts",
"patch": "@@ -36,29 +36,6 @@ BrowserWindow.prototype._init = function (this: BWT) {\n app.emit('browser-window-focus', event, this);\n });\n \n- let unresponsiveEvent: NodeJS.Timeout | null = null;\n- const emitUnresponsiveEvent = () => {\n- unrespon... | 2024-07-25T20:02:02 |
facebook/react | 85fb95cdffdd95f2f908ee71974cae06b1c866e1 | fa6eab58541330349480690ef4e211520cc08d94 | [flow] Eliminate a few React.Element type that will be synced to react-native (#30719)
## Summary
Flow will eventually remove the specific `React.Element` type. For most
of the code, it can be replaced with `React.MixedElement` or
`React.Node`.
When specific react elements are required, it needs to be replaced... | [
{
"path": "packages/react-native-renderer/src/ReactNativeRenderer.js",
"patch": "@@ -8,7 +8,7 @@\n */\n \n import type {ReactPortal, ReactNodeList} from 'shared/ReactTypes';\n-import type {ElementRef, Element, ElementType} from 'react';\n+import type {ElementRef, ElementType, MixedElement} from 'react';\n ... | 2024-08-16T16:53:52 |
golang/go | 4c20f7f15a9a8eed50d8cbb8be8f74d449093a5c | 5dcedd65504cc9cadc9a5ea8bc3af51a26eec704 | cmd/cgo: run gcc to get errors and debug info in parallel
This change kicks off the work to load the debug info when processing
each file, and then waits for all the files to be processed before
starting the single-goroutined part that processes them. The processing
is very order dependent so we won't try to make it c... | [
{
"path": "src/cmd/cgo/gcc.go",
"patch": "@@ -183,16 +183,16 @@ func splitQuoted(s string) (r []string, err error) {\n \treturn args, err\n }\n \n-// Translate rewrites f.AST, the original Go input, to remove\n-// references to the imported package C, replacing them with\n-// references to the equivalent Go... | 2025-08-25T21:22:01 |
rust-lang/rust | 37364585a10e368918e4a79466be24354ff5cf87 | 448097dd2386957a36880efbb78cb83021774540 | Fix async closure suggestion when no space between || and { | [
{
"path": "compiler/rustc_trait_selection/src/error_reporting/traits/suggestions.rs",
"patch": "@@ -800,7 +800,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {\n \n // If this is a zero-argument async closure directly passed as an argument\n // and the expected type is `Future`, suggest using `as... | 2026-02-05T10:09:46 |
vercel/next.js | 36357eba00b8dcc42c5eca8e6f2c39fbcab29f7d | e2713a423002420b3d12f6fa946205581d1151e3 | Fix typo on welcome page (#84715) | [
{
"path": "apps/docs/app/page.tsx",
"patch": "@@ -22,7 +22,7 @@ export default function Home() {\n href=\"https://vercel.com/templates?framework=next.js\"\n className=\"font-medium text-zinc-950 dark:text-zinc-50\"\n >\n- Template\n+ Template... | 2025-10-09T23:43:37 |
nodejs/node | e892e79f17a1381a067f5738ac3619809a9d8012 | 1d8593e3b1876d05d69ec5cdf4c8990f24aac892 | doc: fix transpiler loader hooks documentation
The loader hooks examples have been broken for a while:
1. The nextLoad() hook cannot be used on a .coffee file that ends
up going to the default load step without an explict format,
which would cause a ERR_UNKNOWN_FILE_EXTENSION. Mention
adding a package.json w... | [
{
"path": "doc/api/module.md",
"patch": "@@ -1164,7 +1164,11 @@ changes:\n Node.js default `load` hook after the last user-supplied `load` hook\n * `url` {string}\n * `context` {Object|undefined} When omitted, defaults are provided. When provided, defaults are\n- merged in with preference to the pr... | 2025-02-16T12:48:56 |
electron/electron | 976f5d1b7558d596c0e28e614a02bf6acfc7e6f8 | aa23198ad8ed023a09bf6162f0e268f4aa0aa524 | fix: File System API permissions should reset on WebContents destruction (#43009)
fix: active File System API permissions should reset on WebContents destruction | [
{
"path": "filenames.gni",
"patch": "@@ -390,6 +390,8 @@ filenames = {\n \"shell/browser/file_system_access/file_system_access_permission_context.h\",\n \"shell/browser/file_system_access/file_system_access_permission_context_factory.cc\",\n \"shell/browser/file_system_access/file_system_access_... | 2024-07-25T13:53:30 |
golang/go | 5dcedd65504cc9cadc9a5ea8bc3af51a26eec704 | d3be949ada01d7827f8edc87665fef5268634cb3 | runtime: lock mheap_.speciallock when allocating synctest specials
Avoid racing use of mheap_.specialBubbleAlloc.
Fixes #75134
Change-Id: I0c9140c18d2bca1e1c3387cd81230f0e8c9ac23e
Reviewed-on: https://go-review.googlesource.com/c/go/+/699255
Reviewed-by: Michael Knyszek <mknyszek@google.com>
LUCI-TryBot-Result: Go L... | [
{
"path": "src/internal/synctest/synctest_test.go",
"patch": "@@ -779,6 +779,28 @@ func TestWaitGroupHeapAllocated(t *testing.T) {\n \t})\n }\n \n+// Issue #75134: Many racing bubble associations.\n+func TestWaitGroupManyBubbles(t *testing.T) {\n+\tvar wg sync.WaitGroup\n+\tfor range 100 {\n+\t\twg.Go(func(... | 2025-08-26T20:26:57 |
facebook/react | fa6eab58541330349480690ef4e211520cc08d94 | 50d2197dd580afc0f87f0acb79c5528bc0f5199c | [Flight] Implement prerender (#30686)
Prerendering in flight is similar to prerendering in Fizz. Instead of
receiving a result (the stream) immediately a promise is returned which
resolves to the stream when the prerender is complete. The promise will
reject if the flight render fatally errors otherwise it will res... | [
{
"path": "fixtures/flight/__tests__/__e2e__/smoke.test.js",
"patch": "@@ -16,6 +16,13 @@ test('smoke test', async ({page}) => {\n await expect(page.getByTestId('promise-as-a-child-test')).toHaveText(\n 'Promise as a child hydrates without errors: deferred text'\n );\n+ await expect(page.getByTestI... | 2024-08-15T21:28:28 |
vercel/next.js | 5c8fdbe104b7e13bc653cb8b319782052d059bc1 | 8d475c5468b18cb3aad0de0a50632953d5243db1 | misc: allow beta to be triggered (#84713)

- update codemod script
- upgrade both release scripts, not sure which one is correct
<!-- Thanks for opening ... | [
{
"path": ".github/workflows/trigger_release.yml",
"patch": "@@ -6,13 +6,14 @@ on:\n workflow_dispatch:\n inputs:\n releaseType:\n- description: stable, canary, or release candidate?\n+ description: stable, canary, beta, or release candidate?\n required: true\n type... | 2025-10-09T23:28:52 |
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.