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 |
|---|---|---|---|---|---|
golang/go | 24b395119b4df7f16915b9f01a6aded647b79bbd | 2e749a645a6d03c7ac11bb172c4591564061b29e | cmd/internal/obj/riscv: prevent duplicate error reports
The riscv64 Go assembler can output certain errors, ones produced by
instructionsForProg, multiple times. These errors are guaranteed to
be output at least twice and can appear three or more times if a
rescan is needed to recompute branch addresses. For example... | [
{
"path": "src/cmd/asm/internal/asm/endtoend_test.go",
"patch": "@@ -489,6 +489,10 @@ func TestRISCVErrors(t *testing.T) {\n \ttestErrors(t, \"riscv64\", \"riscv64error\")\n }\n \n+func TestRISCVValidation(t *testing.T) {\n+\ttestErrors(t, \"riscv64\", \"riscv64validation\")\n+}\n+\n func TestS390XEndToEnd(... | 2024-12-10T16:02:26 |
nodejs/node | 5909cf3b047f708de6a1373232bfcc899fa97a1d | 26f2cbdd59957e9a33a94ee2e0fdbeb9aadb0be6 | src: fix dynamically linked OpenSSL version
Report the version of OpenSSL that Node.js is running with instead
of the version of OpenSSL that Node.js was compiled against.
PR-URL: https://github.com/nodejs/node/pull/53456
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de> | [
{
"path": "src/node_metadata.cc",
"patch": "@@ -23,7 +23,7 @@\n #endif // NODE_BUNDLED_ZLIB\n \n #if HAVE_OPENSSL\n-#include <openssl/opensslv.h>\n+#include <openssl/crypto.h>\n #if NODE_OPENSSL_HAS_QUIC\n #include <openssl/quic.h>\n #endif\n@@ -55,9 +55,10 @@ static constexpr size_t search(const char* s, ... | 2024-06-14T16:51:42 |
facebook/react | 0894e35d94fa84136e68403c7135c276a5f7898a | 8be56418d31ba6ff0113c3ccb91ce3f3d11ee4fd | More fixtures for reactivity and mutable aliasing (property load case) | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/reactivity-via-aliased-mutation-through-property-load.expect.md",
"patch": "@@ -0,0 +1,87 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ const x = {};\n+ const y = [];\n+ x.y = y;\n+ x.y.push(pro... | 2024-01-20T03:12:58 |
electron/electron | b27e4cae21547e7ddf3a6199d5bed0e621d4eee6 | 1e106c8aa41b18b02ade44a54e6bd558d725fc37 | fix: crash in `MessagePortMain` with some `postMessage` params (#37585)
* fix: crash in MessagePortMain postMessage
* Update shell/browser/api/message_port.cc
Co-authored-by: Charles Kerr <charles@charleskerr.com>
---------
Co-authored-by: Charles Kerr <charles@charleskerr.com> | [
{
"path": "shell/browser/api/message_port.cc",
"patch": "@@ -26,6 +26,25 @@\n \n namespace electron {\n \n+namespace {\n+\n+bool IsValidWrappable(const v8::Local<v8::Value>& obj) {\n+ v8::Local<v8::Object> port = v8::Local<v8::Object>::Cast(obj);\n+\n+ if (!port->IsObject())\n+ return false;\n+\n+ if ... | 2023-03-27T17:56:55 |
vercel/next.js | 573e31d0c15fc664050c1e9e326270584f8a76b8 | 1fc2dfb2fa3cc927bc08912e2396313b9d728f6c | Run front-sync after deployment tests finish (#81023)
The front-sync job has been running directly have new versions are
published, but deployment tests only run after a release as well. This
PR runs the front-sync job after the deployment tests. There is a new
input on the workflow the front-sync triggers to immedia... | [
{
"path": ".github/workflows/notify_release.yml",
"patch": "@@ -1,83 +0,0 @@\n-# A workflow runs when a release is published, dispatches a new event to the vercel/turbo\n-# to notify its release. Turbopack, and other integration workflow will subscribe to this event.\n-name: Notify new Next.js release\n-on:... | 2025-07-01T18:36:48 |
facebook/react | 8be56418d31ba6ff0113c3ccb91ce3f3d11ee4fd | a272cf9b0c46e2be49a5a05feb4a4a2dd1628a80 | InferReactivePlaces accounts for mutable aliasing
Fixes T175227223. When inferring reactivity, mutation of a value with a reactive
input marks the mutable value as reactive. However, we also need to account for
aliases:
```javascript
const x = [];
const y = x;
y.push(props.value);
```
Previously we woul... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferReactivePlaces.ts",
"patch": "@@ -24,7 +24,11 @@ import {\n eachTerminalOperand,\n } from \"../HIR/visitors\";\n import { hasBackEdge } from \"../Optimization/DeadCodeElimination\";\n-import { isMutable } from \"../ReactiveScopes/In... | 2024-01-20T00:03:58 |
nodejs/node | 7430638df8ce347ee2a53de6a734948e848ab6c1 | ee5c6b660468bb4357ac79bc4840e268e1b291fc | fs: do not crash if the watched file is removed while setting up watch
Signed-off-by: Matteo Collina <hello@matteocollina.com>
PR-URL: https://github.com/nodejs/node/pull/53452
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail... | [
{
"path": "lib/internal/fs/recursive_watch.js",
"patch": "@@ -83,7 +83,7 @@ class FSWatcher extends EventEmitter {\n this.#closed = true;\n \n for (const file of this.#files.keys()) {\n- this.#watchers.get(file).close();\n+ this.#watchers.get(file)?.close();\n this.#watchers.delete(f... | 2024-06-17T14:28:12 |
golang/go | 2e749a645a6d03c7ac11bb172c4591564061b29e | 21483099632c11743d01ec6f38577f31de26b0d0 | internal/godebugs: fix changed version for winsymlink and winreadlinkvolume to 1.23
https://go.dev/doc/godebug#go-123 documents changes to winsymlink and
winreadlinkvolume in Go 1.23.
This fixes the registered "changed" minor version to Go 1.23,
so that defaults when building a Go 1.22 module are correct.
Fixes #729... | [
{
"path": "src/internal/godebugs/table.go",
"patch": "@@ -61,8 +61,8 @@ var All = []Info{\n \t{Name: \"tlsmlkem\", Package: \"crypto/tls\", Changed: 24, Old: \"0\", Opaque: true},\n \t{Name: \"tlsrsakex\", Package: \"crypto/tls\", Changed: 22, Old: \"1\"},\n \t{Name: \"tlsunsafeekm\", Package: \"crypto/tls\... | 2025-03-19T00:27:07 |
electron/electron | 1e106c8aa41b18b02ade44a54e6bd558d725fc37 | fda8ea9277983836a7f96a979ca07dbcf5eec14c | docs: fixup incorrect value for disabling sandbox (#37711) | [
{
"path": "docs/tutorial/sandbox.md",
"patch": "@@ -84,7 +84,7 @@ the `sandbox: false` preference in the [`BrowserWindow`][browser-window] constru\n app.whenReady().then(() => {\n const win = new BrowserWindow({\n webPreferences: {\n- sandbox: true\n+ sandbox: false\n }\n })\n win.lo... | 2023-03-27T17:27:55 |
nodejs/node | 177d63f5735700fda4258e646b1435349acffd71 | d3025372d8c600d542f67557ad1ec44baa76bd98 | stream: callback should be called when pendingcb is 0
Fixes: https://github.com/nodejs/node/issues/46170
PR-URL: https://github.com/nodejs/node/pull/53438
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Matteo Collina... | [
{
"path": "lib/internal/streams/end-of-stream.js",
"patch": "@@ -213,7 +213,8 @@ function eos(stream, options, callback) {\n } else if (\n !readable &&\n (!willEmitClose || isReadable(stream)) &&\n- (writableFinished || isWritable(stream) === false)\n+ (writableFinished || isWritable(stream)... | 2024-06-15T07:30:11 |
facebook/react | 29fbf6f62625c4262035f931681c7b7822ca9843 | 4c63dc7bddeea8b44466e918708ea44f76b05378 | Convert ReactError-test to createRoot (#27995) | [
{
"path": "packages/shared/__tests__/ReactError-test.internal.js",
"patch": "@@ -9,7 +9,8 @@\n 'use strict';\n \n let React;\n-let ReactDOM;\n+let ReactDOMClient;\n+let act;\n \n describe('ReactError', () => {\n let globalErrorMock;\n@@ -27,7 +28,8 @@ describe('ReactError', () => {\n }\n jest.rese... | 2024-01-19T19:35:56 |
golang/go | bfb27fb36f2f651eb52e3f2ff20542f4302359ce | fcb27f717b0eccb2a3de1bc05a7d222325ad5aeb | bytes,strings: document Fields trimming of leading and trailing characters
Fixes #72841
Change-Id: I46875c61e3147c69da759bf4bf4f0539cbd4f437
Reviewed-on: https://go-review.googlesource.com/c/go/+/658218
Reviewed-by: Alan Donovan <adonovan@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
LUCI-TryBot-Result:... | [
{
"path": "src/bytes/bytes.go",
"patch": "@@ -451,7 +451,9 @@ var asciiSpace = [256]uint8{'\\t': 1, '\\n': 1, '\\v': 1, '\\f': 1, '\\r': 1, ' ': 1}\n // Fields interprets s as a sequence of UTF-8-encoded code points.\n // It splits the slice s around each instance of one or more consecutive white space\n //... | 2025-03-17T15:21:39 |
vercel/next.js | a8ae109b3363f74356e04893d3bbf2deaa6b0d05 | 12ee9b2545bfcad779ae746ed83d44e0afeffeae | [turbopack] Implement `Issue::source` on more Issue subtypes (#80874)
### What
Fill in `source` implementations for the majority of `Issue` implementations, leaving `TODO`s in a number of the buggy or tricky ones.
### Why?
Currently `Issue` has both `file_path()` and `source()`.
* `file_path()` tells us where the e... | [
{
"path": "crates/next-api/src/middleware.rs",
"patch": "@@ -86,7 +86,8 @@ impl MiddlewareEndpoint {\n userland_module,\n );\n \n- let config = parse_config_from_source(userland_module, NextRuntime::Edge).await?;\n+ let config =\n+ parse_config_from_source(*self.... | 2025-07-01T16:44:01 |
electron/electron | 6a6908c4c887c5f685f5e172ff01afc02ebcbc65 | 42e7cd9b3f3e16d07f162716b4f1346e32004aec | fix: allow cancelling of bluetooth requests (#37601)
* fix: allow cancelling of bluetooth requests
allows cancelling of bluetooth requests when no devices present
* docs: update docs to reflect how bluetooth works. | [
{
"path": "docs/api/web-contents.md",
"patch": "@@ -777,20 +777,24 @@ Returns:\n * `callback` Function\n * `deviceId` string\n \n-Emitted when bluetooth device needs to be selected on call to\n-`navigator.bluetooth.requestDevice`. To use `navigator.bluetooth` api\n-`webBluetooth` should be enabled. If `ev... | 2023-03-27T13:31:15 |
golang/go | c8eced8580028328fde7c03cbfcb720ce15b2358 | 6b18311bbc94864af48d10aad73fd4eb7ea0d9a1 | net/http/httputil: document ProxyRequest.SetURL limitations
Fixes #50337
Change-Id: I898ff6352f46f0f9b540b053049c5116e2165827
Reviewed-on: https://go-review.googlesource.com/c/go/+/658536
Reviewed-by: Damien Neil <dneil@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.c... | [
{
"path": "src/net/http/httputil/reverseproxy.go",
"patch": "@@ -42,6 +42,8 @@ type ProxyRequest struct {\n // SetURL routes the outbound request to the scheme, host, and base path\n // provided in target. If the target's path is \"/base\" and the incoming\n // request was for \"/dir\", the target request w... | 2025-03-17T19:20:32 |
facebook/react | a272cf9b0c46e2be49a5a05feb4a4a2dd1628a80 | c8323f3b42887e292fec37a7dbb476f0fabc1d09 | Reactive control fixtures use multipass evaluation
Updates all of the reactive control dependency fixtures to use multipass
evaluation in sprout. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/reactive-control-dependency-do-while-indirect.expect.md",
"patch": "@@ -16,8 +16,17 @@ function Component(props) {\n \n export const FIXTURE_ENTRYPOINT = {\n fn: Component,\n- params: [{ limit: 10 }],\n- // TODO: test... | 2024-01-19T19:04:18 |
vercel/next.js | 12ee9b2545bfcad779ae746ed83d44e0afeffeae | 7131d706ae63bd8314ffbd91ca4bd08b32e7855d | [turbopack] Defend against json cyles in our execution tests (#81079)
Handle circular references in Jest test results
Otherwise failing tests may crash the IPC mechanism. e.g. a test failure induced this
```
──── STDERR: turbopack-tests::execution test_tests__execution__turbopack__basic__esm_this
Input:... | [
{
"path": "turbopack/crates/turbopack-tests/js/jest-entry.ts",
"patch": "@@ -35,7 +35,23 @@ export default async function run() {\n \n await import('TESTS')\n \n- const jestResult = await jest.run()\n+ let jestResult = await jest.run()\n+ // Jest test results can contain references to arbitrary objects... | 2025-07-01T16:12:15 |
electron/electron | 8cf03f56615c7ea37c1d9efbfa661f495da9c65e | 916861036db924166c247327a963edc6e0d5a235 | ci: fixup gn check to actually run gn check (#37676) | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -970,26 +970,13 @@ step-ts-compile: &step-ts-compile\n # List of all steps.\n steps-electron-gn-check: &steps-electron-gn-check\n steps:\n- - *step-checkout-electron\n- - *step-depot-tools-get\n- - *step-depot-tools-add-to-path\n - install-p... | 2023-03-23T19:02:08 |
nodejs/node | 15b39026197437493af224f0fe69aa878ec1abd3 | 3d09e579d39eab71af2c1476854846be17dde7ee | deps: sqlite: fix Windows compilation
This is equivalent to the following upstream change:
https://sqlite.org/src/info/6c103aee6f146869
Original commit message:
Change constant expressions to pre-computed constants, because apparently
MSVC on ARM requires that.
[forum:/forumpost/4feb1685cced0a8e|Forum th... | [
{
"path": "deps/sqlite/sqlite3.c",
"patch": "@@ -24886,8 +24886,8 @@ static const struct {\n /* 1 */ { 6, \"minute\", 7.7379e+12, 60.0 },\n /* 2 */ { 4, \"hour\", 1.2897e+11, 3600.0 },\n /* 3 */ { 3, \"day\", 5373485.0, 86400.0 },\n- /* 4 */ { 5, \"month\", 176546.0,... | 2024-06-12T00:40:08 |
golang/go | 6b18311bbc94864af48d10aad73fd4eb7ea0d9a1 | a17c092c2c5e8ad45482ebbb9e17ef7f92edb96c | cmd/go/internal/clean: add logging to help debug openbsd flakes
This change adds extra logging in the case where there's an error
removing all the files in the gomodcache using modfetch.RemoveAll.
It logs the names of the files found in GOMODCACHE as well as their
modes. The modes are included because they should all ... | [
{
"path": "src/cmd/go/internal/clean/clean.go",
"patch": "@@ -7,8 +7,10 @@ package clean\n \n import (\n \t\"context\"\n+\t\"errors\"\n \t\"fmt\"\n \t\"io\"\n+\t\"io/fs\"\n \t\"os\"\n \t\"path/filepath\"\n \t\"runtime\"\n@@ -216,6 +218,15 @@ func runClean(ctx context.Context, cmd *base.Command, args []strin... | 2025-03-18T17:00:42 |
facebook/react | 601dba82175edd321c833395514081fe3aa6f445 | feed8f3f95836a99eeaf5dc64d1c9ed62217c1de | Convert ReactErrorLoggingRecovery to createRoot (#28003) | [
{
"path": "packages/react-dom/src/__tests__/ReactErrorLoggingRecovery-test.js",
"patch": "@@ -17,7 +17,8 @@ if (global.window) {\n \n // The issue only reproduced when React was loaded before JSDOM.\n const React = require('react');\n-const ReactDOM = require('react-dom');\n+const ReactDOMClient = require('... | 2024-01-19T17:07:08 |
vercel/next.js | 7131d706ae63bd8314ffbd91ca4bd08b32e7855d | 9c3b6f76c1b8bbdc2d05b483a4ed4176178228b3 | Fix flakey devtools test (#81127)
A regression from #81085 @huozhi
The problem is that `openDevToolsIndicatorPopover` doesn't tell anymore whether the popup menu is open, but if the panel is open, but the "Try Turbopack" text is in the popup menu (only in the old UI). | [
{
"path": "test/development/client-dev-overlay/index.test.ts",
"patch": "@@ -2,12 +2,12 @@ import { FileRef } from 'e2e-utils'\n import { Playwright } from 'next-webdriver'\n import { nextTestSetup } from 'e2e-utils'\n import { join } from 'path'\n-import { openDevToolsIndicatorPopover, retry } from 'next-t... | 2025-07-01T16:01:18 |
nodejs/node | 1872167bb7b2cd69fb6e507bfcb6b9444d505904 | 4e58cde589dfd980c8976b158853a331142e1e4b | src: add utilities to help debugging reproducibility of snapshots
- Print offsets in blob serializer
- Add a special node:generate_default_snapshot ID to generate
the built-in snapshot.
- Improve logging
- Add a test to check the reproducibilty of the snapshot
PR-URL: https://github.com/nodejs/node/pull/50983
Refs:... | [
{
"path": "src/blob_serializer_deserializer-inl.h",
"patch": "@@ -238,7 +238,8 @@ size_t BlobSerializer<Impl>::WriteVector(const std::vector<T>& data) {\n if (is_debug) {\n std::string str = std::is_arithmetic_v<T> ? \"\" : ToStr(data);\n std::string name = GetName<T>();\n- Debug(\"\\nWriteVect... | 2024-03-22T18:51:49 |
electron/electron | 916861036db924166c247327a963edc6e0d5a235 | 52481bc923c581d2edc9d0c0f87077a5299000f4 | chore: bump chromium to 113.0.5668.0 (main) (#37646)
* chore: bump chromium in DEPS to 113.0.5668.0
* chore: update patches
* chore: fixup for lint
---------
Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '113.0.5666.0',\n+ '113.0.5668.0',\n 'node_version':\n 'v18.15.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2023-03-23T00:09:13 |
golang/go | cd2f347c61bd9f41e977d74dc2dd3a1f36b65800 | c7ea87132f4e6f3c81e525c396a64471c9af0091 | crypto/tls: fix ECH compatibility
Previously, the code only checked supportedVersions[0] for TLS 1.3
However, Chromium-based
browsers may list TLS 1.3 at different positions, causing ECH failures.
This fix:
Iterates through supportedVersions to accept connections as long as TLS 1.3 is present.
Improves ECH com... | [
{
"path": "src/crypto/tls/ech.go",
"patch": "@@ -392,8 +392,28 @@ func decodeInnerClientHello(outer *clientHelloMsg, encoded []byte) (*clientHello\n \t\treturn nil, errInvalidECHExt\n \t}\n \n-\tif len(inner.supportedVersions) != 1 || (len(inner.supportedVersions) >= 1 && inner.supportedVersions[0] != Versi... | 2025-02-10T04:49:15 |
facebook/react | 4aa60d32b954ce14ad84892f5b4f937df3e42e28 | a0e90065c60223ed14caa0a233e2bcf5a903a821 | [patch][dce] Patch dce to have separate mark and sweep phases
---
Previously, our logic was something like:
```js
fixed-point-loop {
foreach instruction {
mark referenced identifiers
// assume that usages are always visited before declarations
if (instruction is decl) {
prune(instruction);
}
}
f... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Optimization/DeadCodeElimination.ts",
"patch": "@@ -29,62 +29,17 @@ import { assertExhaustive, retainWhere } from \"../Utils/utils\";\n * Note that unreachable blocks are already pruned during HIR construction.\n */\n export function deadCodeElimi... | 2024-01-18T23:29:19 |
rust-lang/rust | 99c45c503eef0218c96406623808e7e37d4e430c | a2b126b6e6a56633d35bcb01f50c71b5af88a845 | fix: complete `.let` on block tail prefix expression
Example
---
```rust
fn main() {
&baz.l$0
}
```
**Before this PR**
```text
sn if if expr {}
sn match match expr {}
```
**After this PR**
```text
sn if if expr {}
sn let let
sn letm let mut
sn match match expr {}
``` | [
{
"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::{EXPR_STMT, STMT_LIST},\n+ SyntaxKind::{BLOCK_EXPR, EXPR_STMT, STMT_LIST},\n T, TextRange, Te... | 2026-02-07T08:07:17 |
vercel/next.js | 6f0225a09b27679310eddc0858172355fd875def | f9a7d73ac25b3267837fafd61151a28394dcdf29 | [devtools]: default to issues tab when error overlay is programmatically toggled (#81091)
When there's a build error and we toggle the error overlay on page load,
we should ensure that the issues tab is used rather than the one stored
in session storage, to avoid the case where we bring up the modal
intending to show ... | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel.tsx",
"patch": "@@ -15,6 +15,7 @@ import {\n STORAGE_KEY_SCALE,\n STORAGE_KEY_POSITION,\n ACTION_ERROR_OVERLAY_CLOSE,\n+ STORAGE_KEY_ACTIVE_TAB,\n } from '../../shared'\n import { css } from '../../utils/c... | 2025-07-01T13:07:20 |
nodejs/node | 922feb1ff5527f4442e85d7f61cb95b120df677c | 2e1f7720dfef643b920900cce14eb225ffa2b526 | stream: pipe to a closed or destroyed stream is not allowed in pipeline
PR-URL: https://github.com/nodejs/node/pull/53241
Fixes: https://github.com/nodejs/node/issues/52622
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com> | [
{
"path": "doc/api/errors.md",
"patch": "@@ -2621,6 +2621,12 @@ or a pipeline ends non gracefully with no explicit error.\n An attempt was made to call [`stream.push()`][] after a `null`(EOF) had been\n pushed to the stream.\n \n+<a id=\"ERR_STREAM_UNABLE_TO_PIPE\"></a>\n+\n+### `ERR_STREAM_UNABLE_TO_PIPE`\... | 2024-06-14T08:27:56 |
rust-lang/rust | c5587ca91967f91bf2f1467fbfa68e5d5448bce3 | cda9b8c15752df635d693cfe73b147e6090faddc | Split `parse_inner_attr` errors by case | [
{
"path": "compiler/rustc_parse/src/parser/attr.rs",
"patch": "@@ -209,13 +209,25 @@ impl<'a> Parser<'a> {\n AllowConstBlockItems::Yes,\n ) {\n Ok(Some(item)) => {\n- // FIXME(#100717)\n err.arg(\"item\", item.kind.descr());\n- er... | 2026-02-06T15:59:55 |
facebook/react | a0e90065c60223ed14caa0a233e2bcf5a903a821 | f88e7fe4120b8355ec290acea54036874edec641 | [patch][babel] check babel identifier before lowering to HoistedConst
Same babel identifier issue as #2510 but for HoistedConst
Not sure how we should best test this -- one possibility is using constant prop.
Currently, we have false positives for HoistedConst that prevent constant
propagation. I don't want to ov... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/BuildHIR.ts",
"patch": "@@ -372,6 +372,9 @@ function lowerStatement(\n */\n s.traverse({\n Identifier(id: NodePath<t.Identifier>) {\n+ if (!id.isReferencedIdentifier()) {\n+ return;\n+ ... | 2024-01-18T23:29:19 |
golang/go | c7ea87132f4e6f3c81e525c396a64471c9af0091 | eb7ab11aafc6bcffcb49cd4fc51307dfee7a321b | log/slog: document Logger ignores Handler.Handle errors
Fixes #66579
Change-Id: Ie75378b087763c3e88303df3b3f8d7565003a92f
Reviewed-on: https://go-review.googlesource.com/c/go/+/658515
Reviewed-by: Jonathan Amsterdam <jba@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.... | [
{
"path": "src/log/slog/handler.go",
"patch": "@@ -57,6 +57,9 @@ type Handler interface {\n \t// - If a group's key is empty, inline the group's Attrs.\n \t// - If a group has no Attrs (even if it has a non-empty key),\n \t// ignore it.\n+\t//\n+\t// [Logger] discards any errors from Handle. Wrap th... | 2025-03-17T18:18:48 |
vercel/next.js | 41eaf0e83fbcf6780507e6e1e9050b1ca5ab1775 | 52060515d5241f4c80b36716b5b1710d7bf93db7 | [build] remove the default imports for error boundary (#81000)
After we have all the conventions properly defined in the loader tree including the built-in ones since #80957 , the fix in #59085 is not required anymore.
If you have custom conventions, they'll be bundled.
If you don't have the custom conventions, t... | [
{
"path": "packages/next/src/server/app-render/entry-base.ts",
"patch": "@@ -29,11 +29,6 @@ export {\n export * as serverHooks from '../../client/components/hooks-server-context'\n export { HTTPAccessFallbackBoundary } from '../../client/components/http-access-fallback/error-boundary'\n export { createMetad... | 2025-07-01T09:44:28 |
nodejs/node | 2e1f7720dfef643b920900cce14eb225ffa2b526 | bcbb2f7b16054469b33df50b5d993501b7e0daa0 | src: fix typo in env.cc
PR-URL: https://github.com/nodejs/node/pull/53418
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Kohei Ueno <kohei.ueno119@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il> | [
{
"path": "src/env.cc",
"patch": "@@ -520,7 +520,7 @@ void IsolateData::CreateProperties() {\n CreateEnvProxyTemplate(this);\n }\n \n-constexpr uint16_t kDefaultCppGCEmebdderID = 0x90de;\n+constexpr uint16_t kDefaultCppGCEmbedderID = 0x90de;\n Mutex IsolateData::isolate_data_mutex_;\n std::unordered_map<u... | 2024-06-14T01:27:11 |
facebook/react | f88e7fe4120b8355ec290acea54036874edec641 | 241a615732a71e8da90e17812d855e4c40f0d3b9 | [repro] add fixture repro for destructuring bug | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/bug-destructuring-same-property-identifier-names.expect.md",
"patch": "@@ -0,0 +1,51 @@\n+\n+## Input\n+\n+```javascript\n+function Component(props) {\n+ const {\n+ x: { destructured },\n+ sameName: renamed,\n+ } ... | 2024-01-18T23:29:18 |
golang/go | eb7ab11aafc6bcffcb49cd4fc51307dfee7a321b | 44d1d2e5adaf95190a817980eb8439d080df6b12 | crypto/internal/hpke: propagate hkdf error value
The hkdf operations done in hpke are not expected to fail given that
we control the inputs. However, propagating the error instead of
doesn't hurt and makes the code more robust to future changes.
Change-Id: I168854593a40f67e2cc275e0dedc3b24b8f1480e
Reviewed-on: https:... | [
{
"path": "src/crypto/internal/hpke/hpke.go",
"patch": "@@ -26,31 +26,23 @@ type hkdfKDF struct {\n \thash crypto.Hash\n }\n \n-func (kdf *hkdfKDF) LabeledExtract(sid []byte, salt []byte, label string, inputKey []byte) []byte {\n+func (kdf *hkdfKDF) LabeledExtract(sid []byte, salt []byte, label string, inpu... | 2025-03-17T15:16:53 |
vercel/next.js | 80a580573e8a1ba1305a254b96e1071a441d87cc | 79572631397b447884ef037df027db5d1d9ae794 | docs: fix grammatical error in upgrading to v15 guide (#81038)
Title is pretty self descriptive.
<img width="667" alt="image"
src="https://github.com/user-attachments/assets/211f9eee-5d39-494e-abb9-9cad996b75be"
/>
Removes the word "you" for better grammatical clarity.
Co-authored-by: Joseph <joseph.chamochumbi@ver... | [
{
"path": "docs/01-app/02-guides/upgrading/version-15.mdx",
"patch": "@@ -22,7 +22,7 @@ npm i next@latest react@latest react-dom@latest eslint-config-next@latest\n \n > **Good to know:**\n >\n-> - If you see a peer dependencies warning, you may need to update `react` and `react-dom` to the suggested version... | 2025-07-01T08:48:47 |
nodejs/node | 852fa5581396ba147459e041808de4c1024cf39a | 2bb39f8acffffb6939b7067e9044f6be1b1d8475 | lib: reduce amount of caught URL errors
PR-URL: https://github.com/nodejs/node/pull/52658
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Daniel Lemire <daniel@lemire.me> | [
{
"path": "lib/internal/modules/esm/hooks.js",
"patch": "@@ -33,7 +33,7 @@ const {\n ERR_WORKER_UNSERIALIZABLE_ERROR,\n } = require('internal/errors').codes;\n const { exitCodes: { kUnsettledTopLevelAwait } } = internalBinding('errors');\n-const { URL } = require('internal/url');\n+const { URLParse } = re... | 2024-06-13T18:32:59 |
golang/go | 7a8ce5e3de6a2eeb108dae67cc005e8b998bcbfa | 5e9820245574bdf67f28156db4b00191b1b3696f | cmd/go: point tidy errors to correct URL
The `go mod tidy` errors have been pointing to an older URL. This CL
fixes the URL by pointing to the correct URL: https://go.dev/ref/mod.
Fixes #49394
Change-Id: I707dda407ba032db8a55083998002a5ab72033e8
Reviewed-on: https://go-review.googlesource.com/c/go/+/633421
Reviewed-... | [
{
"path": "src/cmd/go/internal/modload/load.go",
"patch": "@@ -2086,8 +2086,7 @@ func (ld *loader) checkTidyCompatibility(ctx context.Context, rs *Requirements,\n \n \t\tfmt.Fprintf(os.Stderr, \"If reproducibility with go %s is not needed:\\n\\tgo mod tidy%s -compat=%s\\n\", compatVersion, goFlag, goVersion... | 2024-12-06T17:22:56 |
facebook/react | 241a615732a71e8da90e17812d855e4c40f0d3b9 | 8f18b8233f2e68d00e8d175a8bed61c9db601f50 | [babel][contextvar] Patch context identifier babel logic; only use referenced
identifiers
---
A few fixes for finding context identifiers:
Previously, we counted every babel identifier as a reference. This is
problematic because babel counts every string symbol as an identifier.
```js
print(x); // x is an ... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/FindContextIdentifiers.ts",
"patch": "@@ -8,18 +8,28 @@\n import type { NodePath } from \"@babel/traverse\";\n import type * as t from \"@babel/types\";\n import { CompilerError } from \"../CompilerError\";\n-import { Set_union } from \"../Utils... | 2024-01-18T23:29:18 |
rust-lang/rust | c1091da34c052b2260c7d4d5e0d4c6a63a34a0b8 | edd43c9e1f9fbca3e7f95447fbade7cb1bf11d7c | Fix existing messages in stderrs | [
{
"path": "tests/rustdoc-ui/ice-bug-report-url.stderr",
"patch": "@@ -9,7 +9,7 @@ LL | fn wrong()\n aborting due to `-Z treat-err-as-bug=1`\n stack backtrace:\n \n-error: the compiler unexpectedly panicked. this is a bug.\n+error: the compiler unexpectedly panicked. This is a bug\n \n note: we would appreci... | 2026-02-06T20:16:53 |
vercel/next.js | b3a6dcba71563b7e958e4524d99bd7d136d57f29 | fc008727f0034eba395cafb7f4d68a6de3cac096 | Turbopack: instrument scope hoisting with tracing spans (#81078)
<!-- 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... | [
{
"path": "turbopack/crates/turbopack-cli/benches/small_apps.rs",
"patch": "@@ -83,6 +83,7 @@ fn bench_small_apps(c: &mut Criterion) {\n no_sourcemap: false,\n no_minify: false,\n force_memory_cleanup: true,\n+ ... | 2025-07-01T06:20:28 |
golang/go | bceade5ef8ab6d28ad363cd7ca60a9be89990a00 | 57c44fdefc818f90b98fa1d5c0cd0fccdc35edf8 | doc/next: add release note for work package pattern
For #71294
Fixes #50745
Change-Id: Iff05e98ac860a1764d4c59572f9abc3ae8d9c5fb
Reviewed-on: https://go-review.googlesource.com/c/go/+/658495
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservi... | [
{
"path": "doc/next/3-tools.md",
"patch": "@@ -10,6 +10,12 @@ These new error reports may be disabled by setting\n `ASAN_OPTIONS=detect_leaks=0` in the environment when running the\n program.\n \n+<!-- go.dev/issue/71294 -->\n+\n+The new `work` package pattern matches all packages in the work (formerly call... | 2025-03-17T15:53:22 |
facebook/react | b3003047101b4c7a643788a8faf576f7e370fb45 | 5c607369ceebe56d85175df84b7b6ad58dd25e1f | Update error decoder URL (#27240)
Updates the error decoder to the URL for the new docs site.
- Switches the domain from reactjs.org to react.dev
- Switches to put the error code in the URL for SSG
- All params are still in the query
Example without args:
- Before: `https://reactjs.org/docs/error-decoder.ht... | [
{
"path": "packages/shared/__tests__/ReactError-test.internal.js",
"patch": "@@ -41,7 +41,7 @@ describe('ReactError', () => {\n it('should error with minified error code', () => {\n expect(() => ReactDOM.render('Hi', null)).toThrowError(\n 'Minified React error #200; visit ' +\n- 'https:/... | 2024-01-18T02:41:07 |
nodejs/node | c64a00a12db5f0afac102cc04f968d36ad1d62c8 | 473410d379ec69ed2abf7f13d73c297e2853c03d | tools: fix c-ares update script
PR-URL: https://github.com/nodejs/node/pull/53414
Fixes: https://github.com/nodejs/node/issues/53407
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "tools/dep_updaters/update-c-ares.sh",
"patch": "@@ -11,19 +11,25 @@ DEPS_DIR=\"$BASE_DIR/deps\"\n # shellcheck disable=SC1091\n . \"$BASE_DIR/tools/dep_updaters/utils.sh\"\n \n-NEW_VERSION=\"$(\"$NODE\" --input-type=module <<'EOF'\n+NEW_VERSION_METADATA=\"$(\"$NODE\" --input-type=module <<'EOF'\n... | 2024-06-13T07:37:46 |
rust-lang/rust | edd43c9e1f9fbca3e7f95447fbade7cb1bf11d7c | ca9c2277008aee9310155c5e6131f0f93f67e3ad | Fix existing messages in the diag structs | [
{
"path": "compiler/rustc_codegen_llvm/src/errors.rs",
"patch": "@@ -214,5 +214,5 @@ pub(crate) struct FixedX18InvalidArch<'a> {\n }\n \n #[derive(Diagnostic)]\n-#[diag(\"`-Zsanitizer-kcfi-arity` requires LLVM 21.0.0 or later.\")]\n+#[diag(\"`-Zsanitizer-kcfi-arity` requires LLVM 21.0.0 or later\")]\n pub(c... | 2026-02-06T20:16:48 |
vercel/next.js | fc008727f0034eba395cafb7f4d68a6de3cac096 | bab9377990b9c437b176a6f2961e0edb3563d9e3 | Turbopack: guard against more eventual consistency (#81080)
These might be `None` due to eventual consistency. Don't crash the build because of that. | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/lib.rs",
"patch": "@@ -1302,8 +1302,16 @@ async fn merge_modules(\n \n let export_contexts = contents\n .iter()\n- .map(|(module, content)| (*module, content.export_contexts.as_ref().unwrap()))\n- .collect::<FxHashMap<_, _>>();\n... | 2025-07-01T06:20:24 |
electron/electron | caa5989eedd44625dad508c9665b8032df01e235 | e0c348a2f8122dabbe2253d7bddc52be13bf1bca | fix: avoid deprecated value apis (#37590)
* fix: use base::Value::Dict:::Remove() instead of RemoveKe()
the latter is deprecated.
* fix: use base::Value::Dict::FindString() instead of base::Value::FindStringKey()
The latter is deprecated.
* chore: make lint happy | [
{
"path": "shell/browser/api/electron_api_app.cc",
"patch": "@@ -607,13 +607,13 @@ int ImportIntoCertStore(CertificateManagerModel* model, base::Value options) {\n net::ScopedCERTCertificateList imported_certs;\n int rv = -1;\n \n- std::string* cert_path_ptr = options.FindStringKey(\"certificate\");\n-... | 2023-03-20T14:38:45 |
golang/go | 57c44fdefc818f90b98fa1d5c0cd0fccdc35edf8 | 7dd7d70c034a24ac98e52bd4e6dac3ce35c60271 | html/template: document comment stripping
Fixes #28628
Change-Id: I8b68f55f25e62f747d7cc48a490fec7f426f53d1
Reviewed-on: https://go-review.googlesource.com/c/go/+/658115
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-projec... | [
{
"path": "src/html/template/doc.go",
"patch": "@@ -28,6 +28,9 @@ HTML templates treat data values as plain text which should be encoded so they\n can be safely embedded in an HTML document. The escaping is contextual, so\n actions can appear within JavaScript, CSS, and URI contexts.\n \n+Comments are strip... | 2025-03-15T00:14:14 |
facebook/react | 9b6605d313bad279722ac8ef7ed0e03bb16d111e | fb0cf4f83307ff7d4da06f6ce0c90d4ef45bdc37 | Remove [ReactForget] prefix from eslint messages
Remove [ReactForget] prefix from eslint messages
No other lint warnings have a prefix, removing this is cleaner. | [
{
"path": "compiler/packages/eslint-plugin-react-forget/__tests__/ReactForgetDiagnostics-test.ts",
"patch": "@@ -104,7 +104,7 @@ const tests: ForgetTestCases = {\n errors: [\n {\n message:\n- \"[ReactForget] React Forget has bailed out of optimizing this component as one o... | 2024-01-16T18:47:20 |
vercel/next.js | d5d10e17a9330abd2cf7dab5c0b3ae742b9b5c57 | bd8e04be7512994be9e7a366d583d5dc5406b264 | [turbopack] Make internal functions private and use rcstr! macro (#81041)
## Refactor resolve module and improve RcStr usage
### What?
- Made several internal methods private that were unnecessarily public
- Removed unused methods like `ResolveResult.map()`
- Removed redundant fragment resolution code path
- Improved... | [
{
"path": "crates/next-core/src/next_server/resolve.rs",
"patch": "@@ -1,6 +1,6 @@\n use anyhow::Result;\n use serde::{Deserialize, Serialize};\n-use turbo_rcstr::RcStr;\n+use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{NonLocalValue, ResolvedVc, Vc, trace::TraceRawVcs};\n use turbo_tasks_fs::{self, Fi... | 2025-06-30T23:44:32 |
electron/electron | e0c348a2f8122dabbe2253d7bddc52be13bf1bca | eb613ef3d474f374874e5494a57bb06639811bdd | feat: Allow usage of an absolute path for partitions used in a session (#37604)
* Allow an absolute path to be used for creating sessions
Allows an absolute path to be used for creating sessions
by adding the session.fromPath() API.
* Fixup! Clarify that an emptry string is not permitted as a parameter to fromP... | [
{
"path": "docs/api/session.md",
"patch": "@@ -42,6 +42,22 @@ To create a `Session` with `options`, you have to ensure the `Session` with the\n `partition` has never been used before. There is no way to change the `options`\n of an existing `Session` object.\n \n+### `session.fromPath(path[, options])`\n+\n... | 2023-03-20T14:34:49 |
golang/go | 7dd7d70c034a24ac98e52bd4e6dac3ce35c60271 | f41fdd962db3264e62ec6acb4a8f5e40d22bdfed | runtime: skip TestCgoCallbackPprof on platforms with broken profiling
CL 658035 added TestCgoCallbackPprof, which is consistently failing on
solaris. runtime/pprof maintains a list of platforms where CPU profiling
does not work properly. Since this test requires CPU profiling, skip the
this test on those platforms.
F... | [
{
"path": "src/internal/testenv/testenv.go",
"patch": "@@ -504,3 +504,26 @@ func ParallelOn64Bit(t *testing.T) {\n \t}\n \tt.Parallel()\n }\n+\n+// CPUProfilingBroken returns true if CPU profiling has known issues on this\n+// platform.\n+func CPUProfilingBroken() bool {\n+\tswitch runtime.GOOS {\n+\tcase \... | 2025-03-17T12:11:42 |
facebook/react | 60a927d04ad3888facebcdf7da620aa1cfc9528f | 33068c9db9153a479bb29d138397cb9c32fabfdd | Fix: useOptimistic should return passthrough value when there are no updates pending (#27936)
This fixes a bug that happened when the canonical value passed to
useOptimistic without an accompanying call to setOptimistic. In this
scenario, useOptimistic should pass through the new canonical value.
I had written te... | [
{
"path": "packages/react-reconciler/src/ReactFiberHooks.js",
"patch": "@@ -1256,10 +1256,19 @@ function updateReducerImpl<S, A>(\n queue.pending = null;\n }\n \n- if (baseQueue !== null) {\n+ const baseState = hook.baseState;\n+ if (baseQueue === null) {\n+ // If there are no pending updates, t... | 2024-01-14T02:37:35 |
vercel/next.js | 824f853747a63702526803aea373895a8177ed7e | 626998177ec746d238e9c215be7c82fcf2859efe | [devtools]: move RestartServerButton to panel footer (#81082)
This moves the restart button to the footer in the new panel UI. It also
properly gates to only be enabled with Turbopack + Persistent Cache.
Because it's no longer part of the error overlay, I refactored the logic
a bit to hoist the flag into overlay stat... | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel-footer.tsx",
"patch": "@@ -2,13 +2,16 @@ import type { OverlayState } from '../../shared'\n \n import { DevToolsPanelVersionInfo } from './devtools-panel-version-info'\n import { css } from '../../utils/css'\n+im... | 2025-06-30T21:18:47 |
electron/electron | eb613ef3d474f374874e5494a57bb06639811bdd | 7ed3c7a359c78c725ba02eaf5edd28968e356a32 | fix: invoke `app.dock.{hide|show}` instead of duplicating logic (#37599)
fix: invoke app.dock.{hide|show} instead of duplicating logic | [
{
"path": "shell/browser/native_window_mac.mm",
"patch": "@@ -23,6 +23,7 @@\n #include \"content/public/browser/browser_task_traits.h\"\n #include \"content/public/browser/browser_thread.h\"\n #include \"content/public/browser/desktop_media_id.h\"\n+#include \"shell/browser/browser.h\"\n #include \"shell/br... | 2023-03-20T14:30:49 |
golang/go | 38d146d57229a8e432d7570a0391f07b8cbf9393 | 6fb7bdc96d0398fab313586fba6fdc89cc14c679 | doc/go_mem: fix grammar issue
In the passage about buffered channels, remove redundant words and match
the wording of the earlier passage about unbuffered channels.
Change-Id: I35d8a3bf4f176c3f69cf5e6a64595e5d1c23e3a1
GitHub-Last-Rev: 1c4c9390a174d1a66797a025e2fdb0bf56239f48
GitHub-Pull-Request: golang/go#72891
Revie... | [
{
"path": "doc/go_mem.html",
"patch": "@@ -453,7 +453,7 @@ <h3 id=\"chan\">Channel communication</h3>\n </p>\n \n <p class=\"rule\">\n-The <i>k</i>th receive on a channel with capacity <i>C</i> is synchronized before the completion of the <i>k</i>+<i>C</i>th send from that channel completes.\n+The <i>k</i>t... | 2025-03-16T13:55:23 |
vercel/next.js | 626998177ec746d238e9c215be7c82fcf2859efe | 4e53b980a1926dffc70274ac8fbdd485cabe5320 | Turbopack: fix exposed modules in scope hoisting (#81073)
Closes PACK-4943
Closes https://github.com/vercel/next.js/issues/80998
If we have to split up a merged group because multiple chunks have different execution order, we need to make sure that the references that cross merged groups because of this actually w... | [
{
"path": "turbopack/crates/turbopack-core/src/module_graph/merged_modules.rs",
"patch": "@@ -436,30 +436,53 @@ pub async fn compute_merged_modules(module_graph: Vc<ModuleGraph>) -> Result<Vc<\n list.truncate(common_occurrence.entry);\n let before_list = &*list;\n \n- ... | 2025-06-30T20:40:33 |
facebook/react | bcbbbec1f58eeb714ded2b6d824344490b323fb0 | 33118be83592961ef4c07b4b7fc043c44ba47b71 | [housekeeping] Remove unused test fixtures
We don't use these fixtures, let's just clean them up. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/todo/README.md",
"patch": "@@ -1,5 +0,0 @@\n-## TODOs\n-\n-This directory contains files that are currently crashing the compiler and\n-should be moved to `../transform/` as a potential new fixture once the crash\n-is fixed.",
... | 2024-01-12T20:22:23 |
nodejs/node | 3597070ef8297baceed4cf7a9a0eccae8181e263 | 7d90f0638d524a75082ade7887ab4c29a1aa6016 | deps: V8: cherry-pick a3cc8522a4c8
Original commit message:
[riscv] avoid cpu probing in li_ptr
CPU probing is an expensive thing to do and we should avoid doing it upon every li_ptr call.
Fixes performance regresion bisected in https://github.com/riscv-forks/electron/issues/1
Change-Id: Ib5ff89b2a... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.14',\n+ 'v8_embedder_string': '-node.15',\n \n ##### V8 defaults for Node.js #####\n... | 2024-06-11T05:30:25 |
rust-lang/rust | 2eec6178094351111d908627511628005c220826 | a2b126b6e6a56633d35bcb01f50c71b5af88a845 | internal: remove redundant double call in postfix | [
{
"path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/postfix.rs",
"patch": "@@ -91,8 +91,7 @@ pub(crate) fn complete_postfix(\n // so it's better to consider references now to avoid breaking the compilation\n \n let (dot_receiver_including_refs, prefix) = include_references(dot_r... | 2026-02-07T08:02:23 |
electron/electron | b8f970c1c710c7e43cff6770fa845b96445cdaf8 | 48d0b09ad932aabc91ef072c862f3489202e40fd | fix: properly bubble up cookie creation failure message (#37586) | [
{
"path": "shell/browser/api/electron_api_cookies.cc",
"patch": "@@ -180,7 +180,7 @@ std::string InclusionStatusToString(net::CookieInclusionStatus status) {\n return \"Failed to parse cookie\";\n if (status.HasExclusionReason(\n net::CookieInclusionStatus::EXCLUDE_INVALID_DOMAIN))\n- ret... | 2023-03-16T12:48:14 |
golang/go | e0edd3e15519eb10a885d99422878596acd97899 | bb6a4000283d8599dbb6a6a28763268f8632036d | html/template: replace end-of-life link
Fix #65044
Change-Id: I5bf9c1cf2e9d3ae1e4bbb8f2653512c710db370b
Reviewed-on: https://go-review.googlesource.com/c/go/+/555815
Auto-Submit: Sean Liao <sean@liao.dev>
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.ia... | [
{
"path": "src/html/template/doc.go",
"patch": "@@ -210,7 +210,7 @@ that would have been produced if {{.}} was a regular string.\n \n # Security Model\n \n-https://rawgit.com/mikesamuel/sanitized-jquery-templates/trunk/safetemplate.html#problem_definition defines \"safe\" as used by this package.\n+https://... | 2024-01-15T06:52:10 |
vercel/next.js | b1ea75541598855fd564c015a969cfe7f1c0b7ad | 75e00d6a52518dd845f27f4b9af98a38911359c5 | [turbopack[ Fix a bug in top level `this` analysis (#81076)
### What
Fix a bug where we incorrectly identified a `this` reference in a getter prop of an object literal as being 'top level'.
Reported here: https://github.com/vercel/next.js/pull/80925#issuecomment-3018327194 | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/analyzer/graph.rs",
"patch": "@@ -797,11 +797,13 @@ pub fn is_in_try(ast_path: &AstNodePath<AstParentNodeRef<'_>>) -> bool {\n .iter()\n .rev()\n .find_map(|ast_ref| match ast_ref.kind() {\n- AstParentKind::ArrowExpr(Arr... | 2025-06-30T17:25:39 |
nodejs/node | 73fa9ab7a58a3cbc53ed418543f5f6fd26e8f87a | 937ae102e7efc4ac9b561d818263b26b8296a125 | src: fix IsIPAddress for IPv6
Fix the bug when copying IPv6 host to a variable to remove brackets.
Fixes: https://github.com/nodejs/node/issues/47427
PR-URL: https://github.com/nodejs/node/pull/53400
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Richard Lau <rlau@redhat.com> | [
{
"path": "src/inspector_socket.cc",
"patch": "@@ -192,7 +192,7 @@ static bool IsIPAddress(const std::string& host) {\n // Parse the IPv6 address to ensure it is syntactically valid.\n char ipv6_str[INET6_ADDRSTRLEN];\n std::copy(host.begin() + 1, host.end() - 1, ipv6_str);\n- ipv6_str[host.l... | 2024-06-12T12:44:19 |
rust-lang/rust | 2f06c639c3014cdf3260133a72b4eebd4c924f3d | 5db03861b063bad596fef43759df988c6e7e28c1 | libm: Fix acoshf and acosh for negative inputs
The acosh functions were incorrectly returning finite values for some
negative inputs (should be NaN for any `x < 1.0`)
The bug was inherited when originally ported from musl, and this patch
follows their fix for single-precision acoshf in [1].
A similar fix is applied ... | [
{
"path": "library/compiler-builtins/libm-test/src/precision.rs",
"patch": "@@ -266,6 +266,15 @@ impl MaybeOverride<(f64,)> for SpecialCase {\n return XFAIL_NOCHECK;\n }\n \n+ if ctx.base_name == BaseName::Acosh\n+ && input.0 < 1.0\n+ && actual.is_nan()\n+ ... | 2026-02-02T23:14:54 |
electron/electron | 48d0b09ad932aabc91ef072c862f3489202e40fd | c5fc5efc00fc79c283f261be068ee881a5c9d9a3 | chore: bump chromium to 113.0.5653.0 (main) (#37587)
* chore: bump chromium in DEPS to 113.0.5653.0
* chore: update patches
* [Extensions c2s] Move HasActiveTabAndCanAccess() to //extensions
https://chromium-review.googlesource.com/c/chromium/src/+/4305558
* [Privacy Hub] Respecting ChromeOS geoloc setting... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '113.0.5651.0',\n+ '113.0.5653.0',\n 'node_version':\n 'v18.15.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2023-03-16T10:03:53 |
golang/go | 10d070668c24a3f1b3982c323ba1334437941dff | a8f2e63f2f5b661418f1e386e443e48356e72c40 | cmd/compile/internal/ssa: remove double negation with addition on riscv64
On riscv64, subtraction from a constant is typically implemented as an
ADDI with the negative constant, followed by a negation. However this can
lead to multiple NEG/ADDI/NEG sequences that can be optimised out.
For example, runtime.(*_panic).n... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/RISCV64.rules",
"patch": "@@ -732,6 +732,7 @@\n \n // Double negation.\n (NEG (NEG x)) => x\n+(NEG <t> s:(ADDI [val] (NEG x))) && s.Uses == 1 && is32Bit(-val) => (ADDI [-val] x)\n \n // Addition of zero or two constants.\n (ADDI [0] x) => x",
"additions": 1,
... | 2025-02-23T13:37:45 |
vercel/next.js | 890c19fa2c16774eb1520ebdddb7584de575fbb1 | b9cabd28137040e847b7ba1fa67b5a13409f195d | [test] fix browser chunk test failure (#81074) | [
{
"path": "packages/next/src/client/react-client-callbacks/error-boundary-callbacks.ts",
"patch": "@@ -13,7 +13,6 @@ import { reportGlobalError } from './report-global-error'\n import { originConsoleError } from '../../next-devtools/userspace/app/errors/intercept-console-error'\n import { ErrorBoundaryHandl... | 2025-06-30T16:06:18 |
facebook/react | 33118be83592961ef4c07b4b7fc043c44ba47b71 | 653373141a36a120a1c09391e0e6d3d81be5750c | [housekeeping] Remove fixtures/
Do we still use these? I'm happy to close this PR if we still want this but it
feels like these may have served their purpose and no longer be necessary. | [
{
"path": "compiler/fixtures/demo-2021Q3/.babelrc",
"patch": "@@ -1,3 +0,0 @@\n-{\n- \"plugins\": [\"../../\"]\n-}",
"additions": 0,
"deletions": 3,
"language": "Unknown"
},
{
"path": "compiler/fixtures/demo-2021Q3/.env",
"patch": "@@ -1 +0,0 @@\n- SKIP_PREFLIGHT_CHECK=true",
"a... | 2024-01-12T20:22:19 |
rust-lang/rust | 5db03861b063bad596fef43759df988c6e7e28c1 | a47510aa0f13ec8e76c4c4ca904e96b85cbd5126 | libm-test: Remove exception for fmaximum_num tests
This was left over from f6a23a78c44e ("fmaximum,fminimum: Fix incorrect
result and add tests").
[ added context to body - Trevor ] | [
{
"path": "library/compiler-builtins/libm-test/src/precision.rs",
"patch": "@@ -401,14 +401,6 @@ fn binop_common<F1: Float, F2: Float>(\n return SKIP;\n }\n \n- // FIXME(#939): this should not be skipped, there is a bug in our implementationi.\n- if ctx.base_name == BaseName::FmaximumNum\n... | 2026-02-02T22:35:17 |
facebook/react | 653373141a36a120a1c09391e0e6d3d81be5750c | 0c866672b07ae47d8d6f80d1aac9029e5ae73d90 | Extra fixture for validating preserved memoization of non-escaping callbacks | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/repro-false-positive-preserve-memoization-nonescaping-invoked-callback-escaping-return.expect.md",
"patch": "@@ -0,0 +1,109 @@\n+\n+## Input\n+\n+```javascript\n+// @validatePreserveExistingMemoizationGuarantees @enableAs... | 2024-01-12T22:32:35 |
golang/go | 3c3b8dd4f0590881f7010014985d05cce1c9e943 | 580b6ee646809cdd409b3e0d311e1ec35c72aa6b | internal/runtime/atomic: add Xchg8 for s390x and wasm
This makes the single-byte atomic.Xchg8 operation available on all
GOARCHes, including those without direct / single-instruction support.
Fixes #69735
Change-Id: Icb6aff8f907257db81ea440dc4d29f96b3cff6c4
Reviewed-on: https://go-review.googlesource.com/c/go/+/6579... | [
{
"path": "src/internal/runtime/atomic/atomic_arm.go",
"patch": "@@ -77,24 +77,6 @@ func Xchg(addr *uint32, v uint32) uint32 {\n //go:noescape\n func Xchg8(addr *uint8, v uint8) uint8\n \n-//go:nosplit\n-func goXchg8(addr *uint8, v uint8) uint8 {\n-\t// Align down to 4 bytes and use 32-bit CAS.\n-\taddr32 :... | 2025-03-14T16:36:06 |
nodejs/node | 521c9c6df77f83b6e6d229b35cdc754dfb9d83cf | 94c81784422e3da2b4d2af96a1705d7a770ed4ed | doc, http: add `rejectNonStandardBodyWrites` option, clear its behaviour
PR-URL: https://github.com/nodejs/node/pull/53396
Fixes: https://github.com/nodejs/node/issues/53035
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Paolo Insogna <paolo@cowtech.it>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gm... | [
{
"path": "doc/api/http.md",
"patch": "@@ -2427,8 +2427,9 @@ it will switch to implicit header mode and flush the implicit headers.\n This sends a chunk of the response body. This method may\n be called multiple times to provide successive parts of the body.\n \n-Writing to the body is not allowed when the ... | 2024-06-11T16:39:17 |
vercel/next.js | b9cabd28137040e847b7ba1fa67b5a13409f195d | 82c85a5b7bfbe38ee9c979d9da739925da20723c | [devtools]: width/height adjustments (#81072)
Before:
https://github.com/user-attachments/assets/f4fdda52-452c-4990-818d-0a0db331a02b
After:
https://github.com/user-attachments/assets/ee58f986-96b3-4cf0-920e-aaee3370eea5
Fixes NEXT-4575 | [
{
"path": "packages/next/src/next-devtools/dev-overlay/components/devtools-panel/devtools-panel.tsx",
"patch": "@@ -277,11 +277,7 @@ export const DEVTOOLS_PANEL_STYLES = css`\n }\n \n @media (min-width: 992px) {\n- max-width: 960px;\n- }\n-\n- @media (min-width: 1200px) {\n- max-widt... | 2025-06-30T16:00:38 |
electron/electron | 061e2e5e7312d419f15a8ff1f6229c984531b873 | bf1cc1aeb2a55a07d8ed794df1e6a630221bd69a | chore: bump chromium to 113.0.5651.0 (main) (#37553)
* chore: bump chromium in DEPS to 113.0.5645.0
* chore: update patches/chromium/mas_avoid_usage_of_private_macos_apis.patch
Xref: https://chromium-review.googlesource.com/c/chromium/src/+/4300129
Fix simple code shear
* chore: update patches/chromium/bui... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '113.0.5636.0',\n+ '113.0.5651.0',\n 'node_version':\n 'v18.15.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2023-03-15T09:20:32 |
nodejs/node | 3a7d8c8e9f3fd11924b13996abb1af9dd5203e16 | dbf79c916794faf947d792a3d6aa9ae7983e5ef0 | doc: fix typo
PR-URL: https://github.com/nodejs/node/pull/53397
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> | [
{
"path": "doc/api/cli.md",
"patch": "@@ -1019,7 +1019,7 @@ following permissions are restricted:\n added: v22.0.0\n -->\n \n-> Stability: 1.1 - Active Developement\n+> Stability: 1.1 - Active Development\n \n Supports loading a synchronous ES module graph in `require()`.\n ",
"additions": 1,
"delet... | 2024-06-10T22:34:38 |
golang/go | 580b6ee646809cdd409b3e0d311e1ec35c72aa6b | 5bb73e650496c229c9baf5b9a4fe3861c07c9302 | cmd/go: enable fuzz testing on OpenBSD
This change provides support for -fuzz flag on OpenBSD. According to #46554 the flag was unsupported on some OSes due to lack of proper testing.
Fixes: #60491
Change-Id: I49835131d3ee23f6482583b518b9c5c224fc4efe
GitHub-Last-Rev: f697a3c0f2dc36cc3c96c0336281c5e2440f7a1a
GitHub-P... | [
{
"path": "src/internal/fuzz/counters_supported.go",
"patch": "@@ -2,7 +2,7 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-//go:build (darwin || linux || windows || freebsd) && (amd64 || arm64)\n+//go:build (darwin || linux || windows || f... | 2023-05-30T18:29:05 |
facebook/react | 0c866672b07ae47d8d6f80d1aac9029e5ae73d90 | 8e4d2fb69d690695db0a33001fb1aee586bde15f | Fix false positive on preserving memo of non-escaping values
Fixes the false positive in the previous PR. When we prune a scope because it's
values are non-escaping, we now also remove any `Memoize` instructions for that
scope. The intuition being that we're actively removing unnecessary memoization,
so we don't n... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/PruneNonEscapingScopes.ts",
"patch": "@@ -871,6 +871,8 @@ class CollectDependenciesVisitor extends ReactiveFunctionVisitor<State> {\n class PruneScopesTransform extends ReactiveFunctionTransform<\n Set<IdentifierId>\n > {\n+ pruned... | 2024-01-12T01:13:41 |
vercel/next.js | 3327565c43e1e224665f11a8ad69d1d3a32285f7 | e0a7a95fb20ccce92abe94c1679fd004144f1376 | docs(fetch): update wording on conflicting cache and revalidate options (#80591)
Clarifies that using conflicting options such as `{ revalidate: 3600,
cache: 'no-store' }` results in a warning in the terminal rather than an
error.
This change helps accurately reflect the current runtime behavior and
avoids misleading... | [
{
"path": "docs/01-app/03-api-reference/04-functions/fetch.mdx",
"patch": "@@ -71,7 +71,7 @@ Set the cache lifetime of a resource (in seconds). [Data Cache](/docs/app/guides\n >\n > - If an individual `fetch()` request sets a `revalidate` number lower than the [default `revalidate`](/docs/app/api-reference/... | 2025-06-30T08:12:38 |
electron/electron | bf1cc1aeb2a55a07d8ed794df1e6a630221bd69a | e480cb7103df6702d0364cf76d1f20724efc49dc | fix: don't set delegate for `QLPreviewPanel` (#37530)
fix: don't set delegate for QLPreviewPanel | [
{
"path": "shell/browser/ui/cocoa/electron_ns_window.mm",
"patch": "@@ -276,12 +276,10 @@ - (BOOL)acceptsPreviewPanelControl:(QLPreviewPanel*)panel {\n }\n \n - (void)beginPreviewPanelControl:(QLPreviewPanel*)panel {\n- panel.delegate = [self delegate];\n panel.dataSource = static_cast<id<QLPreviewPanelD... | 2023-03-14T13:41:34 |
nodejs/node | 430c026911a5ca51fa0102bdb9e40cbd7e36e94e | 14863e80584e579fd48c55f6373878c821c7ff7e | src: fix permission inspector crash
PR-URL: https://github.com/nodejs/node/pull/53389
Fixes: https://github.com/nodejs/node/issues/53385
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Kohei Ueno <kohei... | [
{
"path": "src/inspector_js_api.cc",
"patch": "@@ -181,6 +181,9 @@ void SetConsoleExtensionInstaller(const FunctionCallbackInfo<Value>& info) {\n \n void CallAndPauseOnStart(const FunctionCallbackInfo<v8::Value>& args) {\n Environment* env = Environment::GetCurrent(args);\n+ THROW_IF_INSUFFICIENT_PERMISS... | 2024-06-10T18:35:55 |
golang/go | 5bb73e650496c229c9baf5b9a4fe3861c07c9302 | 853b514417dab2cf0383e48207caff2ce0305618 | debug/elf: add riscv attributes definitions
This CL adds `riscv.attributes` related ELF section header
type and program header type according to
[RISC-V ELF Specification](https://github.com/riscv-non-isa/riscv-elf-psabi-doc/releases/download/v1.0/riscv-abi.pdf)
Also an riscv64/linux testcase binary built from:
```
... | [
{
"path": "api/next/72843.txt",
"patch": "@@ -0,0 +1,4 @@\n+pkg debug/elf, const PT_RISCV_ATTRIBUTES = 1879048195 #72843\n+pkg debug/elf, const PT_RISCV_ATTRIBUTES ProgType #72843\n+pkg debug/elf, const SHT_RISCV_ATTRIBUTES = 1879048195 #72843\n+pkg debug/elf, const SHT_RISCV_ATTRIBUTES SectionType #72843",... | 2025-03-13T08:29:16 |
facebook/react | c3a947643fae3fbbbda42a676c1b89dfd5d21945 | f6f042d747be336e272c6b0d205fb15b6e7de8f6 | Update hoisting error message to allow error aggregation
Interpolating values into the `reason` field of an error breaks our error
aggregation. This PR moves the offending function name into the `description`
field which isn't used for aggregation. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Program.ts",
"patch": "@@ -646,9 +646,8 @@ function checkFunctionReferencedBeforeDeclarationAtTopLevel(\n if (scope === null) {\n errors.pushErrorDetail(\n new CompilerErrorDetail({\n- reason: `Encounter... | 2024-01-11T23:54:55 |
vercel/next.js | 2ae5e2af6c24a7c8182218a932df360dfdab9ad1 | 030463929eb9baa59dfff76a84395dcb52a3eb21 | chore(turbopack): Fix typo (#80983)
### What?
Fix a typo
### Why?
https://github.com/vercel/next.js/pull/80830#pullrequestreview-2964742420 | [
{
"path": "turbopack/crates/turbo-tasks/src/persisted_graph.rs",
"patch": "@@ -150,7 +150,7 @@ pub struct DeactivateResult {\n pub more_tasks_to_deactivate: SmallVec<[TaskId; 4]>,\n }\n \n-pub type TypeIds = SmallVec<[TaskId; 4]>;\n+pub type TaskIds = SmallVec<[TaskId; 4]>;\n \n pub trait PersistedGraph... | 2025-06-30T04:10:57 |
rust-lang/rust | a47510aa0f13ec8e76c4c4ca904e96b85cbd5126 | 345acb1afda663de14f74dc9b617b91b8e989139 | Allow unstable_name_collisions
In recent nightlies we are hitting errors like the following:
error: an associated constant with this name may be added to the standard library in the future
--> libm/src/math/support/float_traits.rs:248:48
|
248 | const SIGN_MASK: Self::Int = 1 << ... | [
{
"path": "library/compiler-builtins/compiler-builtins/src/lib.rs",
"patch": "@@ -11,11 +11,11 @@\n #![feature(repr_simd)]\n #![feature(macro_metavar_expr_concat)]\n #![feature(rustc_attrs)]\n-#![feature(float_bits_const)]\n #![cfg_attr(f16_enabled, feature(f16))]\n #![cfg_attr(f128_enabled, feature(f128))]... | 2026-02-06T22:14:58 |
golang/go | 577bb3d0ce576b2ca311e58dd942f189838b80fc | 7e3d2aa69f0ad7dc0cb78ff9e5ee8fdd819a541a | runtime: only set isExtraInC if there are no Go frames left
mp.isExtraInC is intended to indicate that this M has no Go frames at
all; it is entirely executing in C.
If there was a cgocallback to Go and then a cgocall to C, such that the
leaf frames are C, that is fine. e.g., traceback can handle this fine
with SetCg... | [
{
"path": "src/runtime/cgocall.go",
"patch": "@@ -355,7 +355,9 @@ func cgocallbackg(fn, frame unsafe.Pointer, ctxt uintptr) {\n \tgp.m.incgo = true\n \tunlockOSThread()\n \n-\tif gp.m.isextra {\n+\tif gp.m.isextra && gp.m.ncgo == 0 {\n+\t\t// There are no active cgocalls above this frame (ncgo == 0),\n+\t\t... | 2025-03-14T14:50:25 |
electron/electron | e58f0411d9e8d5ec4f6b48c81c823c294e9c8c3b | e61728beb9f4a1c7ae6c993494f7e7b6b11c02e7 | chore: fixup filenames.libcxx.gni (#37567) | [
{
"path": "filenames.libcxx.gni",
"patch": "@@ -45,6 +45,7 @@ libcxx_headers = [\n \"//buildtools/third_party/libc++/trunk/include/__algorithm/iter_swap.h\",\n \"//buildtools/third_party/libc++/trunk/include/__algorithm/iterator_operations.h\",\n \"//buildtools/third_party/libc++/trunk/include/__algor... | 2023-03-13T17:55:25 |
nodejs/node | 14863e80584e579fd48c55f6373878c821c7ff7e | e74dbfb4bda4cd20d97c3be12187945ccb2d4e1a | test: update tests for OpenSSL 3.0.14
Starting from OpenSSL 3.0.14, 3.1.6, 3.2.2, and 3.3.1, OpenSSL was fixed
to return an error reason string for bad/unknown application protocols.
Update tests to handle both the old `ECONNRESET` error on older versions
of OpenSSL and the new `ERR_SSL_TLSV1_ALERT_NO_APPLICATION_PRO... | [
{
"path": "test/parallel/test-http2-https-fallback.js",
"patch": "@@ -151,7 +151,8 @@ function onSession(session, next) {\n // Incompatible ALPN TLS client\n tls(Object.assign({ port, ALPNProtocols: ['fake'] }, clientOptions))\n .on('error', common.mustCall((err) => {\n- strictE... | 2024-06-10T17:43:36 |
vercel/next.js | 5d9ed230185f4fae4f7374cd9d26d79d572221da | 36930024ff9e0d9d070f4c3e5ba1f865202c4c23 | Stop installing test apps that are skipped anyways (#81043)
In dev test mode, when running with `--prerender-debug`, instead of skipping the test suite, we can split up the test matrix to avoid installing the non-applicable test apps. | [
{
"path": "test/e2e/app-dir/dynamic-io-errors/dynamic-io-errors.platform-dynamic.test.ts",
"patch": "@@ -1,20 +1,30 @@\n-import { nextTestSetup } from 'e2e-utils'\n+import { isNextDev, nextTestSetup } from 'e2e-utils'\n import { assertNoErrorToast } from 'next-test-utils'\n import { getPrerenderOutput } fro... | 2025-06-29T21:22:20 |
facebook/react | f6f042d747be336e272c6b0d205fb15b6e7de8f6 | 8a634bc1c0a3658a23f50662d1c0225ae6212720 | Switch test262 submodule to https url
I had trouble checking out the repo using Sapling because the submodule couldn't
clone properly. I got
> Error: Permission denied (publickey)
In my branch I tested that the https URL format seems to work okay with Sapling. | [
{
"path": "compiler/.gitmodules",
"patch": "@@ -1,4 +1,4 @@\n [submodule \"test262\"]\n \tpath = test262\n-\turl = git@github.com:tc39/test262.git\n+\turl = https://github.com/tc39/test262\n \tshallow = true",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2024-01-12T20:07:24 |
golang/go | 7e3d2aa69f0ad7dc0cb78ff9e5ee8fdd819a541a | a1ddbdd3ef8b739aab53f20d6ed0a61c3474cf12 | encoding/asn1: make sure implicit fields roundtrip
Make sure Marshal and Unmarshal support the same field tags for implicit
encoding choices. In particular this adds support for Unmarshalling
implicitly tagged GeneralizedTime fields. Also add tests and update the
docs.
Fixes #72078
Change-Id: I21465ee4bcd73a7db0d0c3... | [
{
"path": "src/encoding/asn1/asn1.go",
"patch": "@@ -828,9 +828,18 @@ func parseField(v reflect.Value, bytes []byte, initOffset int, params fieldParam\n \t}\n \n \t// Special case for time: UTCTime and GeneralizedTime both map to the\n-\t// Go type time.Time.\n-\tif universalTag == TagUTCTime && t.tag == Ta... | 2025-03-03T17:04:35 |
vercel/next.js | a9fac70b261a4b80e40810a9647825d475d6b7b5 | 2a75a93388ac9a9f1106f2d04a0fcca28d0ff477 | [tests]: fix failing searchparams test (#81013)
- Adds a more reliable heuristic for when the test should start
navigating (after prefetches are initiated) as `waitForIdleNetwork` is
discouraged
- Normalizes RSC request keys to ignore the redirect value from the
middleware case | [
{
"path": "test/e2e/app-dir/searchparams-reuse-loading/searchparams-reuse-loading.test.ts",
"patch": "@@ -178,6 +178,16 @@ describe('searchparams-reuse-loading', () => {\n { resolve: () => Promise<void> }\n >()\n \n+ // Track prefetch requests to know when initial prefetching is don... | 2025-06-27T20:39:32 |
nodejs/node | e74dbfb4bda4cd20d97c3be12187945ccb2d4e1a | 8e6901a703766e79254b8f8ebfe441cb0a0eef5f | lib: fix naming convention of `Symbol`
`node.js` prefix is used for global symbol(`Symbol.for`).
So remove `node.js` prefix from `Symbol` usage.
Refs: https://github.com/nodejs/node/blob/main/doc/contributing/using-symbols.md#symbolforstring
PR-URL: https://github.com/nodejs/node/pull/53387
Reviewed-By: Matteo Collin... | [
{
"path": "lib/internal/event_target.js",
"patch": "@@ -65,7 +65,7 @@ const kWeakHandler = Symbol('kWeak');\n const kResistStopPropagation = Symbol('kResistStopPropagation');\n \n const kHybridDispatch = SymbolFor('nodejs.internal.kHybridDispatch');\n-const kRemoveWeakListenerHelper = Symbol('nodejs.interna... | 2024-06-10T14:56:14 |
facebook/react | 8a634bc1c0a3658a23f50662d1c0225ae6212720 | c80f0f022c135704e955d36516bf81d071f40ba6 | Add frozen reason for props and hook arguments
Add frozen reason for props and hook arguments
Improves the error message when mutating props or hook arguments.
Previously, this would print a generic error about mutating global variables. | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/HIR.ts",
"patch": "@@ -982,6 +982,11 @@ export enum ValueReason {\n */\n Context = \"context\",\n \n+ /**\n+ * Props of a component or arguments of a hook.\n+ */\n+ ReactiveFunctionArgument = \"reactive-function-argument\",\n+\n Oth... | 2024-01-12T19:51:59 |
golang/go | a1ddbdd3ef8b739aab53f20d6ed0a61c3474cf12 | 80f068928fd957935df3d61da319331e76a73b49 | cmd/compile: don't move nilCheck operations during tighten
Nil checks need to stay in their original blocks. They cannot
be moved to a following conditionally-executed block.
Fixes #72860
Change-Id: Ic2d66cdf030357d91f8a716a004152ba4c016f77
Reviewed-on: https://go-review.googlesource.com/c/go/+/657715
Reviewed-by: C... | [
{
"path": "src/cmd/compile/internal/ssa/tighten.go",
"patch": "@@ -43,6 +43,10 @@ func tighten(f *Func) {\n \t\t\t\t// SelectN is typically, ultimately, a register.\n \t\t\t\tcontinue\n \t\t\t}\n+\t\t\tif opcodeTable[v.Op].nilCheck {\n+\t\t\t\t// Nil checks need to stay in their block. See issue 72860.\n+\t... | 2025-03-13T23:15:15 |
electron/electron | feaf18e371e04c7c14bc6c675e62db43823755fd | 8ee58e18fd31a7d33ccab78820d61bab9ec1ec69 | chore: bump chromium to 113.0.5636.0 (main) (#37130)
* chore: bump chromium in DEPS to 112.0.5576.0
* 4211172: Use the Mac ImageTransportSurface on iOS.
https://chromium-review.googlesource.com/c/chromium/src/+/4211172
* 4191759: Reuse PrintBackend process from query for printing
https://chromium-review.go... | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -54,7 +54,7 @@ executors:\n type: enum\n enum: [\"macos.x86.medium.gen2\", \"large\"]\n macos:\n- xcode: 13.3.0\n+ xcode: 14.0.0\n resource_class: << parameters.size >>\n \n # Electron Runners\n@@ -434,10 +434,17 @@ step... | 2023-03-10T16:07:42 |
nodejs/node | 8e6901a703766e79254b8f8ebfe441cb0a0eef5f | 2dea6a4520b8f235465f638e25ed89cedfc8bf81 | stream: make sure _destroy is called
PR-URL: https://github.com/nodejs/node/pull/53213
Fixes: https://github.com/nodejs/node/issues/51987
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> | [
{
"path": "lib/internal/streams/compose.js",
"patch": "@@ -238,13 +238,14 @@ module.exports = function compose(...streams) {\n ondrain = null;\n onfinish = null;\n \n+ if (isNodeStream(tail)) {\n+ destroyer(tail, err);\n+ }\n+\n if (onclose === null) {\n callback(err);\n } e... | 2024-06-10T14:56:04 |
facebook/react | 0ac3ea471fbcb7d79bc7d36179e960c72c779e76 | 6639ed3b3a44f7736beb629144a7996145008f09 | Use getComponentNameFromType for debug info for the key warning (#27930)
If this is a client reference we shouldn't dot into it, which would
throw in the proxy.
Interestingly our client references don't really have a `name`
associated with them for debug information so a component type doesn't
show up in error l... | [
{
"path": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -1009,6 +1009,22 @@ describe('ReactFlight', () => {\n ReactNoopFlightClient.read(transport);\n });\n \n+ it('should warn in DEV a child is missing keys', () => {\n+ function ParentClient({children}) {\n+ return ... | 2024-01-11T22:24:26 |
vercel/next.js | b91297d9c8d2bad4e93043628d0dab0e87473e5f | 186913a23a343109e01e4fd1b34c2e4fd57e7c90 | Use snapshots to verify dynamic validation errors in dev mode (#80992)
Follow-up to #80946, asserting on the collapsed redbox errors in dev mode.
> [!NOTE]
> This PR is best reviewed with hidden whitespace changes. | [
{
"path": "test/e2e/app-dir/dynamic-io-errors/dynamic-io-errors.platform-dynamic.test.ts",
"patch": "@@ -1,119 +1,154 @@\n import { nextTestSetup } from 'e2e-utils'\n+import { assertNoErrorToast } from 'next-test-utils'\n import { getPrerenderOutput } from './utils'\n \n describe.each([\n- { inDebugMode: t... | 2025-06-27T15:35:11 |
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.