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 |
|---|---|---|---|---|---|
facebook/react | 8bb7241f4c773376893701bfe8b8ff03687342a0 | 8d557a638ef8caf9bddfc6c7541b58b8b59259f9 | Bump useEffectEvent to Canary (#34610)
Bumps `useEffectEvent` from `@experimental` to `@canary`. Removes the
`experimental_` prefix from the export.
## TODO
- [ ] Update useEffectEvent reference page and Canary badging in docs:
https://github.com/reactjs/react.dev/pull/8025 | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzServer-test.js",
"patch": "@@ -6514,7 +6514,7 @@ describe('ReactDOMFizzServer', () => {\n const ref = React.createRef();\n function App() {\n const [count, setCount] = React.useState(0);\n- const onClick = React.experimental_... | 2025-09-26T15:51:30 |
electron/electron | ba5f7d272f776a541bb6b8fcee292e0503c87684 | 6b50b5e81648814367ffa4583bbaff2b6c7c25fa | fix: rename RUNNER_NAME to MATRIX_RUNNER in disk cleanup workflow (#49120)
RUNNER_NAME is a reserved environment variable in GitHub Actions.
Renamed to MATRIX_RUNNER to avoid conflicts.
Co-authored-by: Claude <noreply@anthropic.com> | [
{
"path": ".github/workflows/macos-disk-cleanup.yml",
"patch": "@@ -59,7 +59,7 @@ jobs:\n DD_API_KEY: ${{ secrets.DD_API_KEY }}\n FREE_BEFORE: ${{ steps.disk-before.outputs.free_kb }}\n FREE_AFTER: ${{ steps.disk-after.outputs.free_kb }}\n- RUNNER_NAME: ${{ matrix.runn... | 2025-12-01T21:33:45 |
golang/go | a00f0ed521f32c704b9a5bf8886848829dd13415 | eaa6475dbbf73c0efe6ba2b5e28ea126c22b7286 | runtime/cgo: remove clang mmap bug workaround
Clang 3.8 was released in 2016, that is 10 years ago. The issue that
the workaround was addressing (a bug in the memory sanitizer) is no
longer relevant.
Change-Id: I277ea94cf1bfbc6a9da63841be8ac990c839d7b7
Reviewed-on: https://go-review.googlesource.com/c/go/+/745662
LUC... | [
{
"path": "src/runtime/cgo/gcc_unix.c",
"patch": "@@ -4,9 +4,6 @@\n \n //go:build unix && !solaris\n \n-#include <signal.h>\n-#include <string.h>\n-#include <errno.h>\n #include \"libcgo.h\"\n #include \"libcgo_unix.h\"\n \n@@ -37,37 +34,9 @@ _cgo_set_stacklo(G *g)\n \t}\n }\n \n-static void\n-clang_init()\... | 2026-02-15T07:43:56 |
nodejs/node | 5e677d6e7e4a04f217ffb79fcbcdadadb02e6fa0 | dc8215b90d51fafee3c8faef128d9b1e471ddf38 | stream: do not pass `readable.compose()` output via `Readable.from()`
PR-URL: https://github.com/nodejs/node/pull/60907
Fixes: https://github.com/nodejs/node/issues/55203
Reviewed-By: Raz Luvaton <rluvaton@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com> | [
{
"path": "doc/api/stream.md",
"patch": "@@ -2027,7 +2027,7 @@ changes:\n description: Marking the API stable.\n -->\n \n-* `stream` {Stream|Iterable|AsyncIterable|Function}\n+* `stream` {Writable|Duplex|WritableStream|TransformStream|Function}\n * `options` {Object}\n * `signal` {AbortSignal} allows d... | 2025-12-23T18:52:32 |
vercel/next.js | 683180bfb3f3ae24759360970787e60fc4fbf74b | 39e8fb2a48d444105b9a8baa93a6e3112fe4fd22 | Centralize test timings to fix shard divergence in CI (#90672)
## Summary
For context we discovered jobs were not reliably always running in
https://github.com/vercel/next.js/pull/90668 as addapters + turbopack
group ran more tests than just turbopack group.
- Each sharded test sub-job independently fetched test tim... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -94,6 +94,53 @@ jobs:\n stepName: 'build-next'\n secrets: inherit\n \n+ fetch-test-timings:\n+ name: fetch test timings\n+ runs-on: ubuntu-latest\n+ needs: ['changes']\n+ if: ${{ needs.changes.outputs.docs-only == 'false' ... | 2026-02-28T00:15:43 |
electron/electron | 06044b50f4e4abedbf7092d48bf6a0b2186b7d98 | 4adfc212b31d09df83416d8a8b9bfef30e002862 | chore: mention quiet period in PR template (#49117)
* chore: mention quiet period in PR template
* fix: remove trailing spaces | [
{
"path": ".github/PULL_REQUEST_TEMPLATE.md",
"patch": "@@ -1,3 +1,6 @@\n+> [!IMPORTANT]\n+> Please note that code reviews and merges will be delayed during our [quiet period in December](https://www.electronjs.org/blog/dec-quiet-period-25) and might not happen until January.\n+\n #### Description of Change... | 2025-12-01T16:55:13 |
facebook/react | 250f1b20e0ac8e6c1ba03f2466ad63ff9b5104de | b0c1dc01ecbfaf81aa69f760b29dd76c02600792 | [playground] Fix useEffect on tabify (#34594)
There was a bug in the Compiler Playground related to the "Show
Internals" toggle due to a useEffect that was causing the tab names to
flicker from a rerender. Rewritten instead with a `<Suspense>` boundary
+ `use`. | [
{
"path": "compiler/apps/playground/components/Editor/Output.tsx",
"patch": "@@ -19,19 +19,24 @@ import {\n import parserBabel from 'prettier/plugins/babel';\n import * as prettierPluginEstree from 'prettier/plugins/estree';\n import * as prettier from 'prettier/standalone';\n-import {memo, ReactNode, useEf... | 2025-09-25T18:56:41 |
golang/go | eaa6475dbbf73c0efe6ba2b5e28ea126c22b7286 | 2eb890bde31495cdd90423fcfbc789351ca56ec6 | internal/poll: readWriteLock should destroy the fd when there are no more references to it
The read lock in readWriteLock might be holding the last reference to
the fd. If the fd is closed while the read lock is still held, then the
fd will not be destroyed until the read lock is released and fd.destroy
is called.
Th... | [
{
"path": "src/internal/poll/fd_mutex.go",
"patch": "@@ -269,7 +269,9 @@ func (fd *FD) readWriteLock() error {\n \t\treturn errClosing(fd.isFile)\n \t}\n \tif !fd.fdmu.rwlock(writeLock, waitLock) {\n-\t\tfd.fdmu.rwunlock(readlock) // unlock read lock acquired above\n+\t\tif fd.fdmu.rwunlock(readlock) {\n+\t... | 2026-02-17T12:59:51 |
vercel/next.js | 080e1b3c26262c627cb278e5c5314e7a29adce61 | fe2f1e44058206e6d8abe6bb5e91f65fc70a315e | Accept header content negotiation (#90607)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) that you're making:
## For Contributors
### Imp... | [
{
"path": "docs/01-app/02-guides/backend-for-frontend.mdx",
"patch": "@@ -4,10 +4,11 @@ nav_title: Backend for Frontend\n description: Learn how to use Next.js as a backend framework\n related:\n title: API Reference\n- description: Learn more about Route Handlers and Proxy\n+ description: Learn more ab... | 2026-02-27T18:31:22 |
nodejs/node | dc8215b90d51fafee3c8faef128d9b1e471ddf38 | c837811bafa59896a3509d73c2dc57f3198835ca | fs: remove broken symlinks in rmSync
PR-URL: https://github.com/nodejs/node/pull/61040
Fixes: https://github.com/nodejs/node/issues/61020
Reviewed-By: René <contact.9a5d6388@renegade334.me.uk>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> | [
{
"path": "src/node_file.cc",
"patch": "@@ -1636,7 +1636,7 @@ static void RmSync(const FunctionCallbackInfo<Value>& args) {\n env, permission::PermissionScope::kFileSystemWrite, path.ToStringView());\n auto file_path = std::filesystem::path(path.ToStringView());\n std::error_code error;\n- auto f... | 2025-12-23T17:08:31 |
electron/electron | 4adfc212b31d09df83416d8a8b9bfef30e002862 | 640c7bb90841b8669896712104c64d3bab09bcf7 | fix: crash when attempting to resolve modules during process exit (#49090)
* fix: crash when attempting to resolve modules during process exit
* chore: fix build | [
{
"path": "patches/node/api_remove_deprecated_getisolate.patch",
"patch": "@@ -586,10 +586,10 @@ index 57e068ae249d618c2658638f9f3b03e1fedb6524..8c51ae4e0a435971c6d0288af8781087\n data_.Reset();\n return ret;\n diff --git a/src/node_modules.cc b/src/node_modules.cc\n-index eea4ba313d8dbcf7b88b79f5a3e9... | 2025-11-27T09:30:09 |
facebook/react | b0c1dc01ecbfaf81aa69f760b29dd76c02600792 | 6eb5d67e9c4c5c456783dbbd454d79016c43b07d | [Flight] Add approximate parent context for FormatContext (#34601)
Flight doesn't have any semantically sound notion of a parent context.
That's why we removed Server Context. Each root can really start
anywhere in the tree when you refetch subtrees. Additionally when you
dedupe elements they can end up in multiple di... | [
{
"path": "packages/react-dom-bindings/src/server/ReactFlightServerConfigDOM.js",
"patch": "@@ -61,3 +61,17 @@ export type Hints = Set<string>;\n export function createHints(): Hints {\n return new Set();\n }\n+\n+export opaque type FormatContext = null;\n+\n+export function createRootFormatContext(): For... | 2025-09-25T16:05:47 |
golang/go | f75c7ccaefe16a13be7ccc08731478976a6cc645 | 845b7b0e493c86dc2c97d157c931f8b6254e24b0 | cmd/covdata: update test expectations after coverage position change
CL 726800 changed cmd/cover to exclude brace tokens from coverage
ranges, shifting where coverage spans start (from the opening
brace to the first executable token inside the block).
Update the hardcoded position expectations in TestCovTool subtests... | [
{
"path": "src/cmd/covdata/tool_test.go",
"patch": "@@ -414,7 +414,7 @@ func testTextfmt(t *testing.T, s state) {\n \t\tdumplines(lines[0:10])\n \t\tt.Errorf(\"textfmt: want %s got %s\", want0, lines[0])\n \t}\n-\twant1 := mainPkgPath + \"/prog1.go:13.14,15.2 1 1\"\n+\twant1 := mainPkgPath + \"/prog1.go:14.... | 2026-02-16T08:16:46 |
vercel/next.js | fe2f1e44058206e6d8abe6bb5e91f65fc70a315e | 7643fc948398c38fe0792836fb4c014a45f6fb07 | remove runInContext callbacks from stream-ops (#90609)
The `runInContext` pattern that's used all over `stream-ops` is weird
and feels very unnecessary -- we're passing in callbacks that just get
invoked immediately, and all they do is call `AsyncLocalStorage.run`. We
should just use the standard `AsyncLocalStorage.ru... | [
{
"path": "packages/next/src/server/app-render/app-render.tsx",
"patch": "@@ -723,7 +723,9 @@ async function generateDynamicFlightRenderResult(\n options\n )\n \n- const flightStream = renderToFlightStream(\n+ const flightStream = workUnitAsyncStorage.run(\n+ requestStore,\n+ renderToFlightStr... | 2026-02-27T14:36:10 |
electron/electron | 0767b42cb85c64b827cf32ab612bd20437653eec | 555f507c177b03a3e95286e48d4accbc13d82674 | ci: fix import in issue opened workflow (#49095) | [
{
"path": ".github/workflows/issue-opened.yml",
"patch": "@@ -56,6 +56,7 @@ jobs:\n const { chdir } = require('node:process');\n chdir('${{ github.workspace }}/.github/workflows');\n \n+ const { ElectronVersions } = require('@electron/fiddle-core');\n const { f... | 2025-11-26T18:33:45 |
nodejs/node | c837811bafa59896a3509d73c2dc57f3198835ca | a385bb1d701c95b5d647666f9e5c12ca548dc124 | build: add --debug-symbols to build with -g without enabling DCHECKs
This is useful when debugging release builds on Linux without
enabling DCHECKs.
PR-URL: https://github.com/nodejs/node/pull/61100
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com> | [
{
"path": "configure.py",
"patch": "@@ -107,6 +107,12 @@\n default=None,\n help='build the Node.js part of the binary with debugging symbols')\n \n+parser.add_argument('--debug-symbols',\n+ action='store_true',\n+ dest='debug_symbols',\n+ default=None,\n+ help='add debugging symbols to r... | 2025-12-23T14:45:21 |
facebook/react | ac2c1a5a5840d5e043d1d7a12a356f226e285c02 | c44fbf43b1e05417619c3b9411d0559824739569 | [Flight] Ensure blocked debug info is handled properly (#34524)
This PR ensures that server components are reliably included in the
DevTools component tree, even if debug info is received delayed, e.g.
when using a debug channel. The fix consists of three parts:
- We must not unset the debug chunk before all debug in... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -499,10 +499,44 @@ function createErrorChunk<T>(\n return new ReactPromise(ERRORED, null, error);\n }\n \n+function moveDebugInfoFromChunkToInnerValue<T>(\n+ chunk: InitializedChunk<T>,\n+ value: T,\n+): void {\n+ // Remove the de... | 2025-09-25T13:13:15 |
golang/go | 845b7b0e493c86dc2c97d157c931f8b6254e24b0 | f827b854254bec05b3a11d30886c1331a68efd7b | cmd/internal/obj: remove ARM64 prefix from encoding helpers
Remove the ARM64 prefix from encoding helper functions that were moved to
cmd/internal/obj to be used by both cmd/asm and cmd/compile. These
functions now use the package prefix and look like:
arm64.EncodeRegisterExtension and arm64.RegisterListOffset.
Chang... | [
{
"path": "src/cmd/asm/internal/asm/parse.go",
"patch": "@@ -775,7 +775,7 @@ func (p *Parser) registerExtension(a *obj.Addr, name string, prefix rune) {\n \n \tswitch p.arch.Family {\n \tcase sys.ARM64:\n-\t\terr := arm64.ARM64RegisterExtension(a, ext, reg, num, isAmount, isIndex)\n+\t\terr := arm64.EncodeR... | 2025-10-23T16:23:43 |
vercel/next.js | 7643fc948398c38fe0792836fb4c014a45f6fb07 | 15fcfb9ce4ec73c6ff8d08d72201726b983127fa | example: restore .next handling for with-docker examples (#90651)
- Remove BuildKit cache mount on `.next/cache` that trapped fetch cache
in a volume unreachable by the runner stage
- Restore `mkdir .next && chown` in runner stage for writable prerender
cache
- Add commented-out `COPY .next/cache` line as opt-in for p... | [
{
"path": "examples/with-docker-export-output/README.md",
"patch": "@@ -4,14 +4,14 @@ A production-ready example demonstrating how to Dockerize Next.js applications u\n \n ## Features\n \n-- ✅ Multi-stage Docker build for optimal image size\n-- ✅ Static export: Fully static HTML/CSS/JavaScript site\n-- ✅ Tw... | 2026-02-27T14:23:45 |
electron/electron | 555f507c177b03a3e95286e48d4accbc13d82674 | 1ff8e8014ab4a6e152e357b62665a7f917a6c541 | fix: ensure `menu-did-close` is emitted for application menus (#49075)
fix: ensure menu-did-close is emitted for application menus | [
{
"path": "shell/browser/api/electron_api_menu_mac.mm",
"patch": "@@ -157,7 +157,8 @@\n if (rightmostMenuPoint > screenRight)\n position.x = position.x - [menu size].width;\n \n- [popup_controllers_[window_id] setCloseCallback:std::move(close_callback)];\n+ [popup_controllers_[window_id]\n+ set... | 2025-11-26T15:44:20 |
facebook/react | c44fbf43b1e05417619c3b9411d0559824739569 | 8ad773b1f342d20e4773c8d086028c6927445a22 | [DevTools] Fix instrumentation error when reconciling promise-as-a-child (#34587) | [
{
"path": "packages/react-devtools-shared/src/__tests__/store-test.js",
"patch": "@@ -3107,4 +3107,45 @@ describe('Store', () => {\n await actAsync(() => render(<span />));\n expect(store).toMatchInlineSnapshot(`[root]`);\n });\n+\n+ // @reactVersion >= 19.0\n+ it('should reconcile promise-as-a-... | 2025-09-24T20:50:12 |
golang/go | f65692ea562bf24c21ae46854e98584dd4bcc201 | 3c8b5e673816c733f13a38b1ed1f53d7d49ea084 | cmd/compile: don't drop same register twice
For instructions that clobber both of their input registers, make
sure we don't clobber the same register twice when both input
registers are the same.
This is rare, but it can happen.
Fixes #77604
Change-Id: I794249cf43a8cc4ab3262055daef9193e2442f73
Reviewed-on: https://... | [
{
"path": "src/cmd/compile/internal/ssa/regalloc.go",
"patch": "@@ -1810,7 +1810,7 @@ func (s *regAllocState) regalloc(f *Func) {\n \t\t\tif regspec.clobbersArg0 {\n \t\t\t\ts.freeReg(register(s.f.getHome(args[0].ID).(*Register).num))\n \t\t\t}\n-\t\t\tif regspec.clobbersArg1 {\n+\t\t\tif regspec.clobbersAr... | 2026-02-14T18:04:13 |
vercel/next.js | 15fcfb9ce4ec73c6ff8d08d72201726b983127fa | ef993b251cef0a71050515665c26cfd41cdf090f | docs: fix navigationType value and variable name in useReportWebVitals (#90599)
## For Contributors
### Improving Documentation
- [x] Run `pnpm prettier-fix` to fix formatting issues before opening
the PR.
- [x] Read the Docs Contribution Guide to ensure your contribution
follows the docs guidelines:
https://nextjs.... | [
{
"path": "docs/01-app/03-api-reference/04-functions/use-report-web-vitals.mdx",
"patch": "@@ -72,7 +72,7 @@ The `metric` object passed as the hook's argument consists of a number of proper\n - `name`: The name of the performance metric. Possible values include names of [Web Vitals](#web-vitals) metrics (TT... | 2026-02-27T14:10:29 |
electron/electron | 20c7042a20da0f1f0b5582b289da465fb34db8a7 | 4786e80f3314ab7e48aca1863db444932292928f | ci: don't build yarn modules for linux arm (#49031)
This should fix the oom errors | [
{
"path": ".github/actions/install-dependencies/action.yml",
"patch": "@@ -21,4 +21,11 @@ runs:\n if [ \"$TARGET_ARCH\" = \"x86\" ]; then\n export npm_config_arch=\"ia32\"\n fi\n- node script/yarn.js install --immutable\n+ # if running on linux arm skip yarn Builds\n+ ARCH... | 2025-11-26T09:25:16 |
facebook/react | 58d17912e89b56067eeba08619fd7f7b6c813519 | 2c6d92fd80ec6917cb7387dbb771e35e82b0126d | Fix failing React DevTools regression tests (#34585) | [
{
"path": "packages/react-devtools-shared/src/__tests__/TimelineProfiler-test.js",
"patch": "@@ -130,24 +130,28 @@ describe('Timeline profiler', () => {\n // @reactVersion <= 18.2\n // @reactVersion >= 18.0\n it('should mark sync render without suspends or state updates', () => {\n+ ... | 2025-09-24T17:08:13 |
golang/go | 3c8b5e673816c733f13a38b1ed1f53d7d49ea084 | 6837583eec31bf197a8f16bcb431e3beb73b2aa5 | cmd/compile: avoid folding 64-bit integers into 32-bit constants
Folding a 64-bit integer into a 32-bit constant may result in a negative
integer if the value exceeds math.MaxInt32 (the maximum value of a 32-
bit signed integer). This negative value will be sign-extended to 64
bits at runtime, leading to unexpected re... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/AMD64.rules",
"patch": "@@ -1578,7 +1578,8 @@\n \n (MOVBload [off] {sym} (SB) _) && symIsRO(sym) => (MOVLconst [int32(read8(sym, int64(off)))])\n (MOVWload [off] {sym} (SB) _) && symIsRO(sym) => (MOVLconst [int32(read16(sym, int64(off), config.ctxt.Arch.ByteOrder... | 2026-02-14T10:55:34 |
facebook/react | e2332183591ff3a5657c3322a21bcdcccae32088 | 05b61f812a2070276c5db0d2107808a6161632fc | Track "Animating" Entry for Gestures while the Gesture is Still On-going (#34548)
Stacked on #34546.
Same as #34538 but for gestures.
Includes various fixes.
This shows how it ends with a Transition when you release in the
committed state. Note how the Animation of the Gesture continues until
the Transition is done... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -2320,6 +2320,9 @@ export function startViewTransition(\n mutationCallback();\n layoutCallback();\n // Skip afterMutationCallback(). We don't need it since we're not animating.\n+ if (enableProfilerTimer) ... | 2025-09-24T15:26:03 |
golang/go | 6837583eec31bf197a8f16bcb431e3beb73b2aa5 | c01d1f095bd8897b7bf4d9e07bd588134952e047 | cmd/internal/obj/loong64: improve ARNG type register name conversion
When resolving ARNG type names, the base value was not subtracted
when calculating the variable simd_type, causing its actual value
to not match the expected meaning after the base value adjustment.
Fixes #77414
Change-Id: I713bab849ecdb5610d2593ba... | [
{
"path": "src/cmd/asm/internal/arch/loong64.go",
"patch": "@@ -75,48 +75,51 @@ var loong64LasxArngExtMap = map[string]int16{\n // Loong64RegisterExtension constructs an Loong64 register with extension or arrangement.\n func Loong64RegisterExtension(a *obj.Addr, ext string, reg, num int16, isAmount, isIndex... | 2026-02-06T02:09:10 |
vercel/next.js | ef993b251cef0a71050515665c26cfd41cdf090f | bb813afd4957d6f3849ff7da357c5b729545783c | Use `VisitMut` instead of `Fold` for debug_instant_stack transform (#90274) | [
{
"path": "crates/next-custom-transforms/src/transforms/debug_instant_stack.rs",
"patch": "@@ -4,7 +4,7 @@ use swc_core::{\n common::{Span, Spanned},\n ecma::{\n ast::*,\n- visit::{Fold, fold_pass},\n+ visit::{VisitMut, visit_mut_pass},\n },\n quote,\n };\n@@ -14,7 +14,... | 2026-02-27T12:47:07 |
electron/electron | fdb7fc77948d3330b76b85199f6be492b918ec7c | e601d05cbd28a2d84e0c62bd07ea67e70564a0bd | docs: Clarify that menus use non-native styles (#45033)
* docs: Clarify menus use non-native styles
Addresses #42262
* empty commit to kick ci
* fix: make linter happy
* Strip trailing space for lint
---------
Co-authored-by: George Xu <george.xu@slack-corp.com>
Co-authored-by: John Kleinschmidt <jkleinsc@electr... | [
{
"path": "docs/api/menu.md",
"patch": "@@ -2,10 +2,15 @@\n \n ## Class: Menu\n \n-> Create native application menus and context menus.\n+> Create application menus and context menus.\n \n Process: [Main](../glossary.md#main-process)\n \n+The presentation of menus varies depending on the operating system:\n... | 2025-11-25T17:27:46 |
rust-lang/rust | 1c3e8d133d07d7492afa355c544b8bb15251141b | 6183ecdda52ba9b9b93f656f9a37492168c82726 | fix UB in test_swap_ptr_triple_dangling | [
{
"path": "src/tools/miri/tests/native-lib/pass/ptr_write_access.rs",
"patch": "@@ -176,17 +176,17 @@ fn test_swap_ptr_triple_dangling() {\n }\n \n extern \"C\" {\n- fn swap_ptr_triple_dangling(t_ptr: *const Triple);\n+ fn swap_ptr_triple_dangling(t_ptr: *mut Triple);\n }\n \n ... | 2026-03-28T21:55:21 |
facebook/react | e0c421ab71e26c05afe506662a4574070c13d131 | 2ee61475100e3d729816467c857366b37a231494 | Include SyncLane in includesBlockingLane helper (#34543)
This helper weirdly doesn't include the sync lane.
Everywhere we use it we have to check the sync lane separately. We can
simplify things by simply including the sync lane.
This fixes a lack of optimization because we should not check the store
consistency for... | [
{
"path": "packages/react-reconciler/src/ReactFiberLane.js",
"patch": "@@ -611,10 +611,6 @@ export function includesSyncLane(lanes: Lanes): boolean {\n return (lanes & (SyncLane | SyncHydrationLane)) !== NoLanes;\n }\n \n-export function isSyncLane(lanes: Lanes): boolean {\n- return (lanes & (SyncLane | ... | 2025-09-24T13:34:35 |
golang/go | c01d1f095bd8897b7bf4d9e07bd588134952e047 | c186fe87686819cdf4dea49e1c556e9bc6e12e23 | cmd/go: validate inferred module path for go mod init
Ensure `go mod init` validates the module path even when it is inferred from GOPATH.
Fixes #73121
Change-Id: I8b7785ff57eec17bba432f48c8e3a18a2f92aab5
GitHub-Last-Rev: 8ff1ca2d71bee2b948f114ad1f0a4706a4c0b152
GitHub-Pull-Request: golang/go#76432
Reviewed-on: http... | [
{
"path": "src/cmd/go/internal/modload/init.go",
"patch": "@@ -1187,26 +1187,8 @@ func CreateModFile(loaderstate *State, ctx context.Context, modPath string) {\n \t\tif err != nil {\n \t\t\tbase.Fatal(err)\n \t\t}\n-\t} else if err := module.CheckImportPath(modPath); err != nil {\n-\t\tif pathErr, ok := err... | 2025-11-24T10:16:11 |
rust-lang/rust | 6183ecdda52ba9b9b93f656f9a37492168c82726 | c26f488618146fe1d4d8df6bbf8fe19455691015 | native-lib: fix passing repr(C) enums | [
{
"path": "src/tools/miri/src/shims/native_lib/mod.rs",
"patch": "@@ -396,8 +396,9 @@ trait EvalContextExtPriv<'tcx>: crate::MiriInterpCxExt<'tcx> {\n // matches what codegen does. This does mean that we support some types whose ABI is not\n // stable, but that's fine -- we are anyway quite ... | 2026-03-28T21:39:52 |
nodejs/node | fb2a02f1d13e2d05157640054dd7e825fcc8c7e3 | 1d54921552101445928a13a9343d61c1a1aa7f59 | deps: nghttp2: revert 7784fa979d0b
This commit reverts "Make error handling robust".
Without this revert, we are getting timeouts, crashes, and different
error codes in `parallel/test-http2-*`.
Refs: https://github.com/nghttp2/nghttp2/commit/7784fa979d0bcf801a35f1afbb25fb048d815cd7
Refs: https://github.com/nodejs/nod... | [
{
"path": "deps/nghttp2/lib/nghttp2_int.h",
"patch": "@@ -52,11 +52,7 @@ typedef enum {\n * Unlike NGHTTP2_ERR_IGN_HTTP_HEADER, this does not invoke\n * nghttp2_on_invalid_header_callback.\n */\n- NGHTTP2_ERR_REMOVE_HTTP_HEADER = -106,\n- /*\n- * Cancel pushed stream.\n- */\n- NGHTTP2_ERR_PU... | 2025-10-26T20:32:37 |
vercel/next.js | 4c6c31ad1e794834148242bcd3ca7f94de74b3ea | 1c1550ca7bb6252c8f9e05edd55eca0e9ad50858 | [instant] Don't add debug stack to random `unstable_instant` exports (#90273)
Instead of just limiting the transform to any file within the app dir, we now restrict it to any page, default, or layout file in the app dir. This avoids having the transform applied to random modules. The inserted value would not have been... | [
{
"path": "crates/next-core/src/next_shared/transforms/next_debug_instant_stack.rs",
"patch": "@@ -28,8 +28,8 @@ struct NextDebugInstantStack {}\n #[async_trait]\n impl CustomTransformer for NextDebugInstantStack {\n #[tracing::instrument(level = tracing::Level::TRACE, name = \"debug_instant_stack\", sk... | 2026-02-27T09:17:52 |
electron/electron | 66367e9db497ed592a541daeadfacafa57072f15 | 05233b4962181e812bca3bd2cca71c27a72c6161 | chore: bump chromium to 144.0.7527.0 (main) (#48959)
* chore: bump chromium in DEPS to 144.0.7527.0
* 7106405: [video pip] Fix gesture handling issues
https://chromium-review.googlesource.com/c/chromium/src/+/7106405
* 7130938: Reland "Remove some dependencies from the custom_handlers component"
https://chromium-r... | [
{
"path": ".github/workflows/pipeline-segment-electron-test.yml",
"patch": "@@ -243,9 +243,9 @@ jobs:\n runuser -u builduser -- xvfb-run script/actions/run-tests.sh script/yarn.js test --runners=main --trace-uncaught --enable-logging --files $tests_files | $ASAN_SYMBOLIZE\n else\n ... | 2025-11-24T17:30:57 |
golang/go | c186fe87686819cdf4dea49e1c556e9bc6e12e23 | 9c9412cbad09ed7fc253de3ccfeea9ca18d22943 | encoding/json/v2: allow streaming JSON methods to return errors.ErrUnsupported
Allow the MarshalJSONTo and UnmarshalJSONFrom methods
to return errors.ErrUnsupported to be skipped in a similar manner
to how the caller-specified functions can be skipped as well.
Note that the v1 MarshalJSON and UnmarshalJSON methods ma... | [
{
"path": "src/encoding/json/v2/arshal.go",
"patch": "@@ -55,6 +55,8 @@ var export = jsontext.Internal.Export(&internal.AllowInternalUse)\n //\n // - If the value type implements [MarshalerTo],\n // then the MarshalJSONTo method is called to encode the value.\n+// If the method returns [errors.Err... | 2026-02-13T00:54:32 |
nodejs/node | 9120924de1878e61d65eaf2d5d0d27cbe129224e | 799feac6f5d2c251a3d5b1b405292f2e544c2777 | util: fix nested proxy inspection
Fixes: https://github.com/nodejs/node/issues/61061
PR-URL: https://github.com/nodejs/node/pull/61077
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Gürgün Dayıoğlu <hey@gu... | [
{
"path": "lib/internal/util/inspect.js",
"patch": "@@ -1118,17 +1118,29 @@ function formatValue(ctx, value, recurseTimes, typedArray) {\n \n // Memorize the context for custom inspection on proxies.\n const context = value;\n+ let proxies = 0;\n // Always check for proxies to prevent side effects an... | 2025-12-22T22:22:04 |
rust-lang/rust | 27242aa3196c1aa7b58fa744231f76362b0ecf2c | fb27476aaf1012f1f6ace6306f9b990e0d989c31 | Panic in Hermit clock_gettime | [
{
"path": "library/std/src/sys/time/hermit.rs",
"patch": "@@ -6,7 +6,7 @@ use crate::time::Duration;\n \n fn clock_gettime(clock: hermit_abi::clockid_t) -> Timespec {\n let mut t = hermit_abi::timespec { tv_sec: 0, tv_nsec: 0 };\n- let _ = unsafe { hermit_abi::clock_gettime(clock, &raw mut t) };\n+ ... | 2026-03-28T21:00:03 |
facebook/react | 24a2ba03fb2e1b59844d98a1ce68dce1e502d8ad | 012b371cde3157a8dd46535839fbcda6c2bed1a0 | [DevTools] fix: dedupe file fetch requests and define a timeout (#34566)
If there is a large owner stack, we could potentially spam multiple
fetch requests for the same source map. This adds a simple deduplication
logic, based on URL.
Also, this adds a timeout of 60 seconds to all fetch requests initiated
by fileFetc... | [
{
"path": "packages/react-devtools-extensions/src/contentScripts/fileFetcher.js",
"patch": "@@ -23,7 +23,7 @@ function fetchResource(url) {\n });\n };\n \n- fetch(url, {cache: 'force-cache'}).then(\n+ fetch(url, {cache: 'force-cache', signal: AbortSignal.timeout(60000)}).then(\n response => {\n ... | 2025-09-23T18:38:07 |
vercel/next.js | c0a661eef0b2d0fff52fc8ddb07f634e4b5c4287 | 38b69ff7093e941986af1bddd09191ecdd11f41a | [instant] Allow providing user feedback for blocking route errors (#90498) | [
{
"path": "packages/next/errors.json",
"patch": "@@ -1073,5 +1073,16 @@\n \"1072\": \"Missing segment data: <head>\",\n \"1073\": \"Expected static stage body to be available\",\n \"1074\": \"Page \\\"%s\\\" cannot use both \\\"use client\\\" and export const \\\"unstable_instant\\\".\",\n- \"1075\":... | 2026-02-27T07:36:30 |
electron/electron | e4f02faa0a5e67dbae663014255862c22dd2c2ce | d890ebd9fadce3611b38a57b9caf1434e8b52f87 | fix: only call popup closecallback for top-level menu (#49017) | [
{
"path": "shell/browser/ui/cocoa/electron_menu_controller.mm",
"patch": "@@ -563,16 +563,22 @@ - (void)menuWillOpen:(NSMenu*)menu {\n }\n \n - (void)menuDidClose:(NSMenu*)menu {\n- if (isMenuOpen_) {\n- isMenuOpen_ = NO;\n- if (model_)\n- model_->MenuWillClose();\n- // Post async task so tha... | 2025-11-21T15:37:46 |
nodejs/node | 6157c81f4b28a0448207e0c915e4d218c5fc30c3 | fc1d6d6b4c6f9c41817de09e7a37543d8067fc57 | assert: use a set instead of an array for faster lookup
This is a very small improvement for error creation.
PR-URL: https://github.com/nodejs/node/pull/61076
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "lib/internal/assert/assertion_error.js",
"patch": "@@ -10,6 +10,7 @@ const {\n ObjectDefineProperty,\n ObjectGetPrototypeOf,\n ObjectPrototypeHasOwnProperty,\n+ SafeSet,\n String,\n StringPrototypeRepeat,\n StringPrototypeSlice,\n@@ -42,7 +43,10 @@ const kReadableOperator = {\n const... | 2025-12-15T17:18:53 |
rust-lang/rust | 1a320616e9d090e7ef7ac90e5ceabd7e2248d97f | 7e28c7438a7b0c79a09724ba799d32ed461beb72 | [perf] Revert FastISel patch
This change caused a significant compile-time regression for
debug builds. | [
{
"path": "src/llvm-project",
"patch": "@@ -1 +1 @@\n-Subproject commit 05918363362b439b9b0bced3daa14badd75da790\n+Subproject commit 1cb4e3833c1919c2e6fb579a23ac0e2b22587b7e",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2026-03-28T16:43:29 |
facebook/react | cad813ac1ed5c04c6ccb390a3bdf5fedbbacaa45 | 720bb130694169f8d1bf1e8001a2177dd18cdf92 | Fix CI from stale merge (#34555) | [
{
"path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/default-config.txt",
"patch": "@@ -2,4 +2,4 @@ import type { PluginOptions } from \n 'babel-plugin-react-compiler/dist';\n ({\n //compilationMode: \"all\"\n-} satisfies Partial<PluginOptions>);\n\\ No newline at end of file\n+} s... | 2025-09-23T06:49:16 |
vercel/next.js | 38b69ff7093e941986af1bddd09191ecdd11f41a | 2ba4d6ee9dcf91fd0cb27167afdcd5e0a0322f52 | test: Run Adapter e2e tests with Turbopack instead (#90600)
<!-- 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 Cont... | [
{
"path": ".github/workflows/test_e2e_deploy_release.yml",
"patch": "@@ -146,7 +146,7 @@ jobs:\n overrideProxyAddress: ${{ inputs.overrideProxyAddress || '' }}\n \n test-deploy-adapter:\n- name: Run Deploy Adapter Tests\n+ name: Run Deploy Adapter Tests (Turbopack)\n needs: setup\n if:... | 2026-02-27T06:22:07 |
golang/go | 770864f3b452dbd83e33e42b9659c387d03425b9 | 1a6c5448a7004fb7073494ffdbd9bac5f1b8be9e | encoding/json/v2: remove SkipFunc sentinel error
WARNING: This commit contains breaking changes
for those already using GOEXPERIMENT=jsonv2.
Existing users of SkipFunc should migrate to errors.ErrUnsupported,
for which support was added in at least one prior commit.
Updates #74324
Change-Id: Ifbdee39165a134a33ea000... | [
{
"path": "src/encoding/json/v2/arshal_funcs.go",
"patch": "@@ -19,17 +19,6 @@ import (\n \t\"encoding/json/jsontext\"\n )\n \n-// SkipFunc may be returned by [MarshalToFunc] and [UnmarshalFromFunc] functions.\n-//\n-// Any function that returns SkipFunc must not cause observable side effects\n-// on the pr... | 2026-02-12T18:42:52 |
nodejs/node | fc1d6d6b4c6f9c41817de09e7a37543d8067fc57 | a968e4e672e4c60c4eebc53e2e875f6add764ea5 | assert,util: fix deep comparing invalid dates skipping properties
The property comparison of invalid dates regressed when starting
to handle invalid dates as being equal.
PR-URL: https://github.com/nodejs/node/pull/61076
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Revie... | [
{
"path": "lib/internal/util/comparisons.js",
"patch": "@@ -304,9 +304,9 @@ function objectComparisonStart(val1, val2, mode, memos) {\n }\n const time1 = DatePrototypeGetTime(val1);\n const time2 = DatePrototypeGetTime(val2);\n- if (time1 !== time2) {\n- // eslint-disable-next-line no-se... | 2025-12-15T16:56:36 |
electron/electron | 79e17ce4be43864c12f6d2ee1fbce107a0a6c5e4 | 2200a70e8d8debc59f7d8d315b17e208393def2a | fix: exception when reading system certificates via nodejs (#49028) | [
{
"path": "patches/node/.patches",
"patch": "@@ -42,3 +42,4 @@ api_promote_deprecation_of_v8_context_and_v8_object_api_methods.patch\n src_use_cp_utf8_for_wide_file_names_on_win32.patch\n fix_ensure_traverseparent_bails_on_resource_path_exit.patch\n reland_temporal_unflag_temporal.patch\n+src_handle_der_dec... | 2025-11-21T15:35:05 |
facebook/react | 1eca9a2747bfbe9832c3ef1665642e12d7d87d1e | cd85bb561612f9da467a0cb1978afbf843d25757 | [playground] Add compiler playground tests (#34528)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a pull request, please m... | [
{
"path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/default-config.txt",
"patch": "@@ -0,0 +1,5 @@\n+import type { PluginOptions } from \n+'babel-plugin-react-compiler/dist';\n+({\n+ //compilationMode: \"all\"\n+} satisfies Partial<PluginOptions>);\n\\ No newline at end of file",
... | 2025-09-22T16:11:45 |
electron/electron | 8f9637fde46c7957cd24dce12c7327a615b4fb30 | 5b5b24775e501fbe8da80978440a503c0ea24f21 | fix: revert the parent window remained interactive after the modal window was opened (#48977) | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -553,7 +553,7 @@ bool NativeWindowViews::IsFocused() const {\n }\n \n void NativeWindowViews::Show() {\n- if (is_modal() && NativeWindow::parent())\n+ if (is_modal() && NativeWindow::parent() && !widget()->IsVisible())\n static_cast<Native... | 2025-11-19T17:24:12 |
nodejs/node | 472f58684055a15b465e02466548df5def4ed640 | 28f468a61544c8175508ee2888224e8b660f8ea8 | os: freeze signals constant
Remove the ability to mutate signals constant as doing so can lead to
unexpected behavior, notably when spawning child process.
Fixes: https://github.com/nodejs/node/issues/44749
PR-URL: https://github.com/nodejs/node/pull/61038
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: A... | [
{
"path": "lib/os.js",
"patch": "@@ -25,6 +25,7 @@ const {\n ArrayPrototypePush,\n Float64Array,\n ObjectDefineProperties,\n+ ObjectFreeze,\n StringPrototypeSlice,\n SymbolToPrimitive,\n } = primordials;\n@@ -330,6 +331,8 @@ module.exports = {\n machine: getMachine,\n };\n \n+ObjectFreeze(const... | 2025-12-22T16:14:46 |
golang/go | 1a6c5448a7004fb7073494ffdbd9bac5f1b8be9e | 58bc91a9671f3aec46a7e3c1e55d1d0e303dfe4e | cmd/go: document PATH behavior for `go run` and `go tool`
Fixes #77509
Change-Id: I1b6b38f86e4c8b18dd7638b4dd8246e2993e8307
Reviewed-on: https://go-review.googlesource.com/c/go/+/745100
Reviewed-by: Sean Liao <sean@liao.dev>
Reviewed-by: Junyang Shao <shaojunyang@google.com>
Reviewed-by: Michael Matloob <matloob@gola... | [
{
"path": "src/cmd/go/alldocs.go",
"patch": "@@ -1792,6 +1792,10 @@\n // used by debuggers, to reduce build time. To include debugger information in\n // the binary, use 'go build'.\n //\n+// The go command places $GOROOT/bin at the beginning of $PATH in the\n+// subprocess environment, so that subprocesses... | 2026-02-12T21:40:01 |
facebook/react | d415fd3ed716f02f463232341ab21e909e0058ca | 5e3cd53f20189001711f90d4db671f36d49a91f5 | [Flight] Handle Lazy in `renderDebugModel` (#34536)
If we don't handle Lazy types specifically in `renderDebugModel`, all of
their properties will be emitted using `renderDebugModel` as well. This
also includes its `_debugInfo` property, if the Lazy comes from the
Flight client. That array might contain objects that a... | [
{
"path": "packages/react-server/src/ReactFlightServer.js",
"patch": "@@ -4702,6 +4702,70 @@ function renderDebugModel(\n element._store.validated,\n ];\n }\n+ case REACT_LAZY_TYPE: {\n+ // To avoid actually initializing a lazy causing a side-effect, we make\n+ // ... | 2025-09-19T21:38:11 |
electron/electron | 13e84e686814ed6b35ace75f636e30be56e5ac1d | 54a617caab3871ccffbc5e3a9bd2a86381fa5ebb | fix: abort more descriptively for beforeunload (#48960) | [
{
"path": "docs/api/browser-window.md",
"patch": "@@ -1252,7 +1252,8 @@ Captures a snapshot of the page within `rect`. Omitting `rect` will capture the\n \n Returns `Promise<void>` - the promise will resolve when the page has finished loading\n (see [`did-finish-load`](web-contents.md#event-did-finish-load)... | 2025-11-18T17:16:08 |
nodejs/node | 28f468a61544c8175508ee2888224e8b660f8ea8 | 26b7fd2009c348a64674da78ddda1076e74595d2 | module: fix sync resolve hooks for require with node: prefixes
Previously, when require()-ing builtins with the node: prefix,
the sync resolve hooks were not properly invoked, and load hooks
could not override the builtin's format. This fixes the
handling and enables redirecting prefixed built-ins to on-disk
files and... | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -1111,7 +1111,9 @@ function resolveForCJSWithHooks(specifier, parent, isMain) {\n filename = convertURLToCJSFilename(url);\n }\n \n- return { __proto__: null, url, format, filename, parentURL };\n+ const result = { __proto__: null, url, fo... | 2025-12-22T14:35:45 |
golang/go | 58bc91a9671f3aec46a7e3c1e55d1d0e303dfe4e | 4dca8b3e619a321de36b99b6b514d9c01ef76e5e | cmd/link: support PIE on linux/s390x without cgo
Enable PIE builds on linux/s390x when CGO is disabled by teaching
the linker to handle dynamic relocations against SDYNIMPORT
symbols.
This adds support for TLS_IE and handles R_CALL, R_PCRELDBL, and
R_ADDR relocations by generating the appropriate PLT/GOT entries
inst... | [
{
"path": "src/cmd/dist/test.go",
"patch": "@@ -1243,7 +1243,7 @@ func (t *tester) internalLinkPIE() bool {\n \t}\n \tswitch goos + \"-\" + goarch {\n \tcase \"darwin-amd64\", \"darwin-arm64\",\n-\t\t\"linux-amd64\", \"linux-arm64\", \"linux-loong64\", \"linux-ppc64le\",\n+\t\t\"linux-amd64\", \"linux-arm64... | 2026-02-05T15:05:23 |
facebook/react | 6eda534718d09a26d58d65c0a376e05d7e2a3358 | c03a51d8361b0c861f0343ab46c8bb2e8f0af3b0 | [playground] bug fixes & UX improvements (#34499)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
Before submitting a pull request, please mak... | [
{
"path": "compiler/apps/playground/__tests__/e2e/page.spec.ts",
"patch": "@@ -136,7 +136,7 @@ test('editor should compile from hash successfully', async ({page}) => {\n path: 'test-results/01-compiles-from-hash.png',\n });\n const text =\n- (await page.locator('.monaco-editor').nth(1).allInnerTe... | 2025-09-18T19:44:25 |
nodejs/node | 26b7fd2009c348a64674da78ddda1076e74595d2 | d7e4108bc1beb7dc01890b032e7ba89d12feed4e | util: limit `inspect` to only show own properties
`Error`'s `cause` and `errors` properties would be visible even if these
were not own properties. This is changed to align with all other
parts of the `inspect` handling.
Fixes: https://github.com/nodejs/node/issues/60717
PR-URL: https://github.com/nodejs/node/pull/61... | [
{
"path": "lib/internal/util/inspect.js",
"patch": "@@ -1961,15 +1961,15 @@ function formatError(err, constructor, tag, ctx, keys) {\n }\n name ??= 'Error';\n \n- if ('cause' in err &&\n+ if (ObjectPrototypeHasOwnProperty(err, 'cause') &&\n (keys.length === 0 || !ArrayPrototypeIncludes(keys, 'ca... | 2025-12-22T13:06:14 |
golang/go | 4dca8b3e619a321de36b99b6b514d9c01ef76e5e | 4f5d5ddf7c79305cc49c777efa3c365dd58f34df | encoding/json/v2: dual support errors.ErrUnsupported and SkipFunc
This change supports both errors.ErrUnsupported and SkipFunc.
In a future change, we will remove SkipFunc entirely in favor
of using errors.ErrUnsupported, which exists for a similar pupose.
Updates #74324
Change-Id: I5f1ada8e3914513d7d23c504f5965ca8d... | [
{
"path": "src/encoding/json/v2/arshal.go",
"patch": "@@ -50,7 +50,7 @@ var export = jsontext.Internal.Export(&internal.AllowInternalUse)\n //\n // - If any type-specific functions in a [WithMarshalers] option match\n // the value type, then those functions are called to encode the value.\n-// If ... | 2026-02-10T19:34:35 |
vercel/next.js | 2ba4d6ee9dcf91fd0cb27167afdcd5e0a0322f52 | 350ce78c75a6005b891765d772121a20dced4042 | refactor(turbopack-node): support execution by napi and worker_threads (#86266)
1. refactor `turbopack-node` to run webpack loaders via nodejs
`worker_threads`
2. the `child_proccess` loader runner is keep in the crate feature to
run unit tests in `turbopack-tests` or run `turbopack-cli`
3. if wanting to switch back t... | [
{
"path": "Cargo.lock",
"patch": "@@ -4465,6 +4465,7 @@ dependencies = [\n \"turbo-tasks\",\n \"turbo-tasks-backend\",\n \"turbo-tasks-malloc\",\n+ \"turbopack-node\",\n \"turbopack-trace-utils\",\n ]\n \n@@ -4607,6 +4608,7 @@ dependencies = [\n \"turbopack-core\",\n \"turbopack-ecmascript-hmr-protoco... | 2026-02-27T04:52:32 |
electron/electron | 54a617caab3871ccffbc5e3a9bd2a86381fa5ebb | 530be28bc570a1d18d3c6a59ac7553638620a0f6 | chore: bump node to v24.11.1 (main) (#48917)
* chore: bump node in DEPS to v24.11.1
* src: add a default branch for module phase
https://github.com/nodejs/node/pull/60261
* src: conditionally disable source phase imports by default
https://github.com/nodejs/node/pull/60364
* chore: update patches
* src: update l... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '144.0.7526.0',\n 'node_version':\n- 'v24.11.0',\n+ 'v24.11.1',\n 'nan_version':\n '675cefebca42410733da8a454c8d9391fcebfbc2',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2025-11-18T14:34:51 |
golang/go | 1915ea0f1e5965f982fcc9efd79076f707623c27 | cba008453e9535840ebfcf6a038a4172008ef1fc | net/netip: optimize Prefix.String
goos: linux
goarch: amd64
pkg: net/netip
cpu: Intel(R) Core(TM) Ultra 9 285K
│ /tmp/BenchmarkPrefixString_before.txt │ /tmp/BenchmarkPrefixString_after.txt │
│ sec/op │ sec/op vs base │
PrefixString-2... | [
{
"path": "src/net/netip/netip.go",
"patch": "@@ -1592,5 +1592,23 @@ func (p Prefix) String() string {\n \tif !p.IsValid() {\n \t\treturn \"invalid Prefix\"\n \t}\n-\treturn p.ip.String() + \"/\" + strconv.Itoa(p.Bits())\n+\tvar b []byte\n+\tswitch {\n+\tcase p.ip.z == z4:\n+\t\tconst maxCap = len(\"255.255... | 2026-02-11T10:33:35 |
nodejs/node | ed6ec9626eddee3ad00edfea4b0535bb9ee2638d | dff46c07c37f5cacc63451b84ba21478c4bbc45c | test: make buffer sizes 32bit-aware in test-internal-util-construct-sab
PR-URL: https://github.com/nodejs/node/pull/61026
Fixes: https://github.com/nodejs/node/issues/61025
Refs: https://github.com/nodejs/node/pull/60497
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> | [
{
"path": "test/parallel/test-internal-util-construct-sab.js",
"patch": "@@ -3,16 +3,20 @@\n \n require('../common');\n const assert = require('assert');\n+const { kMaxLength } = require('buffer');\n const { isSharedArrayBuffer } = require('util/types');\n const { constructSharedArrayBuffer } = require('int... | 2025-12-20T22:20:21 |
electron/electron | 530be28bc570a1d18d3c6a59ac7553638620a0f6 | 537fd7b10bd5f9045db863ceb997976e20cce1a1 | fix: handle empty event scenario in ipc callbacks (#48987) | [
{
"path": "shell/browser/electron_api_ipc_handler_impl.cc",
"patch": "@@ -49,6 +49,8 @@ void ElectronApiIPCHandlerImpl::Message(bool internal,\n v8::Isolate* isolate = electron::JavascriptEnvironment::GetIsolate();\n v8::HandleScope handle_scope(isolate);\n auto* event = MakeIPCEvent(isolate, se... | 2025-11-17T20:28:25 |
vercel/next.js | 8430d3711962588d07a03e2808eeb3cb7d40893a | 94db8c6ea79051b2605c3f19dfec027efac14e55 | Fix middleware case with adapters (#90624)
Follow-up to https://github.com/vercel/next.js/pull/90611 this fixes the
middleware case to ensure it doesn't create a `_next/data` output.
x-ref:
https://github.com/vercel/next.js/actions/runs/22465910596/job/65075127711#step:34:302 | [
{
"path": "packages/next/src/build/adapter/build-complete.ts",
"patch": "@@ -771,7 +771,10 @@ export async function handleBuildComplete({\n pathname: rscPathname,\n id: page.name + '.rsc',\n })\n- } else if (serverPropsPages.has(pathname)) {\n+ } else if (\n+ ... | 2026-02-27T02:02:15 |
facebook/react | c03a51d8361b0c861f0343ab46c8bb2e8f0af3b0 | ad578aa01fcd08488b8378c7538d802e7a1e8b26 | Move `getDebugInfo` test util function to `internal-test-utils` (#34523)
In an upstack PR, I need `getDebugInfo` in another test file, so I'm
moving it to `internal-test-utils` so it can be shared. | [
{
"path": "packages/internal-test-utils/ReactInternalTestUtils.js",
"patch": "@@ -16,6 +16,7 @@ import {\n clearErrors,\n createLogAssertion,\n } from './consoleMock';\n+export {getDebugInfo} from './debugInfo';\n export {act, serverAct} from './internalAct';\n const {assertConsoleLogsCleared} = require... | 2025-09-18T19:32:36 |
golang/go | cba008453e9535840ebfcf6a038a4172008ef1fc | 3e4143dd440ac2621ef03d394cdc2cc0ac34acd5 | cmd/cover: exclude commented-out code from coverage instrumentation
Add logic to exclude purely commented lines from coverage instrumentation.
When instrumenting Go code for coverage, the cover tool now identifies
and excludes lines that contain only comments from coverage blocks.
This prevents commented-out code fro... | [
{
"path": "src/cmd/cover/cover.go",
"patch": "@@ -13,6 +13,7 @@ import (\n \t\"fmt\"\n \t\"go/ast\"\n \t\"go/parser\"\n+\t\"go/scanner\"\n \t\"go/token\"\n \t\"internal/coverage\"\n \t\"internal/coverage/encodemeta\"\n@@ -266,6 +267,142 @@ type File struct {\n \tpkg *Package\n }\n \n+// Range represents... | 2026-02-13T09:00:43 |
nodejs/node | dff46c07c37f5cacc63451b84ba21478c4bbc45c | 3b7477c4d57862d587026594e2f1b5ba15a62a14 | crypto: move DEP0182 to End-of-Life
This commit moves support for implicitly short GCM authentication tags
to End-of-Life status, thus requiring applications to explicitly specify
the `authTagLength` for authentication tags shorter than 128 bits.
There is quite a bit of refactoring to be done in the C++ source code.
... | [
{
"path": "doc/api/crypto.md",
"patch": "@@ -925,6 +925,11 @@ When passing a string as the `buffer`, please consider\n <!-- YAML\n added: v1.0.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/61084\n+ description: Using GCM tag lengths other than 128 bits without sp... | 2025-12-20T22:02:29 |
electron/electron | 71be38f87f4f064b5f5e0ac1f6820645b07dc7f7 | 925966fde4ed32d11c57815fc526a0f9f2d2d28c | fix: revert enabling WASM trap handlers in all Node.js processes (#48973)
Revert "fix: enable wasm trap handlers in all Node.js processes (#48788)"
This reverts commit ca0b46b4130a8b48ab0b402ea16efe1ce655044f. | [
{
"path": "shell/browser/electron_browser_main_parts.cc",
"patch": "@@ -62,7 +62,6 @@\n #include \"shell/common/logging.h\"\n #include \"shell/common/node_bindings.h\"\n #include \"shell/common/node_includes.h\"\n-#include \"shell/common/v8_util.h\"\n #include \"ui/base/idle/idle.h\"\n #include \"ui/base/l1... | 2025-11-14T23:23:15 |
facebook/react | 581321160fe0d9d9ef461174c7e14cbbed341d28 | 1bcdd224b10999138ef5aa1c1917b28d918e5421 | [Compiler Bug] Complier mark ts instantiation expression as reorderable in build hir (#34488)
<!--
Thanks for submitting a pull request!
We appreciate you spending the time to work on these changes. Please
provide enough information so that others can review your pull request.
The three fields below are mandatory.
... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts",
"patch": "@@ -3081,6 +3081,12 @@ function isReorderableExpression(\n return true;\n }\n }\n+ case 'TSInstantiationExpression': {\n+ const innerExpr = (expr as NodePath<t.TSInstantiationExpression>).get(\... | 2025-09-18T16:34:47 |
golang/go | 3e4143dd440ac2621ef03d394cdc2cc0ac34acd5 | 8a0bc29bedd45324c52cfdc7717fabfc82673e4d | doc: document GODEBUG carve out for security releases
Fixes #63741
Change-Id: I9c40fff7d3ad67565205657c5d89934a3f1f576c
Reviewed-on: https://go-review.googlesource.com/c/go/+/723102
Auto-Submit: Roland Shoemaker <roland@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.c... | [
{
"path": "doc/godebug.md",
"patch": "@@ -85,6 +85,9 @@ if the work module's `go.mod` or the workspace's `go.work`\n says `go` `1.20`, then the program defaults to `panicnil=1`,\n matching Go 1.20 instead of Go 1.21.\n \n+As an exception, GODEBUGs introduced for security releases\n+will have the new behavio... | 2025-11-21T22:40:52 |
rust-lang/rust | 024acdd4b6e04efde74559f9a9416558d89aa165 | fda6d37bb88ee12fd50fa54d15859f1f91b74f55 | Fix ambiguous parsing in bootstrap.py | [
{
"path": "src/bootstrap/bootstrap.py",
"patch": "@@ -1259,7 +1259,12 @@ def check_vendored_status(self):\n \n def parse_args(args):\n \"\"\"Parse the command line arguments that the python script needs.\"\"\"\n- parser = argparse.ArgumentParser(add_help=False)\n+\n+ # Pass allow_abbrev=False to r... | 2026-03-28T14:51:02 |
electron/electron | c896ab80fe8ad39eb87d5d4107b94f1d9afa22d4 | 40b673873534f4c4a7cf3cb633f977610857b773 | fix: handle tar.xz files in uploaders, add to breaking changes (#48941)
* fix: handle tar.xz files in uploaders, add to breaking changes
* docs: add additional file extension info | [
{
"path": "docs/breaking-changes.md",
"patch": "@@ -20,6 +20,11 @@ Using the `clipboard` API directly in the renderer process is deprecated.\n If you want to call this API from a renderer process, place the API call in\n your preload script and expose it using the [contextBridge](https://www.electronjs.org/... | 2025-11-13T21:03:24 |
nodejs/node | 3b7477c4d57862d587026594e2f1b5ba15a62a14 | 79d695356ad4de3e8940718d43deb180d2196f76 | test_runner: fix lazy `test.assert` accessor
PR-URL: https://github.com/nodejs/node/pull/61097
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Pietro Marchini <pietro.marchini94@gmail.com>
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Aviv Keller <me@aviv.sh> | [
{
"path": "lib/test.js",
"patch": "@@ -62,14 +62,18 @@ ObjectDefineProperty(module.exports, 'snapshot', {\n },\n });\n \n+let lazyAssert;\n+\n ObjectDefineProperty(module.exports, 'assert', {\n __proto__: null,\n configurable: true,\n enumerable: true,\n get() {\n- const { register } = require(... | 2025-12-20T18:54:32 |
vercel/next.js | 89f3649a00f6ed5c35949e3683e054ad509bd679 | 8f5afa357d8da657968117d1cf4f6663d8dbff03 | Turbopack: Panic if a top-level task attempts an eventually consistent read (#89735)
We've had some really bad bugs in the past, which can be hard to root-cause due to eventually-consistent reads a the top-level, e.g. https://github.com/vercel/next.js/pull/77511
Outside of tests, there's no good justification for doi... | [
{
"path": "Cargo.lock",
"patch": "@@ -9676,6 +9676,7 @@ dependencies = [\n \"serde\",\n \"tokio\",\n \"trybuild\",\n+ \"turbo-rcstr\",\n \"turbo-tasks\",\n \"turbo-tasks-backend\",\n \"turbo-tasks-testing\",",
"additions": 1,
"deletions": 0,
"language": "Unknown"
},
{
"path": "crat... | 2026-02-27T00:14:30 |
golang/go | c9cbeb0a1b08a9830a3d2d4abe0c2108e52f7647 | 92c7fcf137848ad74f88f75fc21bcb159eb08104 | encoding/json/v2: remove `unknown` tag option and DiscardUnknownMembers
WARNING: This commit contains breaking changes
for those already using GOEXPERIMENT=jsonv2.
This removes support for the `unknown` tag option and
the DiscardUnknownMembers marshal option.
The `unknown` tag option semantics are a bit too subtle
e... | [
{
"path": "src/encoding/json/internal/jsonflags/flags.go",
"patch": "@@ -120,7 +120,6 @@ const (\n \tFormatNilSliceAsNull // marshal only\n \tOmitZeroStructFields // marshal only\n \tMatchCaseInsensitiveNames // marshal or unmarshal\n-\tDiscardUnknownMembers // marshal only\n \tRejectUnknownMe... | 2026-02-03T01:52:37 |
facebook/react | 1bcdd224b10999138ef5aa1c1917b28d918e5421 | 84af9085c11411e44cc5e5aee6cf00c02a78986e | [compiler] Don't show hint about ref-like naming if we infer another type (#34521)
Some components accept a union of a ref callback function or ref object.
In this case we may infer the type as a function due to the presence of
invoking the ref callback function. In that case, we currently report a
"Hint: name `fooRef... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferMutationAliasingEffects.ts",
"patch": "@@ -1816,8 +1816,16 @@ function computeSignatureForInstruction(\n }\n case 'PropertyStore':\n case 'ComputedStore': {\n+ /**\n+ * Add a hint about naming as \"ref\"/\"-Re... | 2025-09-18T16:26:10 |
nodejs/node | aad8c055952839392e3983830cad2114f7fa3863 | 41c507f56ddff2cd6e5a5509e61bfceab826d9b2 | repl: fix getters triggering side effects during completion
PR-URL: https://github.com/nodejs/node/pull/61043
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Aviv Keller <me@aviv.sh> | [
{
"path": "lib/internal/repl/completion.js",
"patch": "@@ -731,35 +731,15 @@ function includesProxiesOrGetters(expr, exprStr, evalFn, ctx, callback) {\n \n if (astProp.type === 'Literal') {\n // We have something like `obj['foo'].x` where `x` is the literal\n-\n- if (safeIsProxyAccess(obj, as... | 2025-12-20T18:54:12 |
golang/go | 92c7fcf137848ad74f88f75fc21bcb159eb08104 | e5df06bc55f18ff92fb1c2fce2af69e80d9b3194 | time: document that Parse does not support leap seconds
Fixes #50888
Change-Id: I2691442d7fccd716cd19939cf3931317e21ee4ed
Reviewed-on: https://go-review.googlesource.com/c/go/+/743060
Reviewed-by: Michael Pratt <mpratt@google.com>
Reviewed-by: Junyang Shao <shaojunyang@google.com>
LUCI-TryBot-Result: Go LUCI <golang-... | [
{
"path": "src/time/format.go",
"patch": "@@ -1002,6 +1002,9 @@ func skip(value, prefix string) (string, error) {\n // For layouts specifying the two-digit year 06, a value NN >= 69 will be treated\n // as 19NN and a value NN < 69 will be treated as 20NN.\n //\n+// Timestamps representing leap seconds (seco... | 2026-02-07T14:45:46 |
electron/electron | 40b673873534f4c4a7cf3cb633f977610857b773 | 05b9a5bfc70385268fcbe925a90adc1f5ef98299 | test: fix types in chromium-spec (#48943) | [
{
"path": "spec/chromium-spec.ts",
"patch": "@@ -915,7 +915,7 @@ describe('chromium features', () => {\n \n if (action !== 'none') {\n // Make the PermissionRequestHandler behave according to action variable passed for this test\n- testSession.setPermissionRequestHandler((_w... | 2025-11-13T20:25:09 |
vercel/next.js | ee885f864184e9351db29f6a590ca8c3811aece5 | 0db78041ad448edae78c77d9b8679bd94e7effa5 | Pre-warm a single NodeJS instance when the next devserver starts (#90174)
When cold-booting `next dev` on a fresh create-next-app, on the first server hit we need to fetch fonts and compile CSS, which takes up nearly half of the request time.
It shouldn't be necessary to wait until the first server request to launc... | [
{
"path": "Cargo.lock",
"patch": "@@ -10193,9 +10193,11 @@ dependencies = [\n \"turbo-bincode\",\n \"turbo-rcstr\",\n \"turbo-tasks\",\n+ \"turbo-tasks-backend\",\n \"turbo-tasks-bytes\",\n \"turbo-tasks-env\",\n \"turbo-tasks-fs\",\n+ \"turbo-tasks-testing\",\n \"turbopack-cli-utils\",\n \"turbopac... | 2026-02-26T22:40:56 |
facebook/react | e3c9656d20618ed321aea85cb3d844cbd1dce078 | 27b4076ab051b4d0e1ae6cec3266367294df024c | Ensure Performance Track are Clamped and Don't overlap (#34509)
This simplifies the logic for clamping the start times of various
phases. Instead of checking in multiple places I ensure we compute a
value for each phase that is then clamped to the next phase so they
don't overlap. If they're zero they're not printed.
... | [
{
"path": "packages/react-reconciler/src/ReactFiberPerformanceTrack.js",
"patch": "@@ -636,38 +636,52 @@ export function logBlockingStart(\n ): void {\n if (supportsUserTiming) {\n currentTrack = 'Blocking';\n+ // Clamp start times\n+ if (updateTime > 0) {\n+ if (updateTime > renderStartTim... | 2025-09-17T14:52:02 |
nodejs/node | 038cb750122ac94485b9337c7a6aa3284dae08c7 | dc97b507d07ea3e89066e1796a5dc320f6b0cf10 | doc: fix test settime docs
PR-URL: https://github.com/nodejs/node/pull/61117
Reviewed-By: Aviv Keller <me@aviv.sh>
Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day>
Reviewed-By: Xuguang Mei <meixuguang@gmail.com> | [
{
"path": "doc/api/test.md",
"patch": "@@ -175,7 +175,7 @@ example of a state file:\n ```json\n [\n {\n- \"test.js:10:5\": { \"passed_on_attempt\": 0, \"name\": \"test 1\" },\n+ \"test.js:10:5\": { \"passed_on_attempt\": 0, \"name\": \"test 1\" }\n },\n {\n \"test.js:10:5\": { \"passed_on_at... | 2025-12-20T18:11:05 |
golang/go | e5df06bc55f18ff92fb1c2fce2af69e80d9b3194 | b464a924a9bdd00627cbc3baca86a0e042fccb8a | time: document that LoadLocation creates new Location instances
Fixes #77385
Change-Id: I7e7ddb1c71f0aebd893f640d476b273e229b059a
Reviewed-on: https://go-review.googlesource.com/c/go/+/743040
Reviewed-by: Ian Lance Taylor <iant@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservicea... | [
{
"path": "src/time/zoneinfo.go",
"patch": "@@ -645,12 +645,13 @@ var errLocation = errors.New(\"time: invalid location name\")\n var zoneinfo *string\n var zoneinfoOnce sync.Once\n \n-// LoadLocation returns the Location with the given name.\n+// LoadLocation returns a [Location] with the given name.\n //\... | 2026-02-07T14:38:05 |
electron/electron | 05b9a5bfc70385268fcbe925a90adc1f5ef98299 | b9d3f1526510d5bac8de48333f2eb0f63d8126b8 | docs: fix docs for `app.isHardwareAccelerationEnabled()` (#48925) | [
{
"path": "docs/api/app.md",
"patch": "@@ -1218,7 +1218,7 @@ This method can only be called before app is ready.\n \n ### `app.isHardwareAccelerationEnabled()`\n \n-Returns `boolean` - whether hardware acceleration is currently disabled.\n+Returns `boolean` - whether hardware acceleration is currently enabl... | 2025-11-13T19:39:59 |
vercel/next.js | 0db78041ad448edae78c77d9b8679bd94e7effa5 | b6d47641d7f0399a687cb927defd827b476d4441 | Fix edge index page _next/data route (#90611)
Fixes failing assertion with turbopack
Verified against turbopack + adapter deploy test locally
<img width="2076" height="1336" alt="CleanShot 2026-02-26 at 13 25
30@2x"
src="https://github.com/user-attachments/assets/a8c66314-8163-4371-b02a-dc7146989425"
/>
x-ref:
http... | [
{
"path": "packages/next/src/build/adapter/build-complete.ts",
"patch": "@@ -677,6 +677,11 @@ export async function handleBuildComplete({\n }\n \n const route = page.page.replace(/^(app|pages)\\//, '')\n+ const pathname = isAppPrefix\n+ ? normalizeAppPath(route)\n+ :... | 2026-02-26T21:52:16 |
facebook/react | 78997291302c42b788dafa4c12da246e44be2dda | a51f925217e7c2a92fe4df707487acb29cb12b1e | [compiler] Option to treat "set-" prefixed callees as setState functions (#34505)
Calling setState functions during render can lead to extraneous renders
or even infinite loops. We also have runtime detection for loops, but
static detection is obviously even better.
This PR adds an option to infer identifers as setSt... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts",
"patch": "@@ -621,6 +621,13 @@ export const EnvironmentConfigSchema = z.object({\n */\n enableTreatRefLikeIdentifiersAsRefs: z.boolean().default(true),\n \n+ /**\n+ * Treat identifiers as SetState type if both\n+ * -... | 2025-09-16T22:48:27 |
vercel/next.js | 9d13b676e8a3f8f8f8ecc35df7e2ea94ab95bbd3 | 2ba73b7a30686740cc6d4143c20fb39020e10494 | Add `unstable_retry()` to error.js (#89685)
Extends the error components API to give better control over recovery.
Previously, the `reset()` prop only cleared the error state and
re-rendered the children. However, this only handles a temporary
rendering error.
The error can be due to data fetching or an RSC phase. In... | [
{
"path": "packages/next/src/client/components/builtin/global-error.tsx",
"patch": "@@ -1,11 +1,13 @@\n 'use client'\n \n+import React from 'react'\n import { HandleISRError } from '../handle-isr-error'\n import { errorStyles, errorThemeCss, ErrorIcon } from './error-styles'\n \n export type GlobalErrorComp... | 2026-02-26T20:22:27 |
electron/electron | b9d3f1526510d5bac8de48333f2eb0f63d8126b8 | 8ecd064d2c3e378e1f874726b83f84f0350521f2 | fix: crash on windows when UTF-8 is in path (#48898)
In 6399527761b43abb5a3ea40dd64eb05efad3b9de we changed the path strings
that `node_modules.cc` operates on from single-byte to wide strings.
Unfortunately this means that `generic_path()` that the
"fix: ensure TraverseParent bails on resource path exit" patch was
ca... | [
{
"path": "patches/node/.patches",
"patch": "@@ -26,7 +26,6 @@ build_allow_unbundling_of_node_js_dependencies.patch\n build_change_crdtp_protocoltypetraits_signatures_to_avoid_conflict.patch\n fix_adjust_wpt_and_webidl_tests_for_enabled_float16array.patch\n refactor_attach_cppgc_heap_on_v8_isolate_creation.... | 2025-11-13T18:09:34 |
golang/go | b464a924a9bdd00627cbc3baca86a0e042fccb8a | 30d5c1b0572f7d021def277097df6a21f300995e | cmd/go: do not collect build information for test packages when not needed
When build information is not needed for go list output (when -export=false and Stale and StaleReason fields are not printed), the "SuppressBuildInfo" option is set to true, so that cmd/go/internal/load does not collect it (in particular VCS in... | [
{
"path": "src/cmd/go/internal/load/test.go",
"patch": "@@ -294,7 +294,7 @@ func TestPackagesAndErrors(loaderstate *modload.State, ctx context.Context, done\n \n \tpb := p.Internal.Build\n \tpmain.DefaultGODEBUG = defaultGODEBUG(loaderstate, pmain, pb.Directives, pb.TestDirectives, pb.XTestDirectives)\n-\ti... | 2026-02-03T13:25:23 |
nodejs/node | dc97b507d07ea3e89066e1796a5dc320f6b0cf10 | e5b6f89328cdbee35734ed5f6b69c5ee16fe14ee | util: mark proxied objects as such when inspecting them
Fixes: https://github.com/nodejs/node/issues/60964
PR-URL: https://github.com/nodejs/node/pull/61029
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Jame... | [
{
"path": "lib/internal/util/inspect.js",
"patch": "@@ -1180,7 +1180,13 @@ function formatValue(ctx, value, recurseTimes, typedArray) {\n return ctx.stylize(`[Circular *${index}]`, 'special');\n }\n \n- return formatRaw(ctx, value, recurseTimes, typedArray);\n+ const formatted = formatRaw(ctx, value... | 2025-12-20T17:02:17 |
facebook/react | 5e0c951b58a98feed034e2bb92f25ae6d0616855 | 348a4e2d44fed940313d0657ee180083d12ffc04 | Add forwards fill mode to animations in view transition fixture (#34502)
It turns out that View Transitions can sometimes overshoot and then we
need to ensure it fills. It can otherwise sometimes flash in Chrome.
This is something users might hit as well. | [
{
"path": "fixtures/view-transition/src/components/Transitions.module.css",
"patch": "@@ -56,10 +56,10 @@\n }\n \n ::view-transition-new(.enter-slide-right):only-child {\n- animation: enter-slide-right ease-in 0.25s;\n+ animation: enter-slide-right ease-in 0.25s forwards;\n }\n ::view-transition-old(.exit... | 2025-09-16T14:20:40 |
vercel/next.js | 2ba73b7a30686740cc6d4143c20fb39020e10494 | 10725f8499d1e5dbd824931cd94da3f4c0509b7b | Fix per-segment prefetching for initial loads with Cache Components (#90610)
The `S` field in the RSC payload was only set to `true` during static
generation, but the client used it to determine whether a route supports
per-segment prefetching (`isPPREnabled` on the route cache entry). For
partially static pages with ... | [
{
"path": "packages/next/src/client/app-index.tsx",
"patch": "@@ -325,7 +325,7 @@ export async function hydrate(\n initialCanonicalUrlParts: initialRSCPayload.c,\n initialRenderedSearch: initialRSCPayload.q,\n initialCouldBeIntercepted: initialRSCPayload.i,\n- initialPrerendered: init... | 2026-02-26T20:21:17 |
golang/go | 30d5c1b0572f7d021def277097df6a21f300995e | a44ed023f600de1b8fbeb2be514ec20c964b3330 | net: always set the servers field to defaultNS
When the field is parsed from a file, it would never
have len(servers) == 0, lets enforce that and update
test cases where we had it wrong.
Change-Id: I7fa6ebcf63b9fe20fbbf791113ca948d6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/743020
Auto-Submit: Mic... | [
{
"path": "src/net/conf_test.go",
"patch": "@@ -142,7 +142,7 @@ func TestConfHostLookupOrder(t *testing.T) {\n \t\t\tc: &conf{\n \t\t\t\tgoos: \"openbsd\",\n \t\t\t},\n-\t\t\tresolv: &dnsConfig{lookup: []string{\"bind\", \"file\"}},\n+\t\t\tresolv: &dnsConfig{servers: defaultNS, lookup: []string{\"bind\", \... | 2026-02-07T10:03:17 |
nodejs/node | 1a345922e45c4b7165437648c64075b44216d281 | 0a5418088fb724c0ab4a958447e338ad13c6d2eb | doc: add a tip about developer mode on Windows
On Windows, creating symlinks requires Developer Mode to be
enabled or running the command as Administrator. Tests that
rely on creating symlinks may fail with EPERM errors if
symlink creation is not permitted. Add a tip about this
for the docs about running tests on Wind... | [
{
"path": "BUILDING.md",
"patch": "@@ -870,6 +870,11 @@ To test if Node.js was built correctly:\n Release\\node -e \"console.log('Hello from Node.js', process.version)\"\n ```\n \n+> \\[!TIP]\n+> On Windows, creating symlinks requires [Developer Mode][] to be enabled or\n+> running the command as Administra... | 2025-12-20T12:28:30 |
electron/electron | 8ecd064d2c3e378e1f874726b83f84f0350521f2 | 511809ef63c97c1769254e5a10ffd15465abbcad | chore: bump chromium to 144.0.7526.0 (main) (#48932)
* chore: bump chromium in DEPS to 144.0.7526.0
* 7138583: [Partitioned Popins Removal] IPC
https://chromium-review.googlesource.com/c/chromium/src/+/7138583
* chore: fixup patch indices
* 7139794: Partially remove check for global handlers in plugin mime_type co... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '144.0.7522.0',\n+ '144.0.7526.0',\n 'node_version':\n 'v24.11.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "patche... | 2025-11-13T16:09:51 |
facebook/react | 92d7ad5dd976f4b7bc22abc507569b30609b1579 | 67a44bcd1b09ab809cf503b39c2568212e13e1a5 | [DevTools] fix: validate url in file fetcher bridging calls (#34498)
This was prone to races and sometimes messed up symbolication when
multiple source maps were fetched simultaneously. | [
{
"path": "packages/react-devtools-extensions/src/main/fetchFileWithCaching.js",
"patch": "@@ -82,7 +82,7 @@ const fetchFromPage = async (url, resolve, reject) => {\n debugLog('[main] fetchFromPage()', url);\n \n function onPortMessage({payload, source}) {\n- if (source === 'react-devtools-background... | 2025-09-15T17:14:09 |
vercel/next.js | 10725f8499d1e5dbd824931cd94da3f4c0509b7b | 4de94897443e1debb4fe298069591ef07c59db95 | Allow `reset()` from user's global-error (#89684)
User's `global-error.js` is within the router. There's no reason it
shouldn't have access to the options available to the `error.js`
component. It was already available on prod. This PR syncs dev behavior
to prod.
For the follow-up feature, `retry()` will also be avai... | [
{
"path": "packages/next/src/client/components/builtin/global-error.tsx",
"patch": "@@ -5,6 +5,7 @@ import { errorStyles, errorThemeCss, ErrorIcon } from './error-styles'\n \n export type GlobalErrorComponent = React.ComponentType<{\n error: any\n+ reset: () => void\n }>\n \n function DefaultGlobalError(... | 2026-02-26T19:56:15 |
Subsets and Splits
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.