repo stringclasses 11
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-10 17:52:01 |
|---|---|---|---|---|---|
golang/go | 4dca8b3e619a321de36b99b6b514d9c01ef76e5e | 4f5d5ddf7c79305cc49c777efa3c365dd58f34df | encoding/json/v2: dual support errors.ErrUnsupported and SkipFunc
This change supports both errors.ErrUnsupported and SkipFunc.
In a future change, we will remove SkipFunc entirely in favor
of using errors.ErrUnsupported, which exists for a similar pupose.
Updates #74324
Change-Id: I5f1ada8e3914513d7d23c504f5965ca8d... | [
{
"path": "src/encoding/json/v2/arshal.go",
"patch": "@@ -50,7 +50,7 @@ var export = jsontext.Internal.Export(&internal.AllowInternalUse)\n //\n // - If any type-specific functions in a [WithMarshalers] option match\n // the value type, then those functions are called to encode the value.\n-// If ... | 2026-02-10T19:34:35 |
nodejs/node | 1a345922e45c4b7165437648c64075b44216d281 | 0a5418088fb724c0ab4a958447e338ad13c6d2eb | doc: add a tip about developer mode on Windows
On Windows, creating symlinks requires Developer Mode to be
enabled or running the command as Administrator. Tests that
rely on creating symlinks may fail with EPERM errors if
symlink creation is not permitted. Add a tip about this
for the docs about running tests on Wind... | [
{
"path": "BUILDING.md",
"patch": "@@ -870,6 +870,11 @@ To test if Node.js was built correctly:\n Release\\node -e \"console.log('Hello from Node.js', process.version)\"\n ```\n \n+> \\[!TIP]\n+> On Windows, creating symlinks requires [Developer Mode][] to be enabled or\n+> running the command as Administra... | 2025-12-20T12:28:30 |
vercel/next.js | d54719ae4c11c1974143481fc6e489c159af80e4 | 5c24c44440609d2e5441db9c3749d37ac0451841 | [test] Fix jest-haste-map warnings (#82995)
Co-authored-by: Hendrik Liebau <mail@hendrik-liebau.de> | [
{
"path": "jest.config.js",
"patch": "@@ -19,7 +19,27 @@ const customJestConfig = {\n '<rootDir>/../packages/font/src/',\n '<rootDir>/../packages/next-routing/',\n ],\n- modulePathIgnorePatterns: ['/\\\\.next/'],\n+ haste: {\n+ // Throwing to avoid warnings creeping up over time polluting log... | 2026-02-26T09:57:07 |
electron/electron | 32ae696ee04490e6076ebd90605bc28a960d405a | b121065984368e1adad83648f03fc968c11bba2a | feat: add --disable-geolocation command-line flag for macOS (#45934)
* feat(macos): add --disable-geolocation-mac command-line flag
* internally deny geolocation requests if flag set
e
* wrap PermissionRequestHandler instead
* wrap custom handler and deny regardless of response
* Update docs/api/command-line-swit... | [
{
"path": "docs/api/command-line-switches.md",
"patch": "@@ -49,6 +49,10 @@ Disables the disk cache for HTTP requests.\n \n Disable HTTP/2 and SPDY/3.1 protocols.\n \n+### --disable-geolocation _macOS_\n+\n+Disables the Geolocation API. Permission requests for geolocation will be denied internally regardles... | 2025-11-13T15:39:03 |
facebook/react | e2ba45bb39bd744454ee599bdc2df497c79d9707 | 886b3d36d7994259df2c3ab1983f425a4b718615 | [DevTools] fix: keep search query in a local sync state (#34423)
When the search query changes, we kick off a transition that updates the
search query in a reducer for TreeContext. The search input is also
using this value for an `input` HTML element.
For a larger applications, sometimes there is a noticeable delay i... | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/ComponentSearchInput.js",
"patch": "@@ -8,22 +8,34 @@\n */\n \n import * as React from 'react';\n-import {useContext} from 'react';\n-import {TreeDispatcherContext, TreeStateContext} from './TreeContext';\n+import {useState, useContext... | 2025-09-10T17:38:47 |
nodejs/node | 4e1f39b678b37017ac9baa0971e3aeecd3b67b51 | 25947d6504c0e01d8897be5b78292e3e01d16fc9 | doc: add @avivkeller to collaborators
Fixes: https://github.com/nodejs/node/issues/60937
PR-URL: https://github.com/nodejs/node/pull/61115
Reviewed-By: Richard Lau <richard.lau@ibm.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> | [
{
"path": "README.md",
"patch": "@@ -287,6 +287,8 @@ For information about the governance of the Node.js project, see\n **Yagiz Nizipli** <<yagiz@nizipli.com>> (he/him) - [Support me](https://github.com/sponsors/anonrig)\n * [atlowChemi](https://github.com/atlowChemi) -\n **Chemi Atlow** <<chemi@atlow.c... | 2025-12-18T16:00:35 |
golang/go | 1915ea0f1e5965f982fcc9efd79076f707623c27 | cba008453e9535840ebfcf6a038a4172008ef1fc | net/netip: optimize Prefix.String
goos: linux
goarch: amd64
pkg: net/netip
cpu: Intel(R) Core(TM) Ultra 9 285K
│ /tmp/BenchmarkPrefixString_before.txt │ /tmp/BenchmarkPrefixString_after.txt │
│ sec/op │ sec/op vs base │
PrefixString-2... | [
{
"path": "src/net/netip/netip.go",
"patch": "@@ -1592,5 +1592,23 @@ func (p Prefix) String() string {\n \tif !p.IsValid() {\n \t\treturn \"invalid Prefix\"\n \t}\n-\treturn p.ip.String() + \"/\" + strconv.Itoa(p.Bits())\n+\tvar b []byte\n+\tswitch {\n+\tcase p.ip.z == z4:\n+\t\tconst maxCap = len(\"255.255... | 2026-02-11T10:33:35 |
vercel/next.js | 34647db294e26df3385b3f01ae7a23343a98228f | 299e1ff31897f67a6ddf534be40629facf5517e6 | Turbopack: add webpack loader names to traces (#87230)
When examining the long trace this morning, it wasn't immediately clear
what was running in the shell-out to Node.
This doesn't fully fix the issue, but it makes it clearer which webpack
loader is running, similar to how the PostCSS loader lists the name of
the cs... | [
{
"path": "turbopack/crates/turbopack-core/src/loader.rs",
"patch": "@@ -67,3 +67,18 @@ impl TaskInput for ResolvedWebpackLoaderItem {\n #[derive(Debug, Clone)]\n #[turbo_tasks::value(shared, transparent)]\n pub struct WebpackLoaderItems(pub Vec<WebpackLoaderItem>);\n+\n+impl std::fmt::Display for WebpackLo... | 2026-02-26T02:10:23 |
electron/electron | b121065984368e1adad83648f03fc968c11bba2a | 2622e6606d7d6247ffb8aff5bcee1649d9288542 | docs: clarify meaning of string value for menu item icon (#48919)
* docs: clarify meaning of string value for menu item icon
* fix: format
* fix: wording | [
{
"path": "docs/api/menu-item.md",
"patch": "@@ -34,7 +34,8 @@ See [`Menu`](menu.md) for examples.\n * `sublabel` string (optional) _macOS_ - Available in macOS >= 14.4\n * `toolTip` string (optional) _macOS_ - Hover text for this menu item.\n * `accelerator` string (optional) - An [Accelerator](../tu... | 2025-11-13T15:10:18 |
nodejs/node | 240382451df116493185db5fe3ca2d08d23bd6c9 | 2e597ded4bf8f90146647ab666123c3cb5069e78 | doc: add gurgunday to collaborators
PR-URL: https://github.com/nodejs/node/pull/61094
Fixes: https://github.com/nodejs/node/issues/60921
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "README.md",
"patch": "@@ -337,6 +337,8 @@ For information about the governance of the Node.js project, see\n **Geoffrey Booth** <<webadmin@geoffreybooth.com>> (he/him)\n * [gireeshpunathil](https://github.com/gireeshpunathil) -\n **Gireesh Punathil** <<gpunathi@in.ibm.com>> (he/him)\n+* [gurg... | 2025-12-17T12:24:43 |
facebook/react | a34c5dff159a5b546a5b24a93e11102713a7d0ec | 3bf8ab430eb2182e787e0f1c74c0d9ccab89e4ac | Ignore generic InvalidStateError in View Transitions (#34450)
Fixes #34098.
There's an issue in Chrome where the `InvalidStateError` always has the
same error message. The spec doesn't specify the error message to use
but it's more useful to have a specific one for each case like Safari
does.
One reason it's better ... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -2046,24 +2046,17 @@ function customizeViewTransitionError(\n error.message ===\n 'Skipping view transition because document visibility state has become hidden.' ||\n error.message ===\n- ... | 2025-09-10T13:07:11 |
golang/go | cba008453e9535840ebfcf6a038a4172008ef1fc | 3e4143dd440ac2621ef03d394cdc2cc0ac34acd5 | cmd/cover: exclude commented-out code from coverage instrumentation
Add logic to exclude purely commented lines from coverage instrumentation.
When instrumenting Go code for coverage, the cover tool now identifies
and excludes lines that contain only comments from coverage blocks.
This prevents commented-out code fro... | [
{
"path": "src/cmd/cover/cover.go",
"patch": "@@ -13,6 +13,7 @@ import (\n \t\"fmt\"\n \t\"go/ast\"\n \t\"go/parser\"\n+\t\"go/scanner\"\n \t\"go/token\"\n \t\"internal/coverage\"\n \t\"internal/coverage/encodemeta\"\n@@ -266,6 +267,142 @@ type File struct {\n \tpkg *Package\n }\n \n+// Range represents... | 2026-02-13T09:00:43 |
vercel/next.js | 14ac25b975133708a69484d2d5dba322dcd616e6 | e2ef94e2efb4d0067d62ce492dba5568ad1379d9 | Bump Turborepo to 2.8.11 (#90530)
<!-- 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 Do... | [
{
"path": ".github/workflows/build_and_deploy.yml",
"patch": "@@ -19,7 +19,7 @@ concurrency:\n \n env:\n NAPI_CLI_VERSION: 2.18.4\n- TURBO_VERSION: 2.8.9\n+ TURBO_VERSION: 2.8.11\n NODE_LTS_VERSION: 20\n CARGO_PROFILE_RELEASE_LTO: 'true'\n TURBO_TEAM: 'vercel'",
"additions": 1,
"deletions"... | 2026-02-25T22:28:38 |
facebook/react | 3bf8ab430eb2182e787e0f1c74c0d9ccab89e4ac | acada3035fe2a0dacfafc0ad78914e77d11fb823 | Add missing Activity export to development mode (#34439)
This is exported in the prod version of ReactServer experimental but not
the development version so we can't use it in fixtures from Server
Components. | [
{
"path": "packages/react/src/ReactServer.experimental.development.js",
"patch": "@@ -17,6 +17,7 @@ import {\n REACT_SUSPENSE_TYPE,\n REACT_SUSPENSE_LIST_TYPE,\n REACT_VIEW_TRANSITION_TYPE,\n+ REACT_ACTIVITY_TYPE,\n } from 'shared/ReactSymbols';\n import {\n cloneElement,\n@@ -82,5 +83,6 @@ export ... | 2025-09-10T01:30:37 |
nodejs/node | 05f8772096f974190b11eabce0ea657bc5c8c1b1 | 6322071efea46c8f8caf02c8ed504cee194cd661 | tools: fix update-nghttp2 signature verification
Detached signatures must be passed to `gpgv` as a filename before
the datafile (which can be stdin but the detached signature file
cannot be stdin and cannot be piped in).
PR-URL: https://github.com/nodejs/node/pull/61035
Refs: https://github.com/nodejs/node/pull/60113... | [
{
"path": "tools/dep_updaters/update-nghttp2.sh",
"patch": "@@ -50,12 +50,13 @@ echo \"Fetching nghttp2 source archive\"\n curl -sL -o \"$NGHTTP2_TARBALL\" \"https://github.com/nghttp2/nghttp2/releases/download/$NGHTTP2_REF/$NGHTTP2_TARBALL\"\n \n echo \"Verifying PGP signature\"\n-curl -sL \"https://github... | 2025-12-14T15:01:11 |
electron/electron | 10b07deb9733f02f451a7c739ef4886d0d83812a | 92a910d15c6073caea23dee6682852e17943580f | chore: bump chromium to 144.0.7522.0 (main) (#48892)
* chore: bump chromium in DEPS to 144.0.7522.0
* 7131867: Remove GenericScopedHandle::IsValid in favor of is_valid
https://chromium-review.googlesource.com/c/chromium/src/+/7131867
* 7078879: [video pip] Remove old controls
https://chromium-review.googlesource.c... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '144.0.7521.0',\n+ '144.0.7522.0',\n 'node_version':\n 'v24.11.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2025-11-13T08:49:51 |
golang/go | 3e4143dd440ac2621ef03d394cdc2cc0ac34acd5 | 8a0bc29bedd45324c52cfdc7717fabfc82673e4d | doc: document GODEBUG carve out for security releases
Fixes #63741
Change-Id: I9c40fff7d3ad67565205657c5d89934a3f1f576c
Reviewed-on: https://go-review.googlesource.com/c/go/+/723102
Auto-Submit: Roland Shoemaker <roland@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.c... | [
{
"path": "doc/godebug.md",
"patch": "@@ -85,6 +85,9 @@ if the work module's `go.mod` or the workspace's `go.work`\n says `go` `1.20`, then the program defaults to `panicnil=1`,\n matching Go 1.20 instead of Go 1.21.\n \n+As an exception, GODEBUGs introduced for security releases\n+will have the new behavio... | 2025-11-21T22:40:52 |
vercel/next.js | 5f6aa1cbb8c8f8a17cb8f85d41e49ed9c713ead0 | c36d3427256003cf1340bad9ca3f579d8e2aa7da | Fix: server-patch retry preserves push/replace intent of suspended transitions (#90533)
When a navigation triggers a server-patch retry (due to a route tree
mismatch), the retry was unconditionally using navigateType='replace'.
This assumed the original navigation had already committed to the
browser history. But if t... | [
{
"path": "packages/next/src/client/components/app-router.tsx",
"patch": "@@ -25,6 +25,7 @@ import {\n type NavigationPromises,\n } from '../../shared/lib/hooks-client-context.shared-runtime'\n import { dispatchAppRouterAction, useActionQueue } from './use-action-queue'\n+import { setLastCommittedTree } f... | 2026-02-25T21:22:49 |
electron/electron | 92a910d15c6073caea23dee6682852e17943580f | 3c5513015a944bf4da0c3a830fb9aa72c61a0fea | fix: Windows: Calling window.setFocusable(true) will no longer cause a window to lose focus (#45640)
Make setFocusable only deactivate a window if focusable is false. Do not deactivate a window when setting focusable to true. | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -1363,7 +1363,8 @@ void NativeWindowViews::SetFocusable(bool focusable) {\n ex_style |= WS_EX_NOACTIVATE;\n ::SetWindowLong(GetAcceleratedWidget(), GWL_EXSTYLE, ex_style);\n SetSkipTaskbar(!focusable);\n- Focus(false);\n+ if (!focusabl... | 2025-11-12T20:15:40 |
vercel/next.js | c36d3427256003cf1340bad9ca3f579d8e2aa7da | 08ae81fab6ad27bcdcf10d01722a82cd2517177a | [ci] Crash if next-swc could not be loaded when `NEXT_TEST_NATIVE_DIR` is specified (#90387) | [
{
"path": "apps/bundle-analyzer/package.json",
"patch": "@@ -3,10 +3,10 @@\n \"version\": \"16.0.2-canary.16\",\n \"private\": true,\n \"scripts\": {\n- \"build\": \"cross-env NEXT_TEST_NATIVE_DIR=no next build --no-mangling\",\n- \"dev\": \"cross-env NEXT_TEST_NATIVE_DIR=no next dev\",\n+ \"... | 2026-02-25T20:55:45 |
facebook/react | acada3035fe2a0dacfafc0ad78914e77d11fb823 | 969a9790ad58cc27eea63df9e5cf992b66bf1fd5 | [compiler] Fix false positive hook return mutation error (#34424)
This was fun. We previously added the MaybeAlias effect in #33984 in
order to describe the semantic that an unknown function call _may_ alias
its return value in its result, but that we don't know this for sure. We
record mutations through MaybeAlias ed... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferMutationAliasingEffects.ts",
"patch": "@@ -748,10 +748,14 @@ function applyEffect(\n case 'Alias':\n case 'Capture': {\n CompilerError.invariant(\n- effect.kind === 'Capture' || initialized.has(effect.into.ident... | 2025-09-09T21:07:47 |
nodejs/node | 4f24aff94ad9160bceaf9dcc9cf5235a65f01029 | 28b11396feb9ae576d492ebee1b5840b9b6689ea | module: preserve URL in the parent created by createRequire()
Previously, createRequire() does not preserve the URL it gets
passed in the mock parent module created, which can be
observable if it's used together with module.registerHooks().
This patch adds preservation of the URL if createRequire()
is invoked with one... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -135,7 +135,7 @@ const { BuiltinModule } = require('internal/bootstrap/realm');\n const {\n maybeCacheSourceMap,\n } = require('internal/source_map/source_map_cache');\n-const { pathToFileURL, fileURLToPath, isURL } = require('internal/url');\n+... | 2025-12-13T07:36:20 |
golang/go | c9cbeb0a1b08a9830a3d2d4abe0c2108e52f7647 | 92c7fcf137848ad74f88f75fc21bcb159eb08104 | encoding/json/v2: remove `unknown` tag option and DiscardUnknownMembers
WARNING: This commit contains breaking changes
for those already using GOEXPERIMENT=jsonv2.
This removes support for the `unknown` tag option and
the DiscardUnknownMembers marshal option.
The `unknown` tag option semantics are a bit too subtle
e... | [
{
"path": "src/encoding/json/internal/jsonflags/flags.go",
"patch": "@@ -120,7 +120,6 @@ const (\n \tFormatNilSliceAsNull // marshal only\n \tOmitZeroStructFields // marshal only\n \tMatchCaseInsensitiveNames // marshal or unmarshal\n-\tDiscardUnknownMembers // marshal only\n \tRejectUnknownMe... | 2026-02-03T01:52:37 |
vercel/next.js | 08ae81fab6ad27bcdcf10d01722a82cd2517177a | 67bb800f321df5ea81633b557a10bacfe666ee8d | [Instant] Fix loading.js not being counted as a suspense boundary (#90292)
Fixes a bug where a loading.js isn't properly considered as providing a
suspense boundary for a page. This is because we're placing the boundary
around the segment component itself, but it should be rendered above the
`LoadingBoundary` that is ... | [
{
"path": "packages/next/src/client/components/layout-router.tsx",
"patch": "@@ -694,6 +694,17 @@ export default function OuterLayoutRouter({\n use(unresolvedThenable) as never\n }\n \n+ let maybeValidationBoundaryId: string | null = null\n+ if (\n+ typeof window === 'undefined' &&\n+ process.... | 2026-02-25T20:46:31 |
electron/electron | 3c5513015a944bf4da0c3a830fb9aa72c61a0fea | 27727dbe0abab78b3686ecc77dd3d3108c157c1d | refactor: make `api::WebRequest` inherit from `gin::Wrappable` (#48762)
* refactor: make api::WebRequest inherit from gin::Wrappable
refactor: remove unused v8::Isolate* arg from WebRequest ctor
refactor: make electron::api::Session::web_request_ a cppgc::Member<api::WebRequest>
refactor: allocate api::WebRequest o... | [
{
"path": "patches/chromium/chore_add_electron_objects_to_wrappablepointertag.patch",
"patch": "@@ -8,10 +8,10 @@ electron objects that extend gin::Wrappable and gets\n allocated on the cpp heap\n \n diff --git a/gin/public/wrappable_pointer_tags.h b/gin/public/wrappable_pointer_tags.h\n-index 573bcb2e56068... | 2025-11-12T18:53:00 |
golang/go | 92c7fcf137848ad74f88f75fc21bcb159eb08104 | e5df06bc55f18ff92fb1c2fce2af69e80d9b3194 | time: document that Parse does not support leap seconds
Fixes #50888
Change-Id: I2691442d7fccd716cd19939cf3931317e21ee4ed
Reviewed-on: https://go-review.googlesource.com/c/go/+/743060
Reviewed-by: Michael Pratt <mpratt@google.com>
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LUCI <golang-... | [
{
"path": "src/time/format.go",
"patch": "@@ -1002,6 +1002,9 @@ func skip(value, prefix string) (string, error) {\n // For layouts specifying the two-digit year 06, a value NN >= 69 will be treated\n // as 19NN and a value NN < 69 will be treated as 20NN.\n //\n+// Timestamps representing leap seconds (seco... | 2026-02-07T14:45:46 |
nodejs/node | 14f02fc2f7c1ea7989bdfeddfadc14921edd4e25 | 4db307a4b0fcd804c790caa55573c2bb7b4a8a02 | lib,src,test: fix tests without SQLite
PR-URL: https://github.com/nodejs/node/pull/60906
Reviewed-By: Colin Ihrig <cjihrig@gmail.com> | [
{
"path": ".github/workflows/test-shared.yml",
"patch": "@@ -192,7 +192,7 @@ jobs:\n --arg ccache '(import <nixpkgs> {}).sccache' \\\n --arg devTools '[]' \\\n --arg benchmarkTools '[]' \\\n- ${{ endsWith(matrix.system, '-darwin') && '--arg extraConfigFlags ''[... | 2025-12-11T22:04:24 |
facebook/react | 969a9790ad58cc27eea63df9e5cf992b66bf1fd5 | 665de2ed283205fccecda649ae2d66f62983f15f | [Flight] Track I/O Entry for the RSC Stream itself (#34425)
One thing that can suspend is the downloading of the RSC stream itself.
This tracks an I/O entry for each Promise (`SomeChunk<T>`) that
represents the request to the RSC stream. As the value we use the
`Response` for `createFromFetch` (or the `ReadableStream`... | [
{
"path": "fixtures/flight/src/App.js",
"patch": "@@ -21,6 +21,8 @@ import {Note} from './cjs/Note.js';\n \n import {GenerateImage} from './GenerateImage.js';\n \n+import LargeContent from './LargeContent.js';\n+\n import {like, greet, increment} from './actions.js';\n \n import {getServerState} from './Ser... | 2025-09-09T20:46:11 |
electron/electron | 7961206fcb78691195d42ab08d43652b6cf951dd | 7da0b4b35129fc82b870ac7834cea1c7e62077da | docs: fix v40 stable release date (#48889)
* docs(timelines): Correct v40.0.0 stable release date
On the Electron Timelines tutorial page (/docs/latest/tutorial/electron-timelines), there is a clear typo in the release schedule for v40.0.0.
The table currently lists the dates as:
* Alpha: 2025-Oct-30
* Beta: 2025-De... | [
{
"path": "docs/tutorial/electron-timelines.md",
"patch": "@@ -9,7 +9,7 @@ check out our [Electron Versioning](./electron-versioning.md) doc.\n \n | Electron | Alpha | Beta | Stable | EOL | Chrome | Node | Supported |\n | ------- | ----- | ------- | ------ | ------ | ---- | ---- | ---- |\n-| 40.0.0 | 2025-... | 2025-11-12T11:59:32 |
vercel/next.js | 67bb800f321df5ea81633b557a10bacfe666ee8d | 199d975934aff4e90949370448a75fd5362b9ea9 | Don't start worker for Typescript when only doing config validation (#90504)
Only start a Worker for typescript when type checking is actually enabled. When only validating the config (which doesn't load the `typescript` package itself, just invoke it in-process)
testing with `pnpm next build bench/app-router-serv... | [
{
"path": "packages/next/src/build/type-check.ts",
"patch": "@@ -17,11 +17,11 @@ import { hrtimeDurationToString } from './duration-to-string'\n * instead of running \"next/lib/typescript/runTypeCheck\" in a worker,\n * we will run entire \"next/lib/verify-typescript-setup\" in a worker instead.\n */\n-f... | 2026-02-25T17:00:31 |
golang/go | e5df06bc55f18ff92fb1c2fce2af69e80d9b3194 | b464a924a9bdd00627cbc3baca86a0e042fccb8a | time: document that LoadLocation creates new Location instances
Fixes #77385
Change-Id: I7e7ddb1c71f0aebd893f640d476b273e229b059a
Reviewed-on: https://go-review.googlesource.com/c/go/+/743040
Reviewed-by: Ian Lance Taylor <iant@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservicea... | [
{
"path": "src/time/zoneinfo.go",
"patch": "@@ -645,12 +645,13 @@ var errLocation = errors.New(\"time: invalid location name\")\n var zoneinfo *string\n var zoneinfoOnce sync.Once\n \n-// LoadLocation returns the Location with the given name.\n+// LoadLocation returns a [Location] with the given name.\n //\... | 2026-02-07T14:38:05 |
nodejs/node | 4db307a4b0fcd804c790caa55573c2bb7b4a8a02 | a00d95c73dcac8fc2b316238fb978a7d5aa650c6 | fs: detect dot files when using globstar
Using globstar in glob pattern should not prevent dot (hidden) files
from being matched.
PR-URL: https://github.com/nodejs/node/pull/61012
Fixes: https://github.com/nodejs/node/issues/56321
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Marco Ippolit... | [
{
"path": "lib/internal/fs/glob.js",
"patch": "@@ -442,7 +442,18 @@ class Glob {\n const fromSymlink = pattern.symlinks.has(index);\n \n if (current === lazyMinimatch().GLOBSTAR) {\n- if (entry.name[0] === '.' || (this.#exclude && this.#exclude(this.#withFileTypes ? entry : entry.na... | 2025-12-11T21:12:03 |
vercel/next.js | 199d975934aff4e90949370448a75fd5362b9ea9 | 7d92ac638ad68b4316e74e7b79295ff1c4869284 | Revert "Turbopack: Add line numbers to debug info in release-with-assertions profile (#90474)" (#90525)
Reverts #90474
It appears to have increased the artifact size so much that Turborepo remote caching doesn't work properly anymore
see https://vercel.slack.com/archives/C03LMQZL205/p1772027662111429 | [
{
"path": "Cargo.toml",
"patch": "@@ -269,12 +269,12 @@ opt-level = \"s\"\n [profile.release.package.miette]\n opt-level = \"s\"\n \n+\n # Use a custom profile for CI where many tests are performance sensitive but we still want the additional validation of debug-assertions\n [profile.release-with-assertions... | 2026-02-25T15:46:20 |
golang/go | b464a924a9bdd00627cbc3baca86a0e042fccb8a | 30d5c1b0572f7d021def277097df6a21f300995e | cmd/go: do not collect build information for test packages when not needed
When build information is not needed for go list output (when -export=false and Stale and StaleReason fields are not printed), the "SuppressBuildInfo" option is set to true, so that cmd/go/internal/load does not collect it (in particular VCS in... | [
{
"path": "src/cmd/go/internal/load/test.go",
"patch": "@@ -294,7 +294,7 @@ func TestPackagesAndErrors(loaderstate *modload.State, ctx context.Context, done\n \n \tpb := p.Internal.Build\n \tpmain.DefaultGODEBUG = defaultGODEBUG(loaderstate, pmain, pb.Directives, pb.TestDirectives, pb.XTestDirectives)\n-\ti... | 2026-02-03T13:25:23 |
nodejs/node | 060deae99b031a7d47cf4e6edc82eaf1a0465cfc | 67527c427efd608b3062f758bfc17d811ef5ad91 | util: fix parseArgs skipping positional arg with --eval and --print
PR-URL: https://github.com/nodejs/node/pull/60814
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
Reviewed-By: Ilyas Shabi <ilyasshabi94@gmail.com> | [
{
"path": "lib/internal/util/parse_args/parse_args.js",
"patch": "@@ -2,7 +2,6 @@\n \n const {\n ArrayPrototypeForEach,\n- ArrayPrototypeIncludes,\n ArrayPrototypeMap,\n ArrayPrototypePush,\n ArrayPrototypePushApply,\n@@ -54,20 +53,16 @@ const {\n kEmptyObject,\n } = require('internal/util');\n \... | 2025-11-23T05:46:19 |
golang/go | 30d5c1b0572f7d021def277097df6a21f300995e | a44ed023f600de1b8fbeb2be514ec20c964b3330 | net: always set the servers field to defaultNS
When the field is parsed from a file, it would never
have len(servers) == 0, lets enforce that and update
test cases where we had it wrong.
Change-Id: I7fa6ebcf63b9fe20fbbf791113ca948d6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/743020
Auto-Submit: Mic... | [
{
"path": "src/net/conf_test.go",
"patch": "@@ -142,7 +142,7 @@ func TestConfHostLookupOrder(t *testing.T) {\n \t\t\tc: &conf{\n \t\t\t\tgoos: \"openbsd\",\n \t\t\t},\n-\t\t\tresolv: &dnsConfig{lookup: []string{\"bind\", \"file\"}},\n+\t\t\tresolv: &dnsConfig{servers: defaultNS, lookup: []string{\"bind\", \... | 2026-02-07T10:03:17 |
nodejs/node | 83ba6b107a067f5831b03ab69c787fcb35bdcb05 | 0ffa607dee513f161e2e4c5b7e8256d6bf4e9ea9 | test: update test426 fixtures
Update test426 fixtures for source map tests.
Refs: https://github.com/tc39/source-map-tests
PR-URL: https://github.com/nodejs/node/pull/60982
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.... | [
{
"path": "test/fixtures/test426/README.md",
"patch": "@@ -1,9 +1,9 @@\n # Source Map Tests\n \n-This repository holds testing discussions and tests for the the Source Map debugging format. Specifically, we're looking to encourage discussion around:\n+This repository holds discussions on testing and tests f... | 2025-12-09T14:38:02 |
vercel/next.js | 7d92ac638ad68b4316e74e7b79295ff1c4869284 | a341ef9e5719529c610183703aa6869360ec32ad | [test] Fix flaky "delay re-prefetch after revalidation" test (#90503)
The test verified that revalidation triggers a 300ms cooldown before
re-prefetching by using fixed `setTimeout` delays (50ms, 150ms, 350ms)
in the Node.js test runner racing against browser-side timers. With only
~50ms of buffer, the test flaked whe... | [
{
"path": "test/e2e/app-dir/segment-cache/revalidation/segment-cache-revalidation.test.ts",
"patch": "@@ -1,4 +1,5 @@\n import { isNextDev, isNextDeploy, createNext } from 'e2e-utils'\n+import type * as Playwright from 'playwright'\n import { createRouterAct } from 'router-act'\n import { createTestDataServ... | 2026-02-25T13:09:18 |
golang/go | a44ed023f600de1b8fbeb2be514ec20c964b3330 | 31768104cbe710d2358d5da34b4c223ad3ff2c6f | cmd/go: fix panic in 'go run -C'
Fixes #77483
Change-Id: Ie772ce1619beadc1a6db87aaf28a8d9c31f7d1b8
Reviewed-on: https://go-review.googlesource.com/c/go/+/742860
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Ian... | [
{
"path": "src/cmd/go/internal/toolchain/select.go",
"patch": "@@ -658,6 +658,9 @@ func maybeSwitchForGoInstallVersion(loaderstate *modload.State, minVers string)\n \t\t}\n \n \t\tif bf, ok := f.Value.(interface{ IsBoolFlag() bool }); !ok || !bf.IsBoolFlag() {\n+\t\t\tif len(args) == 0 {\n+\t\t\t\treturn\n+... | 2026-02-06T18:52:22 |
facebook/react | 665de2ed283205fccecda649ae2d66f62983f15f | eda778b8ae1698fec5fc84ca2530727df8b557b5 | [compiler] Improve name hints for outlined functions (#34434)
The previous PR added name hints for anonymous functions, but didn't
handle the case of outlined functions. Here we do some cleanup around
function `id` and name hints:
* Make `HIRFunction.id` a ValidatedIdentifierName, which involved some
cleanup of the va... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -325,6 +325,15 @@ function runWithEnvironment(\n outlineJSX(hir);\n }\n \n+ if (env.config.enableNameAnonymousFunctions) {\n+ nameAnonymousFunctions(hir);\n+ log({\n+ kind: 'hir',\n+ nam... | 2025-09-09T19:14:09 |
nodejs/node | 0ffa607dee513f161e2e4c5b7e8256d6bf4e9ea9 | bd426739dcc17ecfef833d81638cf76b4357b0ba | tools: fix `vcbuild test` when path contain spaces
PR-URL: https://github.com/nodejs/node/pull/56481
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "vcbuild.bat",
"patch": "@@ -183,7 +183,7 @@ if defined package set stage_package=1\n :: assign path to node_exe\n set \"node_exe=%config%\\node.exe\"\n set \"node_gyp_exe=\"%node_exe%\" deps\\npm\\node_modules\\node-gyp\\bin\\node-gyp\"\n-set \"npm_exe=\"%~dp0%node_exe%\" %~dp0deps\\npm\\bin\\npm... | 2025-12-09T11:18:58 |
vercel/next.js | a341ef9e5719529c610183703aa6869360ec32ad | 1fd9d3d37a9e1145b5e6b4956349f6f4117a139a | Fix varyParams tracking for optional catch-all params with no value (#90496)
When an optional catch-all param like `[[...slug]]` has no value (e.g.,
visiting `/docs` instead of `/docs/foo`), the param doesn't exist as a
property on the params object. The existing varyParams tracking uses
`defineProperty` getters, whic... | [
{
"path": "packages/next/src/lib/metadata/resolve-metadata.ts",
"patch": "@@ -721,6 +721,7 @@ const resolveMetadataItems = cache(async function (\n tree,\n treePrefix,\n parentParams,\n+ null,\n searchParams,\n errorConvention,\n errorMetadataItem,\n@@ -735,6 +736,7 @@ async funct... | 2026-02-25T13:07:18 |
rust-lang/rust | 1af153cdb91c3d862daa5d1382496055fef678c6 | 8a703520e80d87d4423c01f9d4fbc9e5f6533a02 | Tweak incorrect assoc item note | [
{
"path": "compiler/rustc_hir_typeck/src/method/suggest.rs",
"patch": "@@ -1175,10 +1175,24 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {\n let mut ty_file = None;\n let mode = no_match_data.mode;\n let is_method = mode == Mode::MethodCall;\n+ let has_self_assoc_type = if let SelfSourc... | 2026-02-20T03:25:04 |
electron/electron | 3d31030fc57eabf1d5d3993c7c5d52bab7f12c09 | 11d174344a8c833d74d953b552dfee86580356d2 | fix: restore window's canHide property on macOS (#47970)
* fix: restore window's canHide property on macOS
* chore: empty commit to unstick CI
---------
Co-authored-by: Charles Kerr <charles@charleskerr.com> | [
{
"path": "shell/browser/browser_mac.mm",
"patch": "@@ -543,6 +543,9 @@ LoginItemSettings GetLoginItemSettingsDeprecated() {\n gin_helper::Promise<void> promise(isolate);\n v8::Local<v8::Promise> handle = promise.GetHandle();\n \n+ for (auto* const& window : WindowList::GetWindows())\n+ [window->Get... | 2025-11-11T20:30:04 |
facebook/react | eda778b8ae1698fec5fc84ca2530727df8b557b5 | 1836b46fffa9a67be3840ff385f6fd1a1f8db045 | [compiler] Fix false positive memo validation (alternative) (#34319)
Alternative to #34276
---
(Summary taken from @josephsavona 's #34276)
Partial fix for #34262. Consider this example:
```js
function useInputValue(input) {
const object = React.useMemo(() => {
const {value} = transform(input);
return {val... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidatePreservedManualMemoization.ts",
"patch": "@@ -18,7 +18,6 @@ import {\n IdentifierId,\n InstructionValue,\n ManualMemoDependency,\n- Place,\n PrunedReactiveScopeBlock,\n ReactiveFunction,\n ReactiveInstruction,\n@@ -... | 2025-09-09T18:26:52 |
vercel/next.js | 1fd9d3d37a9e1145b5e6b4956349f6f4117a139a | 02af7ed3a4f67d0f6d3d07ee6ac1754c754d145f | fix: sanitize worker args for worker_threads compatibility (#90506)
### What?
Sanitize worker method arguments when `enableWorkerThreads` is true to avoid `DataCloneError`.
### Why?
When `enableWorkerThreads: true` is set in the build static worker, `postMessage()` uses the structured clone algorithm which throws `... | [
{
"path": "packages/next/src/lib/worker.ts",
"patch": "@@ -245,29 +245,39 @@ export class Worker {\n hangingTimer = activeTasks > 0 && setTimeout(onHanging, timeout)\n }\n \n+ // TODO: Remove this once callers stop passing non-serializable values\n+ // (e.g. functions) in worker method argum... | 2026-02-25T12:13:49 |
electron/electron | 09db68252932a7ab4529a5bbce76e4014b192f37 | b811ca0cde2536287a322f2e7521629e8c615e84 | build: remove track `SSL_ERROR_ZERO_RETURN` explicitly patch (#48875)
build: remove track SSL_ERROR_ZERO_RETURN explicitly patch | [
{
"path": "patches/boringssl/.patches",
"patch": "@@ -1,3 +1,2 @@\n expose_ripemd160.patch\n-revert_track_ssl_error_zero_return_explicitly.patch\n feat_expose_several_extra_cipher_functions.patch",
"additions": 0,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patches/boringssl/reve... | 2025-11-11T13:16:04 |
golang/go | 71232268768eab3002d2ae473b49f74b74e89cdf | a6c48f2ca9efdf6c45d434767a30b9d25824497d | cmd/go/internal/bug: sync go bug headings with GitHub form
Keep the issue body generated by go bug in the same order as the
GitHub bug form: what happened first, then what was expected.
This updates the footer headings and replaces the old
"What did you see instead?" wording.
Fixes #77488.
Change-Id: Id20d68c1e109a... | [
{
"path": "src/cmd/go/internal/bug/bug.go",
"patch": "@@ -76,11 +76,11 @@ A link on go.dev/play is best.\n \n \n \n-### What did you expect to see?\n+### What did you see happen?\n \n \n \n-### What did you see instead?\n+### What did you expect to see?\n \n `\n ",
"additions": 2,
"deletions": 2,
... | 2026-02-09T05:01:56 |
facebook/react | 1836b46fffa9a67be3840ff385f6fd1a1f8db045 | eec50b17b38ac7c051804acfe46afabef9933ff4 | [compiler] Have react-compiler eslint plugin return a RuleModule (#34421)
Eslint is expecting a map of [string] => RuleModule. Before we were
passing {rule: RuleModule, severity: ErrorSeverity} which was breaking
legacy Eslint configurations | [
{
"path": "compiler/packages/eslint-plugin-react-compiler/src/index.ts",
"patch": "@@ -34,4 +34,8 @@ const configs = {\n },\n };\n \n-export {configs, allRules as rules, meta};\n+const rules = Object.fromEntries(\n+ Object.entries(allRules).map(([name, {rule}]) => [name, rule]),\n+);\n+\n+export {configs... | 2025-09-09T18:18:37 |
vercel/next.js | 782f16621df7c2f59fc06e4d9cf2879b2a12f7eb | 61fa3c6317dba16b64569b676272afc533c417b9 | Turbopack: Add line numbers to debug info in release-with-assertions profile (#90474)
We use this profile in CI. Without debug symbols, we only get the line/column number of the panic, and we don't get line numbers in the whole backtrace: https://github.com/vercel/next.js/runs/64337217556#step:35:474
This can be diff... | [
{
"path": "Cargo.toml",
"patch": "@@ -269,12 +269,12 @@ opt-level = \"s\"\n [profile.release.package.miette]\n opt-level = \"s\"\n \n-\n # Use a custom profile for CI where many tests are performance sensitive but we still want the additional validation of debug-assertions\n [profile.release-with-assertions... | 2026-02-25T09:14:46 |
electron/electron | b811ca0cde2536287a322f2e7521629e8c615e84 | f260e06a620e78645b9cf88fbee62a90199fa3e9 | chore: bump chromium to 144.0.7521.0 (main) (#48880)
* chore: bump chromium in DEPS to 144.0.7521.0
* chore: fixup patch indices
---------
Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '144.0.7520.0',\n+ '144.0.7521.0',\n 'node_version':\n 'v24.11.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2025-11-11T12:16:38 |
golang/go | 2a1d605e7f5a0f8870abb9cc26edf27db3ad5452 | f745645e58d8c2da47da402871d92eab4c498187 | cmd/compile: fix slice bounds check elimination after function inlining
When creating a dynamically-sized slice, the compiler attempts to use a
stack-allocated buffer if the slice does not escape and its buffer size
is ≤ 32 bytes.
In this case, the SSA will contain a (OpPhi (OpSliceMake) (OpSliceMake))
value: one OpS... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -1017,6 +1017,8 @@\n (ConstNil <v.Type.Elem().PtrTo()>)\n (Const64 <typ.Int> [0])\n (Const64 <typ.Int> [0]))\n+(SliceLen (Phi (SliceMake _ x _) (SliceMake _ x _))) => x\n+(SliceCap (Phi (SliceMake _ _ x) (SliceMake _ _ x))... | 2026-01-31T03:23:41 |
facebook/react | eec50b17b38ac7c051804acfe46afabef9933ff4 | a9410fb487776339ec68e57a57a570be952ccad0 | [Flight] Only use debug component info for parent stacks (#34431) | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -1794,13 +1794,21 @@ function transferReferencedDebugInfo(\n existingDebugInfo.push.apply(existingDebugInfo, referencedDebugInfo);\n }\n }\n- // We also add it to the initializing chunk since the resolution of that... | 2025-09-09T17:58:02 |
vercel/next.js | 0f851c5ecd1872a209595770c5fe8b2b24274715 | a0c401fcdba463c71e0836ade25c5b3127b79a07 | Fix params leaking into instant navigation shell in dev (#90455)
Populate `fallbackRouteParams` in the `isDebugStaticShell` prerender
path so that params suspend correctly during instant navigation shell
rendering in dev mode.
When the instant lock is active, the server forces pages through the
prerender path (`isDeb... | [
{
"path": "packages/next/src/build/templates/app-page.ts",
"patch": "@@ -926,9 +926,10 @@ export async function handler(\n ? createOpaqueFallbackRouteParams(\n prerenderInfo.fallbackRouteParams\n )\n- : // Otherwise, if we're debugging the fallbac... | 2026-02-25T02:05:23 |
electron/electron | bc86e68a720011824d25a83c8ab401356c6ac513 | 4951b96235917a873576be551dc77876c3529ecf | feat: add bypassCustomProtocolHandlers option to net.request (#47331)
* feat: add bypassCustomProtocolHandlers option to net.request
* style: fix lint errors in api-protocol-spec | [
{
"path": "docs/api/client-request.md",
"patch": "@@ -25,6 +25,11 @@ following properties:\n with which the request is associated. Defaults to the empty string. The\n `session` option supersedes `partition`. Thus if a `session` is explicitly\n specified, `partition` is ignored.\n+ * `bypassCust... | 2025-11-10T21:37:29 |
golang/go | f745645e58d8c2da47da402871d92eab4c498187 | b45c59c443a0aac0abed3f35e8e307ec5e1c587b | cmd/compile/internal/bitvec: remove 2GB allocation limit in NewBulk
Remove the "NewBulk too big" check that prevented bulk bit vector
allocations exceeding ~2GB. This limit was overly restrictive and
caused compilation failures for large generated code.
The actual constraint is in the runtime's stackmap reader, which... | [
{
"path": "src/cmd/compile/internal/bitvec/bv.go",
"patch": "@@ -8,7 +8,6 @@ import (\n \t\"math/bits\"\n \n \t\"cmd/compile/internal/base\"\n-\t\"cmd/internal/src\"\n )\n \n const (\n@@ -34,12 +33,9 @@ type Bulk struct {\n \tnword int32\n }\n \n-func NewBulk(nbit int32, count int32, pos src.XPos) Bulk {\n+... | 2026-01-13T22:27:32 |
nodejs/node | 37d9cfcd3ae5d1857838937d3403d16d227c05ba | cbe02339b6c93b68b28bc380882ef7ed8add98b8 | esm: improve error messages for ambiguous module syntax
PR-URL: https://github.com/nodejs/node/pull/60376
Fixes: https://github.com/nodejs/node/issues/60322
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@... | [
{
"path": "lib/internal/modules/esm/module_job.js",
"patch": "@@ -2,9 +2,9 @@\n \n const {\n Array,\n+ ArrayPrototypeFind,\n ArrayPrototypeJoin,\n ArrayPrototypePush,\n- ArrayPrototypeSome,\n FunctionPrototype,\n ObjectSetPrototypeOf,\n PromisePrototypeThen,\n@@ -65,8 +65,8 @@ const CJSGlobalL... | 2025-12-05T23:51:23 |
facebook/react | a9410fb487776339ec68e57a57a570be952ccad0 | 6b70072c4f21d6762d914adb42007db68f1e00a9 | [compiler] Option to infer names for anonymous functions (#34410)
Adds a `@enableNameAnonymousFunctions` feature to infer helpful names
for anonymous functions within components and hooks. The logic is
inspired by a custom Next.js transform, flagged to us by @eps1lon, that
does something similar. Implementing this tra... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -103,6 +103,7 @@ import {validateNoFreezingKnownMutableFunctions} from '../Validation/ValidateNoF\n import {inferMutationAliasingEffects} from '../Inference/InferMutationAliasingEffects';\n import {inferMutati... | 2025-09-09T17:22:19 |
vercel/next.js | b2f193b0964212c3ef0213efb74fe40dfd5be43b | affb856d39618e75ce25ac4c16425002df27de6c | test: Cleanup and refactoring (#90454)
- `expect(hasImageMatchingUrl(browser, "...")).toBe(true)` has very bad error messages if the assertion fails
- there was a `(process.env.TURBOPACK_DEV ? describe.skip : describe)('production mode',` around a dev test | [
{
"path": "test/integration/next-image-legacy/base-path/test/index.test.ts",
"patch": "@@ -20,17 +20,15 @@ const appDir = join(__dirname, '../')\n let appPort\n let app\n \n-async function hasImageMatchingUrl(browser, url) {\n- const links = await browser.elementsByCss('img')\n- let foundMatch = false\n- ... | 2026-02-24T19:03:44 |
golang/go | b45c59c443a0aac0abed3f35e8e307ec5e1c587b | 174c92bd7428b41b9b5b59274a83f387a12261c9 | crypto/tls: fix CurvePreferences comment
SecP256r1MLKEM768 appeared twice while the second should have been
SecP384r1MLKEM1024.
Change-Id: I0587b53248d2948fe7a33313871c39fe76251e9c
GitHub-Last-Rev: de535819a33347feacfaa32d984ce58d206613d0
GitHub-Pull-Request: golang/go#77551
Reviewed-on: https://go-review.googlesourc... | [
{
"path": "src/crypto/tls/common.go",
"patch": "@@ -807,7 +807,7 @@ type Config struct {\n \t// or use the GODEBUG=tlsmlkem=0 environment variable.\n \t//\n \t// From Go 1.26, the default includes the [SecP256r1MLKEM768] and\n-\t// [SecP256r1MLKEM768] hybrid post-quantum key exchanges, too. To disable\n+\t/... | 2026-02-11T21:00:12 |
nodejs/node | f65b0bc81a79a6068e594d1179c4c51680bfaa89 | 025ade69973cf078978280247c6dad294bf914d7 | src: implement Windows-1252 encoding support and update related tests
PR-URL: https://github.com/nodejs/node/pull/60893
Fixes: https://github.com/nodejs/node/issues/60888
Fixes: https://github.com/nodejs/node/issues/59515
Fixes: https://github.com/nodejs/node/issues/56542
Reviewed-By: Matteo Collina <matteo.collina@gm... | [
{
"path": "lib/internal/encoding.js",
"patch": "@@ -28,7 +28,7 @@ const kEncoding = Symbol('encoding');\n const kDecoder = Symbol('decoder');\n const kFatal = Symbol('kFatal');\n const kUTF8FastPath = Symbol('kUTF8FastPath');\n-const kLatin1FastPath = Symbol('kLatin1FastPath');\n+const kWindows1252FastPath ... | 2025-12-04T14:23:01 |
facebook/react | 8943025358da2e4e615629077b78ce5bd1b1fbb5 | 3d9d22cbdbfc1df2ec1d2ca00cb824e36af46ab8 | [DevTools] Fix handling of host roots on mount (#34400) | [
{
"path": "packages/react-devtools-shared/src/__tests__/profilingCommitTreeBuilder-test.js",
"patch": "@@ -228,7 +228,7 @@ describe('commit tree', () => {\n [root]\n ▾ <App>\n <Suspense>\n- [shell]\n+ [suspense-root] rects={null}\n <Suspense name=\"Ap... | 2025-09-08T20:53:02 |
rust-lang/rust | f110b38c6f5b81494e0144ae4af5db1e3d8e8736 | 1bac2b65f56581400f5db629d9704ec5c7084289 | fix a tests that assunes the wrong alignment on s390x
on s390x vectors are aligned at 8 bytes not 16 or vector length like on
x86. | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/layout/tests.rs",
"patch": "@@ -379,15 +379,20 @@ struct Goal(Foo<S>);\n \n #[test]\n fn simd_types() {\n+ let size = 16;\n+ #[cfg(not(target_arch = \"s390x\"))]\n+ let align = 16;\n+ #[cfg(target_arch = \"s390x\")]\n+ let align = 8;\n ... | 2026-03-27T08:47:36 |
vercel/next.js | affb856d39618e75ce25ac4c16425002df27de6c | c1e485ce8aef778600e75846fc2fb3757c83a319 | Turbopack: Fix experimental server hmr for pages router (#90398)
This is cherry-picked from #90389, which also serves as a test case for
server hmr being enabled by default.
This fixes a number of issues with server hmr, most notably that pages
router updates weren’t reflected:
1. **Pages Router pages weren't cleari... | [
{
"path": "packages/next/src/server/dev/hot-reloader-turbopack.ts",
"patch": "@@ -586,26 +586,37 @@ export async function createHotReloaderTurbopack(\n join(distDir, p)\n )\n \n+ const { type: entryType } = splitEntryKey(key)\n+ // Server HMR only applies to App Router Node.js runtime endpoi... | 2026-02-24T18:27:51 |
electron/electron | a5cebb6df237a0f11f5379e24ebea7330d2a0dea | 1ad8d35be9148027aca73d8c9a74d1bc2f9a28be | chore: bump chromium to 144.0.7520.0 (main) (#48869)
* chore: bump chromium in DEPS to 144.0.7520.0
* chore: fixup patch indices
---------
Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '144.0.7514.0',\n+ '144.0.7520.0',\n 'node_version':\n 'v24.11.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2025-11-10T17:44:49 |
nodejs/node | 746c3c2ec2eee4f33adde73c34364ed873cacffd | 5879e9b257d4bae7da7b31d527250425c7abc7ab | util: assert getCallSites does not invoke Error.prepareStackTrace
PR-URL: https://github.com/nodejs/node/pull/60922
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ilyas Shabi <ilyasshabi94@gmail.com> | [
{
"path": "doc/api/util.md",
"patch": "@@ -564,6 +564,9 @@ changes:\n Returns an array of call site objects containing the stack of\n the caller function.\n \n+Unlike accessing an `error.stack`, the result returned from this API is not\n+interfered with `Error.prepareStackTrace`.\n+\n ```mjs\n import { getC... | 2025-12-03T17:53:07 |
vercel/next.js | c1e485ce8aef778600e75846fc2fb3757c83a319 | 55ffc5626760a55793078cbacfe55b1e90870c58 | [Instant] Validate blocking head (#89539)
Previously, instant validation would always use the dynamic stage for
the head, which means that we wouldn't catch errors related to a
blocking `generateViewport`. This is fixed here. We treat head as a
separate segment and use the appropriate stage (Static or Runtime)
dependi... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -1069,5 +1069,6 @@\n \"1068\": \"Expected workStore to be initialized\",\n \"1069\": \"Invariant: cache entry \\\"%s\\\" not found in dir \\\"%s\\\"\",\n \"1070\": \"image of size %s could not be tracked by lru cache\",\n- \"1071\": \"toNodeDebugCha... | 2026-02-24T18:24:57 |
golang/go | fbe55325ddce51a7fc099e1efb0d326e7a2e1ed8 | 20bc1949722c1fd66de5d568f1422845332d18f3 | cmd/compile: replace conditions to CCMP instructions on ARM64
This change introduces a new SSA pass that converts conditionals
with logical AND into CMP/CCMP instruction sequences on ARM64.
Fixes #71268
Change-Id: I3eba9c05b88ed6eb70350d30f6e805e6a4dddbf1
Reviewed-on: https://go-review.googlesource.com/c/go/+/698099... | [
{
"path": "src/cmd/compile/internal/ssa/compile.go",
"patch": "@@ -501,7 +501,8 @@ var passes = [...]pass{\n \t{name: \"lowered deadcode\", fn: deadcode, required: true},\n \t{name: \"checkLower\", fn: checkLower, required: true},\n \t{name: \"late phielim and copyelim\", fn: copyelim},\n-\t{name: \"tighten... | 2025-08-21T17:09:59 |
facebook/react | 3d9d22cbdbfc1df2ec1d2ca00cb824e36af46ab8 | d4374b3ae37eb972af6fc492de294a06edd6d325 | [playground] Fix CompilerError mismatch (#34420)
The compiler playground was crashing at any small syntax errors in the
`Input` panel due to updating the `CompilerErrorDetailOptions` type in
#34401. Updated the option to take in a `ErrorCategory` instead.
---------
Co-authored-by: lauren <poteto@users.noreply.github... | [
{
"path": "compiler/apps/playground/components/Editor/EditorImpl.tsx",
"patch": "@@ -13,7 +13,7 @@ import BabelPluginReactCompiler, {\n CompilerErrorDetail,\n CompilerDiagnostic,\n Effect,\n- ErrorSeverity,\n+ ErrorCategory,\n parseConfigPragmaForTests,\n ValueKind,\n type Hook,\n@@ -258,7 +25... | 2025-09-08T19:06:54 |
electron/electron | 068ac3c40519202c9b895570021fba91ea90c1df | 87d1ff59cb2b8a99c766746a770d1a62424ec5a7 | fix: the parent window remained interactive after the modal window was opened (#48770)
fix: fix the issue where the parent window remained interactive after the modal window was opened in somecases. | [
{
"path": "shell/browser/native_window.cc",
"patch": "@@ -104,7 +104,8 @@ NativeWindow::NativeWindow(const gin_helper::Dictionary& options,\n transparent_{options.ValueOrDefault(options::kTransparent, false)},\n enable_larger_than_screen_{\n options.ValueOrDefault(options::kEnableLarge... | 2025-11-10T11:06:28 |
nodejs/node | ecdf6a8c533d04b85595f5d053635f740d3c3d93 | 5b4b031da4b6aedb811d29602a89d436c559215e | stream: fix isErrored/isWritable for WritableStreams
PR-URL: https://github.com/nodejs/node/pull/60905
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> | [
{
"path": "lib/internal/webstreams/writablestream.js",
"patch": "@@ -76,6 +76,8 @@ const {\n \n const {\n kIsClosedPromise,\n+ kIsErrored,\n+ kIsWritable,\n kControllerErrorFunction,\n } = require('internal/streams/utils');\n \n@@ -183,6 +185,14 @@ class WritableStream {\n size);\n }\n \n+ ge... | 2025-12-03T13:08:34 |
facebook/react | d4374b3ae37eb972af6fc492de294a06edd6d325 | 3f2a42a5decc88551d34c96f3d031c316ac34f6a | [compiler] [playground] Show internals toggle (#34399)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a pull request, pleas... | [
{
"path": "compiler/apps/playground/components/Editor/Output.tsx",
"patch": "@@ -64,12 +64,16 @@ type Props = {\n async function tabify(\n source: string,\n compilerOutput: CompilerOutput,\n+ showInternals: boolean,\n ): Promise<Map<string, ReactNode>> {\n const tabs = new Map<string, React.ReactNode... | 2025-09-08T18:21:03 |
golang/go | 20bc1949722c1fd66de5d568f1422845332d18f3 | b40f0b118014f8dbc25e8ef4de82ccf78410903f | cmd/link: handle runtime.type based on size, not GOOS
When handling type descriptors, we add some space at the start
to ensure that offset 0 does not refer to a valid type descriptor.
AIX has an initial runtime.types symbol with a non-zero size,
so we used that instead of adding some space.
In some cases Darwin also ... | [
{
"path": "src/cmd/link/internal/ld/data.go",
"patch": "@@ -1498,7 +1498,7 @@ func fixZeroSizedSymbols(ctxt *Link) {\n \tdefineRuntimeTypes := func() {\n \t\ttypes := ldr.CreateSymForUpdate(\"runtime.types\", 0)\n \t\ttypes.SetType(sym.STYPE)\n-\t\ttypes.SetSize(8)\n+\t\ttypes.SetSize(int64(ctxt.Arch.PtrSiz... | 2026-02-12T05:23:49 |
rust-lang/rust | a53356ec89a20217e0968f19693e50e25beda128 | 23903d01c237d7c7d4fb62b82ca846bc45de4e0c | fix: [rustfmt] prevent panic when rewritng associated item delegations
Fixes a rustfmt bug for `#![feature(fn_delegation)]` | [
{
"path": "src/tools/rustfmt/src/visitor.rs",
"patch": "@@ -665,11 +665,11 @@ impl<'b, 'a: 'b> FmtVisitor<'a> {\n }\n \n // TODO(calebcartwright): consider enabling box_patterns feature gate\n- match (&ai.kind, visitor_kind) {\n- (ast::AssocItemKind::Const(c), AssocTraitIte... | 2026-03-27T05:11:27 |
vercel/next.js | da0cbcce7694fbaf09ce0312c6f674887c2ade6f | dcf11d111bac0639c1f41f05dafe321a4fa86f77 | Add not-found.js / notFound() links to Status Codes section (#88332)
<!-- 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:
##... | [
{
"path": "docs/01-app/03-api-reference/03-file-conventions/not-found.mdx",
"patch": "@@ -10,7 +10,7 @@ Next.js provides two conventions to handle not found cases:\n \n ## `not-found.js`\n \n-The **not-found** file is used to render UI when the [`notFound`](/docs/app/api-reference/functions/not-found) funct... | 2026-02-24T17:08:27 |
electron/electron | 6399527761b43abb5a3ea40dd64eb05efad3b9de | 519187db1de74e6795a6fdd3bce15accc3d15a85 | fix: ESM-from-CJS import when CJK is in path (#48855)
Upstream fix: https://github.com/nodejs/node/pull/60575 | [
{
"path": "patches/node/.patches",
"patch": "@@ -41,3 +41,4 @@ lib_check_sharedarraybuffer_existence_in_fast-utf8-stream.patch\n chore_handle_support_for_import_defer_as_ns_and_import_defer.patch\n api_delete_deprecated_fields_on_v8_isolate.patch\n api_promote_deprecation_of_v8_context_and_v8_object_api_met... | 2025-11-10T08:51:56 |
facebook/react | 294c33f34da0b5f908946c9add86f58426e7da5f | 3fb190f729ddcf32e7a76961082929683a3395a7 | [Flight] Always initialize a debug info array for each Chunk (#34419)
I'm about to add info for pretty much all of these anyway since they all
depend on the data stream itself. | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -169,7 +169,7 @@ type PendingChunk<T> = {\n reason: null | Array<InitializationReference | (mixed => mixed)>,\n _children: Array<SomeChunk<any>> | ProfilingResult, // Profiling-only\n _debugChunk: null | SomeChunk<ReactDebugInfoE... | 2025-09-08T16:28:14 |
nodejs/node | 470ef988f62e6148cbbbd31f7061cd214030a714 | 80e0779a8195a65c05ab7268031ddf15715be382 | benchmark: fix incorrect base64 input in byteLength benchmark
PR-URL: https://github.com/nodejs/node/pull/60841
Fixes: https://github.com/nodejs/node/issues/60836
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmai... | [
{
"path": "benchmark/buffers/buffer-bytelength-string.js",
"patch": "@@ -22,7 +22,7 @@ const chars = {\n function getInput(type, repeat, encoding) {\n const original = (repeat === 1) ? chars[type] : chars[type].repeat(repeat);\n if (encoding === 'base64') {\n- Buffer.from(original, 'utf8').toString('... | 2025-12-03T07:19:16 |
golang/go | 54c46328ccb9d559fa21c09fd8e2dff22a99c72c | 683aa8893a5e2e99ef48fa4502b507a0fe92acc8 | internal/poll: avoid race between execIO and DisassociateIOCP
This is a step towards deferring adding the handle to IOCP until the
first IO operation.
There is a small race windows between execIO and DisassociateIOCP where
execIO checks if the fd is disassociated before passing the operation to
the OS. DisassociateIO... | [
{
"path": "src/internal/poll/export_test.go",
"patch": "@@ -27,7 +27,7 @@ func (mu *XFDMutex) Decref() bool {\n }\n \n func (mu *XFDMutex) RWLock(read bool) bool {\n-\treturn mu.rwlock(read)\n+\treturn mu.rwlock(read, waitLock)\n }\n \n func (mu *XFDMutex) RWUnlock(read bool) bool {",
"additions": 1,
... | 2026-02-02T09:42:28 |
rust-lang/rust | dc5cb1719eed6ac9275fe93d914d32141606b2ac | 3a933e5bf5b695faf9e09d47a263a20c6b85c26a | Fix ice in rustdoc of private reexport | [
{
"path": "src/librustdoc/passes/collect_intra_doc_links.rs",
"patch": "@@ -1067,17 +1067,27 @@ impl LinkCollector<'_, '_> {\n #[instrument(level = \"debug\", skip_all)]\n fn resolve_links(&mut self, item: &Item) {\n let tcx = self.cx.tcx;\n- if !self.cx.document_private()\n- ... | 2026-03-27T00:07:58 |
vercel/next.js | c61d96e0bc25aaddc203499705f1965b7146d6d7 | 48ab605baf3d3adc9d5e22bcc7119588f771d02c | next-image: fix dpl handling with unicode (#90420)
With skew protection enabled, image srcs were double-encoded:
1. The imported value might be `'/_next/static/media/äöüščří.55df2443.png?dpl=1234'`
2. Then `new URL(src, 'http://n')` would normalize the URL, leading to `/_next/static/media/%C3%A4%C3%B6%C3%BC%C5%A1%C4%... | [
{
"path": "packages/next/src/client/legacy/image.tsx",
"patch": "@@ -129,14 +129,19 @@ function defaultLoader({\n \n // Extract dpl parameter early so validation uses the clean URL\n let deploymentId = getDeploymentId()\n- if (src.startsWith('/')) {\n- const srcUrl = new URL(src, 'http://n')\n- c... | 2026-02-24T16:28:51 |
facebook/react | 78992521a83325edec17a0dc0bb47092cc5accaa | 80d7aa17ad42efccc0ff95d2a9147ac6efe74dd5 | [compiler] Filter out disabled errors from being reported (#34409)
This PR stops error details of severity `ErrorSeverity.Off` from being
reported.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/344... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts",
"patch": "@@ -279,6 +279,7 @@ export class CompilerErrorDetail {\n */\n export class CompilerError extends Error {\n details: Array<CompilerErrorDetail | CompilerDiagnostic> = [];\n+ disabledDetails: Array<CompilerErrorDetai... | 2025-09-06T17:07:23 |
golang/go | 456d0fe4092cb794a02027e178486bc31f05a8e0 | a430bc1bd73ab9a7d4a0c740add9760914588396 | cmd/link: correct libc dynamic linker path
Ref: https://github.com/riscv-non-isa/riscv-elf-psabi-doc/issues/114
Fixes #77209
Change-Id: I8b575a95ad4e6a7e792514d7fcf9497599c1e404
Reviewed-on: https://go-review.googlesource.com/c/go/+/737180
Reviewed-by: Pengcheng Wang <wangpengcheng.pp@bytedance.com>
Reviewed-by: Qui... | [
{
"path": "src/cmd/link/internal/riscv64/obj.go",
"patch": "@@ -38,7 +38,8 @@ func Init() (*sys.Arch, ld.Arch) {\n \t\tMachoreloc1: machoreloc1,\n \n \t\tELF: ld.ELFArch{\n-\t\t\tLinuxdynld: \"/lib/ld.so.1\",\n+\t\t\tLinuxdynld: \"/lib/ld-linux-riscv64-lp64d.so.1\",\n+\t\t\tLinuxdynldMusl: \"/lib/ld-mus... | 2026-01-17T04:19:13 |
nodejs/node | b013e6e32d956641526459f771f194da25852c90 | 4ea921bdbf94c11e86ef6b53aa7425c6df42876a | tools: update ESLint dependencies
- Update all dependencies to their latest version and regenerate lock
file.
- Fixup deprecated field of `@stylistic/eslint-plugin` config.
- Disable `assignmentOperator` indent rule (we are inconsistent, so
there's no valid config for it).
- Disable jsdoc rules that we do not foll... | [
{
"path": "eslint.config.mjs",
"patch": "@@ -277,6 +277,8 @@ export default [\n wrapIndent: ' ',\n }],\n 'jsdoc/check-alignment': 'error',\n+ 'jsdoc/reject-any-type': 'off',\n+ 'jsdoc/reject-function-type': 'off',\n \n // Stylistic rules.\n '@stylistic/js/arrow-par... | 2025-11-30T18:25:51 |
electron/electron | 595920a3085ba580625d71298feacc6f6d6bcccc | ca0b46b4130a8b48ab0b402ea16efe1ce655044f | chore: bump chromium to 144.0.7512.1 (main) (#48768)
* chore: bump chromium in DEPS to 144.0.7507.0
* chore: bump chromium in DEPS to 144.0.7508.0
* chore: update patches
* 7101838: [pathbuilder] Enforce immutable SkPath APIs globally
https://chromium-review.googlesource.com/c/chromium/src/+/7101838
* chore: upda... | [
{
"path": "BUILD.gn",
"patch": "@@ -762,11 +762,13 @@ source_set(\"electron_lib\") {\n if (enable_pdf_viewer) {\n deps += [\n \"//chrome/browser/resources/pdf:resources\",\n+ \"//chrome/browser/ui:browser_element_identifiers\",\n \"//components/pdf/browser\",\n \"//components/pd... | 2025-11-07T15:13:45 |
vercel/next.js | 48ab605baf3d3adc9d5e22bcc7119588f771d02c | e160f03f96feff08bf3bf8e4911ce2af9464757d | tests: reenable escheck-output (#90423)
Various bugs I reported to https://github.com/yowainwright/es-check/ are fixed now, and there aren't any false negatives anymore. | [
{
"path": "test/production/escheck-output/app/foo/page.js",
"patch": "@@ -0,0 +1,5 @@\n+'use client'\n+\n+export default function Page() {\n+ return <button>Client</button>\n+}",
"additions": 5,
"deletions": 0,
"language": "JavaScript"
},
{
"path": "test/production/escheck-output/app/la... | 2026-02-24T16:23:35 |
golang/go | 97c48fd93db95f56849395cf8c7447232d56607a | d3ddc4854429185e6e06ca1f7628bb790404abb5 | cmd/compile: move likely used values into registers before entering loop
When we are about to enter a loop, we try to put values that will
be used soon into registers, so we put them into registers once outside
the loop instead of N times inside the loop.
But we currently don't kick out values we won't use for a whil... | [
{
"path": "src/cmd/compile/internal/ssa/func_test.go",
"patch": "@@ -260,6 +260,11 @@ func Eq(cond, sub, alt string) ctrl {\n \treturn ctrl{BlockAMD64EQ, cond, []string{sub, alt}}\n }\n \n+// Lt specifies a BlockAMD64LT.\n+func Lt(cond, yes, no string) ctrl {\n+\treturn ctrl{BlockAMD64LT, cond, []string{yes... | 2026-02-09T23:38:55 |
nodejs/node | 6432765a9c13929e5be8aab8e01f76924c9fe3fe | 8cfcf52db832bf7c8200470cc87a1159816a52e4 | src: fix off-thread cert loading in bundled cert mode
https://redirect.github.com/nodejs/node/pull/59856 had an typo/mistake
in the skip conditions so that it is skipping when --use-openssl-ca
or --openssl-system-ca-path (configure time) are NOT used, even
though they should be skipped only when those ARE used (which ... | [
{
"path": "src/crypto/crypto_context.cc",
"patch": "@@ -901,7 +901,7 @@ void StartLoadingCertificatesOffThread(\n // loading.\n {\n Mutex::ScopedLock cli_lock(node::per_process::cli_options_mutex);\n- if (!per_process::cli_options->ssl_openssl_cert_store) {\n+ if (per_process::cli_options->ssl... | 2025-12-02T09:51:06 |
facebook/react | 80d7aa17ad42efccc0ff95d2a9147ac6efe74dd5 | 474f25842a90f67a7aa8c6329afb5faec52181b6 | [compiler] Fix error description inconsistency (#34404)
Small fix to make all descriptions consistently printed with a single
period at the end.
Ran `grep -rn "description:" packages/babel-plugin-react-compiler/src
--include="*.ts" --exclude-dir="__tests__" | grep '\.\s*["\`]'` to find
all descriptions ending in a pe... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts",
"patch": "@@ -141,11 +141,10 @@ export class CompilerDiagnostic {\n }\n \n printErrorMessage(source: string, options: PrintErrorMessageOptions): string {\n- const buffer = [\n- printErrorSummary(this.category, this.r... | 2025-09-06T17:07:02 |
rust-lang/rust | 5e4e8da4851b92c18f31df0c63f075219ad4e5ff | bfc05d6b072585dfd0c792ec1b8728c08a3511fe | bootstrap.example.toml: Hint how to allow `build.warnings`
This commit turns "Actual" into "Expected" for the following problem:
Steps:
1. Do some quick and experimental local code changes in the compiler code.
2. Run `./x build`.
3. Observe `error: warnings are denied by `build.warnings` configuration`.
4. Decide to... | [
{
"path": "bootstrap.example.toml",
"patch": "@@ -826,7 +826,8 @@\n # in the sysroot. It is required for running nvptx tests.\n #rust.llvm-bitcode-linker = false\n \n-# Whether to deny warnings in crates\n+# Whether to deny warnings in crates. Set to `false` to avoid\n+# error: warnings are denied by `build... | 2026-03-26T18:39:05 |
vercel/next.js | e160f03f96feff08bf3bf8e4911ce2af9464757d | 5c425fe2ce1b5599d7af70929b917308de9ef2ee | [ci] Fix input cache keys for tasks referencing `rust-toolchain` (#90442) | [
{
"path": "packages/next-swc/turbo.json",
"patch": "@@ -10,7 +10,7 @@\n \"../../Cargo.toml\",\n \"../../Cargo.lock\",\n \"../../.github/workflows/build_and_deploy.yml\",\n- \"../../rust-toolchain\"\n+ \"../../rust-toolchain.toml\"\n ],\n \"env\": [\"CI\"],\n... | 2026-02-24T16:14:00 |
electron/electron | ca0b46b4130a8b48ab0b402ea16efe1ce655044f | 194ce1a1d691446b4ea48217c8cb932289305d76 | fix: enable wasm trap handlers in all Node.js processes (#48788)
* fix: enable wasm trap handlers in all Node.js processes
* fix: separate registrations to account for featurelist init | [
{
"path": "shell/browser/electron_browser_main_parts.cc",
"patch": "@@ -62,6 +62,7 @@\n #include \"shell/common/logging.h\"\n #include \"shell/common/node_bindings.h\"\n #include \"shell/common/node_includes.h\"\n+#include \"shell/common/v8_util.h\"\n #include \"ui/base/idle/idle.h\"\n #include \"ui/base/l1... | 2025-11-07T11:56:51 |
golang/go | 86f7959aa6e4cb9a0ac67ccd84c5586701583ca4 | 0f550bcfc3ad8525331d535d1f1e844d86472cbe | runtime/pprof: fix missing Profile docs
CL 688335 accidentally introduced a blank line between the Profile doc
comment and the type definition, causing the entire doc to get dropped.
Change-Id: I97b1c0e57d142d7caea6e543a0138ed6dcd1c3fe
Reviewed-on: https://go-review.googlesource.com/c/go/+/743660
LUCI-TryBot-Result: ... | [
{
"path": "src/runtime/pprof/pprof.go",
"patch": "@@ -171,7 +171,6 @@ import (\n // holds a lock for 1s while 5 other goroutines are waiting for the entire\n // second to acquire the lock, its unlock call stack will report 5s of\n // contention.\n-\n type Profile struct {\n \tname string\n \tmu sync.Mut... | 2026-02-10T00:17:12 |
nodejs/node | 8cfcf52db832bf7c8200470cc87a1159816a52e4 | 11813f9c75db3a8ae917481330627838f9cb5bac | tools: refloat 10 Node.js patches to cpplint.py
Cherry-pick 12c8b4d15471cb6211b39c3a2ca5b10fa4b9f12b
Original commit message:
This commit is a suggestion for adding a rule for NULL usages in the
code base. This will currently report a number of errors which could be
ignored using // NOLINT (readability/nul... | [
{
"path": "tools/cpplint.py",
"patch": "@@ -306,9 +306,10 @@\n \"build/forward_decl\",\n \"build/header_guard\",\n \"build/include\",\n- \"build/include_subdir\",\n \"build/include_alpha\",\n+ \"build/include_inline\",\n \"build/include_order\",\n+ \"build/include_subdir\",\n ... | 2025-11-26T16:37:05 |
electron/electron | 194ce1a1d691446b4ea48217c8cb932289305d76 | b6a9f08be1dd1402120bc64214084ebb417d672c | fix: CSD window frame tiles properly on Wayland (#48765)
fix: CSD window frame tiles properly on Linux | [
{
"path": "shell/browser/ui/electron_desktop_window_tree_host_linux.cc",
"patch": "@@ -100,13 +100,19 @@ void ElectronDesktopWindowTreeHostLinux::OnWindowStateChanged(\n void ElectronDesktopWindowTreeHostLinux::OnWindowTiledStateChanged(\n ui::WindowTiledEdges new_tiled_edges) {\n if (auto* const view... | 2025-11-07T10:24:12 |
vercel/next.js | 5c425fe2ce1b5599d7af70929b917308de9ef2ee | 9a8228474e46188dd206314c5ea2196fd48a63d8 | next-image: fix deployment id handling for unoptimized (#90416)
Previously
```jsx
import img from "./x.png";
// x is "/_next/static/media/test.abc123.png?dpl=foo"
<Image id="static-unoptimized" src={x} unoptimized />
```
would lead to `/_next/static/media/test.abc123.png?dpl=foo&dpl=foo`
#90420 adds some related ... | [
{
"path": "packages/next/src/client/legacy/image.tsx",
"patch": "@@ -420,6 +420,18 @@ function generateImgAttrs({\n loader,\n }: GenImgAttrsData): GenImgAttrsResult {\n if (unoptimized) {\n+ if (src.startsWith('/') && !src.startsWith('//')) {\n+ let deploymentId = getDeploymentId()\n+ if (d... | 2026-02-24T15:53:03 |
golang/go | 3048de9d6e5693e09c9885ec8b4673dbcf72c1e6 | 65ac2afd4b22fb29aa8cbd6a1d26ad7bb2ceeca4 | io/fs: document that Sub does not check for existence
Also recommend os.Root for constraining access.
Fixes #77447
Change-Id: Id8d178163438e9264fe19ed37ba03e1ee5d0bd35
Reviewed-on: https://go-review.googlesource.com/c/go/+/742284
Reviewed-by: Damien Neil <dneil@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@... | [
{
"path": "src/io/fs/sub.go",
"patch": "@@ -24,14 +24,16 @@ type SubFS interface {\n // Otherwise, Sub returns a new [FS] implementation sub that,\n // in effect, implements sub.Open(name) as fsys.Open(path.Join(dir, name)).\n // The implementation also translates calls to ReadDir, ReadFile,\n-// ReadLink, ... | 2026-02-06T21:06:09 |
electron/electron | 38be633aa864c3df8c6f77f425492676cc263773 | 9d01e6b3e30c6c5fe4bafcbce1329acd5b39ae10 | fix(reland): allow disabling all `NSMenuItems` (#48795)
* fix: allow disabling all `NSMenuItems` (#48598)
fix: allow disabling all NSMenuItems
* fix: add guard for type
---------
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> | [
{
"path": "lib/browser/api/menu.ts",
"patch": "@@ -25,11 +25,30 @@ Menu.prototype._isCommandIdChecked = function (id) {\n };\n \n Menu.prototype._isCommandIdEnabled = function (id) {\n- return this.commandsMap[id] ? this.commandsMap[id].enabled : false;\n+ const item = this.commandsMap[id];\n+ if (!item)... | 2025-11-07T03:02:04 |
vercel/next.js | 7fc89cc0f4ee6783f847b97479cc5f65270e85f5 | 5f26a684e61faed401e31ee8bda7019dea15fe36 | Fix `config.reactProductionProfiling` for Webpack (#90430)
Absolutely no idea how this was passing in the integration test setup
For Webpack, setting it via the config was previously completely ignored and only the `--profile` flag was respected
Turbopack was already working correctly: https://github.com/vercel/ne... | [
{
"path": "packages/next/src/build/webpack-build/impl.ts",
"patch": "@@ -151,7 +151,6 @@ export async function webpackBuildImpl(\n rewrites: NextBuildContext.rewrites!,\n originalRewrites: NextBuildContext.originalRewrites,\n originalRedirects: NextBuildContext.originalRedirects,\n- reactProd... | 2026-02-24T15:11:41 |
facebook/react | 474f25842a90f67a7aa8c6329afb5faec52181b6 | 1fef581e1abcdcbc4aa50a048f9473f85dcb4692 | [compiler] Migrate CompilerError.invariant to new CompilerDiagnostic infra (#34403)
Mechanical PR to migrate existing invariants to use the new
CompilerDiagnostic infra @josephsavona added. Will tackle the others at
a later time.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com)... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/CompilerError.ts",
"patch": "@@ -37,7 +37,7 @@ export enum ErrorSeverity {\n export type CompilerDiagnosticOptions = {\n category: ErrorCategory;\n reason: string;\n- description: string;\n+ description: string | null;\n details: Array<Com... | 2025-09-06T16:58:08 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.