repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
nodejs/node | 7924ea351822f9954d057ae05d9124b25425d31c | b915124e49447a138f0f311289acc9f57e63674b | 2024-12-03, Version 22.12.0 'Jod' (LTS)
Notable changes:
assert:
* (SEMVER-MINOR) make assertion_error use Myers diff algorithm (Giovanni Bucci) https://github.com/nodejs/node/pull/54862
buffer:
* (SEMVER-MINOR) make Buffer work with resizable ArrayBuffer (James M Snell) https://github.com/nodejs/node/pull/55377
... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -45,7 +45,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V23.md#23.0.0\">23.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.11.0\">22.11.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.12.0\">22.12.0... | 2024-11-27T21:58:44 |
golang/go | 64ba72474d9a637fc8152c3bbd8cdec3ffde2940 | e151db3e065eea8a13fd2bc83aafb6959edd6fca | errors: omit redundant nil check in type assertion for Join
When ok is true, err can't be nil.
Make it behave more like the Unwrap function.
Change-Id: Ieba5de57d60f5ff4d6a3468d703e6f72be02a97d
GitHub-Last-Rev: 6df9365a1d586bba64df57be11f9ca7b772cc773
GitHub-Pull-Request: golang/go#74764
Reviewed-on: https://go-revi... | [
{
"path": "src/errors/join.go",
"patch": "@@ -28,12 +28,10 @@ func Join(errs ...error) error {\n \t}\n \tif n == 1 {\n \t\tfor _, err := range errs {\n-\t\t\tif err != nil {\n-\t\t\t\tif _, ok := err.(interface {\n-\t\t\t\t\tUnwrap() []error\n-\t\t\t\t}); ok {\n-\t\t\t\t\treturn err\n-\t\t\t\t}\n+\t\t\tif _... | 2025-07-26T02:49:42 |
facebook/react | a714685c156dd241b1d5e5ae3a98c439c88e64e4 | 277420803947724b43c47bbc47d3a353553868f1 | fix[compiler] remove duplicate parsePluginOptions from the compilePro… (#29831)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before s... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Program.ts",
"patch": "@@ -24,7 +24,7 @@ import { isHookDeclaration } from \"../Utils/HookDeclaration\";\n import { assertExhaustive } from \"../Utils/utils\";\n import { insertGatedFunctionDeclaration } from \"./Gating\";\n import { ad... | 2024-06-10T23:18:01 |
electron/electron | 3759e59bbda0ea9fe0660288b2f3e6ff8d139c56 | 41b2102d10b46a71361df378593e9042118fefee | fix: asan build on macos (#41587) | [
{
"path": "BUILD.gn",
"patch": "@@ -855,7 +855,7 @@ if (is_mac) {\n if (is_asan) {\n # crashpad_handler requires the ASan runtime at its @executable_path.\n sources += [ \"$root_out_dir/libclang_rt.asan_osx_dynamic.dylib\" ]\n- public_deps += [ \"//build/config/sanitizers:copy_asan_runt... | 2024-03-15T04:06:43 |
nodejs/node | 61b077d346545ba91c46a1a88b8d96db99a29e3b | 4efb7ae454cb67e2ff2cbf7291cf9cb4ce2f3a1d | tools: fix update-undici script
The `build:node` npm script now expects esbuild to be installed and
bin-linked.
Closes: https://github.com/nodejs/node/issues/56061
PR-URL: https://github.com/nodejs/node/pull/56069
Fixes: https://github.com/nodejs/node/issues/56061
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Revie... | [
{
"path": "tools/dep_updaters/update-undici.sh",
"patch": "@@ -80,7 +80,7 @@ cd \"$ROOT\"\n \n # Rebuild components from source\n rm lib/llhttp/llhttp*.*\n- \"$NODE\" \"$NPM\" install --no-bin-link --ignore-scripts\n+ \"$NODE\" \"$NPM\" install --ignore-scripts\n \"$NODE\" \"$NPM\" run build:wasm > ... | 2024-11-29T09:09:04 |
golang/go | 10c5cf68d40e2b26336e4b4e59d4c2f3fc3f03b9 | 46b5839231381e8b36eab10ba9b2c37ba579a75d | net/http: add proper panic message
Change-Id: Ibfb330eaf24e004ddec60a5ca08cdc780235ad8c
Reviewed-on: https://go-review.googlesource.com/c/go/+/688315
Reviewed-by: Damien Neil <dneil@google.com>
Auto-Submit: Damien Neil <dneil@google.com>
Reviewed-by: Mark Freeman <mark@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-s... | [
{
"path": "src/net/http/server.go",
"patch": "@@ -1614,7 +1614,7 @@ func writeStatusLine(bw *bufio.Writer, is11 bool, code int, scratch []byte) {\n // It's illegal to call this before the header has been flushed.\n func (w *response) bodyAllowed() bool {\n \tif !w.wroteHeader {\n-\t\tpanic(\"\")\n+\t\tpanic... | 2025-07-16T08:12:54 |
electron/electron | 1bfd3e0631a00a4940d7ce89bebb515ad7e519ca | 122a2fd177823e2bf26d8218992648d0483c1b1f | fix: account for potentially swapped `FrameTreeNodeId` in `WebFrameMain` (#41538)
fix: account for potentially swapped FrameTreeNodeId in WebFrameMain
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org> | [
{
"path": "shell/browser/api/electron_api_web_frame_main.cc",
"patch": "@@ -72,7 +72,17 @@ WebFrameMain* WebFrameMain::FromFrameTreeNodeId(int frame_tree_node_id) {\n \n // static\n WebFrameMain* WebFrameMain::FromRenderFrameHost(content::RenderFrameHost* rfh) {\n- return rfh ? FromFrameTreeNodeId(rfh->Get... | 2024-03-14T08:50:52 |
nodejs/node | 0a9524bd3519301ee392c3c6f89d0d14beaf9a71 | 4cf6fabce20eb3050c5b543d249e931ea3d3cad5 | tools: fix nghttp3 updater script
PR-URL: https://github.com/nodejs/node/pull/56007
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> | [
{
"path": "tools/dep_updaters/update-nghttp3.sh",
"patch": "@@ -42,16 +42,17 @@ cleanup () {\n trap cleanup INT TERM EXIT\n \n NGHTTP3_REF=\"v$NEW_VERSION\"\n-NGHTTP3_ZIP=\"nghttp3-$NEW_VERSION\"\n+ARCHIVE_BASENAME=\"nghttp3-${NEW_VERSION}\"\n \n cd \"$WORKSPACE\"\n \n echo \"Fetching nghttp3 source archive... | 2024-11-28T23:52:23 |
facebook/react | 277420803947724b43c47bbc47d3a353553868f1 | d172bdaf95b0be869f7d36b87c95a5f12b229195 | Remove Warning: prefix and toString on console Arguments (#29839)
Basically make `console.error` and `console.warn` behave like normal -
when a component stack isn't appended. I need this because I need to be
able to print rich logs with the component stack option and to be able
to disable instrumentation completel... | [
{
"path": "packages/internal-test-utils/shouldIgnoreConsoleError.js",
"patch": "@@ -7,6 +7,9 @@ module.exports = function shouldIgnoreConsoleError(format, args) {\n args[0] != null &&\n ((typeof args[0] === 'object' &&\n typeof args[0].message === 'string' &&\n+ // This sp... | 2024-06-10T22:41:56 |
golang/go | 46b5839231381e8b36eab10ba9b2c37ba579a75d | 98f301cf687b7a3aaab62c9d28999136117f9589 | test/codegen: fix failing condmove wasm tests
These recently added tests failed when using the -all_codgen flag.
Fixes #74770
Change-Id: Idea1ea02af2bd9f45c7d0a28d633c7442328e6df
Reviewed-on: https://go-review.googlesource.com/c/go/+/690715
Reviewed-by: Jorropo <jorropo.pgm@gmail.com>
Run-TryBot: Michael Munday <mik... | [
{
"path": "test/codegen/condmove.go",
"patch": "@@ -459,7 +459,7 @@ func cmovmathadd(a uint, b bool) uint {\n \t// amd64:\"ADDQ\", -\"CMOV\"\n \t// arm64:\"CSINC\", -\"CSEL\"\n \t// ppc64x:\"ADD\", -\"ISEL\"\n-\t// wasm:\"Add\", \"-Select\"\n+\t// wasm:\"I64Add\", -\"Select\"\n \treturn a\n }\n \n@@ -470,7 ... | 2025-07-26T23:17:49 |
electron/electron | 1840d7b7eecb7ae59de4f81de1813c643fdfa6b4 | 6cb84ddbfba5eecab1c66f6d990896124f38b1dc | fix: improve caption button appearance on Windows 11 (#41561)
https://chromium-review.googlesource.com/c/chromium/src/+/4428171 | [
{
"path": "shell/browser/ui/views/win_caption_button.cc",
"patch": "@@ -163,7 +163,7 @@ void WinCaptionButton::PaintSymbol(gfx::Canvas* canvas) {\n gfx::ScopedCanvas scoped_canvas(canvas);\n const float scale = canvas->UndoDeviceScaleFactor();\n \n- const int symbol_size_pixels = std::round(10 * scale)... | 2024-03-13T14:58:48 |
vercel/next.js | a64c5915a948f69e05212ef22ce675dab9e61c4c | c654bec6eb08382ed2ef47c90317039b6693f62a | Turbopack: Only load capsize-font-metrics once (#83654)
## What?
Currently each `next/font` import would cause the capsize-font-metrics
json to be loaded which is 4.2Mb so not super fast to load on machines
with a slower filesystem. On one trace provided it showed 100-160ms
spent on loading for each `next/font` impor... | [
{
"path": "crates/next-core/src/next_font/google/font_fallback.rs",
"patch": "@@ -1,10 +1,9 @@\n use anyhow::{Context, Result};\n use once_cell::sync::Lazy;\n use regex::Regex;\n-use rustc_hash::FxHashMap;\n use serde::{Deserialize, Serialize};\n use turbo_rcstr::{RcStr, rcstr};\n-use turbo_tasks::{NonLocal... | 2025-09-11T11:35:36 |
nodejs/node | aa7c8ccd45a7cd0f300d0598b6cca951ca8ea592 | d09458f3f0033779f0f7f56b819cd576490cc17f | src: fix check fd
PR-URL: https://github.com/nodejs/node/pull/56000
Fixes: https://github.com/nodejs/node/issues/55983
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Jason Zhang <xzha4350@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@... | [
{
"path": "src/util.cc",
"patch": "@@ -782,6 +782,16 @@ std::string DetermineSpecificErrorType(Environment* env,\n input.As<v8::Object>()->GetConstructorName();\n Utf8Value name(env->isolate(), constructor_name);\n return SPrintF(\"an instance of %s\", name.out());\n+ } else if (input->IsSy... | 2024-11-28T16:26:17 |
facebook/react | bf1bb2e5e52733a9577848f2913d06edcf24df14 | f81d5ee219848c7a02c0afdbd46fc1cedcc72df0 | Fix xplat sync syntax error | [
{
"path": ".github/workflows/commit_artifacts.yml",
"patch": "@@ -335,7 +335,7 @@ jobs:\n git --no-pager diff -U0 --cached | grep '^[+-]' | head -n 100\n echo \"====================\"\n # Ignore REVISION or lines removing @generated headers.\n- if git diff --cached' :(... | 2024-06-10T17:30:30 |
rust-lang/rust | ca3d3b7f719defbc5009ddc0ee56ab55f9966b64 | aa2da37260def88070d1c6d3567b605d7677a8fa | fix: remove redundant comment | [
{
"path": "src/tools/rust-analyzer/crates/ide-assists/src/handlers/generate_function.rs",
"patch": "@@ -146,7 +146,7 @@ fn gen_method(acc: &mut Assists, ctx: &AssistContext<'_>) -> Option<()> {\n if !is_editable_crate(target_module.krate(ctx.db()), ctx.db()) {\n return None;\n }\n- //Chan... | 2026-02-21T01:54:22 |
golang/go | e81eac19d30f373496cd1d08ce2f89c0469a21fd | 6fbad4be75e7746512bbe55794694ed788ea5c5b | hash/crc32: fix incorrect checksums with avx512+race
CRC value loaded from incorrect register, which happened
to line up with actual register on default compile.
Therefore failures would only show up with -race.
Add regression test with longer payloads.
Fix regression from CL 689435.
Fixes #74767.
Change-Id: Ib63d... | [
{
"path": "src/hash/crc32/crc32_amd64.s",
"patch": "@@ -173,11 +173,11 @@ TEXT ·ieeeCLMUL(SB),NOSPLIT,$0\n \tCMPQ CX, $1024\n \tJL useSSE42\n \n-\t// Use AVX512\n-\tVPXORQ Z0, Z0, Z0\n-\tVMOVQ AX, X0\n+\t// Use AVX512. Zero upper and Z10 and load initial CRC into lower part of Z10.\n+\tVPXORQ Z1... | 2025-07-28T15:26:52 |
vercel/next.js | bdb12360376a6996d84cac06b7c3a2671232973a | 22798842b43341b992b69b6f37566d5656a28898 | Turbopack: remove `css_environment` from `Environment` (#83487)
Change the fix from #83334 to not have a "CSS environment" inside of every environment. I don't think that this makes sense, and it also makes the implementation more complicated.
```diff
pub struct Environment {
execution: ExecutionEnvironment,
+ ... | [
{
"path": "crates/next-api/src/app.rs",
"patch": "@@ -218,6 +218,7 @@ impl AppProject {\n NextRuntime::NodeJs,\n self.project().encryption_key(),\n self.project().server_compile_time_info().environment(),\n+ self.project().client_compile_time_info().environment... | 2025-09-11T06:41:46 |
nodejs/node | 853b304db89410b3809049352f8211f6113fea6e | 24a8662359afb5ec90a0be95529f088f8e69ebc4 | doc: add added tag and fix typo sqlite.md
PR-URL: https://github.com/nodejs/node/pull/56012
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": "doc/api/sqlite.md",
"patch": "@@ -156,6 +156,10 @@ around [`sqlite3_prepare_v2()`][].\n \n ### `database.createSession([options])`\n \n+<!-- YAML\n+added: v23.3.0\n+-->\n+\n * `options` {Object} The configuration options for the session.\n * `table` {string} A specific table to track changes fo... | 2024-11-27T20:56:40 |
facebook/react | f81d5ee219848c7a02c0afdbd46fc1cedcc72df0 | a532d91d010a11083e598027cbd40fc0c935ea92 | Fix xplat sync (#29833)
## Overview
The clever trick in https://github.com/facebook/react/pull/29799 turns
out to not work because signedsource includes the generated hash in the
header. Reverts back to checking git diff, filtering out the REVISION
file and `@generated` headers. | [
{
"path": ".github/workflows/commit_artifacts.yml",
"patch": "@@ -327,108 +327,18 @@ jobs:\n grep -rl \"$CURRENT_VERSION\" ./compiled-rn || echo \"No files found with $CURRENT_VERSION\"\n grep -rl \"$CURRENT_VERSION\" ./compiled-rn | xargs -r sed -i -e \"s/$CURRENT_VERSION/$LAST_VERSION/... | 2024-06-10T17:24:45 |
rust-lang/rust | f4dcfa2e7f0f354220114069bc45c867cd2ee36f | c8d56aa26a0061c02aa23f337041c7cf72ccccde | fix: offer block `.let` in ref-expr in match arm
Example
---
```rust
fn main() {
match 2 {
bar => &bar.l$0
}
}
```
**Before this PR**
```text
sn deref *expr
sn match match expr {}
```
**After this PR**
```text
sn deref *expr
sn let let
sn letm let mut
sn match mat... | [
{
"path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/postfix.rs",
"patch": "@@ -16,7 +16,7 @@ use itertools::Itertools;\n use stdx::never;\n use syntax::{\n SmolStr,\n- SyntaxKind::{BLOCK_EXPR, EXPR_STMT, STMT_LIST},\n+ SyntaxKind::{EXPR_STMT, STMT_LIST},\n T, TextRange, Te... | 2026-02-17T15:09:29 |
golang/go | 6fbad4be75e7746512bbe55794694ed788ea5c5b | 5045fdd8ff8769c34e837fbfb0894a72dfa73b4d | cmd/compile: remove no-longer-necessary call to calculateDepths
We now calculate depths by default, no need to ask.
All calls were removed in CL 680775 when that CL was written, but an
additional call appeared between then and submitting the CL. Oops.
Another case for which a presubmit check would help.
Fixes #74762... | [
{
"path": "src/cmd/compile/internal/ssa/likelyadjust.go",
"patch": "@@ -15,7 +15,7 @@ type loop struct {\n \t// Next three fields used by regalloc and/or\n \t// aid in computation of inner-ness and list of blocks.\n \tnBlocks int32 // Number of blocks in this loop but not within inner loops\n-\tdepth int1... | 2025-07-25T21:15:50 |
electron/electron | 150c2bcef990e90b0fff232cdb15ad6fb59c2b63 | 1252f92431add122d7ab5f0947f7cf2f634c9fb8 | chore: bump chromium to 124.0.6351.0 (main) (#41514)
* chore: bump chromium in DEPS to 124.0.6339.0
* chore: update patches
* chore: bump chromium in DEPS to 124.0.6341.0
* chore: update patches
* chore: bump chromium in DEPS to 124.0.6343.0
* chore: bump chromium in DEPS to 124.0.6345.0
* chore: upd... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '124.0.6331.0',\n+ '124.0.6351.0',\n 'node_version':\n 'v20.11.1',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "filena... | 2024-03-12T09:15:41 |
nodejs/node | 090aa8bd8e6a6a3bd2c994c4954fcc0a086d701b | c6d3fddbb344aed5cec692cebef94b03bb8b502c | doc: add history entry for textEncoder.encodeInto()
Fixes: https://github.com/nodejs/node/issues/55938
PR-URL: https://github.com/nodejs/node/pull/55990
Refs: https://github.com/nodejs/node/pull/29524
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name> | [
{
"path": "doc/api/util.md",
"patch": "@@ -2166,6 +2166,10 @@ encoded bytes.\n \n ### `textEncoder.encodeInto(src, dest)`\n \n+<!-- YAML\n+added: v12.11.0\n+-->\n+\n * `src` {string} The text to encode.\n * `dest` {Uint8Array} The array to hold the encode result.\n * Returns: {Object}",
"additions": 4,
... | 2024-11-27T14:11:49 |
facebook/react | cdbafc8e67bb0669e70d361a956ab56ccd3bf7a3 | 7d445acb02d3f1011fa231898535c58197d6163a | compiler: Log metrics on pruned memo blocks/values
Adds additional information to the CompileSuccess LoggerEvent:
* `prunedMemoBlocks` is the number of reactive scopes that were pruned for some reason.
* `prunedMemoValues` is the number of unique _values_ produced by those scopes.
Both numbers exclude blocks that are... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Options.ts",
"patch": "@@ -169,6 +169,9 @@ export type LoggerEvent =\n fnName: string | null;\n memoSlots: number;\n memoBlocks: number;\n+ memoValues: number;\n+ prunedMemoBlocks: number;\n+ prunedMemoV... | 2024-06-07T23:44:36 |
vercel/next.js | 1482af898d7490ce417901c566f6641be48f80a5 | 345450a176f3bf8d50aef7a5b22f84743595c2e6 | [dev] Serve static metadata from filesystem (#83460)
Current metadata files are compiled to `route.js` files. This happens
not only to metadata API (e.g., `icon.tsx`), but to static files as
well, which is unnecessary. In development, this leads to confusing logs
such as:
```
Compiled /favicon.ico in ...ms
```
Users... | [
{
"path": "packages/next/src/lib/metadata/is-metadata-route.ts",
"patch": "@@ -44,6 +44,15 @@ export const getExtensionRegexString = (\n return `(?:\\\\.(${staticExtensions.join('|')})|(\\\\.(${dynamicExtensions.join('|')})))`\n }\n \n+/**\n+ * Matches the static metadata files, e.g. /robots.txt, /sitemap... | 2025-09-10T12:25:41 |
rust-lang/rust | d6ff921cd940e6500f4e477c164627e129535b72 | b6bed6f2d9f27e15d425958bbd288138ecdff61c | Fixed ByteStr not padding within its Display trait when no specific alignment is not mentioned (e.g. ':10' instead of ':<10', ':>10', or ':^1') | [
{
"path": "library/core/src/bstr/mod.rs",
"patch": "@@ -174,39 +174,38 @@ impl fmt::Debug for ByteStr {\n #[unstable(feature = \"bstr\", issue = \"134915\")]\n impl fmt::Display for ByteStr {\n fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {\n- fn fmt_nopad(this: &ByteStr, f: &mut fmt:... | 2026-02-19T19:53:10 |
electron/electron | fb1b5ca4ce9d79192df307b641fb2adb74b82da5 | f826506218fc72da8b1792221284a247b09cf800 | test: disable CapturableScreen tests on Windows x64 (#41543)
* test: disable CapturableScreen tests on Windows x64
* test: disable js-execute-iframe" case should not crash on win 32-bit | [
{
"path": "spec/crash-spec.ts",
"patch": "@@ -40,9 +40,13 @@ const shouldRunCase = (crashCase: string) => {\n case 'quit-on-crashed-event': {\n return (process.platform !== 'win32' || process.arch !== 'ia32');\n }\n- // TODO(jkleinsc) fix this test on Linux on arm/arm64\n+ // TODO(jklein... | 2024-03-08T00:17:39 |
golang/go | 5045fdd8ff8769c34e837fbfb0894a72dfa73b4d | d28b27cd8e612f3e3e6ffcfb7444a4e8829dbb48 | cmd/compile: fix containsUnavoidableCall computation
The previous algorithm was incorrect, as it reused the dominatedByCall
slice without resetting it. It also used the depth fields even though
they were not yet calculated.
Also, clean up a lot of the loop detector code that we never use.
Always compute depths. It i... | [
{
"path": "src/cmd/compile/internal/ssa/likelyadjust.go",
"patch": "@@ -12,18 +12,15 @@ type loop struct {\n \theader *Block // The header node of this (reducible) loop\n \touter *loop // loop containing this loop\n \n-\t// By default, children, exits, and depth are not initialized.\n-\tchildren []*loop ... | 2025-06-10T21:37:47 |
nodejs/node | 5bdf1c4ee8f0efecaef8c29370badc5f427179d5 | 17f39bcf3c853d73838f8f008cf1c8d1a371ec23 | doc: fix deprecation codes
PR-URL: https://github.com/nodejs/node/pull/56018
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "doc/api/deprecations.md",
"patch": "@@ -3786,7 +3786,7 @@ Type: Documentation-only\n Passing non-supported argument types is deprecated and, instead of returning `false`,\n will throw an error in a future version.\n \n-### DEP0187: `process.features.ipv6` and `process.features.uv`\n+### DEP0188: ... | 2024-11-27T13:16:21 |
facebook/react | 7d445acb02d3f1011fa231898535c58197d6163a | d193455fc37a91045112fbf0240a289a45173de0 | compiler: treat pruned scope outputs as reactive
Mostly addresses the issue with non-reactive pruned scopes. Before, values from pruned scopes would not be memoized, but could still be depended upon by downstream scopes. However, those downstream scopes would assume the value could never change. This could allow the d... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CollectReactiveIdentifiers.ts",
"patch": "@@ -9,7 +9,9 @@ import {\n IdentifierId,\n InstructionId,\n Place,\n+ PrunedReactiveScopeBlock,\n ReactiveFunction,\n+ isPrimitiveType,\n } from \"../HIR/HIR\";\n import { Reactive... | 2024-06-07T19:10:59 |
vercel/next.js | c5dab314072857cfab6cd1c7a7fb5e8e7019f20c | bc3ab4470c4b17baf54bf6229c641ca18d5ae3b5 | Ignore unhandledRejection events for promises that reject after a React render aborts (#83590)
Currently we only abort React renders that are prerendered so this
change in practice only affects prerendering. The intent is to not
report unhandledRejections that are downstream of an abort because the
signal these errors... | [
{
"path": "packages/next/src/server/node-environment-extensions/unhandled-rejection.tsx",
"patch": "@@ -0,0 +1,388 @@\n+/**\n+ * Manages unhandled rejection listeners to intelligently filter rejections\n+ * from aborted prerenders when cache components are enabled.\n+ *\n+ * THE PROBLEM:\n+ * When we abort ... | 2025-09-10T03:46:31 |
rust-lang/rust | 7c011122e9053f6f71b297cd69ad9d2422600f4c | fd20f16ffcfc9d19ae191ebef7dbc9469ad1d1c6 | Fix copy_and_clone.rs | [
{
"path": "tests/mir-opt/pre-codegen/copy_and_clone.rs",
"patch": "@@ -1,4 +1,3 @@\n-//@ [COPY] compile-flags: --cfg=copy\n //@ revisions: COPY CLONE\n \n // Test case from https://github.com/rust-lang/rust/issues/128081.",
"additions": 0,
"deletions": 1,
"language": "Rust"
}
] | 2026-02-20T21:18:10 |
golang/go | d28b27cd8e612f3e3e6ffcfb7444a4e8829dbb48 | 7b53d8d06ec432b1434b675b96a11526de6e6abe | go/types, types2: use nil to represent incomplete explicit aliases
Using Invalid to represent an incomplete alias is problematic since
it implies that an error has been reported somewhere. This causes
confusion for observers of invalid aliases trying not to emit
follow-on errors.
This change uses nil instead to repre... | [
{
"path": "src/cmd/compile/internal/types2/alias.go",
"patch": "@@ -6,7 +6,6 @@ package types2\n \n import (\n \t\"cmd/compile/internal/syntax\"\n-\t\"fmt\"\n )\n \n // An Alias represents an alias type.\n@@ -50,7 +49,7 @@ type Alias struct {\n }\n \n // NewAlias creates a new Alias type with the given type... | 2025-06-24T21:16:24 |
nodejs/node | 17f39bcf3c853d73838f8f008cf1c8d1a371ec23 | 9029aec834b537967c9ca46389ba74dd37f6e98f | doc: remove confusing and outdated sentence
Remove confusing and outdated sentence in `doc/api/stream.md`.
Fixes: https://github.com/nodejs/node/issues/55987
PR-URL: https://github.com/nodejs/node/pull/55988
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Re... | [
{
"path": "doc/api/stream.md",
"patch": "@@ -3846,8 +3846,6 @@ added: v8.0.0\n \n The `_destroy()` method is called by [`writable.destroy()`][writable-destroy].\n It can be overridden by child classes but it **must not** be called directly.\n-Furthermore, the `callback` should not be mixed with async/await\... | 2024-11-27T10:26:27 |
electron/electron | f826506218fc72da8b1792221284a247b09cf800 | 62331f5ac14954367e1e762b9f206c81ebe35109 | fix: `chrome://process-internals` failing to load (#41476)
fix: chrome://process-internals failing to load | [
{
"path": "electron_paks.gni",
"patch": "@@ -77,6 +77,7 @@ template(\"electron_extra_paks\") {\n \"//content:content_resources\",\n \"//content/browser/resources/gpu:resources\",\n \"//content/browser/resources/media:resources\",\n+ \"//content/browser/resources/process:resources\",\n... | 2024-03-07T14:31:16 |
facebook/react | d193455fc37a91045112fbf0240a289a45173de0 | aa0930452b06cee00a03544f1fbe1a6888578801 | compiler: Promote pruned scope declarations to temporaries if used in a later scope
There's a category of bug currently where pruned reactive scopes whose outputs are non-reactive can have their code end up inlining into another scope, moving the location of the instruction. Any value that had a scope assigned has to ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts",
"patch": "@@ -36,7 +36,7 @@ import {\n getHookKind,\n makeIdentifierName,\n } from \"../HIR/HIR\";\n-import { printPlace } from \"../HIR/PrintHIR\";\n+import { printIdentifier, printPlace } from \"..... | 2024-06-07T19:10:59 |
rust-lang/rust | fd20f16ffcfc9d19ae191ebef7dbc9469ad1d1c6 | 0376d43d443cba463a0b6a6ec9140ea17d7b7130 | Always check compile_flags for revision
Previously, `self.props.compile_flags.windows(2)` would return an empty
iterator in the case where `self.props.compile_flags` was 1 or 0 length.
This created incorrectness where tests like
`tests/mir-opt/pre-codegen/copy_and_clone.rs` would pass when they should fail. | [
{
"path": "src/tools/compiletest/src/runtest.rs",
"patch": "@@ -504,12 +504,10 @@ impl<'test> TestCx<'test> {\n let normalized_revision = normalize_revision(revision);\n let cfg_arg = [\"--cfg\", &normalized_revision];\n let arg = format!(\"--cfg={normalized_revision}\");... | 2026-02-20T21:12:31 |
vercel/next.js | 22bd9dec085bcc7bbdd0849169cdc5adfcd3a86a | 7ef02019cf0636df05f52167c16afe85f4aee61c | Update PPR cases with adapter config (#83595)
Continues https://github.com/vercel/next.js/pull/82919 from testing
fixing `fallback` value missing the extension and `/` app route not
being mapping to it's output file correctly. This also adds a test suite
with PPR enabled to catch these cases. | [
{
"path": "packages/next/src/build/adapter/build-complete.ts",
"patch": "@@ -795,7 +795,7 @@ export async function handleBuildComplete({\n \n let filePath = path.join(\n isAppPage ? appDistDir : pagesDistDir,\n- `${route}.${isAppPage && !dataRoute ? 'body' : 'html'}`\n+ `... | 2025-09-09T15:14:38 |
nodejs/node | ae8280c95df2ef7d02b37df6bc0c5b307147a5e5 | 7450332339ed40481f470df2a3014e2ec355d8d8 | process: deprecate `features.{ipv6,uv}` and `features.tls_*`
PR-URL: https://github.com/nodejs/node/pull/55545
Fixes: https://github.com/nodejs/node/issues/55537
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.co... | [
{
"path": "doc/api/deprecations.md",
"patch": "@@ -3786,6 +3786,33 @@ Type: Documentation-only\n Passing non-supported argument types is deprecated and, instead of returning `false`,\n will throw an error in a future version.\n \n+### DEP0187: `process.features.ipv6` and `process.features.uv`\n+\n+<!-- YAML... | 2024-11-27T04:19:16 |
electron/electron | a7d664e3a3d06a4d3f059cb51a375ee3155a23d6 | 62a897b75b68ce97ef241bdb0e63ab4ed6a8d8a7 | fix: `user-did-{resign|become}-active` events on macOS (#41506)
fix: user-did-{resign|become}-active events on macOS | [
{
"path": "shell/browser/api/electron_api_power_monitor_mac.mm",
"patch": "@@ -22,41 +22,45 @@ @implementation MacLockMonitor\n \n - (id)init {\n if ((self = [super init])) {\n- NSDistributedNotificationCenter* distCenter =\n+ NSDistributedNotificationCenter* distributed_center =\n [NSDistri... | 2024-03-06T11:43:39 |
golang/go | 7b53d8d06ec432b1434b675b96a11526de6e6abe | 374e3be2eb9b546ef1340f750e343c15a8f87dde | cmd/compile/internal/types2: add loaded state between loader calls and constraint expansion
There is a deadlock issue when calling SetConstraint from a lazy loader
because the loader is called from resolve(), which is holding a lock on
the loaded type.
If the loaded type has a generic constraint which refers back to ... | [
{
"path": "src/cmd/compile/internal/importer/gcimporter_test.go",
"patch": "@@ -673,3 +673,50 @@ type S struct {\n \t}\n \twg.Wait()\n }\n+\n+func TestIssue63285(t *testing.T) {\n+\ttestenv.MustHaveGoBuild(t)\n+\n+\t// This package only handles gc export data.\n+\tif runtime.Compiler != \"gc\" {\n+\t\tt.Ski... | 2025-06-13T15:47:57 |
vercel/next.js | 7ef02019cf0636df05f52167c16afe85f4aee61c | 318aacca9029831beccb5dedd8c73fbcdb0cf317 | Fix logic bug in sortByPageExts (#83610)
## What?
Fixes a logic bug caught by the code review bot:
https://github.com/vercel/next.js/pull/83555#discussion_r2329668930 | [
{
"path": "packages/next/src/build/sort-by-page-exts.ts",
"patch": "@@ -11,7 +11,7 @@ export function sortByPageExts(pageExtensions: PageExtensions) {\n const bExt = extname(b)\n \n const aNoExt = a.substring(0, a.length - aExt.length)\n- const bNoExt = a.substring(0, b.length - bExt.length)\n+ ... | 2025-09-09T14:12:41 |
electron/electron | 62a897b75b68ce97ef241bdb0e63ab4ed6a8d8a7 | cc7e80c4e3b54b118ba8086fdb9a8fcb0c3612c0 | chore: fix fs overrides for asar (#41507)
fix: fs overrides for asar | [
{
"path": "patches/node/chore_allow_the_node_entrypoint_to_be_a_builtin_module.patch",
"patch": "@@ -8,10 +8,10 @@ they use themselves as the entry point. We should try to upstream some form\n of this.\n \n diff --git a/lib/internal/modules/cjs/loader.js b/lib/internal/modules/cjs/loader.js\n-index 1f3b7190... | 2024-03-06T09:39:30 |
golang/go | 374e3be2eb9b546ef1340f750e343c15a8f87dde | 1aa154621d414c0d9886e581ae058187f5277e60 | os/user: user random name for the test user account
TestImpersonated and TestGroupIdsTestUser are flaky due to sporadic
failures when creating the test user account when running the tests
from different processes at the same time.
This flakiness can be fixed by using a random name for the test user
account.
Fixes #7... | [
{
"path": "src/os/user/user_windows_test.go",
"patch": "@@ -7,6 +7,7 @@ package user\n import (\n \t\"crypto/rand\"\n \t\"encoding/base64\"\n+\t\"encoding/binary\"\n \t\"errors\"\n \t\"fmt\"\n \t\"internal/syscall/windows\"\n@@ -16,11 +17,92 @@ import (\n \t\"runtime\"\n \t\"slices\"\n \t\"strconv\"\n+\t\"s... | 2025-07-24T13:38:35 |
vercel/next.js | 7a76e9fa68e0dfad4070177a25e300bd9dc230ee | 988110276402463b00277156ea3396a473598e61 | docs: rewrite+usePathname+prerender hydration error mitigation (#83462)
Closes:
https://linear.app/vercel/issue/DOC-5040/usepathname-and-rewrites | [
{
"path": "docs/01-app/03-api-reference/04-functions/use-pathname.mdx",
"patch": "@@ -65,6 +65,7 @@ const pathname = usePathname()\n ```tsx filename=\"app/example-client-component.tsx\" switcher\n 'use client'\n \n+import { useEffect } from 'react'\n import { usePathname, useSearchParams } from 'next/naviga... | 2025-09-09T13:14:57 |
vercel/next.js | 107458887e7cb5125940e146e2974a9a018a8a2b | 89ab752acdb2c5e39228e67a8b7a7852778a7863 | examples(with-supabase): fix import statement in tutorial (#83605)
Fixed import statements in tutorial code to point to files in the
correct folders.
Co-authored-by: Joseph <joseph.chamochumbi@vercel.com> | [
{
"path": "examples/with-supabase/components/tutorial/fetch-data-steps.tsx",
"patch": "@@ -18,7 +18,7 @@ create policy \"Allow public read access\" on notes\n for select\n using (true);`.trim();\n \n-const server = `import { createClient } from '@/utils/supabase/server'\n+const server = `import { createClie... | 2025-09-09T11:59:00 |
electron/electron | 9f673c859d5021eb9778a84160bbb5b4de04906c | e67ab9a93dadccecff30de50ab4555191c30b6c4 | chore: bump chromium to 124.0.6331.0 (main) (#41474)
* chore: bump chromium in DEPS to 124.0.6329.0
* chore: update patches
* 5319449: Activate popups after async opener fullscreen exit transitions | https://chromium-review.googlesource.com/c/chromium/src/+/5319449
* 5321532: [//ui] Remove ContextFactory::Sha... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '124.0.6323.0',\n+ '124.0.6331.0',\n 'node_version':\n 'v20.11.1',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2024-03-05T16:47:48 |
golang/go | aeb256e98ac479e2b590d79f6237174343934d10 | 08376e1a9c57d4b07a77d156810d3fec46caba79 | cmd/compile: remove unused arg from gorecover
We don't need this argument anymore to match up
a recover with its corresponding panic.
Change-Id: I5d3646cdd766259ee9d3d995a2f215f02e17abc6
Reviewed-on: https://go-review.googlesource.com/c/go/+/685555
Reviewed-by: Michael Knyszek <mknyszek@google.com>
LUCI-TryBot-Result... | [
{
"path": "src/cmd/compile/internal/escape/call.go",
"patch": "@@ -192,7 +192,7 @@ func (e *escape) call(ks []hole, call ir.Node) {\n \t\te.discard(call.X)\n \t\te.discard(call.Y)\n \n-\tcase ir.ODELETE, ir.OPRINT, ir.OPRINTLN, ir.ORECOVERFP:\n+\tcase ir.ODELETE, ir.OPRINT, ir.OPRINTLN, ir.ORECOVER:\n \t\tc... | 2025-07-02T17:00:42 |
facebook/react | 20b6f4c0e8a1f40ee61735201645e0395ff08f94 | 20841f9a6205a633e6d08a274db974481daaca23 | [Float][Fiber] Assume stylesheets in document are already loaded (#29811)
When we made stylesheets suspend even during high priority updates we
exposed a bug in the loading tracking of stylesheets that are loaded as
part of the preamble. This allowed these stylesheets to put suspense
boundaries into fallback mode m... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -2412,23 +2412,42 @@ export function getResource(\n if (!resource) {\n // We asserted this above but Flow can't figure out that the type satisfies\n const ownerDocument = getDocumentFromRoot(r... | 2024-06-07T23:53:24 |
vercel/next.js | 25b9f490bbca3feedd0489997f1764a73c1a953e | f507b0e66bb10275fa2c1c6c6d344b36e28458a1 | fix: devtools initial position should be from next config (#83571) | [
{
"path": "packages/next/src/next-devtools/dev-overlay/shared.ts",
"patch": "@@ -251,6 +251,9 @@ function getStackIgnoringStrictMode(stack: string | undefined) {\n const shouldDisableDevIndicator =\n process.env.__NEXT_DEV_INDICATOR?.toString() === 'false'\n \n+const devToolsInitialPositionFromNextConfig ... | 2025-09-08T23:12:41 |
electron/electron | d5912fd05a1f998b347aa97a7b80951a453d1f4c | a0dad83ded4661eb873cc62b75bb0f406ad7fecb | fix: webContents.print options should be optional (#41467) | [
{
"path": "lib/browser/api/web-contents.ts",
"patch": "@@ -263,13 +263,11 @@ WebContents.prototype.printToPDF = async function (options) {\n \n // TODO(codebytere): deduplicate argument sanitization by moving rest of\n // print param logic into new file shared between printToPDF and print\n-WebContents.prot... | 2024-02-29T15:19:44 |
golang/go | 08376e1a9c57d4b07a77d156810d3fec46caba79 | c76c3abc5426ab3d183514c834bcd7d6a653ae89 | runtime: iterate through inlinings when processing recover()
We care about the wrapper-ness of logical frames, not physical frames.
Fixes #73916
Fixes #73917
Fixex #73920
Change-Id: Ia17c8390e71e6c0e13e23dcbb7bc7273ef25da90
Reviewed-on: https://go-review.googlesource.com/c/go/+/685375
Reviewed-by: Keith Randall <khr... | [
{
"path": "src/runtime/panic.go",
"patch": "@@ -1142,18 +1142,21 @@ func gorecover(_ uintptr) any {\n \t\tnonWrapperFrames := 0\n \tloop:\n \t\tfor ; u.valid(); u.next() {\n-\t\t\tswitch u.frame.fn.funcID {\n-\t\t\tcase abi.FuncIDWrapper:\n-\t\t\t\tcontinue\n-\t\t\tcase abi.FuncID_gopanic:\n-\t\t\t\tif u.fr... | 2025-07-01T22:29:12 |
facebook/react | a65de775e2120b7b8195bfdc75791fc1cb6ac14f | a0a435d68f2e4e506faef4e763d13cbeb2e819c8 | [compiler] Add repro for func properties bug with gating
When gating is enabled, any function declaration properties that were
previously set (typically `Function.displayName`) would cause a crash
after compilation as the original identifier is no longer present.
ghstack-source-id: beb7e258561ea598d306fa67706d34a8788... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-gating-invalid-function-properties.expect.md",
"patch": "@@ -0,0 +1,84 @@\n+\n+## Input\n+\n+```javascript\n+// @gating\n+\n+/**\n+ * Fail: bug-gating-invalid-function-properties\n+ * Unexpected error in Forget ru... | 2024-06-07T19:39:14 |
nodejs/node | fb8de039c9ef97dc3bdd237d8711d8b3d911f265 | 619355b9c69eb99024d5198520425fa87879a727 | http2: fix memory leak caused by premature listener removing
Http2Session should always call ondone into JS to detach the
handle. In some case, ondone is defered to be called by the
StreamListener through WriteWrap, we should be careful of this
before getting rid of the StreamListener.
PR-URL: https://github.com/node... | [
{
"path": "src/node_http2.cc",
"patch": "@@ -803,13 +803,15 @@ void Http2Session::Close(uint32_t code, bool socket_closed) {\n CHECK_EQ(nghttp2_session_terminate_session(session_.get(), code), 0);\n SendPendingData();\n } else if (stream_ != nullptr) {\n+ // so that the previous listener of the... | 2024-11-26T03:25:22 |
vercel/next.js | 3b8ce1a479778dc161fec7c8e9401861deaaf447 | 7a43540b0dcb3ab2ba0a9b195801c9904cce9d6f | Fix build-indicator test flaking (#83585)
## What?
Fixes the flaky build-indicator test to use `retry` instead of
`waitFor`. `waitFor` assumes something happens within x amount of time
but if that's slightly slower than that it fails the test even though
the test is not broken. | [
{
"path": "test/integration/build-indicator/test/index.test.js",
"patch": "@@ -3,7 +3,7 @@\n import fs from 'fs-extra'\n import { join } from 'path'\n import webdriver from 'next-webdriver'\n-import { findPort, launchApp, killApp, waitFor, check } from 'next-test-utils'\n+import { findPort, launchApp, killA... | 2025-09-08T21:10:10 |
facebook/react | 0a5e0b0c2e496f335136c34663e8763cfa160b82 | cc1ec60d0de3be60948fc152b2377a42504f551a | [compiler] Fix outdated comment in scripts/release
ghstack-source-id: a37c6faa8b6d0fa443b5a3cb2f0d8398f8e7588c
Pull Request resolved: https://github.com/facebook/react/pull/29800 | [
{
"path": "compiler/scripts/release/publish-manual.js",
"patch": "@@ -51,19 +51,18 @@ async function getDateStringForCommit(commit) {\n }\n \n /**\n- * Please login to npm first with `npm login`. You will also need 2FA enabled to push to npm.\n- *\n * Script for publishing PUBLISHABLE_PACKAGES to npm. By d... | 2024-06-07T15:46:53 |
golang/go | c76c3abc5426ab3d183514c834bcd7d6a653ae89 | ebdbfccd989b07a8aef75af5fbe7448f035ee239 | encoding/json: fix truncated Token error regression in goexperiment.jsonv2
The jsontext.Decoder.ReadToken method reports a non-EOF error,
if the token stream is truncated and does not form a valid JSON value.
In contrast, the v1 json.Decoder.Token method would report EOF
so long as the input was a prefix of some valid... | [
{
"path": "src/encoding/json/stream_test.go",
"patch": "@@ -522,3 +522,38 @@ func TestHTTPDecoding(t *testing.T) {\n \t\tt.Errorf(\"Decode error:\\n\\tgot: %v\\n\\twant: io.EOF\", err)\n \t}\n }\n+\n+func TestTokenTruncation(t *testing.T) {\n+\ttests := []struct {\n+\t\tin string\n+\t\terr error\n+\t}{\n+... | 2025-07-25T00:10:54 |
electron/electron | 04df5ce492f61fd67912fc8bc0cd6a064618f231 | 13e601e35c43ad640fbe2bfea57e9a054f1dca4c | chore: bump chromium to 124.0.6323.0 (main) (#41412)
* chore: bump chromium in DEPS to 124.0.6315.0
* chore: update patches
* 5279678: Stream AIDA responses
https://chromium-review.googlesource.com/c/chromium/src/+/5279678
* 5276439: Remove non_network_url_loader_factory_remotes_
https://chromium-review... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '123.0.6312.5',\n+ '124.0.6323.0',\n 'node_version':\n 'v20.11.1',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "docs/a... | 2024-02-29T09:31:13 |
nodejs/node | b17a1fb1cec919c09aa3401c040b79e35c5ed82e | abd95a85c5144d5e9651c5379d4ab31cd211f242 | doc: add doc for PerformanceObserver.takeRecords()
PR-URL: https://github.com/nodejs/node/pull/55786
Fixes: https://github.com/nodejs/node/issues/55779
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Jason Zhang <xzha4350@gmail.com> | [
{
"path": "doc/api/perf_hooks.md",
"patch": "@@ -1339,6 +1339,14 @@ for (let n = 0; n < 3; n++)\n performance.mark(`test${n}`);\n ```\n \n+### `performanceObserver.takeRecords()`\n+\n+<!-- YAML\n+added: v16.0.0\n+-->\n+\n+* Returns: {PerformanceEntry\\[]} Current list of entries stored in the performance ... | 2024-11-25T10:02:32 |
vercel/next.js | 7a43540b0dcb3ab2ba0a9b195801c9904cce9d6f | 70ece6ef7856c816ee3e200b62228d44286376c0 | cna: fix typo (#83121)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributors
### Improving Documentation... | [
{
"path": "packages/create-next-app/templates/app-api/ts/gitignore",
"patch": "@@ -29,7 +29,7 @@ npm-debug.log*\n yarn-debug.log*\n yarn-error.log*\n \n-# env files (can opt-in for commiting if needed)\n+# env files (can opt-in for committing if needed)\n .env*\n \n # vercel",
"additions": 1,
"delet... | 2025-09-08T20:06:21 |
golang/go | 91c4f0ccd542a505f72ad0db952f55688851e49e | 3636ced112d89da03739fa7d5468c0270addaa28 | reflect: avoid a bounds check in stack-constrained code
Since CL 682496 we need more stack space to handle bounds checks.
The code modified here normally has no bounds checks, but in -N
builds it still does and thus uses too much stack.
Use unsafe arithmetic to avoid the bounds check.
This will hopefully fix some of... | [
{
"path": "src/reflect/makefunc.go",
"patch": "@@ -8,6 +8,7 @@ package reflect\n \n import (\n \t\"internal/abi\"\n+\t\"internal/goarch\"\n \t\"unsafe\"\n )\n \n@@ -164,13 +165,18 @@ func moveMakeFuncArgPtrs(ctxt *makeFuncCtxt, args *abi.RegArgs) {\n \tfor i, arg := range args.Ints {\n \t\t// Avoid write ba... | 2025-07-24T23:41:23 |
facebook/react | cc1ec60d0de3be60948fc152b2377a42504f551a | 142b2a8230130ddf3de8a9c8e7799a291f4d1a97 | [Flight] Run recreated Errors within a fake native stack (#29717)
Stacked on #29740.
Before:
<img width="719" alt="Screenshot 2024-06-02 at 11 51 20 AM"
src="https://github.com/facebook/react/assets/63648/8f79fa82-2474-4583-894e-a2329e9a6304">
After (updated with my patches to Chrome):
<img width="813" al... | [
{
"path": "fixtures/flight/config/webpack.config.js",
"patch": "@@ -7,6 +7,7 @@ const ReactFlightWebpackPlugin = require('react-server-dom-webpack/plugin');\n const fs = require('fs');\n const {createHash} = require('crypto');\n const path = require('path');\n+const {pathToFileURL} = require('url');\n const... | 2024-06-07T15:54:14 |
electron/electron | a6133e85d19d5f87ba12ec42bdbeca7061762aee | 267c0796dd779aa443d7d17f2eae23972bd7d083 | test: disable flaky macOS panel test & refactor screen capture testing (#41441)
* Disable flaky test
* Add helper for storing test artifacts
* Refactor screen capture tests
We have a pattern for inspecting a screen capture, so this refactor codifies that pattern into a helper. This gives us shorter test code,... | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -1642,6 +1642,8 @@ commands:\n fi\n - store_test_results:\n path: src/junit\n+ - store_artifacts:\n+ path: src/electron/spec/artifacts\n \n - *step-verify-mksnapshot\n - *step-verify-chromedriver",
... | 2024-02-28T03:54:20 |
nodejs/node | c9bf257180e7edaa493e5bd326a240fc9a765b7a | b09618e474e520e5fcb5ab97b4f750614c05564a | lib: avoid excluding symlinks in recursive fs.readdir with filetypes
Fixes: https://github.com/nodejs/node/issues/52663
Signed-off-by: Juan José Arboleda <soyjuanarbol@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/55714
Reviewed-By: Ethan Arrowood <ethan@arrowood.dev>
Reviewed-By: James M Snell <jasnell@gmail... | [
{
"path": "lib/fs.js",
"patch": "@@ -1402,9 +1402,12 @@ function readdirSyncRecursive(basePath, options) {\n // of the first array within the result.\n const length = readdirResult[0].length;\n for (let i = 0; i < length; i++) {\n+ // Avoid excluding symlinks, as they are not direct... | 2024-11-25T05:07:13 |
golang/go | 3636ced112d89da03739fa7d5468c0270addaa28 | a6eec8bdc79a89f6001d7788d280b8910c5f1b13 | encoding/json: fix extra data regression under goexperiment.jsonv2
When operating under v1 semantics in the v2 implementation,
a extra data error should take precedence over any semantic error
that could theoretically occur within the value itself.
This change only affects code compiled under goexperiment.jsonv2.
Fi... | [
{
"path": "src/encoding/json/jsontext/decode.go",
"patch": "@@ -776,7 +776,8 @@ func (d *decoderState) ReadValue(flags *jsonwire.ValueFlags) (Value, error) {\n \n // CheckNextValue checks whether the next value is syntactically valid,\n // but does not advance the read offset.\n-func (d *decoderState) Check... | 2025-07-24T19:16:35 |
vercel/next.js | cdefea9874423d5f54faa2481ecd1df32bd5e352 | 17d80397814086029b8b22269dd7f5dda9eca4f2 | fix: transpile-config should await import before return (#83566)
The fallback didn't work because it didn't await the import when
returning.
x-ref:
https://github.com/vercel/next.js/actions/runs/17548458762/job/49837846122
---------
Co-authored-by: Hendrik Liebau <mail@hendrik-liebau.de> | [
{
"path": "packages/next/src/build/next-config-ts/transpile-config.ts",
"patch": "@@ -123,7 +123,8 @@ export async function transpileConfig({\n // Value is 'strip' or 'transform' based on how the feature is enabled.\n // https://nodejs.org/api/process.html#processfeaturestypescript\n ... | 2025-09-08T15:03:41 |
facebook/react | 827cbea417a4058ce544184adff2ee2014625309 | c4b433f8cb31d6f73d4a800fcf11ed55c8689daf | compiler: Add support for ref effects
Fixes false positives where we currently disallow mutations of refs from callbacks passed to JSX, if the ref is also passed to jsx. We consider these to be mutations of "frozen" values, but refs are explicitly allowed to have interior mutability. The fix is to always allow (at lea... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferReferenceEffects.ts",
"patch": "@@ -29,6 +29,8 @@ import {\n isArrayType,\n isMutableEffect,\n isObjectType,\n+ isRefValueType,\n+ isUseRefType,\n } from \"../HIR/HIR\";\n import { FunctionSignature } from \"../HIR/ObjectSha... | 2024-06-07T00:02:19 |
electron/electron | b468b5e6e883a39ceaba6417ed8be1ece6ee281f | d89ad1106f3dd45dc8c2ed9e0de9336ee7706348 | build: print error and retry on symstore fail (#41452) | [
{
"path": "script/release/uploaders/upload-symbols.py",
"patch": "@@ -80,8 +80,14 @@ def main():\n \n \n def run_symstore(pdb, dest, product):\n- execute(['symstore', 'add', '/r', '/f', pdb, '/s', dest, '/t', product])\n-\n+ for attempt in range(2):\n+ try:\n+ execute(['symstore', 'add', '/r', '/f... | 2024-02-27T23:40:42 |
nodejs/node | b6fe731c55eb4cb9d14042a23e5002ed39b7c8b7 | 1d0738a85e7a0fce67ddcbef0a7e6b93b9559e99 | test: make HTTP/1.0 connection test more robust
Fixes: https://github.com/nodejs/node/issues/47200
Co-authored-by: Luigi Pinca <luigipinca@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/55959
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Jason Zhan... | [
{
"path": "test/parallel/test-http-remove-connection-header-persists-connection.js",
"patch": "@@ -10,6 +10,13 @@ const server = http.createServer(function(request, response) {\n // For HTTP/1.0, the connection should be closed after the response automatically.\n response.removeHeader('connection');\n \... | 2024-11-24T22:30:38 |
golang/go | a6eec8bdc79a89f6001d7788d280b8910c5f1b13 | 0fa88dec1e23ceeef9f5719e0f9ccb94766e53e7 | encoding/json: reduce error text regressions under goexperiment.jsonv2
There were minor and unnecessary error text changes
when v1 was implemented using v2.
Reduce divergences if possible.
Of the cases reported in #74713, there are no more differences for:
v1: json: cannot unmarshal number into Go value of type cha... | [
{
"path": "src/encoding/json/decode_test.go",
"patch": "@@ -416,6 +416,8 @@ type DoublePtr struct {\n \tJ **int\n }\n \n+type NestedUnamed struct{ F struct{ V int } }\n+\n var unmarshalTests = []struct {\n \tCaseName\n \tin string\n@@ -1213,6 +1215,28 @@ var unmarshalTests = []struct {\n ... | 2025-07-24T18:34:18 |
vercel/next.js | 17d80397814086029b8b22269dd7f5dda9eca4f2 | 90c5a66bfaaa0391d9d6734dedc1459792e0281b | Turbopack: Remove 20ms overhead on bootup (#83554)
## What?
This fetch, even though not awaited, was kicked off eagerly and the
first `fetch()` in Node.js loads the SSL certificate store which takes
roughly 20ms. Made sure that it's only fetched when the version is
needed, which is the first time errors happen, and t... | [
{
"path": "packages/next/src/server/dev/hot-reloader-turbopack.ts",
"patch": "@@ -690,7 +690,17 @@ export async function createHotReloaderTurbopack(\n }),\n ]\n \n- const versionInfoPromise = getVersionInfo()\n+ let versionInfoCached: ReturnType<typeof getVersionInfo> | undefined\n+ // This fetch, ... | 2025-09-08T14:47:30 |
facebook/react | c4b433f8cb31d6f73d4a800fcf11ed55c8689daf | fe5ce4e3e969aca4705b9973a6fdb5f132e03025 | [Flight] Allow aborting during render (#29764)
Stacked on #29491
Previously if you aborted during a render the currently rendering task
would itself be aborted which will cause the entire model to be replaced
by the aborted error rather than just the slot currently being rendered.
This change updates the abort... | [
{
"path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOM-test.js",
"patch": "@@ -36,6 +36,7 @@ let ErrorBoundary;\n let JSDOM;\n let ReactServerScheduler;\n let reactServerAct;\n+let assertConsoleErrorDev;\n \n describe('ReactFlightDOM', () => {\n beforeEach(() => {\n@@ -70,6 +71,8 @@ des... | 2024-06-06T21:41:27 |
rust-lang/rust | 6c6f5860f66c390f2477a3f713a9085ad49fe60e | fbd6934114e905d3cc61adbbd7e4a355eac5d0d7 | Fix warnings in rs{begin,end}.rs files
As can be seen locally and in CI logs (dist-i686-mingw) that code used
to trigger `static_mut_refs` warning. | [
{
"path": "library/rtstartup/rsbegin.rs",
"patch": "@@ -90,12 +90,12 @@ pub mod eh_frames {\n \n unsafe extern \"C\" fn init() {\n // register unwind info on module startup\n- __register_frame_info(&__EH_FRAME_BEGIN__ as *const u8, &mut OBJ as *mut _ as *mut u8);\n+ __register_fram... | 2026-02-19T21:28:52 |
electron/electron | 3394ee71f008d4655dde3acf883d6c89b994b218 | 12d7a8ff6605cca218e3e0a507de9a8f530c2abd | chore: fix import from patches.py in script/lib/git.py (#41430) | [
{
"path": "script/lib/git.py",
"patch": "@@ -13,7 +13,10 @@\n import subprocess\n import sys\n \n-from .patches import PATCH_FILENAME_PREFIX, is_patch_location_line\n+SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))\n+sys.path.append(SCRIPT_DIR)\n+\n+from patches import PATCH_FILENAME_PREFIX, is_patc... | 2024-02-26T02:36:30 |
golang/go | 7b5002433026cd1b0d99859bb76af12ec7ced54b | 7b9de668bd68f366d87ba50e9aeb1ba1d0bdb8e5 | runtime: detect successful recovers differently
Use stack unwinding instead of keeping incremental track of the argp
of defers that are allowed to recover.
It's much simpler, and it lets us get rid of the incremental tracking
by wrapper code. (Ripped out in a subsequent CL.)
We only need to stack unwind a few frames... | [
{
"path": "src/runtime/panic.go",
"patch": "@@ -864,6 +864,7 @@ func gopanic(e any) {\n \n \tvar p _panic\n \tp.arg = e\n+\tp.gopanicFP = unsafe.Pointer(sys.GetCallerSP())\n \n \trunningPanicDefers.Add(1)\n \n@@ -1086,27 +1087,86 @@ func (p *_panic) initOpenCodedDefers(fn funcInfo, varp unsafe.Pointer) bool... | 2025-07-01T21:45:45 |
nodejs/node | d0d52092cf4002dfc07254a2a2cb55aa9a3485af | a2a0c22fbf89a9172142e0f776a35932ac3ce514 | assert: add partialDeepStrictEqual
Fixes: https://github.com/nodejs/node/issues/50399
Co-Authored-By: Cristian Barlutiu <cristian.barlutiu@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/54630
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Mos... | [
{
"path": "doc/api/assert.md",
"patch": "@@ -2548,6 +2548,96 @@ assert.throws(throwingFirst, /Second$/);\n Due to the confusing error-prone notation, avoid a string as the second\n argument.\n \n+## `assert.partialDeepStrictEqual(actual, expected[, message])`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+> S... | 2024-11-23T17:45:49 |
vercel/next.js | 646c9ab4471e07da82d3c0d1b9a08e235bf07ddc | d165670ed1656f86b239ccf44988c880007a915d | Disable React debug channel by default (#83552)
While dogfooding the debug channel in internal applications, we found
bugs (most likely in React) that trigger runtime errors, when the debug
channel is used to transport debug information. Those need to be
investigated and fixed first, before we can enable the feature b... | [
{
"path": "packages/next/src/server/config-shared.ts",
"patch": "@@ -852,8 +852,6 @@ export interface ExperimentalConfig {\n /**\n * When enabled, in dev mode, Next.js will send React's debug info through the\n * WebSocket connection, instead of including it in the main RSC payload.\n- *\n- * @d... | 2025-09-08T09:49:14 |
rust-lang/rust | 279b8cd8229a9a0a71d82d403962fa81e52d6a86 | 8387095803f21a256a9a772ac1f9b41ed4d5aa0a | Skip `Debug` on `use_existential_projection_new_instead` | [
{
"path": "compiler/rustc_type_ir/src/predicate.rs",
"patch": "@@ -420,6 +420,7 @@ pub struct ExistentialProjection<I: Interner> {\n \n /// This field exists to prevent the creation of `ExistentialProjection`\n /// without using [`ExistentialProjection::new_from_args`].\n+ #[derive_where(skip(Deb... | 2026-02-18T18:16:38 |
facebook/react | fe5ce4e3e969aca4705b9973a6fdb5f132e03025 | 90499a730ed53c29c2321faaf19e77b4ebeeada4 | fix[react-devtools/store-test]: fork the test to represent current be… (#29777)
## Summary
The test started to fail after
https://github.com/facebook/react/pull/29088.
Fork the test and the expected store state for:
- React 18.x, to represent the previous behavior
- React >= 19, to represent the current RDT b... | [
{
"path": "packages/react-devtools-shared/src/__tests__/store-test.js",
"patch": "@@ -1915,8 +1915,12 @@ describe('Store', () => {\n });\n });\n \n- // @reactVersion >= 18.0\n- it('from react get counted', () => {\n+ // In React 19, JSX warnings were moved into the renderer - https://gith... | 2024-06-06T19:01:15 |
electron/electron | 26131b23b81a661fb65d37437b9a1f63b4408fae | 136762b45ff371d1dcfbc4c8ec730aa395ea5da2 | feat: add support for configuring system network context proxies (#41335)
* feat: add support for configuring system network context proxies
* chore: add specs
* chore: fix lint
* fix: address review feedback | [
{
"path": "docs/api/app.md",
"patch": "@@ -1468,6 +1468,24 @@ details.\n \n **Note:** Enable `Secure Keyboard Entry` only when it is needed and disable it when it is no longer needed.\n \n+### `app.setProxy(config)`\n+\n+* `config` [ProxyConfig](structures/proxy-config.md)\n+\n+Returns `Promise<void>` - Res... | 2024-02-22T17:08:25 |
nodejs/node | 19195608fcbf83969d32ea60197a20e4c0c98bd5 | d3bcb97e5a1c8caeba0b05102c03f60091fb5c69 | module: do not warn when require(esm) comes from node_modules
As part of the standard experimental feature graduation
policy, when we unflagged require(esm) we moved the
experimental warning to be emitted when require() is
actually used to load ESM, which previously was an error.
However, some packages in the ecosyste... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -70,6 +70,7 @@ const {\n module_export_private_symbol,\n module_parent_private_symbol,\n },\n+ isInsideNodeModules,\n } = internalBinding('util');\n \n const { kEvaluated, createRequiredModuleFacade } = internalBinding('module_wrap');\n... | 2024-11-23T11:28:47 |
golang/go | 3024785b929cd8a740da87e1c24aef2c9b30e019 | 741a19ab4197fb528f8d7f7d8a73d3db3ef99355 | cmd/compile,runtime: remember idx+len for bounds check failure with less code
Currently we must put the index and length into specific registers so
we can call into the runtime to report a bounds check failure.
So a typical bounds check call is something like:
MOVD R3, R0
MOVD R7, R1
CALL runtime.panicIndex
or, ... | [
{
"path": "src/cmd/compile/internal/ir/symtab.go",
"patch": "@@ -37,6 +37,8 @@ type symsStruct struct {\n \tMsanmove *obj.LSym\n \tNewobject *obj.LSym\n \tNewproc *obj.LSym\n+\tPanicBounds *obj.LSym\n+\tPanicExtend *obj.LSym\n \tPanicdivide *obj.LSym\n \tPanicshi... | 2025-06-18T21:50:23 |
vercel/next.js | d165670ed1656f86b239ccf44988c880007a915d | 85a2a029bcffe64aacf5c5872db43b70d8c660f9 | feat: use Node.js native TS resolver for `next.config.ts` (#83240)
### Why?
Since `next.config.ts` was resolved via require-hook, it had a
restriction with Native ESM syntax, like top-level await, dynamic
import, and Node.js ESM APIs like `import.meta.url`. There were previous
attempts to resolve this via the ESM loa... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -521,6 +521,50 @@ jobs:\n \n secrets: inherit\n \n+ # TODO: Remove this once we bump minimum Node.js version to v22\n+ test-next-config-ts-native-ts-dev:\n+ name: test next-config-ts-native-ts dev\n+ needs: ['changes', 'build-next', ... | 2025-09-08T08:56:12 |
facebook/react | 90499a730ed53c29c2321faaf19e77b4ebeeada4 | 29b12787902acff714466e5eb656a7ab0f978836 | Fix RN version string in builds (#29787)
The version was set for React but not the renderers | [
{
"path": "scripts/rollup/build-all-release-channels.js",
"patch": "@@ -168,12 +168,19 @@ function processStable(buildDir) {\n );\n }\n \n+ const rnVersionString =\n+ ReactVersion + '-native-fb-' + sha + '-' + dateString;\n if (fs.existsSync(buildDir + '/facebook-react-native')) {\n- ... | 2024-06-06T18:07:16 |
electron/electron | ddd93529d59002288699c5fc16be4843265e7f89 | e72f4f7f267fffb95aa62841c662fe2746775871 | fix: use ScreenCaptureKit exclusively on macOS 14.4 and higher (#41397)
This fixes a nasty warning / permission dialog that pops up to end-users
when consuming legacy APIs. Chrome has flipped these flags via field trials
as have other Electron apps. It should just be the default. | [
{
"path": "filenames.gni",
"patch": "@@ -383,6 +383,7 @@ filenames = {\n \"shell/browser/extended_web_contents_observer.h\",\n \"shell/browser/feature_list.cc\",\n \"shell/browser/feature_list.h\",\n+ \"shell/browser/feature_list_mac.mm\",\n \"shell/browser/file_select_helper.cc\",\n ... | 2024-02-21T20:59:49 |
nodejs/node | 05b3fcb4d7d421a079ebf0740ce5444e5a118090 | 3178a762d6a2b1a37b74f02266eea0f3d86603be | doc: fix Node.js 23 column in CHANGELOG.md
The column for Node.js 23 in `CHANGELOG.md` is missing an opening
`<td>` tag so was not correctly rendering.
PR-URL: https://github.com/nodejs/node/pull/55935
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -38,6 +38,7 @@ release.\n <th title=\"LTS Until 2025-04\"><a href=\"doc/changelogs/CHANGELOG_V18.md\">18</a> (LTS)</th>\n </tr>\n <tr>\n+ <td valign=\"top\">\n <b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.3.0\">23.3.0</a></b><br/>\n <a href=\"doc/changelogs/CHANG... | 2024-11-22T18:01:35 |
golang/go | c641900f72a595ff2e826367b64e3e418c265409 | d71d8aeafd7aa5c2ff3da6a782acdd573a0409af | cmd/compile: prefer base.Fatalf to panic in dwarfgen
Updates a few spots which call `panic` to instead call `base.Fatalf`.
Change-Id: I30b73c7994caa647245b0e253f20e0b88185e644
GitHub-Last-Rev: b3839bbe424294f92a1f9448e5e0ac074e722e4d
GitHub-Pull-Request: golang/go#74616
Reviewed-on: https://go-review.googlesource.com... | [
{
"path": "src/cmd/compile/internal/dwarfgen/dwarf.go",
"patch": "@@ -203,7 +203,7 @@ func createDwarfVars(fnsym *obj.LSym, complexOK bool, fn *ir.Func, apDecls []*ir\n \t\t\t\tcontinue\n \t\t\t}\n \t\t\tif n.Class != ir.PPARAMOUT || !n.IsOutputParamInRegisters() {\n-\t\t\t\tpanic(\"invalid ir.Name on debug... | 2025-07-14T22:28:59 |
vercel/next.js | 85a2a029bcffe64aacf5c5872db43b70d8c660f9 | 21085310c39e9fa10a3e9f8d798bb9de52747830 | Fix/msw-issue-68521 (#83482)
### Fix: [68521](https://github.com/vercel/next.js/issues/68521)
Updating outdated with-msw example
The
[with-msw](https://github.com/vercel/next.js/tree/canary/examples/with-msw)
is outdated and doesn't work with the latest msw version.
### What?
The
[with-msw](https://github.com/vercel/... | [
{
"path": "examples/with-msw/mocks/browser.ts",
"patch": "@@ -1,4 +1,4 @@\n-import { setupWorker } from \"msw\";\n+import { setupWorker } from \"msw/browser\";\n import { handlers } from \"./handlers\";\n \n export const worker = setupWorker(...handlers);",
"additions": 1,
"deletions": 1,
"langu... | 2025-09-08T07:11:34 |
facebook/react | 70194be4038158f5ba8e55e27f7ffd02be13bbca | 1e1e5cd25223fddbce0e3fb7889b06df0d93a950 | fix<compiler>: reread the testfilter file if filter enabled during the watch process (#29775)
Resolve #29720
In the above PR, I overlooked that we can change the filter mode during the watch process. Now it's fixed. | [
{
"path": "compiler/packages/snap/src/runner-watch.ts",
"patch": "@@ -189,14 +189,15 @@ function subscribeKeyEvents(\n state: RunnerState,\n onChange: (state: RunnerState) => void\n ) {\n- process.stdin.on(\"keypress\", (str, key) => {\n+ process.stdin.on(\"keypress\", async (str, key) => {\n if (... | 2024-06-06T17:48:24 |
nodejs/node | 5ba3b540d459a60c7edff5074073fb397be81e8a | d8947721570b007aed24d8de523129dc03a87fa3 | build: fix GN build for sqlite
PR-URL: https://github.com/nodejs/node/pull/55912
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Luigi Pinca <luigipi... | [
{
"path": "deps/sqlite/unofficial.gni",
"patch": "@@ -7,6 +7,10 @@\n template(\"sqlite_gn_build\") {\n config(\"sqlite_config\") {\n include_dirs = [ \".\" ]\n+ defines = [\n+ \"SQLITE_ENABLE_SESSION\",\n+ \"SQLITE_ENABLE_PREUPDATE_HOOK\",\n+ ]\n }\n \n gypi_values = exec_script(\"... | 2024-11-21T00:33:35 |
vercel/next.js | f9f3afc66418f3cc6b206ee50b632f9dd4128dd5 | 3ef17684e75bfed780f178022a3e9267879c0385 | fix: route handlers should validate invalid exports (#83500)
When using an unsupported API in a route handler (eg, `export const
dynamic` with `cacheComponents` enabled), we were not erroring in dev or
failing the build. This is because the transform only asserted on pages
& layouts, and not route handlers.
This upda... | [
{
"path": "crates/next-custom-transforms/src/transforms/react_server_components.rs",
"patch": "@@ -805,10 +805,10 @@ impl ReactServerComponentValidator {\n return;\n }\n static RE: Lazy<Regex> =\n- Lazy::new(|| Regex::new(r\"[\\\\/](page|layout)\\.(ts|js)x?$\").unwrap(... | 2025-09-06T14:38:49 |
golang/go | bd04f65511791860276f2f3f982133f7be007448 | 5c8624a396d1c0aa4f436d17044330bc931d5fbd | internal/runtime/exithook: fix a typo
That is the say -> That is to say
Change-Id: I4a19d4c500103e16e6ae55f41a9fbdddd4bb84a8
GitHub-Last-Rev: 571d49ab8e6d81ac9db8b47d89118fb74bd3f2f6
GitHub-Pull-Request: golang/go#74741
Reviewed-on: https://go-review.googlesource.com/c/go/+/690195
Reviewed-by: Michael Knyszek <mknysz... | [
{
"path": "src/internal/runtime/exithook/hooks.go",
"patch": "@@ -8,7 +8,7 @@\n // from a safe context (e.g. not an error/panic path or signal\n // handler, preemption enabled, allocation allowed, write barriers\n // allowed, etc), and that the exit function F will be invoked under\n-// similar circumstance... | 2025-07-24T13:58:50 |
facebook/react | 99da76f23ac85d279457470f8fb19a9b2f173ed0 | 704aeed022f4277cd5604bf6d76199a6cfe4707f | fix[react-devtools] remove native inspection button when it can't be used (#29779)
## Summary
There's no native inspection available in any of the React-Native
devtools:
* **React DevTools in Fusebox**
* **React DevTools standalone**
Besides, **React DevTools Inline** can't really open the devtools and
point... | [
{
"path": "packages/react-devtools-core/src/standalone.js",
"patch": "@@ -279,7 +279,7 @@ function initialize(socket: WebSocket) {\n // $FlowFixMe[incompatible-call] found when upgrading Flow\n store = new Store(bridge, {\n checkBridgeProtocolCompatibility: true,\n- supportsNativeInspection: true... | 2024-06-06T16:10:40 |
nodejs/node | cb7d855f88d4caad63d6563bb78e2772382b4c0b | f270462c09ddfd770291a7c8a2cd204b2c63d730 | 2024-11-20, Version 23.3.0 (Current)
Notable changes:
doc:
* enforce strict policy to semver-major releases (Rafael Gonzaga) https://github.com/nodejs/node/pull/55732
src:
* (SEMVER-MINOR) add cli option to preserve env vars on dr (Rafael Gonzaga) https://github.com/nodejs/node/pull/55697
util:
* (SEMVER-MINOR)... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -38,7 +38,8 @@ release.\n <th title=\"LTS Until 2025-04\"><a href=\"doc/changelogs/CHANGELOG_V18.md\">18</a> (LTS)</th>\n </tr>\n <tr>\n-<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.2.0\">23.2.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V23.md#23.3.0\">... | 2024-11-19T13:43:37 |
rust-lang/rust | a561a4b8e19ec1ba334c1433827b27208953d3d2 | fbd6934114e905d3cc61adbbd7e4a355eac5d0d7 | Errors on illegal SV init | [
{
"path": "compiler/rustc_hir_typeck/src/callee.rs",
"patch": "@@ -99,6 +99,15 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n _ => { /* cannot have a non-rust abi */ }\n }\n \n+ if self.is_scalable_vector_ctor(autoderef.final_ty()) {\n+ let mut err = self.dcx().create_err(error... | 2026-02-04T12:30:32 |
golang/go | 5c8624a396d1c0aa4f436d17044330bc931d5fbd | 44d73dfb4e5f80998dc0276e239e3e860c8d9e91 | cmd/internal/goobj: make error output clear
Change-Id: Ic8510037e5d745f3c9f1b9c203439d3fe2e2d5a5
GitHub-Last-Rev: 4101a1595bd542bec8c20e4332c884125ee57aff
GitHub-Pull-Request: golang/go#74703
Reviewed-on: https://go-review.googlesource.com/c/go/+/689515
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Reviewed-by: K... | [
{
"path": "src/cmd/internal/goobj/mkbuiltin.go",
"patch": "@@ -78,7 +78,7 @@ func mkbuiltin(w io.Writer) {\n \t\t\t\tcontinue\n \t\t\t}\n \t\t\tif decl.Tok != token.VAR {\n-\t\t\t\tlog.Fatal(\"unhandled declaration kind\", decl.Tok)\n+\t\t\t\tlog.Fatal(\"unhandled declaration kind: \", decl.Tok)\n \t\t\t}\n... | 2025-07-22T15:12:58 |
vercel/next.js | 0accb03cbedad6db79d1c82c46f006e3cbb37292 | 437e5ef2289b9854dc8a20826a848cf51066a46b | Use React's debug channel to transport debug info via WebSocket connection (#82748)
In dev mode, React is sending debug info (owners, stacks, console logs
etc.) from the server to the client so that they can be displayed in dev
tools. By default, this info is sent as part of the main RSC payload
(inlined into the HTML... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -801,5 +801,12 @@\n \"800\": \"`experimental.rdcForNavigations` is enabled, but `experimental.ppr` is not.\",\n \"801\": \"> `pages` and `app` directories should be under the same folder\",\n \"802\": \"Image with src \\\"%s\\\" has both \\\"preload\... | 2025-09-05T21:10:29 |
facebook/react | 704aeed022f4277cd5604bf6d76199a6cfe4707f | 3730b40e9bbacef0279f6d120b344c1544cb38ba | feat<Compiler>: consider that the dispatch function from `useReducer` is non-reactive (#29705)
Summary
The dispatch function from useReducer is stable, so it is also non-reactive.
the related PR: #29665
the related comment: #29674 (comment)
I am not sure if the location of the new test file is appropriate😅.
... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Globals.ts",
"patch": "@@ -13,6 +13,7 @@ import {\n BuiltInUseInsertionEffectHookId,\n BuiltInUseLayoutEffectHookId,\n BuiltInUseOperatorId,\n+ BuiltInUseReducerId,\n BuiltInUseRefId,\n BuiltInUseStateId,\n ShapeRegistry,\n@@ -265... | 2024-06-05T23:51:09 |
electron/electron | e72f4f7f267fffb95aa62841c662fe2746775871 | f350cce64f2d1f0a11de0c89b64dbf26ecb0b269 | chore: bump chromium to 123.0.6312.5 (main) (#41337)
* chore: bump chromium in DEPS to 123.0.6300.2
* chore: bump chromium in DEPS to 123.0.6301.2
* chore: update patches
* chore: bump chromium in DEPS to 123.0.6302.0
* chore: bump chromium in DEPS to 123.0.6304.0
* chore: update patches
* chore: bum... | [
{
"path": "BUILD.gn",
"patch": "@@ -744,7 +744,7 @@ source_set(\"electron_lib\") {\n \"//chrome/browser/resources/pdf:resources\",\n \"//components/pdf/browser\",\n \"//components/pdf/browser:interceptors\",\n- \"//components/pdf/common\",\n+ \"//components/pdf/common:constants\"... | 2024-02-21T20:27:05 |
nodejs/node | f270462c09ddfd770291a7c8a2cd204b2c63d730 | 81f7c769e123803a6e93ffa1b8555c27ca240f09 | test: fix determining lower priority
PR-URL: https://github.com/nodejs/node/pull/55908
Fixes: https://github.com/NixOS/nixpkgs/issues/355919
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "test/parallel/test-os.js",
"patch": "@@ -84,7 +84,8 @@ assert.ok(hostname.length > 0);\n // IBMi process priority is different.\n if (!common.isIBMi) {\n const { PRIORITY_BELOW_NORMAL, PRIORITY_LOW } = os.constants.priority;\n- const LOWER_PRIORITY = os.getPriority() > PRIORITY_BELOW_NORMAL ? ... | 2024-11-20T18:25:05 |
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.