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 |
|---|---|---|---|---|---|
rust-lang/rust | 262744eb36c8e5621fcd2b3145c33a2f31c8044c | 59fd4ef94daa991e6797b5aa6127e824f3067def | Enable rust.remap-debuginfo in the dist profile
Anyone who distributes rustc almost certainly wants to enable this
option. It is necessary for reproducibility and for a distributed rustc
local paths are useless anyway. And finally it improves privacy if you
distribute a local build. | [
{
"path": "src/bootstrap/defaults/bootstrap.dist.toml",
"patch": "@@ -24,6 +24,8 @@ channel = \"auto-detect\"\n download-rustc = false\n # Build the llvm-bitcode-linker\n llvm-bitcode-linker = true\n+# Required to make builds reproducible.\n+remap-debuginfo = true\n \n [dist]\n # Use better compression when... | 2026-02-20T13:27:06 |
facebook/react | 0e6ea6991eef6d1f0d203965c9e4606698fe6944 | b37e4b4e616d6d66c1cde9c0a4c2cbd866b0b582 | fix[react-devtools/InspectedElementView.css]: dont draw bottom border for empty badge list (#29023)
Forward fix to https://github.com/facebook/react/pull/29014, the bug was
discovered while testing v5.2.0. | [
{
"path": "packages/react-devtools-shared/src/devtools/views/Components/InspectedElementSharedStyles.css",
"patch": "@@ -1,6 +1,5 @@\n .InspectedElementTree {\n padding: 0.25rem;\n- border-top: 1px solid var(--color-border);\n }\n .InspectedElementTree:first-of-type {\n border-top: none;",
"additio... | 2024-05-08T12:16:27 |
electron/electron | b41da150caa363d06f522427c87bd989464c9edd | b684a9826740e6cc7447a62e1feced01210fefd5 | build: add GitHub Actions testing pipeline for macOS (#41812)
* build: test the Mac runner space
* build: baby steps, super basic checkout
* chore: simplify depot-tools
* build: try a sync
* build: fix path
* build: pass different URL for sync
* build: gclient sync with --verbose
* debug: add logg... | [
{
"path": ".github/workflows/config/evm.mas.json",
"patch": "@@ -0,0 +1,26 @@\n+{\n+ \"root\": \"/Users/runner/work/electron/electron/\",\n+ \"remotes\": {\n+ \"electron\": {\n+ \"origin\": \"https://github.com/electron/electron.git\"\n+ }\n+ },\n+ \"gen\": {\n+ \"args\": [\n+ \"impor... | 2024-04-24T17:29:19 |
nodejs/node | 496e17e302ebd61440ccc4d2f84d7276434ddf43 | d5bea71e68c360b2b02967ce4127239872cee61c | src: add --disable-sigusr1 to prevent signal i/o thread
This commit adds a new flag `--disable-sigusr1` to prevent
the SignalIOThread to be up listening the SIGUSR1 events and
then starting the debugging session.
PR-URL: https://github.com/nodejs/node/pull/56441
Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -577,6 +577,17 @@ Disable the `Object.prototype.__proto__` property. If `mode` is `delete`, the\n property is removed entirely. If `mode` is `throw`, accesses to the\n property throw an exception with the code `ERR_PROTO_ACCESS`.\n \n+### `--disable-sigusr1`\n+\n+<!-... | 2025-01-13T16:51:34 |
vercel/next.js | 82e1eb1f77fdbd97d979aa354f44994c1c080e77 | 2838b8b0a55d14bb63f5643cbe78da0fdc09727d | Docs/workspace setup (#83490)
Retrying this...
## TODO
- [x] deploy docs action
- [x] verify that re-compiled deps are ok, no version regression
- [x] turbopack with fumadocs errors out, why? | [
{
"path": ".github/workflows/deploy_docs.yml",
"patch": "@@ -0,0 +1,54 @@\n+name: docs-deploy\n+\n+on:\n+ pull_request:\n+ paths:\n+ - 'apps/docs/**'\n+ types: [opened, synchronize]\n+\n+permissions:\n+ contents: read\n+ pull-requests: write\n+\n+env:\n+ NODE_LTS_VERSION: 20\n+\n+jobs:\n+ de... | 2025-09-19T08:27:34 |
facebook/react | b37e4b4e616d6d66c1cde9c0a4c2cbd866b0b582 | e150a324259c5c63ab635b227f601052b133a99f | Clean up fastAddProperties and make it more correct (#29015)
## Summary
This PR makes some fixes to the `fastAddProperties` function:
- Use `if (!attributeConfig)` instead of `if (attributeConfig ===
undefined)` to account for `null`.
- If a prop has an Object `attributeConfig` with a `diff` function
defined on... | [
{
"path": "packages/react-native-renderer/src/ReactNativeAttributePayloadFabric.js",
"patch": "@@ -446,65 +446,65 @@ function diffProperties(\n }\n \n function fastAddProperties(\n- updatePayload: null | Object,\n- nextProps: Object,\n+ payload: null | Object,\n+ props: Object,\n validAttributes: Attr... | 2024-05-08T12:10:04 |
electron/electron | d8f8560b1c427a9047f762019f4b6ca1379f8599 | 1cf194faae12592c1963040a7fd94085bae1852e | refactor: address changes and fix errors in `chrome://accessibility` (#41911)
refactor: address changes and fix errors in chrome://accessibility | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -52,7 +52,7 @@ crash_allow_setting_more_options.patch\n upload_list_add_loadsync_method.patch\n allow_setting_secondary_label_via_simplemenumodel.patch\n feat_add_streaming-protocol_registry_to_multibuffer_data_source.patch\n-fix_patch_out_profile_refs_in_... | 2024-04-23T15:30:47 |
nodejs/node | 464f335a698fb7871d943bf2ef37d8235704f17c | db7a31e2766ae3c800f6e879ec0f3d08e0759198 | stream: fix typo in ReadableStreamBYOBReader.readIntoRequests
PR-URL: https://github.com/nodejs/node/pull/56560
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "lib/internal/webstreams/readablestream.js",
"patch": "@@ -925,7 +925,7 @@ class ReadableStreamBYOBReader {\n throw new ERR_INVALID_ARG_TYPE('stream', 'ReadableStream', stream);\n this[kState] = {\n stream: undefined,\n- requestIntoRequests: [],\n+ readIntoRequests: [],\n... | 2025-01-13T15:11:47 |
golang/go | d7bd7773ebe0ffe7d7fae92acb77e10ad0539dd3 | 4b6cbc377f9b3d2598b0d30a37c9cf3797ba6e12 | go/parser: remove safePos
The logic in safePos is wrong, since (*token.File).Offset does not panic,
so this function was basically a noop (since CL 559436).
To work properly it would have to be:
return p.file.Pos(p.file.Offset(pos))
Since it effectively acts as a no-op and hasn't been noticed since,
let's go ahead ... | [
{
"path": "src/go/parser/parser.go",
"patch": "@@ -455,25 +455,6 @@ var exprEnd = map[token.Token]bool{\n \ttoken.RBRACE: true,\n }\n \n-// safePos returns a valid file position for a given position: If pos\n-// is valid to begin with, safePos returns pos. If pos is out-of-range,\n-// safePos returns the... | 2025-08-04T15:25:37 |
facebook/react | e150a324259c5c63ab635b227f601052b133a99f | ec15267a001086deb4ab5412d3f8b7e13573d6a5 | fix[react-devtools/ci]: fix configurations for e2e testing (#29016)
This should fix failing DevTools e2e tests on `main`.
With these changes, running tests locally successfully passes all cases. | [
{
"path": "package.json",
"patch": "@@ -109,7 +109,7 @@\n },\n \"scripts\": {\n \"build\": \"node ./scripts/rollup/build-all-release-channels.js\",\n- \"build-for-devtools\": \"cross-env RELEASE_CHANNEL=experimental yarn build react/index,react/jsx,react-dom/index,react-dom/client,react-dom/unsta... | 2024-05-08T11:04:51 |
vercel/next.js | 18e7c84af25c69c7807026a9044819ace1780abb | 0f27700f3df6604215993cdbbeb8681ec19d42e2 | Remove JS size reporting from next build (#83815)
## What
Remove the `First Used JS` and `Size` metrics from `next build` CLI output, as well as the manifest files that supported these metrics.
## Why
A recent investigation has revealed a number of bugs and longstanding known issues in the implementation.
* The me... | [
{
"path": "crates/next-api/src/app.rs",
"patch": "@@ -23,8 +23,8 @@ use next_core::{\n next_dynamic::NextDynamicTransition,\n next_edge::route_regex::get_named_middleware_regex,\n next_manifests::{\n- AppBuildManifest, AppPathsManifest, BuildManifest, ClientReferenceManifest,\n- Ed... | 2025-09-19T06:57:41 |
electron/electron | a0fee8f47a0d0eff408d69f6fb7b3aa596de6fa1 | 4e8c28fdf0fc415f892e86d2bdb84ebe6fd3d3ca | build: fixup codespaces on-create (#41428) | [
{
"path": ".devcontainer/devcontainer.json",
"patch": "@@ -27,7 +27,8 @@\n \t\t\t]\n \t\t},\n \t\t\"vscode\": {\n-\t\t\t\"extensions\": [\"joeleinbinder.mojom-language\",\n+\t\t\t\"extensions\": [\n+\t\t\t\t\"joeleinbinder.mojom-language\",\n \t\t\t\t\"rafaelmaiolla.diff\",\n \t\t\t\t\"surajbarkale.ninja\",... | 2024-04-23T00:26:11 |
nodejs/node | f4fcf0e6138a24a17cadc75c68be62d95a29f242 | 99099d64cb46a67d83d10737b99e0c9519c13062 | tls: fix error stack conversion in cryptoErrorListToException()
The ncrypto move introduced regressions in
cryptoErrorListToException() by passing in the size of the
vector unnecessarily into the vector constructor and then use
push_back() (which would result in a crash on dereferencing empty
handles during later iter... | [
{
"path": "src/crypto/crypto_util.cc",
"patch": "@@ -237,7 +237,8 @@ MaybeLocal<Value> cryptoErrorListToException(\n if (errors.size() > 1) {\n CHECK(exception->IsObject());\n Local<Object> exception_obj = exception.As<Object>();\n- LocalVector<Value> stack(env->isolate(), errors.size() - 1);\n... | 2025-01-12T20:53:04 |
facebook/react | 6bac4f2f31378cd58dffe6181e00639366a6081a | 826bf4e51ecf14904e936ed043392084553ebbaa | [Fizz] Fallback to client replaying actions if we're trying to serialize a Blob (#28987)
This follows the same principle as in #28611.
We cannot serialize Blobs of a form data into HTML because you can't
initialize a file input to some value. However the serialization of
state in an Action can contain blobs. In t... | [
{
"path": "packages/react-dom-bindings/src/server/ReactFizzConfigDOM.js",
"patch": "@@ -1019,12 +1019,7 @@ function pushAdditionalFormField(\n ): void {\n const target: Array<Chunk | PrecomputedChunk> = this;\n target.push(startHiddenInputChunk);\n- if (typeof value !== 'string') {\n- throw new Erro... | 2024-05-08T01:53:10 |
vercel/next.js | 8c8e9a50d77eb132b6a5a0d20c2e9546aab75027 | 1ee2861c037ac433ad22ccbe22059ee839dac846 | Fix conclusion check for retry_test workflow (#83960) | [
{
"path": ".github/workflows/retry_test.yml",
"patch": "@@ -39,7 +39,7 @@ jobs:\n const requiredJobName = {\n 'build-and-test': 'thank you, next',\n 'build-and-deploy': 'thank you, build',\n- }[github.event.workflow_run.name]\n+ }[context.payload... | 2025-09-18T17:09:01 |
electron/electron | 4e8c28fdf0fc415f892e86d2bdb84ebe6fd3d3ca | 46adb0a3a9f1fa60ee2bb140f08894543777256a | fix: data corruption in `protocol.handle` (#41894) | [
{
"path": "lib/browser/api/protocol.ts",
"patch": "@@ -18,7 +18,7 @@ function makeStreamFromPipe (pipe: any): ReadableStream {\n try {\n const rv = await pipe.read(buf);\n if (rv > 0) {\n- controller.enqueue(buf.subarray(0, rv));\n+ controller.enqueue(buf.slice(0, rv)... | 2024-04-22T20:40:01 |
facebook/react | f4c12cc4a8b1ad7ad3c0a3cad3ecbf2f5f72e07b | 257f22ac571a391b7f01558df74df9cadcdf3f55 | CI: fix Compiler Playground workflow (#2945)
Also renamed the workflow to make more sense when merged into the main React repo. | [
{
"path": ".github/workflows/compiler-playground.yml",
"patch": "@@ -1,8 +1,16 @@\n-name: Playground\n+name: Compiler Playground\n \n on:\n push:\n branches: [main]\n+ pull_request:\n+ paths:\n+ - compiler/\n+ - .github/workflows/compiler-playground.yml\n+\n+defaults:\n+ run:\n+ work... | 2024-05-07T20:15:59 |
nodejs/node | 046be6d28f2b10ea47477d8f401c07cca0eb74b1 | 9230f22029f1c3fed9b91ebcf5b114d33b915a32 | doc: fix parentheses in options
PR-URL: https://github.com/nodejs/node/pull/56563
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> | [
{
"path": "doc/api/child_process.md",
"patch": "@@ -536,7 +536,7 @@ changes:\n * `options` {Object}\n * `cwd` {string|URL} Current working directory of the child process.\n * `detached` {boolean} Prepare child process to run independently of its\n- parent process. Specific behavior depends on the pla... | 2025-01-12T17:58:56 |
vercel/next.js | a0e5996f0a7cb5245ad24b01deafb518ba6162b6 | 74b226fe4afc7149901affc3c005476e9e592315 | [Cache Components] Allow sync IO inside console methods (#83843)
console methods may be patched to do things like add a timestamp to the
log row. While we can't determine the meaning of reading the current
time in arbitrary contexts we can know with reasonable certainty that
any sync IO inside a console method is not... | [
{
"path": ".vscode/settings.json",
"patch": "@@ -62,6 +62,7 @@\n \"packages/next/src/server/app-render/dynamic-access-async-storage-instance.ts\",\n \"packages/next/src/server/app-render/work-async-storage-instance.ts\",\n \"packages/next/src/server/app-render/work-unit-async-storage-instance.ts... | 2025-09-18T15:23:56 |
electron/electron | 46adb0a3a9f1fa60ee2bb140f08894543777256a | a8db7fe2ef65bbe8a26bee404cdbb2bedea123d7 | fix: offscreen rendering does not paint after gpu process crashed (#41904)
Co-authored-by: zhangqi.67 <zhangqi.67@bytedance.com> | [
{
"path": "shell/browser/osr/osr_render_widget_host_view.cc",
"patch": "@@ -230,6 +230,7 @@ OffScreenRenderWidgetHostView::OffScreenRenderWidgetHostView(\n \n ResizeRootLayer(false);\n render_widget_host_->SetView(this);\n+ render_widget_host_->render_frame_metadata_provider()->AddObserver(this);\n \n ... | 2024-04-22T13:50:55 |
facebook/react | 257f22ac571a391b7f01558df74df9cadcdf3f55 | fd873e8ddd2d6aee88c8fea490a8f34280ac6069 | CI: fix Compiler TypeScript workflow (#2946) | [
{
"path": ".github/workflows/compiler-typescript.yml",
"patch": "@@ -4,6 +4,13 @@ on:\n push:\n branches: [main]\n pull_request:\n+ paths:\n+ - compiler/\n+ - .github/workflows/compiler-typescript.yml\n+\n+defaults:\n+ run:\n+ working-directory: compiler\n \n jobs:\n discover_yarn... | 2024-05-07T20:07:46 |
nodejs/node | 8ca295623510289b1476e9d9d2dca7e56349ad60 | 0576deb4e5526b89e268d7b6842b221918f9a470 | crypto: fix warning of ignoring return value
PR-URL: https://github.com/nodejs/node/pull/56527
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> | [
{
"path": "deps/ncrypto/ncrypto.cc",
"patch": "@@ -346,7 +346,7 @@ bool BignumPointer::generate(const PrimeConfig& params,\n PrimeCheckCallback innerCb) const {\n // BN_generate_prime_ex() calls RAND_bytes_ex() internally.\n // Make sure the CSPRNG is properly seeded.\n- CS... | 2025-01-11T14:55:30 |
golang/go | 4b6cbc377f9b3d2598b0d30a37c9cf3797ba6e12 | b2960e35804aafbbb0df9973f99b034bea8c150a | cmd/cgo/internal/test: use (syntactic) constant for C array bound
A test in C has an array bound defined as a "const int", which is
technically a variable. The new version of C compiler in Xcode 26
beta emits a warning "variable length array folded to constant
array as an extension" for this (as an error since we buil... | [
{
"path": "src/cmd/cgo/internal/test/test.go",
"patch": "@@ -245,7 +245,7 @@ static void *thread(void *p) {\n \treturn NULL;\n }\n void testSendSIG() {\n-\tconst int N = 20;\n+\tenum { N = 20 };\n \tint i;\n \tpthread_t tid[N];\n \tfor (i = 0; i < N; i++) {",
"additions": 1,
"deletions": 1,
"lan... | 2025-08-02T22:13:19 |
vercel/next.js | 8b0d684c40397fc3833c1ff9cdb1c2f1a23e8e22 | cef3dd05aa3a5c70c5ad59a4c780bcda2d788fa5 | Turbopack: extract parse_source_map_comment (#83938)
<!-- 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 Contributor... | [
{
"path": "turbopack/crates/turbopack-ecmascript/src/lib.rs",
"patch": "@@ -23,6 +23,7 @@ mod path_visitor;\n pub mod references;\n pub mod runtime_functions;\n pub mod side_effect_optimization;\n+pub mod source_map;\n pub(crate) mod special_cases;\n pub(crate) mod static_code;\n mod swc_comments;",
"ad... | 2025-09-18T13:09:49 |
electron/electron | 39bf441b3b6ee5cdefb3da98861632928c821ca7 | 46ef7ef8fbfccff4cace74dd22b62926a1329419 | build: enable Perfetto in Chromium (#41880)
* build: enable perfetto in Chromium
* refactor: delete TracingControllerImpl
* fix: TraceObject isn't present when v8_use_perfetto is true
* fix: update lib/internal/http for perfetto
* chore: remove stray log | [
{
"path": "build/args/all.gn",
"patch": "@@ -50,10 +50,6 @@ is_cfi = false\n # TODO: fix this once sysroots have been updated.\n use_qt = false\n \n-# https://chromium-review.googlesource.com/c/chromium/src/+/4365718\n-# TODO(codebytere): fix perfetto incompatibility with Node.js.\n-use_perfetto_client_libr... | 2024-04-19T15:07:36 |
facebook/react | e7d213dfb0760dc9f6506fca6d6cfbac708a40e2 | c32ff0f4f196cb1fbfdb93a6f08c60b27fc7f31c | feat[react-devtools]: display forget badge for components in profiling session (#29014)
# Summary
- `compiledWithForget` field for nodes is now propagated from the
backend to frontend profiler stores
- Corresponding node with such field will have a `✨` prefix displayed
before its displayName
<img width="1728" alt... | [
{
"path": "packages/react-devtools-shared/src/__tests__/profilingCharts-test.js",
"patch": "@@ -124,8 +124,8 @@ describe('profiling charts', () => {\n \"actualDuration\": 0,\n \"didRender\": true,\n \"id\": 5,\n- \"label\": \"Memo(Child) key=\"third\" (... | 2024-05-07T15:39:01 |
nodejs/node | 0576deb4e5526b89e268d7b6842b221918f9a470 | ad68d088a31c9d607d1eeeadc5cbf3aec78c31bf | test: add error only reporter for node:test
This commit introduces a node:test reporter to the common utils.
This reporter can be used to silence output other than errors
from node:test. This is useful because in Node's own test suite,
the output of node:test is included in the output of the
Python test runner.
Refs:... | [
{
"path": ".github/workflows/build-tarball.yml",
"patch": "@@ -105,4 +105,4 @@ jobs:\n - name: Test\n run: |\n cd $TAR_DIR\n- make run-ci -j4 V=1 TEST_CI_ARGS=\"-p dots --node-args='--test-reporter=spec' --measure-flakiness 9\"\n+ make run-ci -j4 V=1 TEST_CI_ARGS=\"... | 2025-01-11T14:19:35 |
golang/go | abeeef1c08a589c2341f0d4e19ae49ec0892e797 | d44749b65b47f42e7a5bae2e0e9b0ab6bb3d5f80 | cmd/compile/internal/test: fix typo in comments
Change-Id: Iba6bb7f8252120f56d7e6ae49c9edc9382e8c7e0
Reviewed-on: https://go-review.googlesource.com/c/go/+/679855
Reviewed-by: abner chenc <chenguoqi@loongson.cn>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Mark... | [
{
"path": "src/cmd/compile/internal/test/mulconst_test.go",
"patch": "@@ -143,7 +143,7 @@ func BenchmarkMulconstI32(b *testing.B) {\n \t\t}\n \t\tmulSinkI32 = x\n \t})\n-\t// -120x = 8x - 120x\n+\t// -120x = 8x - 128x\n \tb.Run(\"-120\", func(b *testing.B) {\n \t\tx := int32(1)\n \t\tfor i := 0; i < b.N; i+... | 2025-06-07T02:27:43 |
vercel/next.js | 4d047b28be3227a1f4ece6679677b7392de0cb02 | 3513e7d7d32e9a3e3271016477be2589c4314031 | fix: add the missing comma in the document example (#83932)
### What?
This PR fixes a missing comma in the function parameter in
`03-api-reference/03-file-conventions/layout.mdx`.
The comma between `children` and `params` parameters was missing in the
documentation example, showing incorrect syntax.
### Why?
The mis... | [
{
"path": "docs/01-app/03-api-reference/03-file-conventions/layout.mdx",
"patch": "@@ -61,7 +61,7 @@ A promise that resolves to an object containing the [dynamic route parameters](/\n \n ```tsx filename=\"app/dashboard/[team]/layout.tsx\" switcher\n export default async function Layout({\n- children\n+ ch... | 2025-09-18T08:11:46 |
electron/electron | 07a68c2bf8b53ea1c639b5c12fa725e5ae81fab0 | ed9fec7da413533788d57a48c97e36dedfc6003c | fix: don't check for Desktop Environment in unity_service.cc (#41211)
Don't check for Desktop Environment in unity_service.cc | [
{
"path": "shell/browser/linux/unity_service.cc",
"patch": "@@ -51,21 +51,10 @@ unity_launcher_entry_set_progress_visible_func entry_set_progress_visible =\n nullptr;\n \n void EnsureLibUnityLoaded() {\n- using base::nix::GetDesktopEnvironment;\n-\n if (attempted_load)\n return;\n attempted_loa... | 2024-04-19T13:58:32 |
facebook/react | c32ff0f4f196cb1fbfdb93a6f08c60b27fc7f31c | 0fc9c84e63622026b5977557900c9cfe204552d3 | fix[react-devtools]: add backwards compat with legacy element type symbol (#28982)
Follow-up to https://github.com/facebook/react/pull/28813.
RDT is using `typeOf` from `react-is` to determine the element display
name, I've forked an implementation of this method, but will be using
legacy element symbol. | [
{
"path": "packages/react-devtools-shared/src/utils.js",
"patch": "@@ -23,9 +23,23 @@ import {\n Suspense,\n } from 'react-is';\n import {\n+ REACT_CONSUMER_TYPE,\n+ REACT_CONTEXT_TYPE,\n+ REACT_FORWARD_REF_TYPE,\n+ REACT_FRAGMENT_TYPE,\n+ REACT_LAZY_TYPE,\n+ REACT_LEGACY_ELEMENT_TYPE,\n+ REACT_MEM... | 2024-05-07T15:38:43 |
nodejs/node | ad68d088a31c9d607d1eeeadc5cbf3aec78c31bf | 649da3b8377e030ea7b9a1bc0308451e26e28740 | doc: fix location of NO_COLOR in CLI docs
The 'coverage output' and 'source map cache' sections were
appearing under the NO_COLOR environment variable instead of
the NODE_V8_COVERAGE enviroment variable where they were intended
to be. This commit fixes that issue.
PR-URL: https://github.com/nodejs/node/pull/56525
Rev... | [
{
"path": "doc/api/cli.md",
"patch": "@@ -3378,11 +3378,6 @@ easier to instrument applications that call the `child_process.spawn()` family\n of functions. `NODE_V8_COVERAGE` can be set to an empty string, to prevent\n propagation.\n \n-### `NO_COLOR=<any>`\n-\n-[`NO_COLOR`][] is an alias for `NODE_DISABLE... | 2025-01-11T00:03:08 |
golang/go | d6beda863e3a8825c8cfe656744cc8f99f47d048 | 4ab1aec00799f91e96182cbbffd1de405cd52e93 | runtime: add reference to debugPinnerV1
This is intended to be used by debuggers, to keep heap memory reachable
even if it isn't referenced from anywhere else.
Change-Id: I1e900e02b4fe3a188f8173cec70f8de32122489b
Reviewed-on: https://go-review.googlesource.com/c/go/+/682875
Reviewed-by: abner chenc <chenguoqi@loongso... | [
{
"path": "src/runtime/asm_loong64.s",
"patch": "@@ -70,8 +70,9 @@ nocgo:\n \t// start this M\n \tJAL\truntime·mstart(SB)\n \n-\t// Prevent dead-code elimination of debugCallV2, which is\n+\t// Prevent dead-code elimination of debugCallV2 and debugPinnerV1, which are\n \t// intended to be called by debugger... | 2025-06-19T11:55:28 |
vercel/next.js | 7b14bb709a399948d6f36e231053409636d9d515 | c4603d2abe7ed8f70843bd62ddeae391b558e9c4 | Turbopack: fix double codegen of some merged modules (#83886)
This fixes double-codegen and re-parse (due to recomputation).
Previously, `get_batch_group` could return some of the original JS modules, while `chunkable_items` was correctly getting the replaced `MergedEcmascriptModule`s. This cause modules to be code... | [
{
"path": "turbopack/crates/turbopack-core/src/chunk/chunk_group.rs",
"patch": "@@ -1,4 +1,4 @@\n-use std::{cell::RefCell, collections::HashSet};\n+use std::{cell::RefCell, collections::HashSet, sync::atomic::AtomicBool};\n \n use anyhow::{Context, Result};\n use rustc_hash::FxHashMap;\n@@ -20,7 +20,8 @@ us... | 2025-09-17T20:54:46 |
electron/electron | ed9fec7da413533788d57a48c97e36dedfc6003c | c4aeb1724576d384bac84e5cd53e6b1f64b86e41 | fix: `nativeImage.createThumbnailFromPath` and `shell.openExternal` in renderer (#41875)
* fix: nativeImage.createThumbnailFromPath in renderer
* also fix shell.openExternal | [
{
"path": "shell/common/api/electron_api_native_image_mac.mm",
"patch": "@@ -14,6 +14,7 @@\n \n #include \"base/apple/foundation_util.h\"\n #include \"base/strings/sys_string_conversions.h\"\n+#include \"base/task/bind_post_task.h\"\n #include \"gin/arguments.h\"\n #include \"shell/common/gin_converters/ima... | 2024-04-19T13:43:01 |
facebook/react | 90a5d48a2fb0794dced2a9a26b2451c75808cc51 | 55d6c6efaaab8e104e3e0f99d16cf8c2f5f931e6 | CI: fix Rust CI workflows (#2942)
- update paths
- update working directory
- rename files for clarity when merged into the main react repo | [
{
"path": ".github/workflows/compiler-rust-benchmark.yml",
"patch": "@@ -1,19 +1,23 @@\n # Runs the parser benchmark on every push to main, and compares it with the previous run\n-name: Parser Benchmark (Rust)\n+name: Compiler Benchmark (Rust)\n \n on:\n push:\n branches: [\"main\"]\n paths:\n ... | 2024-05-07T15:17:30 |
nodejs/node | 3946f1678681f89f37d9e42d67e51dfcadb6c817 | ba6800d1d6f2c1662d010d0618d999119da270ca | process: fix symbol key and mark experimental new `node:process` methods
PR-URL: https://github.com/nodejs/node/pull/56517
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/process.md",
"patch": "@@ -3248,11 +3248,13 @@ console.log(`The parent process is pid ${ppid}`);\n added: v23.6.0\n -->\n \n+> Stability: 1 - Experimental\n+\n * `maybeRefable` {any} An object that may be \"refable\".\n \n An object is \"refable\" if it implements the Node.js \"Refable pr... | 2025-01-10T14:40:28 |
vercel/next.js | 4d6abb6039f08ab2d75a41a08a063410997a6bb0 | f2ebb0701989c0d2456b8fd98a9267358d5ed0bb | chore: Fix test snapshot (#83901)
A new version of sharp was released a few hours ago, which broke the tests:
```
expect(received).toMatchInlineSnapshot(snapshot)
Snapshot name: `next-server-nft should not trace too many files in next-server.js.nft.json 1`
- Snapshot - 8
+ Received + 3
@@ -1,22 +1,18 @@
[
+ "... | [
{
"path": "test/production/next-server-nft/next-server-nft.test.ts",
"patch": "@@ -48,14 +48,14 @@ const isReact18 = parseInt(process.env.NEXT_TEST_REACT_VERSION) === 18\n .map((file: string) => {\n // Normalize sharp, different architectures have different files\n if... | 2025-09-17T18:54:54 |
golang/go | 08bec02907cf59c3fd60e5c5e31b2d6c30b462b7 | 09ff25e3508287970940645b97e4d88e92bb5407 | [dev.simd] cmd/compile: add register-to-mask moves, other simd glue
This includes code generated by simdgen CL 689955,
here because of git-facilitated pilot error
(the generated file should have been in the next CL
but that is related to this one, so, oh well).
Change-Id: Ibfea3f1cd93ca9cd12970edf15a013471677a6ba
Rev... | [
{
"path": "src/cmd/compile/internal/amd64/ssa.go",
"patch": "@@ -1530,6 +1530,14 @@ func ssaGenValue(s *ssagen.State, v *ssa.Value) {\n \t\tp.To.Type = obj.TYPE_REG\n \t\tp.To.Reg = v.Reg()\n \n+\tcase ssa.OpAMD64KMOVQ, ssa.OpAMD64KMOVD, ssa.OpAMD64KMOVW, ssa.OpAMD64KMOVB:\n+\t\t// See also ssa.OpAMD64KMOVQ... | 2025-07-23T17:47:08 |
facebook/react | b28c53dcf10cdd0164aa860248be8305c0cda4c9 | d0a51e7dfc0e40b7c5304adcd9b2b8ad687b37f9 | Clarify how to address ValidateNoCapitalizedCalls errors
Make it clearer how to address this error by allowlisting globals that
are known to be safe
ghstack-source-id: e7fa6464ebb561a7a1366ff70430842007c6552e
Pull Request resolved: https://github.com/facebook/react-forget/pull/2909 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Validation/ValidateNoCapitalizedCalls.ts",
"patch": "@@ -28,6 +28,8 @@ export function validateNoCapitalizedCalls(fn: HIRFunction): void {\n \n const capitalLoadGlobals = new Map<IdentifierId, string>();\n const capitalizedProperties = new Map... | 2024-05-07T00:13:45 |
electron/electron | c4aeb1724576d384bac84e5cd53e6b1f64b86e41 | 67ba30402bcbf6942fa0846927f2d088cf0a749d | fix: EINVAL when spawning cmd files on Windows (#41893)
fix: EINVAL when spawning on Windows | [
{
"path": "script/lint.js",
"patch": "@@ -75,7 +75,8 @@ function spawnAndCheckExitCode (cmd, args, opts) {\n \n function cpplint (args) {\n args.unshift(`--root=${SOURCE_ROOT}`);\n- const result = childProcess.spawnSync(IS_WINDOWS ? 'cpplint.bat' : 'cpplint.py', args, { encoding: 'utf8', shell: true });\... | 2024-04-19T13:27:58 |
rust-lang/rust | 1f076d2f938b42fe968ff06f1107871a665eabe9 | 286fbe5d84569c718f189122db9e68a16b50eeef | Add try_shrink_to and try_shrink_to_fit to Vec
* Add try_shrink_to and try_shrink_to_fit to Vec
Both functions are required to support shrinking a vector in
environments without global OOM handling.
* Format the try_shrink functions
* Remove excess "```" from doc
* Remove `cfg(not(no_global_oom_handling))` from rawve... | [
{
"path": "library/alloc/src/raw_vec/mod.rs",
"patch": "@@ -399,6 +399,21 @@ impl<T, A: Allocator> RawVec<T, A> {\n // SAFETY: All calls on self.inner pass T::LAYOUT as the elem_layout\n unsafe { self.inner.shrink_to_fit(cap, T::LAYOUT) }\n }\n+\n+ /// Shrinks the buffer down to the s... | 2026-02-23T01:20:41 |
nodejs/node | ba6800d1d6f2c1662d010d0618d999119da270ca | 529b56ef9d2a0b3402dee5a812a1d88983b09a80 | esm: fix jsdoc type refs to `ModuleJobBase` in esm/loader
Co-Authored-By: Carlos Espa <43477095+Ceres6@users.noreply.github.com>
PR-URL: https://github.com/nodejs/node/pull/56499
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoi... | [
{
"path": "lib/internal/modules/esm/loader.js",
"patch": "@@ -54,6 +54,8 @@ const { tracingChannel } = require('diagnostics_channel');\n const onImport = tracingChannel('module.import');\n \n /**\n+ * @typedef {import('./hooks.js').HooksProxy} HooksProxy\n+ * @typedef {import('./module_job.js').ModuleJobBas... | 2025-01-10T13:44:43 |
facebook/react | d0a51e7dfc0e40b7c5304adcd9b2b8ad687b37f9 | 84d28ebcc54cedfc0c50260ffcf0eaeafcb6bac6 | Allow eslint rule reportable severity to be set
During the demo I might show an example of fixing a
CannotPreserveMemoization error. But I don't want to make that
reportable by default, so this PR allows configuration like so
```js
module.exports = {
root: true,
plugins: [
'eslint-plugin-react-compiler',
],... | [
{
"path": "compiler/packages/eslint-plugin-react-compiler/__tests__/ReactCompilerRule-test.ts",
"patch": "@@ -5,6 +5,7 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n+import { ErrorSeverity } from \"babel-plugin-react-compiler/src\";\n import { RuleTester as ESLintTester } from \"... | 2024-05-07T00:07:36 |
vercel/next.js | be6e4bf4bf7275f3f7720cdb432c19f7ecb5dba7 | 12e64cf0ae6160c94c4fe92457bfe799abe50254 | Upgrade sharp dependency to version ^0.34.4 (#83892)
## ✅ Sharp Dependency Upgrade to Version ^0.34.4 - LOCKFILE FIXED
### Task Summary:
Successfully upgraded the `sharp` dependency from version `^0.34.3` to
`^0.34.4` and **fixed the pnpm lockfile issue** by running `pnpm
install` to update the lockfile.
### ✅ Compl... | [
{
"path": "packages/next/package.json",
"patch": "@@ -131,7 +131,7 @@\n }\n },\n \"optionalDependencies\": {\n- \"sharp\": \"^0.34.3\"\n+ \"sharp\": \"^0.34.4\"\n },\n \"devDependencies\": {\n \"@ampproject/toolbox-optimizer\": \"2.8.3\",",
"additions": 1,
"deletions": 1,
"... | 2025-09-17T16:42:33 |
golang/go | 88568519b416190d264f5e5f02c41b5a139498b2 | 6f7a1164e797f694c535ebf5f2c9722845a732cd | [dev.simd] simd: move test generation into Go repo
This pairs with CL 689275 which removes test generation from simdgen
This uses generics and attempts to encode the tests as compactly as
possible.
Some files, *_helpers_test.go, are generated.
Use t.Helper() to get the line number right for a failure.
Adds helper ... | [
{
"path": "src/simd/binary_helpers_test.go",
"patch": "@@ -0,0 +1,464 @@\n+// Code generated by 'go run genfiles.go'; DO NOT EDIT.\n+\n+//go:build goexperiment.simd\n+\n+// This file contains functions testing binary simd methods.\n+// Each function in this file is specialized for a\n+// particular simd typ... | 2025-07-07T21:48:24 |
electron/electron | 0222686e9af18c673435afa8418450da2319a2de | bf754a3cae84fba9896011320c09c0fe554886b2 | docs: update build docs,support Powershell on Windows (#41567)
* docs: update build docs,support Powershell on Windows
* chore: fix capitalization | [
{
"path": "docs/development/build-instructions-gn.md",
"patch": "@@ -110,20 +110,49 @@ $ export CHROMIUM_BUILDTOOLS_PATH=`pwd`/buildtools\n On Windows:\n \n ```sh\n+# cmd\n $ cd src\n $ set CHROMIUM_BUILDTOOLS_PATH=%cd%\\buildtools\n+\n+# PowerShell\n+$ cd src\n+$ $env:CHROMIUM_BUILDTOOLS_PATH = \"$(Get-Loc... | 2024-04-17T22:46:52 |
facebook/react | 84d28ebcc54cedfc0c50260ffcf0eaeafcb6bac6 | e2d47342bee8e2c83ade7764a37e04dc6e9ab0e5 | Default to raising all errors in eslint plugin
We control what gets reported via another function anyway so it's better
to raise everything at the compiler config level. This lets us configure
what level of diagnostic is reportable later
ghstack-source-id: 996d3cbb8d8f3e1bbe943210b8d633420e0f3f3b
Pull Request resolve... | [
{
"path": "compiler/packages/eslint-plugin-react-compiler/src/rules/ReactCompilerRule.ts",
"patch": "@@ -64,7 +64,7 @@ function isReportableDiagnostic(\n const COMPILER_OPTIONS: Partial<PluginOptions> = {\n noEmit: true,\n compilationMode: \"infer\",\n- panicThreshold: \"critical_errors\",\n+ panicThr... | 2024-05-07T00:07:35 |
nodejs/node | b8f6d84ff5893b1274d658da22bc4067c2fb93fa | 483e3d5e4b006d65ebeacef06b8bfacbd475c9d0 | test: mark test-http-server-request-timeouts-mixed as flaky
This has been flaking the CI for more than 2 years with various
attempts to fix without success. It has still been flaking the
CI (failed 19 out of 100 recent testing CI runs). It's time to
mark it as flaky.
PR-URL: https://github.com/nodejs/node/pull/56503
... | [
{
"path": "test/sequential/sequential.status",
"patch": "@@ -28,6 +28,9 @@ test-http-server-request-timeouts-mixed: PASS, FLAKY\n # https://github.com/nodejs/node/issues/54816\n test-single-executable-application-empty: PASS, FLAKY\n \n+# https://github.com/nodejs/node/issues/43465\n+test-http-server-reques... | 2025-01-09T15:31:01 |
vercel/next.js | bc9fe492dbd6aab28d0786c7abf45f2e7e7e0a95 | f3537a0626c08c532140fff379249928d9475363 | fix: correct typo 'incomming' to 'incoming' in with-mqtt-js example (#83887)
### What?
This PR fixes a typo in the `with-mqtt-js` example
(`examples/with-mqtt-js/app/page.tsx`):
all occurrences of "incomming" have been corrected to "incoming" in
variables, refs, and JSX headings.
### Why?
The previous spelling "incom... | [
{
"path": "examples/with-mqtt-js/app/page.tsx",
"patch": "@@ -5,18 +5,15 @@ import type { MqttClient } from \"mqtt\";\n import useMqtt from \"@/lib/useMqtt\";\n \n export default function Home() {\n- const [incommingMessages, setIncommingMessages] = useState<any[]>([]);\n+ const [incomingMessages, setInco... | 2025-09-17T15:38:49 |
golang/go | eef5f8d93016147718afba8a05282d2ba7332c51 | e071617222e373f59db8995ce171bae708e0dcef | cmd/compile: enforce that locals are always accessed with SP base register
After CL 678937, we could have a situation where the value of the
stack pointer is in both SP and another register. We need to make sure
that regalloc picks SP when issuing a reference to local variables;
the assembler expects that.
Fixes #748... | [
{
"path": "src/cmd/compile/internal/ssa/regalloc.go",
"patch": "@@ -1583,6 +1583,12 @@ func (s *regAllocState) regalloc(f *Func) {\n \t\t\t\t\t\tmask &^= desired.avoid\n \t\t\t\t\t}\n \t\t\t\t}\n+\t\t\t\tif mask&s.values[v.Args[i.idx].ID].regs&(1<<s.SPReg) != 0 {\n+\t\t\t\t\t// Prefer SP register. This ensu... | 2025-08-01T14:38:55 |
electron/electron | bf754a3cae84fba9896011320c09c0fe554886b2 | 7120c58297f8185c22d4289ff710a1189e537750 | fix: make window.flashFrame(bool) flash continuously on macOS (#41391)
fix: window.flashFrame to flash continuously on mac
This brings the behavior to parity with Windows and Linux. Prior behavior: The first `flashFrame(true)` bounces the dock icon only once (using the [NSInformationalRequest](https://developer.app... | [
{
"path": "docs/breaking-changes.md",
"patch": "@@ -21,6 +21,10 @@ encoded data returned from this function now matches it.\n \n See [crbug.com/332584706](https://issues.chromium.org/issues/332584706) for more information.\n \n+### Behavior Changed: `window.flashFrame(bool)` will flash dock icon continuousl... | 2024-04-17T16:42:34 |
facebook/react | 8f7dd5592be25dfae816ab1d1aa3d2bba8871435 | 1beb73de0f7c3261a0de37620453b102caaa6236 | [DevTools] Check in `frontend.d.ts` for react-devtools-fusebox, include in build output (#28970)
## Summary
The `react-devtools-fusebox` private package is used in the React Native
DevTools (Fusebox) frontend by checking build artifacts into RN's
[fork]([`facebookexperimental/rn-chrome-devtools-frontend`](https:/... | [
{
"path": ".eslintignore",
"patch": "@@ -18,6 +18,7 @@ packages/react-devtools-extensions/chrome/build\n packages/react-devtools-extensions/firefox/build\n packages/react-devtools-extensions/shared/build\n packages/react-devtools-extensions/src/ErrorTesterCompiled.js\n+packages/react-devtools-fusebox/dist\n... | 2024-05-03T16:32:41 |
nodejs/node | 483e3d5e4b006d65ebeacef06b8bfacbd475c9d0 | 6b3937a072ae27535bdd83539c4d9ae539d263f1 | src: fix undefined script name in error source
PR-URL: https://github.com/nodejs/node/pull/56502
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "src/node_errors.cc",
"patch": "@@ -136,8 +136,13 @@ static std::string GetErrorSource(Isolate* isolate,\n \n // Print (filename):(line number): (message).\n ScriptOrigin origin = message->GetScriptOrigin();\n- node::Utf8Value filename(isolate, message->GetScriptResourceName());\n- const cha... | 2025-01-09T14:06:31 |
vercel/next.js | 1a7041ac7348c82b8c02da011d30947684df24cc | 3e5c8efbf888d4676c834d16d20aa6b9898d6169 | Turbopack: only generate error string in error case (#83884)
Don't create gigabytes of unused strings here. | [
{
"path": "turbopack/crates/turbopack-core/src/module_graph/merged_modules.rs",
"patch": "@@ -492,9 +492,12 @@ pub async fn compute_merged_modules(module_graph: Vc<ModuleGraph>) -> Result<Vc<\n let after_index = lists.len();\n lists.push(after_list.clone());\n ... | 2025-09-17T13:09:10 |
golang/go | c0ee2fd4e309ef0b8f4ab6f4860e2626c8e00802 | a4d99770c0e5f340d6d11d6353110413dc109138 | cmd/go: explicitly reject module paths "go" and "toolchain"
The module paths "go" and "toolchain" are reserved for the dependency on
the go and toolchain versions. Check for those paths in go mod init to
create modules, go mod edit, and in the module loader and return an
error when attempting to use those paths for a ... | [
{
"path": "src/cmd/go/internal/modcmd/edit.go",
"patch": "@@ -234,7 +234,11 @@ func runEdit(ctx context.Context, cmd *base.Command, args []string) {\n \t}\n \n \tif *editModule != \"\" {\n-\t\tif err := module.CheckImportPath(*editModule); err != nil {\n+\t\terr := module.CheckImportPath(*editModule)\n+\t\t... | 2025-07-29T18:17:33 |
facebook/react | f5f2799a8d0b37487c9674159846cbb7696febd3 | 14f71db6b6f1668e61b29d376889ad298def4c6e | DevTools: Fix inspecting components with multiple reads of the same Context in React 17 (#28974) | [
{
"path": "packages/react-debug-tools/src/ReactDebugHooks.js",
"patch": "@@ -177,15 +177,20 @@ function readContext<T>(context: ReactContext<T>): T {\n );\n }\n \n+ let value: T;\n // For now we don't expose readContext usage in the hooks debugging info.\n- const value = hasOwnProperty.c... | 2024-05-02T20:08:41 |
nodejs/node | 6b3937a072ae27535bdd83539c4d9ae539d263f1 | 8975748527a82d2dcfd6168ada30359f39de91ba | src: refactor --trace-env to reuse option selection and handling
This reduces the duplication in the code base, also makes
makes the log messages more concise since the `[--trace-env]`
prefix should provide enough indication about the fact that
it's about environment variable access.
PR-URL: https://github.com/nodejs... | [
{
"path": "src/node_credentials.cc",
"patch": "@@ -99,15 +99,7 @@ bool SafeGetenv(const char* key, std::string* text, Environment* env) {\n *text = value.value();\n }\n \n- auto options =\n- (env != nullptr ? env->options()\n- : per_process::cli_options->per_isolate->per_env... | 2025-01-09T12:46:22 |
golang/go | a4d99770c0e5f340d6d11d6353110413dc109138 | 70a2ff76485477211397ae6399bee06101bc5935 | runtime/metrics: add cleanup and finalizer queue metrics
These metrics are useful for identifying finalizer and cleanup problems,
namely slow finalizers and/or cleanups holding up the queue, which can
lead to a memory leak.
Fixes #72948.
Change-Id: I1bb64a9ca751fcb462c96d986d0346e0c2894c95
Reviewed-on: https://go-re... | [
{
"path": "src/runtime/metrics.go",
"patch": "@@ -169,6 +169,20 @@ func initMetrics() {\n \t\t\t\tout.scalar = float64bits(nsToSec(in.cpuStats.UserTime))\n \t\t\t},\n \t\t},\n+\t\t\"/gc/cleanups/executed:cleanups\": {\n+\t\t\tdeps: makeStatDepSet(finalStatsDep),\n+\t\t\tcompute: func(in *statAggregate, out ... | 2025-07-23T03:09:27 |
vercel/next.js | 3e5c8efbf888d4676c834d16d20aa6b9898d6169 | a32aed998a1c2d9700ead862d3bd896b25600d5b | Turbopack: delete broken hmr benchmark (#83882)
### What?
The benchmark is very broken:
* It doesn't await the run_once, so the code never runs
* project_path is incorrect so it doesn't find routes
* The returned Duration is never used as divan doesn't support custom benches
* `hmr_update` doesn't wait for an HMR up... | [
{
"path": ".github/workflows/turbopack-benchmark.yml",
"patch": "@@ -27,29 +27,6 @@ env:\n TURBO_TOKEN: ${{ secrets.HOSTED_TURBO_TOKEN }}\n \n jobs:\n- benchmark-tiny:\n- name: Benchmark Rust Crates (tiny)\n- runs-on: ubuntu-latest\n- steps:\n- - uses: actions/checkout@v4\n-\n- - name:... | 2025-09-17T12:16:31 |
electron/electron | 7120c58297f8185c22d4289ff710a1189e537750 | b118c70f77e35b145fa201c37b98e9336f3cedd3 | chore: bump node to v20.12.2 (main) (#41710)
* chore: bump node in DEPS to v20.12.0
* chore: update build_add_gn_build_files.patch
* chore: update patches
* chore: bump node in DEPS to v20.12.1
* chore: update patches
* build: encode non-ASCII Latin1 characters as one byte in JS2C
https://github.com/... | [
{
"path": "DEPS",
"patch": "@@ -4,7 +4,7 @@ vars = {\n 'chromium_version':\n '125.0.6412.0',\n 'node_version':\n- 'v20.11.1',\n+ 'v20.12.2',\n 'nan_version':\n 'e14bdcd1f72d62bca1d541b66da43130384ec213',\n 'squirrel.mac_version':",
"additions": 1,
"deletions": 1,
"language"... | 2024-04-17T16:39:13 |
facebook/react | 14f71db6b6f1668e61b29d376889ad298def4c6e | c44e9d1557ac076546811e2a56fcf8f2144ce6f5 | Devtools: Fix build-for-devtools (#28976) | [
{
"path": "package.json",
"patch": "@@ -108,7 +108,7 @@\n },\n \"scripts\": {\n \"build\": \"node ./scripts/rollup/build-all-release-channels.js\",\n- \"build-for-devtools\": \"cross-env RELEASE_CHANNEL=experimental yarn build react/index,react/jsx,react-dom/index,react-dom/unstable_testing,react... | 2024-05-02T19:58:51 |
rust-lang/rust | 9b2b57085d8e2c2707028ef8a82c2c51b235d2c0 | 0492671fc8cb1a4fe240681e83e71845db697793 | fix: `unnecessary_safety_comment` FP on code blocks inside inner docs | [
{
"path": "clippy_lints/src/undocumented_unsafe_blocks.rs",
"patch": "@@ -822,7 +822,9 @@ fn text_has_safety_comment(\n // Don't lint if the safety comment is part of a codeblock in a doc comment.\n // It may or may not be required, and we can't very easily check it (and we shouldn't... | 2026-02-12T23:10:44 |
nodejs/node | 7b472fdfe7e16e2a472440ba148b88fbcfb03635 | c0ad1937d0004800f23b53308b5272208860dbbf | src: minor cleanups on OneByteString usage
* Provide a OneByteString variant that accepts std::string_view
* Use FIXED_ONE_BYTE_STRING in appropriate places
Signed-off-by: James M Snell <jasnell@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/56482
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Lu... | [
{
"path": "src/crypto/crypto_ec.cc",
"patch": "@@ -767,16 +767,16 @@ Maybe<void> ExportJWKEcKey(Environment* env,\n const int nid = EC_GROUP_get_curve_name(group);\n switch (nid) {\n case NID_X9_62_prime256v1:\n- crv_name = OneByteString(env->isolate(), \"P-256\");\n+ crv_name = FIXED_ONE_... | 2025-01-05T20:36:27 |
golang/go | 69338a335ada5882b888fb7eabe0ad6f0e12c986 | cedf63616a00c8a6a69f6bbe4bc93b6865cec842 | cmd/go/internal/gover: fix ModIsPrerelease for toolchain versions
We forgot to call the IsPrerelease function on FromToolchain(vers)
rather than on vers itself. IsPrerelase expects a version without the
"go" prefix. See the corresponding code in ModIsValid and ModIsPrefix
that call FromToolchain before passing the ver... | [
{
"path": "src/cmd/go/internal/gover/mod.go",
"patch": "@@ -109,6 +109,9 @@ func ModIsPrefix(path, vers string) bool {\n // The caller is assumed to have checked that ModIsValid(path, vers) is true.\n func ModIsPrerelease(path, vers string) bool {\n \tif IsToolchain(path) {\n+\t\tif path == \"toolchain\" {\... | 2025-07-29T21:12:24 |
vercel/next.js | d054cac6e28a22ed817c200dbfe144c035bb809f | 8fe8fbc322167ce1a284b07c890043216b8ac069 | refactor: remove isRevalidate from work store (#83859)
With the refactor in #83858 there's no longer a reason to distinguish
between `isRevalidate` and `isStaticGeneration` and most likely doing so
would be a bug, as you'd likely want to apply the same handling to build
time generation that you would during a later re... | [
{
"path": "packages/next/src/build/static-paths/app.ts",
"patch": "@@ -828,7 +828,6 @@ export async function buildAppStaticPaths({\n incrementalCache,\n cacheLifeProfiles,\n supportsDynamicResponse: true,\n- isRevalidate: false,\n experimental: {\n cacheComponents,\n ... | 2025-09-17T02:15:46 |
electron/electron | b428315c6dd9aea97611ab3ef98145b870ef33ae | c670e38b4b14d0286e0ae04cb7f63987beb5e044 | perf: remove unnecessary `.c_str()` calls (#41869)
* perf: remove unnecessary c_str() call when invoking promise.RejectWithErrorMessage()
RejectWithErrorMessage() takes a std::string_view
* perf: remove unnecessary c_str() call when invoking Environment::SetVar()
the val arg to Environment::SetVar() takes a c... | [
{
"path": "shell/browser/api/electron_api_app.cc",
"patch": "@@ -462,8 +462,7 @@ void OnClientCertificateSelected(\n return;\n \n auto certs = net::X509Certificate::CreateCertificateListFromBytes(\n- base::as_bytes(base::make_span(data.c_str(), data.size())),\n- net::X509Certificate::FORMAT_... | 2024-04-16T23:48:54 |
facebook/react | 29d3c83f0a84354b18ab3f064f2d43a4c116d6ed | 4508873393058e86bed308b56e49ec883ece59d1 | ReactDOM: Fix missing form data when the submitter is outside the form (#28056) | [
{
"path": "packages/react-dom-bindings/src/events/plugins/FormActionEventPlugin.js",
"patch": "@@ -92,6 +92,9 @@ function extractEvents(\n const temp = submitter.ownerDocument.createElement('input');\n temp.name = submitter.name;\n temp.value = submitter.value;\n+ if (form.id) {\n+ ... | 2024-05-02T11:06:28 |
rust-lang/rust | 5b87b994d805b902563c08590f3b71c5c7a9b3f3 | d8b2222b11fc03a31d43707c8c9006f025809ece | fix interpreter tracing output | [
{
"path": "compiler/rustc_const_eval/src/interpret/step.rs",
"patch": "@@ -86,7 +86,7 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {\n span = ?stmt.source_info.span,\n tracing_separate_thread = Empty,\n )\n- .or_if_tracing_disabled(|| info!(stmt = ?stmt.kind));\n+... | 2026-02-22T21:38:46 |
golang/go | cedf63616a00c8a6a69f6bbe4bc93b6865cec842 | 82a1921c3b6b493c4ff358f063c2ffffabba9fd5 | cmd/compile: add floating point min/max intrinsics on s390x
Add the VECTOR FP (MINIMUM|MAXIMUM) instructions to the assembler and
use them in the compiler to implement min and max.
Note: I've allowed floating point registers to be used with the single
element instructions (those with the W instead of V prefix) to all... | [
{
"path": "src/cmd/asm/internal/asm/testdata/s390x.s",
"patch": "@@ -540,6 +540,18 @@ TEXT main·foo(SB),DUPOK|NOSPLIT,$16-0 // TEXT main.foo(SB), DUPOK|NOSPLIT, $16-\n \tVSTRCZBS V18, V20, V22, V24\t// e78240306f8a\n \tVSTRCZHS V18, V20, V22, V24\t// e78241306f8a\n \tVSTRCZFS V18, V20, V22, V24\t// e7824230... | 2025-06-27T20:05:38 |
facebook/react | 8090457c77573f3916df136d582d5f44040da043 | 4ddff7355f696ec693c5ce2bda4e7707020c3510 | fix: add `react-server` condition for `react/jsx-dev-runtime` (#28921) | [
{
"path": "packages/react/jsx-dev-runtime.react-server.js",
"patch": "@@ -0,0 +1,10 @@\n+/**\n+ * Copyright (c) Meta Platforms, Inc. and affiliates.\n+ *\n+ * This source code is licensed under the MIT license found in the\n+ * LICENSE file in the root directory of this source tree.\n+ *\n+ * @flow\n+ */\n+... | 2024-04-27T19:45:52 |
nodejs/node | c0ad1937d0004800f23b53308b5272208860dbbf | 799d9204f2e5bb92df49e90d7d7bc745a6a7ae32 | src: move more crypto impl detail to ncrypto dep
* remove obsolete LogSecret function
* move StackOfX509 decl to ncrypto
* colocate GetSSLOCSPResponse with callsite
* move x509 error code and reason to ncrypto
* simplify X509Pointer/X509View pointer derefs a bit
* move prime gen and checks to ncrypto
* move BN_* metho... | [
{
"path": "deps/ncrypto/ncrypto.cc",
"patch": "@@ -311,6 +311,87 @@ BignumPointer BignumPointer::clone() {\n return BignumPointer(BN_dup(bn_.get()));\n }\n \n+int BignumPointer::isPrime(int nchecks,\n+ BignumPointer::PrimeCheckCallback innerCb) const {\n+ BignumCtxPointer ctx(BN... | 2024-12-31T22:02:31 |
vercel/next.js | 8fe8fbc322167ce1a284b07c890043216b8ac069 | ef4308e0c408e95017fd30f87fb9a988545f806b | Fix validateTurboNextConfig isDev field (#83868)
Noticed the `phase` value being provided to `loadConfig` was incorrect
with turbopack and `next start` which was due to this field being hard
coded. | [
{
"path": "packages/next/src/server/lib/start-server.ts",
"patch": "@@ -465,7 +465,7 @@ export async function startServer(\n if (process.env.TURBOPACK) {\n await validateTurboNextConfig({\n dir: serverOptions.dir,\n- isDev: true,\n+ isDev: serverOptions.is... | 2025-09-17T00:43:00 |
electron/electron | c670e38b4b14d0286e0ae04cb7f63987beb5e044 | 6aa9a003c8e3df7459dc09cdf987e59a44c3ac56 | chore: bump chromium to 125.0.6412.0 (main) (#41610)
* chore: bump chromium in DEPS to 124.0.6361.0
* chore: bump chromium in DEPS to 124.0.6363.0
* chore: update patches
Manually apply printing.patch w/no code changes due to upstream shear.
Xref: https://chromium-review.googlesource.com/c/chromium/src/+/534... | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -56,7 +56,7 @@ executors:\n # 2xlarge should not be used directly, use the pipeline param instead\n enum: [\"medium\", \"electronjs/aks-linux-medium\", \"xlarge\", \"electronjs/aks-linux-large\", \"2xlarge\"]\n docker:\n- - image: ... | 2024-04-15T22:10:32 |
facebook/react | 95e610da13e50c2cb92e003dd7dbfa4a8262bdd2 | c4083616a232028588a2cbaa9ba8992481d1deb7 | Add changelog for 18.3 (#28929)
Fixes https://github.com/facebook/react/issues/28924 | [
{
"path": "CHANGELOG.md",
"patch": "@@ -1,3 +1,24 @@\n+## 18.3.0 (April 25, 2024)\n+\n+This release is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19.\n+\n+Read the [React 19 Upgrade Guide](https://react.dev/blog/2024/04/25/react-19-upgrade-guide) for ... | 2024-04-26T16:45:08 |
vercel/next.js | ef4308e0c408e95017fd30f87fb9a988545f806b | e01c16079ed1233042e5dd51615cc7f2ba7d7873 | Exclude `traceparent` and `tracestate` headers from fetch deduplication cache keys (#83852)
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is handled as smoothly as possible we request that
you follow the checklist sections below.
Choose the right checklist for the change(s) ... | [
{
"path": "packages/next/src/server/lib/dedupe-fetch.test.ts",
"patch": "@@ -0,0 +1,699 @@\n+/**\n+ * @jest-environment node\n+ */\n+\n+// Mock the React module first\n+jest.mock('react', () => ({\n+ cache: <T extends (...args: any[]) => any>(fn: T): T => {\n+ const cache = new Map<string, ReturnType<T>... | 2025-09-17T00:12:43 |
nodejs/node | ea493c18b262b082c310542533d369914b367111 | 5119049ca606fa2d0f6c64187ceab3150dcbe5c1 | crypto: make generatePrime/checkPrime interruptible
The `generatePrime` and `checkPrime` functions in the `crypto`
module are only somewhat interruptible. This change makes it
possible to interrupt these more reliably. Note that generating
overly large primes can still take a long time and may not be
interruptible as ... | [
{
"path": "doc/api/crypto.md",
"patch": "@@ -3940,6 +3940,13 @@ By default, the prime is encoded as a big-endian sequence of octets\n in an {ArrayBuffer}. If the `bigint` option is `true`, then a {bigint}\n is provided.\n \n+The `size` of the prime will have a direct impact on how long it takes to\n+generat... | 2025-01-03T23:22:12 |
golang/go | 82a1921c3b6b493c4ff358f063c2ffffabba9fd5 | 2ae059ccaf982c3304fae0b48c1d78ad7192cbdd | all: remove redundant Swiss prefixes
Now that there is only one map implementation we can simplify names.
For #54766.
Change-Id: I6a6a636cc6a8fc5e7712c27782fc0ced7467b939
Reviewed-on: https://go-review.googlesource.com/c/go/+/691596
Reviewed-by: Keith Randall <khr@google.com>
Auto-Submit: Michael Pratt <mpratt@googl... | [
{
"path": "src/cmd/compile/internal/reflectdata/map.go",
"patch": "@@ -15,10 +15,10 @@ import (\n \t\"internal/abi\"\n )\n \n-// SwissMapGroupType makes the map slot group type given the type of the map.\n-func SwissMapGroupType(t *types.Type) *types.Type {\n-\tif t.MapType().SwissGroup != nil {\n-\t\tretur... | 2025-07-29T17:58:35 |
electron/electron | 6aa9a003c8e3df7459dc09cdf987e59a44c3ac56 | 2a6ad42113e8f77ada68d71581c479506a13e364 | fix: stop using std::vector<const uint8_t> in ProcessingSingleton (#41832) | [
{
"path": "patches/chromium/feat_add_data_parameter_to_processsingleton.patch",
"patch": "@@ -13,7 +13,7 @@ app.requestSingleInstanceLock API so that users can pass in a JSON\n object for the second instance to send to the first instance.\n \n diff --git a/chrome/browser/process_singleton.h b/chrome/browser... | 2024-04-15T17:32:48 |
vercel/next.js | e01c16079ed1233042e5dd51615cc7f2ba7d7873 | 03250cd04344ba2a527763d08b3976bf29dff226 | fix: isRevalidate -> isStaticGeneration in fetch cache / unstable cache (#83858)
When fetch/`unstable_cache` are stale during ISR, we leverage `workStore.isRevalidate` to determine if we're in an ISR revalidation scope and if so, we perform a blocking revalidation.
This same scenario could happen at build time if t... | [
{
"path": "packages/next/src/server/lib/patch-fetch.ts",
"patch": "@@ -935,7 +935,7 @@ export function createPatchedFetcher(\n if (entry?.value && entry.value.kind === CachedRouteKind.FETCH) {\n // when stale and is revalidating we wait for fresh data\n // so the reva... | 2025-09-17T00:11:42 |
facebook/react | 6db5f36aa739169266d385f6f5fb4d585ac055b8 | 2b2d30519991f0d956a37d149a3947cca6784ec1 | [tests] Add fixtures showing HIR rewrite changes
ghstack-source-id: 5e8b1680e95d112e1e5b2cb8c4e6c414360e0a77
Pull Request resolved: https://github.com/facebook/react-forget/pull/2900 | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/__tests__/fixtures/compiler/align-scopes-within-nested-valueblock-in-array.expect.md",
"patch": "@@ -0,0 +1,84 @@\n+\n+## Input\n+\n+```javascript\n+// @enableReactiveScopesInHIR:false\n+\n+import { Stringify, identity, makeArray, mutate } from \"sh... | 2024-04-29T18:08:29 |
nodejs/node | 5119049ca606fa2d0f6c64187ceab3150dcbe5c1 | 8d9dac4877dacb48dfa72f58869e57e48f61fb2c | doc: fix faulty YAML metadata
PR-URL: https://github.com/nodejs/node/pull/56508
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Moshe Atlow <moshe@atlow.co.il> | [
{
"path": "doc/api/cli.md",
"patch": "@@ -192,8 +192,9 @@ Error: Access to this API has been restricted\n <!-- YAML\n added: v20.0.0\n changes:\n- - version: v23.5.0\n- - version: v22.13.0\n+ - version:\n+ - v23.5.0\n+ - v22.13.0\n pr-url: https://github.com/nodejs/node/pull/56201\n descrip... | 2025-01-07T22:17:58 |
golang/go | cc571dab91e73413cf2ba1546a4ba485038cf2d1 | 2174a7936c9e6109e2786369072f5b9dc5d631f5 | cmd/compile: deduplicate instructions when rewrite func results
After CL 628075, do not rely on the memory arg of an OpLocalAddr.
Fixes #74788
Change-Id: I4e893241e3949bb8f2d93c8b88cc102e155b725d
Reviewed-on: https://go-review.googlesource.com/c/go/+/691275
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acc... | [
{
"path": "src/cmd/compile/internal/ssa/expand_calls.go",
"patch": "@@ -243,11 +243,8 @@ func (x *expandState) rewriteFuncResults(v *Value, b *Block, aux *AuxCall) {\n \t\tif len(aRegs) > 0 {\n \t\t\tresult = &allResults\n \t\t} else {\n-\t\t\tif a.Op == OpLoad && a.Args[0].Op == OpLocalAddr {\n-\t\t\t\tadd... | 2025-07-29T10:53:29 |
electron/electron | d80c5f8377d2b8088a27fe354512dcd909b4cd0f | 755f7d5ed0be0111f2d70300d7caa392b21461b0 | build: redundant regex character class in generate-config-gypi.py (#41858)
fix: redundant regex character class in generate-config-gypi.py
'\w' already includes '_'. solves a SyntaxWarning on python 3.12. | [
{
"path": "script/generate-config-gypi.py",
"patch": "@@ -40,7 +40,7 @@ def read_electron_args():\n for line in file_in:\n if line.startswith('#'):\n continue\n- m = re.match('([\\w_]+) = (.+)', line)\n+ m = re.match('(\\w+) = (.+)', line)\n if m == None:\n continue... | 2024-04-15T15:33:55 |
facebook/react | 1c7e34cdb623ac03f2d1373c5d533880792c148b | 0a7f4427f13d70cd4cafe0388eb7d6b44ef1832e | Stop reporting errors on mutations of primitives (and associated false positives)
ghstack-source-id: 4dc9b3c51953f8ed2184ebc5e438bc877959b5d0
Pull Request resolved: https://github.com/facebook/react-forget/pull/2903 | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/HIR/Globals.ts",
"patch": "@@ -89,7 +89,7 @@ const TYPED_GLOBALS: Array<[string, BuiltInType]> = [\n restParam: null,\n returnType: { kind: \"Primitive\" },\n calleeEffect: Effect.Read,\n- returnValueKind: Valu... | 2024-04-25T16:39:20 |
vercel/next.js | 18425676ddc7696994c05afa5da9dc9cd20b1d07 | bba9b2f3667c61b78d95865422f15c8fff909dd5 | [next-config-ts] Set Node.js native TS loader fallback flag to process.env (#83832)
Since local variables aren't passed to the workers, the fallback flag
wasn't passed correctly. Since `process.env` is passed, use that to set
the flag.
#### Before
```
running pnpm next build
⚠ Failed to import "next.config.ts"... | [
{
"path": "packages/next/src/build/next-config-ts/transpile-config.ts",
"patch": "@@ -105,8 +105,6 @@ async function getTsConfig(cwd: string): Promise<CompilerOptions> {\n return parsedCommandLine.options\n }\n \n-let useNodeNativeTSLoader = true\n-\n export async function transpileConfig({\n nextConfig... | 2025-09-16T21:01:11 |
nodejs/node | 8d9dac4877dacb48dfa72f58869e57e48f61fb2c | 3b5f235cdbb0c6c33cea0aa8f5d41bd03032abac | src: fixup more ToLocalChecked uses in node_file
PR-URL: https://github.com/nodejs/node/pull/56484
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> | [
{
"path": "src/node_file.cc",
"patch": "@@ -1406,16 +1406,15 @@ static void ReadLink(const FunctionCallbackInfo<Value>& args) {\n const char* link_path = static_cast<const char*>(req_wrap_sync.req.ptr);\n \n Local<Value> error;\n- MaybeLocal<Value> rc = StringBytes::Encode(isolate,\n- ... | 2025-01-05T21:48:35 |
golang/go | 2174a7936c9e6109e2786369072f5b9dc5d631f5 | 8330fb48a645a29a79dd5c58ad3d9c54d7e6537c | crypto/tls: use standard chacha20-poly1305 cipher suite names
The different chacha20-poly1305 cipher suites were renamed to
include the _SHA256 suffix, which is the canonical naming convention.
The occurrences of the old names were still not updated, which can lead
to confusion when searching for the canonical names ... | [
{
"path": "src/crypto/tls/cipher_suites.go",
"patch": "@@ -149,8 +149,8 @@ type cipherSuite struct {\n }\n \n var cipherSuites = []*cipherSuite{ // TODO: replace with a map, since the order doesn't matter.\n-\t{TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305, 32, 0, 12, ecdheRSAKA, suiteECDHE | suiteTLS12, nil, nil, a... | 2025-07-21T07:34:13 |
electron/electron | b446ce7f224c4c3aa38e0f3d35c2e4e40192f29c | 05fba85aa38dba54e513cca786ed8ffac1f9f6a5 | fix: package <__assertion_handler> as part of libcxx headers (#41830)
Refs https://chromium-review.googlesource.com/c/chromium/src/+/5208502 | [
{
"path": "BUILD.gn",
"patch": "@@ -1466,8 +1466,10 @@ dist_zip(\"hunspell_dictionaries_zip\") {\n }\n \n copy(\"libcxx_headers\") {\n- sources = libcxx_headers + libcxx_licenses +\n- [ \"//buildtools/third_party/libc++/__config_site\" ]\n+ sources = libcxx_headers + libcxx_licenses + [\n+ ... | 2024-04-12T14:50:03 |
facebook/react | 0a7f4427f13d70cd4cafe0388eb7d6b44ef1832e | 59e37b088b4f7c8711c90a9248701ab6a4c08a21 | Fix invariant on mutable context values
ghstack-source-id: cb105318bf66d876a546b1c52e28286839d30032
Pull Request resolved: https://github.com/facebook/react-forget/pull/2904 | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Inference/InferReferenceEffects.ts",
"patch": "@@ -1640,17 +1640,6 @@ function inferBlock(\n const lvalue = instr.lvalue;\n lvalue.effect = Effect.ConditionallyMutate;\n const valueKind = state.kind(instrValue.place);\n- ... | 2024-04-25T15:00:56 |
vercel/next.js | bba9b2f3667c61b78d95865422f15c8fff909dd5 | 1fc18244547263409a82db35edbe5908ba403410 | docs: Fix self-referential link to Middleware in middleware.mdx (#83854)
This link was to the current page, which isn't very useful.
Link to the getting started page
(https://nextjs.org/docs/app/getting-started/route-handlers-and-middleware#middleware)
instead | [
{
"path": "docs/01-app/03-api-reference/03-file-conventions/middleware.mdx",
"patch": "@@ -8,7 +8,7 @@ related:\n - app/api-reference/functions/next-response\n ---\n \n-The `middleware.js|ts` file is used to write [Middleware](/docs/app/api-reference/file-conventions/middleware) and run code on the serv... | 2025-09-16T20:50:47 |
golang/go | 89a0af86b819ceb8095c686fc5109b40082bc8c5 | 5e94d72158077411547287fc36f24b3121cca645 | cmd/compile: allow ops to specify clobbering input registers
Same as clobbering fixed registers, but which register is clobbered
depends on which register was assigned to the input.
Add code similar to resultInArg0 processing that makes a register
copy before allowing the op to clobber the last available copy of a va... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/main.go",
"patch": "@@ -87,6 +87,10 @@ type regInfo struct {\n \t// clobbers encodes the set of registers that are overwritten by\n \t// the instruction (other than the output registers).\n \tclobbers regMask\n+\t// Instruction clobbers the register containing in... | 2025-06-09T23:44:46 |
electron/electron | 05fba85aa38dba54e513cca786ed8ffac1f9f6a5 | db11090e58a0d969707e3cade55af3ee000090b4 | fix: do not activate app when showing a panel on Mac (#41750)
* fix: do not activate app when showing or focusing a panel on Mac
* restored panel activation test | [
{
"path": "shell/browser/native_window_mac.h",
"patch": "@@ -176,6 +176,8 @@ class NativeWindowMac : public NativeWindow,\n \n void UpdateWindowOriginalFrame();\n \n+ bool IsPanel();\n+\n // Set the attribute of NSWindow while work around a bug of zoom button.\n bool HasStyleMask(NSUInteger flag) con... | 2024-04-12T12:27:59 |
nodejs/node | a344300bfa146fce9d1f20a71b073263a4720eab | 36c53c69c40273900df1af319711d56ec6a13eef | 2025-01-07, Version 22.13.0 'Jod' (LTS)
Notable changes:
assert:
* (SEMVER-MINOR) add partialDeepStrictEqual (Giovanni Bucci) https://github.com/nodejs/node/pull/54630
cli:
* (SEMVER-MINOR) implement --trace-env and --trace-env-[js|native]-stack (Joyee Cheung) https://github.com/nodejs/node/pull/55604
crypto:
*... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -48,7 +48,8 @@ release.\n <a href=\"doc/changelogs/CHANGELOG_V23.md#23.0.0\">23.0.0</a><br/>\n </td>\n <td valign=\"top\">\n-<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.12.0\">22.12.0</a></b><br/>\n+<b><a href=\"doc/changelogs/CHANGELOG_V22.md#22.13.0\">22.13.0... | 2025-01-05T18:33:23 |
facebook/react | a44559b0a5f6fc01f9963d2f3b216a2dd7179fd4 | f196e1f7030a5ed4597d4095b6116cb08e6fdaa1 | [hir] Re-implement mergeOverlappingReactiveScopes (+ bugfix)
ghstack-source-id: 06d49edffe5ae3c31eb6ef642078752c056c617c
Pull Request resolved: https://github.com/facebook/react-forget/pull/2852 | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/Entrypoint/Pipeline.ts",
"patch": "@@ -18,6 +18,7 @@ import {\n assertValidMutableRanges,\n lower,\n mergeConsecutiveBlocks,\n+ mergeOverlappingReactiveScopesHIR,\n pruneUnusedLabelsHIR,\n } from \"../HIR\";\n import {\n@@ -252,6 +253,13 @@... | 2024-04-26T16:40:35 |
vercel/next.js | 9c9456906b8bc0c48b47969ae81275736c196570 | a850edbec99c3f887d19777f90f0529ce0f0e382 | Allow headers, rewrites and redirects to be defined as sync functions (#83743)
### What and why?
Typings in `NextConfig` make us specify `headers`, `rewrites` and
`redirects` as $${\color{red}async}$$ functions. Doing so is needed even
if the result is known straight away, without having to call async IO.
This tight... | [
{
"path": "packages/next/src/server/config-shared.ts",
"patch": "@@ -920,28 +920,35 @@ export interface NextConfig extends Record<string, any> {\n *\n * @see [Headers configuration documentation](https://nextjs.org/docs/app/api-reference/config/next-config-js/headers)\n */\n- headers?: () => Promi... | 2025-09-16T19:31:08 |
golang/go | 8cd85e602a90cb97051fe95d5243557b566630e6 | cefaed0de0b86ea67588546d2e18f850e7b7d41d | cmd/compile: check domination of loop return in both controls
Fixes #74473
Change-Id: I72ff6b95955ae9407271508aa80f230dcf1b6c74
Reviewed-on: https://go-review.googlesource.com/c/go/+/685816
Reviewed-by: Mark Freeman <mark@golang.org>
Auto-Submit: Jorropo <jorropo.pgm@gmail.com>
LUCI-TryBot-Result: Go LUCI <golang-sco... | [
{
"path": "src/cmd/compile/internal/ssa/loopbce.go",
"patch": "@@ -37,19 +37,20 @@ type indVar struct {\n // - the minimum bound\n // - the increment value\n // - the \"next\" value (SSA value that is Phi'd into the induction variable every loop)\n+// - the header's edge returning from the body\n //... | 2025-07-04T06:54:14 |
electron/electron | db11090e58a0d969707e3cade55af3ee000090b4 | df22e62bf41f1ab7167a87b7aa63379a33ea56d2 | fix: silent printing default dpi on Windows (#41811) | [
{
"path": "BUILD.gn",
"patch": "@@ -700,6 +700,8 @@ source_set(\"electron_lib\") {\n sources += [\n \"shell/browser/printing/print_view_manager_electron.cc\",\n \"shell/browser/printing/print_view_manager_electron.h\",\n+ \"shell/browser/printing/printing_utils.cc\",\n+ \"shell/bro... | 2024-04-11T23:56:39 |
nodejs/node | 7c3aa9fe8573df35fde3315b2d04b84af665f542 | 75b9c1cdd844c108d6c420093ad96289b16f95ec | src: lock the thread properly in snapshot builder
Otherwise it can crash DCHECK when V8 expects that at least someone
is locking the current thread.
PR-URL: https://github.com/nodejs/node/pull/56327
Fixes: https://github.com/nodejs/node-v8/issues/294
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Chengzh... | [
{
"path": "src/node_snapshotable.cc",
"patch": "@@ -962,6 +962,8 @@ ExitCode BuildSnapshotWithoutCodeCache(\n }\n \n Isolate* isolate = setup->isolate();\n+ v8::Locker locker(isolate);\n+\n {\n HandleScope scope(isolate);\n TryCatch bootstrapCatch(isolate);",
"additions": 2,
"deletion... | 2025-01-07T16:49:10 |
facebook/react | f196e1f7030a5ed4597d4095b6116cb08e6fdaa1 | f22dd62ab8e2056b89fb29193d0ed30a98fd5ff4 | [hir][patch] Fix small bug in duplicate scope merging logic
ghstack-source-id: 98966dd4c2b264329acad077427febc2a34a5edc
Pull Request resolved: https://github.com/facebook/react-forget/pull/2906 | [
{
"path": "compiler/packages/babel-plugin-react-forget/src/ReactiveScopes/AlignReactiveScopesToBlockScopesHIR.ts",
"patch": "@@ -241,16 +241,6 @@ export function alignReactiveScopesToBlockScopesHIR(fn: HIRFunction): void {\n const joinedScopes: DisjointSet<ReactiveScope> =\n mergeOverlappingScopes(roo... | 2024-04-25T15:07:22 |
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.