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 |
|---|---|---|---|---|---|
nodejs/node | 6102159fa10eb153ed5de6a2f945f120be32cebd | 5f48fddd3a61502efc40bb218211ed71e17792e5 | test: fix watch tests not including completion messages
PR-URL: https://github.com/nodejs/node/pull/58183
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name> | [
{
"path": "test/sequential/test-watch-mode.mjs",
"patch": "@@ -810,14 +810,14 @@ process.on('message', (message) => {\n assert.strictEqual(stderr, '');\n assert.deepStrictEqual(stdout, [\n 'no --watch args present',\n- `Completed running ${inspect(file)}`,\n+ `Completed running ${ins... | 2025-05-06T02:59:41 |
facebook/react | 4a8fc0f92e0f75257962522b51a938bf4dfda77a | 3b597c0576977773910c77e075cc6d6308decb04 | [Flight] Don't call onError/onPostpone when halting and unify error branches (#31715)
We shouldn't call onError/onPostpone when we halt a stream because that
node didn't error yet. Its digest would also get lost.
We also have a lot of error branches now for thenables and streams. This
unifies them under erroredTa... | [
{
"path": "packages/react-server-dom-webpack/src/__tests__/ReactFlightDOM-test.js",
"patch": "@@ -2870,7 +2870,7 @@ describe('ReactFlightDOM', () => {\n resolveGreeting();\n const {prelude} = await pendingResult;\n \n- expect(errors).toEqual(['boom']);\n+ expect(errors).toEqual([]);\n \n c... | 2024-12-10T16:59:50 |
rust-lang/rust | 0ffb4adaeb225ccd49ef7c829e6ea2aa4b516f74 | 69370dc4a8862b8401615a2a7b950704ba66c495 | Tweak control flow in `query_*` functions.
`query_get_at`, `query_ensure`, and `query_ensure_error_guarantee` are
very similar functions, but they all use different control flow styles
which obscures the similarities. This commit rewrites them to all use
a `match`. | [
{
"path": "compiler/rustc_middle/src/query/inner.rs",
"patch": "@@ -59,8 +59,11 @@ pub(crate) fn query_ensure<'tcx, C>(\n ) where\n C: QueryCache,\n {\n- if try_get_cached(tcx, &query.cache, &key).is_none() {\n- (query.execute_query_fn)(tcx, DUMMY_SP, key, QueryMode::Ensure { ensure_mode });\n... | 2026-03-03T09:11:52 |
nodejs/node | f275121b72916d0c0a8b017b7677ddd6e2573e46 | 4acb85403950320773352ab127bee9fc85818153 | doc: fix misaligned options in vm.compileFunction()
Current alignment mislead doc reader into thinking
`importModuleDynamically` is a separate positional param right next to
`options`, which is incorrect and need to be fixed.
This misalignment is introduced in a PR merged in Feb 2024.
I belive this doc fix applies t... | [
{
"path": "doc/api/vm.md",
"patch": "@@ -1044,13 +1044,13 @@ changes:\n * `contextExtensions` {Object\\[]} An array containing a collection of context\n extensions (objects wrapping the current scope) to be applied while\n compiling. **Default:** `[]`.\n-* `importModuleDynamically`\n- {Function|v... | 2025-05-05T18:50:50 |
vercel/next.js | 26b95c3f0fa7226b3dd77a35b63fa0a4bf4f60d6 | cdf8f7959b0313799d64237e0d9d590e328f1028 | [ci]: fix retry_deploy_test workflow (#85981)
When we fixed deploy tests to consistently run with the explicitly
provided Next.js release version, it broke this job which was relying on
an explicit match on the "test e2e deploy canary" string. | [
{
"path": ".github/workflows/retry_deploy_test.yml",
"patch": "@@ -17,8 +17,8 @@ jobs:\n name: retry failed jobs\n # Retry the test-e2e-deploy-release workflow up to 2 times\n if: >-\n- ${{ \n- github.event.workflow_run.display_title == 'test-e2e-deploy canary' &&\n+ ${{\n+ ... | 2025-11-12T19:31:27 |
golang/go | a5f55a441ef497d8e2a12610f4ec2bd32fdc04b2 | 80876f4b42c807e0f90eab20a3e8a98ef95f2cb0 | cmd/fix: add modernize and inline analyzers
We ran 'go mod vendor' to pull in the newly used packages.
Also, add a cmd/go script test that minimally
exercises each analyzer, analogous to the cmd/vet test.
For #75266
For #75267
For #71859
Change-Id: I334daea048e3d2f614a1788292a3175acf173932
Reviewed-on: https://go-r... | [
{
"path": "src/cmd/fix/main.go",
"patch": "@@ -22,10 +22,13 @@ package main\n import (\n \t\"cmd/internal/objabi\"\n \t\"cmd/internal/telemetry/counter\"\n+\t\"slices\"\n \n \t\"golang.org/x/tools/go/analysis\"\n \t\"golang.org/x/tools/go/analysis/passes/buildtag\"\n \t\"golang.org/x/tools/go/analysis/passe... | 2025-10-10T19:49:53 |
facebook/react | 372ec00c0384cd2089651154ea7c67693ee3f2a5 | 3d2ab01a559943b3f041f841dc0d796d92be0a87 | Update ReactDebugInfo types to declare timing info separately (#31714)
This clarifies a few things by ensuring that there is always at least
one required field. This can be used to refine the object to one of the
specific types. However, it's probably just a matter of time until we
make this tagged unions instead. ... | [
{
"path": "packages/react-client/src/ReactFlightClient.js",
"patch": "@@ -11,7 +11,9 @@ import type {\n Thenable,\n ReactDebugInfo,\n ReactComponentInfo,\n+ ReactEnvironmentInfo,\n ReactAsyncInfo,\n+ ReactTimeInfo,\n ReactStackTrace,\n ReactCallSite,\n } from 'shared/ReactTypes';\n@@ -2460,7 +... | 2024-12-10T00:47:43 |
rust-lang/rust | b9ee655517d90c3be3101bdb24445d06ad1197b1 | ea5573a6c6e5e932f917ec4a8e6d8efdeb9f394d | Fix LegacyKeyValueFormat report from docker build: miscellaneous | [
{
"path": "src/ci/docker/host-x86_64/dist-android/Dockerfile",
"patch": "@@ -16,15 +16,14 @@ ENV TARGETS=$TARGETS,i686-linux-android\n ENV TARGETS=$TARGETS,aarch64-linux-android\n ENV TARGETS=$TARGETS,x86_64-linux-android\n \n-ENV RUST_CONFIGURE_ARGS \\\n- --enable-extended \\\n+ENV RUST_CONFIGURE_ARGS... | 2026-03-07T09:40:02 |
nodejs/node | 4acb85403950320773352ab127bee9fc85818153 | c46b2b9da30628585900b53052aec509cb59036e | watch: fix watch args not being properly filtered
currently when --watch is used, the argv arguments that
the target script receives are filtered so that they don't
include watch related arguments, however the current
filtering logic is incorrect and it causes some watch values
to incorrectly pass the filtering, the c... | [
{
"path": "lib/internal/main/watch_mode.js",
"patch": "@@ -43,11 +43,26 @@ const argsWithoutWatchOptions = [];\n \n for (let i = 0; i < process.execArgv.length; i++) {\n const arg = process.execArgv[i];\n- if (StringPrototypeStartsWith(arg, '--watch')) {\n- i++;\n- const nextArg = process.execArgv[... | 2025-05-05T15:08:04 |
vercel/next.js | 41c1f8700de71dd40f3a2395845906fe0354ac9b | ba20a5e8f26939b8963e2410dbc66d973ea9309b | [cna] For pnpm ignore postinstall from `sharp` and `unrs-resolver` (#83168)
Fixes: https://github.com/vercel/next.js/issues/83158
There's still two other postinstall that are ignored if you use tw and
eslint's next config (?):
```
╭ Warning ────────────────────────────────────────────────────────────────────────────... | [
{
"path": "packages/create-next-app/templates/index.ts",
"patch": "@@ -319,6 +319,27 @@ export const installTemplate = async ({\n packageJson.devDependencies = sorted(packageJson.devDependencies);\n }\n \n+ if (packageManager === \"pnpm\") {\n+ const pnpmWorkspaceYaml = [\n+ // required for v... | 2025-11-11T18:01:52 |
facebook/react | 226b85926a70a9b258583c234bd4e143e6bb42e4 | 7283a213dbbc31029e65005276f12202558558fc | [compiler] Support for context variable loop iterators
Summary:
Fixing a compiler todo
ghstack-source-id: c4d9226b1745d003dc9945df1ac5c5a01712f909
Pull Request resolved: https://github.com/facebook/react/pull/31709 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts",
"patch": "@@ -1354,20 +1354,6 @@ function codegenForInit(\n init: ReactiveValue,\n ): t.Expression | t.VariableDeclaration | null {\n if (init.kind === 'SequenceExpression') {\n- for (const instr ... | 2024-12-09T18:15:20 |
rust-lang/rust | dceeb20bbc73085a7dfdfd9eeec5918eeb92d60e | ea5573a6c6e5e932f917ec4a8e6d8efdeb9f394d | Fix LegacyKeyValueFormat report from docker build: various | [
{
"path": "src/ci/docker/host-x86_64/dist-various-1/Dockerfile",
"patch": "@@ -152,16 +152,14 @@ ENV CFLAGS_armv5te_unknown_linux_musleabi=\"-march=armv5te -marm -mfloat-abi=soft\n CC_riscv64gc_unknown_none_elf=riscv64-unknown-elf-gcc \\\n CFLAGS_riscv64gc_unknown_none_elf=-march=rv64gc -mabi=lp64\n... | 2026-03-07T09:26:23 |
golang/go | 1099436f1b63560a0587dd4c5814edd13f80e577 | 41f5659347f9498ce81911032bb46537d923bdd7 | go/types, types2: change and enforce lifecycle of Named.fromRHS and Named.underlying fields
A type definition or alias declaration consists of a type name (LHS)
which is bound to a type expression (RHS) by the declaration.
This CL consistently uses the fromRHS fields of Named and Alias types
to represent that RHS typ... | [
{
"path": "src/cmd/compile/internal/types2/decl.go",
"patch": "@@ -476,7 +476,7 @@ func (check *Checker) isImportedConstraint(typ Type) bool {\n \tif named == nil || named.obj.pkg == check.pkg || named.obj.pkg == nil {\n \t\treturn false\n \t}\n-\tu, _ := named.under().(*Interface)\n+\tu, _ := named.Underly... | 2025-08-20T21:30:26 |
vercel/next.js | ba20a5e8f26939b8963e2410dbc66d973ea9309b | 5bd7c6fec0390244d412719bca889101ff37501a | Fix false-positive build error for `cacheLife` & `cacheTag` (#85875)
When functions exported from a module with a top-level `'use cache'`
directive are imported into client modules, the compiler should allow
`cacheLife` and `cacheTag` usage within those functions.
This PR updates the `react_server_components` transfo... | [
{
"path": "crates/next-custom-transforms/src/transforms/react_server_components.rs",
"patch": "@@ -66,7 +66,6 @@ struct ReactServerComponents<C: Comments> {\n filepath: String,\n app_dir: Option<PathBuf>,\n comments: C,\n- directive_import_collection: Option<(bool, bool, RcVec<ModuleImports>,... | 2025-11-11T16:30:41 |
nodejs/node | c46b2b9da30628585900b53052aec509cb59036e | f75a1265a8eef5c2058be1fde6eefa4ca0b5990f | tools: exclude deps/v8/tools from CodeQL scans
This will remove three of the four "A parse error occurred" issues
during JavaScript CodeQL scans. (The fourth occurrence is in our code
base, although it might be a false positive. Someone can figure that one
out sooner or later, but we certainly can bypass scanning V8 t... | [
{
"path": ".github/codeql-config.yml",
"patch": "@@ -3,3 +3,4 @@ name: CodeQL config\n paths-ignore:\n - test\n - deps/v8/test\n+ - deps/v8/tools",
"additions": 1,
"deletions": 0,
"language": "YAML"
}
] | 2025-05-05T05:11:53 |
electron/electron | 10d967028af2e72382d16b7e2025d243b9e204ae | aa7a5e6ca959a6a54b59ce9e4c11eb4ce482b8cb | docs: Make ipcRenderer and ipcMain listener API docs consistent (#44651)
* docs: Make ipcRenderer and ipcMain listener API docs consistent
* test: add some unit tests for ipcRenderer/ipcMain listener behavior
* fix: Mark on/off methods as primary and addListener/removeListener as aliases
* fix: clear all list... | [
{
"path": "docs/api/ipc-main.md",
"patch": "@@ -32,7 +32,7 @@ process, see [webContents.send][web-contents-send] for more information.\n \n ## Methods\n \n-The `ipcMain` module has the following method to listen for events:\n+The `ipcMain` module has the following methods to listen for events:\n \n ### `ipc... | 2024-11-18T22:44:30 |
facebook/react | 7283a213dbbc31029e65005276f12202558558fc | 65ba3e87e49f7ea1bac04e1ed938debdbafcf30a | Fix headings in React 19 CHANGELOG (#31683)
Co-authored-by: eps1lon <sebastian.silbermann@vercel.com> | [
{
"path": "CHANGELOG.md",
"patch": "@@ -1,12 +1,12 @@\n-## 19.0.0 (December 5, 2024\\)\n+## 19.0.0 (December 5, 2024)\n \n Below is a list of all new features, APIs, deprecations, and breaking changes. Read [React 19 release post](https://react.dev/blog/2024/04/25/react-19) and [React 19 upgrade guide](http... | 2024-12-06T15:55:53 |
rust-lang/rust | fcfd96e821339803350bef5ae702c72d85768e75 | ea5573a6c6e5e932f917ec4a8e6d8efdeb9f394d | Fix LegacyKeyValueFormat report from docker build: pr | [
{
"path": "src/ci/docker/host-x86_64/pr-check-1/Dockerfile",
"patch": "@@ -39,7 +39,7 @@ COPY host-x86_64/pr-check-1/validate-toolstate.sh /scripts/\n # Check library crates on all tier 1 targets.\n # We disable optimized compiler built-ins because that requires a C toolchain for the target.\n # We also ski... | 2026-03-07T09:14:23 |
golang/go | 27f9a6705c700d9075d4651cf9cff9cabbe4a47e | b68cebd809f1335b4504837337f5702406720432 | runtime: increase repeat count for alloc test
To make sure a single spurious alloc doesn't flake the test.
Fixes #75858
Change-Id: I055b37ad5668459bfa7ab1dac97025c997c68f1a
Reviewed-on: https://go-review.googlesource.com/c/go/+/712201
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccou... | [
{
"path": "src/runtime/iface_test.go",
"patch": "@@ -60,7 +60,7 @@ func TestCmpIfaceConcreteAlloc(t *testing.T) {\n \t\tt.Skip(\"skipping on non-gc compiler\")\n \t}\n \n-\tn := testing.AllocsPerRun(1, func() {\n+\tn := testing.AllocsPerRun(100, func() {\n \t\t_ = e == ts\n \t\t_ = i1 == ts\n \t\t_ = e == 1... | 2025-10-15T20:28:15 |
nodejs/node | 5ac126bbe655ae390b17e279dad7b4ed0440006f | 4db978b111bf8164e000ea54ac744e1bf056b59a | doc: fix typo in benchmark script path
PR-URL: https://github.com/nodejs/node/pull/58129
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Daeyeon Jeong <daeyeon... | [
{
"path": "doc/contributing/writing-and-running-benchmarks.md",
"patch": "@@ -101,7 +101,7 @@ benchmarks. This increases the likelihood of each benchmark achieving peak perfo\n according to the hardware. Therefore, run:\n \n ```console\n-$ ./benchmarks/cpu.sh fast\n+$ ./benchmark/cpu.sh fast\n ```\n \n ### ... | 2025-05-04T20:04:55 |
electron/electron | aa7a5e6ca959a6a54b59ce9e4c11eb4ce482b8cb | 58dc990f7a725537b447c22862956ac6d711291d | docs: document why to use the loadBrowserProcessSpecificV8Snapshot fuse (#44680)
Fixes #44450 | [
{
"path": "docs/tutorial/fuses.md",
"patch": "@@ -68,6 +68,10 @@ The onlyLoadAppFromAsar fuse changes the search system that Electron uses to loc\n \n The loadBrowserProcessSpecificV8Snapshot fuse changes which V8 snapshot file is used for the browser process. By default Electron's processes will all use t... | 2024-11-18T22:36:41 |
vercel/next.js | 5bd7c6fec0390244d412719bca889101ff37501a | 1b113c01be5d5268c7f780d53130ec98618dc3b4 | [test] Add missing test fixtures for `cacheLife` & `cacheTag` in client (#85872)
Importing `cacheLife` and `cacheTag` in Client Components yields build errors. This adds test fixtures to cover these scenarios.
In addition, we're duplicating the test fixtures that have different error messages between `app/` and `pa... | [
{
"path": "crates/next-custom-transforms/tests/errors.rs",
"patch": "@@ -90,24 +90,32 @@ fn next_ssg_errors(input: PathBuf) {\n }\n \n #[fixture(\"tests/errors/react-server-components/**/input.js\")]\n+#[fixture(\"tests/errors/react-server-components/**/page.js\")]\n+#[fixture(\"tests/errors/react-server-co... | 2025-11-11T13:37:43 |
rust-lang/rust | 63a02ac1b37772aaeced31c6def24fbeb5ab209b | ea5573a6c6e5e932f917ec4a8e6d8efdeb9f394d | Fix LegacyKeyValueFormat report from docker build: i686 | [
{
"path": "src/ci/docker/host-x86_64/dist-i586-gnu-i586-i686-musl/Dockerfile",
"patch": "@@ -57,10 +57,9 @@ RUN ln -s /usr/lib32/libgcc_s.so.1 /musl-i686/lib/\n COPY scripts/sccache.sh /scripts/\n RUN sh /scripts/sccache.sh\n \n-ENV RUST_CONFIGURE_ARGS \\\n- --musl-root-i586=/musl-i586 \\\n+ENV RUST_CO... | 2026-03-07T08:37:38 |
facebook/react | 65ba3e87e49f7ea1bac04e1ed938debdbafcf30a | c56c6234328a29930487295afe61597db48f058c | docs: use diff codeblock for `useReducer` typings change (#31685)
## Summary
This PR updates the 19.0.0 changelog to use diff-styled code blocks for
illustrating changes to `useReducer` typings. Also removes the incorrect
square brackets in the second diff, it should be `Action` instead of
`[Action]`.
## Ho... | [
{
"path": "CHANGELOG.md",
"patch": "@@ -97,11 +97,15 @@ The most common changes can be codemodded with `npx types-react-codemod@latest p\n * JSX namespace in TypeScript: The global `JSX` namespace is removed to improve interoperability with other libraries using JSX. Instead, the JSX namespace is available ... | 2024-12-06T15:12:38 |
nodejs/node | 4db978b111bf8164e000ea54ac744e1bf056b59a | 995ad2b05303ab75e89a58ffcd69f987c2c459d6 | benchmark: fix typo in method name for error-stack
PR-URL: https://github.com/nodejs/node/pull/58128
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Edy Silva <edigleyssonsilva@gmail.com> | [
{
"path": "benchmark/es/error-stack.js",
"patch": "@@ -10,7 +10,7 @@ const bench = common.createBenchmark(main, {\n 'without-sourcemap',\n 'sourcemap',\n 'node-modules-without-sourcemap',\n- 'node-module-sourcemap'],\n+ 'node-modules-sourcemap'],\n n: [1e5],\n });\n ",
"additions": 1... | 2025-05-04T19:55:30 |
golang/go | b68cebd809f1335b4504837337f5702406720432 | f1fed742ebbe781611c9f78398d9fa233ad0a8e6 | net/http/httptest: record failed ResponseWriter writes
CL 709335 changed ResponseWriter.Write to return an error
when trying to write to a response with a status code which
doesn't permit a body, such as 304.
Continue to return an error, but still record the write in
ResponseWriter.Body. This maintains the documented... | [
{
"path": "src/net/http/httptest/recorder.go",
"patch": "@@ -105,28 +105,28 @@ func (rw *ResponseRecorder) writeHeader(b []byte, str string) {\n // Write implements http.ResponseWriter. The data in buf is written to\n // rw.Body, if not nil.\n func (rw *ResponseRecorder) Write(buf []byte) (int, error) {\n-\... | 2025-10-14T18:25:29 |
electron/electron | 58dc990f7a725537b447c22862956ac6d711291d | 36e1a0bf001d72f725297f43827d255b08c2e9b7 | chore: fix multi-version parsing in issue assignment (#44679)
* chore: fix multi-version parsing
* chore: tweak for review | [
{
"path": ".github/workflows/issue-opened.yml",
"patch": "@@ -57,34 +57,40 @@ jobs:\n \n const electronVersion = select('heading:has(> text[value=\"Electron Version\"]) + paragraph > text', tree)?.value.trim();\n if (electronVersion !== undefined) {\n- const major = semv... | 2024-11-18T20:25:20 |
rust-lang/rust | 82034115efa523a2fa470078901db92d2d4d246f | ea5573a6c6e5e932f917ec4a8e6d8efdeb9f394d | Fix LegacyKeyValueFormat report from docker build: mips | [
{
"path": "src/ci/docker/host-x86_64/dist-mips-linux/Dockerfile",
"patch": "@@ -26,5 +26,5 @@ ENV \\\n \n ENV HOSTS=mips-unknown-linux-gnu\n \n-ENV RUST_CONFIGURE_ARGS --enable-extended --disable-docs\n-ENV SCRIPT python3 ../x.py dist --host $HOSTS --target $HOSTS\n+ENV RUST_CONFIGURE_ARGS=\"--enable-extend... | 2026-03-07T08:45:29 |
facebook/react | c56c6234328a29930487295afe61597db48f058c | d27fa084f66b2e47933e7760a1e78c6d101dda5b | docs: fix capitalization of TypeScript (#31682) | [
{
"path": "CHANGELOG.md",
"patch": "@@ -77,7 +77,7 @@ React 19 brings in a number of breaking changes, including the removals of long-\n * Diffs for hydration errors: In the case of a mismatch, React 19 logs a single error with a diff of the mismatched content. \n * Compatibility with third-party scripts a... | 2024-12-05T23:04:11 |
nodejs/node | ddec63d7417f6e1170b0b077bb72df606bf12d11 | c2d81569d546dd0cfdd6c2cd15913950eee3632b | src: add more debug logs and comments in NodePlatform
PR-URL: https://github.com/nodejs/node/pull/58047
Refs: https://github.com/nodejs/node/pull/47452
Refs: https://github.com/nodejs/node/issues/54918
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> | [
{
"path": "src/debug_utils.h",
"patch": "@@ -55,6 +55,8 @@ void NODE_EXTERN_PRIVATE FWrite(FILE* file, const std::string& str);\n V(MKSNAPSHOT) \\\n V(SNAPSHOT_SERDES) \\\n V(PERMIS... | 2025-05-02T14:11:06 |
golang/go | f1fed742ebbe781611c9f78398d9fa233ad0a8e6 | 0984dcd7572a90a1bd21bec98bd9c73fdcf983ab | cmd: fix three printf problems reported by newest vet
Change-Id: Id70985d217c940eb022dbc95bfaa20373672512c
Reviewed-on: https://go-review.googlesource.com/c/go/+/712220
Auto-Submit: Alan Donovan <adonovan@google.com>
TryBot-Bypass: Alan Donovan <adonovan@google.com>
Commit-Queue: Alan Donovan <adonovan@google.com>
Rev... | [
{
"path": "src/cmd/go/internal/modload/vendor.go",
"patch": "@@ -188,7 +188,7 @@ func checkVendorConsistency(loaderstate *State, indexes []*modFileIndex, modFile\n \t\t\t\t\t// However, we can at least detect a version mismatch if packages were\n \t\t\t\t\t// vendored from a non-matching version.\n \t\t\t\t... | 2025-10-15T20:28:03 |
rust-lang/rust | 58652d5a4312b2d2549d2f631bc301df8e4d7aae | ea5573a6c6e5e932f917ec4a8e6d8efdeb9f394d | Fix LegacyKeyValueFormat report from docker build: ohos | [
{
"path": "src/ci/docker/host-x86_64/dist-ohos-aarch64/Dockerfile",
"patch": "@@ -40,14 +40,13 @@ ENV \\\n AR_aarch64_unknown_linux_ohos=/opt/ohos-sdk/native/llvm/bin/llvm-ar \\\n CXX_aarch64_unknown_linux_ohos=/usr/local/bin/aarch64-unknown-linux-ohos-clang++.sh\n \n-ENV RUST_CONFIGURE_ARGS \\\n- ... | 2026-03-07T08:42:15 |
electron/electron | 36e1a0bf001d72f725297f43827d255b08c2e9b7 | d320840a54ec5bce9a066dad95c25ae9eb3e2780 | fix: utility process exit code for graceful termination (#44698) | [
{
"path": "patches/chromium/feat_enable_passing_exit_code_on_service_process_crash.patch",
"patch": "@@ -11,7 +11,7 @@ ServiceProcessHost::Observer functions, but we need to pass the exit code to\n the observer.\n \n diff --git a/content/browser/service_process_host_impl.cc b/content/browser/service_process... | 2024-11-18T14:57:06 |
facebook/react | d27fa084f66b2e47933e7760a1e78c6d101dda5b | 52685a75039846fafec16d174e743d4525591ce7 | Fix two typos in CHANGELOG.md (#31678) | [
{
"path": "CHANGELOG.md",
"patch": "@@ -8,7 +8,7 @@ Below is a list of all new features, APIs, deprecations, and breaking changes. R\n \n ### React\n \n-* Actions: `startTransition` can now accept async functions. Functions passed to `startTranstion` are called “Actions”. A given Transition can include one ... | 2024-12-05T23:03:24 |
nodejs/node | abfb7cc5bcb1397d8823e8fafbb62045031ca56e | f552c86fecd6c2ba9e832ea129b731dd63abdbe2 | doc: fix typo of file `zlib.md`
PR-URL: https://github.com/nodejs/node/pull/58093
Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api/zlib.md",
"patch": "@@ -12,7 +12,7 @@ Gzip, Deflate/Inflate, Brotli, and Zstd.\n To access it:\n \n ```mjs\n-import os from 'node:zlib';\n+import zlib from 'node:zlib';\n ```\n \n ```cjs",
"additions": 1,
"deletions": 1,
"language": "Markdown"
}
] | 2025-05-03T12:08:20 |
golang/go | 0984dcd7572a90a1bd21bec98bd9c73fdcf983ab | 31f82877e85a7e6c70b0104e704abfed622e345f | cmd/compile: fix an error in comments
Remove the redundant only.
Change-Id: I9cf2d84ae080a567ad45a2d0ef002c7c89395479
Reviewed-on: https://go-review.googlesource.com/c/go/+/711960
Auto-Submit: Robert Findley <rfindley@google.com>
Reviewed-by: Robert Griesemer <gri@google.com>
Reviewed-by: Robert Findley <rfindley@goo... | [
{
"path": "src/cmd/compile/internal/types2/instantiate.go",
"patch": "@@ -83,7 +83,7 @@ func Instantiate(ctxt *Context, orig Type, targs []Type, validate bool) (Type, e\n //\n // For Named types the resulting instance may be unexpanded.\n //\n-// check may be nil (when not type-checking syntax); pos is used... | 2025-10-15T02:27:16 |
electron/electron | dd50afa8c2d82f4a448bd66675fcde2d64642031 | 15ff999bdcda7f93d04991b131d1ea54a634498f | fix: `utilityProcess` pid should be `undefined` after exit (#44677)
fix: utilityProcess pid should be undefined after exit | [
{
"path": "docs/api/utility-process.md",
"patch": "@@ -92,6 +92,8 @@ the child process exits, then the value is `undefined` after the `exit` event is\n ```js\n const child = utilityProcess.fork(path.join(__dirname, 'test.js'))\n \n+console.log(child.pid) // undefined\n+\n child.on('spawn', () => {\n conso... | 2024-11-18T09:06:27 |
facebook/react | 16d2bbbd1f1617d636ea0fd271b902a12a763c27 | 6bcf0d20dae349bba428d8f73dbcf0284b0acb10 | Client render dehydrated Suspense boundaries on document load (#31620)
When streaming SSR while hydrating React will wait for Suspense
boundaries to be revealed by the SSR stream before attempting to hydrate
them. The rationale here is that the Server render is likely further
ahead of whatever the client would prod... | [
{
"path": "packages/internal-test-utils/ReactJSDOM.js",
"patch": "@@ -0,0 +1,20 @@\n+const JSDOMModule = jest.requireActual('jsdom');\n+\n+const OriginalJSDOM = JSDOMModule.JSDOM;\n+\n+module.exports = JSDOMModule;\n+module.exports.JSDOM = function JSDOM() {\n+ let result;\n+ if (new.target) {\n+ resul... | 2024-12-03T21:13:35 |
vercel/next.js | d5262c7286d82e521f312dd3883096cd84c8c0b6 | 28a14da5010ad3147a06abbabc99a119d009f733 | Update authentication.mdx: Fix `Auth0` Link (#85953)
The `Auth0` link is broken so I fixed it
<!-- 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(... | [
{
"path": "docs/01-app/02-guides/authentication.mdx",
"patch": "@@ -1624,7 +1624,7 @@ Now that you've learned about authentication in Next.js, here are Next.js-compat\n \n ### Auth Libraries\n \n-- [Auth0](https://auth0.com/docs/quickstart/webapp/nextjs/01-login)\n+- [Auth0](https://auth0.com/docs/quickstar... | 2025-11-11T09:09:20 |
nodejs/node | a2d157ef239c747aba3bc282d9a7b792b054c713 | 248b1f48a8a47c68aeea5521a1e033c28eb7cae8 | test: fix test-fs-write for V8 13.6
The `--expose_externalize_string` flag adds a new global.
PR-URL: https://github.com/nodejs/node/pull/58070
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Rafae... | [
{
"path": "test/parallel/test-fs-write.js",
"patch": "@@ -37,17 +37,20 @@ const constants = fs.constants;\n \n const {\n createExternalizableString,\n+ createExternalizableTwoByteString,\n externalizeString,\n isOneByteString,\n } = globalThis;\n \n assert.notStrictEqual(createExternalizableString, u... | 2025-04-09T16:00:54 |
golang/go | 31f82877e85a7e6c70b0104e704abfed622e345f | 6346349f5629a5767d2cd132f01092857a570bd2 | go/types, types2: fix misleading internal comment
See also the discussion in #75885.
Change-Id: Ieb964ea6ee51600c0c08ecba0af50a1deb209a4d
Reviewed-on: https://go-review.googlesource.com/c/go/+/712141
Reviewed-by: Mark Freeman <markfreeman@google.com>
Auto-Submit: Robert Griesemer <gri@google.com>
TryBot-Bypass: Rober... | [
{
"path": "src/cmd/compile/internal/types2/decl.go",
"patch": "@@ -575,11 +575,8 @@ func (check *Checker) typeDecl(obj *TypeName, tdecl *syntax.TypeDecl, def *TypeN\n \t\tnamed.underlying = Typ[Invalid]\n \t}\n \n-\t// Disallow a lone type parameter as the RHS of a type declaration (go.dev/issue/45639).\n-\... | 2025-10-15T18:27:17 |
electron/electron | 4fb5aab2ef1e928079dbc340f942afd54920a8cc | 27fe6cc97f4d40c3a74c58ed1de41c9766437192 | fix: revert required portal version for file chooser dialogs (#44426)
* feat: add support for configuring xdg portal version at runtime
* doc: update command-line-switches.md
* doc: update command-line-switches.md
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
* doc: required portal version fo... | [
{
"path": "docs/api/command-line-switches.md",
"patch": "@@ -241,6 +241,13 @@ Force using discrete GPU when there are multiple GPUs available.\n \n Force using integrated GPU when there are multiple GPUs available.\n \n+### --xdg-portal-required-version=`version`\n+\n+Sets the minimum required version of XD... | 2024-11-15T14:31:33 |
facebook/react | 5b0ef217ef32333a8e56f39be04327c89efa346f | 7670501b0dc1a97983058b5217a205b62e2094a1 | s/server action/server function (#31005)
## Overview
Changes the error message to say "Server Functions" instead of "Server
Actions" since this error can fire in cases like:
```
<button onClick={serverFunction} />
```
Which is calling a server function, not a server action. | [
{
"path": "packages/react-client/src/ReactFlightReplyClient.js",
"patch": "@@ -693,7 +693,7 @@ export function processReply(\n ) {\n if (temporaryReferences === undefined) {\n throw new Error(\n- 'Only plain objects, and a few built-ins, can be passed to Server Actions. ' ... | 2024-12-02T15:02:31 |
rust-lang/rust | d3149ca7aa0d5ea00ad1b69fb01ca067dde336bd | 69370dc4a8862b8401615a2a7b950704ba66c495 | Fix incorrect rustdoc JSON representation of `#[doc(test(..))]` attrs. | [
{
"path": "src/librustdoc/json/conversions.rs",
"patch": "@@ -1041,10 +1041,10 @@ fn maybe_from_hir_attr(attr: &hir::Attribute, item_id: ItemId, tcx: TyCtxt<'_>)\n for attr_span in test_attrs {\n // FIXME: This is ugly, remove when `test_attrs` has been ported to new attribute AP... | 2026-03-06T04:38:02 |
nodejs/node | 7963548186f545df0d6a3df2d11d6e9a2adfc50a | de8e7bd7725c1bd1a0caaeaa7c5c846e3831588d | build: fix V8 TLS config for shared lib builds
PR-URL: https://github.com/nodejs/node/pull/58070
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> | [
{
"path": "tools/v8_gypfiles/v8.gyp",
"patch": "@@ -53,6 +53,11 @@\n 'BUILDING_V8_SHARED', # Make V8_EXPORT visible.\n ],\n }],\n+ ['node_shared==\"true\"', {\n+ 'defines': [\n+ 'V8_TLS_USED_IN_LIBRARY', # Enable V8_TLS_LIBRARY_MODE.\n+ ],\n+ }],\n ... | 2025-04-03T18:18:42 |
vercel/next.js | 28a14da5010ad3147a06abbabc99a119d009f733 | 015ce9820a5a0c53e455766c45b6af667d36431c | Deployment adapter: fix metadata for "/" route (#85820)
Updates cases where `/` isn't normalized fully when interpolating into
data paths and adds regression tests.
---------
Co-authored-by: vercel[bot] <35613825+vercel[bot]@users.noreply.github.com>
Co-authored-by: JJ Kasper <jj@jjsweb.site> | [
{
"path": "packages/next/src/build/adapter/build-complete.ts",
"patch": "@@ -727,8 +727,7 @@ export async function handleBuildComplete({\n \n // need to add matching .rsc output\n if (isAppPage) {\n- const rscPathname =\n- (output.pathname === '/' ? '/index' : output.path... | 2025-11-10T23:42:33 |
electron/electron | 27fe6cc97f4d40c3a74c58ed1de41c9766437192 | b1957f52e3539d13bebff745ace7ee42f06696b2 | fix: `WebContentsView` removal should compare directly (#44656)
* fix: WebContentsView removal should compare directly
* fixup view comparision
* chore: use erase_if
* Apply review suggestions
---------
Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org> | [
{
"path": "shell/browser/api/electron_api_view.cc",
"patch": "@@ -124,15 +124,6 @@ struct Converter<views::FlexAllocationOrder> {\n }\n };\n \n-template <>\n-struct Converter<electron::api::View> {\n- static bool FromV8(v8::Isolate* isolate,\n- v8::Local<v8::Value> val,\n- ... | 2024-11-15T03:11:20 |
golang/go | 6346349f5629a5767d2cd132f01092857a570bd2 | 284379cdfcbd6971f46616a3c66bf19e467fdf0d | cmd/compile: replace angle brackets with square
Caused Markdown rendering error on https://go.dev/src/cmd/compile/README in macOS (15.6.1) Safari (18.6).
Change-Id: Id71436d9a7bc7e461e522500d66df5dda7cd9f7f
GitHub-Last-Rev: 4e4447e163ac65e6c394807ec4874bc5ca26bb32
GitHub-Pull-Request: golang/go#75549
Reviewed-on: htt... | [
{
"path": "src/cmd/compile/README.md",
"patch": "@@ -289,9 +289,9 @@ dependencies, so is not suitable for distributed build systems.)\n ```\n After that, your edit/compile/test cycle can be similar to:\n ```\n- <... make edits to cmd/compile source ...>\n+ [... make edits to cmd/compile source ...]\... | 2025-09-20T21:36:14 |
facebook/react | aba370f1e45d21f19f33c04c33fc99fb3d0109e5 | 1345c37941d4e2e29034bb0fc0cfb6d01bb1d841 | Add moveBefore Experiment (#31596)
A long standing issue for React has been that if you reorder stateful
nodes, they may lose their state and reload. The thing moving loses its
state. There's no way to solve this in general where two stateful nodes
swap.
The [`moveBefore()`
proposal](https://chromestatus.com/fe... | [
{
"path": "packages/react-dom-bindings/src/client/ReactFiberConfigDOM.js",
"patch": "@@ -93,6 +93,7 @@ import {\n enableTrustedTypesIntegration,\n enableAsyncActions,\n disableLegacyMode,\n+ enableMoveBefore,\n } from 'shared/ReactFeatureFlags';\n import {\n HostComponent,\n@@ -525,6 +526,7 @@ expo... | 2024-11-22T18:24:29 |
vercel/next.js | 1f144f085db9dc3136eeb20a4dfbe74a113ac74d | 0baa1f7a9a4d7f2b94944d782885c9e67ed8ea69 | Fix Turbopack local font `font-family` declaration (#85913)
This fixes #85912, as the logic of injecting the `font-family` property
should be mirrored from the Webpack implementation. | [
{
"path": "crates/next-core/src/next_font/local/stylesheet.rs",
"patch": "@@ -62,11 +62,17 @@ pub(super) async fn build_font_face_definitions(\n };\n let query_str = qstring::QString::from(serde_json::to_string(&query)?.as_str());\n \n+ // Check if `font-family` is explicitly defined ... | 2025-11-10T16:29:42 |
nodejs/node | d58f474b2d033547d1dfb5148c5183bb783edae4 | 0f98039268ee76cf0bf9d4337b096f952136937f | deps: V8: backport 954187bb1b87
Original commit message:
[api] add Isolate::Deinitialize() and Isolate::Free()
This allows embedders to mirror the isolate disposal routine
with an initialization routine that uses Isolate::Allocate().
```
v8::Isolate* isolate = v8::Isolate::Allocate();
// Use... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,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.9',\n+ 'v8_embedder_string': '-node.10',\n \n ##### V8 defaults for Node.js #####\n ... | 2025-04-24T12:58:25 |
golang/go | 519ae514abace4551e0f99bf7da349a894b399b9 | b5a29cca486d26651e249c8395bc2df4a2d92d17 | cmd/compile: eliminate bound check for slices of the same length
If two slices start out with the same length and decrease in length by
the same amount on each round of the loop (or in the if block), then
we think their length are always equal.
For example:
if len(a) != len(b) {
return
}
for len(a) >= 4 {
a = a[4:... | [
{
"path": "src/cmd/compile/internal/ssa/prove.go",
"patch": "@@ -1240,6 +1240,173 @@ func (ft *factsTable) cleanup(f *Func) {\n \tf.Cache.freeBoolSlice(ft.recurseCheck)\n }\n \n+// addSlicesOfSameLen finds the slices that are in the same block and whose Op\n+// is OpPhi and always have the same length, then... | 2025-08-26T10:23:31 |
electron/electron | 8a67e77f03155c884f763f596c76a0681af0f70a | 41b5d7e3128ee8fcaf772e1ab5ad7fce677c8232 | build: fix python warnings "SyntaxWarning: invalid escape sequence '\w'" (#44650)
* fix: SyntaxWarning: invalid escape sequence '\w'
* chore: remove some unused imports
* fix: E711 warning 'Comparison to should be ' | [
{
"path": "build/generate_node_defines.py",
"patch": "@@ -2,7 +2,7 @@\n import re\n import sys\n \n-DEFINE_EXTRACT_REGEX = re.compile('^ *# *define (\\w*)', re.MULTILINE)\n+DEFINE_EXTRACT_REGEX = re.compile(r'^ *# *define (\\w*)', re.MULTILINE)\n \n def main(out_dir, headers):\n defines = []",
"additi... | 2024-11-14T11:27:20 |
facebook/react | a9f14cb44e58c13843cdeacc7dc352562cb3b976 | c11c9510fa14bbd87053685c19bfdfec2f427f49 | Fix Logging of Immediately Resolved Promises (#31610)
This avoid re-emitting the yellow "Event" log when we ping inside the
original event. Instead of treating events as repeated when we get
repeated updates, we treat them as repeated if we've ever logged out
this event before.
Additionally, in the case the prer... | [
{
"path": "packages/react-reconciler/src/ReactFiberWorkLoop.js",
"patch": "@@ -265,7 +265,6 @@ import {\n startProfilerTimer,\n stopProfilerTimerIfRunningAndRecordDuration,\n stopProfilerTimerIfRunningAndRecordIncompleteDuration,\n- markUpdateAsRepeat,\n trackSuspendedTime,\n startYieldTimer,\n ... | 2024-11-21T22:16:54 |
rust-lang/rust | 7baf2be12a95fc489c3fc4111baeedbf867b0f46 | 4e0b64408c4aee1066eefa6a80a56803a69467aa | Fix uitests | [
{
"path": "tests/ui-fulldeps/session-diagnostic/diagnostic-derive-doc-comment-field.stderr",
"patch": "@@ -35,12 +35,6 @@ help: the nightly-only, unstable trait `IntoDiagArg` is not implemented for `Not\n LL | struct NotIntoDiagArg;\n | ^^^^^^^^^^^^^^^^^^^^^\n = help: normalized in stderr\n-note: requ... | 2026-03-07T00:23:58 |
vercel/next.js | b6a7714057220561153c7a40152de4a22ae9e8f6 | b13493aba9b00442de2beb1b04ccf632db8ed14a | Hoist inner `'use cache'` functions to reduce function allocations (#85904)
This PR fixes a slight performance regression introduced in #85519 where
inline async function expressions were created for each unique set of
arguments passed to a `'use cache'` function.
For a function like this:
```js
export async functio... | [
{
"path": "crates/next-custom-transforms/src/transforms/server_actions.rs",
"patch": "@@ -733,8 +733,7 @@ impl<C: Comments> ServerActions<C> {\n }\n \n let cache_name: Atom = self.gen_cache_ident();\n- let cache_ident = private_ident!(Span::dummy_with_cmt(), cache_name.clone());\n- ... | 2025-11-10T12:09:59 |
nodejs/node | 57699fffb8a387a3edeafd3418a369907b6b8246 | 4d7da6cca1c1a894032b11b19fc707d605f44400 | 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": "@@ -38,7 +38,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.6',\n+ 'v8_embedder_string': '-node.7',\n \n ##### V8 defaults for Node.js #####\n "... | 2023-04-06T12:50:56 |
golang/go | b5a29cca486d26651e249c8395bc2df4a2d92d17 | bb5eb5171535b9080055fee5996bd55398202124 | cmd/distpack: add fix tool to inventory
(To be consistent with change to build.go in CL 700795.)
For #71859
Change-Id: I8caad28b7e5a2657f21b60a72899daecf0b2c324
Reviewed-on: https://go-review.googlesource.com/c/go/+/712180
Auto-Submit: Alan Donovan <adonovan@google.com>
Reviewed-by: Michael Matloob <matloob@google.c... | [
{
"path": "src/cmd/distpack/pack.go",
"patch": "@@ -172,7 +172,7 @@ func main() {\n \t\t\tdefault:\n \t\t\t\treturn false\n \t\t\t// Keep in sync with toolsIncludedInDistpack in cmd/dist/build.go.\n-\t\t\tcase \"asm\", \"cgo\", \"compile\", \"cover\", \"link\", \"preprofile\", \"vet\":\n+\t\t\tcase \"asm\",... | 2025-10-15T18:39:53 |
electron/electron | 41b5d7e3128ee8fcaf772e1ab5ad7fce677c8232 | 946ab5f1d76a30c7e2db0504a66eb4bf0ed5c323 | refactor: unfilter unresponsive events (#44629)
* feat: internal -unresponsive event
* Reland "refactor: JSify BrowserWindow unresponsive handling"
This reverts commit ef7ae78ed4ba019bffdcc8fd7319d39602b59ec4.
* fix: emit unresponsive if close not prevented
---------
Co-authored-by: Keeley Hammond <vert... | [
{
"path": "lib/browser/api/browser-window.ts",
"patch": "@@ -37,6 +37,33 @@ BrowserWindow.prototype._init = function (this: BWT) {\n app.emit('browser-window-focus', event, this);\n });\n \n+ let unresponsiveEvent: NodeJS.Timeout | null = null;\n+ const emitUnresponsiveEvent = () => {\n+ unrespon... | 2024-11-14T01:59:13 |
rust-lang/rust | c465c7571a9c83cdb98dbb6311a6774accc8c14a | 2d2c5521a2e2c592e587657dbe6277f19b56042d | Another unused feature fix | [
{
"path": "example/mini_core.rs",
"patch": "@@ -8,9 +8,9 @@\n rustc_attrs,\n transparent_unions,\n auto_traits,\n- freeze_impls,\n- thread_local\n+ freeze_impls\n )]\n+#![cfg_attr(not(all(windows, target_env = \"gnu\")), thread_local)]\n #![no_core]\n #![allow(dead_code, internal_featur... | 2026-03-06T21:47:56 |
facebook/react | c11c9510fa14bbd87053685c19bfdfec2f427f49 | 64f89510af244b1d812de7a74e161975d99ad3e1 | [crud] Fix deps comparison bug (#31599)
Fixes a bug with the experimental `useResourceEffect` hook where we
would compare the wrong deps when there happened to be another kind of
effect preceding the ResourceEffect. To do this correctly we need to add
a pointer to the ResourceEffect's identity on the update.
I also u... | [
{
"path": "packages/react-reconciler/src/ReactFiberHooks.js",
"patch": "@@ -253,6 +253,7 @@ export type ResourceEffectUpdate = {\n update: ((resource: mixed) => void) | void,\n deps: Array<mixed> | void | null,\n next: Effect,\n+ identity: ResourceEffectIdentity,\n };\n \n type StoreInstance<T> = {\n... | 2024-11-20T21:54:41 |
vercel/next.js | ad93e452a458a27110e7cf5e8272e40d4741b756 | 4b3ccc13906876eeffbba9ecbaa938bf4327a41c | Fix telemetry event loss on build failures and server shutdown (#85867)
## Problem
Telemetry events were not being captured in three scenarios:
### 1. MCP Telemetry Lost on Dev Server Shutdown
Two telemetry instances were created during dev server startup. MCP
events were recorded to one instance but shutdown flush... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -905,5 +905,7 @@\n \"904\": \"The file \\\"%s\\\" must export a function, either as a default export or as a named \\\"%s\\\" export.\",\n \"905\": \"Page \\\"%s\\\" cannot use \\\\`export const unstable_prefetch = ...\\\\` without enabling \\\\`cacheC... | 2025-11-10T02:58:39 |
golang/go | bb5eb5171535b9080055fee5996bd55398202124 | 5c9a26c7f882dba5bfe10036815bcb239dd9b7e8 | runtime/pprof: fix errors in pprof_test
I think the original depth-1 argument to allocDeep was correct.
Reverted that, and also the change to maxSkip in mprof.go, which was
also incorrect. I think before we were usually passing accidentally in
the loop over matched stacks when we really should usually have been
passin... | [
{
"path": "src/runtime/mprof.go",
"patch": "@@ -49,7 +49,7 @@ const (\n \t// desired maximum number of frames after expansion.\n \t// This should be at least as large as the largest skip value\n \t// used for profiling; otherwise stacks may be truncated inconsistently\n-\tmaxSkip = 8\n+\tmaxSkip = 6\n \n \t... | 2025-10-15T16:52:47 |
electron/electron | 0fd16dc9e2a919da2a65cf890865cf4779a57404 | a120d87570e4045cec6407c82222bfaa1d476f1b | fix: WCO buttons hidden on Linux in fullscreen (#44621)
Closes https://github.com/electron/electron/issues/44569.
Fixes an issue where the WCO buttons were hidden on Linux in fullscreen mode
but not on Windows or macOS. The Windows behavior is the expected one, so this
commit makes the Linux behavior consistent. | [
{
"path": "shell/browser/ui/views/opaque_frame_view.cc",
"patch": "@@ -255,14 +255,17 @@ void OpaqueFrameView::LayoutWindowControls() {\n buttons_not_shown.push_back(views::FrameButton::kMinimize);\n buttons_not_shown.push_back(views::FrameButton::kClose);\n \n- for (const auto& button : leading_button... | 2024-11-13T14:11:58 |
facebook/react | 7558ffe84df6bab5d701fd90de1c6313f9a1c066 | 7c254b65761c56951a67d965461b0174f224a7e9 | [crud] Fix copy paste typo (#31588)
Happens to the best of us. | [
{
"path": "packages/react-reconciler/src/ReactFiberHooks.js",
"patch": "@@ -5241,8 +5241,8 @@ if (__DEV__) {\n return mountEvent(callback);\n };\n }\n- if (InvalidNestedHooksDispatcherOnMountInDEV) {\n- (HooksDispatcherOnRerenderInDEV: Dispatcher).useResourceEffect =\n+ if (enableUseRes... | 2024-11-19T22:13:01 |
vercel/next.js | 24cfba6b72542364288c4314faa796b3f6de5b8a | 2342c9008b2f497829f82976819d18f1af159863 | Add Appwrite Sites to supported adapters (#85830)
<!-- 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
... | [
{
"path": "docs/01-app/01-getting-started/17-deploying.mdx",
"patch": "@@ -72,6 +72,7 @@ Next.js can be adapted to run on different platforms to support their infrastruc\n \n Refer to each provider's documentation for information on supported Next.js features:\n \n+- [Appwrite Sites](https://appwrite.io/doc... | 2025-11-08T17:49:38 |
electron/electron | a120d87570e4045cec6407c82222bfaa1d476f1b | d380cda14a76f5010700b113b9de0bd58bf89b24 | fix: add theme data source for devtools. (#44114)
* fix: add theme data source for devtools.
* chore: add ut.
* chore: remove recording histograms
* fix: add theme data source for devtools.
* chore: separate files
* chore: separate files
* chore: remove pragma once
* chore: fix lint issue. | [
{
"path": "chromium_src/BUILD.gn",
"patch": "@@ -182,6 +182,7 @@ static_library(\"chrome\") {\n public_deps = [\n \"//chrome/browser:dev_ui_browser_resources\",\n \"//chrome/browser/resources/accessibility:resources\",\n+ \"//chrome/browser/ui/color:color_headers\",\n \"//chrome/browser/ui/... | 2024-11-13T12:23:37 |
golang/go | 61d1ff61adb3febdbae21da7721b7cd5389efe4a | 5b29875c8eb1002c4509eb9ebd9a4d32cfd7d494 | cmd/compile: use block starting position for phi line number
Fixes #75615
Change-Id: I2c7f0ea1203e8a97749c9f780c29a66050f0159d
Reviewed-on: https://go-review.googlesource.com/c/go/+/710355
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-sco... | [
{
"path": "src/cmd/compile/internal/ssa/stmtlines_test.go",
"patch": "@@ -137,17 +137,17 @@ func TestStmtLines(t *testing.T) {\n \t\t}\n \t}\n \n-\tvar m int\n+\tvar m float64\n \tif runtime.GOARCH == \"amd64\" {\n-\t\tm = 1 // > 99% obtained on amd64, no backsliding\n+\t\tm = 0.011 // > 98.9% obtained on a... | 2025-10-08T22:33:19 |
facebook/react | eaf2d5c670c84124618977156d81946435922eb3 | c866d7506086140aaa79a015f4a7b2cf20c51905 | fix[eslint-plugin-react-hooks]: Fix error when callback argument is an identifier with an `as` expression (#31119) | [
{
"path": "packages/eslint-plugin-react-hooks/__tests__/ESLintRuleExhaustiveDeps-test.js",
"patch": "@@ -7088,18 +7088,7 @@ const tests = {\n errors: [\n {\n message:\n- \"React Hook useEffect has a missing dependency: 'myEffect'. \" +\n- 'Either include it or r... | 2024-11-19T09:36:30 |
electron/electron | 777e54792244b92565eb6bf32fed166217f46de7 | c6c430bff1e825ea39e8b9eed75693f3253a059e | fix: segfault when moving WebContentsView between BrowserWindows (#44599)
* fix: segfault when moving WebContentsView between BrowserWindows
* chore: actually enable fix
* fixup segfault when moving WebContentsView between BrowserWindows | [
{
"path": "shell/browser/api/electron_api_view.cc",
"patch": "@@ -124,6 +124,15 @@ struct Converter<views::FlexAllocationOrder> {\n }\n };\n \n+template <>\n+struct Converter<electron::api::View> {\n+ static bool FromV8(v8::Isolate* isolate,\n+ v8::Local<v8::Value> val,\n+ ... | 2024-11-11T23:44:13 |
golang/go | 51134968050270a08d6a2456d0ea72c8a99b6e96 | 36086e85f842e8ed2c03be2542a6cc211603abbc | runtime/pprof: skip flaky test TestProfilerStackDepth/heap for now
The test has been causing a lot of flakes on the builders. Skip it while
I'm debugging it.
For #74029
Change-Id: I6a6a696450c23f65bc310a2d0ab61b22dba88f00
Reviewed-on: https://go-review.googlesource.com/c/go/+/712060
TryBot-Bypass: Michael Matloob <m... | [
{
"path": "src/runtime/pprof/pprof_test.go",
"patch": "@@ -2549,6 +2549,9 @@ func TestProfilerStackDepth(t *testing.T) {\n \n \tfor _, test := range tests {\n \t\tt.Run(test.profiler, func(t *testing.T) {\n+\t\t\tif test.profiler == \"heap\" {\n+\t\t\t\ttestenv.SkipFlaky(t, 74029)\n+\t\t\t}\n \t\t\tvar buf ... | 2025-10-15T15:23:59 |
vercel/next.js | 2342c9008b2f497829f82976819d18f1af159863 | f50cd943c67c43be68522fb4fe8e7858a27c12f0 | Turbopack: Fix IO concurrency for MacOS (#85861)
### What?
The previous default of 256 parallel write operations caused a serious performance problem. For a bigger application this change improves write performance by 5.8x (12.8s -> 2.2s) on MacOS. | [
{
"path": "turbopack/crates/turbo-tasks-fs/src/lib.rs",
"patch": "@@ -193,21 +193,36 @@ where\n }\n }\n \n-fn create_semaphore() -> tokio::sync::Semaphore {\n+fn number_env_var(name: &'static str) -> Option<usize> {\n+ env::var(name)\n+ .ok()\n+ .filter(|val| !val.is_empty())\n+ ... | 2025-11-08T17:30:52 |
facebook/react | c866d7506086140aaa79a015f4a7b2cf20c51905 | ee10c74824fa9631032f031b20ad1f208ccb4aca | [playground] Fix broken tests (#31573)
Our e2e setup with monaco is kinda brittle since it relies on the dom.
It seems like longish text gets truncated so let's just simpify all
these test cases.
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack]... | [
{
"path": "compiler/apps/playground/__tests__/e2e/__snapshots__/page.spec.ts/01-user-output.txt",
"patch": "@@ -1,13 +1,13 @@\n-function TestComponent(t0) {\n- const $ = _c(2);\n- const { x } = t0;\n- let t1;\n- if ($[0] !== x) {\n- t1 = <Button>{x}</Button>;\n- $[0] = x;\n- $[1] = t1;\n- } el... | 2024-11-19T00:18:09 |
nodejs/node | 4adcd59f3f5f847373edb4960eed32235ec888b0 | 395b917ed9bab5d236466d8d6ae7f3686db57f5f | deps: define V8_PRESERVE_MOST as no-op on Windows
It's causing linker errors with node.lib in node-gyp and potentially
breaks other 3rd party tools
PR-URL: https://github.com/nodejs/node/pull/56238
Refs: https://github.com/nodejs/node/pull/55784
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: James M ... | [
{
"path": "common.gypi",
"patch": "@@ -38,7 +38,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.2',\n+ 'v8_embedder_string': '-node.3',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-12-16T10:11:22 |
vercel/next.js | d358c547c94429c05dcc7a6964684236d8b36dc4 | 9b9d6e1edd26f5f47c8f781908d68f76a493cbaf | Update deploy manifest (#85924)
The filter condition on the existing tests was incorrect so updated
those and added flakey prefetch ones from
https://github.com/vercel/next.js/actions/runs/19184159066/job/54847336252
https://github.com/vercel/next.js/actions/runs/19184159066/job/54847336291 | [
{
"path": "test/deploy-tests-manifest.json",
"patch": "@@ -1,13 +1,23 @@\n {\n \"version\": 2,\n \"suites\": {\n+ \"test/e2e/app-dir/app-client-cache/client-cache.defaults.test.ts\": {\n+ \"failed\": [\n+ \"app dir client cache semantics (default semantics) prefetch={true} should re-use t... | 2025-11-08T02:37:12 |
electron/electron | 6e3a5daf62314d4de541d64a1098b0bb3a37168c | f9a04012b91539813b937b66c8998b4b068815f7 | chore: bump chromium to 132.0.6826.0 (main) (#44584)
* chore: bump chromium in DEPS to 132.0.6821.0
* chore: bump chromium in DEPS to 132.0.6822.0
* chore: update patches
* chore: bump chromium in DEPS to 132.0.6824.0
* chore: update patches
* 5998172: Migrate remaining NOTREACHED()s in chrome/ | https:... | [
{
"path": "DEPS",
"patch": "@@ -2,7 +2,7 @@ gclient_gn_args_from = 'src'\n \n vars = {\n 'chromium_version':\n- '132.0.6820.0',\n+ '132.0.6824.0',\n 'node_version':\n 'v20.18.0',\n 'nan_version':",
"additions": 1,
"deletions": 1,
"language": "Unknown"
},
{
"path": "chromi... | 2024-11-09T00:12:42 |
nodejs/node | 395b917ed9bab5d236466d8d6ae7f3686db57f5f | 91617e7a677c4a8fdf8f9331853447e5c7d5f650 | 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": "@@ -38,7 +38,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 "... | 2024-05-28T07:10:52 |
facebook/react | ee10c74824fa9631032f031b20ad1f208ccb4aca | 2a4f2507a09a715e8182b7954b1bc3d9c107f492 | [playground] Fix incorrect ci path and change reporter (#31572)
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/31572).
* #31573
* __->__ #31572 | [
{
"path": ".github/workflows/compiler_playground.yml",
"patch": "@@ -6,7 +6,7 @@ on:\n pull_request:\n paths:\n - compiler/**\n- - .github/workflows/compiler-playground.yml\n+ - .github/workflows/compiler_playground.yml\n \n concurrency:\n group: ${{ github.workflow }}-${{ github.eve... | 2024-11-19T00:17:58 |
electron/electron | 9bf067dd5a97a8f5bf4dc0bc517afcbbad2b4695 | f0d3e4233826dd60bcf3b0224b1e90841932ed55 | fix: ftbfs when including simdjson in Node.js (#44567) | [
{
"path": "patches/node/.patches",
"patch": "@@ -42,3 +42,4 @@ build_restore_clang_as_default_compiler_on_macos.patch\n fix_-wextra-semi_errors_in_nghttp2_helper_h.patch\n fix_remove_harmony-import-assertions_from_node_cc.patch\n win_almost_fix_race_detecting_esrch_in_uv_kill.patch\n+chore_disable_deprecati... | 2024-11-05T01:28:44 |
vercel/next.js | f7d262902ac9f7581a9d6440535573b308783fbe | f5f2660cba878057be45c2ac5aadba5a4166b968 | fix isDynamicRSC condition when deployed (#85919)
Next.js relies on on the Resume Data Cache to prevent tearing between
the statically prefetchable parts of the UI by seeding the resume with
the same cache as the revalidation/build. The RDC data is stashed in the
postponed state which is attached to all of the differe... | [
{
"path": "packages/next/src/build/templates/app-page.ts",
"patch": "@@ -267,9 +267,16 @@ export async function handler(\n // If PPR is enabled, and this is a RSC request (but not a prefetch), then\n // we can use this fact to only generate the flight data for the request\n // because we can't cache t... | 2025-11-08T01:34:46 |
nodejs/node | fca4107e76f0931ecfb6f90e7ad41bfd298e1e71 | c240c03013b2b5da76d7820755c8fc0f95f0ba12 | tools: ignore V8 tests in CodeQL scans
CodeQL reports hundreds of errors in V8 tests indicating 'A parse error
occurred'. Code quality issues in V8 tests are not a concern for
Node.js. Exclude the tests from CodeQL scans.
PR-URL: https://github.com/nodejs/node/pull/58081
Reviewed-By: Michaël Zasso <targos@protonmail.... | [
{
"path": ".github/codeql-config.yml",
"patch": "@@ -2,3 +2,4 @@ name: CodeQL config\n \n paths-ignore:\n - test\n+ - deps/v8/test",
"additions": 1,
"deletions": 0,
"language": "YAML"
}
] | 2025-05-02T06:12:58 |
facebook/react | 579cc2a44c17f848bb3ad3b82121c87eb415935a | e33b13795dd25eba780c97b17cf7deee7f21a3e5 | [playground] Add support for "use no memo" (#31561)
Fixes #31331
## Summary
There is a bug in
playground(https://github.com/facebook/react/issues/31331) which doesnt
support 'use memo' or 'use no memo' directives. Its misleading while
debugging components in the playground
## How did you test this change?
Ran test c... | [
{
"path": "compiler/apps/playground/README.md",
"patch": "@@ -26,6 +26,13 @@ $ npm run dev\n $ yarn\n ```\n \n+## Testing\n+```sh\n+# Install playwright browser binaries\n+$ npx playwright install --with-deps\n+# Run tests\n+$ yarn test\n+```\n ## Deployment\n \n This project has been deployed using Vercel.... | 2024-11-18T20:38:22 |
electron/electron | f0d3e4233826dd60bcf3b0224b1e90841932ed55 | 24dc9ddf5cde0cf5c75655a57889ce20babfaf6a | test: fixup flaky session tests (#44545)
test: fixup broken tests in 32-x-y (#44389)
* test: fixup broken tests in 32-x-y
* test: fixup additional failing test
(cherry picked from commit c61bb1654e7abc4b48e09b44b40468ee89c5b2b1) | [
{
"path": "spec/api-session-spec.ts",
"patch": "@@ -12,7 +12,7 @@ import * as https from 'node:https';\n import * as path from 'node:path';\n import { setTimeout } from 'node:timers/promises';\n \n-import { defer, listen } from './lib/spec-helpers';\n+import { defer, ifit, listen } from './lib/spec-helpers'... | 2024-11-04T22:26:19 |
vercel/next.js | f5f2660cba878057be45c2ac5aadba5a4166b968 | 6bed4dc088f0c4a6acaf4d748907247e36ae198e | fix: support root span attributes with a custom server (#85521)
<!-- 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 ... | [
{
"path": "packages/next/src/server/lib/trace/tracer.ts",
"patch": "@@ -287,14 +287,18 @@ class NextTracerImpl implements NextTracer {\n let spanContext = this.getSpanContext(\n options?.parentSpan ?? this.getActiveScopeSpan()\n )\n- let isRootSpan = false\n \n if (!spanContext) {\n ... | 2025-11-07T23:43:26 |
golang/go | ee5af46172e64eceddb56018de8ea850fe0a6cae | 11d3d2f77d8293fe14638e74cbf52d1241b60e78 | encoding/json: avoid misleading errors under goexperiment.jsonv2
The jsontext package represents the location of JSON errors
using a JSON Pointer (RFC 6901). This uses the JSON type system.
Unfortunately the v1 json.UnmarshalTypeError assumes a Go struct-based
mechanism for reporting the location of errors
(and has h... | [
{
"path": "src/encoding/json/v2_decode.go",
"patch": "@@ -14,6 +14,7 @@ import (\n \t\"fmt\"\n \t\"reflect\"\n \t\"strconv\"\n+\t\"strings\"\n \n \t\"encoding/json/internal/jsonwire\"\n \t\"encoding/json/jsontext\"\n@@ -119,7 +120,20 @@ type UnmarshalTypeError struct {\n func (e *UnmarshalTypeError) Error()... | 2025-10-11T18:57:46 |
nodejs/node | 430027c979894fe3db3c2cdeb01977866b96dc09 | fc054bbbb1005c924799c80b07eb0e7ed0278b99 | doc: fix formatting of `import.meta.filename` section
And `import.meta.dirname`.
PR-URL: https://github.com/nodejs/node/pull/58079
Reviewed-By: Jacob Smith <jacob@frende.me>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Chemi Atlow <chemi@atlo... | [
{
"path": "doc/api/esm.md",
"patch": "@@ -356,8 +356,9 @@ changes:\n description: This property is no longer experimental.\n -->\n \n-* {string} The directory name of the current module. This is the same as the\n- [`path.dirname()`][] of the [`import.meta.filename`][].\n+* {string} The directory name o... | 2025-05-01T17:22:50 |
facebook/react | e33b13795dd25eba780c97b17cf7deee7f21a3e5 | 4beb1fd8bacacd3f4faeb180bca00ea0edcf27e4 | [compiler] repro for type inference + control flow bug (#31570)
Repro for bug in our type inference system.
We currently propagate inferred types through control flow / potential
type guards. Note that this is inconsistent with both
[Flow](https://flow.org/try/#1N4Igxg9gdgZglgcxALlAIwIZoKYBsD6uEEAztvhgE6UYCe+JADp... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/bug-type-inference-control-flow.expect.md",
"patch": "@@ -0,0 +1,114 @@\n+\n+## Input\n+\n+```javascript\n+import {arrayPush, CONST_NUMBER0, mutate} from 'shared-runtime';\n+\n+/**\n+ * Repro for bug in our type inferen... | 2024-11-18T16:54:11 |
vercel/next.js | 1752d79c59c7f36a3668323bdf6b7eb2ac2ff5b0 | f09304af7c64c9bebd517151b2de97ec7252bcfd | fix: skip collecting metadata for app-error in webpack (#85892) | [
{
"path": "packages/next/src/build/webpack/loaders/next-app-loader/index.ts",
"patch": "@@ -38,6 +38,7 @@ import { PARALLEL_ROUTE_DEFAULT_PATH } from '../../../../client/components/built\n import type { Compilation } from 'webpack'\n import { createAppRouteCode } from './create-app-route-code'\n import { Mi... | 2025-11-07T21:52:06 |
electron/electron | 24dc9ddf5cde0cf5c75655a57889ce20babfaf6a | 1835c0ab6c7773e48715874457a08fb897dfebf5 | fix: remove use of banned std::to_string() (#44514)
Use base::NumberToString() instead
Xref: https://chromium.googlesource.com/chromium/src/+/main/styleguide/c++/c++-features.md#std_sto_i_l_ul_ll_ull_f_d_ld_to_string_banned | [
{
"path": "shell/browser/notifications/win/windows_toast_notification.cc",
"patch": "@@ -664,8 +664,8 @@ IFACEMETHODIMP ToastEventHandler::Invoke(\n winui::Notifications::IToastFailedEventArgs* e) {\n HRESULT error;\n e->get_ErrorCode(&error);\n- std::string errorMessage =\n- \"Notification fa... | 2024-11-04T21:42:42 |
golang/go | 5a9ef44bc05b937cff2394b5880ecca616cb878e | 3765758b96746e202bb52312d4b026085a0f25a1 | cmd/compile/internal/devirtualize: fix OCONVNOP assertion
Fixes #75863
Change-Id: I1e5a0f3880dcd5f820a5b6f4540c49b16a6a6964
Reviewed-on: https://go-review.googlesource.com/c/go/+/711141
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Lasse Folger <lassefolger@google.com>
Auto-Submit: Keith Randall <khr@golan... | [
{
"path": "src/cmd/compile/internal/devirtualize/devirtualize.go",
"patch": "@@ -223,7 +223,7 @@ func concreteType1(s *State, n ir.Node, seen map[*ir.Name]struct{}) (outT *types\n \t\tswitch n1 := n.(type) {\n \t\tcase *ir.ConvExpr:\n \t\t\tif n1.Op() == ir.OCONVNOP {\n-\t\t\t\tif !n1.Type().IsInterface() |... | 2025-10-12T09:15:11 |
rust-lang/rust | 65e7758f07a2d5b14c4be67e4bc8dd9281f76a2d | f5cc1871a6dd69744b0268dd36715b587e469a26 | Fix syntax/fuzz build error | [
{
"path": "src/tools/rust-analyzer/crates/syntax/fuzz/Cargo.toml",
"patch": "@@ -23,6 +23,3 @@ path = \"fuzz_targets/parser.rs\"\n [[bin]]\n name = \"reparse\"\n path = \"fuzz_targets/reparse.rs\"\n-\n-[lints]\n-workspace = true",
"additions": 0,
"deletions": 3,
"language": "Unknown"
}
] | 2026-03-06T18:35:35 |
nodejs/node | fc054bbbb1005c924799c80b07eb0e7ed0278b99 | 102d8cff66550777bec7b0a750ae2203007f3749 | doc: fix env variable name in `util.styleText`
PR-URL: https://github.com/nodejs/node/pull/58072
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> | [
{
"path": "doc/api/util.md",
"patch": "@@ -2418,7 +2418,7 @@ changes:\n - v20.18.0\n pr-url: https://github.com/nodejs/node/pull/54389\n description: Respect isTTY and environment variables\n- such as NO_COLORS, NODE_DISABLE_COLORS, and FORCE_COLOR.\n+ such as NO_COLOR, NODE_DISABLE_CO... | 2025-05-01T10:00:43 |
facebook/react | 92c0f5f85fed42024b17bf6595291f9f5d6e8734 | 053b3cb0503e26da6d1dfa02b74fa52e30936bd6 | Track separate SuspendedOnAction flag by rethrowing a separate SuspenseActionException sentinel (#31554)
This lets us track separately if something was suspended on an Action
using useActionState rather than suspended on Data.
This approach feels quite bloated and it seems like we'd eventually
might want to read ... | [
{
"path": "packages/react-debug-tools/src/ReactDebugHooks.js",
"patch": "@@ -214,7 +214,7 @@ const SuspenseException: mixed = new Error(\n '`try/catch` block. Capturing without rethrowing will lead to ' +\n 'unexpected behavior.\\n\\n' +\n 'To handle async errors, wrap your component in an error... | 2024-11-15T22:52:24 |
vercel/next.js | db5528317e24e0316e0497716976a715a325ca09 | 326c6722bdeeec42ba81bf5c8392863ea69d862b | Turbopack: remove the streaming hack for improved stability (#85858)
### What?
Remove the hack we use for streaming in turbo-tasks.
We don't use the stream capability and the streaming hack causes some problems.
fixes `Item already exists` error
Closes https://github.com/vercel/next.js/issues/85833 | [
{
"path": "crates/next-core/src/next_font/google/mod.rs",
"patch": "@@ -8,7 +8,6 @@ use rustc_hash::FxHashMap;\n use serde::{Deserialize, Serialize};\n use turbo_rcstr::{RcStr, rcstr};\n use turbo_tasks::{Completion, FxIndexMap, ResolvedVc, Vc};\n-use turbo_tasks_bytes::stream::SingleValue;\n use turbo_task... | 2025-11-07T09:07:07 |
rust-lang/rust | 4e0b64408c4aee1066eefa6a80a56803a69467aa | e58ddb5ae575f13d5624cb6fb0a8324a806bc1c4 | Fix newly detected subdiagnostics using variables from parent | [
{
"path": "compiler/rustc_const_eval/src/check_consts/ops.rs",
"patch": "@@ -265,6 +265,7 @@ fn build_error_for_const_call<'tcx>(\n }\n }\n CallKind::FnCall { fn_trait_id, self_ty } => {\n+ let kind = ccx.const_kind();\n let note = match self_ty.kind() {\n ... | 2026-03-06T17:20:30 |
golang/go | f6b9d56affb75103507f2b6ed4ffa98ca899b39d | 60f6d2f6230c5085ad25a9e3ebdaaae2aefdfe36 | crypto/internal/fips140/entropy: fix benign race
Fixes #75690
Fixes #75842
Change-Id: I6a6a696420f51f28f48535c34cf347e2cbd4add5
Reviewed-on: https://go-review.googlesource.com/c/go/+/710058
Auto-Submit: Filippo Valsorda <filippo@golang.org>
Reviewed-by: David Chase <drchase@google.com>
Reviewed-by: Roland Shoemaker <... | [
{
"path": "src/crypto/internal/fips140/entropy/entropy.go",
"patch": "@@ -123,7 +123,9 @@ func (s *source) Sample() uint8 {\n \t// Perform a few memory accesses in an unpredictable pattern to expose the\n \t// next measurement to as much system noise as possible.\n \tmemory, lcgState := s.memory, s.lcgState... | 2025-10-08T11:30:34 |
nodejs/node | a7cbb904745591c9a9d047a364c2c188e5470047 | 50cfc6ca63439ba09d058d0dca50a66389464588 | lib: avoid StackOverflow on `serializeError`
`serializeError` should avoid StackOverflow and the test should not
rely on `--stack-size`.
PR-URL: https://github.com/nodejs/node/pull/58075
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Joyee Cheu... | [
{
"path": "lib/internal/error_serdes.js",
"patch": "@@ -36,6 +36,7 @@ const kSerializedObject = 1;\n const kInspectedError = 2;\n const kInspectedSymbol = 3;\n const kCustomInspectedObject = 4;\n+const kCircularReference = 5;\n \n const kSymbolStringLength = 'Symbol('.length;\n \n@@ -44,12 +45,12 @@ const e... | 2025-04-29T21:12:29 |
facebook/react | 0f3c62b4667f62bf36485079ab242dba8e54917c | 858633f900768e63870a0a8d450ad7b5d6df0256 | [compiler][be] Patch test fixtures for evaluator (#31203)
Add more `FIXTURE_ENTRYPOINT`s
'
---
[//]: # (BEGIN SAPLING FOOTER)
Stack created with [Sapling](https://sapling-scm.com). Best reviewed
with [ReviewStack](https://reviewstack.dev/facebook/react/pull/31203).
* #31202
* __->__ #31203
* #31201
* #31200... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/capturing-func-alias-captured-mutate.expect.md",
"patch": "@@ -2,39 +2,55 @@\n ## Input\n \n ```javascript\n-function component(foo, bar) {\n+import {mutate} from 'shared-runtime';\n+\n+function Component({foo, bar}) {\... | 2024-11-15T18:06:29 |
vercel/next.js | 6434035f8de1d04b861cda660730d510d6e83d86 | bfe26808bed729c494c8fa180ff0022b4dcf35f9 | sort dependencies for smaller diffs (#82291)
Fixes #82290
Co-authored-by: Steven <steven@ceriously.com> | [
{
"path": "packages/create-next-app/templates/index.ts",
"patch": "@@ -15,6 +15,15 @@ import { Bundler, GetTemplateFileArgs, InstallTemplateArgs } from \"./types\";\n // Do not rename or format. sync-react script relies on this line.\n // prettier-ignore\n const nextjsReactPeerVersion = \"19.2.0\";\n+functi... | 2025-11-06T14:44:34 |
rust-lang/rust | e58ddb5ae575f13d5624cb6fb0a8324a806bc1c4 | 10eb844bac7551efc821a7f55b2e1715098ed26b | Fix `variable_references` logic to catch all variable references | [
{
"path": "compiler/rustc_macros/src/diagnostics/message.rs",
"patch": "@@ -64,26 +64,46 @@ fn verify_variables_used(msg_span: Span, message_str: &str, variant: Option<&Var\n \n fn variable_references<'a>(msg: &fluent_syntax::ast::Message<&'a str>) -> Vec<&'a str> {\n let mut refs = vec![];\n+\n if ... | 2026-03-06T17:19:58 |
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.