repo stringclasses 15
values | fix_commit stringlengths 40 40 | buggy_commit stringlengths 40 40 | message stringlengths 3 64.3k | files listlengths 1 300 | timestamp timestamp[s]date 2013-03-13 20:45:00 2026-04-11 07:48:46 |
|---|---|---|---|---|---|
golang/go | c1acdcb34560b20291cf55c988d0f883a38e8bbf | 8ae5d408ed62d234cb72adebb9a23e08da1cedc6 | crypto/x509: prevent HostnameError.Error() from consuming excessive resource
Constructing HostnameError.Error() takes O(N^2) runtime due to using a
string concatenation in a loop. Additionally, there is no limit on how
many names are included in the error message. As a result, a malicious
attacker could craft a certif... | [
{
"path": "src/crypto/x509/verify.go",
"patch": "@@ -108,31 +108,38 @@ type HostnameError struct {\n \n func (h HostnameError) Error() string {\n \tc := h.Certificate\n+\tmaxNamesIncluded := 100\n \n \tif !c.hasSANExtension() && matchHostnames(c.Subject.CommonName, h.Host) {\n \t\treturn \"x509: certificate... | 2025-11-24T19:56:23 |
facebook/react | a9d63f3f9798355cd814237b5f5391d6adbfa750 | 6a7650c75c1bc110517bd9b3eefdc66eadbb9cbf | fix: incorrect type in getTypeSymbol (#32825)
`getTypeSymbol` also returns string | [
{
"path": "packages/react-devtools-shared/src/backend/fiber/renderer.js",
"patch": "@@ -248,7 +248,7 @@ function createVirtualInstance(\n type DevToolsInstance = FiberInstance | VirtualInstance | FilteredFiberInstance;\n \n type getDisplayNameForFiberType = (fiber: Fiber) => string | null;\n-type getTypeSym... | 2025-04-07T09:51:28 |
rust-lang/rust | aed54f219eccbd4f3cb3ecd89acdc0d9eeb2bceb | bfc05d6b072585dfd0c792ec1b8728c08a3511fe | tests/ui/async-await/gat-is-send-across-await.rs: New regression test
The test began passing in `nightly-2025-10-16`. Probably by c50aebba787
because it fixed two "does not live long enough" errors. The test fails
to compile with `nightly-2025-10-15` with such an error:
$ rustc +nightly-2025-10-15 --edition 2018 ... | [
{
"path": "tests/ui/async-await/gat-is-send-across-await.rs",
"patch": "@@ -0,0 +1,23 @@\n+//! Regression test for <https://github.com/rust-lang/rust/issues/111852>.\n+\n+//@ edition:2018\n+//@ check-pass\n+\n+#![allow(unused)]\n+\n+trait G: Send {\n+ type Gat<'l>: Send\n+ where\n+ Self: 'l;\n+... | 2026-03-21T15:00:51 |
electron/electron | 83524adf1792d2dbcf4dc4914b647131bc3c22f0 | 14b3183eb584611723d4a2160dd13fd7a0e94ceb | chore: fix lint for ImageView doc (#47304) | [
{
"path": "docs/api/image-view.md",
"patch": "@@ -14,6 +14,7 @@ Note that `ImageView` is experimental and may be changed or removed in the futur\n \n ```js\n const { BaseWindow, ImageView, nativeImage, WebContentsView } = require('electron')\n+\n const path = require('node:path')\n \n const win = new BaseWi... | 2025-05-29T21:10:41 |
nodejs/node | 5c7b83a94e7bb0d4d7758acdfcd61fa8f21fc7cc | c46260284cb29a55e4f3aebc020bc31237110128 | test: guard write to proxy client if proxy connection is ended
In the testing proxy server for proxy client tests, the proxy
client might have already closed the connection when the upstream
connection fails. In that case, there's no need for the proxy
server to inform the proxy client about the error.
PR-URL: https:... | [
{
"path": "test/client-proxy/test-https-proxy-request-invalid-char-in-url.mjs",
"patch": "@@ -21,9 +21,10 @@ const server = https.createServer({\n cert: fixtures.readKey('agent8-cert.pem'),\n key: fixtures.readKey('agent8-key.pem'),\n }, (req, res) => {\n+ console.log(`[Upstream server] responding to r... | 2025-09-17T13:59:09 |
vercel/next.js | cb1dbfb83f9d6e75c00a7e97ce0fa7b0c4180743 | e78d35b35d527b1c8ebb7d5c18d5e223e1cfd37b | refactor: consume global-error from loader tree (#88437) | [
{
"path": "crates/next-core/src/app_page_loader_tree.rs",
"patch": "@@ -419,15 +419,6 @@ impl AppPageLoaderTreeBuilder {\n let loader_tree = &*loader_tree.await?;\n \n let modules = &loader_tree.modules;\n- // load global-error module\n- if let Some(global_error) = &modules.glo... | 2026-01-26T13:54:35 |
golang/go | 8ae5d408ed62d234cb72adebb9a23e08da1cedc6 | c5c05a0e43d062a89fc8d4172d3c043617d9dd81 | spec: more precise prose for built-in function new
1) explain new(type) (simpler) before new(expr) (more complicated)
2) for new(expr), explain what happens when expr is an untyped bool
3) explain that new(nil) is not permitted
4) streamline examples slightly
Fixes #76122.
Change-Id: I5ddb26bd88241b4b2b9aa9b532a62f7... | [
{
"path": "doc/go_spec.html",
"patch": "@@ -1,6 +1,6 @@\n <!--{\n \t\"Title\": \"The Go Programming Language Specification\",\n-\t\"Subtitle\": \"Language version go1.26 (Nov 18, 2025)\",\n+\t\"Subtitle\": \"Language version go1.26 (Dec 2, 2025)\",\n \t\"Path\": \"/ref/spec\"\n }-->\n \n@@ -7794,40 +7794,32... | 2025-11-20T22:05:27 |
facebook/react | 6a7650c75c1bc110517bd9b3eefdc66eadbb9cbf | efb22d8850382c3b53c1b2b8d22036d7e6cc9488 | [Bugfix] Infinite uDV loop in popstate event (#32821)
Found a bug that occurs during a specific combination of very subtle
implementation details.
It occurs sometimes (not always) when 1) a transition is scheduled
during a popstate event, and 2) as a result, a new value is passed to an
already-mounted useDeferredValu... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFiberAsync-test.js",
"patch": "@@ -776,6 +776,74 @@ describe('ReactDOMFiberAsync', () => {\n });\n });\n \n+ it('regression: useDeferredValue in popState leads to infinite deferral loop', async () => {\n+ // At the time this test was written, it ... | 2025-04-05T04:49:28 |
nodejs/node | f6ea5bf3b0912741dfbbf0e8c1bafa8dd0fde550 | e596098e50f1e4d8ad06dd9a0214d67e0b448431 | fs,win: do not add a second trailing slash in readdir
Do not add a trailing slash if it was not removed by resolve in
ToNamespacedPath.
PR-URL: https://github.com/nodejs/node/pull/59847
Fixes: https://github.com/nodejs/node/issues/58223
Refs: https://github.com/nodejs/node/pull/56110
Reviewed-By: Luigi Pinca <luigipi... | [
{
"path": "src/node_file.cc",
"patch": "@@ -1988,7 +1988,7 @@ static void ReadDir(const FunctionCallbackInfo<Value>& args) {\n ToNamespacedPath(env, &path);\n \n #ifdef _WIN32\n- if (slashCheck) {\n+ if (slashCheck && !path.ToStringView().ends_with(\"\\\\\")) {\n size_t new_length = path.length() + ... | 2025-09-17T11:15:51 |
electron/electron | 4e61f5b26fb16176f7b7aa062a9cbd15e8d6ad0f | 5b5f900e34c9ca4ed1ffddbf25a8e7ba9660d976 | fix: Squirrel.Mac crash when zip extraction fails (#47271)
* fix: Squirrel.Mac crash when zip extraction process fails to launch
* chore: add end-to-end test | [
{
"path": "patches/squirrel.mac/.patches",
"patch": "@@ -7,3 +7,4 @@ fix_abort_installation_attempt_at_the_final_mile_if_the_app_is.patch\n feat_add_ability_to_prevent_version_downgrades.patch\n refactor_use_non-deprecated_nskeyedarchiver_apis.patch\n chore_turn_off_launchapplicationaturl_deprecation_errors... | 2025-05-29T17:31:46 |
vercel/next.js | e78d35b35d527b1c8ebb7d5c18d5e223e1cfd37b | cabe5458a86ccf63fc3134f99041798bb1380261 | Fix react-loadable-manifest chunk hash mismatch by preserving async loader mapping (#88775)
## What?
Fixes a bug where `react-loadable-manifest.json` in Turbopack dev mode
contained references to chunk files with wrong hashes, causing 404
errors when loading dynamic imports.
## Why?
When using `next/dynamic` with n... | [
{
"path": "crates/next-api/src/app.rs",
"patch": "@@ -1566,8 +1566,6 @@ impl AppEndpoint {\n \n if emit_manifests == EmitManifests::Full {\n let dynamic_import_entries = collect_next_dynamic_chunks(\n- *module_graphs.full,\n- ... | 2026-01-26T12:32:30 |
rust-lang/rust | 125cefc89ae8e55d8b1a2635ab4d5c653490f9d9 | 2d3dfece0346f805c6d4fa86c2e8a20ca3eef6ca | freebsd sync: fix _umtx_time flags check to use bitwise operation.
The `_umtx_time` flags check in `read_umtx_time` used equality (`flags == abs_time`) instead of bitwise AND (`flags & abs_time != 0`) to detect `UMTX_ABSTIME`. While functionally equivalent for current valid inputs (0 or `UMTX_ABSTIME` alone), the equa... | [
{
"path": "src/tools/miri/src/shims/unix/freebsd/sync.rs",
"patch": "@@ -216,7 +216,12 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {\n \n let flags_place = this.project_field(ut, FieldIdx::from_u32(1))?;\n let flags = this.read_scalar(&flags_place)?.to_u32()?;\n- l... | 2026-03-21T06:45:55 |
facebook/react | efb22d8850382c3b53c1b2b8d22036d7e6cc9488 | 540cd65252ced9f970fb97d5f5b7f029bd7cac83 | Add Suspensey Images behind a Flag (#32819)
We've known we've wanted this for many years and most of the
implementation was already done for Suspensey CSS. This waits to commit
until images have decoded by default or up to 500ms timeout (same as
suspensey fonts).
It only applies to Transitions, Retries (Suspense), Ge... | [
{
"path": "fixtures/view-transition/src/components/Page.js",
"patch": "@@ -41,6 +41,12 @@ function Component() {\n transitions['enter-slide-right'] + ' ' + transitions['exit-slide-left']\n }>\n <p className=\"roboto-font\">Slide In from Left, Slide Out to Right</p>\n+ <p>\n+ ... | 2025-04-04T18:54:05 |
golang/go | 8b5db48db11f6ec075fd1ea528a5d611579c3a0d | 94616dad425959b92d50498e1a18e47e5e6c8709 | net/http: deflake TestClientConnReserveAndConsume
This test includes an assertion that a client conn's state hook
is called exactly once, but some of the test cases can result in
two events occurring: A request completes and a connection closes.
Change the assertion to just check that the hook is called
at least once... | [
{
"path": "src/net/http/clientconn_test.go",
"patch": "@@ -286,9 +286,10 @@ func TestClientConnReserveAndConsume(t *testing.T) {\n \t\t\t\tsynctest.Wait()\n \n \t\t\t\t// State hook should be called, either to report the\n-\t\t\t\t// connection availability increasing or the connection closing.\n-\t\t\t\tif... | 2025-12-01T20:28:19 |
electron/electron | 3a32f257502cc951d81cc1bdc59d9a22427a0604 | f6b8ee073185d13a2ed1c334444045ad24c29ae8 | ci: audit important branches for CI errors (#47207)
* ci: audit important branches for CI errors
* chore: move message to Slack workflow | [
{
"path": ".github/workflows/audit-branch-ci.yml",
"patch": "@@ -0,0 +1,137 @@\n+name: Audit CI on Branches\n+\n+on:\n+ workflow_dispatch:\n+ schedule:\n+ # Run every 2 hours\n+ - cron: '0 */2 * * *'\n+\n+permissions: {}\n+\n+jobs:\n+ audit_branch_ci:\n+ name: Audit CI on Branches\n+ runs-on:... | 2025-05-27T15:35:33 |
nodejs/node | db926dc1fc10a4001708c5dbd6607b9e63e658b8 | 1ebe88f87cd618c2b5dc304a9440e9b5e118deb3 | src: replace FIXED_ONE_BYTE_STRING with Environment-cached strings
PR-URL: https://github.com/nodejs/node/pull/59891
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de> | [
{
"path": "src/node_realm.cc",
"patch": "@@ -72,8 +72,7 @@ void Realm::CreateProperties() {\n CHECK(primordials->IsObject());\n set_primordials(primordials.As<Object>());\n \n- Local<String> prototype_string =\n- FIXED_ONE_BYTE_STRING(isolate(), \"prototype\");\n+ Local<String> prototype_string =... | 2025-09-17T06:34:40 |
vercel/next.js | cabe5458a86ccf63fc3134f99041798bb1380261 | b9ee1db28318f6d5ffa7b8749c1a9cc8dd56f89e | docs: fix typos in `README.md`s (#89022)
<!-- 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
### Impro... | [
{
"path": "packages/next/src/next-devtools/README.md",
"patch": "@@ -31,7 +31,7 @@ This will start the Storybook server at `http://localhost:6006`.\n \n ### Styling\n \n-Next.js direcly injects CSS into the DOM via `<style>` tag. The styles will not affect the user's application as the [styles are encapsula... | 2026-01-26T12:23:30 |
facebook/react | c0f08ae74a46686f5718e9e6c511d27419fd632c | b10cb4c01ec1ae41b67422239d919f261fefa7d1 | Fix Bugs Measuring Performance Track for Effects (#32815)
This fixes two bugs with commit phase effect tracking.
I missed, or messed up the rebase for, deletion effects when a subtree
was deleted and for passive disconnects when a subtree was hidden.
The other bug is that when I started using self time
(componentEff... | [
{
"path": "packages/react-reconciler/src/ReactFiberCommitWork.js",
"patch": "@@ -119,6 +119,8 @@ import {\n resetComponentEffectTimers,\n pushComponentEffectStart,\n popComponentEffectStart,\n+ pushComponentEffectDuration,\n+ popComponentEffectDuration,\n pushComponentEffectErrors,\n popComponen... | 2025-04-04T03:33:14 |
electron/electron | 5ccbfa2faf705ff4cc8ba2c1891e4129ff142ae6 | f89c2a0ef4eb8aeaaf652517c46b8c2a6ac1caea | fix: regression with directory selection in macOS dialogs (#47259) | [
{
"path": "shell/browser/ui/file_dialog_mac.mm",
"patch": "@@ -321,7 +321,7 @@ void ReadDialogPathsWithBookmarks(NSOpenPanel* dialog,\n BOOL is_package_as_directory =\n [[NSWorkspace sharedWorkspace] isFilePackageAtPath:path] &&\n [dialog treatsFilePackagesAsDirectories];\n- i... | 2025-05-27T10:08:11 |
golang/go | 42e03bbd27a31e389ca37863b0bb90692086f408 | 18015e8c369df15ca73fc00d6db8efc0590236ba | debug/elf: correct case of DWARF in comment
Change-Id: I5b80b0e3e50fafdb732c732cdae6e2756d919d20
Reviewed-on: https://go-review.googlesource.com/c/go/+/725360
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Mark Freeman <markfreeman@google.com>
Auto-Submit: Ian Lance Taylor <iant@golang.org>
Reviewed-... | [
{
"path": "src/debug/elf/file.go",
"patch": "@@ -1300,7 +1300,7 @@ func (f *File) DWARF() (*dwarf.Data, error) {\n \t\treturn b, nil\n \t}\n \n-\t// There are many DWARf sections, but these are the ones\n+\t// There are many DWARF sections, but these are the ones\n \t// the debug/dwarf package started with.... | 2025-11-28T22:34:06 |
nodejs/node | 64a8b4b1baf9cdc334420ea398fb307c59f7eb93 | f1a8f447d7363e9a5e1c412c1a425a9771bc691f | crypto: expose signatureAlgorithm on X509Certificate
Adds the `signatureAlgorithm` property to a X509Certificate allowing
users to retrieve a string representing the algorithm used to sign the
certificate. This string is defined by the OpenSSL library.
Fixes: https://github.com/nodejs/node/issues/59103
PR-URL: https:... | [
{
"path": "deps/ncrypto/ncrypto.cc",
"patch": "@@ -8,7 +8,9 @@\n #include <openssl/rand.h>\n #include <openssl/x509v3.h>\n #include <algorithm>\n+#include <array>\n #include <cstring>\n+#include <string_view>\n #if OPENSSL_VERSION_MAJOR >= 3\n #include <openssl/core_names.h>\n #include <openssl/params.h>\n@... | 2025-09-16T19:27:04 |
vercel/next.js | 93bb2799fe43cf7b2967569f78ed3e7a2438dbf1 | f4c2d5461af31f0eef95759533b18b7a8ea005e7 | Apply fixes for onBuildComplete and route module (#88831)
This applies fixes for outputs in `onBuildComplete` with various slight
differences from expected values. This also applies some fixes in the
route-module interface to ensure we install the process handlers for PPR
since currently that was done in `next-server`... | [
{
"path": ".github/workflows/test_e2e_deploy_release.yml",
"patch": "@@ -90,6 +90,33 @@ jobs:\n runs_on_labels: '[\"ubuntu-latest\"]'\n overrideProxyAddress: ${{ inputs.overrideProxyAddress || '' }}\n \n+ test-deploy-adapter:\n+ name: Run Deploy Adapter Tests\n+ needs: setup\n+ uses: .... | 2026-01-26T02:59:20 |
facebook/react | 040f8286e97eab7aac23a89d5f59967be3bf8f3e | 450f8df8865303f14be7ddd7c951f020115aa27c | Follow through all the phases when an error happens during snapshotting (#32803)
This can happen for example if you have duplicate names in the "old"
state. This errors the transition before the updateCallback is invoked
so we haven't yet applied mutations etc.
This runs through those phases after the error to get us... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -1802,6 +1802,12 @@ export function startViewTransition(\n }\n } finally {\n // Continue the reset of the work.\n+ // If the error happened in the snapshot phase before the update callback\n+... | 2025-04-02T14:49:44 |
golang/go | 18015e8c369df15ca73fc00d6db8efc0590236ba | 4be545115cf8ed42aa0337cbb6c3a92f718192b9 | doc/next: clean up some Go 1.26 release notes
The Var.Kind stuff was in Go 1.25.
And the net additions were in the wrong tense and didn't have links.
Change-Id: Ie710e1d41c714fe627a3a21a5afb6b7f78301f68
Reviewed-on: https://go-review.googlesource.com/c/go/+/724780
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
... | [
{
"path": "doc/initial/6-stdlib/99-minor/0-heading.md",
"patch": "@@ -1,10 +1 @@\n ### Minor changes to the library {#minor_library_changes}\n-\n-#### go/types\n-\n-The `Var.Kind` method returns an enumeration of type `VarKind` that\n-classifies the variable (package-level, local, receiver, parameter,\n-res... | 2025-11-26T18:11:41 |
electron/electron | f89c2a0ef4eb8aeaaf652517c46b8c2a6ac1caea | c6f368acc6e4a9d9847fecf1db0d382ae06f5adc | fix: titlebar showing in content protected window (#47241)
Closes https://github.com/electron/electron/issues/47152. | [
{
"path": "shell/browser/ui/win/electron_desktop_window_tree_host_win.cc",
"patch": "@@ -143,11 +143,33 @@ bool ElectronDesktopWindowTreeHostWin::HandleMouseEvent(ui::MouseEvent* event) {\n void ElectronDesktopWindowTreeHostWin::HandleVisibilityChanged(bool visible) {\n if (native_window_view_->widget())\... | 2025-05-26T07:46:04 |
nodejs/node | 60c1fbcf652994d63bbc118187e2b8fe96a711d3 | 0319ba51d8d8084e09bbb7f1b08c7480603b6976 | util: inspect objects with throwing Symbol.toStringTag
`util.inspect()` should handle all kinds of input, even if it is
not well defined. Throwing is something that is meant to be worked
around in all known cases. This fixes issues inspecting objects
where accessing the Symbol.toStringTag would cause an error. The
sym... | [
{
"path": "lib/internal/util/inspect.js",
"patch": "@@ -1186,7 +1186,14 @@ function formatRaw(ctx, value, recurseTimes, typedArray) {\n protoProps = undefined;\n }\n \n- let tag = value[SymbolToStringTag];\n+ let tag = '';\n+\n+ try {\n+ tag = value[SymbolToStringTag];\n+ } catch {\n+ // Ign... | 2025-09-14T00:07:06 |
vercel/next.js | 7eb2ea491ea89ea753eb2e636edf87bad67574f2 | 1637d61731065b5ad5705c159967f213c3cf624d | [Reapply] Add `useEffectEvent` to disallowed React APIs in Server Components (#88985)
<!-- 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 y... | [
{
"path": "crates/next-custom-transforms/src/transforms/react_server_components.rs",
"patch": "@@ -633,6 +633,7 @@ impl ReactServerComponentValidator {\n \"PureComponent\",\n \"useDeferredValue\",\n \"useEffect\",\n+ ... | 2026-01-25T21:11:23 |
facebook/react | deca96520f1e9e804b0e5b0d81563327d9c55521 | 0b1a9e90c5d5b6a4633c225c9100af69f53752c8 | Warn if addTransitionType is called when there are no pending Actions (#32793)
Stacked on #32792.
It's tricky to associate a specific `addTransitionType` call to a
specific `startTransition` call because we don't have `AsyncContext` in
browsers yet. However, we can keep track if there are any async
transitions runnin... | [
{
"path": "packages/react-reconciler/src/ReactFiberHooks.js",
"patch": "@@ -2219,6 +2219,11 @@ function handleActionReturnValue<S, P>(\n typeof returnValue.then === 'function'\n ) {\n const thenable = ((returnValue: any): Thenable<Awaited<S>>);\n+ if (__DEV__) {\n+ // Keep track of the num... | 2025-04-01T16:10:10 |
electron/electron | c6f368acc6e4a9d9847fecf1db0d382ae06f5adc | 5e3b5ef04cc646c629ad383432fa70cefc65e40e | chore: debug crash on DevTools SetOwnerWindow (#47243) | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -2147,8 +2147,11 @@ void WebContents::DevToolsOpened() {\n // Inherit owner window in devtools when it doesn't have one.\n auto* devtools = inspectable_web_contents_->GetDevToolsWebContents();\n bool has_window = devtools->GetUse... | 2025-05-26T07:45:43 |
nodejs/node | 0319ba51d8d8084e09bbb7f1b08c7480603b6976 | 49f79b8e937f5d27101dc7d629ec5edd2fd8ed2c | util: fix debuglog.enabled not being present with callback logger
The method returned by the callback is missing the .enabled property.
This is added in a consistent way that it also verifies that it's a
getter.
Fixes: https://github.com/nodejs/node/issues/56676
PR-URL: https://github.com/nodejs/node/pull/59858
Revie... | [
{
"path": "lib/internal/util/debuglog.js",
"patch": "@@ -94,8 +94,17 @@ function debuglog(set, cb) {\n // Only invokes debuglogImpl() when the debug function is\n // called for the first time.\n debug = debuglogImpl(enabled, set);\n- if (typeof cb === 'function')\n+ if (typeof cb === 'func... | 2025-09-14T00:06:57 |
vercel/next.js | 39ce0124e4af8c32c5bf8dae05c801fac17a2954 | f51e3acf961c9bbcab68aab6078c9267d230db21 | Improve agents-md prompt to force doc retrieval (#88997)
## Summary
Updates the instruction in `agents-md` [CLAUDE.md](http://CLAUDE.md)
output to force LLMs to actually read the docs instead of relying on
stale pre-training knowledge.
**Before:**
```
IMPORTANT: Prefer retrieval-led reasoning over pre-training-led ... | [
{
"path": "packages/next-codemod/lib/agents-md.ts",
"patch": "@@ -10,7 +10,7 @@ import fs from 'fs'\n import path from 'path'\n import os from 'os'\n \n-export interface NextjsVersionResult {\n+interface NextjsVersionResult {\n version: string | null\n error?: string\n }\n@@ -68,13 +68,13 @@ function ve... | 2026-01-25T11:22:46 |
golang/go | 1555fad47ddfe149ae5f2eb593124fd7371968a9 | eec1afeb28522df37c78c29506ae89233bbce4e9 | vendor/golang.org/x/tools: update to 1ad6f3d
cmd$ go get golang.org/x/tools@1ad6f3d
cmd$ GOWORK=off go mod tidy
cmd$ GOWORK=off go mod vendor
This merge pulls in the following commits, which include several fixes
needed for go1.26, marked by an asterisk. None of the unmarked commits
affects vendored packages, so it i... | [
{
"path": "src/cmd/go.mod",
"patch": "@@ -11,7 +11,7 @@ require (\n \tgolang.org/x/sys v0.38.0\n \tgolang.org/x/telemetry v0.0.0-20251111182119-bc8e575c7b54\n \tgolang.org/x/term v0.34.0\n-\tgolang.org/x/tools v0.39.1-0.20251120214200-68724afed209\n+\tgolang.org/x/tools v0.39.1-0.20251130212600-1ad6f3d02713... | 2025-12-01T15:26:29 |
facebook/react | b286430c8a585dc2e2e3cc023e7c455ec2b34ab7 | d3b8ff6e589bcacfd1c9b0aa48c42fd1c93001c1 | Add startGestureTransition API (#32785)
Stacked on #32783. This will replace [the `useSwipeTransition`
API](https://github.com/facebook/react/pull/32373).
Instead, of a special Hook, you can make updates to `useOptimistic`
Hooks within the `startGestureTransition` scope.
```
import {unstable_startGestureTransition a... | [
{
"path": "fixtures/view-transition/src/components/Page.js",
"patch": "@@ -1,13 +1,14 @@\n import React, {\n unstable_ViewTransition as ViewTransition,\n unstable_Activity as Activity,\n- unstable_useSwipeTransition as useSwipeTransition,\n useLayoutEffect,\n useEffect,\n useState,\n useId,\n+ ... | 2025-04-01T00:05:50 |
electron/electron | 5e3b5ef04cc646c629ad383432fa70cefc65e40e | ac5e3c76f3128eff3866d0f358e68ec1bfda7af3 | chore: update @electron/lint-roller to 3.1.1 (#47202)
* chore: update @electron/lint-roller to 3.1.1
* docs: fix broken link in breaking-changes.md
* chore: fix for Node.js versions without require(esm) | [
{
"path": "docs/breaking-changes.md",
"patch": "@@ -141,7 +141,7 @@ On Linux, the required portal version for file dialogs has been reverted\n to 3 from 4. Using the `defaultPath` option of the Dialog API is not\n supported when using portal file chooser dialogs unless the portal\n backend is version 4 or h... | 2025-05-25T12:58:55 |
nodejs/node | 49f79b8e937f5d27101dc7d629ec5edd2fd8ed2c | d079d8f38006cab2effec836fd363a2854f0f313 | repl: fix cpu overhead pasting big strings to the REPL
Pasting input should not trigger any completions and other
calculations. This is now handled by just writing the string to the
terminal in case the user is pasting. As soon as pasting is done,
the completions will be re-enabled.
Fixes: https://github.com/nodejs/n... | [
{
"path": "lib/internal/readline/interface.js",
"patch": "@@ -658,6 +658,12 @@ class Interface extends InterfaceConstructor {\n \n [kInsertString](c) {\n this[kBeforeEdit](this.line, this.cursor);\n+ if (!this.isCompletionEnabled) {\n+ this.line += c;\n+ this.cursor += c.length;\n+ t... | 2025-09-14T00:06:47 |
vercel/next.js | d8a0f6caa3a774320c8841a69805f3b9f25c1fd5 | 89cddc26da7627d668a6469c1a36d87b3bc3b3b2 | docs: Update Partytown URLs and package reference (#88928)
- Update Partytown documentation links from `builder.io` to `qwik.dev`.
- Update Partytown installation package reference in the guide.
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possibl... | [
{
"path": "docs/01-app/02-guides/scripts.mdx",
"patch": "@@ -127,7 +127,7 @@ Refer to the [`next/script`](/docs/app/api-reference/components/script#strategy)\n \n > **Warning:** The `worker` strategy is not yet stable and does not yet work with the App Router. Use with caution.\n \n-Scripts that use the `wo... | 2026-01-24T15:51:37 |
facebook/react | d3b8ff6e589bcacfd1c9b0aa48c42fd1c93001c1 | a7fa8702ee0fc4c04f2d2ff9404e4f626877c113 | Unify BatchConfigTransition and Transition types (#32783)
This is some overdue refactoring. The two types never made sense. It
also should be defined by isomorphic since it defines how it should be
used by renderers rather than isomorphic depending on Fiber.
Clean up hidden classes to be consistent.
Fix missing nam... | [
{
"path": "packages/react-reconciler/src/ReactFiberActivityComponent.js",
"patch": "@@ -10,10 +10,8 @@\n import type {ReactNodeList, OffscreenMode, Wakeable} from 'shared/ReactTypes';\n import type {Lanes} from './ReactFiberLane';\n import type {SpawnedCachePool} from './ReactFiberCacheComponent';\n-import ... | 2025-03-31T23:59:07 |
golang/go | eec1afeb28522df37c78c29506ae89233bbce4e9 | 3f94f3d4b2f03a913de3f5a737bad793418e751f | debug/elf: make check for empty symbol section consistent for 64-bit and 32-bit binaries
The check for whether a binary's symbols section is empty is
inconsistent across the 32-bit and 64-bit flows.
Change-Id: I1abc235320a53cf957cfb83c9e7bcad6e52bc529
GitHub-Last-Rev: f264915ca2964ad8f34ce1deee4f42c2f9dc21bf
GitHub-P... | [
{
"path": "src/debug/elf/file.go",
"patch": "@@ -641,7 +641,7 @@ func (f *File) getSymbols32(typ SectionType) ([]Symbol, []byte, error) {\n \t\treturn nil, nil, fmt.Errorf(\"cannot load symbol section: %w\", err)\n \t}\n \tif len(data) == 0 {\n-\t\treturn nil, nil, errors.New(\"symbol section is empty\")\n+... | 2025-09-10T02:34:03 |
nodejs/node | 4984b15a94c551b910b4d1c23cbbc83d474dee70 | 100c255c99d9602396eb2e18f2b2d52d4c22d1db | src: create strings in `FIXED_ONE_BYTE_STRING` as internalized
These string keys can generally be assumed to be long-lived.
PR-URL: https://github.com/nodejs/node/pull/59826
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
Reviewed-By: Gerhard Stöbich <deb2001-gi... | [
{
"path": "src/util-inl.h",
"patch": "@@ -160,33 +160,34 @@ constexpr ContainerOfHelper<Inner, Outer> ContainerOf(Inner Outer::*field,\n \n inline v8::Local<v8::String> OneByteString(v8::Isolate* isolate,\n const char* data,\n- ... | 2025-08-04T16:58:33 |
electron/electron | 2248de847d23a99779e73d93f9610c1e4cbe8e8a | 38e7ff944ed8239d2130c284e4b63e749b2cfe7c | refactor: use `base::fixed_flat_set` in `NativeWindowViews::SetAlwaysOnTop()` (#47201)
refactor: use base::fixed_flat_set in NativeWindowViews::SetAlwaysOnTop() | [
{
"path": "shell/browser/native_window_views.cc",
"patch": "@@ -20,7 +20,7 @@\n #include <utility>\n #include <vector>\n \n-#include \"base/containers/contains.h\"\n+#include \"base/containers/fixed_flat_set.h\"\n #include \"base/memory/raw_ref.h\"\n #include \"base/numerics/ranges.h\"\n #include \"base/str... | 2025-05-22T23:20:39 |
facebook/react | a7fa8702ee0fc4c04f2d2ff9404e4f626877c113 | 95671b4eb3ceb51278a2ba959667da04f0b09809 | Remove v19 beta specific issue template (#32795)
This was a template for the 19 beta. Since 19 has been stable for a
while now, we can clean this up. Any bug report for React 19 should use
the standard bug report template. | [
{
"path": ".github/ISSUE_TEMPLATE/19.md",
"patch": "@@ -1,18 +0,0 @@\n----\n-name: \"⚛React 19 beta issue\"\n-about: Report a issue with React 19 beta.\n-title: '[React 19]'\n-labels: 'React 19'\n-\n----\n-\n-\n-## Summary\n-\n-<!--\n- Please provide a CodeSandbox (https://codesandbox.io/s/new), a link to ... | 2025-03-31T19:53:17 |
golang/go | 3f94f3d4b2f03a913de3f5a737bad793418e751f | 2ac1f9cbc3eb2b97ad82730569199ba6ffea956d | test/codegen: fix shift tests on riscv64
These were broken by CL 721206, which changes Rsh to RshU for
positive inputs.
Change-Id: I9e38c3c428fb8aeb70cf51e7e76f4711c864f027
Reviewed-on: https://go-review.googlesource.com/c/go/+/723340
Reviewed-by: Meng Zhuo <mengzhuo1203@gmail.com>
Reviewed-by: Mark Ryan <markdryan@r... | [
{
"path": "test/codegen/shift.go",
"patch": "@@ -661,7 +661,7 @@ func rsh64to32(v int64) int32 {\n \tx := int32(v)\n \t// riscv64:\"MOVW\"\n \tif x > 8 {\n-\t\t// riscv64:\"SRAIW\" -\"MOVW\" -\"SLLI\"\n+\t\t// riscv64:\"SRLIW\" -\"MOVW\" -\"SLLI\"\n \t\tx >>= 2\n \t}\n \treturn x\n@@ -671,7 +671,7 @@ func r... | 2025-11-22T14:10:41 |
rust-lang/rust | e897b4ea51835a9fae8bb12766363e7b55b41838 | bfc05d6b072585dfd0c792ec1b8728c08a3511fe | tests/ui/async-await/drop-option-future.rs: New regression test
The test began compiling with `nightly-2022-11-25`, and more
specifically 9f36f988ad873f5. The test fails to compile with
`nightly-2022-11-24`:
$ rustc +nightly-2022-11-24 --edition 2018 tests/ui/async-await/drop-option-future.rs
error[E0597]: `v... | [
{
"path": "tests/ui/async-await/drop-option-future.rs",
"patch": "@@ -0,0 +1,16 @@\n+//! Regression test for <https://github.com/rust-lang/rust/issues/98077>.\n+\n+//@ edition:2018\n+//@ check-pass\n+\n+#![allow(dead_code)]\n+#![allow(unused_assignments)]\n+\n+async fn foo() {\n+ let mut f = None;\n+ ... | 2026-03-20T19:56:17 |
nodejs/node | 100c255c99d9602396eb2e18f2b2d52d4c22d1db | af4eac574b26aa944d61ed703cb8d8d3bee49155 | src: remove `std::array` overload of `FIXED_ONE_BYTE_STRING`
This overload was only used in one place, in a cold path, and in
particular in a place where the compiler would be able to generate
the exact same code using just a call to `.size()`.
PR-URL: https://github.com/nodejs/node/pull/59826
Reviewed-By: James M Sn... | [
{
"path": "src/node_os.cc",
"patch": "@@ -259,7 +259,7 @@ static void GetInterfaceAddresses(const FunctionCallbackInfo<Value>& args) {\n result.emplace_back(OneByteString(isolate, ip));\n result.emplace_back(OneByteString(isolate, netmask));\n result.emplace_back(family);\n- result.emplace_ba... | 2025-08-04T16:08:15 |
vercel/next.js | 5c70b4beaa80ec7031284153ba012b243788ef1e | 1a2eccf30e4c210c910178228c51bc16385a8c90 | Turbopack: add `?dpl=` to all asset urls returned by Turbopack (#88828)
### What?
Closes PACK-6554
All asset urls returned by Turbopack should include a `?dpl` suffix. | [
{
"path": "crates/next-core/src/next_client/context.rs",
"patch": "@@ -11,12 +11,12 @@ use turbopack::module_options::{\n side_effect_free_packages_glob,\n };\n use turbopack_browser::{\n- BrowserChunkingContext, ChunkSuffix, ContentHashing, CurrentChunkMethod,\n+ BrowserChunkingContext, ContentHa... | 2026-01-23T21:38:24 |
facebook/react | 095ce8a31100e7b0021470c3e0d790da6c8dbeee | 18a11339c3db7bdaecaa2d963ab066dc8c84f70c | Fix changelog Owner Stack spelling consistency | [
{
"path": "CHANGELOG.md",
"patch": "@@ -2,9 +2,9 @@\n \n ### Owner Stack\n \n-An Owner Stack is a string representing the components that are directly responsible for rendering a particular component. By combining owner stacks with component stacks, you can better understand the relationships between compon... | 2025-03-28T21:30:13 |
electron/electron | 38e7ff944ed8239d2130c284e4b63e749b2cfe7c | 8f09d7037b2b7263605005f0279650573c4e5a34 | refactor: make `NativeWindow::has_frame_` const (#47200)
* refactor: make NativeWindow::is_modal_ const
* refactor: make NativeWindow::title_bar_style_ const and private
* refactor: make NativeWindow::has_client_frame() protected
refactor: make NativeWindow::transparent() protected
* refactor: make NativeWindow::e... | [
{
"path": "shell/browser/native_window.cc",
"patch": "@@ -75,10 +75,12 @@ namespace electron {\n namespace {\n \n #if BUILDFLAG(IS_WIN)\n-gfx::Size GetExpandedWindowSize(const NativeWindow* window, gfx::Size size) {\n+gfx::Size GetExpandedWindowSize(const NativeWindow* window,\n+ ... | 2025-05-22T22:32:46 |
golang/go | 2ac1f9cbc3eb2b97ad82730569199ba6ffea956d | de456450e7a49789de63c515cb78a1e38e88440e | cmd/compile: avoid unnecessary interface conversion in bloop
Fixes #76482
Change-Id: I076568d8ae92ad6c9e0a5797cfe5bbfb615f63d2
Reviewed-on: https://go-review.googlesource.com/c/go/+/725180
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Keith Randall <khr@golang.... | [
{
"path": "src/cmd/compile/internal/bloop/bloop.go",
"patch": "@@ -74,7 +74,7 @@ func getNameFromNode(n ir.Node) *ir.Name {\n }\n \n // keepAliveAt returns a statement that is either curNode, or a\n-// block containing curNode followed by a call to runtime.keepAlive for each\n+// block containing curNode fo... | 2025-11-28T10:19:42 |
rust-lang/rust | 577dba9093034117b63e4c29147d29ceae1c32c6 | 1e2183119f0ee19cc26df899e26b04ad0de3475d | Skip stack_start_aligned for immediate-abort
This improves startup performance by 16%, shown by an optimized
hello-world program. glibc's `pthread_getattr_np` performs expensive
syscalls when reading `/proc/self/maps`. That is all wasted with
`panic = immediate-abort` active because `init()` immediately discards
the r... | [
{
"path": "library/std/src/sys/pal/unix/stack_overflow.rs",
"patch": "@@ -429,6 +429,11 @@ mod imp {\n \n #[forbid(unsafe_op_in_unsafe_fn)]\n unsafe fn install_main_guard_linux(page_size: usize) -> Option<Range<usize>> {\n+ // See the corresponding conditional in init().\n+ // Avoid st... | 2026-03-16T02:00:52 |
vercel/next.js | 1a2eccf30e4c210c910178228c51bc16385a8c90 | 1fbb35f2037c944823d5875a12fcbf717f7cc04b | Improve performance and token usage of `/ci-failures` command (#88960)
Improve performance and token usage of `/ci-failures` command
include type in failure table, provide more instructions
use subagents
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly... | [
{
"path": ".claude/commands/ci-failures.md",
"patch": "@@ -1,91 +1,76 @@\n # Check CI Failures\n \n-Analyze failing tests from PR CI runs with parallel subagent log analysis.\n+Analyze failing tests from PR CI runs.\n \n ## Usage\n \n ```\n-/ci-failures [pr-number]\n+/ci-failures\n ```\n \n-If no PR number ... | 2026-01-23T21:37:19 |
nodejs/node | 7a205d0ac0bdbaebb908825791cb6c105ab3251a | 33e3e423d9b1a29fc15d3add3a28f9885fa48920 | crypto: use async functions for non-stub Promise-returning functions
These were intended to mimic simple async functions, but exceptions
thrown in the function body would be returned synchronously, not
wrapped in a rejected Promise.
PR-URL: https://github.com/nodejs/node/pull/59841
Reviewed-By: James M Snell <jasnell... | [
{
"path": "lib/internal/crypto/aes.js",
"patch": "@@ -5,7 +5,6 @@ const {\n ArrayBufferPrototypeSlice,\n ArrayFrom,\n ArrayPrototypePush,\n- PromiseReject,\n SafeSet,\n TypedArrayPrototypeSlice,\n } = primordials;\n@@ -144,7 +143,7 @@ function asyncAesKwCipher(mode, key, data) {\n getVariant(... | 2025-09-09T20:57:38 |
facebook/react | deb7859bb01831b68615c5e5416174eb4b4e0d58 | 1825990c5608f0ab0c1475b4292218a508a171c9 | [compiler][snap] Fix test filter + watch mode (#32780)
Accidentally broke this when migrating our test runner to use the
bundled build https://github.com/facebook/react/pull/32758
The fix is pretty simple. File watcher should listen for changes in
`packages/babel-plugin-react-compiler` instead of `cwd`, which is now
... | [
{
"path": "compiler/packages/snap/src/runner-watch.ts",
"patch": "@@ -146,7 +146,7 @@ function subscribeFilterFile(\n state: RunnerState,\n onChange: (state: RunnerState) => void,\n ) {\n- watcher.subscribe(process.cwd(), async (err, events) => {\n+ watcher.subscribe(PROJECT_ROOT, async (err, events) ... | 2025-03-28T20:03:08 |
golang/go | de456450e7a49789de63c515cb78a1e38e88440e | 67d4a28707fe948b4d5fe3e171717ab887730c2b | runtime/secret: disable tests under memory validating modes
These tests rely on reading memory that has been freed, so any of the
modes that validate memory accesses are going to fail. Disable them for
now.
Fixes #76586.
Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64-msan-clang15,gotip-linux-amd64-asan-clang1... | [
{
"path": "src/runtime/secret/secret_test.go",
"patch": "@@ -2,10 +2,14 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n-// the race detector does not like our pointer shenanigans\n-// while checking the stack.\n-\n-//go:build goexperiment.r... | 2025-11-28T09:40:00 |
rust-lang/rust | 3b27a3660185f7644e1fbf1582637947e36036fa | d48e699b6cdcf76590a141ccf9fde84adb297176 | Suggest appropriate spaces around `=` in `let` binding parse error | [
{
"path": "compiler/rustc_parse/src/parser/stmt.rs",
"patch": "@@ -1133,11 +1133,11 @@ impl<'a> Parser<'a> {\n } else {\n false\n };\n- if suggest_eq {\n+ ... | 2026-03-20T19:45:29 |
vercel/next.js | 20be9bb47a69e850ec474e0a60ea9e6d8e998d8a | 2b3d4f815bff3ef3a12f3ca5d787032dd6123769 | [turbopack] add task type infromation to the print_cache_item_size feature (#88925)
Enhance our debugging output to include information about TaskType values
example output:
```
Task type cache stats: 337.82MiB (364.22MiB)
49.98MiB (53.43MiB) <ModuleAssetContext as AssetContext>::resolve_asset x 417238 avg 125B (1... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -1177,14 +1177,28 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n .into_iter()\n .collect::<Vec<_>>();\n if !task_cache_stats.is_empty() {\n+ ... | 2026-01-23T18:15:11 |
nodejs/node | 94422e8a40bcb380d7f2633c4dde19839ba71d5e | 22a864a2759b4904ec17c5cdd28fe3e7f1350e6d | src: add an option to make compile cache portable
Adds an option (NODE_COMPILE_CACHE_PORTABLE) for
the built-in compile cache to encode the hashes with
relative file paths. On enabling the option,
the source directory along with cache directory can be
bundled and moved, and the cache continues to work.
When enabled, ... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -3341,6 +3341,11 @@ added: v22.1.0\n Enable the [module compile cache][] for the Node.js instance. See the documentation of\n [module compile cache][] for details.\n \n+### `NODE_COMPILE_CACHE_PORTABLE=1`\n+\n+When set to 1, the [module compile cache][] can be reuse... | 2025-09-12T11:00:39 |
electron/electron | b2d0074cc68c93c5db5ecd826e0eb829fb13aa01 | 2e8fc17f07d0e842599bd9979d304aa2b97bec5d | build: fix depot tool pathing on Windows (#47194)
build: properly set depot_tools pathing for Windows | [
{
"path": ".github/actions/install-build-tools/action.yml",
"patch": "@@ -15,12 +15,16 @@ runs:\n fi\n export BUILD_TOOLS_SHA=6e8526315ea3b4828882497e532b8340e64e053c\n npm i -g @electron/build-tools\n+ # Update depot_tools to ensure python\n e d update_depot_tools\n e aut... | 2025-05-21T23:05:50 |
facebook/react | 8039f1b2a05d00437cd29707761aeae098c80adc | 4280563b04898baad423dc7d0f8b0dfea3b1797a | [compiler] Fix inferEffectDependencies lint false positives (#32769)
Currently, inferred effect dependencies are considered a
"compiler-required" feature. This means that untransformed callsites
should escalate to a build error.
`ValidateNoUntransformedReferences` iterates 'special effect' callsites
and checks that t... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Babel/BabelPlugin.ts",
"patch": "@@ -73,7 +73,7 @@ export default function BabelPluginReactCompiler(\n pass.filename ?? null,\n opts.logger,\n opts.environment,\n- result?.retryErrors ?? [],\n+ ... | 2025-03-27T16:18:50 |
golang/go | 67d4a28707fe948b4d5fe3e171717ab887730c2b | c079dd13c0b0e977d607cf2775bc2f16dd3d106e | fmt: document space behavior of Append
Also, introduce the {Print,Fprint,Sprint,Append}{,f,ln}
cross product of functions at the top of the docs.
Fixes #74656
Change-Id: I85a156cd545ca866e579d8020ddf165cd4bcb26f
Reviewed-on: https://go-review.googlesource.com/c/go/+/688877
Reviewed-by: Rob Pike <r@golang.org>
LUCI-T... | [
{
"path": "src/fmt/doc.go",
"patch": "@@ -9,6 +9,18 @@ are simpler.\n \n # Printing\n \n+There are four families of printing functions defined by their output destination.\n+[Print], [Println] and [Printf] write to [os.Stdout];\n+[Sprint], [Sprintln] and [Sprintf] return a string;\n+[Fprint], [Fprintln] and... | 2025-07-18T18:57:38 |
nodejs/node | 071414dac81260d20c8885f9d285143301cfff4f | 29738c7b42fff5937032fdfeb70600f70b235b10 | doc: rephrase dynamic import() description
The description is updated to clarify that dynamic import() is
asynchronous, dynamic, and works in both CJS and ESM contexts.
The new phrasing also avoids implying it is the only method for
loading ES modules in CommonJS.
Fixes: https://github.com/nodejs/node/issues/59077
PR... | [
{
"path": "doc/api/esm.md",
"patch": "@@ -334,8 +334,9 @@ fs.readFileSync === readFileSync;\n \n ## `import()` expressions\n \n-[Dynamic `import()`][] is supported in both CommonJS and ES modules. In CommonJS\n-modules it can be used to load ES modules.\n+[Dynamic `import()`][] provides an asynchronous way ... | 2025-09-12T06:40:24 |
rust-lang/rust | d48e699b6cdcf76590a141ccf9fde84adb297176 | 244322f0be1296f5ac4d6fc0dcc603b5ccab2832 | Emit fewer errors for incorrect rtn and `=` -> `:` typos in bindings
Stash parse errors when pasing rtn that doesn't use `(..)`.
Emit single error on `Foo::bar(qux)` that looks like rtn in incorrect position and suggest `Foo::bar(..)`.
```
error: return type notation not allowed in this position yet
--> $DIR/let-bin... | [
{
"path": "compiler/rustc_ast_lowering/src/path.rs",
"patch": "@@ -1,6 +1,7 @@\n use std::sync::Arc;\n \n use rustc_ast::{self as ast, *};\n+use rustc_errors::StashKey;\n use rustc_hir::def::{DefKind, PartialRes, PerNS, Res};\n use rustc_hir::def_id::DefId;\n use rustc_hir::{self as hir, GenericArg};\n@@ -2... | 2026-03-20T19:33:05 |
facebook/react | e0c99c4ea1cae566ad8040180cf180ae058cb8bf | a5297ece6217f5495cbe38ba58f928b2697b0f99 | Rename <ViewTransition className="..."> to <ViewTransition default="..."> (#32734)
It was always confusing that this is not a CSS class but a
view-transition-class.
The `className` sticks out a bit among its siblings `enter`, `exit`,
`update` and `share`. The idea is that the most specific definition
override is the ... | [
{
"path": "fixtures/view-transition/src/components/Page.js",
"patch": "@@ -33,7 +33,7 @@ const b = (\n function Component() {\n return (\n <ViewTransition\n- className={\n+ default={\n transitions['enter-slide-right'] + ' ' + transitions['exit-slide-left']\n }>\n <p class... | 2025-03-26T19:02:05 |
electron/electron | 2e8fc17f07d0e842599bd9979d304aa2b97bec5d | 4af0c5d7620c4abe49706133242a31ea69b37848 | refactor: pass views::Widget* into constructors of our TreeHosts and NativeWidgets (#47177)
* refactor: remove unnecessary downcast in MenuViews::PopupAt()
* refactor: pass a views::Widget as an arg to the ElectronDesktopWindowTreeHostLinux ctor
* refactor: pass a views::Widget as an arg to the ElectronDesktopNative... | [
{
"path": "shell/browser/api/electron_api_menu_views.cc",
"patch": "@@ -27,7 +27,7 @@ void MenuViews::PopupAt(BaseWindow* window,\n int positioning_item,\n ui::mojom::MenuSourceType source_type,\n base::OnceClosure callback) {\n- auto*... | 2025-05-21T21:02:55 |
vercel/next.js | 631b2c60c89352e794b7d863db79457a278fe2ac | 599fc3f82a40044bb31d64f08dcd7b5a6ded2b8d | Add Graphite workflow Cursor command (#88939)
### What?
Adds a Cursor command file (`.cursor/commands/gt-workflow.md`) that
provides guidance on using Graphite (gt) instead of git for branch and
commit operations.
### Why?
To make the Graphite workflow easily accessible within Cursor IDE via
the `/gt-workflow` comm... | [
{
"path": ".cursor/commands/gt-workflow.md",
"patch": "@@ -0,0 +1,67 @@\n+# Git Workflow with Graphite\n+\n+## Overview\n+\n+Use Graphite (`gt`) instead of git for ALL branch and commit operations in this repository.\n+\n+## Forbidden Git Commands\n+\n+NEVER use these git commands directly:\n+\n+- `git push... | 2026-01-23T12:42:30 |
golang/go | c079dd13c0b0e977d607cf2775bc2f16dd3d106e | 2947cb0469aa89aac70cc6e3968f00f4c625671a | runtime/secret: reorganize tests to fix -buildmode=shared
The testing assembly methods had a linkname that was implicitly
satisfied during the regular build but not there during the shared
build. Fix by moving the testing routine into the package itself.
For good measure, section off the assembly files from the non-e... | [
{
"path": "src/runtime/secret/asm_amd64.s",
"patch": "@@ -2,6 +2,8 @@\n // Use of this source code is governed by a BSD-style\n // license that can be found in the LICENSE file.\n \n+//go:build goexperiment.runtimesecret\n+\n // Note: this assembly file is used for testing only.\n // We need to access regis... | 2025-11-27T06:45:20 |
nodejs/node | d35bd2088e2daa001edabeb030de59f20ec6d8e9 | a2a77b2b66b742d05c53aaa10841cbaf22fe5c00 | lib,src: refactor assert to load error source from memory
The source code is available from V8 API and assert can avoid reading
the source file from the filesystem and parse the file again.
PR-URL: https://github.com/nodejs/node/pull/59751
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> | [
{
"path": "lib/internal/assert/utils.js",
"patch": "@@ -1,38 +1,21 @@\n 'use strict';\n \n const {\n- ArrayPrototypeShift,\n Error,\n ErrorCaptureStackTrace,\n- FunctionPrototypeBind,\n- RegExpPrototypeSymbolReplace,\n- SafeMap,\n StringPrototypeCharCodeAt,\n- StringPrototypeIncludes,\n StringP... | 2025-09-02T10:31:09 |
facebook/react | 33999c43177e13580730c2fad94a77f4b0e08ef2 | 5f232d72d4cb15470c77e91c30e9cf61e090508c | [compiler][be] Test runner (snap) now uses tsup bundled plugin (#32758)
Currently, `babel-plugin-react-compiler` is bundled with (almost) all
external dependencies. This is because babel traversal and ast logic is
not forward-compatible. Since `babel-plugin-react-compiler` needs to be
compatible with babel pipelines a... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/package.json",
"patch": "@@ -12,7 +12,7 @@\n \"build\": \"rimraf dist && tsup\",\n \"test\": \"./scripts/link-react-compiler-runtime.sh && yarn snap:ci\",\n \"jest\": \"yarn build && ts-node node_modules/.bin/jest\",\n- \"snap\": \"node... | 2025-03-26T18:27:42 |
electron/electron | a7a3e10300926898db0ceff1f778cd9cd06e05c6 | 7b77a24211784e4c8e54072703ea961a4991069c | refactor: prefer `base::circular_deque` over `std::deque` (#47171)
* refactor: use base::circular_deque in ResolveProxyHelper
* refactor: use base::circular_deque in GetExtraCrashKeys()
refactor: reduce visibility of kMaxCrashKeyValueSize
This change is to match Chromium's usage advice from
base/containers/README.m... | [
{
"path": "shell/browser/net/resolve_proxy_helper.h",
"patch": "@@ -5,10 +5,10 @@\n #ifndef ELECTRON_SHELL_BROWSER_NET_RESOLVE_PROXY_HELPER_H_\n #define ELECTRON_SHELL_BROWSER_NET_RESOLVE_PROXY_HELPER_H_\n \n-#include <deque>\n #include <optional>\n #include <string>\n \n+#include \"base/containers/circular... | 2025-05-21T17:04:36 |
vercel/next.js | 13c47b3ff46ec4dc323130b7b5beec4b1df9121b | c582bf8eb2e1fabb020c940f360562b70a26c6c2 | Turbopack: improve module type error message (#88815)
### What?
improve module type error message | [
{
"path": "turbopack/crates/turbopack/src/lib.rs",
"patch": "@@ -674,10 +674,12 @@ async fn process_default_internal(\n ModuleIssue::new(\n *ident,\n rcstr!(\"Invalid module type\"),\n- ... | 2026-01-23T09:14:06 |
golang/go | 2947cb0469aa89aac70cc6e3968f00f4c625671a | cead111a772c2852c870fb140029d89152da4d14 | runtime/_mkmalloc: fix log.Fatal formatting directive
Change-Id: I9b9b9dbde440c3a24599efd55ef6f85a6a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/724281
Reviewed-by: David Chase <drchase@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-proj... | [
{
"path": "src/runtime/_mkmalloc/mkmalloc.go",
"patch": "@@ -288,7 +288,7 @@ func inline(config generatorConfig) []byte {\n \t\t\tcase foldCondition:\n \t\t\t\tstamped = foldIfCondition(stamped, repl.from, repl.to)\n \t\t\tdefault:\n-\t\t\t\tlog.Fatal(\"unknown op kind %v\", repl.kind)\n+\t\t\t\tlog.Fatalf(... | 2025-11-27T10:42:27 |
rust-lang/rust | 3ea7d1ece76c0d207f3c7754140b07c2b7f5e549 | 4e446d55a40cae05284fc4118b18373e7dd71f02 | fixing seperate empty arm and doc comment | [
{
"path": "compiler/rustc_attr_parsing/src/attributes/stability.rs",
"patch": "@@ -367,7 +367,7 @@ pub(crate) fn parse_stability<S: Stage>(\n }\n }\n \n-// Read the content of a `unstable`/`rustc_const_unstable`/`rustc_default_body_unstable`\n+/// Read the content of a `unstable`/`rustc_const_unstable`/... | 2026-03-20T16:14:41 |
facebook/react | f99c9feaf786fbdad0ad8d2d81196a247302dd3c | 8ac25e5201579c65d115d91c211ac719a235d982 | Fix ownerStackLimit feature gating for tests (#32726)
https://github.com/facebook/react/pull/32529 added a dynamic flag for
this, but that breaks tests since the flags are not defined everywhere.
However, this is a static value and the flag is only for supporting
existing tests. So we can override it in the test conf... | [
{
"path": "packages/shared/forks/ReactFeatureFlags.native-fb-dynamic.js",
"patch": "@@ -29,7 +29,3 @@ export const enableUseEffectCRUDOverload = __VARIANT__;\n export const enableFastAddPropertiesInDiffing = __VARIANT__;\n export const enableLazyPublicInstanceInFabric = __VARIANT__;\n export const renameEle... | 2025-03-26T16:01:05 |
nodejs/node | d58343ec482319e3d9846d4785df3c962364f077 | 96a749b7b3b9dfe982d8d0056122d0d601af6cf7 | src: correctly report memory changes to V8
Call `V8::ExternalMemoryAccounter::Update` instead of
`V8::ExternalMemoryAccounter::Increase` to report memory difference to
V8
Calling `V8::ExternalMemoryAccounter::Increase` with a signed integer on
32-bit platforms causes instances where GC inside GC takes place leading
t... | [
{
"path": "src/node_mem-inl.h",
"patch": "@@ -59,7 +59,7 @@ void* NgLibMemoryManager<Class, T>::ReallocImpl(void* ptr,\n // Environment*/Isolate* parameter and call the V8 method transparently.\n const int64_t new_size = size - previous_size;\n manager->IncreaseAllocatedSize(new_size);\n- man... | 2025-09-09T12:17:47 |
electron/electron | 7b77a24211784e4c8e54072703ea961a4991069c | 7112c592c9ce0f0e55ee23ca8415b2f14f62a56c | fix: remove extra 'suspend'/'resume' handling from `powerMonitor` (#47162)
fix: remove extra 'suspend'/'resume' handling from powerMonitor | [
{
"path": "shell/browser/api/electron_api_power_monitor_mac.mm",
"patch": "@@ -34,17 +34,6 @@ - (id)init {\n selector:@selector(onScreenUnlocked:)\n name:@\"com.apple.screenIsUnlocked\"\n object:nil];\n- // A notificat... | 2025-05-21T15:00:38 |
vercel/next.js | c582bf8eb2e1fabb020c940f360562b70a26c6c2 | 2e2dd02c120ebe62c154043acb1fdbd8537dd1b7 | fix typo (#88934)
typo | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/mod.rs",
"patch": "@@ -1347,7 +1347,7 @@ impl<B: BackingStorage> TurboTasksBackendInner<B> {\n .flatten()\n } {\n // Task exists in backing storage\n- // So we only need to insert it in... | 2026-01-23T08:52:09 |
facebook/react | 8ac25e5201579c65d115d91c211ac719a235d982 | f9e1b16098f2ff4ed483285219b07066525796b6 | Warn for duplicate ViewTransition names (#32752)
This adds early logging when two ViewTransitions with the same name are
mounted at the same time. Whether they're part of a View Transition or
not.
This lets us include the owner stack of each one. I do two logs so that
you can get the stack trace of each one of the du... | [
{
"path": "packages/react-reconciler/src/ReactFiberCommitWork.js",
"patch": "@@ -109,6 +109,7 @@ import {\n ForceClientRender,\n DidCapture,\n AffectedParentLayout,\n+ ViewTransitionNamedStatic,\n } from './ReactFiberFlags';\n import {\n commitStartTime,\n@@ -254,6 +255,10 @@ import {\n pushMutat... | 2025-03-26T02:03:05 |
nodejs/node | cc89e4cff86ce0b3b130a38ebc35576e6bda117a | 4302d247ad5d8a51973ae9ebf7aca727db190a74 | src: fixup node_messaging error handling
Replace ToLocalChecked uses
PR-URL: https://github.com/nodejs/node/pull/59792
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> | [
{
"path": "src/node_messaging.cc",
"patch": "@@ -328,6 +328,7 @@ class SerializerDelegate : public ValueSerializer::Delegate {\n if (JSTransferable::IsJSTransferable(env_, context_, object)) {\n BaseObjectPtr<JSTransferable> js_transferable =\n JSTransferable::Wrap(env_, object);\n+ ... | 2025-09-09T03:30:43 |
electron/electron | 263c76df091f2dae65db19e9e3375a3afb56c556 | 517f5c15b957a43702bd0cc5009440d5a0a339d6 | fix: prevent gc monitor 2nd pass crash (#46987) | [
{
"path": "shell/common/gin_converters/osr_converter.cc",
"patch": "@@ -143,19 +143,21 @@ v8::Local<v8::Value> Converter<electron::OffscreenSharedTextureValue>::ToV8(\n // texture, output it in second pass callback.\n data.SetSecondPassCallback([](const v8::WeakCallbackInfo<\n ... | 2025-05-20T13:54:03 |
vercel/next.js | 7282ce6759ea2373b2060e0720abe8983e1a87ae | 5a0b9787c7ef8beb5bc194c5e7182112919f0567 | [prebuilt-skew-protection] feat: adding in automatic deploymentId (#88496)
Original [PR](https://github.com/vercel/next.js/pull/88012/) has a bug
that attempted to validate on environment variables. Edited function to
not run validations on environment variables, only on the user provided
deployment id.
<!-- Thanks f... | [
{
"path": "errors/deploymentid-invalid-characters.mdx",
"patch": "@@ -0,0 +1,71 @@\n+---\n+title: '`deploymentId` contains invalid characters'\n+---\n+\n+## Why This Error Occurred\n+\n+The `deploymentId` in your `next.config.js` contains characters that are not allowed. Only alphanumeric characters (a-z, A... | 2026-01-22T21:07:34 |
facebook/react | f9e1b16098f2ff4ed483285219b07066525796b6 | 4845e16c22caf27334a1eab712ed258a9ae09752 | Avoid double logging component render time (#32749)
This got moved into the functional component and class component case
statements here:
https://github.com/facebook/react/commit/0de1233fd180969f7ffdfc98151922f2466ceb1f.
So that we could separate the error case for class components.
However, due to a faulty rebase t... | [
{
"path": "packages/react-reconciler/src/ReactFiberCommitWork.js",
"patch": "@@ -3095,25 +3095,6 @@ function commitPassiveMountOnFiber(\n const prevEffectStart = pushComponentEffectStart();\n const prevEffectErrors = pushComponentEffectErrors();\n \n- // If this component rendered in Profiling mode (DE... | 2025-03-26T00:57:20 |
electron/electron | e0ea069859bae238eac3ea65d51500607393c166 | 7cc76c094a38e350045c1346bfe8ce6ebf6f1c44 | build: remove `fix_linter_error.patch` (#47150)
build: remove fix_linter_error.patch | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -133,6 +133,5 @@ feat_add_signals_when_embedder_cleanup_callbacks_run_for.patch\n feat_separate_content_settings_callback_for_sync_and_async_clipboard.patch\n fix_win32_synchronous_spellcheck.patch\n fix_enable_wrap_iter_in_string_view_and_array.patch\n-fi... | 2025-05-19T20:52:01 |
nodejs/node | 670d7ab7f2267de7ff0673741edece29efd0e254 | 26607a650e7a99b2e1f021c8e0864be4e8b205b4 | util: fix numericSeparator with negative fractional numbers
Fix util.inspect() formatting bug where negative fractional numbers
between -1 and 0 lost their minus sign when numericSeparator was true.
Fixed formatNumber function to preserve sign by using original string
representation. Also corrected test expectations f... | [
{
"path": "lib/internal/util/inspect.js",
"patch": "@@ -2103,23 +2103,28 @@ function formatNumber(fn, number, numericSeparator) {\n }\n return fn(`${number}`, 'number');\n }\n+\n+ const numberString = String(number);\n const integer = MathTrunc(number);\n- const string = String(integer);\n+\n ... | 2025-09-08T20:10:50 |
rust-lang/rust | c614e3d216b26052d0badfeb5c33f095b4ced1f3 | ed6a6fddb440f2b19d55530a07df0c7c94391ad8 | linting, moving error to session diagnostics | [
{
"path": "compiler/rustc_attr_parsing/src/attributes/stability.rs",
"patch": "@@ -452,16 +452,14 @@ pub(crate) fn parse_unstability<S: Stage>(\n \n match (feature, issue) {\n (Ok(feature), Ok(_)) => {\n- // Validate that unstable attributes don't use already-stable language features\... | 2026-03-13T20:38:15 |
facebook/react | 4845e16c22caf27334a1eab712ed258a9ae09752 | 553a175c90fd5c89a3c7398aec6edc226a370a95 | [ci] Fix param casing (#32748)
Casing was incorrect.
Tested by running locally with a PAT.
```
$ scripts/release/download-experimental-build.js --commit=2d40460cf768071d3a70b4cdc16075d23ca1ff25
Command failed: gh attestation verify artifacts_combined.zip --repo=facebook/react
Error: failed to fetch attestations fro... | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -487,7 +487,7 @@ jobs:\n #\n # Note that this means that scripts/release/download-experimental-build.js must be run with\n # --no-verify when downloading a build from a fork.\n- if: github.event.pull_reques... | 2025-03-25T20:05:41 |
vercel/next.js | 092458fd6a84bd0cf1b6fa7eb814bcb13f4e6637 | 4e8671cf5c142b1661b6b53404782aace2fb8d71 | feat: implement LRU cache with invocation ID scoping for minimal mode response cache (#88509)
## Summary
Implements an LRU cache with compound keys for the minimal mode response
cache to improve cache hit rates during parallel revalidation scenarios.
**Problem**: The previous single-entry cache (`previousCacheItem`)... | [
{
"path": "packages/next/src/server/lib/lru-cache.test.ts",
"patch": "@@ -226,4 +226,75 @@ describe('LRUCache', () => {\n expect(cache.has('key149')).toBe(true) // recent keys retained\n })\n })\n+\n+ describe('onEvict Callback', () => {\n+ it('should call onEvict when an entry is evicted', ... | 2026-01-22T18:45:15 |
golang/go | c2af9f14b429741cfd4fed11a67a52427dec3931 | 6be5de4bc4e30ac0e2843c781393235d78e384a8 | internal/runtime/cgroup: fix path on non-root mount point
We should trim the mount root (4th field in /proc/self/mountinfo) from
cgroup path read from /proc/self/cgroup before appending it to the mount
point. Non-root mount points are very common in containers with cgroup
v1.
parseCPURelativePath is renamed to parse... | [
{
"path": "src/internal/cgrouptest/cgrouptest_linux.go",
"patch": "@@ -50,9 +50,8 @@ func (c *CgroupV2) SetCPUMax(quota, period int64) error {\n //\n // This must not be used in parallel tests, as it affects the entire process.\n func InCgroupV2(t *testing.T, fn func(*CgroupV2)) {\n-\tmount, rel := findCurr... | 2025-11-21T17:44:14 |
nodejs/node | 6cf64af44d368f7874d06092481c9ef2ba1bb025 | 3c461fa4a0b3f5cc9734dc72a6d9d2a3c4f9729a | repl: do not cause side effects in tab completion
A number of recent changes to the REPL tab completion logic have
introduced the ability for completion to cause side effects,
specifically, calling arbitrary functions or variable
assignments/updates.
This was first introduced in 07220230d9 and the problem exacerbated... | [
{
"path": "lib/repl.js",
"patch": "@@ -1762,10 +1762,25 @@ function findExpressionCompleteTarget(code) {\n return findExpressionCompleteTarget(argumentCode);\n }\n \n+ // Walk the AST for the current block of code, and check whether it contains any\n+ // statement or expression type that would poten... | 2025-09-08T13:54:45 |
electron/electron | 7cc76c094a38e350045c1346bfe8ce6ebf6f1c44 | 3660432f42ae7ab311f12d139fb0032bd06a0f2b | chore: bump node to v22.15.1 (main) (#47105)
* chore: bump node in DEPS to v22.15.1
* chore: fixup patch indices
* src: fix error handling on async crypto operations
https://github.com/nodejs-private/node-private/pull/709
---------
Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '138.0.7178.0',\n 'node_version':\n- 'v22.15.0',\n+ 'v22.15.1',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2025-05-19T20:12:48 |
facebook/react | 553a175c90fd5c89a3c7398aec6edc226a370a95 | 740a4f7a02aee67495d086a46f92e72e2318cc45 | [ci] Fix incorrect condition (#32746)
Oops, missed this when I switched it from checking if its a fork to
checking if its from this repo. | [
{
"path": ".github/workflows/runtime_build_and_test.yml",
"patch": "@@ -487,7 +487,7 @@ jobs:\n #\n # Note that this means that scripts/release/download-experimental-build.js must be run with\n # --no-verify when downloading a build from a fork.\n- if: github.event.pull_reques... | 2025-03-25T18:37:51 |
golang/go | 481c6df7b9006e59febbb24689ab8bf686695e9d | cec4d4303f6475475d1a632cca506e8a82072d25 | io: reduce intermediate allocations in ReadAll and have a smaller final result
Currently, io.ReadAll allocates a significant amount of intermediate
memory as it grows its result slice to the size of the input data.
This CL aims to reduce the allocated memory. Geomean benchstat results
comparing existing io.ReadAll to... | [
{
"path": "src/io/io.go",
"patch": "@@ -707,20 +707,44 @@ func (c nopCloserWriterTo) WriteTo(w Writer) (n int64, err error) {\n // defined to read from src until EOF, it does not treat an EOF from Read\n // as an error to be reported.\n func ReadAll(r Reader) ([]byte, error) {\n+\t// Build slices of exponen... | 2025-11-20T19:43:50 |
rust-lang/rust | 910d0d7a7779ee7e620ec420f0a324b99f0d3c7a | 1111eb599e6ce93acfd854961749bebb3b0664e5 | Fix calling custom call conv functions from inline asm | [
{
"path": "example/std_example.rs",
"patch": "@@ -167,6 +167,9 @@ fn main() {\n \n rust_call_abi();\n \n+ // #[cfg(target_arch = \"x86_64\")]\n+ // inline_asm_call_custom_abi();\n+\n const fn no_str() -> Option<Box<str>> {\n None\n }\n@@ -678,3 +681,18 @@ fn map(a: Option<(u8, Box<... | 2026-03-20T10:37:33 |
electron/electron | 5dd6481e53b253463ec65ebe806f5c14dc855924 | d72e622a3fd25c462e2e3916469c2ac571bcdb47 | fix: explicit microtask scope DCHECK condition (#47134) | [
{
"path": "shell/common/node_util.cc",
"patch": "@@ -15,6 +15,7 @@\n #include \"shell/browser/javascript_environment.h\"\n #include \"shell/common/gin_converters/callback_converter.h\"\n #include \"shell/common/node_includes.h\"\n+#include \"shell/common/process_util.h\"\n #include \"third_party/electron_no... | 2025-05-19T03:08:59 |
facebook/react | dc9b74647e093b531dc876a2438f12dac776e480 | b59f18601179bb06a2c32a76547fd4929aa1ce9c | [DevTools] Add fb local build command (#32644)
<!--
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 make s... | [
{
"path": "packages/react-devtools-extensions/package.json",
"patch": "@@ -8,6 +8,7 @@\n \"build:chrome\": \"cross-env NODE_ENV=production node ./chrome/build\",\n \"build:chrome:fb\": \"cross-env NODE_ENV=production FEATURE_FLAG_TARGET=extension-fb node ./chrome/build --crx\",\n \"build:chrome:... | 2025-03-25T13:45:48 |
golang/go | cec4d4303f6475475d1a632cca506e8a82072d25 | f1bbc66a10a545811a21dcf9f9431e783aafcb42 | os: allow direntries to have zero inodes on Linux
Some Linux filesystems have been known to return valid enties with
zero inodes. This new behavior also puts Go in agreement with recent
glibc.
Fixes #76428
Change-Id: Ieaf50739a294915a3ea2ef8c5a3bb2a91a186881
GitHub-Last-Rev: 8f83d009ef0320fd3fe7cf03e55d5d24df57f015
... | [
{
"path": "src/os/dir_unix.go",
"patch": "@@ -112,7 +112,8 @@ func (f *File) readdir(n int, mode readdirMode) (names []string, dirents []DirEn\n \t\t// or might expose a remote file system which does not have the concept\n \t\t// of inodes. Therefore, we cannot make the assumption that it is safe\n \t\t// t... | 2025-11-25T03:55:45 |
electron/electron | e2bcd8f0aadffd74bc85eedebe1a2ceab91e1356 | 99a3e360ec1783f25399a25c6efb3bae017bdcea | test: fix desktopCapturer mocha syntax (#47088)
* test: fix desktopCapturer mocha syntax
do not nest `it` calls in desktopCapturer specs
* empty commit | [
{
"path": "spec/api-desktop-capturer-spec.ts",
"patch": "@@ -99,7 +99,7 @@ ifdescribe(!process.arch.includes('arm') && process.platform !== 'win32')('deskt\n expect(isEmpties.every(e => e === true)).to.be.true();\n });\n \n- it('getMediaSourceId should match DesktopCapturerSource.id', async () => {\n... | 2025-05-15T20:54:49 |
facebook/react | ee0855f427832e899767f7659c5289364218ab9e | 7e4c258e160d3a2ca690b44a5938271873919ee1 | [ci] Fix missing permissions for prereleases (#32729)
Missed these earlier.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/32729).
* __->__ #32729
* #32728 | [
{
"path": ".github/workflows/runtime_prereleases.yml",
"patch": "@@ -29,6 +29,9 @@ jobs:\n publish_prerelease:\n name: Publish prelease (${{ inputs.release_channel }}) ${{ inputs.commit_sha }} @${{ inputs.dist_tag }}\n runs-on: ubuntu-latest\n+ permissions:\n+ # We use github.token to down... | 2025-03-24T22:24:45 |
nodejs/node | 072da1ad2a30823d438cf6ac44ff5102e4920999 | b4af64792088f892be1df4dcfbb69c725e5704de | doc: update OpenSSL default security level to 2
The default OpenSSL security level changed from 1 to 2 in OpenSSL 3.2,
which was included in Node.js 24.5. This change enforces stricter
cryptographic requirements.
Fixes: https://github.com/nodejs/node/issues/59715
PR-URL: https://github.com/nodejs/node/pull/59723
Revi... | [
{
"path": "doc/api/tls.md",
"patch": "@@ -454,7 +454,7 @@ are not enabled by default since they offer less security.\n The OpenSSL library enforces security levels to control the minimum acceptable\n level of security for cryptographic operations. OpenSSL's security levels range\n from 0 to 5, with each lev... | 2025-09-08T07:57:40 |
facebook/react | 7e4c258e160d3a2ca690b44a5938271873919ee1 | 07276b8682059cd310cedf574c7f3ecddce68f5c | [scripts] Verify artifact integrity when downloading (#32728)
Uses https://cli.github.com/manual/gh_attestation_verify to verify that
the downloaded artifact matches the attestation generated during the
build process in runtime_commit_artifacts.
Example:
On a workflow run of runtime_build_and_test.yml with no attest... | [
{
"path": "scripts/release/shared-commands/download-build-artifacts.js",
"patch": "@@ -3,8 +3,9 @@\n const {join} = require('path');\n const theme = require('../theme');\n const {exec} = require('child-process-promise');\n-const {existsSync, readFileSync} = require('fs');\n+const {existsSync, mkdtempSync, r... | 2025-03-24T22:24:33 |
vercel/next.js | 61bf6f633f26a6eadee31693fe4b11c5f43e97cd | 85d043a64aec4f49a6432e4c1a693881e6688e49 | Turbopack: Fix next/font preloading for page.mdx (#88848)
## What?
This PR fixes font preloading for MDX pages in Turbopack and adds an e2e
test to verify the fix.
## Why?
When using `next/font` with MDX pages, font preloading was failing with
Turbopack because the LoaderTree was storing the **transformed module
pa... | [
{
"path": "crates/next-core/src/base_loader_tree.rs",
"patch": "@@ -1,7 +1,7 @@\n use anyhow::Result;\n use indoc::formatdoc;\n use turbo_rcstr::RcStr;\n-use turbo_tasks::{FxIndexMap, ResolvedVc, ValueToString, Vc};\n+use turbo_tasks::{FxIndexMap, ResolvedVc, Vc};\n use turbo_tasks_fs::FileSystemPath;\n use... | 2026-01-22T14:56:50 |
electron/electron | 99a3e360ec1783f25399a25c6efb3bae017bdcea | 883f48b9b499b0f626b354910bfa4b6f427a7363 | fix: opening package paths as directory on macOS (#47077) | [
{
"path": "shell/browser/ui/file_dialog_mac.mm",
"patch": "@@ -318,9 +318,10 @@ void ReadDialogPathsWithBookmarks(NSOpenPanel* dialog,\n BOOL exists =\n [[NSFileManager defaultManager] fileExistsAtPath:path\n isDirectory:&is_directory];\n- ... | 2025-05-15T17:47:46 |
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.