repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
vercel/next.js | 34dd8d42fc06371831e2ed3f578e08eff3710d90 | 62bc243bfa06cd69254e8ac190342e5884ca694c | [turbopack] fix build of empty entries of pages (#84873) | [
{
"path": "packages/next/src/build/entries.ts",
"patch": "@@ -552,6 +552,12 @@ export async function createPagesMapping({\n // added or removed.\n const root = isDev && pagesDir ? PAGES_DIR_ALIAS : 'next/dist/pages'\n \n+ // If there are no user pages routes, treat this as app-dir-only mode... | 2025-10-29T02:36:43 |
rust-lang/rust | f225909fc6722f187f5740b94cbd7b3037d0c534 | 45efcf5606e59e091113a4239717e8fe1a7f98c6 | fix: Stale diagnostics when a custom check command is configured
We can't use the flycheck scope, because that value varies depending
on how the flycheck was triggered. See also
rust-lang/rust-analyzer#21571, which was reverted due to issues with
scope.
Instead, treat empty diagnostics as a flycheck for the entire
wo... | [
{
"path": "src/tools/rust-analyzer/crates/rust-analyzer/src/flycheck.rs",
"patch": "@@ -673,27 +673,31 @@ impl FlycheckActor {\n if self.diagnostics_received == DiagnosticsReceived::NotYet {\n tracing::trace!(flycheck_id = self.id, \"clearing diagnostics\");\n ... | 2026-03-03T13:29:28 |
facebook/react | 9d082b550086e6be5f54872d518efa14303491db | d2413bf377e7f73661b0700aeb95d07fb2911efc | [Flight] model halted references explicitly (#30731)
using infinitely suspending promises isn't right because this will parse
as a promise which is only appropriate if the value we're halting at is
a promise. Instead we need to have a special marker type that says this
reference will never resolve. Additionally fli... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -46,6 +46,7 @@ import {\n enableRefAsProp,\n enableFlightReadableStream,\n enableOwnerStacks,\n+ enableHalt,\n } from 'shared/ReactFeatureFlags';\n \n import {\n@@ -1986,6 +1987,20 @@ function resolvePostponeDev(\n }\n }\n \n+... | 2024-08-19T18:24:41 |
nodejs/node | d19437d859e4f80cd2b61d95c9a9e9924419c3bf | 71f8c3be1fa6f92128176d2cc182b03878b209d0 | doc: fix linter errors
PR-URL: https://github.com/nodejs/node/pull/57987
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "doc/api/async_context.md",
"patch": "@@ -172,7 +172,7 @@ added:\n - v19.8.0\n - v18.16.0\n changes:\n- - version: \n+ - version:\n - v23.11.0\n - v22.15.0\n pr-url: https://github.com/nodejs/node/pull/57510",
"additions": 1,
"deletions": 1,
"language": "Markdown"
},
{... | 2025-04-23T08:59:33 |
golang/go | 38b26f29f1f97d24afc852b9f4eee829341ee682 | 003b5ce1bc15cf265e74ba1ec4eb7cf801e49986 | cmd/compile: remove stores to unread parameters
Currently, we remove stores to local variables that are not read.
We don't do that for arguments. But arguments and locals are
essentially the same. Arguments are passed by value, and are not
expected to be read in the caller's frame. So we can remove the
writes to them ... | [
{
"path": "src/cmd/compile/internal/ssa/deadstore.go",
"patch": "@@ -7,6 +7,7 @@ package ssa\n import (\n \t\"cmd/compile/internal/ir\"\n \t\"cmd/compile/internal/types\"\n+\t\"cmd/internal/obj\"\n )\n \n // dse does dead-store elimination on the Function.\n@@ -213,7 +214,7 @@ func elimDeadAutosGeneric(f *F... | 2025-09-22T14:57:29 |
rust-lang/rust | ae909778390ad9af2f919e171a576e0f9211d083 | 45efcf5606e59e091113a4239717e8fe1a7f98c6 | fix: Update VFS when a watched file is deleted
When rust-analyzer handles file watching, it previously wouldn't
update the VFS on file deletion. We would discard events where
fs::metadata() isn't available, and we never have metadata for deleted
files.
See also the discussion in rust-lang/rust-analyzer#19907. | [
{
"path": "src/tools/rust-analyzer/crates/vfs-notify/src/lib.rs",
"patch": "@@ -208,6 +208,22 @@ impl NotifyActor {\n )\n })\n .filter_map(|path| -> Option<(AbsPathBuf, Option<Vec<u8>>)> {\n+ ... | 2026-03-06T15:43:14 |
vercel/next.js | 62590c408102967f5fe7a2a6545618f46bae7fcb | d35c7366b874750832af27c8d191bba5a54b820e | Update E2E tests workflow (#85485)
Adds an option to allow continuing tests on error to find all failures
in single run also marks jobs as failed if any test failed while
running. | [
{
"path": ".github/workflows/integration_tests_reusable.yml",
"patch": "@@ -91,7 +91,7 @@ jobs:\n afterBuild: |\n # e2e and ${{ inputs.test_type }} tests with `node run-tests.js`\n \n- export NEXT_TEST_CONTINUE_ON_ERROR=TRUE\n+ export NEXT_TEST_CONTINUE_ON_ERROR=true\n ex... | 2025-10-29T00:35:14 |
facebook/react | d2413bf377e7f73661b0700aeb95d07fb2911efc | 6ebfd5b0829c3e7a977ef4d9a0bd96436c681251 | [compiler] Validate against JSX in try statements
Per comments on the new validation pass, this disallows creating JSX (expression/fragment) within a try statement. Developers sometimes use this pattern thinking that they can catch errors during the rendering of the element, without realizing that rendering is lazy. T... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Pipeline.ts",
"patch": "@@ -105,6 +105,7 @@ import {outlineFunctions} from '../Optimization/OutlineFunctions';\n import {propagatePhiTypes} from '../TypeInference/PropagatePhiTypes';\n import {lowerContextAccess} from '../Optimization/L... | 2024-08-17T00:05:29 |
electron/electron | bcbc8d3bb2e8705bc6b36d4479f18e25648ad8b1 | aa40e817c853a5e71ab59ce2cb29b8ee258c0d59 | chore: bump chromium to 131.0.6762.0 (main) (#44117)
* chore: bump chromium in DEPS to 131.0.6756.0
* chore: update disable_hidden.patch
no code changes; just handling upstream context shear
https://chromium-review.googlesource.com/c/chromium/src/+/5887019
* chore: update feat_expose_raw_response_headers_f... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '131.0.6754.0',\n+ '131.0.6762.0',\n 'node_version':\n 'v20.18.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "filena... | 2024-10-07T23:06:47 |
rust-lang/rust | ae25efb4ac3db8dbec8dc9f4d41f427f47600175 | dbb159a432940d3788b83f5fbbbe9274d0be25d7 | Fix panic by setting the span before it is actually needed | [
{
"path": "clippy_utils/src/diagnostics.rs",
"patch": "@@ -250,9 +250,11 @@ where\n }\n }\n \n+ let sp = sp.into();\n #[expect(clippy::disallowed_methods)]\n- cx.emit_span_lint(lint, sp, ClippyDiag(|diag: &mut Diag<'_, ()>| {\n+ cx.emit_span_lint(lint, sp.clone(), ClippyDiag(|diag: ... | 2026-03-06T15:38:53 |
golang/go | 003b5ce1bc15cf265e74ba1ec4eb7cf801e49986 | d91148c7a8b2d774ddea5c66c170d24937195df5 | cmd/compile: fix SIMD const rematerialization condition
This CL fixes a condition for the previous fix CL 704056.
Cherry-picked from the dev.simd branch. This CL is not
necessarily SIMD specific. Apply early to reduce risk. Test is
SIMD specific so not included for now.
Change-Id: I1f1f8c6f72870403cb3dff14755c43385d... | [
{
"path": "src/cmd/compile/internal/ssa/regalloc.go",
"patch": "@@ -2561,22 +2561,25 @@ func (e *edgeState) processDest(loc Location, vid ID, splice **Value, pos src.XP\n \t\t\te.s.f.Fatalf(\"can't find source for %s->%s: %s\\n\", e.p, e.b, v.LongString())\n \t\t}\n \t\tif dstReg {\n-\t\t\t// Handle incompa... | 2025-09-19T18:38:25 |
facebook/react | 6ebfd5b0829c3e7a977ef4d9a0bd96436c681251 | 7954db9398b9afa962167577a6c6940be3856c39 | [Flight] Source Map Server Actions to their Server Location (#30741)
This uses a similar technique to what we use to generate fake stack
frames for server components. This generates an eval:ed wrapper function
around the Server Reference proxy we create on the client. This wrapper
function gets the original `name` ... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -13,6 +13,7 @@ import type {\n ReactComponentInfo,\n ReactAsyncInfo,\n ReactStackTrace,\n+ ReactCallSite,\n } from 'shared/ReactTypes';\n import type {LazyComponent} from 'react/src/ReactLazy';\n \n@@ -59,7 +60,7 @@ import {\n ... | 2024-08-18T16:31:45 |
nodejs/node | 71f8c3be1fa6f92128176d2cc182b03878b209d0 | 8e7f32f968a723bc8811e9f146876a1061f7941b | 2025-04-23, Version 22.15.0 'Jod' (LTS)
Notable changes:
assert:
* (SEMVER-MINOR) implement partial error comparison (Ruben Bridgewater) https://github.com/nodejs/node/pull/57370
* (SEMVER-MINOR) improve partialDeepStrictEqual (Ruben Bridgewater) https://github.com/nodejs/node/pull/57370
cli:
* (SEMVER-MINOR) a... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -54,7 +54,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V23.md#23.0.0\">23.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.14.0\">22.14.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.15.0\">22.15.0... | 2025-04-11T20:38:28 |
electron/electron | ab1488a1be78f46d222519e90292c2269e6cfc82 | 122685194a5642b73367e823aadf3942b0290099 | chore: bump chromium to 131.0.6754.0 (main) (#44110)
* chore: bump chromium in DEPS to 131.0.6754.0
* chore: update gin_enable_disable_v8_platform.patch
fix minor context shear
Xref: https://chromium-review.googlesource.com/c/chromium/src/+/5901115
* chore: e patches all
---------
Co-authored-by: ele... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '131.0.6752.0',\n+ '131.0.6754.0',\n 'node_version':\n 'v20.17.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2024-10-03T17:35:03 |
rust-lang/rust | e01a7e7ba1a8adb7bb3477838d6f1b4b57d9761a | 8d96e603b1c3e65bba9e944616de6260e7e40781 | Fix panic by setting the span before it is actually needed | [
{
"path": "src/tools/clippy/clippy_utils/src/diagnostics.rs",
"patch": "@@ -250,9 +250,11 @@ where\n }\n }\n \n+ let sp = sp.into();\n #[expect(clippy::disallowed_methods)]\n- cx.emit_span_lint(lint, sp, ClippyDiag(|diag: &mut Diag<'_, ()>| {\n+ cx.emit_span_lint(lint, sp.clone(), C... | 2026-03-06T15:38:53 |
facebook/react | 7954db9398b9afa962167577a6c6940be3856c39 | 177b2419b2d8a3d14c3f3304bb7e300985d6f377 | [Fizz] handle throwing after abort during render (#30730)
It is possible to throw after aborting during a render and we were not
properly tracking this. We use an AbortSigil to mark whether a rendering
task needs to abort but the throw interrupts that and we end up handling
an error on the error pathway instead.
... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -8377,6 +8377,48 @@ describe('ReactDOMFizzServer', () => {\n );\n });\n \n+ it('can support throwing after aborting during a render', async () => {\n+ function App() {\n+ return (\n+ <div>\n+ ... | 2024-08-17T01:29:18 |
golang/go | ad3db2562edf23cb4fb9a909ea11d57b65e304fb | 18cd4a1fc7d5387ae91ffc23328e4fc81f93681d | cmd/compile: handle rematerialized op for incompatible reg constraint
This CL fixes an issue raised by contributor dominikh@.
Cherry-picked from the dev.simd branch. This CL is not
necessarily SIMD specific. Apply early to reduce risk. Test is
SIMD specific so not included for now.
Change-Id: I941b330a6ba6f6c120c699... | [
{
"path": "src/cmd/compile/internal/ssa/regalloc.go",
"patch": "@@ -2561,7 +2561,26 @@ func (e *edgeState) processDest(loc Location, vid ID, splice **Value, pos src.XP\n \t\t\te.s.f.Fatalf(\"can't find source for %s->%s: %s\\n\", e.p, e.b, v.LongString())\n \t\t}\n \t\tif dstReg {\n-\t\t\tx = v.copyInto(e.p... | 2025-09-16T03:27:41 |
nodejs/node | 6bf7fd7f4ecbf74e38e4e02ffbeb452de068921f | d74c4987351252f39c18305dd53dbf047639017f | crypto: fix cross-realm check of `ArrayBuffer`
This patch modifies the `isNonSharedArrayBuffer` function in the WebIDL
implementation for the SubtleCrypto API to properly handle `ArrayBuffer`
instances created in different JavaScript realms.
Before this fix, when a `TypedArray.buffer` from a different realm
(e.g., fr... | [
{
"path": "lib/internal/crypto/webidl.js",
"patch": "@@ -12,7 +12,6 @@\n \n const {\n ArrayBufferIsView,\n- ArrayBufferPrototype,\n ArrayPrototypeIncludes,\n ArrayPrototypePush,\n ArrayPrototypeSort,\n@@ -48,6 +47,7 @@ const {\n validateMaxBufferLength,\n kNamedCurveAliases,\n } = require('inte... | 2025-04-22T13:01:21 |
rust-lang/rust | 923582ca0833798fe6943afc9cde35b49ba16ffd | 835c745a9ee60493a23fc596e949b20a604ba0e2 | fix: add ident_pat qualifier to fully fn param
- Do not show commas on label
Example
---
```rust
fn f(foo: (), bar: u32) {}
fn g(foo: (), mut ba$0)
```
**Before this PR**
```rust
fn f(foo: (), bar: u32) {}
fn g(foo: (), bar: u32)
```
**After this PR**
```rust
fn f(foo: (), bar: u32) {}
fn g(foo: (), mut bar: u32)... | [
{
"path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/fn_param.rs",
"patch": "@@ -30,14 +30,27 @@ pub(crate) fn complete_fn_param(\n _ => return None,\n };\n \n+ let qualifier = param_qualifier(param);\n let comma_wrapper = comma_wrapper(ctx);\n let mut add_new_item... | 2026-03-06T12:20:12 |
facebook/react | 13ddf1084b4304a60059e3b96fc3c039d23e9432 | a58276cbc3a70ba99572eeb9c2f7b4a54ca44b1e | [DevTools] Find owners from the parent path that matches the Fiber or ReactComponentInfo (#30717)
This enables finding Server Components on the owner path. Server
Components aren't stateful so there's not actually one specific owner
that it necessarily matches. So it can't be a global look up. E.g. the
same Server ... | [
{
"path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js",
"patch": "@@ -2893,26 +2893,29 @@ describe('InspectedElement', () => {\n `);\n \n const inspectedElement = await inspectElementAtIndex(4);\n- expect(inspectedElement.owners).toMatchInlineSnapshot(`\n- [\n- ... | 2024-08-16T23:52:11 |
golang/go | 1caa95acfa9d516eb3bc26292b5601bea25a4e79 | ec70d1902355f10e0ab4788334b80db11ab69785 | cmd/compile: enhance prove to deal with double-offset IsInBounds checks
For chunked iterations (useful for, but not exclusive to,
SIMD calculations) it is common to see the combination of
```
for ; i <= len(m)-4; i += 4 {
```
and
```
r0, r1, r2, r3 := m[i], m[i+1], m[i+2], m[i+3]
``
Prove did not handle the case of l... | [
{
"path": "src/cmd/compile/internal/ssa/prove.go",
"patch": "@@ -2174,6 +2174,65 @@ func unsignedSubUnderflows(a, b uint64) bool {\n \treturn a < b\n }\n \n+// checkForChunkedIndexBounds looks for index expressions of the form\n+// A[i+delta] where delta < K and i <= len(A)-K. That is, this is a chunked\n+... | 2025-09-03T17:09:32 |
nodejs/node | a365da6b0cf1dd930175ae8cfff312a6d861858a | 085b0281d9903c374e00b7e3d4dd97a2275fc9ee | meta: fix subsystem in commit title
"config" is not recognized as a valid subsystem by
`core-validate-commit@4.1.0`.
Refs: https://github.com/nodejs/node/commit/478a2e656d803970e93c
PR-URL: https://github.com/nodejs/node/pull/57945
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Jake Yuesong Li <... | [
{
"path": ".github/workflows/tools.yml",
"patch": "@@ -237,7 +237,7 @@ jobs:\n run: |\n node ./tools/dep_updaters/update-root-certs.mjs -v -f \"$GITHUB_ENV\"\n - id: simdjson\n- subsystem: deps, config\n+ subsystem: deps\n label: dependen... | 2025-04-22T06:43:48 |
electron/electron | 122685194a5642b73367e823aadf3942b0290099 | 684e345f6864164e4aef6562d63c3468dbe87799 | build: add import/order eslint rule (#44085)
* build: add import/order eslint rule
* chore: run lint:js --fix | [
{
"path": ".eslintrc.json",
"patch": "@@ -19,7 +19,40 @@\n \"prefer-const\": [\"error\", {\n \"destructuring\": \"all\"\n }],\n- \"n/no-callback-literal\": \"off\"\n+ \"n/no-callback-literal\": \"off\",\n+ \"import/newline-after-import\": \"error\",\n+ \"import/order\": [\"error\",... | 2024-10-03T02:10:44 |
rust-lang/rust | 2d2c5521a2e2c592e587657dbe6277f19b56042d | e316da9660a6a2d28fc0d93a915056705becf5de | Fix another unused feature warning | [
{
"path": "example/neon.rs",
"patch": "@@ -1,6 +1,6 @@\n // Most of these tests are copied from https://github.com/japaric/stdsimd/blob/0f4413d01c4f0c3ffbc5a69e9a37fbc7235b31a9/coresimd/arm/neon.rs\n \n-#![feature(portable_simd)]\n+#![cfg_attr(target_arch = \"aarch64\", feature(portable_simd))]\n \n #[cfg(t... | 2026-03-06T15:07:59 |
vercel/next.js | d35c7366b874750832af27c8d191bba5a54b820e | 2757ae5f7370f1801abd382a4097d56cd87857d3 | fix: staleTimes.static should consistently enforce a 30s minimum (#85479)
When the tree response sends back a static staleTime, we had handling to
ensure that it was at minimum 30s, because anything less would mean we'd
be discarding static cache entries more frequently than necessary.
Currently a value of 0 would res... | [
{
"path": "packages/next/src/client/components/router-reducer/reducers/navigate-reducer.ts",
"patch": "@@ -15,15 +15,17 @@ import {\n navigate as navigateUsingSegmentCache,\n NavigationResultTag,\n type NavigationResult,\n+ getStaleTimeMs,\n } from '../../segment-cache'\n \n // These values are set b... | 2025-10-28T23:51:25 |
facebook/react | 34edf3b68471e87d4a92f98a10f7c6c727c948f8 | e9a869fbb59a634fb9a39c9480ffa34970f35858 | [compiler] Surface unused opt out directives in eslint
This PR updates the eslint plugin to report unused opt out directives.
One of the downsides of the opt out directive is that it opts the
component/hook out of compilation forever, even if the underlying issue
was fixed in product code or fixed in the compiler.
gh... | [
{
"path": "compiler/packages/eslint-plugin-react-compiler/__tests__/ReactCompilerRule-test.ts",
"patch": "@@ -215,6 +215,65 @@ const tests: CompilerTestCases = {\n },\n ],\n },\n+ {\n+ name: \"'use no forget' does not disable eslint rule\",\n+ code: normalizeIndent`\n+ ... | 2024-08-16T21:39:51 |
golang/go | 10e796884905d23ab2419cc158769e8fdc73de4e | ab043953cbd6e3cd262548710f35f05924aa8f32 | cmd/compile: accounts rematerialize ops's output reginfo
This CL implements the check for rematerializeable value's output
regspec at its remateralization site. It has some potential problems,
please see the TODO in regalloc.go.
Fixes #70451.
Cherry-picked from the dev.simd branch. This CL is not
necessarily SIMD sp... | [
{
"path": "src/cmd/compile/internal/ssa/func.go",
"patch": "@@ -102,6 +102,7 @@ func (c *Config) NewFunc(fe Frontend, cache *Cache) *Func {\n \t\tNamedValues: make(map[LocalSlot][]*Value),\n \t\tCanonicalLocalSlots: make(map[LocalSlot]*LocalSlot),\n \t\tCanonicalLocalSplits: make(map[LocalSlotSpli... | 2025-08-12T16:53:44 |
rust-lang/rust | e316da9660a6a2d28fc0d93a915056705becf5de | 263613601f446208ad59c6c8ae0644b64b6638a6 | Fix unused feature warning | [
{
"path": "example/std_example.rs",
"patch": "@@ -1,7 +1,6 @@\n #![feature(\n core_intrinsics,\n coroutines,\n- stmt_expr_attributes,\n coroutine_trait,\n repr_simd,\n tuple_trait,",
"additions": 0,
"deletions": 1,
"language": "Rust"
}
] | 2026-03-06T14:16:48 |
electron/electron | 684e345f6864164e4aef6562d63c3468dbe87799 | 9df092e034f25cdbe035f942ec4adc46f1e85190 | fix: deprecated API and -Wunsafe-buffer-usage warnings in AsarFileValidator (#44068)
* refactor: const correctness
* refactor: extract-method AsarFileValidator::EnsureHashExists()
* refactor: replace use of deprecated crypto API
https://crbug.com/364687923
* refactor: use span API in AsarFileValidator::OnR... | [
{
"path": "shell/browser/net/asar/asar_file_validator.cc",
"patch": "@@ -5,10 +5,12 @@\n #include \"shell/browser/net/asar/asar_file_validator.h\"\n \n #include <algorithm>\n+#include <array>\n #include <string>\n #include <utility>\n #include <vector>\n \n+#include \"base/containers/span.h\"\n #include \"b... | 2024-10-02T20:44:28 |
nodejs/node | 64d9b7c5f836628b457b62f7918e1cf6a2df180a | 99dc2d376a529ac71d9dbd0662d1593c3a8635e1 | util: fix parseEnv handling of invalid lines
PR-URL: https://github.com/nodejs/node/pull/57798
Fixes: https://github.com/nodejs/node/issues/56775
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> | [
{
"path": "src/node_dotenv.cc",
"patch": "@@ -102,8 +102,11 @@ MaybeLocal<Object> Dotenv::ToObject(Environment* env) const {\n return scope.Escape(result);\n }\n \n-// Removes space characters (spaces, tabs and newlines) from\n-// the start and end of a given input string\n+// Removes leading and trailing... | 2025-04-21T06:46:44 |
vercel/next.js | d8cde2a57d586bfe7db588d8bfe4ff3d6830a4a7 | afbdae65c073ab79f39e260e605103a149407061 | fix: build CLI output not displaying Proxy (Middleware) when nodejs runtime (#85403) | [
{
"path": "packages/next/src/build/index.ts",
"patch": "@@ -4268,6 +4268,7 @@ export default async function build(\n pageExtensions: config.pageExtensions,\n buildManifest,\n middlewareManifest,\n+ functionsConfigManifest,\n hasGSPAndRevalidateZero,\n ... | 2025-10-28T23:17:09 |
facebook/react | e9a869fbb59a634fb9a39c9480ffa34970f35858 | 7b41cdc093c7a28a089e2c402cbe98cac68de509 | [compiler] Run compiler pipeline on 'use no forget'
This PR updates the babel plugin to continue the compilation pipeline as
normal on components/hooks that have been opted out using a directive.
Instead, we no longer emit the compiled function when the directive is
present.
Previously, we would skip over the entire ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Entrypoint/Options.ts",
"patch": "@@ -165,6 +165,12 @@ export type LoggerEvent =\n fnLoc: t.SourceLocation | null;\n detail: Omit<Omit<CompilerErrorDetailOptions, 'severity'>, 'suggestions'>;\n }\n+ | {\n+ kind: 'CompileSkip'... | 2024-08-16T21:39:50 |
golang/go | ebb72bef44a0e125c7f900a04af6538e3c39dfc6 | c54dc1418b6fbff4176aaaffcc9fab6f1ad631a6 | cmd/compile: don't treat devel compiler as a released compiler
The compiler has a logic to print different messages on internal
compiler error depending on whether this is a released version of
Go. It hides the panic stack trace if it is a released version. It
does this by checking the version and see if it has a "go"... | [
{
"path": "src/cmd/compile/internal/base/print.go",
"patch": "@@ -220,7 +220,7 @@ func FatalfAt(pos src.XPos, format string, args ...interface{}) {\n \t\tfmt.Printf(\"\\n\")\n \n \t\t// If this is a released compiler version, ask for a bug report.\n-\t\tif Debug.Panic == 0 && strings.HasPrefix(buildcfg.Vers... | 2025-06-20T16:02:18 |
rust-lang/rust | ddb729abdc8fb0bc47e4dcb95b83cef050ef6272 | f8262c13446ac50a7361cd18ee3eeb93c5d06d99 | fix: Fix invalid `PartialEq` impl for `EditionedFileIdData`
This broke the contract of `HashEqLike`, causing interning to return different IDs | [
{
"path": "src/tools/rust-analyzer/crates/base-db/src/editioned_file_id.rs",
"patch": "@@ -20,7 +20,7 @@ const _: () = {\n use zalsa_::interned as zalsa_struct_;\n type Configuration_ = EditionedFileId;\n \n- #[derive(Debug, Clone, PartialEq, Eq)]\n+ #[derive(Debug, Clone, Eq)]\n pub struc... | 2026-03-06T12:38:25 |
nodejs/node | e773e09c3f55955b0d47f49f7a869a764202558d | 422529a2e3f73f7879dec8dcacd60edc520a5471 | src: fixup errorhandling more in various places
PR-URL: https://github.com/nodejs/node/pull/57852
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> | [
{
"path": "src/api/encoding.cc",
"patch": "@@ -144,7 +144,7 @@ MaybeLocal<Value> TryEncode(Isolate* isolate,\n }\n \n MaybeLocal<Value> TryEncode(Isolate* isolate, const uint16_t* buf, size_t len) {\n- return StringBytes::Encode(isolate, buf, len).ToLocalChecked();\n+ return StringBytes::Encode(isolate, b... | 2025-04-21T03:01:30 |
electron/electron | 9df092e034f25cdbe035f942ec4adc46f1e85190 | 93dd9fc17be47dab6840e801d2d9560e24d1281b | fix: remove use of deprecated API base::Hash() (#44076) | [
{
"path": "shell/browser/notifications/win/windows_toast_notification.cc",
"patch": "@@ -70,8 +70,8 @@ void DebugLog(std::string_view log_msg) {\n LOG(INFO) << log_msg;\n }\n \n-std::wstring GetTag(const std::string& notification_id) {\n- return base::NumberToWString(base::Hash(notification_id));\n+std... | 2024-10-02T20:36:06 |
vercel/next.js | 94e5181856a6b3137eef02ec1329ef902f27c2c8 | 1b2d42d67e62b30ef84bcc32744a30e81c834b25 | fix: Rspack throw error when using ForceCompleteRuntimePlugin (#85221)
TODO: Rspack currently does not support the hooks and chunk methods
required by `ForceCompleteRuntimePlugin`.
Temporarily disable `ForceCompleteRuntimePlugin` when using Rspack as
the bundler.
This plugin ensures complete webpack runtime is avail... | [
{
"path": "packages/next/src/build/webpack-config.ts",
"patch": "@@ -1965,7 +1965,9 @@ export default async function getBaseWebpackConfig(\n plugins: [\n // In prod Webpack will already have a runtime for all reachable chunks.\n // During dev, it will update the runtime as chunks come in whi... | 2025-10-28T18:51:19 |
facebook/react | 7b41cdc093c7a28a089e2c402cbe98cac68de509 | 1eaccd8285f0bd40407705a9356391a171adf3b1 | [Flight][Static] Implement halting a prerender behind enableHalt (#30705)
enableHalt turns on a mode for flight prerenders where aborts are
treated like infinitely stalled outcomes while still completing the
prerender. For regular tasks we simply serialize the slot as a promise
that never settles. For ReadableStrea... | [
{
"path": "packages/react-server-dom-esm/src/server/ReactFlightDOMServerNode.js",
"patch": "@@ -20,12 +20,15 @@ import type {Thenable} from 'shared/ReactTypes';\n \n import {Readable} from 'stream';\n \n+import {enableHalt} from 'shared/ReactFeatureFlags';\n+\n import {\n createRequest,\n startWork,\n ... | 2024-08-16T21:21:57 |
rust-lang/rust | ed12fe81b07cf7c2371306a3400bccc9e2b117e8 | ca2178dd9fe7f036537414def4593258ca4adb7b | fix ICE in offset_of! error recovery | [
{
"path": "compiler/rustc_mir_build/src/thir/cx/expr.rs",
"patch": "@@ -806,6 +806,10 @@ impl<'tcx> ThirBuildCx<'tcx> {\n lit: ScalarInt::try_from_uint(val, Size::from_bits(32)).unwrap(),\n user_ty: None,\n };\n+ let mk_usize_kind = |val... | 2026-03-06T13:19:23 |
nodejs/node | 2e0ec72f54afc3afdf8a27418e75398a8adcc308 | 7102ea1559eb7e84d39bcc4057db9ea09befe090 | sqlite: add getter to detect transactions
This commit adds an isTransaction getter to the DatabaseSync
class for determining if the database is currently within a
transaction.
Fixes: https://github.com/nodejs/node/issues/57922
PR-URL: https://github.com/nodejs/node/pull/57925
Reviewed-By: Edy Silva <edigleyssonsilva@... | [
{
"path": "doc/api/sqlite.md",
"patch": "@@ -291,6 +291,15 @@ added: v23.11.0\n \n * {boolean} Whether the database is currently open or not.\n \n+### `database.isTransaction`\n+\n+<!-- YAML\n+added: REPLACEME\n+-->\n+\n+* {boolean} Whether the database is currently within a transaction. This method\n+ is ... | 2025-04-20T15:57:42 |
facebook/react | 1016174af520fc89bafab7189405fce8ff3a9bb5 | 8a531601115927400aa04d26a5f1800d159e1e7e | [compiler] Reposition ref-in-render errors to the read location of .current
Summary:
Since we want to make ref-in-render errors enabled by default, we should position those errors at the location of the read. Not only will this be a better experience, but it also aligns the behavior of Forget and Flow.
This PR also c... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccesInRender.ts",
"patch": "@@ -15,7 +15,6 @@ import {\n isRefValueType,\n isUseRefType,\n } from '../HIR';\n-import {printPlace} from '../HIR/PrintHIR';\n import {\n eachInstructionValueOperand,\n eachTerminalOper... | 2024-08-16T17:27:13 |
electron/electron | 5b34138db8b338d6192d17f74fa9119d0667b245 | 1fc2064f6a2f93ea2f2ceae42b73962134c9af8d | build: fix relative file read during npm publish (#44088) | [
{
"path": "script/release/bin/publish-to-npm.ts",
"patch": "@@ -12,7 +12,7 @@ import { getAssetContents } from '../get-asset';\n import { createGitHubTokenStrategy } from '../github-token';\n import { ELECTRON_ORG, ELECTRON_REPO, ElectronReleaseRepo, NIGHTLY_REPO } from '../types';\n \n-const rootPackageJso... | 2024-10-02T00:09:57 |
vercel/next.js | a986e1731d60ed02749ab0fb64fe581dc35e04a5 | 406721415df918d4eda14a54d1866569aeb5765b | Fix crash when suspending in Components using `useActionQueue` (#85459) | [
{
"path": "packages/next/src/client/components/use-action-queue.ts",
"patch": "@@ -22,6 +22,12 @@ export function dispatchAppRouterAction(action: ReducerActions) {\n dispatch(action)\n }\n \n+const __DEV__ = process.env.NODE_ENV !== 'production'\n+const promisesWithDebugInfo: WeakMap<\n+ Promise<AppRoute... | 2025-10-28T17:00:50 |
facebook/react | 8a531601115927400aa04d26a5f1800d159e1e7e | 7468ac530e73992f28169ac69e18395a75edfc47 | [compiler] Don't error on ref-in-render on StartMemoize
Test Plan:
Fixes the previous issue: ref enforcement ignores memoization marker instructions
ghstack-source-id: f35d6a611c5e740e9ea354ec80c3d7cdb3c0d658
Pull Request resolved: https://github.com/facebook/react/pull/30715 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoRefAccesInRender.ts",
"patch": "@@ -185,6 +185,9 @@ function validateNoRefAccessInRenderImpl(\n }\n break;\n }\n+ case 'StartMemoize':\n+ case 'FinishMemoize':\n+ break;\n ... | 2024-08-16T17:27:13 |
nodejs/node | 7102ea1559eb7e84d39bcc4057db9ea09befe090 | 25842c5e35efb45df169e591c775a3c4f853556d | os: fix netmask format check condition in getCIDR function
Modified to check the format of the netmask instead
of just checking that each part of the netmask is even
PR-URL: https://github.com/nodejs/node/pull/57324
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "lib/internal/util.js",
"patch": "@@ -8,6 +8,7 @@ const {\n Error,\n ErrorCaptureStackTrace,\n FunctionPrototypeCall,\n+ NumberParseInt,\n ObjectDefineProperties,\n ObjectDefineProperty,\n ObjectFreeze,\n@@ -33,7 +34,9 @@ const {\n SafeSet,\n SafeWeakMap,\n SafeWeakRef,\n+ Stri... | 2025-04-20T05:54:48 |
electron/electron | 15c8759ee0620fa373b82ae468cda03b77568b72 | 06bce8166b7df401d31829bcdf1f95450a1fcd4d | fix: -Wunsafe-buffer-usage warnings in WebFrameRenderer::ExecuteJavaScript() (#44053) | [
{
"path": "shell/renderer/api/electron_api_web_frame.cc",
"patch": "@@ -9,6 +9,7 @@\n #include <utility>\n #include <vector>\n \n+#include \"base/containers/span.h\"\n #include \"base/memory/memory_pressure_listener.h\"\n #include \"base/strings/utf_string_conversions.h\"\n #include \"components/spellcheck/... | 2024-10-01T17:06:02 |
vercel/next.js | 406721415df918d4eda14a54d1866569aeb5765b | 976a2222f0dfb9cd01fd83439bffca5bf10cf49d | Turbopack: correctly trace files with npm (#85323)
The `.contains("/node_modules/")` condition didn't work for npm, where the path might be `"node_modules/.prisma/client"`
This fixes cases of the following error with Prisma and npm
```
Prisma Client could not locate the Query Engine for runtime "rhel-openssl-3.0.... | [
{
"path": "crates/next-api/src/module_graph.rs",
"patch": "@@ -568,14 +568,7 @@ async fn validate_pages_css_imports(\n .map(async |issue| {\n // We allow imports of global CSS files which are inside of `node_modules`.\n Ok(\n- if !issue\n- .m... | 2025-10-28T16:45:04 |
golang/go | d5b950399de01a0e28eeb48d2c8474db4aad0e8a | 53845004d647e16b3de7c74e50cffaca77e028e9 | cmd/cgo: fix unaligned arguments typedmemmove crash on iOS
Irregularly typedmemmove and bulkBarrierPreWrite crashes on unaligned
arguments. By aligning the arguments this is fixed.
Fixes #46893
Change-Id: I7beb9fdc31053fcb71bee6c6cb906dea31718c56
GitHub-Last-Rev: 46ae8b96889644aab60ea4284cf447a740354c6a
GitHub-Pull-... | [
{
"path": "src/cmd/cgo/internal/testout/out_test.go",
"patch": "@@ -0,0 +1,144 @@\n+// Copyright 2025 The Go Authors. All rights reserved.\n+// Use of this source code is governed by a BSD-style\n+// license that can be found in the LICENSE file.\n+\n+package out_test\n+\n+import (\n+\t\"bufio\"\n+\t\"bytes... | 2025-09-30T21:53:11 |
facebook/react | 7468ac530e73992f28169ac69e18395a75edfc47 | 5030e08575c295ef352c5ae928e2366cc4765d32 | [compiler] Fixture to show ref-in-render enforcement issue with useCallback
Test Plan:
Documents that useCallback calls interfere with it being ok for refs to escape as part of functions into jsx
ghstack-source-id: a5df427981ca32406fb2325e583b64bbe26b1cdd
Pull Request resolved: https://github.com/facebook/react/pull/... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/error.return-ref-callback.expect.md",
"patch": "@@ -0,0 +1,37 @@\n+\n+## Input\n+\n+```javascript\n+// @flow @validateRefAccessDuringRender @validatePreserveExistingMemoizationGuarantees\n+\n+component Foo() {\n+ const... | 2024-08-16T17:27:13 |
electron/electron | 06bce8166b7df401d31829bcdf1f95450a1fcd4d | 6f88f0c7958f99c674ab9e7c6b78f322dbd65e96 | fix: -Wunsafe-buffer-usage warnings in ElectronAccessibilityUI ctor (#44055)
fix: -Wunsafe-buffer-usage warnings in ElectronAccessibilityUI constructor | [
{
"path": "shell/browser/ui/webui/accessibility_ui.cc",
"patch": "@@ -359,8 +359,7 @@ ElectronAccessibilityUI::ElectronAccessibilityUI(content::WebUI* web_ui)\n \n // Add required resources.\n html_source->UseStringsJs();\n- html_source->AddResourcePaths(\n- base::make_span(kAccessibilityResources... | 2024-10-01T17:05:46 |
rust-lang/rust | 95fcc2d5f966afa736ef88cf9be6e6e244a38e3c | 80af4486c71f3b4d09f4d41584370c4437aa1c94 | fix: cfg_select supports non token-tree tokens
- Fix single non-curly groups is ignored `true => ((),)`, old: `(),`, new: `((),)`
Example
---
```rust
const _: i32 = cfg_select! { true => 2 + 3, _ => 3 + 4 };
```
**Before this PR**
```rust
const _: i32 = cfg_select! { true => 2 /* expected a token tree after `=>` */... | [
{
"path": "src/tools/rust-analyzer/crates/hir-def/src/macro_expansion_tests/builtin_fn_macro.rs",
"patch": "@@ -568,6 +568,12 @@ cfg_select! {\n _ => { fn true_2() {} }\n }\n \n+const _: ((),) = cfg_select! { _ => ((), ) };\n+const _: i32 = cfg_select! { true => 2 + 3, _ => 3 + 4 };\n+const _: i32 = cfg... | 2026-02-24T10:29:05 |
vercel/next.js | b95dbe6a3a79a459173557a3b670eb6cb2c6d060 | b0837e0f2451bfe420b082109f259122bf676298 | fix: Proxy not picked up on Windows (#85443)
Proxy is not being picked up during prod on Windows. It is because of
two reasons:
1. `isAtConventionLevel` condition was false as the dir was `\\` in
Windows, but was checking with explicit `/`.
2. `page` value passed to `getStaticInfoIncludingLayouts` function was
in `\\... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -764,6 +764,7 @@ jobs:\n node run-tests.js \\\n test/e2e/app-dir/app/index.test.ts \\\n test/e2e/app-dir/app-edge/app-edge.test.ts \\\n+ test/e2e/app-dir/proxy-runtime-nodejs/proxy-runtime-nodejs.test.ts \\\n... | 2025-10-28T13:44:12 |
golang/go | 53845004d647e16b3de7c74e50cffaca77e028e9 | bbdff9e8e1fca772a13acb0c4c7828cfe246d403 | net/http/httputil: deprecate ReverseProxy.Director
The Director function has been superseded by Rewrite.
Rewrite avoids fundamental security issues with hop-by-hop header
handling in the Director API and has better default handling
of X-Forwarded-* headers.
Fixes #73161
Change-Id: Iadaf3070e0082458f79fb892ade51cb7ce... | [
{
"path": "api/next/73161.txt",
"patch": "@@ -0,0 +1 @@\n+pkg net/http/httputil, type ReverseProxy struct, Director //deprecated #73161",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/net/http/httputil/73161.md",
"patch": "@@ -0,0 +... | 2025-10-02T16:42:57 |
facebook/react | 85fb95cdffdd95f2f908ee71974cae06b1c866e1 | fa6eab58541330349480690ef4e211520cc08d94 | [flow] Eliminate a few React.Element type that will be synced to react-native (#30719)
## Summary
Flow will eventually remove the specific `React.Element` type. For most
of the code, it can be replaced with `React.MixedElement` or
`React.Node`.
When specific react elements are required, it needs to be replaced... | [
{
"path": "packages/react-native-renderer/src/ReactNativeRenderer.js",
"patch": "@@ -8,7 +8,7 @@\n */\n \n import type {ReactPortal, ReactNodeList} from 'shared/ReactTypes';\n-import type {ElementRef, Element, ElementType} from 'react';\n+import type {ElementRef, ElementType, MixedElement} from 'react';\n ... | 2024-08-16T16:53:52 |
rust-lang/rust | c1d0e35db07f961803781cd3e7e49b452056a116 | 6c28ca91011e8775f859ac87b678d4a39b7e330f | c-b: fix path to CONTRIBUTING.md in README.md | [
{
"path": "library/compiler-builtins/compiler-builtins/README.md",
"patch": "@@ -22,7 +22,7 @@ See `build.rs` for details.\n \n ## Contributing\n \n-See [CONTRIBUTING.md](CONTRIBUTING.md).\n+See [CONTRIBUTING.md](../CONTRIBUTING.md).\n \n ## Progress\n ",
"additions": 1,
"deletions": 1,
"languag... | 2026-03-06T09:47:22 |
vercel/next.js | 456d8e7b8c0f1f11fa9d290ccc916c6c686d5081 | 0b6fe158c61fec5f30289856a3d1c078b0be7022 | fix: ensure req.query is writable (#81573)
### What?
- Upgrade development dependency **Express** to the latest version
(5.1.0).
- Replace direct assignment of `apiReq.query` with
`Object.defineProperty` to ensure the property is writable, enumerable,
and configurable.
### Why?
- To use the most up-to-date and suppor... | [
{
"path": "packages/next/src/server/api-utils/node/api-resolver.ts",
"patch": "@@ -355,8 +355,14 @@ export async function apiResolver(\n \n // Parsing of cookies\n setLazyProp({ req: apiReq }, 'cookies', getCookieParser(req.headers))\n- // Parsing query string\n- apiReq.query = query\n+ // ... | 2025-10-28T11:15:05 |
electron/electron | 61565465fdebecf294286f40cbeab78d4160e272 | 7ebc427bf5d6c04ecc4b382a97bc2c28ab7934c9 | build: convert all release scripts to typescript (#44035)
* build: convert all release scripts to typescript
* fix test imports
* build: fix version bumper export
* refactor: use as const
* spec: fix bad type spec | [
{
"path": "package.json",
"patch": "@@ -25,7 +25,6 @@\n \"buffer\": \"^6.0.3\",\n \"chalk\": \"^4.1.0\",\n \"check-for-leaks\": \"^1.2.1\",\n- \"dotenv-safe\": \"^4.0.4\",\n \"dugite\": \"^2.7.1\",\n \"eslint\": \"^8.57.1\",\n \"eslint-config-standard\": \"^17.1.0\",\n@@ -57,7 +56... | 2024-10-01T00:55:27 |
facebook/react | fa6eab58541330349480690ef4e211520cc08d94 | 50d2197dd580afc0f87f0acb79c5528bc0f5199c | [Flight] Implement prerender (#30686)
Prerendering in flight is similar to prerendering in Fizz. Instead of
receiving a result (the stream) immediately a promise is returned which
resolves to the stream when the prerender is complete. The promise will
reject if the flight render fatally errors otherwise it will res... | [
{
"path": "fixtures/flight/__tests__/__e2e__/smoke.test.js",
"patch": "@@ -16,6 +16,13 @@ test('smoke test', async ({page}) => {\n await expect(page.getByTestId('promise-as-a-child-test')).toHaveText(\n 'Promise as a child hydrates without errors: deferred text'\n );\n+ await expect(page.getByTestI... | 2024-08-15T21:28:28 |
golang/go | bbdff9e8e1fca772a13acb0c4c7828cfe246d403 | 4008e07080ef215e46f48e5e2f6b5d37d6d9cb9f | net/http: update bundled x/net/http2 and delete obsolete http2inTests
http2inTests is no longer needed after go.dev/cl/708135 and should be
deleted. To prevent errors in future vendored dependency updates,
h2_bundle.go is also updated together in this change.
Change-Id: I7b8c3f6854203fab4ec639a2a268df0cd2b1dee7
Revie... | [
{
"path": "src/go.mod",
"patch": "@@ -4,7 +4,7 @@ go 1.26\n \n require (\n \tgolang.org/x/crypto v0.42.0\n-\tgolang.org/x/net v0.44.0\n+\tgolang.org/x/net v0.44.1-0.20251002015445-edb764c2296f\n )\n \n require (",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "src/go... | 2025-10-02T16:41:25 |
rust-lang/rust | 20404bf4a65c3c41391790ace10310a02fec8a05 | bbc45c16c49573a4d0553ff4fa6e5be720da4df4 | Split out linker-info from linker-messages
- Hide common linker output behind `linker-info`
- Add tests
- Account for different capitalization on windows-gnu when removing
"warning" prefix
- Add some more comments
- Add macOS deployment-target test
- Ignore linker warnings from trying to statically link glibc
I d... | [
{
"path": "compiler/rustc_codegen_ssa/src/back/link.rs",
"patch": "@@ -22,6 +22,7 @@ use rustc_errors::DiagCtxtHandle;\n use rustc_fs_util::{TempDirBuilder, fix_windows_verbatim_for_gcc, try_canonicalize};\n use rustc_hir::attrs::NativeLibKind;\n use rustc_hir::def_id::{CrateNum, LOCAL_CRATE};\n+use rustc_l... | 2025-12-12T22:17:24 |
vercel/next.js | 0b6fe158c61fec5f30289856a3d1c078b0be7022 | 61b285e52842e3a458b5efb442f71123d8813ae8 | [test] Exclude Next.js internal stack frames from cache-component-error CLI output assertions (#85421) | [
{
"path": "test/e2e/app-dir/cache-components-errors/cache-components-errors.test.ts",
"patch": "@@ -226,44 +226,15 @@ describe('Cache Components Errors', () => {\n }\n } else {\n if (isDebugPrerender) {\n- // expect(output).toMatchInlineSnapshot(`\n- ... | 2025-10-28T09:21:26 |
nodejs/node | 609df89cd35ce68f40c75c0717e6635d928551ed | e273ddf7a490ee5bec7bd485a78963e9087a4fcc | http2: session tracking and graceful server close
This change adds proper tracking of HTTP / 2 server sessions
to ensure they are gracefully closed when the server is
shut down.It implements:
- A new kSessions symbol for tracking active sessions
- Adding/removing sessions from a SafeSet in the server
- A closeAllSess... | [
{
"path": "lib/internal/http2/core.js",
"patch": "@@ -251,6 +251,7 @@ const kServer = Symbol('server');\n const kState = Symbol('state');\n const kType = Symbol('type');\n const kWriteGeneric = Symbol('write-generic');\n+const kSessions = Symbol('sessions');\n \n const {\n kBitfield,\n@@ -1126,9 +1127,13 ... | 2025-03-21T21:42:25 |
facebook/react | 19bd26beb689e554fceb0b929dc5199be8cba594 | c39da3e4de0ad0db56ad99119efe3efc6c72abf1 | [Flight/DevTools] Pass the Server Component's "key" as Part of the ReactComponentInfo (#30703)
Supports showing the key in DevTools on the Server Component that the
key was applied to. We can also use this to reconcile to preserve
instance equality when they're reordered.
One thing that's a bit weird about this i... | [
{
"path": "packages/react-client/src/__tests__/ReactFlight-test.js",
"patch": "@@ -299,6 +299,7 @@ describe('ReactFlight', () => {\n {\n name: 'Greeting',\n env: 'Server',\n+ key: null,\n owner: null,\n stack: gate(... | 2024-08-15T15:04:53 |
electron/electron | 1d4b86cb3e2d5a8725eefd8f227ac5a221994a7c | 77f7ba96ca8cb6248291cfb78bb66384d6e983b3 | fix: -Wunsafe-buffer-usage warnings in AddComponentResourceEntries() (#44024)
fix: -Wunsafe-buffer-usage warnings in ElectronComponentExtensionResourceManager::AddComponentResourceEntries()
just replace pointer-and-length args with a span | [
{
"path": "shell/browser/extensions/electron_component_extension_resource_manager.cc",
"patch": "@@ -24,10 +24,9 @@ namespace extensions {\n \n ElectronComponentExtensionResourceManager::\n ElectronComponentExtensionResourceManager() {\n- AddComponentResourceEntries(kComponentExtensionResources,\n- ... | 2024-09-30T16:01:24 |
golang/go | 0e4e2e68323df08d9e4c876e5abc5b549bd247f5 | f03c392295cfd57c29c92fcc300181f8016cf5ac | runtime: skip TestGoroutineLeakProfile under mayMoreStackPreempt
This may be the long-term fix, but we first need to understand if this
just makes the tests flaky, or if it's revealing an actual underlying
issue. I'm leaning toward the former. If it is the former, ideally we
just make the tests robust (wait longer, ma... | [
{
"path": "src/runtime/goroutineleakprofile_test.go",
"patch": "@@ -6,12 +6,20 @@ package runtime_test\n \n import (\n \t\"fmt\"\n+\t\"internal/testenv\"\n+\t\"os\"\n \t\"regexp\"\n \t\"strings\"\n \t\"testing\"\n )\n \n func TestGoroutineLeakProfile(t *testing.T) {\n+\tif strings.Contains(os.Getenv(\"GOFLA... | 2025-10-02T19:15:34 |
rust-lang/rust | 6c28ca91011e8775f859ac87b678d4a39b7e330f | 44ee391300a7cc4623410145e4aca511cd2bd00e | meta: Allow or fix `unused_features`
These warnings are showing up on the most recent nightly:
error: feature `f128` is declared but not used
--> builtins-test/tests/addsub.rs:3:35
|
3 | #![cfg_attr(f128_enabled, feature(f128))]
| ^^^^
It isn't always easy t... | [
{
"path": "library/compiler-builtins/builtins-test-intrinsics/src/main.rs",
"patch": "@@ -3,7 +3,7 @@\n // compiling a C implementation and forget to implement that intrinsic in Rust, this file will fail\n // to link due to the missing intrinsic (symbol).\n \n-#![allow(internal_features)]\n+#![allow(interna... | 2026-03-06T04:54:40 |
facebook/react | 49496d493797d4df1b9496f64a6103d9a7d23968 | 0ad0fac1dc11db8d5a6831987fb0324cd6d59498 | [DevTools] Support Server Components in Tree (#30684)
This adds VirtualInstances to the tree. Each Fiber has a list of its
parent Server Components in `_debugInfo`. The algorithm is that when we
enter a set of fibers, we actually traverse level 0 of all the
`_debugInfo` in each fiber. Then level 1 of each `_debugIn... | [
{
"path": "packages/react-devtools-shared/src/__tests__/inspectedElement-test.js",
"patch": "@@ -3150,4 +3150,35 @@ describe('InspectedElement', () => {\n <Child> ⚠\n `);\n });\n+\n+ // @reactVersion > 18.2\n+ it('should inspect server components', async () => {\n+ const ChildPromi... | 2024-08-14T15:16:51 |
vercel/next.js | 333c30b86b593f3d4e2e2864317fbb0aea580cd0 | c72b4263af70bda1cf0a70ccdfd25c34e10c72a5 | fix(next/image): swap dependencies (#85419)
Swapping `is-local-address` for `ipaddr.js` | [
{
"path": "packages/next/package.json",
"patch": "@@ -270,8 +270,8 @@\n \"icss-utils\": \"5.1.0\",\n \"ignore-loader\": \"0.1.2\",\n \"image-size\": \"1.2.1\",\n+ \"ipaddr.js\": \"2.2.0\",\n \"is-docker\": \"2.0.0\",\n- \"is-local-address\": \"2.2.2\",\n \"is-wsl\": \"2.2.0\",\n ... | 2025-10-28T00:08:01 |
nodejs/node | 2acc8bc6a9a830b38d101ac70390b8c5c9a14bf3 | 2cff98c853d780b80d757087387e14792f2f45d8 | http2: fix graceful session close
Fix issue where session.close() prematurely destroys the session
when response.end() was called with an empty payload while active
http2 streams still existed. This change ensures that sessions are
closed gracefully only after all http2 streams complete and clients
properly receive th... | [
{
"path": "lib/internal/http2/core.js",
"patch": "@@ -1068,6 +1068,7 @@ function setupHandle(socket, type, options) {\n if (typeof options.selectPadding === 'function')\n this[kSelectPadding] = options.selectPadding;\n handle.consume(socket._handle);\n+ handle.ongracefulclosecomplete = this[kMaybeD... | 2025-04-19T16:36:03 |
electron/electron | 77f7ba96ca8cb6248291cfb78bb66384d6e983b3 | af58931efa834e78fd21eba2670c3f70d9ebb7f8 | fix: -Wunsafe-buffer-usage in electron::SetFontDefaults() (#44014)
* refactor: reduce code duplication in WebContentsPreferences::OverrideWebkitPrefs()
* refactor: limit scope of web_preferences temporary in ElectronBrowserClient::OverrideWebkitPrefs()
* chore: savepoint
* chore: savepoint
* chore: savepoi... | [
{
"path": "shell/browser/font_defaults.cc",
"patch": "@@ -4,12 +4,12 @@\n \n #include \"shell/browser/font_defaults.h\"\n \n-#include <array>\n #include <string>\n #include <string_view>\n \n-#include \"base/strings/strcat.h\"\n-#include \"base/strings/utf_string_conversions.h\"\n+#include \"base/containers... | 2024-09-30T13:09:36 |
golang/go | f03c392295cfd57c29c92fcc300181f8016cf5ac | 707454b41fa1fea7e0286b1370dea47d3422b2cb | runtime: fix aix/ppc64 library initialization
AIX sets the argc and argv parameters in R14 and R15, but
_rt0_ppc64x_lib expects them to be in R3 and R4. Also, call reginit in
_rt0_ppc64x_lib.
These issues were oversights from CL 706395 which went unnoticed because
there if no LUCI aix/ppc64 builder (see #67299).
Cha... | [
{
"path": "src/runtime/asm_ppc64x.s",
"patch": "@@ -21,6 +21,9 @@ TEXT _rt0_ppc64x_lib(SB),NOSPLIT|NOFRAME,$0\n \tMOVD\tR4, _rt0_ppc64x_lib_argv<>(SB)\n \n \t// Synchronous initialization.\n+\tMOVD\t$runtime·reginit(SB), R12\n+\tMOVD\tR12, CTR\n+\tBL\t(CTR)\n \tMOVD\t$runtime·libpreinit(SB), R12\n \tMOVD\tR... | 2025-10-01T08:59:53 |
rust-lang/rust | b4f9fac51ab760950f2ceae27660e8f6293aa3b4 | 80af4486c71f3b4d09f4d41584370c4437aa1c94 | perf: smol_str — avoid redundant work in eq
feat: add missing APIs to smol_str
docs: Improve safety documentation
fix: borsh deserialization off-by-one for inline threshold | [
{
"path": "src/tools/rust-analyzer/lib/smol_str/src/borsh.rs",
"patch": "@@ -16,7 +16,7 @@ impl BorshDeserialize for SmolStr {\n #[inline]\n fn deserialize_reader<R: Read>(reader: &mut R) -> borsh::io::Result<Self> {\n let len = u32::deserialize_reader(reader)?;\n- if (len as usize) <... | 2026-03-06T08:01:13 |
facebook/react | 0ad0fac1dc11db8d5a6831987fb0324cd6d59498 | fbfe08de6126f04777da805a493e819989151edf | Fix unstable_useContextWithBailout dispatcher assignment (#30692)
One more copy pasta fix
Assignments are unique now
```
% cat packages/react-reconciler/src/ReactFiberHooks.js | grep .unstable_useContextWithBailout
function unstable_useContextWithBailout<T>(
(ContextOnlyDispatcher: Dispatcher).unstable_useCon... | [
{
"path": "packages/react-reconciler/src/ReactFiberHooks.js",
"patch": "@@ -4622,7 +4622,7 @@ if (__DEV__) {\n };\n }\n if (enableContextProfiling) {\n- (HooksDispatcherOnUpdateInDEV: Dispatcher).unstable_useContextWithBailout =\n+ (HooksDispatcherOnRerenderInDEV: Dispatcher).unstable_useCon... | 2024-08-14T15:04:42 |
nodejs/node | 2cff98c853d780b80d757087387e14792f2f45d8 | 733e0fc2c4d01a3613f157de475e0204bc9a7aad | build: fix missing files warning
This commit fixes the following warning:
Warning: Missing input files:
C:\Users\lpinca\node\tools\v8_gypfiles\..\..\deps\v8\third_party\abseil-cpp\absl\strings\internal\has_absl_stringify.h
C:\Users\lpinca\node\deps\ncrypto\dh-primes.h
https://github.com/nodejs/node/commi... | [
{
"path": "deps/ncrypto/ncrypto.gyp",
"patch": "@@ -2,7 +2,6 @@\n 'variables': {\n 'ncrypto_sources': [\n 'engine.cc',\n- 'dh-primes.h',\n 'ncrypto.cc',\n 'ncrypto.h',\n ],",
"additions": 0,
"deletions": 1,
"language": "Unknown"
},
{
"path": "tools/v8_gyp... | 2025-04-19T15:22:06 |
vercel/next.js | 5e282808c0d5dd72124c718e54e863b7ace4b623 | 1b45163bce3dab30d7a79dff95238b84016b54c2 | remove unstable_forceStale prefetch option & restore `prefetch={true}` functionality (#85411)
`prefetch={true}` with `cacheComponents` was opting into runtime
prefetching, with `unstable_forceStale` preserving the old behavior of
fetching the full (stale) data. However we only intended to expose
runtime prefetching vi... | [
{
"path": "packages/next/src/client/app-dir/link.tsx",
"patch": "@@ -153,7 +153,7 @@ type InternalLinkProps = {\n * </Link>\n * ```\n */\n- prefetch?: boolean | 'auto' | null | 'unstable_forceStale'\n+ prefetch?: boolean | 'auto' | null\n \n /**\n * (unstable) Switch to a full prefetch on ho... | 2025-10-27T19:59:45 |
rust-lang/rust | a62c6717ff4da33ac304aaebdbb19547b82a9f60 | 69370dc4a8862b8401615a2a7b950704ba66c495 | bootstrap.py: fix typo "parallle" | [
{
"path": "src/bootstrap/bootstrap.py",
"patch": "@@ -696,7 +696,7 @@ def download_toolchain(self):\n for download_info in tarballs_download_info:\n download_component(download_info)\n \n- # Unpack the tarballs in parallle.\n+ # Unpack the tarballs in parall... | 2026-03-06T07:39:05 |
golang/go | 633dd1d475e7346b43d87abc987a8c7f256e827d | 8ad27fb656ab162546137b512c61f6a26a90a6c5 | encoding/json: fix Decoder.InputOffset regression in goexperiment.jsonv2
The Decoder.InputOffset method was always ambiguous about the exact
offset returned since anything between the end of the previous token
to the start of the next token could be a valid result.
Empirically, it seems that the behavior was to repor... | [
{
"path": "src/encoding/json/stream_test.go",
"patch": "@@ -557,3 +557,67 @@ func TestTokenTruncation(t *testing.T) {\n \t\t}\n \t}\n }\n+\n+func TestDecoderInputOffset(t *testing.T) {\n+\tconst input = ` [\n+\t\t[ ] , [ \"one\" ] , [ \"one\" , \"two\" ] ,\n+\t\t{ } , { \"alpha\" : \"bravo\" } , { \"alpha\"... | 2025-09-15T19:56:11 |
electron/electron | af58931efa834e78fd21eba2670c3f70d9ebb7f8 | eb40d2cbfafea4ae8dfac9090d099b368f4ed3eb | chore: bump chromium to 131.0.6744.0 (main) (#43948)
* chore: bump chromium in DEPS to 131.0.6738.0
* chore: bump chromium in DEPS to 131.0.6740.0
* 5889025: [LaCrOS] Remove LaCrOS screen capturer. | https://chromium-review.googlesource.com/c/chromium/src/+/5889025
* https://boringssl.googlesource.com/borings... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '131.0.6734.0',\n+ '131.0.6744.0',\n 'node_version':\n 'v20.17.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "filena... | 2024-09-30T12:54:44 |
facebook/react | fbfe08de6126f04777da805a493e819989151edf | 2a540194adde100c1af2b57b346e62eee760524c | fix[react-devtools/InspectedElement]: fixed border stylings when some of the panels are not rendered (#30676)
Alternative to https://github.com/facebook/react/pull/30667.
Basically wrap every section in a `div` with the same class, and only
apply `border-bottom` for every instance, except for the last child. We
a... | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElementContextTree.js",
"patch": "@@ -60,7 +60,7 @@ export default function InspectedElementContextTree({\n return null;\n } else {\n return (\n- <div className={styles.InspectedElementTree}>\n+ <div>\n ... | 2024-08-14T12:35:06 |
vercel/next.js | 68e60c33ca7d67cc3fb93c57597b1870c98b8eba | 2a4737927b553b652eb47f5f65829d3a3b624ea2 | Fix grammatical errors in updating data documentation (#85067)
<!-- 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 C... | [
{
"path": "docs/01-app/01-getting-started/08-updating-data.mdx",
"patch": "@@ -14,7 +14,7 @@ You can update data in Next.js using React's [Server Functions](https://react.de\n \n ## What are Server Functions?\n \n-A **Server Function** is an asynchronous function that runs on the server. They can be called ... | 2025-10-27T18:16:05 |
golang/go | 3f451f2c54c87db8b8f30e4d5224933f7895f453 | be0fed8a5fc4e34f2c6caf503830bcdf904ded54 | testing/synctest: fix inverted test failure message in TestContextAfterFunc
Fixes #75685
Change-Id: I5592becfde6aaca3d7f0e2f09bc7a9785228523e
GitHub-Last-Rev: 0ff7bd31ecfc23222dae70194621397330f3c2da
GitHub-Pull-Request: golang/go#75687
Reviewed-on: https://go-review.googlesource.com/c/go/+/708275
Reviewed-by: Alan D... | [
{
"path": "src/testing/synctest/example_test.go",
"patch": "@@ -66,7 +66,7 @@ func TestContextAfterFunc(t *testing.T) {\n \t\tcancel()\n \t\tsynctest.Wait()\n \t\tif !afterFuncCalled {\n-\t\t\tt.Fatalf(\"before context is canceled: AfterFunc not called\")\n+\t\t\tt.Fatalf(\"after context is canceled: AfterF... | 2025-10-01T12:46:16 |
nodejs/node | 733e0fc2c4d01a3613f157de475e0204bc9a7aad | 2b76dca0fa86093d94e4f58f30ebcf357d64bbc0 | assert,util: fix constructor lookup in deep equal comparison
The latest performance optimization did not take into account that
an object may have a property called constructor. This is addressed
in this PR by adding a new fast path and using fallbacks.
PR-URL: https://github.com/nodejs/node/pull/57876
Reviewed-By: J... | [
{
"path": "benchmark/assert/deepequal-prims-and-objs-big-loop.js",
"patch": "@@ -10,6 +10,7 @@ const notCircular = {};\n notCircular.circular = {};\n \n const primValues = {\n+ 'null_prototype': { __proto__: null },\n 'string': 'abcdef',\n 'number': 1_000,\n 'boolean': true,\n@@ -24,6 +25,7 @@ const ... | 2025-04-19T11:10:40 |
electron/electron | eb40d2cbfafea4ae8dfac9090d099b368f4ed3eb | 27d2a8f9e28715c3da6e8570bbc12d89cfa88178 | fix: FTBFS when building with `enable_plugins = false` (#44003)
* fix: do not build electron_plugin_info_host_impl.cc when plugins are disabled
it fails to build from source with this error:
../../content/public/browser/plugin_service.h:17:2: error: "Plugins should be enabled"
17 | #error "Plugins should be ... | [
{
"path": "BUILD.gn",
"patch": "@@ -674,6 +674,8 @@ source_set(\"electron_lib\") {\n \n if (enable_plugins) {\n sources += [\n+ \"shell/browser/electron_plugin_info_host_impl.cc\",\n+ \"shell/browser/electron_plugin_info_host_impl.h\",\n \"shell/common/plugin_info.cc\",\n \"shell... | 2024-09-29T22:10:34 |
facebook/react | 2a540194adde100c1af2b57b346e62eee760524c | 8e60bacd08215bd23f0bf05dde407cd133885aa1 | [Flight] do not emit error after abort (#30683)
When synchronously aborting in a non-async Function Component if you
throw after aborting the task would error rather than abort because
React never observed the AbortSignal.
Using a sigil to throw after aborting during render isn't effective b/c
the user code itse... | [
{
"path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOM-test.js",
"patch": "@@ -2554,4 +2554,100 @@ describe('ReactFlightDOM', () => {\n </div>,\n );\n });\n+\n+ it('can error synchronously after aborting in a synchronous Component', async () => {\n+ const rejectError = new... | 2024-08-14T03:59:45 |
vercel/next.js | 2a4737927b553b652eb47f5f65829d3a3b624ea2 | 777b8fa227702c341f82c4bbc5b6f1085b56d6bd | Fix typo in Fast Refresh documentation (#85352)
Small grammar fix for fast-refresh.mdx
<!-- 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... | [
{
"path": "docs/03-architecture/fast-refresh.mdx",
"patch": "@@ -3,7 +3,7 @@ title: Fast Refresh\n description: Fast Refresh is a hot module reloading experience that gives you instantaneous feedback on edits made to your React components.\n ---\n \n-Fast refresh is a React feature integrated into Next.js t... | 2025-10-27T18:14:45 |
golang/go | fcb893fc4b615774f8cdd050e17ad227998e512a | 19cc1022ba4e9ddf172c04107fa613e6d50a7eba | cmd/compile/internal/ssa: remove redundant "type:" prefix check
Remove redundant "type:" prefix check on symbol names in isFixedLoad,
also refactor some duplicate code into methods.
Change-Id: I8358422596eea8c39d1a30a554bd0aae8b570038
Reviewed-on: https://go-review.googlesource.com/c/go/+/701275
Reviewed-by: Keith Ra... | [
{
"path": "src/cmd/compile/internal/ssa/rewrite.go",
"patch": "@@ -2059,12 +2059,12 @@ func isFixedLoad(v *Value, sym Sym, off int64) bool {\n \t\treturn false\n \t}\n \n-\tif strings.HasPrefix(lsym.Name, \"type:\") {\n+\tif ti := lsym.TypeInfo(); ti != nil {\n \t\t// Type symbols do not contain information... | 2025-09-05T14:48:48 |
nodejs/node | 63640eb32d58b313b8513a1a431237324394429d | 52d95f53e466016120048fb43b3732ff9089ecd7 | src: fix typo in comments
PR-URL: https://github.com/nodejs/node/pull/57868
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Qingyu Deng <i@ayase-lab.com>
Reviewed-By: ... | [
{
"path": "src/node_sqlite.cc",
"patch": "@@ -1295,7 +1295,7 @@ void DatabaseSync::AggregateFunction(const FunctionCallbackInfo<Value>& args) {\n return;\n }\n \n- // Subract 1 because the first argument is the aggregate value.\n+ // Subtract 1 because the first argument is the aggregate val... | 2025-04-19T09:33:47 |
electron/electron | d4e4cdee6cfecad6be4741d3f5aaccdc5b3ef86b | f68184a9f927ef94107e83227116114fdf32114b | fix: remove resize listener when BrowserWindow closed (#43972) | [
{
"path": "lib/browser/api/browser-view.ts",
"patch": "@@ -68,10 +68,7 @@ export default class BrowserView {\n // a webContents can be closed by the user while the BrowserView\n // remains alive and attached to a BrowserWindow.\n set ownerWindow (w: BrowserWindow | null) {\n- if (this.#ownerWindow ... | 2024-09-27T14:34:00 |
facebook/react | f6d1df6648a8912ea30550507a9d400802dcdff4 | a601d1da3647ed9a20d9f83b87c8019492f24215 | [Flight] erroring after abort should not result in unhandled rejection (#30675)
When I implemented the ability to abort synchronoulsy in flight I made
it possible for erroring async server components to cause an unhandled
rejection error. In the current implementation if you abort during the
synchronous phase of a ... | [
{
"path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOM-test.js",
"patch": "@@ -2485,4 +2485,73 @@ describe('ReactFlightDOM', () => {\n </div>,\n );\n });\n+\n+ it('can error synchronously after aborting without an unhandled rejection error', async () => {\n+ function App()... | 2024-08-13T20:42:10 |
rust-lang/rust | 06f959c6e6b956b6c996cfdc844815caf5f99bc1 | debbabedb3637aa7643f012019e85a5c40fc43f8 | fix clippy on master | [
{
"path": "src/tools/rust-analyzer/xtask/src/codegen/grammar/ast_src.rs",
"patch": "@@ -189,9 +189,9 @@ pub(crate) fn generate_kind_src(\n }\n }\n });\n- PUNCT.iter().zip(used_puncts).filter(|(_, used)| !used).for_each(|((punct, _), _)| {\n+ if let Some(punct) = PUNCT.iter().zi... | 2026-03-06T01:40:59 |
vercel/next.js | 777b8fa227702c341f82c4bbc5b6f1085b56d6bd | f6d171968a2aa1e30b314ca20adb14fce27bb43e | docs: Fix typo in SEO section of loading.mdx (#85301)
The second “used” seems unnecessary.
<!-- 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) ... | [
{
"path": "docs/01-app/03-api-reference/03-file-conventions/loading.mdx",
"patch": "@@ -86,7 +86,7 @@ In the same folder, `loading.js` will be nested inside `layout.js`. It will auto\n ### SEO\n \n - For bots that only scrape static HTML, and cannot execute JavaScript like a full browser, such as Twitterbot... | 2025-10-27T18:08:14 |
golang/go | 08afc50bea9a94e86adfc8cd852c6ae5b698cdaa | 97da068774d5aa9147e63eb146350145c73bfc3d | mime: extend "builtinTypes" to include a more complete list of common types
Implement all agreed upon types, using IANA's listed media types to decide
when there is a disagreement in type. Except in the case of `.wav` where
`audio/wav` is used.
Fixes #69530
Change-Id: Iec99a6ceb534073be83c8390f48799bec3e4cfc7
GitHu... | [
{
"path": "src/mime/type.go",
"patch": "@@ -17,7 +17,7 @@ var (\n \tmimeTypesLower sync.Map // map[string]string; \".z\" => \"application/x-compress\"\n \n \t// extensions maps from MIME type to list of lowercase file\n-\t// extensions: \"image/jpeg\" => [\".jpg\", \".jpeg\"]\n+\t// extensions: \"image/jpeg... | 2025-09-25T21:00:45 |
nodejs/node | 9d6626a37eb4e786f0accc378ad5b1659757419a | d8e9e05a27b732a4f3657c05755d3d01d2ce1003 | lib: fix AbortSignal.any() with timeout signals
PR-URL: https://github.com/nodejs/node/pull/57867
Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il> | [
{
"path": "lib/internal/abort_controller.js",
"patch": "@@ -259,14 +259,30 @@ class AbortSignal extends EventTarget {\n if (!signalsArray.length) {\n return resultSignal;\n }\n+\n const resultSignalWeakRef = new SafeWeakRef(resultSignal);\n resultSignal[kSourceSignals] = new SafeSet();... | 2025-04-17T14:28:36 |
facebook/react | d48603a52564675ce02152fff245e38b6816da47 | 23830ea2a19bc14f5e7fa7198f9371130f0f8382 | Fix unstable_useContextWithBailout incorrect dispatcher assignment (#30673)
Fixing a mistaken copy from another dispatcher property assignment | [
{
"path": "packages/react-reconciler/src/ReactFiberHooks.js",
"patch": "@@ -4839,7 +4839,7 @@ if (__DEV__) {\n };\n }\n if (enableContextProfiling) {\n- (HooksDispatcherOnUpdateInDEV: Dispatcher).unstable_useContextWithBailout =\n+ (InvalidNestedHooksDispatcherOnMountInDEV: Dispatcher).unsta... | 2024-08-13T15:31:44 |
electron/electron | f68184a9f927ef94107e83227116114fdf32114b | 8397fef3ef5bebb8a4ee7bb50d8ce6a4b19c5fdc | feat: add error event for utility process (#43774)
* feat: add error event for utility process
* chore: use public report api
* chore: fix lint
* doc: mark error event as experimental
---------
Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> | [
{
"path": "docs/api/utility-process.md",
"patch": "@@ -116,6 +116,17 @@ When the child process exits, then the value is `null` after the `exit` event is\n \n Emitted once the child process has spawned successfully.\n \n+#### Event: 'error' _Experimental_\n+\n+Returns:\n+\n+* `type` string - Type of error. O... | 2024-09-27T01:17:06 |
rust-lang/rust | 6b7dbff2356b7dccc078c374ddcfad710d03810a | 4d314065a4e3e8d9b6823948c98a3441f5e2b55a | coretest in miri: fix using unstable libtest features | [
{
"path": "src/bootstrap/src/core/build_steps/test.rs",
"patch": "@@ -741,7 +741,13 @@ impl Step for Miri {\n \n // Run it again for mir-opt-level 4 to catch some miscompilations.\n if builder.config.test_args().is_empty() {\n- cargo.env(\"MIRIFLAGS\", \"-O -Zmir-opt-level=4 -Cdeb... | 2026-03-05T21:09:35 |
vercel/next.js | 87fc1b9d455f639b5fa39c87f1aaa96236b242c2 | 8cdd4eada78bb8894a9007ccac37fe0828a6f83c | Fix duplicate .next/types `include` on Windows (#85400) | [
{
"path": "packages/next/src/lib/typescript/writeConfigurationDefaults.ts",
"patch": "@@ -1,4 +1,5 @@\n import { readFileSync, writeFileSync } from 'fs'\n+import * as path from 'path'\n import { bold, cyan, white } from '../picocolors'\n import * as CommentJson from 'next/dist/compiled/comment-json'\n impor... | 2025-10-27T17:08:15 |
golang/go | 97da068774d5aa9147e63eb146350145c73bfc3d | 300d9d2714164e455abc7990d52de9de6b084df1 | cmd/compile: eliminate nil checks on .dict arg
The first arg of a generic function is the dictionary. This dictionary
is never nil, but it gets a nil check becuase the dict arg is treated as
a slice during construction.
cmp.Compare[go.shape.int] was:
00006 (+41) TESTB AX, (AX)
00007 (+52) CMPQ CX, BX
00008 (52) JGT ... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/generic.rules",
"patch": "@@ -2079,6 +2079,9 @@\n \t&& warnRule(fe.Debug_checknil(), v, \"removed nil check\")\n \t=> ptr\n \n+// .dict args are always non-nil.\n+(NilCheck ptr:(Arg {sym}) _) && isDictArgSym(sym) => ptr\n+\n // Nil checks of nil checks are redund... | 2025-09-08T05:21:15 |
facebook/react | 23830ea2a19bc14f5e7fa7198f9371130f0f8382 | 0d7c12c7790c4a7315af80f8c73ac951f024f4fe | Unit Test for `findNodeHandle` Error Behavior (#30669)
## Summary
As promised on https://github.com/facebook/react/pull/29627, this
creates a unit test for the `findNodeHandle` error that prevents
developers from calling it within render methods.
## How did you test this change?
```
$ yarn test ReactFabric... | [
{
"path": "packages/react-native-renderer/src/__tests__/ReactFabric-test.internal.js",
"patch": "@@ -1306,6 +1306,40 @@ describe('ReactFabric', () => {\n );\n });\n \n+ it('findNodeHandle errors when called from render', async () => {\n+ class TestComponent extends React.Component {\n+ render... | 2024-08-12T23:32:40 |
nodejs/node | d8e9e05a27b732a4f3657c05755d3d01d2ce1003 | 33d8e03d9dfb934cf4821feb93f2d38690981480 | util: fix formatting of objects with built-in Symbol.toPrimitive
Fixes: https://github.com/nodejs/node/issues/57818
PR-URL: https://github.com/nodejs/node/pull/57832
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "doc/api/util.md",
"patch": "@@ -436,7 +436,7 @@ corresponding argument. Supported specifiers are:\n \n * `%s`: `String` will be used to convert all values except `BigInt`, `Object`\n and `-0`. `BigInt` values will be represented with an `n` and Objects that\n- have no user defined `toString` f... | 2025-04-17T13:35:56 |
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.