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 | c06eef27d754b0c4e112dbff1233e393a8362844 | 988eb0d11e8d96e8ca150f401ed82326b276f653 | runtime: skip TestTimePprof on sanitizers
This test asserts there is no external code, but the sanitizer runtimes
are external code.
Fixes #73783.
Cq-Include-Trybots: luci.golang.try:gotip-windows-amd64-race
Change-Id: I6a6a636cf93b7950e3ea35e00ec2eaf89911d712
Reviewed-on: https://go-review.googlesource.com/c/go/+/6... | [
{
"path": "src/runtime/crash_test.go",
"patch": "@@ -854,6 +854,9 @@ func TestTimePprof(t *testing.T) {\n \tcase \"aix\", \"darwin\", \"illumos\", \"openbsd\", \"solaris\":\n \t\tt.Skipf(\"skipping on %s because nanotime calls libc\", runtime.GOOS)\n \t}\n+\tif race.Enabled || asan.Enabled || msan.Enabled {... | 2025-05-21T20:14:19 |
electron/electron | 7ab2a821669d4ce603a118b904f68e342ef3d807 | 5c821d33791345446eef3a90a6bea9c920d001d8 | chore: bump node to v18.18.1 (main) (#40174)
* chore: bump node in DEPS to v18.18.1
* Revert "deps: upgrade to libuv 1.46.0"
https://github.com/nodejs/node/pull/50036
* chore: fixup patch indices
---------
Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com>
Co-... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '119.0.6045.0',\n 'node_version':\n- 'v18.18.0',\n+ 'v18.18.1',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2023-10-12T07:53:37 |
facebook/react | ec05176fb3950f905f16616934c560d4150130d3 | 9cdd6b243e8e633c4322424cd4b963e03819b1f9 | Make string values for config case-insensitive
Fixes a tiny inconsistency with compiler options where one was all
uppercase and one all lowercase by normalizing to lowercase regardless
of the casing of the user's config.
ghstack-source-id: fe60a3259de89a1b3fdd7475950e16e96cc57f6b
Pull Request resolved: https://github... | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Babel/RunReactForgetBabelPlugin.ts",
"patch": "@@ -18,7 +18,7 @@ export function runReactForgetBabelPlugin(\n text: string,\n file: string,\n language: \"flow\" | \"typescript\",\n- options: PluginOptions | null,\n+ options: Partial<PluginOp... | 2024-04-11T14:45:35 |
rust-lang/rust | 05cd01b8879f599e064ffd7294a5ae09320e25b5 | 85de83b5b2485e4038c2cd8a168590e99b3cee0c | fix: verify NeverToAny adjustment in binop_lhs_never_place_diverges test | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/tests/never_type.rs",
"patch": "@@ -820,28 +820,17 @@ fn foo() -> i32 {\n \n #[test]\n fn binop_lhs_never_place_diverges() {\n- check_infer_with_mismatches(\n+ check_no_mismatches(\n r#\"\n //- minicore: sized, add\n fn foo() -> i32 {\n ... | 2026-02-16T12:59:04 |
nodejs/node | 62383cd113bbb160924b0a8c65db0dc2296be490 | 4dfed556baf03117859143aee6ea23525313e82b | module: implement flushCompileCache()
This implements an API for users to intentionally flush the
accumulated compile cache instead of waiting until process
shutdown. It may be useful for application that loads dependencies
first and then either reload itself in other instances, or spawning
other instances that load a... | [
{
"path": "doc/api/module.md",
"patch": "@@ -199,6 +199,13 @@ Compilation cache generated by one version of Node.js can not be reused by a dif\n version of Node.js. Cache generated by different versions of Node.js will be stored\n separately if the same base directory is used to persist the cache, so they c... | 2024-09-04T18:18:12 |
vercel/next.js | f79cd752e3dea17562399d3760a8f15c923e58b7 | 0bd7423844e218b19537880a7fa4314749fdf57d | Turbopack: patch sourcemap crate (#82641)
The source content was somethings incorrect with scope hoisting on Turbopack:
<img width="2018" height="721" alt="image" src="https://github.com/user-attachments/assets/e2e1bf1c-2a84-4acb-8388-a809670b4902" />
Fix is in https://github.com/swc-project/swc-sourcemap/pull/7 | [
{
"path": "Cargo.lock",
"patch": "@@ -8246,8 +8246,7 @@ dependencies = [\n [[package]]\n name = \"swc_sourcemap\"\n version = \"9.3.3\"\n-source = \"registry+https://github.com/rust-lang/crates.io-index\"\n-checksum = \"3cd6e0cad02163875258edaf9ae6004e2526be137bdde6a46c540515615949b1\"\n+source = \"git+http... | 2025-08-14T12:02:28 |
golang/go | 50484d3b4e691d361d009d5e4a07c182b35471a0 | b6e251b264869fac4ddc158fb9a5c8d5b4ac086f | cmd/go/internal/doc: ignore SIGINT and SIGQUIT
Just like we do in cmd/doc when we start pkgsite, ignore SIGINT (and
SIGQUIT on unix) when we start cmd/doc so that it's handled by cmd/doc
(if pkgsite is not started, and before it is started) or pkgsite, if it
is started. Also exit with the exit status of the command, r... | [
{
"path": "src/cmd/go/internal/base/base.go",
"patch": "@@ -191,20 +191,28 @@ func GetExitStatus() int {\n // connected to the go command's own stdout and stderr.\n // If the command fails, Run reports the error using Errorf.\n func Run(cmdargs ...any) {\n+\tif err := RunErr(cmdargs...); err != nil {\n+\t\t... | 2025-05-21T16:20:59 |
electron/electron | 5c821d33791345446eef3a90a6bea9c920d001d8 | 3e70692e4b3044a10e5b1e5148a97a3f62bec4cb | fix: `webContents.capturePage()` for hidden windows on Windows/Linux (#39730) | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -469,9 +469,16 @@ base::IDMap<WebContents*>& GetAllWebContents() {\n void OnCapturePageDone(gin_helper::Promise<gfx::Image> promise,\n base::ScopedClosureRunner capture_handle,\n const SkBi... | 2023-10-12T07:35:23 |
facebook/react | 9cdd6b243e8e633c4322424cd4b963e03819b1f9 | 200b0f233378f8450fc3078c6200d56cc720f2ea | Fix playground e2e test
ghstack-source-id: 3904ff9beea21ffbb79a6a15fcfbb72f04a2d170
Pull Request resolved: https://github.com/facebook/react-forget/pull/2842 | [
{
"path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/user-input.txt",
"patch": "@@ -0,0 +1,13 @@\n+function TestComponent(t0) {\n+ const $ = useMemoCache(2);\n+ const { x } = t0;\n+ let t1;\n+ if ($[0] !== x) {\n+ t1 = <Button>{x}</Button>;\n+ $[0] = x;\n+ $[1] = t1;\n+ ... | 2024-04-10T22:17:38 |
rust-lang/rust | 04334f05157ce6f0d7898de357d9ddd37769f6ef | 1542d6405c144697cd9d5f50c5db55c0931651af | fix testing at lgammaf overflow threshold
The current implementation of lgammaf evaluates to f32::MAX at the first
input that would overflow if correctly rounded. This is still well within
allowed error, so special case it. | [
{
"path": "library/compiler-builtins/libm-test/src/precision.rs",
"patch": "@@ -222,6 +222,15 @@ impl MaybeOverride<(f32,)> for SpecialCase {\n return XFAIL_NOCHECK;\n }\n \n+ // the testing infrastructure doesn't account for allowed ulp in the case of overflow\n+ if matche... | 2026-02-16T02:36:15 |
vercel/next.js | 3c142be74c73a675c24e12e8c7e39c33162d07a0 | 4a3383a25d3b7a17bdb4bd2c748c80834f1f497a | Turbopack: fix edge function name (#82617)
Edge functions with route `/` had `"name": "/"` in the `middleware-manifest.json`. When deploying to Vercel, this wouldn't work as the Vercel builder turned that into `"name": ""`.
For the root function, Webpack emits a name like `"app/page"` or `"pages/index"`.
This aligns T... | [
{
"path": "crates/next-api/src/app.rs",
"patch": "@@ -34,7 +34,10 @@ use next_core::{\n },\n next_server_utility::{NEXT_SERVER_UTILITY_MERGE_TAG, NextServerUtilityTransition},\n parse_segment_config_from_source,\n- util::{NextRuntime, module_styles_rule_condition, styles_rule_condition},\n+ ... | 2025-08-14T07:22:38 |
nodejs/node | 4dfed556baf03117859143aee6ea23525313e82b | 9a73aa0d15b82c3e6730980fddcaccab1bbed34e | module: throw when invalid argument is passed to enableCompileCache()
PR-URL: https://github.com/nodejs/node/pull/54971
Fixes: https://github.com/nodejs/node/issues/54770
Fixes: https://github.com/nodejs/node/issues/54465
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.... | [
{
"path": "src/node_modules.cc",
"patch": "@@ -436,10 +436,13 @@ void BindingData::GetPackageScopeConfig(\n }\n \n void EnableCompileCache(const FunctionCallbackInfo<Value>& args) {\n- CHECK(args[0]->IsString());\n Isolate* isolate = args.GetIsolate();\n Local<Context> context = isolate->GetCurrentCont... | 2024-09-17T09:48:56 |
golang/go | 1881d680b0b573c32d3002c37902760668ffec0f | ef20ccc10bf6e4d3991c9e29c7fae1c9ab338629 | net/http: add CrossOriginProtection
Fixes #73626
Change-Id: I6a6a4656862e7a38acb65c4815fb7a1e04896172
Reviewed-on: https://go-review.googlesource.com/c/go/+/674936
Reviewed-by: Damien Neil <dneil@google.com>
Auto-Submit: Filippo Valsorda <filippo@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acc... | [
{
"path": "api/next/73626.txt",
"patch": "@@ -0,0 +1,7 @@\n+pkg net/http, func NewCrossOriginProtection() *CrossOriginProtection #73626\n+pkg net/http, method (*CrossOriginProtection) AddInsecureBypassPattern(string) #73626\n+pkg net/http, method (*CrossOriginProtection) AddTrustedOrigin(string) error #7362... | 2025-05-21T13:35:51 |
electron/electron | 3e70692e4b3044a10e5b1e5148a97a3f62bec4cb | c892c61b901b760c83c81e21b2922b84c68e42ac | chore: formally deprecate `crashed` and `renderer-process-crashed` events (#40089) | [
{
"path": "docs/breaking-changes.md",
"patch": "@@ -75,6 +75,34 @@ console.log(app.runningUnderRosettaTranslation)\n console.log(app.runningUnderARM64Translation)\n ```\n \n+### Deprecated: `renderer-process-crashed` event on `app`\n+\n+The `renderer-process-crashed` event on `app` has been deprecated.\n+Us... | 2023-10-10T23:49:01 |
rust-lang/rust | 47ed4526d9aa208e7a5c9249586d42784ff660da | 74dd36a934caddbfabe3a44694958e4d3b2c4af6 | Remove `DEP_NODE_DEBUG`.
Like the previous commit, it's no longer needed. | [
{
"path": "compiler/rustc_interface/src/callbacks.rs",
"patch": "@@ -11,8 +11,8 @@\n \n use std::fmt;\n \n-use rustc_errors::{DiagInner, TRACK_DIAGNOSTIC};\n-use rustc_middle::dep_graph::{DepNode, TaskDepsRef};\n+use rustc_errors::DiagInner;\n+use rustc_middle::dep_graph::TaskDepsRef;\n use rustc_middle::ty... | 2026-02-16T10:13:40 |
vercel/next.js | 3c9c995985a7631199b4ef4c57e4bd5bddfa9dd1 | 1b821389dce73a0e468dbb84318b91e41475b49f | docs: fix typos (#82503)
## Summary
Fix typos and spelling errors in various MDX documentation files to
improve clarity and consistency.
Documentation:
- Standardize 'cacheable' spelling across self-hosting guide
- Correct 'potentionally' to 'potentially' in image component references
- Fix 'unecessary' to 'unnecess... | [
{
"path": "docs/01-app/02-guides/self-hosting.mdx",
"patch": "@@ -215,7 +215,7 @@ module.exports = {\n \n ## Usage with CDNs\n \n-When using a CDN in front on your Next.js application, the page will include `Cache-Control: private` response header when dynamic APIs are accessed. This ensures that the result... | 2025-08-13T22:28:28 |
facebook/react | 3f947b1b468a2a2a419227ce26842c4b6ba31082 | 870e4045ab67020e9cc0f0940d46db7bbbffad3b | [tests] Assert scheduler log empty in internalAct (#28737)
We should force `assertLog` to be called before each `act` block to
ensure the queue is empty.
Requires fixing tests:
- https://github.com/facebook/react/pull/28745
- https://github.com/facebook/react/pull/28758
- https://github.com/facebook/react/pull/... | [
{
"path": "packages/internal-test-utils/internalAct.js",
"patch": "@@ -19,6 +19,7 @@ import type {Thenable} from 'shared/ReactTypes';\n import * as Scheduler from 'scheduler/unstable_mock';\n \n import enqueueTask from './enqueueTask';\n+import {diff} from 'jest-diff';\n \n export let actingUpdatesScopeDept... | 2024-04-10T18:13:46 |
nodejs/node | 9a73aa0d15b82c3e6730980fddcaccab1bbed34e | f666a1b754a028652f167573d8c6b8d7b0ecc5c7 | module: write compile cache to temporary file and then rename it
This works better in terms of avoiding race conditions.
PR-URL: https://github.com/nodejs/node/pull/54971
Fixes: https://github.com/nodejs/node/issues/54770
Fixes: https://github.com/nodejs/node/issues/54465
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com... | [
{
"path": "src/compile_cache.cc",
"patch": "@@ -219,6 +219,8 @@ CompileCacheEntry* CompileCacheHandler::GetOrInsert(\n return loaded->second.get();\n }\n \n+ // If the code hash mismatches, the code has changed, discard the stale entry\n+ // and create a new one.\n auto emplaced =\n compiler... | 2024-09-04T18:09:56 |
golang/go | d54703c94ae906a5e851ae95909b6eb2f0314e19 | d82cb03debff0180aa705129e8a00e89c3fe8251 | runtime: use DontUpdate testprog for DontUpdate test
This is a typo in CL 670497. The test is using the wrong testprog
function.
The testprog also needs to assert that GOMAXPROCS doesn't change, not
that it is equal to NumCPU, for the GOMAXPROCS=4 case.
For #73193.
Cq-Include-Trybots: luci.golang.try:gotip-windows-... | [
{
"path": "src/runtime/gomaxprocs_windows_test.go",
"patch": "@@ -32,7 +32,7 @@ func TestCgroupGOMAXPROCSDontUpdate(t *testing.T) {\n \t// update feature.\n \tfor _, v := range []string{\"GOMAXPROCS=4\", \"GODEBUG=updatemaxprocs=0\"} {\n \t\tt.Run(v, func(t *testing.T) {\n-\t\t\tgot := runTestProg(t, \"test... | 2025-05-21T18:49:40 |
rust-lang/rust | 74dd36a934caddbfabe3a44694958e4d3b2c4af6 | 8d56cfe4c3dfec0a258b8371931c608fce4510bb | Remove `DEP_KIND_DEBUG`.
It's plumbing to work around lack of access to `rustc_middle`, which is
no longer a problem. | [
{
"path": "compiler/rustc_interface/src/callbacks.rs",
"patch": "@@ -12,8 +12,7 @@\n use std::fmt;\n \n use rustc_errors::{DiagInner, TRACK_DIAGNOSTIC};\n-use rustc_middle::dep_graph::dep_node::default_dep_kind_debug;\n-use rustc_middle::dep_graph::{DepKind, DepNode, TaskDepsRef};\n+use rustc_middle::dep_gr... | 2026-02-16T10:04:57 |
vercel/next.js | 1b821389dce73a0e468dbb84318b91e41475b49f | e771609a7afff7139e279a9374c4a9c4988440ca | fix: use in operator to check dev indicator option when its obj (#82629) | [
{
"path": "packages/next/src/server/config.ts",
"patch": "@@ -585,7 +585,8 @@ function assignDefaults(\n \n // Handle buildActivityPosition migration (needs to be done after merging with defaults)\n if (\n- result.devIndicators !== false &&\n+ result.devIndicators &&\n+ typeof result.devIndicat... | 2025-08-13T22:24:16 |
electron/electron | 86df4db6f10afbe5872f8ecbcbfe6191374fc1f7 | 563c370d51f302b6d4a7fee8b47e1cc3e1ca2fe3 | fix: crash when calling non-reentrant function in `loadURL` (#40143) | [
{
"path": "shell/browser/api/electron_api_web_contents.cc",
"patch": "@@ -33,6 +33,7 @@\n #include \"components/security_state/content/content_utils.h\"\n #include \"components/security_state/core/security_state.h\"\n #include \"content/browser/renderer_host/frame_tree_node.h\" // nogncheck\n+#include \"co... | 2023-10-10T10:46:04 |
facebook/react | 2243b40abad449fe90a9af10f592d0c5c52591d5 | dfc64c6e31586f63703b81284b69b4ee5be82e5b | [tests] assertLog before act in useEffectEvent (#28763)
Fixes tests blocking https://github.com/facebook/react/pull/28737 | [
{
"path": "packages/react-reconciler/src/__tests__/useEffectEvent-test.js",
"patch": "@@ -742,7 +742,7 @@ describe('useEffectEvent', () => {\n await act(() =>\n ReactNoop.render(<ChatRoom roomId=\"general\" theme=\"light\" />),\n );\n- await act(() => jest.runAllTimers());\n+\n assertLo... | 2024-04-10T14:34:34 |
nodejs/node | f666a1b754a028652f167573d8c6b8d7b0ecc5c7 | fd8c762fab00e21c520d6c2256e017f9933691c6 | tls: fix 'ERR_TLS_PSK_SET_IDENTIY_HINT_FAILED' typo
Co-Authored-By: Fabian Iwand <mootari@users.noreply.github.com>
PR-URL: https://github.com/nodejs/node/pull/52627
Fixes: https://github.com/nodejs/node/issues/52448
Refs: https://github.com/nodejs/node/pull/23188
Reviewed-By: Filip Skokan <panva.ip@gmail.com>
Reviewe... | [
{
"path": "doc/api/errors.md",
"patch": "@@ -2803,9 +2803,9 @@ event is emitted before continuing.\n Attempting to set a TLS protocol `minVersion` or `maxVersion` conflicts with an\n attempt to set the `secureProtocol` explicitly. Use one mechanism or the other.\n \n-<a id=\"ERR_TLS_PSK_SET_IDENTIY_HINT_FAI... | 2024-09-20T17:59:22 |
golang/go | 3e468dfd5e6624465716fe5d34358ba58f1e9e7b | deb9a7e4ad8552a5f366877e626c223dea0e9d9b | crypto/tls: enable BoGo DisabledCurve-HelloRetryRequest-TLS13
The crypto/tls package produces the expected error for this test case,
and so it can be enabled.
Looking at the history of the relevant code it appears the TLS 1.3
implementation has always had the correct behaviour for HRR changing to
an unsupported group... | [
{
"path": "src/crypto/tls/bogo_config.json",
"patch": "@@ -61,7 +61,6 @@\n \"BadRSAClientKeyExchange-4\": \"crypto/tls doesn't check the version number in the premaster secret - see processClientKeyExchange comment\",\n \"BadRSAClientKeyExchange-5\": \"crypto/tls doesn't check the version nu... | 2025-05-16T18:40:27 |
rust-lang/rust | 1c462c2d502bf1252788149a5d791eaccea2a742 | b214aac14c02e1cdf6cec744b9c6a05682b427b7 | fix: complete derive helpers on empty nameref
Example
---
```rust
//- /mac.rs crate:mac
pub fn my_derive() {}
//- /lib.rs crate:lib deps:mac
pub struct Foo(#[$0] i32);
```
**Before this PR**
```text
...
at must_use
at no_mangle
...
```
**After this PR**
```text
...
at must_use
at my_cool_helper_attribute derive ... | [
{
"path": "src/tools/rust-analyzer/crates/ide-completion/src/context/analysis.rs",
"patch": "@@ -1501,7 +1501,7 @@ fn classify_name_ref<'db>(\n | SyntaxKind::RECORD_FIELD\n )\n })\n- .and_then(|_| nameref.as_ref()?.syntax().ancestors().find_map(... | 2026-02-15T10:35:22 |
electron/electron | 47beca1d2af622ffe33a0c5261f1e54cae40cdbb | 925e4f7d7474204095b1e12bc8c281c4e7a63852 | docs: fix typo in session docs (#40138)
Fix typos for doc
Signed-off-by: zhangdiandian <1635468471@qq.com> | [
{
"path": "docs/api/session.md",
"patch": "@@ -1050,7 +1050,7 @@ To clear the handler, call `setDevicePermissionHandler(null)`.\n This handler can be used to provide default permissioning to devices without first calling for permission\n to devices (eg via `navigator.hid.requestDevice`). If this handler is... | 2023-10-10T10:43:18 |
vercel/next.js | e771609a7afff7139e279a9374c4a9c4988440ca | 925f8a9446ca67551324825033febea3accd6419 | Fix generate-metadata.mdx typo (#82624)
<!-- 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
### Improv... | [
{
"path": "docs/01-app/03-api-reference/04-functions/generate-metadata.mdx",
"patch": "@@ -889,7 +889,7 @@ export const metadata = {\n \n ### `facebook`\n \n-You can connect a Facebook app or Facebook account to you webpage for certain Facebook Social Plugins [Facebook Documentation](https://developers.face... | 2025-08-13T21:58:12 |
nodejs/node | f79fd03f416130d61f739ebaefab3fa5b1641868 | 99433a2d7a7a7d73588afbd22c82aa21d2db610a | test_runner: add support for coverage via run()
PR-URL: https://github.com/nodejs/node/pull/53937
Fixes: https://github.com/nodejs/node/issues/53867
Refs: https://github.com/nodejs/node/issues/53924
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Matteo Collina <m... | [
{
"path": "doc/api/test.md",
"patch": "@@ -1246,6 +1246,9 @@ added:\n - v18.9.0\n - v16.19.0\n changes:\n+ - version: REPLACEME\n+ pr-url: https://github.com/nodejs/node/pull/53937\n+ description: Added coverage options.\n - version: v22.8.0\n pr-url: https://github.com/nodejs/node/pull/539... | 2024-09-20T13:20:45 |
facebook/react | dfc64c6e31586f63703b81284b69b4ee5be82e5b | b02199d322c3876f213dc9bba815acaa839609fd | [tests] assertLog before act in ReactUse (#28762)
Fixes tests blocking https://github.com/facebook/react/pull/28737 | [
{
"path": "packages/react-reconciler/src/__tests__/ReactUse-test.js",
"patch": "@@ -663,6 +663,8 @@ describe('ReactUse', () => {\n }\n \n const root1 = ReactNoop.createRoot();\n+ assertLog(['Async text requested [Hi]']);\n+\n await act(() => {\n root1.render(<Suspense fallback={<Text te... | 2024-04-10T14:34:27 |
golang/go | 7ba996874b541aa13b6bf1d1174b97372e0de20d | a8e0641d5b90da99d5dda96488e87dda761b365b | crypto/tls: verify server chooses advertised curve
When a crypto/tls client using TLS < 1.3 sends supported elliptic_curves
in a client hello message the server must limit itself to choosing one
of the supported options from our message. If we process a server key
exchange message that chooses an unadvertised curve, a... | [
{
"path": "src/crypto/tls/bogo_config.json",
"patch": "@@ -62,7 +62,6 @@\n \"BadRSAClientKeyExchange-5\": \"crypto/tls doesn't check the version number in the premaster secret - see processClientKeyExchange comment\",\n \"CheckLeafCurve\": \"TODO: first pass, this should be fixed\",\n ... | 2025-05-16T17:08:16 |
rust-lang/rust | e12d83967e0537f4066f18a485d61e044f0314b6 | 9be3b21559a5de22ee3920dc91811d4f1c5ac65c | ci: Resolve an issue calculating workflow variables
PRs are now getting the following:
Traceback (most recent call last):
File "/home/runner/work/compiler-builtins/compiler-builtins/ci/ci-util.py", line 510, in <module>
main()
File "/home/runner/work/compiler-builtins/compiler-builtins/ci/ci-u... | [
{
"path": "library/compiler-builtins/ci/ci-util.py",
"patch": "@@ -71,19 +71,21 @@ def eprint(*args, **kwargs):\n print(*args, file=sys.stderr, **kwargs)\n \n \n-@dataclass(init=False)\n+@dataclass(kw_only=True)\n class PrCfg:\n \"\"\"Directives that we allow in the commit body to control test behav... | 2026-02-16T09:02:14 |
electron/electron | a31deea1ba28335fb20f936a6dfd59b407ddca45 | 24bc0ee5c71a0ebf467c14ba0a11e872420cce96 | ci: fixup diagnose_goma_log.py call (#40131) | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -754,8 +754,8 @@ step-show-goma-stats: &step-show-goma-stats\n command: |\n set +e\n set +o pipefail\n- $GOMA_DIR/goma_ctl.py stat\n- $GOMA_DIR/diagnose_goma_log.py\n+ python3 $GOMA_DIR/goma_ctl.py stat\n+ python3 $GOMA_... | 2023-10-09T13:19:21 |
vercel/next.js | 925f8a9446ca67551324825033febea3accd6419 | fdbe67678bc9ec8f885f76b1035c1847b829b008 | fix: find root dir on fs root (#82590)
Attempt at fixing from our side:
https://github.com/vercel/next.js/issues/82577
Rather, the issue is that when the project is at the root of the file
system - `findRootDir` loops indefinitely, and we keep pushing to the
lockFiles found.
I also noticed the warning claims we use ... | [
{
"path": "packages/next/src/lib/find-root.ts",
"patch": "@@ -23,21 +23,25 @@ export function findRootDir(cwd: string) {\n \n const lockFiles = [lockFile]\n while (true) {\n- const nextDir = dirname(dirname(lockFiles[lockFiles.length - 1]))\n- const newLockFile = findRootLockFile(nextDir)\n+ co... | 2025-08-13T21:33:18 |
facebook/react | b02199d322c3876f213dc9bba815acaa839609fd | 6e1e2f2198b9c1f9259417cb569d92206ccf55f5 | [tests] assertLog before act in ReactErrorBoundaries (#28761)
Fixes tests blocking https://github.com/facebook/react/pull/28737 | [
{
"path": "packages/react-dom/src/__tests__/ReactErrorBoundaries-test.internal.js",
"patch": "@@ -584,6 +584,7 @@ describe('ReactErrorBoundaries', () => {\n });\n }).rejects.toThrow('Hello');\n \n+ Scheduler.unstable_clearLog();\n container = document.createElement('div');\n root = Reac... | 2024-04-10T14:34:19 |
nodejs/node | 2a1607cc2e9c42bb935b2e50c1635fd7f4a47c25 | a6ed2148a0744cb160d4e345f505f3a227b1133a | test: fix invalid wasm test
PR-URL: https://github.com/nodejs/node/pull/54935
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "test/es-module/test-esm-extensionless-esm-and-wasm.mjs",
"patch": "@@ -1,8 +1,8 @@\n // Flags: --experimental-wasm-modules\n-import { mustNotCall, spawnPromisified } from '../common/index.mjs';\n+import { spawnPromisified } from '../common/index.mjs';\n import * as fixtures from '../common/fixtur... | 2024-09-20T10:42:59 |
rust-lang/rust | 85de83b5b2485e4038c2cd8a168590e99b3cee0c | c5a613119e121d63e70c05de463d6226eb6146b8 | fix: use check_infer_with_mismatches in binop_lhs_never_place_diverges test | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/tests/never_type.rs",
"patch": "@@ -820,7 +820,7 @@ fn foo() -> i32 {\n \n #[test]\n fn binop_lhs_never_place_diverges() {\n- check_no_mismatches(\n+ check_infer_with_mismatches(\n r#\"\n //- minicore: sized, add\n fn foo() -> i32 {\n@@ -830... | 2026-02-16T09:52:32 |
electron/electron | 24bc0ee5c71a0ebf467c14ba0a11e872420cce96 | f5c177698ed8ad80c068d0f5788c8606e81d31c2 | test: fix "crashed event does not crash main process when destroying WebContents in it" (#40135) | [
{
"path": "spec/api-web-contents-spec.ts",
"patch": "@@ -2333,13 +2333,13 @@ describe('webContents module', () => {\n describe('crashed event', () => {\n afterEach(() => deprecate.setHandler(null));\n \n- it('does not crash main process when destroying WebContents in it', async () => {\n+ it('do... | 2023-10-09T07:56:48 |
golang/go | c3bb27bbc77ac02ad709e77a7fcca0a5d3176304 | f4de2ecffb9c107e6058c1ebb30c68de1157f5c6 | cmd/compile/internal/walk: use global zeroVal in interface conversions for zero values
This is a small-ish adjustment to the change earlier in our
stack in CL 649555, which started creating read-only global storage
for a composite literal used in an interface conversion and setting
the interface data pointer to point ... | [
{
"path": "src/cmd/compile/internal/ir/symtab.go",
"patch": "@@ -59,6 +59,7 @@ type symsStruct struct {\n \tUdiv *obj.LSym\n \tWriteBarrier *obj.LSym\n \tZerobase *obj.LSym\n+\tZeroVal *obj.LSym\n \tARM64HasATOMICS *obj.LSym\n \tARMHasVFPv4 *obj.LSym\n \tLoong64HasLAMC... | 2025-02-12T23:45:42 |
facebook/react | 6e1e2f2198b9c1f9259417cb569d92206ccf55f5 | 88df5242d6f8e319d7903f6fa984e3a02cd44b34 | [tests] assertLog before act in ReactUpdates (#28760)
Fixes tests blocking https://github.com/facebook/react/pull/28737 | [
{
"path": "packages/react-dom/src/__tests__/ReactUpdates-test.js",
"patch": "@@ -1900,6 +1900,8 @@ describe('ReactUpdates', () => {\n await act(() => {\n root.render(<Terminating />);\n });\n+\n+ assertLog(Array.from({length: LIMIT + 1}, (_, k) => k));\n expect(container.textC... | 2024-04-10T14:34:11 |
vercel/next.js | f88de0d8f1b8ec508b7cfef6abfaaa32e72e690c | 7a6ee79ae17a0870bd8f3e66818e0bb95efa1f1d | feat: type guard file generation (#81400)
## Overview
Generates `.next/types/validator.ts` - a single TypeScript file that
validates all route exports using the `satisfies` operator. Replaces the
old `next-types-plugin` webpack plugin.
## Why needed
- **Turbopack compatibility**: Old webpack plugin didn't work with
T... | [
{
"path": "packages/next/src/build/entries.ts",
"patch": "@@ -76,37 +76,36 @@ import type { MappedPages } from './build-context'\n import { PAGE_TYPES } from '../lib/page-types'\n import { isAppPageRoute } from '../lib/is-app-page-route'\n import { recursiveReadDir } from '../lib/recursive-readdir'\n-import... | 2025-08-13T20:21:51 |
nodejs/node | 636b3432d3b4cfe07ab9ee59ef861c9a96ea18fa | 4f701329728e6ee6da4e40176bdf8bb7694d1a41 | test: remove test-http-max-sockets flaky designation
There is no recent trace of failure for this test.
Fixes: https://github.com/nodejs/node/issues/47116
PR-URL: https://github.com/nodejs/node/pull/54976
Reviewed-By: Robert Nagy <ronagy@icloud.com>
Reviewed-By: Jake Yuesong Li <jake.yuesong@gmail.com> | [
{
"path": "test/sequential/sequential.status",
"patch": "@@ -14,8 +14,6 @@ test-watch-mode-inspect: PASS, FLAKY\n test-http2-large-file: PASS, FLAKY\n \n [$system==win32]\n-# https://github.com/nodejs/node/issues/47116\n-test-http-max-sockets: PASS, FLAKY\n # https://github.com/nodejs/node/issues/49630\n te... | 2024-09-20T09:57:06 |
rust-lang/rust | e028e7848cc752a9e84b082e9ec888cd28982f62 | 417cc114f526a6be58faf6f90966381e366a7986 | Re-enable fixed rustc test | [
{
"path": "scripts/test_rustc_tests.sh",
"patch": "@@ -59,7 +59,6 @@ rm tests/ui/asm/x86_64/goto.rs # inline asm labels not supported\n rm tests/ui/asm/label-operand.rs # same\n rm tests/ui/asm/may_unwind.rs # asm unwinding not supported\n rm tests/ui/asm/aarch64/may_unwind.rs # same\n-rm tests/ui/asm/x86_6... | 2026-02-16T09:53:02 |
golang/go | f4de2ecffb9c107e6058c1ebb30c68de1157f5c6 | ce46c9db867fb54a9c1f39b73ac8c2f339ca0587 | cmd/compile/internal/walk: convert composite literals to interfaces without allocating
Today, this interface conversion causes the struct literal
to be heap allocated:
var sink any
func example1() {
sink = S{1, 1}
}
For basic literals like integers that are directly used in
an interface conversi... | [
{
"path": "src/cmd/compile/internal/walk/order.go",
"patch": "@@ -226,7 +226,8 @@ func (o *orderState) addrTemp(n ir.Node) ir.Node {\n \t// for the implicit conversion of \"foo\" to any, and we can't handle\n \t// the relocations in that temp.\n \tif n.Op() == ir.ONIL || (n.Op() == ir.OLITERAL && !base.Ctxt... | 2025-02-14T04:49:50 |
electron/electron | f5c177698ed8ad80c068d0f5788c8606e81d31c2 | 737e3de3fa34acd9b9222a898de44cf233ca9575 | fix: remove EarlyMallocZoneRegistration call (#40128) | [
{
"path": "BUILD.gn",
"patch": "@@ -916,10 +916,7 @@ if (is_mac) {\n assert(defined(invoker.helper_name_suffix))\n \n output_name = electron_helper_name + invoker.helper_name_suffix\n- deps = [\n- \":electron_framework+link\",\n- \"//base/allocator:early_zone_registration_appl... | 2023-10-09T00:43:51 |
facebook/react | 88df5242d6f8e319d7903f6fa984e3a02cd44b34 | e36ee763faf9f273f162ad3292b36382834bdf30 | [tests] assertLog before act in ReactDOMServerSelectiveHydration (#28759)
Fixes tests blocking https://github.com/facebook/react/pull/28737 | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMServerSelectiveHydration-test.internal.js",
"patch": "@@ -1114,14 +1114,16 @@ describe('ReactDOMServerSelectiveHydration', () => {\n // Outer was hydrated earlier\n OuterTestUtils.assertLog([]);\n \n+ // First Inner Mouse Enter fires then ... | 2024-04-10T14:34:02 |
vercel/next.js | b6d2c365791e6557df977d828648e5c8b6a928af | 39fb1ea8d72d06a504f6857beb44ee39d565e977 | [turbopack] Update Turbopack build warning message (#82591)
Drop the scare text about not running turbopack in production. Instead clarify that builds are beta and direct people to our documentation site.
For example:
 {\n- warnAboutTurbopackBuilds(loadedConfig)\n+ warnAboutTurbopackBuilds()\n }\n \n ... | 2025-08-13T17:06:36 |
nodejs/node | 653b96527a996eea7b32773bfd7f428cf494e4fe | 29357cb0efffddf708ab0fd5c0d8a19532ac392b | build,win: float VS 17.11 compilation patch
Fixes: https://github.com/nodejs/node/issues/54898
PR-URL: https://github.com/nodejs/node/pull/54970
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Luigi Pinca <luigipi... | [
{
"path": "deps/ngtcp2/nghttp3/lib/nghttp3_ringbuf.c",
"patch": "@@ -33,7 +33,7 @@\n \n #include \"nghttp3_macro.h\"\n \n-#if defined(_MSC_VER) && !defined(__clang__) && \\\n+#if defined(_MSC_VER) && _MSC_VER < 1941 && !defined(__clang__) && \\\n... | 2024-09-19T20:36:42 |
golang/go | ce46c9db867fb54a9c1f39b73ac8c2f339ca0587 | d327e52d438854acae275cdf9d2c1fe42f037eb8 | internal/godebug,crypto/fips140: make fips140 setting immutable
Updates #70123
Co-authored-by: qmuntal <quimmuntal@gmail.com>
Change-Id: I6a6a4656fd23ecd82428cccbd7c48692287fc75a
Reviewed-on: https://go-review.googlesource.com/c/go/+/657116
Reviewed-by: Daniel McCarney <daniel@binaryparadox.net>
Reviewed-by: Roland S... | [
{
"path": "src/crypto/fips140/fips140.go",
"patch": "@@ -7,11 +7,8 @@ package fips140\n import (\n \t\"crypto/internal/fips140\"\n \t\"crypto/internal/fips140/check\"\n-\t\"internal/godebug\"\n )\n \n-var fips140GODEBUG = godebug.New(\"fips140\")\n-\n // Enabled reports whether the cryptography libraries ar... | 2025-03-12T17:02:39 |
facebook/react | e36ee763faf9f273f162ad3292b36382834bdf30 | 42eff4bc78a3636953c55096ca0b220c611a74cc | [tests] assertLog before act in ReactCompositeComponentState (#28758)
Fixes tests blocking https://github.com/facebook/react/pull/28737 | [
{
"path": "packages/react-dom/src/__tests__/ReactCompositeComponentState-test.js",
"patch": "@@ -152,21 +152,6 @@ describe('ReactCompositeComponent-state', () => {\n root.render(<TestComponent />);\n });\n \n- await act(() => {\n- root.render(<TestComponent nextColor=\"green\" />);\n- }... | 2024-04-10T14:33:51 |
electron/electron | 737e3de3fa34acd9b9222a898de44cf233ca9575 | 8b8fbd0408c95487afcee28fa18b2a8b2270f713 | chore: restore deprecate as an internal module (#40124)
* Revert "refactor: don't expose deprecate as an internal module (#35311)"
This reverts commit 8424779906ae33222764db9ed837f55115143e71.
* check crashed event warnings | [
{
"path": "filenames.auto.gni",
"patch": "@@ -142,6 +142,7 @@ auto_filenames = {\n ]\n \n sandbox_bundle_deps = [\n+ \"lib/common/api/deprecate.ts\",\n \"lib/common/api/native-image.ts\",\n \"lib/common/define-properties.ts\",\n \"lib/common/ipc-messages.ts\",\n@@ -247,11 +248,11 @@ auto_... | 2023-10-08T23:55:16 |
nodejs/node | 1e16779fa18ef0b912ec6d8cf5d10afed13e375a | 762a440e68b1893c9b0478050d9a018cf285a9de | deps: V8: cherry-pick 01a47f3ffff2
Original commit message:
[cfi] Add missing 'typename' in SegmentedTable
Makes the code more consistent and fixes compilation on older Clang
versions.
Change-Id: I82abebd500e6651ac5c5b180cd7b49b4f20e8299
Reviewed-on: https://chromium-review.googlesource.com/c/v8... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.7',\n+ 'v8_embedder_string': '-node.8',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-08-26T18:04:23 |
vercel/next.js | 9542b8b03856413c9378160be7678949139c28f7 | 5fa0987aea78f594b46d03ce1c9e8c4963563372 | Docs/feedback round aug (#82549)
Closes:
https://linear.app/vercel/issue/DOC-4949/clarification-redirecting-in-server-actions-to-self,
https://linear.app/vercel/issue/DOC-4973/global-error-and-global-not-found-in-prod-checklist
Additionally addresses community confusion and feedback around Server
Functions initial cl... | [
{
"path": "docs/01-app/01-getting-started/08-updating-data.mdx",
"patch": "@@ -172,6 +172,8 @@ There are two main ways you can invoke a Server Function:\n 1. [Forms](#forms) in Server and Client Components\n 2. [Event Handlers](#event-handlers) and [useEffect](#useeffect) in Client Components\n \n+> **Good ... | 2025-08-13T10:17:14 |
facebook/react | 42eff4bc78a3636953c55096ca0b220c611a74cc | ed3c65caf042f75fe2fdc2a5e568a9624c6175fb | [tests] Fix assertions not flushed before act (#28745)
Fixes some easy cases blocking
https://github.com/facebook/react/pull/28737, I'll follow up with more
complex/interesting cases in other PRs. | [
{
"path": "packages/react-dom/src/__tests__/ReactCompositeComponent-test.js",
"patch": "@@ -913,15 +913,13 @@ describe('ReactCompositeComponent', () => {\n await act(() => {\n root.render(<Wrapper name=\"A\" />);\n });\n+\n+ assertLog(['A componentWillMount', 'A render', 'A componentDidMoun... | 2024-04-10T14:33:41 |
golang/go | d6c29c71562df407cc18846efd2e9d8fe0b28960 | a21b71daf57a54a12c2aedff0fba0860fa977590 | cmd/compile: fix offset calculation error in memcombine
Fixes #73812
Change-Id: If7a6e103ae9e1442a2cf4a3c6b1270b6a1887196
Reviewed-on: https://go-review.googlesource.com/c/go/+/675175
Reviewed-by: Keith Randall <khr@google.com>
Auto-Submit: Junyang Shao <shaojunyang@google.com>
Reviewed-by: Keith Randall <khr@golang.... | [
{
"path": "src/cmd/compile/internal/ssa/memcombine.go",
"patch": "@@ -581,7 +581,7 @@ func combineStores(root *Value) {\n \t\t\tmask := int64(1)<<(8*a[i].size) - 1\n \t\t\ts := 8 * (a[i].offset - a[0].offset)\n \t\t\tif root.Block.Func.Config.BigEndian {\n-\t\t\t\ts = aTotalSize*8 - a[i].size - s\n+\t\t\t\t... | 2025-05-21T18:50:39 |
nodejs/node | 95f2213eed80232e6ddfbf8aad1db13af3c45aa4 | 09d997f1819a4f0f3433e14769d226c09037f377 | deps: always define V8_NODISCARD as no-op
It's causing compiler errors with some classes on Xcode 11
and the attribute should have no runtime effect.
PR-URL: https://github.com/nodejs/node/pull/54077
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Joyee Cheun... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.5',\n+ 'v8_embedder_string': '-node.6',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-08-08T04:53:41 |
electron/electron | cff50ac65a9c6d4f53aa74570ea42859466c4469 | a55c163db02a3092226ba20731b08292404561d4 | fix: fix vibrancy applying without transparency on MacOS (#40109) | [
{
"path": "shell/browser/native_window.cc",
"patch": "@@ -101,6 +101,11 @@ NativeWindow::NativeWindow(const gin_helper::Dictionary& options,\n options.Get(options::kTransparent, &transparent_);\n options.Get(options::kEnableLargerThanScreen, &enable_larger_than_screen_);\n options.Get(options::kTitleB... | 2023-10-06T18:57:26 |
vercel/next.js | 61f0853021e078eed39d315719ec0c848843fdcd | 6881843ac0c4c7d9fc1fdb55fe51bced1abca914 | [turbopack] Fix a crash under turbopackPersistentCaching (#82592)
Address a crash found at head when testing caching while switching back and forth from `dev` and `build`.
```
thread '<unnamed>' panicked at turbopack/crates/turbo-persistence/src/db.rs:798:17:
attempt to subtract with overflow
stack backtrace:
0:... | [
{
"path": "turbopack/crates/turbo-persistence/src/compaction/selector.rs",
"patch": "@@ -200,10 +200,13 @@ fn total_duplication_size(duplication: &IntervalMap<Option<DuplicationInfo>>) ->\n \n type MergeSegments = Vec<SmallVec<[usize; 1]>>;\n \n+/// Computes the set of merge segments that should be run to c... | 2025-08-13T05:14:03 |
rust-lang/rust | c5a613119e121d63e70c05de463d6226eb6146b8 | 23a3e642d7e245a7d65eb1ba5a4df3d089c39e6a | fix: use `ExprIsRead::Yes` for binary operator operands
both operands of binary operators (including compound assignments like
`+=`) were inferred with `ExprIsRead::No`, which prevented divergence
detection for place expressions of type `!`. this caused false type
mismatches when a function's return type depended on t... | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/infer/op.rs",
"patch": "@@ -178,9 +178,9 @@ impl<'a, 'db> InferenceContext<'a, 'db> {\n // trait matching creating lifetime constraints that are too strict.\n // e.g., adding `&'a T` and `&'b T`, given `&'x T: Add<&'x T>`, ... | 2026-02-16T07:47:46 |
facebook/react | ed3c65caf042f75fe2fdc2a5e568a9624c6175fb | 3f9e237a2feb74f1fca23b76d9d2e9e1713e2ba1 | Warn if outdated JSX transform is detected (#28781)
We want to warn if we detect that an app is using an outdated JSX
transform. We can't just warn if `createElement` is called because we
still support `createElement` when it's called manually. We only want to
warn if `createElement` is output by the compiler.
T... | [
{
"path": "packages/react-dom/src/__tests__/ReactDeprecationWarnings-test.js",
"patch": "@@ -91,6 +91,9 @@ describe('ReactDeprecationWarnings', () => {\n );\n });\n \n+ // Disabling this until #28732 lands so we can assert on the warning message.\n+ // (It's already disabled in all but the Meta buil... | 2024-04-09T21:13:19 |
nodejs/node | 09d997f1819a4f0f3433e14769d226c09037f377 | 1866363854ed6e2d040cd7d25dbf0aca2fbf5fd3 | deps: fix FP16 bitcasts.h
PR-URL: https://github.com/nodejs/node/pull/53134
Refs: https://github.com/nodejs/node/issues/52809
Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
PR-URL: https://github.com/nodejs/node/pul... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.4',\n+ 'v8_embedder_string': '-node.5',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-05-28T07:10:52 |
golang/go | c5a1fc1f97b4b6b384a9852d96a77868e0f5e6a9 | a731955f0f48b9d1e74ea3aa65f8485388a2849e | crypto/tls: add GetEncryptedClientHelloKeys
This allows servers to rotate their ECH keys without needing to restart
the server.
Fixes #71920
Change-Id: I55591ab3303d5fde639038541c50edcf1fafc9aa
Reviewed-on: https://go-review.googlesource.com/c/go/+/670655
TryBot-Bypass: Roland Shoemaker <roland@golang.org>
Reviewed-... | [
{
"path": "api/next/71920.txt",
"patch": "@@ -0,0 +1 @@\n+pkg crypto/tls, type Config struct, GetEncryptedClientHelloKeys func(*ClientHelloInfo) ([]EncryptedClientHelloKey, error) #71920",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/c... | 2025-05-07T18:37:52 |
electron/electron | 73553032ea99929b1511d6e873ec81328a42a356 | 8f7a48879ef8633a76279803637cdee7f7c6cd4f | fix: toggling DevTools while minimized on Windows (#40091)
fix: toggling devtools while minimized on Windows | [
{
"path": "shell/browser/ui/views/inspectable_web_contents_view_views.cc",
"patch": "@@ -142,8 +142,11 @@ void InspectableWebContentsViewViews::CloseDevTools() {\n \n devtools_visible_ = false;\n if (devtools_window_) {\n- inspectable_web_contents()->SaveDevToolsBounds(\n- devtools_window_->Ge... | 2023-10-06T00:26:31 |
rust-lang/rust | 25a71ea88818c2a364a915196e06e0bac39693dd | 88d951e25107a9c3e4291e999101e1130b550d86 | Fix predicates of builtin derive traits with two parameters defaulting to `Self`
I.e. `PartialEq` and `PartialOrd`. | [
{
"path": "src/tools/rust-analyzer/crates/hir-ty/src/builtin_derive.rs",
"patch": "@@ -260,7 +260,22 @@ fn simple_trait_predicates<'db>(\n let param_idx =\n param_idx.into_raw().into_u32() + (generic_params.len_lifetimes() as u32);\n let param_ty = Ty::new_param(inter... | 2026-02-15T22:11:51 |
vercel/next.js | 7cc0ed1fba6badef4375b34c3769635773484eac | 9c9aaed5bb9338ef31b0517ccf0ab4414f2093d8 | Fix: Resolve <Head> PPR resume mismatch by search params (#82587)
The `key` prop on `<Head>` component differs during prerender and a PPR
resume because of search params being part of the key, causing the
resume to treat them as distinct components, hence the error\*. However,
it is necessary semantically to include s... | [
{
"path": "packages/next/src/client/components/app-router.tsx",
"patch": "@@ -474,8 +474,17 @@ function Router({\n //\n // The `key` is used to remount the component whenever the head moves to\n // a different segment.\n- const [headCacheNode, headKey] = matchingHead\n- head = <Head key={h... | 2025-08-13T00:51:34 |
facebook/react | 3f9e237a2feb74f1fca23b76d9d2e9e1713e2ba1 | 64c8d2d45d49dbb2f59ea23e5e739eb79e124abc | Fix: Suspend while recovering from hydration error (#28800)
Fixes a bug that happens when an error occurs during hydration, React
switches to client rendering, and then the client render suspends. It
works correctly if there's a Suspense boundary on the stack, but not if
it happens in the shell of the app.
Prior... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMFizzShellHydration-test.js",
"patch": "@@ -548,4 +548,79 @@ describe('ReactDOMFizzShellHydration', () => {\n ]);\n expect(container.textContent).toBe('Hello world');\n });\n+\n+ it(\n+ 'handles suspending while recovering from a hydration err... | 2024-04-09T21:11:46 |
golang/go | 77345f41ee36c8db3ba7e0f687a8834fa7b83c48 | ed24bb4e6047890af272733c5a8bdcc43834e517 | internal/trace: skip clock snapshot checks on Windows in stress mode
Windows' monotonic and wall clock granularity is just too coarse to get
reasonable values out of stress mode, which is creating new trace
generations constantly.
Fixes #73813.
Change-Id: Id9cb2fed9775ce8d78a736d0164daa7bf45075e0
Reviewed-on: https:... | [
{
"path": "src/internal/trace/reader_test.go",
"patch": "@@ -42,7 +42,9 @@ func TestReaderGolden(t *testing.T) {\n \t\t\tif err != nil {\n \t\t\t\tt.Fatalf(\"failed to parse test file at %s: %v\", testPath, err)\n \t\t\t}\n-\t\t\ttestReader(t, tr, ver, exp)\n+\t\t\tv := testtrace.NewValidator()\n+\t\t\tv.Go... | 2025-05-21T17:50:15 |
nodejs/node | dfff61475eb2b31043947b914bdcabfae7a60c0a | 69ad89f8eb47bebe90d0c6ba607b7628f103a076 | deps: disable V8 concurrent sparkplug compilation
It introduces process hangs on some platforms because Node.js doesn't
tear down V8 correctly.
Disable it while we work on a solution.
Refs: https://github.com/nodejs/node/issues/47297
Refs: https://bugs.chromium.org/p/v8/issues/detail?id=13902
PR-URL: https://github.c... | [
{
"path": "common.gypi",
"patch": "@@ -36,7 +36,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.1',\n+ 'v8_embedder_string': '-node.2',\n \n ##### V8 defaults for Node.js #####\n "... | 2023-04-06T12:50:56 |
electron/electron | 83a928f6e3fa3567462dd90eeb50666af0dd4dff | 3392d9a2e74973960ca516adc1c1684e03f78414 | fix: crashed events deprecation (#40090) | [
{
"path": "lib/browser/api/app.ts",
"patch": "@@ -114,5 +114,11 @@ for (const name of events) {\n }\n \n // Deprecation.\n-deprecate.event(app, 'gpu-process-crashed', 'child-process-gone');\n-deprecate.event(app, 'renderer-process-crashed', 'render-process-gone');\n+deprecate.event(app, 'gpu-process-crashed... | 2023-10-05T23:57:14 |
vercel/next.js | 9c9aaed5bb9338ef31b0517ccf0ab4414f2093d8 | b1c08857cb2ece10cc373747031555ac8af7fb89 | fix router handling when setting a location response header (#82588)
When middleware sets a `Location` header on the response, we should not
assume that the target URL is the one we want to handle the request. We
only want to route to the underlying location header when a rewrite is
explicitly triggered rather than re... | [
{
"path": "packages/next/src/server/lib/router-utils/resolve-routes.ts",
"patch": "@@ -18,7 +18,10 @@ import { formatHostname } from '../format-hostname'\n import { toNodeOutgoingHttpHeaders } from '../../web/utils'\n import { isAbortError } from '../../pipe-readable'\n import { getHostname } from '../../..... | 2025-08-13T00:26:49 |
facebook/react | 64c8d2d45d49dbb2f59ea23e5e739eb79e124abc | 7f5d25e23e82adef262493794010385f1955f0b6 | Attempt to fix diff syncing for Meta (#28801)
#28796 broke Meta's PR syncing tool, hoping this fixes it | [
{
"path": ".github/workflows/commit_artifacts.yml",
"patch": "@@ -132,7 +132,7 @@ jobs:\n ./compiled/facebook-www/eslint-plugin-react-hooks.js\n \n # Move unstable_server-external-runtime.js into facebook-www\n- mv build/oss-stable/react-dom/unstable_server-external-runtime.js... | 2024-04-09T21:05:18 |
golang/go | ed24bb4e6047890af272733c5a8bdcc43834e517 | e89791983a1330e467c8ba2cca9d7a581a5789cc | cmd/compile/internal/escape: propagate constants to interface conversions to avoid allocs
Currently, the integer value in the following interface conversion gets
heap allocated:
v := 1000
fmt.Println(v)
In contrast, this conversion does not currently cause the integer value
to be heap allocated:
fmt.Printl... | [
{
"path": "src/cmd/compile/internal/escape/escape.go",
"patch": "@@ -531,8 +531,11 @@ func (b *batch) rewriteWithLiterals(n ir.Node, fn *ir.Func) {\n \tif n == nil || fn == nil {\n \t\treturn\n \t}\n-\tif n.Op() != ir.OMAKESLICE {\n-\t\t// TODO(thepudds): we handle more cases later in our CL stack.\n+\tif n... | 2025-02-12T23:55:04 |
nodejs/node | bb405210c58919a61d8b2dd9577411784bcbed85 | be4babb3c2cb46030057577bc93153ebd245f2a3 | test_runner: support typescript module mocking
PR-URL: https://github.com/nodejs/node/pull/54878
Fixes: https://github.com/nodejs/node/issues/54428
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Erick Wendel <erick.w... | [
{
"path": "lib/internal/modules/esm/translators.js",
"patch": "@@ -459,7 +459,7 @@ translators.set('wasm', async function(url, source) {\n // Strategy for loading a commonjs TypeScript module\n translators.set('commonjs-typescript', function(url, source) {\n emitExperimentalWarning('Type Stripping');\n- ... | 2024-09-19T13:36:52 |
rust-lang/rust | 76c041c19a6c9e4c0a196c92afda2c82d1dc78be | f5161526e6315d3aeb0f89456de451c66f646017 | stdarch-gen-hexagon: Fix formatting | [
{
"path": "library/stdarch/crates/stdarch-gen-hexagon/src/main.rs",
"patch": "@@ -312,8 +312,13 @@ fn read_header(crate_dir: &Path) -> Result<String, String> {\n println!(\"Reading HVX header from: {}\", header_path.display());\n println!(\" (LLVM version: {})\", LLVM_VERSION);\n \n- std::fs::re... | 2026-02-15T18:18:19 |
electron/electron | 3392d9a2e74973960ca516adc1c1684e03f78414 | 5ad69df52ea16a21561992f63b17cbaae866b77d | fix: all children showing when showing child window (#40062) | [
{
"path": "shell/browser/native_window_mac.h",
"patch": "@@ -189,6 +189,9 @@ class NativeWindowMac : public NativeWindow,\n has_deferred_window_close_ = defer_close;\n }\n \n+ void set_wants_to_be_visible(bool visible) { wants_to_be_visible_ = visible; }\n+ bool wants_to_be_visible() const { return ... | 2023-10-05T13:19:57 |
facebook/react | 7f5d25e23e82adef262493794010385f1955f0b6 | bf40b024421a0e1f2f882fd7171ea39cd74c88df | Fix cloneElement using string ref w no owner (#28797)
Fix for an issue introduced in #28473 where cloneElement() with a string
ref fails due to lack of an owner. We should use the current owner in
this case.
---------
Co-authored-by: Rick Hanlon <rickhanlonii@fb.com> | [
{
"path": "packages/react/src/__tests__/ReactElementClone-test.js",
"patch": "@@ -274,8 +274,56 @@ describe('ReactElementClone', () => {\n \n const root = ReactDOMClient.createRoot(document.createElement('div'));\n await act(() => root.render(<Grandparent />));\n- expect(component.childRef).toEqu... | 2024-04-09T20:43:49 |
golang/go | 3ae95aafb5d656596212c672c6e104e5c8802dbc | ce49eb488af1c5273b226b3b52a8cbd7eae63a51 | log/slog: add GroupAttrs
GroupAttrs is a more efficient version of Group
that takes a slice of Attr values.
Fixes #66365
Change-Id: Ic3046704825e17098f2fea5751f2959dce1073e2
Reviewed-on: https://go-review.googlesource.com/c/go/+/672915
Reviewed-by: Jonathan Amsterdam <jba@google.com>
LUCI-TryBot-Result: Go LUCI <gol... | [
{
"path": "api/next/66365.txt",
"patch": "@@ -0,0 +1 @@\n+pkg log/slog, func GroupAttrs(string, ...Attr) Attr #66365",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/next/6-stdlib/99-minor/log/slog/66365.md",
"patch": "@@ -0,0 +1 @@\n+[GroupAttrs] creates ... | 2025-05-14T20:26:57 |
vercel/next.js | 2036a5b1bf844a5492e109a841b47317613eface | 3d5e456a928041ca638ebca54ab511a23d70cd75 | [Cache Components] Avoid cache misses when resuming a cached page (#82578)
When a page component (or a parallel route slot) is cached, but other
parts of the component tree are dynamic, we generate a partially static
shell at buildtime that's resumed at runtime. During the resume, we need
to ensure that the cache key ... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -776,5 +776,6 @@\n \"775\": \"Node.js instrumentation extensions should not be loaded in the Edge runtime.\",\n \"776\": \"`unstable_isUnrecognizedActionError` can only be used on the client.\",\n \"777\": \"Invariant: failed to find source route %s ... | 2025-08-12T19:40:33 |
nodejs/node | be4babb3c2cb46030057577bc93153ebd245f2a3 | 6031a4bc7cab01623d93e75d17c5b796b5bb831e | module: report unfinished TLA in ambiguous modules
PR-URL: https://github.com/nodejs/node/pull/54980
Fixes: https://github.com/nodejs/node/issues/54931
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> | [
{
"path": "lib/internal/modules/cjs/loader.js",
"patch": "@@ -1381,7 +1381,7 @@ function loadESMFromCJS(mod, filename) {\n if (isMain) {\n require('internal/modules/run_main').runEntryPointWithESMLoader((cascadedLoader) => {\n const mainURL = pathToFileURL(filename).href;\n- cascadedLoader.... | 2024-09-19T10:34:13 |
electron/electron | b3a1c6d13cfad8b0519dd7957c2f2db10acf98e8 | b0590b6ee874fbeac49bb5615525d145835eb64f | fix: error using `webcrypto.subtle.importKey()` (#40070)
fix: error using webcrypto.subtle.importKey() | [
{
"path": "patches/node/.patches",
"patch": "@@ -51,3 +51,4 @@ net_use_asserts_in_js_socket_stream_to_catch_races_in_future.patch\n lib_fix_broadcastchannel_initialization_location.patch\n src_adapt_to_v8_exception_api_change.patch\n lib_test_do_not_hardcode_buffer_kmaxlength.patch\n+fix_handle_possible_dis... | 2023-10-05T08:46:53 |
golang/go | 304d9e2fd1b62d236eb48ec838be3680cb7845e6 | d3d22cc5e4be996345e47d6994c5f3d5f51811fa | bufio: update buffer documentation
Fixes #73778
Change-Id: If6d87a92786c9b0ee2bd790b57937919afe0fc5c
GitHub-Last-Rev: 4b4c7595d5779a127b01a5d71adca91cb5aa6c05
GitHub-Pull-Request: golang/go#73804
Reviewed-on: https://go-review.googlesource.com/c/go/+/674695
Auto-Submit: Alan Donovan <adonovan@google.com>
LUCI-TryBot-... | [
{
"path": "src/bufio/scan.go",
"patch": "@@ -260,8 +260,11 @@ func (s *Scanner) setErr(err error) {\n \t}\n }\n \n-// Buffer sets the initial buffer to use when scanning\n+// Buffer controls memory allocation by the Scanner.\n+// It sets the initial buffer to use when scanning\n // and the maximum size of b... | 2025-05-21T14:48:21 |
nodejs/node | f8b7a171463e775da304bccf4cf165e634525c7e | 50136a167ddf94328c53f10c804804f0ffeb0ea2 | test: update test to support OpenSSL32
Refs: https://github.com/nodejs/node/issues/53382
This test fails on OpenSSL32 because it complains the key being
used is too short.
It seems to have been missed when the test suite was udpated to have
a Makefile to generate key material as the keys are hard coded in the
test a... | [
{
"path": "test/parallel/test-tls-cert-regression.js",
"patch": "@@ -21,50 +21,26 @@\n \n 'use strict';\n const common = require('../common');\n+const fixtures = require('../common/fixtures');\n \n if (!common.hasCrypto)\n common.skip('missing crypto');\n \n const tls = require('tls');\n \n-const cert =\n... | 2024-09-18T16:36:08 |
facebook/react | 7f93cb41c8e1352eec158e508bc612025425266d | f6131653570bbbf62d642ba9343b9cd0ab1ae97c | [DOM] Infer react-server entries bundles if not explicitly configured (#28795)
When packaging we want to infer that a bundle exists for a
`react-server` file even if it isn't explicitly configured. This is
useful in particular for the react-server entrypoints that error on
import that were recently added to `react-... | [
{
"path": "packages/react-dom/src/ReactDOMSharedInternals.js",
"patch": "@@ -47,8 +47,4 @@ const Internals: ReactDOMInternals = {\n usingClientEntryPoint: false,\n };\n \n-// if (__DEV__) {\n-// (Internals: any).usingClientEntryPoint = false;\n-// }\n-\n export default Internals;",
"additions": 0,
... | 2024-04-09T17:39:25 |
vercel/next.js | 1e5932d5503d833b42fca86eb84d0cf508dd7139 | 4a0763e4524d298fa97e2f6f8217780c28555930 | [Runtime prefetch] resolve runtime APIs in a separate task (#82475)
In a runtime prefetch, sync IO is dangerous, because it makes us abort
the whole prerender. If this abort happens early, a runtime prefetch can
end up giving us *less* data than a static prefetch. To prevent this, we
can split the final prerender into... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -775,5 +775,6 @@\n \"774\": \"Route %s used %s outside of a Server Component. This is not allowed.\",\n \"775\": \"Node.js instrumentation extensions should not be loaded in the Edge runtime.\",\n \"776\": \"`unstable_isUnrecognizedActionError` can o... | 2025-08-12T17:42:28 |
electron/electron | b0590b6ee874fbeac49bb5615525d145835eb64f | 713d8c4167a07971775db847adca880f49e8d381 | fix: failing build with `enable_electron_extensions=false` (#40032)
* fix: ENABLE_EXTENSIONS -> ENABLE_ELECTRON_EXTENSIONS
* fix: extension guard fixes
* chore: fix linker errors | [
{
"path": "chromium_src/BUILD.gn",
"patch": "@@ -342,6 +342,34 @@ static_library(\"chrome\") {\n \"//components/pdf/renderer\",\n ]\n }\n+ } else {\n+ # These are required by the webRequest module.\n+ sources += [\n+ \"//extensions/browser/api/declarative_net_request/request_ac... | 2023-10-04T08:40:01 |
golang/go | d3d22cc5e4be996345e47d6994c5f3d5f51811fa | 419367969c88e6e97f8648669969a01b60bdd350 | lib/fips140: set inprocess.txt to v1.0.0
Fixes #70200
Change-Id: I6a6a46567ce0834fb4b7f28bf06646326f8e5105
Reviewed-on: https://go-review.googlesource.com/c/go/+/674916
Reviewed-by: Daniel McCarney <daniel@binaryparadox.net>
Auto-Submit: Filippo Valsorda <filippo@golang.org>
Reviewed-by: Roland Shoemaker <roland@gola... | [
{
"path": "lib/fips140/inprocess.txt",
"patch": "@@ -0,0 +1 @@\n+v1.0.0",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
}
] | 2025-05-21T12:41:28 |
facebook/react | acef2f811125af250631965e6c1a8c7479b30b42 | 556a087de3c94761d3834b11c30630dcaa82600c | [DOM] Fix package.json files for #28784 (#28785)
Missed some files for the react-server disallow client change in #28784 | [
{
"path": "packages/react-dom/package.json",
"patch": "@@ -25,23 +25,28 @@\n \"files\": [\n \"LICENSE\",\n \"README.md\",\n- \"index.js\",\n \"client.js\",\n+ \"client.react-server.js\",\n+ \"index.js\",\n \"profiling.js\",\n- \"server.js\",\n+ \"profiling.react-server.js\",... | 2024-04-08T22:49:18 |
nodejs/node | 50136a167ddf94328c53f10c804804f0ffeb0ea2 | 7e00be765090e122f377e4d83e58c26658d4bfbf | test_runner: avoid coverage report partial file names
Co-author: Medhansh404 <21ucs126@lnmiit.ac.in>
PR-URL: https://github.com/nodejs/node/pull/54379
Fixes: https://github.com/nodejs/node/issues/51299
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Mo... | [
{
"path": "lib/internal/test_runner/utils.js",
"patch": "@@ -1,8 +1,10 @@\n 'use strict';\n const {\n ArrayPrototypeFlatMap,\n+ ArrayPrototypeForEach,\n ArrayPrototypeJoin,\n ArrayPrototypeMap,\n+ ArrayPrototypePop,\n ArrayPrototypePush,\n ArrayPrototypeReduce,\n ArrayPrototypeSome,\n@@ -24,7 ... | 2024-09-18T16:24:19 |
vercel/next.js | 4ade2cf4c389933f434d3ea8cd9d8d8453daf0ef | 4984ac44af186336f22061d7653bf17dd6846136 | Turbopack: Watch parent directories before watching children in `non_recursive_helpers::start_watching_dir_and_parents` (#82454)
Fixes a potential race condition https://github.com/vercel/next.js/pull/82130#discussion_r2249131891:
> I think there is a race condition here, when the child dir is created while we are ... | [
{
"path": "turbopack/crates/turbo-tasks-fs/src/watcher.rs",
"patch": "@@ -287,23 +287,39 @@ mod non_recursive_helpers {\n dir_path: &Path,\n root_path: &Path,\n ) -> Result<()> {\n- let mut cur_path = dir_path;\n- loop {\n- start_watching_dir(&mut state.notify_wa... | 2025-08-12T16:07:28 |
facebook/react | 556a087de3c94761d3834b11c30630dcaa82600c | f62cf8c62052ae780d351090013f7155cf9a868c | [DOM] disallow client entrypoints with react-server condition (#28784)
`react-server` precludes loading code that expects to be run in a client
context. This includes react-dom/client react-dom/server
react-dom/unstable_testing react-dom/profiling and react-dom/static
This update makes importing any of these clie... | [
{
"path": "packages/react-dom/npm/client.react-server.js",
"patch": "@@ -0,0 +1,5 @@\n+'use strict';\n+\n+throw new Error(\n+ 'react-dom/client is not supported in React Server Components.'\n+);",
"additions": 5,
"deletions": 0,
"language": "JavaScript"
},
{
"path": "packages/react-dom/... | 2024-04-08T22:37:06 |
electron/electron | 9d0e6d09f0be0abbeae46dd3d66afd96d2daacaa | 503ae86ab216406485bf437969da8c56266c3346 | chore: bump chromium to 119.0.6043.0 (main) (#40045)
* chore: bump chromium in DEPS to 119.0.6036.0
* chore: bump chromium in DEPS to 119.0.6037.0
* chore: bump chromium in DEPS to 119.0.6039.0
* chore: bump chromium in DEPS to 119.0.6041.0
* chore: update chromium patches
* 4765230: Move //content/brow... | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -775,6 +775,7 @@ step-mksnapshot-build: &step-mksnapshot-build\n fi\n sed $SEDOPTION '/.*builtins-pgo/d' out/Default/mksnapshot_args\n sed $SEDOPTION '/--turbo-profiling-input/d' out/Default/mksnapshot_args\n+ sed $SEDOPTION '/The gn... | 2023-10-02T22:01:07 |
nodejs/node | 65768bca59f6d086beca782549a3d15a55988595 | 5e87577b4f37911c2279176f183514d9496a1ceb | cli: fix spacing for port range error
PR-URL: https://github.com/nodejs/node/pull/54495
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "src/node_options.cc",
"patch": "@@ -1165,7 +1165,7 @@ inline uint16_t ParseAndValidatePort(const std::string_view port,\n \n if (r.ec == std::errc::result_out_of_range ||\n (result != 0 && result < 1024)) {\n- errors->push_back(\" must be 0 or in range 1024 to 65535.\");\n+ errors->... | 2024-09-18T09:18:16 |
golang/go | e6dacf91ffb0a356aa692ab5c46411e2eef913f3 | f12c66fbed546645389cf184b0e2ffd6ad9f78ec | runtime: use cgroup CPU limit to set GOMAXPROCS
This CL adds two related features enabled by default via compatibility
GODEBUGs containermaxprocs and updatemaxprocs.
On Linux, containermaxprocs makes the Go runtime consider cgroup CPU
bandwidth limits (quota/period) when setting GOMAXPROCS. If the cgroup
limit is low... | [
{
"path": "api/next/73193.txt",
"patch": "@@ -0,0 +1 @@\n+pkg runtime, func SetDefaultGOMAXPROCS() #73193",
"additions": 1,
"deletions": 0,
"language": "Plain Text"
},
{
"path": "doc/godebug.md",
"patch": "@@ -169,6 +169,17 @@ Go command will follow symlinks to regular files embeddin... | 2025-05-05T17:44:26 |
vercel/next.js | 4984ac44af186336f22061d7653bf17dd6846136 | a5317ed693cdfd2c97f4313bedf3cec895561074 | fix: Prevent duplicate file entries in modulesCode (#82550)
Fixes: https://github.com/vercel/next.js/issues/82515
When global-error, and presumably other similar files are defined by
users,`next build` (Webpack) outputs this to
`.next/server/app/page.js`(removed some values for brevity, see OP for
more):
```js
l... | [
{
"path": "packages/next/src/build/webpack/loaders/next-app-loader/index.ts",
"patch": "@@ -287,7 +287,7 @@ async function createTreeCodeFromPath(\n \n // Fill in the loader tree for all of the special files types (layout, default, etc) at this level\n // `page` is not included here as it's adde... | 2025-08-12T15:39:43 |
nodejs/node | 7014e50ca32d39b94d04e04a5e6498e5c2f4346f | 421977cd48264f6be43a94c19b1f5cc10f0b7bbb | lib: the REPL should survive deletion of Array.prototype methods
Specifically, `delete Array.prototype.lastIndexOf` immediately crashes
the REPL, as does deletion of a few other Array prototype methods.
PR-URL: https://github.com/nodejs/node/pull/31457
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Anna He... | [
{
"path": "lib/domain.js",
"patch": "@@ -40,6 +40,7 @@ const {\n ReflectApply,\n SafeMap,\n SafeWeakMap,\n+ StringPrototypeRepeat,\n Symbol,\n } = primordials;\n \n@@ -131,7 +132,7 @@ const domainRequireStack = new Error('require(`domain`) at this point').stack;\n const { setUncaughtExceptionCaptur... | 2024-09-17T15:08:43 |
facebook/react | 6de7733e73152ecb9a0cb8bcf73dcc1c96ca7dde | 4c12339ce3fa398050d1026c616ea43d43dcaf4a | feat[devtools]: ship source maps for content scripts and ignore list installHook script (#28730)
## Summary
1. RDT browser extension's content scripts will now ship source maps
(without source in prod, to save some bundle size).
2. `installHook` content script will be ignore listed via `ignoreList`
field in the ... | [
{
"path": "packages/react-devtools-extensions/package.json",
"patch": "@@ -39,7 +39,6 @@\n \"chrome-launch\": \"^1.1.4\",\n \"crx\": \"^5.0.0\",\n \"css-loader\": \"^1.0.1\",\n- \"devtools-ignore-webpack-plugin\": \"^0.1.1\",\n \"file-loader\": \"^6.1.0\",\n \"filesize\": \"^6.0.1\",\... | 2024-04-08T17:10:09 |
electron/electron | 93bcb30c3e84694d9df0d59fb15bd5bdb4617b2a | d301616f6087f306ac7bc53e5b6803f325255bd3 | fix: `BroadcastChannel` initialization location (#40049)
fix: `BroadcastChannel` initialization location (#37421)
* fix: BroadcastChannel initialization location
* chore: update patches
---------
Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com> | [
{
"path": "patches/node/.patches",
"patch": "@@ -48,3 +48,4 @@ tls_ensure_tls_sockets_are_closed_if_the_underlying_wrap_closes.patch\n test_deflake_test-tls-socket-close.patch\n net_fix_crash_due_to_simultaneous_close_shutdown_on_js_stream.patch\n net_use_asserts_in_js_socket_stream_to_catch_races_in_future... | 2023-10-02T08:57:09 |
vercel/next.js | a5317ed693cdfd2c97f4313bedf3cec895561074 | 756221bb2d4c0498fe1d36f1c68bf79944b4d4c0 | fix: amp deprecation warning should assert on user config (#82572) | [
{
"path": "packages/next/src/server/config.ts",
"patch": "@@ -161,6 +161,26 @@ function assignDefaults(\n delete userConfig.exportTrailingSlash\n }\n \n+ // There are a good amount of test fixtures that have amp enabled\n+ // that also assert on stderr output being empty, so we're gating the\n+ // ... | 2025-08-12T15:04:48 |
nodejs/node | 421977cd48264f6be43a94c19b1f5cc10f0b7bbb | a428b210669b656910dd10a036e4f349c3e9e85e | doc: fix history of `process.features`
PR-URL: https://github.com/nodejs/node/pull/54982
Refs: https://github.com/nodejs/node/commit/aa0308d6182b2f7a2508373770952eefd2fdb0ac
Refs: https://github.com/nodejs/node/commit/9010f5fbab2695e6c0435db396f3e92118da6d76
Refs: https://github.com/nodejs/node/commit/52a40e0fd5f59b29... | [
{
"path": "doc/api/process.md",
"patch": "@@ -1899,7 +1899,7 @@ previous setting of `process.exitCode`.\n ## `process.features.cached_builtins`\n \n <!-- YAML\n-added: REPLACEME\n+added: v12.0.0\n -->\n \n * {boolean}\n@@ -1909,7 +1909,7 @@ A boolean value that is `true` if the current Node.js build is cach... | 2024-09-17T14:49:52 |
facebook/react | 5bf2323880ec6e00b21d2cbaea98ce9dbf83dbeb | 9a6cb241504027688c166f7fedba8bd443cb9639 | Fix missing playground snapshot
ghstack-source-id: f2c8a542b525ab8c91beaad6327c128a96d122f6
Pull Request resolved: https://github.com/facebook/react-forget/pull/2827 | [
{
"path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/results.txt",
"patch": "@@ -0,0 +1,11 @@\n+function MyApp() {\n+ const $ = useMemoCache(1);\n+ let t0;\n+ if ($[0] === Symbol.for(\"react.memo_cache_sentinel\")) {\n+ t0 = <div>Hello World</div>;\n+ $[0] = t0;\n+ } else {... | 2024-04-08T15:23:29 |
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.