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 |
|---|---|---|---|---|---|
vercel/next.js | 3ea8310f20076a695e9634c1c7f79be9bd639b3e | d5edf22ede04308ca8a5a8cb23659ca67f7bd9dc | fix(metadata): make formatDetection respect true/false properly (#83924)
### What?
Fixes the `FormatDetectionMeta` function so that it correctly respects
true vs false values.
### Why?
Previously, both true and false values output key=no. According to
Apple’s spec, Safari defaults to enabling detection when the tag... | [
{
"path": "packages/next/src/lib/metadata/generate/basic.tsx",
"patch": "@@ -184,12 +184,12 @@ export function FormatDetectionMeta({\n if (!formatDetection) return null\n let content = ''\n for (const key of formatDetectionKeys) {\n- if (key in formatDetection) {\n+ if (formatDetection[key] === ... | 2025-09-26T21:25:15 |
facebook/react | 38e3b23483bf7a612391cd617a8926aa1f3cf52e | afb2c39ec36d40fff362be465e2a310661469630 | Tweak error message for "Should have a queue" (#29626) | [
{
"path": "packages/react-reconciler/src/ReactFiberHooks.js",
"patch": "@@ -1260,7 +1260,8 @@ function updateReducerImpl<S, A>(\n \n if (queue === null) {\n throw new Error(\n- 'Should have a queue. This is likely a bug in React. Please file an issue.',\n+ 'Should have a queue. You are likel... | 2024-05-29T15:41:10 |
nodejs/node | b3c1b63a5d1aa41a7791e09214b504217213f637 | d0361f0bba20407f2da3641cab8faeddd30eb9b7 | 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": "@@ -37,7 +37,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.4',\n+ 'v8_embedder_string': '-node.5',\n \n ##### V8 defaults for Node.js #####\n "... | 2024-05-28T07:10:52 |
electron/electron | ff4494c18fff3fbe01a52373f97172636308cf7d | 839ba300092d974732995d174a6d2ef504c62a05 | build: allow kicking build with `workflow_dispatch` (#42420)
* build: allow kicking build with workflow_dispatch
* build: ensure macOS build works
* fix: no upload in build
* build: add target_cpu to MAS config
---------
Co-authored-by: Keeley Hammond <khammond@slack-corp.com> | [
{
"path": ".github/workflows/config/testing/x64/evm.mas.json",
"patch": "@@ -9,6 +9,7 @@\n \"args\": [\n \"import(\\\"//electron/build/args/testing.gn\\\")\",\n \"use_remoteexec = true\",\n+ \"target_cpu = \\\"x64\\\"\",\n \"is_mas_build = true\"\n ],\n \"out\": \"Default\... | 2024-06-10T16:55:16 |
vercel/next.js | 81bd704a29f5370924d099651ac303289543f9b2 | 2a11fc33e7c4e25f4bf02b419febb61caba79691 | fix: make sure caller exists in babel preset (#84154)
### What?
https://github.com/vercel/next.js/pull/82676 introduced a small bug when
using the Babel preset standalone without Next.js itself. It throws the
following error:
```
Cannot read properties of undefined (reading 'transformMode') (While processing: "/home... | [
{
"path": "packages/next/src/build/babel/preset.ts",
"patch": "@@ -145,7 +145,7 @@ export default (\n const isStandalone = api.caller(\n // NOTE: `transformMode` may be undefined if the user configured `babel-loader` themselves. In\n // this case, we should assume we're in 'default' mode.\n- (c... | 2025-09-26T20:23:28 |
facebook/react | afb2c39ec36d40fff362be465e2a310661469630 | c272789ce54ab2db3fb1af53c54631a7246b31bc | compiler: fixtures for fast-refresh mode (w todos)
ghstack-source-id: 65dd14fe9b37328bd60fe791b23dde54da10b285
Pull Request resolved: https://github.com/facebook/react/pull/29175 | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/ReactiveScopes/CodegenReactiveFunction.ts",
"patch": "@@ -81,18 +81,21 @@ export function codegenFunction(\n );\n \n /**\n- * Hot-module reloading reuses component instances at runtime even as the source of the component changes.\n+ * Fast... | 2024-05-20T17:20:04 |
nodejs/node | 4f8fd566cc0af766f63f7bfbdd361258b22c5790 | 1142f78f1df5aa2f787a4f6d0dcf82daffd22bbf | 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": "@@ -37,7 +37,7 @@\n \n # Reset this number to 0 on major V8 upgrades.\n # Increment by one for each non-official patch applied to deps/v8.\n- 'v8_embedder_string': '-node.1',\n+ 'v8_embedder_string': '-node.2',\n \n ##### V8 defaults for Node.js #####\n "... | 2023-04-06T12:50:56 |
electron/electron | 92db4f0b8a196601ae888b983f91dea42044418d | c6845b0afc480040164d7cd2dcb016a5d05b7e45 | build: fix `generate_gn_filenames_json.py` (#42389)
build: fix generate_gn_filenames_json.py | [
{
"path": "patches/node/build_add_gn_build_files.patch",
"patch": "@@ -1256,10 +1256,10 @@ index 0000000000000000000000000000000000000000..af9cbada10203b387fb9732b346583b1\n +}\n diff --git a/filenames.json b/filenames.json\n new file mode 100644\n-index 0000000000000000000000000000000000000000..1a9cba024f1... | 2024-06-10T15:34:36 |
vercel/next.js | 3b94ab2dd9f9241ad3a7a680719e1a713d9e7126 | 11f721eeda6e6c4133faa8e484491d03f7a06a62 | docs:Small improvement on the contribution guide for clarity (#84200)
### What?
Improves the contribution guide (`01-contribution-guide.mdx`) by fixing
a typo and clarifying wording for JavaScript files with JSX code.
### Why?
This is my first time ontributing to open source, i've taken my time to
read the contributi... | [
{
"path": "docs/04-community/01-contribution-guide.mdx",
"patch": "@@ -230,7 +230,7 @@ When writing JavaScript code blocks, we use the following language and extension\n \n > **Good to know**:\n >\n-> - Make sure to use **`js`** extension with **JSX** code at JavaScript files.\n+> - Make sure to use **`.js`... | 2025-09-26T15:47:47 |
facebook/react | 49ed6f0740f9d47777faafd92046f7f044cf3e5e | e2e12f33517e528bc955fe3f0098d6765f4648af | compiler: Allow global mutation in jsx props
Fixes https://x.com/raibima/status/1794395807216738792
The issue is that if you pass a global-modifying function as prop to JSX, we currently report that it's invalid to modify a global during rendering. The problem is that we don't really know when/if the child component ... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Inference/InferReferenceEffects.ts",
"patch": "@@ -1103,13 +1103,56 @@ function inferBlock(\n break;\n }\n case \"JsxExpression\": {\n- valueKind = {\n+ if (instrValue.tag.kind === \"Identifier\") {\n+ st... | 2024-05-25T21:03:52 |
golang/go | ca66f907dd44d57c93b2dc5ecafcb8addf2b23c3 | 4b1800e47632d52006e3080580e4e60792389759 | cmd/compile: use generated loops instead of DUFFCOPY on amd64
This reverts commit 4e182db5fc876564a4f87a0602c58ea0ddc6e37c (CL 695196),
which is itself a revert of
ec9e1176c3209cf92e73e3deb2d8073fab5ea4d6 (CL 678620).
So this CL is exactly the same as CL 678620, but with a regalloc fix
(CL 696035) submitted first.
C... | [
{
"path": "src/cmd/compile/internal/amd64/ssa.go",
"patch": "@@ -142,45 +142,6 @@ func memIdx(a *obj.Addr, v *ssa.Value) {\n \ta.Index = i\n }\n \n-// DUFFZERO consists of repeated blocks of 4 MOVUPSs + LEAQ,\n-// See runtime/mkduff.go.\n-const (\n-\tdzBlocks = 16 // number of MOV/ADD blocks\n-\tdzBlockL... | 2025-08-13T16:41:17 |
electron/electron | 035b10daf9ef81b8ecab359d083ccb8c95668a5d | 91205540c41bdd67d019bbb067d0e755bfca88ce | fix: multiple selection in `//shell_dialogs` Portal/KDE implementations (#42308)
* fix: multiple selection in //shell_dialogs portal implementation
* fix: allow multiple directory selection in KDE implementation | [
{
"path": "patches/chromium/feat_add_support_for_missing_dialog_features_to_shell_dialogs.patch",
"patch": "@@ -186,24 +186,10 @@ index 129979e844581e68fdecde87bd52f3344f88022a..5e02a36e5e9eb4db84700dd9a0b8765d\n }\n \n diff --git a/ui/gtk/select_file_dialog_linux_gtk.h b/ui/gtk/select_file_dialog_linux_g... | 2024-06-10T14:43:16 |
rust-lang/rust | cb3046e5f2f0736366c0fea4977a8df579d96311 | 1dc3d8c568ec039bcbc1537cd7d647933524c006 | Add missing runtime test for _mm_comige_ss and fix _mm_comigt_ss test | [
{
"path": "library/stdarch/crates/core_arch/src/x86/sse.rs",
"patch": "@@ -2816,14 +2816,32 @@ mod tests {\n let aa = &[3.0f32, 12.0, 23.0, NAN];\n let bb = &[3.0f32, 47.5, 1.5, NAN];\n \n- let ee = &[1i32, 0, 1, 0];\n+ let ee = &[0i32, 0, 1, 0];\n \n for i in 0..4 {\n ... | 2026-02-25T23:56:42 |
facebook/react | 3b29ed16386c1afb2e76c3db0d576184154ec141 | b44263addb4c4f74cb6520c5f652b35bda24a015 | Fix "findNodeHandle inside its render()" False Positive Warning (#29627)
This was missed in https://github.com/facebook/react/pull/29038 when
unifying the "owner" abstractions, causing `findNodeHandle` to warn even
outside of `render()` invocations. | [
{
"path": "packages/react-native-renderer/src/ReactNativePublicCompat.js",
"patch": "@@ -90,7 +90,7 @@ export function findHostInstance_DEPRECATED<TElementType: ElementType>(\n export function findNodeHandle(componentOrHandle: any): ?number {\n if (__DEV__) {\n const owner = currentOwner;\n- if (ow... | 2024-05-29T03:36:41 |
vercel/next.js | 697747580fedfa27df7e8eafdeda6fd61bd46e7a | bced1f7b207b6bfd50c70764a204cc9d70a3ffe3 | Show invalid default export errors during prerendering (#84242)
The specific error messages for invalid default exports in pages,
layouts, and error files were only shown in development mode. This
change ensures that these errors are also displayed during prerendering,
which replaces the unhelpful error messages we we... | [
{
"path": "packages/next/src/server/app-render/create-component-tree.tsx",
"patch": "@@ -371,7 +371,7 @@ async function createComponentTreeInternal(\n */\n let MaybeComponent = LayoutOrPage\n \n- if (process.env.NODE_ENV === 'development') {\n+ if (process.env.NODE_ENV === 'development' || isStaticGe... | 2025-09-26T09:06:47 |
golang/go | 4b1800e47632d52006e3080580e4e60792389759 | af8870708bbaf15956a27cbab15582b4c666855e | encoding/json/v2: cleanup error constructors
There is no need to explicitly pass in the options
since this contained within the Encoder or Decoder struct
ever since https://github.com/go-json-experiment/json/pull/163.
Thus, remove it as an argument and fetch it from the coder.
This only modifies code that is compile... | [
{
"path": "src/encoding/json/v2/arshal_default.go",
"patch": "@@ -128,7 +128,7 @@ func makeBoolArshaler(t reflect.Type) *arshaler {\n \tfncs.marshal = func(enc *jsontext.Encoder, va addressableValue, mo *jsonopts.Struct) error {\n \t\txe := export.Encoder(enc)\n \t\tif mo.Format != \"\" && mo.FormatDepth ==... | 2025-07-24T22:07:39 |
electron/electron | 91205540c41bdd67d019bbb067d0e755bfca88ce | c3b4cd987c618ee72d32f996a8f3ae9e3e80c2bf | fix: restore `wasOpenedAtLogin` functionality (#42411)
fix: restore opened at login functionality | [
{
"path": "docs/api/app.md",
"patch": "@@ -1265,7 +1265,7 @@ Returns `Object`:\n \n * `openAtLogin` boolean - `true` if the app is set to open at login.\n * `openAsHidden` boolean _macOS_ _Deprecated_ - `true` if the app is set to open as hidden at login. This does not work on macOS 13 and up.\n-* `wasOpene... | 2024-06-10T14:39:56 |
facebook/react | 9d530e94c40a9adf3fbf24390ee09f10dc5dcc2d | c998bb1ed4b3285398c9c7797135d3f060243c6a | [compiler:babel] Don't read config files when not running as part of
user's pipeline
When the user app has a babel.config file that is missing the compiler,
strange things happen as babel does some strange merging of options from
the user's config and in various callsites like in our eslint rule and
healthcheck script... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/Babel/RunReactCompilerBabelPlugin.ts",
"patch": "@@ -36,6 +36,8 @@ export function runBabelPluginReactCompiler(\n \"babel-plugin-fbt-runtime\",\n ],\n sourceType: \"module\",\n+ configFile: false,\n+ babelrc: false,\n });\n ... | 2024-05-29T02:41:01 |
vercel/next.js | 99507d5153d5fce51d889c902160f68e07316c30 | b1f05782a01efde5a7a6f74738784bf67978661f | [test] Make `Undefined default export` an e2e test suite (#84240)
This also adds a build-time test, documenting the unhelpful error messages we currently show during prerendering, when an app router file does not have a default export. | [
{
"path": "test/development/acceptance-app/fixtures/undefined-default-export/app/(group)/specific-path/1/page.js",
"patch": "@@ -1 +0,0 @@\n-export const a = 123",
"additions": 0,
"deletions": 1,
"language": "JavaScript"
},
{
"path": "test/development/acceptance-app/fixtures/undefined-de... | 2025-09-26T07:47:01 |
golang/go | af8870708bbaf15956a27cbab15582b4c666855e | 0a75e5a07b858cbe6216c99fa12d582d063499d9 | encoding/json/v2: fix incorrect marshaling of NaN in float64 any
There is a fast-path optimization for marshaling an any type
that should be semantically identical to when the optimization
is not active (i.e., optimizeCommon is false).
Unfortunately, the optimization accidentally allows NaN,
which this change fixes.
... | [
{
"path": "src/encoding/json/v2/arshal_any.go",
"patch": "@@ -8,6 +8,7 @@ package json\n \n import (\n \t\"cmp\"\n+\t\"math\"\n \t\"reflect\"\n \t\"strconv\"\n \n@@ -35,20 +36,23 @@ func marshalValueAny(enc *jsontext.Encoder, val any, mo *jsonopts.Struct) error\n \tcase string:\n \t\treturn enc.WriteToken(j... | 2025-08-12T08:56:43 |
facebook/react | c998bb1ed4b3285398c9c7797135d3f060243c6a | 61aa159086b1a4f1dda987fc4b40e6396d05c5cd | [compiler] Run prettier, fix snap
After this is merged, I'll add it to .git-blame-ignore-revs. I can't do
it now as the hash will change after ghstack lands this stack.
ghstack-source-id: 054ca869b7839c589524c47d1962262f6b50f8ed
Pull Request resolved: https://github.com/facebook/react/pull/29214 | [
{
"path": "compiler/apps/playground/colors.js",
"patch": "@@ -5,7 +5,6 @@\n * LICENSE file in the root directory of this source tree.\n */\n \n-\n /**\n * Sync from <https://github.com/reactjs/reactjs.org/blob/main/beta/colors.js>.\n */",
"additions": 0,
"deletions": 1,
"language": "JavaScri... | 2024-05-29T02:41:00 |
vercel/next.js | a61dab2507f559434bee557fd2224f1a939eac0e | a9c4a8c8fb11a235d08328225532a0b8bf9c93de | Move `config.turbopack.moduleIds` to `config.experimental.turbopackModuleIds` (#84230)
https://github.com/vercel/next.js/pull/77850 moved `experimental.turbo`
option to `turbopack`, but `moduleIds` is intended for debugging, in
line with `turbopackSourceMaps` and `turbopackMinify`, so move to
`experimental.turbopackMo... | [
{
"path": "crates/next-core/src/next_config.rs",
"patch": "@@ -560,7 +560,6 @@ pub struct TurbopackConfig {\n pub rules: Option<FxIndexMap<RcStr, RuleConfigCollection>>,\n pub resolve_alias: Option<FxIndexMap<RcStr, JsonValue>>,\n pub resolve_extensions: Option<Vec<RcStr>>,\n- pub module_ids:... | 2025-09-25T23:53:34 |
nodejs/node | 51c8fbb68665b75ccbb588e220cdddf09b2892c1 | 7f18407d0fd243bfe7115dafae02b7a034c64130 | inspector: fix GN build
PR-URL: https://github.com/nodejs/node/pull/56798
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "src/inspector/unofficial.gni",
"patch": "@@ -13,7 +13,7 @@ template(\"inspector_gn_build\") {\n }\n \n node_gen_dir = get_label_info(\"../..\", \"target_gen_dir\")\n- protocol_tool_path = \"../../tools/inspector_protocol\"\n+ protocol_tool_path = \"../../deps/inspector_protocol\"\n \n gyp... | 2025-01-30T06:44:39 |
golang/go | 0a75e5a07b858cbe6216c99fa12d582d063499d9 | de9b6f98759f718fb48ecef22c2275ac98f1871d | encoding/json/v2: fix wrong type with cyclic marshal error in map[string]any
The type reported in a ErrCycle is the wrong type due to a typo.
This discrepency was detected by setting optimizeCommon to false
and running the tests.
This only modifies code that is compiled in under goexperiment.jsonv2.
Change-Id: I6826... | [
{
"path": "src/encoding/json/v2/arshal_any.go",
"patch": "@@ -104,7 +104,7 @@ func marshalObjectAny(enc *jsontext.Encoder, obj map[string]any, mo *jsonopts.St\n \tif xe.Tokens.Depth() > startDetectingCyclesAfter {\n \t\tv := reflect.ValueOf(obj)\n \t\tif err := visitPointer(&xe.SeenPointers, v); err != nil ... | 2025-08-12T08:45:44 |
rust-lang/rust | d173db9edb9626dcb31c09dabc014c1845fca019 | d8ffd9181f8265ca01e292b4060b49ea9d4265d5 | Don't panic on invalid notifications | [
{
"path": "src/tools/rust-analyzer/crates/rust-analyzer/src/handlers/dispatch.rs",
"patch": "@@ -414,7 +414,8 @@ impl NotificationDispatcher<'_> {\n let params = match not.extract::<N::Params>(N::METHOD) {\n Ok(it) => it,\n Err(ExtractError::JsonError { method, error }) => {\... | 2026-02-25T19:06:33 |
facebook/react | 61aa159086b1a4f1dda987fc4b40e6396d05c5cd | a9a01068084550c0c71d8da222eb67eb7024c5b3 | [compiler] Fix up prettier
Our prettier setup is all messed up after the merge, so this PR should
fix things
ghstack-source-id: f825460ea6637138db6ba08fd6136fac3f7aa001
Pull Request resolved: https://github.com/facebook/react/pull/29213 | [
{
"path": ".github/workflows/compiler-typescript.yml",
"patch": "@@ -24,6 +24,25 @@ jobs:\n run: echo \"matrix=$(find packages -mindepth 1 -maxdepth 1 -type d | sed 's!packages/!!g' | tr '\\n' ',' | sed s/.$// | jq -Rsc '. / \",\" - [\"\"]')\" >> $GITHUB_OUTPUT\n \n # Hardcoded to improve parallel... | 2024-05-29T02:41:00 |
electron/electron | c3b4cd987c618ee72d32f996a8f3ae9e3e80c2bf | 84e15e2d045635b0113fcedc0ca61ee2d72770f4 | chore: bump chromium to 127.0.6521.0 (main) (#42118)
* chore: bump chromium in DEPS to 126.0.6470.0
* 5492605: Migrate TODOs referencing old crbug IDs to the new issue tracker IDs | https://chromium-review.googlesource.com/c/chromium/src/+/5492605
* 5513277: Move subresource-filter-ruleset to GCS | https://chrom... | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -123,7 +123,7 @@ env-unittests: &env-unittests\n TESTS_CONFIG: src/electron/spec/configs/unittests.yml\n \n env-arm: &env-arm\n- GN_EXTRA_ARGS: 'target_cpu = \"arm\"'\n+ GN_EXTRA_ARGS: 'target_cpu = \"arm\" build_tflite_with_xnnpack = false'\n MKSNAP... | 2024-06-07T21:18:35 |
vercel/next.js | d6125822dd542bdb54c85d70a5dd9d87ee63139b | 46fa4ded993110841b4ad373d1d38a9553602d5c | [test] Overhaul `Undefined default export` test suite (#84235)
The test suite is now using fixture files instead of sandboxes, same principle as in #83398. I also removed two test cases that didn't test anything novel, compared to the other tests. They were originally moved from another test suite into this one in #66... | [
{
"path": "test/development/acceptance-app/fixtures/undefined-default-export/app/(group)/specific-path/1/page.js",
"patch": "@@ -0,0 +1 @@\n+export const a = 123",
"additions": 1,
"deletions": 0,
"language": "JavaScript"
},
{
"path": "test/development/acceptance-app/fixtures/undefined-de... | 2025-09-25T21:13:36 |
nodejs/node | 7f18407d0fd243bfe7115dafae02b7a034c64130 | 5557ce4aec8749bc079e092dea2696fe311535e3 | doc: fix typo in cjs example of `util.styleText`
`errorMessage` needs to be printed instead of
`successMessage` in console.error(). ESM example is
only fixed in previous PR.
Refs: https://github.com/nodejs/node/pull/56720
PR-URL: https://github.com/nodejs/node/pull/56769
Reviewed-By: Ulises Gascón <ulisesgascongonzal... | [
{
"path": "doc/api/util.md",
"patch": "@@ -1988,7 +1988,7 @@ const errorMessage = styleText(\n // Validate if process.stderr has TTY\n { stream: stderr },\n );\n-console.error(successMessage);\n+console.error(errorMessage);\n ```\n \n `util.inspect.colors` also provides text formats such as `italic`, an... | 2025-01-30T02:02:58 |
golang/go | 674c5f0edd82b5d1dd5cb44eb4b85830245c151e | 9bbea0f21a4539ea365d4804131b17d3b963c4f7 | os/exec: fix incorrect expansion of ".." in LookPath on plan9
The correction in CL 685755 is incomplete for plan9, where path
search is performed even on file strings containing "/". By
applying filepath.Clean to the argument of validateLookPath,
we can check for bogus file strings containing ".." where the
later call... | [
{
"path": "src/os/exec/lp_plan9.go",
"patch": "@@ -36,7 +36,7 @@ func findExecutable(file string) error {\n // As of Go 1.19, LookPath will instead return that path along with an error satisfying\n // [errors.Is](err, [ErrDot]). See the package documentation for more details.\n func LookPath(file string) (s... | 2025-08-07T10:15:23 |
facebook/react | bd4bb32fe708bace6fa927834220f571ff583f39 | 46339720d75337ae1d1e113fd56ac99e7fd1a0b3 | compiler: fix for calls on builtin jsx/function types
When I added new builtin types for jsx and functions, i forget to add a shape definition. This meant that attempting to accesss a property or method on these types would cause an internal error with an unresolved shape. That wasn't obvious because we rarely call me... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/ObjectShape.ts",
"patch": "@@ -431,6 +431,9 @@ addObject(BUILTIN_SHAPES, BuiltInMixedReadonlyId, [\n [\"*\", { kind: \"Object\", shapeId: BuiltInMixedReadonlyId }],\n ]);\n \n+addObject(BUILTIN_SHAPES, BuiltInJsxId, []);\n+addObject(BUILTIN_... | 2024-05-28T22:09:34 |
electron/electron | 25ed28670693525abd2a98ebbff75a2c7d10c155 | d97dcf388a7e5ac6deab593309d6c54ae4ef80ee | fix: `loginService` -> `loginItemService` (#42380)
fix: loginService -> loginItemService | [
{
"path": "shell/common/platform_util_mac.mm",
"patch": "@@ -128,7 +128,7 @@\n return [SMAppService agentServiceWithPlistName:service_name];\n } else if (type == \"daemonService\") {\n return [SMAppService daemonServiceWithPlistName:service_name];\n- } else if (type == \"loginService\") {\n+ } e... | 2024-06-07T09:49:00 |
vercel/next.js | 64b0986c05ee1b49d98b7055a38f5edfed886322 | 5ff4a9c520a78cbd8bd4bdd2ca4e4b3cbe6e8b60 | Feat: `get_page_metadata` MCP endpoint (#84211)
Enables AI agents to programmatically access the runtime metadata of the
current page. At the moment, we only include the segment trie details,
but this endpoint will be open to extension. Like `get_errors`, we
support collecting information from multiple tabs. | [
{
"path": "packages/next/errors.json",
"patch": "@@ -822,5 +822,6 @@\n \"821\": \"Unprocessable request\",\n \"822\": \"Stack frame resolver not initialized. This is a bug in Next.js.\",\n \"823\": \"Timeout waiting for error state from frontend. The browser may not be responding to HMR messages.\",\n... | 2025-09-25T19:51:32 |
nodejs/node | 5557ce4aec8749bc079e092dea2696fe311535e3 | 82ac335bdd8dd0379a53ad5e18d26b87f6d1b748 | readline: fix unresolved promise on abortion
Fixes: https://github.com/nodejs/node/issues/53497
PR-URL: https://github.com/nodejs/node/pull/54030
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> | [
{
"path": "lib/internal/readline/interface.js",
"patch": "@@ -33,10 +33,13 @@ const {\n SymbolDispose,\n } = primordials;\n \n-const { codes: {\n- ERR_INVALID_ARG_VALUE,\n- ERR_USE_AFTER_CLOSE,\n-} } = require('internal/errors');\n+const {\n+ AbortError,\n+ codes: {\n+ ERR_INVALID_ARG_VALUE,\n+ ... | 2024-07-25T02:01:26 |
rust-lang/rust | ff62e9a2a6cb3b89c70f49a7e6c8ecb3becd71dc | 70bf845cb2b07be5111d7992223ce98aaa1fd6cb | fix: no complete enum variant qualifier in pat
Example
---
```rust
enum Enum { TupleV(u32), RecordV { field: u32 }, UnitV }
use Enum::*;
fn func() {
if let $0 = unknown {}
}
```
**Before this PR**
```text
...
ev RecordV
ev TupleV
ev UnitV
bn RecordV {…} RecordV { field$1 }$0
bn TupleV(…) TupleV($1)$0
... | [
{
"path": "src/tools/rust-analyzer/crates/ide-completion/src/completions/pattern.rs",
"patch": "@@ -95,7 +95,7 @@ pub(crate) fn complete_pattern(\n if refutable || single_variant_enum(variant.parent_enum(ctx.db)) =>\n {\n acc.add_variant_pat(ctx, patte... | 2026-02-24T12:33:28 |
golang/go | 9bbea0f21a4539ea365d4804131b17d3b963c4f7 | 08eef97500bd814a1dc83596a45837e6c7a7d43c | cmd/compile: during regalloc, fixedreg values are always available
It is ok to clobber registers that have a copy of a fixedreg value,
as that value is always available in its original location later
if we need it. (See 14 lines below the change.)
This CL will fix the regalloc infinite loop that CL 678620 introduced.... | [
{
"path": "src/cmd/compile/internal/ssa/regalloc.go",
"patch": "@@ -2476,7 +2476,7 @@ func (e *edgeState) processDest(loc Location, vid ID, splice **Value, pos src.XP\n \t}\n \n \t// Check if we're allowed to clobber the destination location.\n-\tif len(e.cache[occupant.vid]) == 1 && !e.s.values[occupant.vi... | 2025-08-13T21:01:30 |
facebook/react | 46339720d75337ae1d1e113fd56ac99e7fd1a0b3 | 97722ca3d4675d544eb3753438aac70f01bbbf1f | compiler: error on reassigning to const
We currently don't report an error if the code attempts to reassign a const. Our thinking has been that we're not trying to catch all possible mistakes you could make in JavaScript — that's what ESLint, TypeScript, and Flow are for — and that we want to focus on React errors. Ho... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts",
"patch": "@@ -3336,6 +3336,20 @@ function lowerIdentifierForAssignment(\n });\n return null;\n }\n+ } else if (\n+ binding.bindingKind === \"const\" &&\n+ kind === InstructionKind.Reassign\n+ ) {\n+ bui... | 2024-05-28T19:12:15 |
electron/electron | 7f3dc7d4ceab7c33656ccb204a9bb7eb06821559 | 1c6d7d7eceab2755473ec117c0cb06ba417035cb | fix: utilityProcess exit codes (#42297) | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -129,3 +129,4 @@ fix_use_app_launch_prefetch_namespace_for_subprocesstype.patch\n feat_add_support_for_missing_dialog_features_to_shell_dialogs.patch\n cherry-pick-22db6918bac9.patch\n fix_font_face_resolution_when_renderer_is_blocked.patch\n+feat_enable_p... | 2024-06-07T08:06:00 |
nodejs/node | f19ae1417a48bf0924b3182578b7a22ecf726f97 | 7a4e9e62daca3419eb35d780451c33c9a75109db | src: add check for Bignum in GroupOrderSize
I think it's missed, cause in this file we have example of checking
result of BignumPointer::new
Refs: https://github.com/nodejs/node/issues/56692
PR-URL: https://github.com/nodejs/node/pull/56702
Fixes: https://github.com/nodejs/node/issues/56692
Reviewed-By: James M Snell... | [
{
"path": "src/crypto/crypto_ec.cc",
"patch": "@@ -918,6 +918,7 @@ size_t GroupOrderSize(const EVPKeyPointer& key) {\n const EC_KEY* ec = key;\n CHECK_NOT_NULL(ec);\n auto order = BignumPointer::New();\n+ CHECK(order);\n CHECK(EC_GROUP_get_order(ECKeyPointer::GetGroup(ec), order.get(), nullptr));\n... | 2025-01-29T15:21:30 |
vercel/next.js | 3abe25186f7868f0885e4950410d69d4edc53e20 | 4350081689818d805dbe0b6ade4577b9061a3b16 | Turbopack: fix NFT of readFileSync of relative path (#84155)
Tests are missing
Previously, `readFileSync("./data/foo.txt")` was relative to the current file, not relative to `process.cwd()` | [
{
"path": "crates/next-api/src/project.rs",
"patch": "@@ -998,7 +998,7 @@ impl Project {\n let this = self.await?;\n Ok(get_server_compile_time_info(\n // `/ROOT` corresponds to `[project]/`, so we need exactly the `path` part.\n- format!(\"/ROOT/{}\", self.project_pat... | 2025-09-25T16:19:15 |
golang/go | e001300cf21bad54afb5052e9ff823f8c1cbd407 | d5dea86993e1bc07bb9a49d2930655050da006d7 | [dev.simd] cmd/compile: fix LoadReg so it is aware of register target
SIMD code generation created interesting new type/register
combintations.
Change-Id: I9c9a73bf51f6cb54551db1fdc88f9dd1eef7ab26
Reviewed-on: https://go-review.googlesource.com/c/go/+/695895
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-acc... | [
{
"path": "src/cmd/compile/internal/amd64/ssa.go",
"patch": "@@ -47,8 +47,8 @@ func isFPReg(r int16) bool {\n \treturn x86.REG_X0 <= r && r <= x86.REG_Z31\n }\n \n-// loadByType returns the load instruction of the given type.\n-func loadByType(t *types.Type) obj.As {\n+// loadByTypeAndReg returns the load i... | 2025-08-13T16:44:01 |
facebook/react | 163122766b6008e992898b00f1fe3b104ed78737 | 2787eebe52864356252a280fd811cd9d52807a82 | Fix: Use action implementation at time of dispatch (#29618)
Fixes the behavior of actions that are queued by useActionState to use
the action function that was current at the time it was dispatched, not
at the time it eventually executes.
The conceptual model is that the action is immediately dispatched, as if
i... | [
{
"path": "packages/react-dom/src/__tests__/ReactDOMForm-test.js",
"patch": "@@ -1097,7 +1097,7 @@ describe('ReactDOMForm', () => {\n });\n \n // @gate enableAsyncActions\n- test('queues multiple actions and runs them in order', async () => {\n+ test('useActionState: queues multiple actions and runs t... | 2024-05-28T19:08:59 |
electron/electron | 1c6d7d7eceab2755473ec117c0cb06ba417035cb | 6ccb9861f666da08e6f99285514df4514d5409e2 | build: fix `depot_tools` patch (#42388)
build: fix depot_tools patch | [
{
"path": ".circleci/config/base.yml",
"patch": "@@ -260,9 +260,9 @@ step-depot-tools-get: &step-depot-tools-get\n index c305c248..e6e0fbdc 100755\n --- a/gclient.py\n +++ b/gclient.py\n- @@ -735,7 +735,8 @@ class Dependency(gclient_utils.WorkItem, DependencySettings):\n- \n- ... | 2024-06-06T20:49:59 |
nodejs/node | 0edeafd73dd1c02c88b36282c1308901148d9d0e | 671d058689b6151abdd78af5efda87ff79d2713e | inspector: fix StringUtil::CharacterCount for unicodes
`StringUtil::CharacterCount` should return the length of underlying
representation storage of a protocol string.
`StringUtil::CharacterCount` is only used in DictionaryValue
serialization. Only `Network.Headers` is an object type, represented
with DictionaryValue... | [
{
"path": "Makefile",
"patch": "@@ -1474,6 +1474,8 @@ LINT_CPP_FILES = $(filter-out $(LINT_CPP_EXCLUDE), $(wildcard \\\n \tsrc/*/*.h \\\n \ttest/addons/*/*.cc \\\n \ttest/addons/*/*.h \\\n+\ttest/cctest/*/*.cc \\\n+\ttest/cctest/*/*.h \\\n \ttest/cctest/*.cc \\\n \ttest/cctest/*.h \\\n \ttest/embedding/*.cc... | 2025-01-29T14:58:25 |
vercel/next.js | f9248ea5bf6ac66573a96f02d94bb335d4073a16 | f1a650fc9c493bbc2ff2b900b82aef2521b65eb7 | Turbopack: avoid panic on updating output when a task was cancelled (#84214)
### What?
When a task was cancelled, updating the output should not lead to a panic. | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/update_output.rs",
"patch": "@@ -54,11 +54,16 @@ impl UpdateOutputOperation {\n \n 'output: {\n let mut task = ctx.task(task_id, TaskDataCategory::All);\n+ let in_progress_state = get!(task, InProgress);\n+ ... | 2025-09-25T11:53:17 |
facebook/react | 681a4aa81022d4053f990d905d6453c73d2ee644 | 4ec6a6f71475a6f2fee39a0e604ddbbd2f124164 | Throw if React and React DOM versions don't match (#29236)
Throw an error during module initialization if the version of the
"react-dom" package does not match the version of "react".
We used to be more relaxed about this, because the "react" package
changed so infrequently. However, we now have many more feature... | [
{
"path": "packages/react-dom/src/client/ReactDOMClient.js",
"patch": "@@ -19,6 +19,9 @@ import ReactVersion from 'shared/ReactVersion';\n import {getClosestInstanceFromNode} from 'react-dom-bindings/src/client/ReactDOMComponentTree';\n import Internals from 'shared/ReactDOMSharedInternals';\n \n+import {en... | 2024-05-28T18:06:30 |
golang/go | d5dea86993e1bc07bb9a49d2930655050da006d7 | 08ab8e24a310944768717356e188a14c46c7447b | [dev.simd] cmd/compile: fix isIntrinsic for methods; fix fp <-> gp moves
also includes a handy debugging hook for the inliner.
Change-Id: I23d0619506219d21db78c6c801612ff058562142
Reviewed-on: https://go-review.googlesource.com/c/go/+/694118
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gservic... | [
{
"path": "src/cmd/compile/internal/amd64/ssa.go",
"patch": "@@ -43,6 +43,10 @@ func ssaMarkMoves(s *ssagen.State, b *ssa.Block) {\n \t}\n }\n \n+func isFPReg(r int16) bool {\n+\treturn x86.REG_X0 <= r && r <= x86.REG_Z31\n+}\n+\n // loadByType returns the load instruction of the given type.\n func loadByTy... | 2025-08-07T20:44:50 |
rust-lang/rust | 8eed8bd7bbf80ad06fc3262824aa39dd335eaa36 | d3e8bd94cc042c65e30a6c60146a8a00531d1292 | Rename `pass_by_value` lint as `disallowed_pass_by_ref`.
The name `pass_by_value` is completely wrong. The lint actually checks
for the use of pass by reference for types marked with
`rustc_pass_by_value`.
The hardest part of this was choosing the new name. The `disallowed_`
part of the name closely matches the follo... | [
{
"path": "compiler/rustc_ast/src/visit.rs",
"patch": "@@ -757,9 +757,11 @@ macro_rules! common_visitor_and_walkers {\n ) -> V::Result;\n }\n \n- // this is only used by the MutVisitor. We include this symmetry here to make writing other functions easier\n+ // This is only ... | 2026-02-23T21:42:04 |
electron/electron | 6ccb9861f666da08e6f99285514df4514d5409e2 | ec4461d1f25ded60d02b41b37480192039c971ac | build: increase fetch-deps (#42387)
* build: use fetch-depth: 0 and fetch-tags
* debug: readd tmate SSH debugging
* build: run SSH by default, remove debug conditional
* build: remove redundent fetch-tags
* build: pin tmate to SHA
* build: remove tmate action | [
{
"path": ".github/workflows/macos-build.yml",
"patch": "@@ -293,6 +293,7 @@ jobs:\n uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29\n with:\n path: src/electron\n+ fetch-depth: 0\n - name: Run Electron Only Hooks\n run: |\n echo \"Running Electro... | 2024-06-06T19:09:50 |
vercel/next.js | 0f68f3e98688bcb7fe158f9926ac608b94857815 | fbea93e9f3783a445b0f503d2a53a15f405bd412 | [devtools] Disable React's default Transition indicator (#84202)
Next.js DevTools should be fully separate from the actual Next.js app. In fact, it should be able to live in an iframe or extension. Right now it's still its own React root so we need to make sure it's isolated as much as possible from the actual React a... | [
{
"path": "packages/next/src/next-devtools/dev-overlay.browser.tsx",
"patch": "@@ -335,6 +335,9 @@ export function renderAppDevOverlay(\n \n const root = createRoot(container, {\n identifierPrefix: 'ndt-',\n+ // We don't have design for a default Transition indicator for the NDT frontend.\n+ ... | 2025-09-25T07:48:53 |
facebook/react | ea6e05912aa43a0bbfbee381752caa1817a41a86 | b078c810c787cf13d9bd1958f083b4e3a162a720 | [Fiber] Enable Native console.createTask Stacks When Available (#29223)
Stacked on #29206 and #29221.
This disables appending owner stacks to console when
`console.createTask` is available in the environment. Instead we rely on
native "async" stacks that end up looking like this with source maps and
ignore list ... | [
{
"path": "packages/react-devtools-shared/src/backend/DevToolsFiberComponentStack.js",
"patch": "@@ -98,3 +98,10 @@ export function getStackByFiberInDevAndProd(\n return '\\nError generating stack: ' + x.message + '\\n' + x.stack;\n }\n }\n+\n+export function supportsNativeConsoleTasks(fiber: Fiber): ... | 2024-05-26T21:55:57 |
nodejs/node | f2001e3befef1bb0e469589ab03628d19b4134d8 | b185d12a7e3e58119e5c61be534ff7fff13d8917 | deps: update amaro to 0.3.1
PR-URL: https://github.com/nodejs/node/pull/56785
Fixes: https://github.com/nodejs/node/issues/56597
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"path": "deps/amaro/dist/package.json",
"patch": "@@ -4,7 +4,7 @@\n \"강동윤 <kdy1997.dev@gmail.com>\"\n ],\n \"description\": \"wasm module for swc\",\n- \"version\": \"1.10.7\",\n+ \"version\": \"1.10.11\",\n \"license\": \"Apache-2.0\",\n \"repository\": {\n \"type\": \"git\",",
"add... | 2025-01-29T13:50:28 |
golang/go | 08eef97500bd814a1dc83596a45837e6c7a7d43c | 2fe5d51d0494d3241a8006d797d02510b030c0e3 | runtime/trace: fix documentation typo
Change-Id: I3d8dc20536c7a1fb4b1d895fcf989f86bf45f499
GitHub-Last-Rev: 234aea60e25b01e84abdf485cebbd0da5f392fed
GitHub-Pull-Request: golang/go#74991
Reviewed-on: https://go-review.googlesource.com/c/go/+/695535
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gs... | [
{
"path": "src/runtime/trace/flightrecorder.go",
"patch": "@@ -158,7 +158,7 @@ type FlightRecorderConfig struct {\n \t//\n \t// The flight recorder will strive to promptly discard events older than the minimum age,\n \t// but older events may appear in the window snapshot. The age setting will always be\n-\... | 2025-08-13T06:37:55 |
facebook/react | b078c810c787cf13d9bd1958f083b4e3a162a720 | d6cfa0f295f4c8b366af15fd20c84e27cdd1fab7 | [Fiber] Replace setCurrentDebugFiberInDEV with runWithFiberInDEV (#29221)
Stacked on #29044.
To work with `console.createTask(...).run(...)` we need to be able to
run a function in the scope of the task.
The main concern with this, other than general performance, is that it
might add more stack frames on very ... | [
{
"path": "packages/react-reconciler/src/ReactChildFiber.js",
"patch": "@@ -63,10 +63,7 @@ import {createThenableState, trackUsedThenable} from './ReactFiberThenable';\n import {readContextDuringReconciliation} from './ReactFiberNewContext';\n import {callLazyInitInDEV} from './ReactFiberCallUserSpace';\n \... | 2024-05-25T15:58:40 |
electron/electron | ec4461d1f25ded60d02b41b37480192039c971ac | c9349a2590ab777d558d7305cc6550d52f1f191d | fix: `iframe.contentWindow.document.fonts` resolution (#42366)
fix: iframe.contentWindow.document.fonts resolution | [
{
"path": "patches/chromium/.patches",
"patch": "@@ -128,3 +128,4 @@ partially_revert_is_newly_created_to_allow_for_browser_initiated.patch\n fix_use_app_launch_prefetch_namespace_for_subprocesstype.patch\n feat_add_support_for_missing_dialog_features_to_shell_dialogs.patch\n cherry-pick-22db6918bac9.patch\... | 2024-06-06T13:06:28 |
vercel/next.js | ef29f501b25472adea40c590a96d46e3546e07c2 | dbdf9ca95273198d56bef531eeb127fc38f8f8e0 | Turbopack: increase retry duration, reduce busy looping when there is other work (#84171)
### What?
The short retry timeout of 10s could lead to false panics. Increasing the retry count to 60s makes it less likely.
There is this case where the job need to wait for another job in the same queue to continue. This is h... | [
{
"path": "turbopack/crates/turbo-tasks-backend/src/backend/operation/aggregation_update.rs",
"patch": "@@ -1285,7 +1285,7 @@ impl AggregationUpdateQueue {\n let _span = trace_span!(\"lost follower (n uppers)\", uppers = upper_ids.len()).entered();\n \n // see documentation of `retry_loop` f... | 2025-09-25T05:47:09 |
nodejs/node | e46f2c10392f95ce2d700a7728c693866f0e2ca3 | a7f8b23642fffa6fb81322e38e6cbae806934fcb | tools: fix license-builder for inspector_protocol
Refs: https://github.com/nodejs/node/pull/56649
PR-URL: https://github.com/nodejs/node/pull/56814
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com> | [
{
"path": "tools/license-builder.sh",
"patch": "@@ -99,8 +99,8 @@ addlicense \"npm\" \"deps/npm\" \"$licenseText\"\n # Build tools\n licenseText=\"$(cat \"${rootdir}/tools/gyp/LICENSE\")\"\n addlicense \"GYP\" \"tools/gyp\" \"$licenseText\"\n-licenseText=\"$(cat \"${rootdir}/tools/inspector_protocol/LICENSE... | 2025-01-29T13:33:55 |
golang/go | 2fe5d51d0494d3241a8006d797d02510b030c0e3 | 9fcb87c352b398aa650310160346c8d9bfcdcc45 | internal/trace: fix wrong scope for Event.Range or EvGCSweepActive
Change-Id: I6a6a69643e804c75914e6eedd32463cb825ab69f
Reviewed-on: https://go-review.googlesource.com/c/go/+/694695
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scop... | [
{
"path": "src/internal/trace/event.go",
"patch": "@@ -489,7 +489,6 @@ func (e Event) Range() Range {\n \t\t} else {\n \t\t\tr.Scope.id = int64(e.Proc())\n \t\t}\n-\t\tr.Scope.id = int64(e.Proc())\n \tcase tracev2.EvGCMarkAssistBegin, tracev2.EvGCMarkAssistActive, tracev2.EvGCMarkAssistEnd:\n \t\tr.Name = \... | 2025-07-02T19:49:45 |
electron/electron | c9349a2590ab777d558d7305cc6550d52f1f191d | 791907f0f3559ed5e6c829a0387b12c9437a3ba7 | build: [GHA] cross-compile x64 MacOS jobs on arm64 (#42370)
* build: split x64 mas/darwin to run concurrently
* Retry src cache download on failure
* build: gate FFMpeg, etc, to release & darwin
* build: cross-compile x64 on arm hardware
* chore (do not merge): comment out CircleCI config
* build: fix F... | [
{
"path": ".github/workflows/config/release/arm64/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... | 2024-06-06T06:06:25 |
vercel/next.js | bbeaeeaa93157862dcb26e0d2b6b9195a48009cc | f9ee7a1aba52c7341cc4ea97a3c3fbcec92d7d85 | Revert "[turbopack] Set `liveness` of exports based on assignment ana… (#84207)
We believe this is causing an issue that was caught during internal
dogfooding.
This reverts commit ba227046ef42a8080b1fbe274fe842c0c7067bff.
<!-- Thanks for opening a PR! Your contribution is much appreciated.
To make sure your PR is ha... | [
{
"path": "test/e2e/app-dir/cache-components-errors/cache-components-errors.test.ts",
"patch": "@@ -664,7 +664,7 @@ describe('Cache Components Errors', () => {\n } else {\n expect(output).toMatchInlineSnapshot(`\n \"Error: Route \"/dynamic-root\": A component accesse... | 2025-09-25T00:27:02 |
nodejs/node | f4fba08d7b66e72b8a2a732197478f6cacbcd5d7 | adf8e97401bb3f1bb0b9a7e7c20f163deac301a2 | util: enforce shouldColorize in styleText array arg
PR-URL: https://github.com/nodejs/node/pull/56722
Fixes: https://github.com/nodejs/node/issues/56717
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com> | [
{
"path": "lib/util.js",
"patch": "@@ -119,6 +119,7 @@ function styleText(format, text, { validateStream = true, stream = process.stdou\n validateString(text, 'text');\n validateBoolean(validateStream, 'options.validateStream');\n \n+ let skipColorize;\n if (validateStream) {\n if (\n !isRe... | 2025-01-29T09:43:57 |
golang/go | 08ab8e24a310944768717356e188a14c46c7447b | 702ee2d51ed0522e3942d0dd2819e2c8cb8a10f2 | [dev.simd] cmd/compile: generated code from 'fix generated rules for shifts'
this code is generated by simdgen CL 695455
Change-Id: I5afdc209a50b49d68e120130e0578e4666bf8749
Reviewed-on: https://go-review.googlesource.com/c/go/+/695475
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccou... | [
{
"path": "src/cmd/compile/internal/ssa/_gen/simdAMD64.rules",
"patch": "@@ -1444,42 +1444,33 @@\n (SetLoUint32x16 x y) => (VINSERTI64X4512 [0] x y)\n (SetLoUint64x4 x y) => (VINSERTI128256 [0] x y)\n (SetLoUint64x8 x y) => (VINSERTI64X4512 [0] x y)\n-(ShiftAllLeftInt16x8 x (MOVQconst [c])) => (VPSLLW128con... | 2025-08-12T21:01:55 |
facebook/react | d6cfa0f295f4c8b366af15fd20c84e27cdd1fab7 | 935180c7e060e4d6e7868cef8f2e7c1b77cf8f7f | [Fiber] Use Owner/JSX Stack When Appending Stacks to Console (#29206)
This one should be fully behind the `enableOwnerStacks` flag.
Instead of printing the parent Component stack all the way to the root,
this now prints the owner stack of every JSX callsite. It also includes
intermediate callsites between the Com... | [
{
"path": ".eslintrc.js",
"patch": "@@ -486,6 +486,7 @@ module.exports = {\n $ReadOnlyArray: 'readonly',\n $ArrayBufferView: 'readonly',\n $Shape: 'readonly',\n+ ConsoleTask: 'readonly', // TOOD: Figure out what the official name of this will be.\n ReturnType: 'readonly',\n AnimationF... | 2024-05-25T15:58:17 |
electron/electron | 406f644d26904303663f40d7713140267c9981cb | 5fb117a7d7fd454f7ecbec4d18eac85c32db3186 | feat: duplicate navigation related APIs to `contents.navigationHistory` (#41752)
* refactor: move navigation related api to navigationHistory
* docs: add deprecation messages to old web content methods
* fix: add deprecation warnings to webcontents
* fix: add deprecation warnings and make existing naviagation... | [
{
"path": "docs/api/navigation-history.md",
"patch": "@@ -9,6 +9,24 @@ Each navigation entry corresponds to a specific page. The indexing system follow\n \n ### Instance Methods\n \n+#### `navigationHistory.canGoBack()`\n+\n+Returns `boolean` - Whether the browser can go back to previous web page.\n+\n+####... | 2024-06-05T16:34:47 |
nodejs/node | adf8e97401bb3f1bb0b9a7e7c20f163deac301a2 | e346323109b49fa6b9a4705f4e3816fc3a30c151 | test: mark `test-esm-loader-hooks-inspect-wait` flaky
`test-esm-loader-hooks-inspect-wait` is occasionally crashing on more
platforms than Linux. Mark the test as flaky on those platforms as well.
PR-URL: https://github.com/nodejs/node/pull/56803
Refs: https://github.com/nodejs/node/issues/54346
Reviewed-By: Colin Ih... | [
{
"path": "test/parallel/parallel.status",
"patch": "@@ -69,12 +69,20 @@ test-domain-no-error-handler-abort-on-uncaught-8: PASS, FLAKY\n test-domain-no-error-handler-abort-on-uncaught-9: PASS, FLAKY\n test-domain-throw-error-then-throw-from-uncaught-exception-handler: PASS, FLAKY\n test-domain-with-abort-on... | 2025-01-29T09:14:45 |
facebook/react | 935180c7e060e4d6e7868cef8f2e7c1b77cf8f7f | 788ed90b186f1e61497e0ab4a57dab3714caae0f | compiler: only resolve globals and react imports
Updates Environment#getGlobalDeclaration() to only resolve "globals" if they are a true global or an import from react/react-dom. We still keep the logic to resolve hook-like names as custom hooks. Notably, this means that a local `Array` reference won't get confused wi... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/Environment.ts",
"patch": "@@ -11,7 +11,6 @@ import { fromZodError } from \"zod-validation-error\";\n import { CompilerError } from \"../CompilerError\";\n import { Logger } from \"../Entrypoint\";\n import { Err, Ok, Result } from \"../Utils/... | 2024-05-24T05:59:06 |
vercel/next.js | f9ee7a1aba52c7341cc4ea97a3c3fbcec92d7d85 | e8a1342e0ec2b576465ae33e1c7392c92703e7ec | Feat: `get_errors` MCP endpoint (#84161)
Enables AI agents to programmatically access the runtime/build errors
from the current devtool overlay of a dev session. The errors are
pretty-printed by default with source-mapped stack frames. In
particular, it supports pulling error information from multiple browser
tabs. | [
{
"path": ".eslintignore",
"patch": "@@ -43,6 +43,7 @@ bench/heavy-npm-deps/**\n packages/next-bundle-analyzer/index.d.ts\n examples/with-typescript-graphql/lib/gql/\n test/development/basic/hmr/components/parse-error.js\n+test/development/mcp-server/fixtures/default-template/app/build-error/page.tsx\n pack... | 2025-09-24T23:41:41 |
golang/go | f10a82b76ff92b3c506203485b158191de4b3090 | 3bea95b2778312dd733c0f13fe9ec20bd2bf2d13 | all: update vendored dependencies [generated]
The tree has opened for Go 1.26 development. This is a time to update
all golang.org/x/... module versions that contribute packages to the
std and cmd modules in the standard library to latest master versions.
For #36905.
[git-generate]
go install golang.org/x/build/cmd/... | [
{
"path": "src/cmd/go.mod",
"patch": "@@ -1,21 +1,21 @@\n module cmd\n \n-go 1.25\n+go 1.26\n \n require (\n \tgithub.com/google/pprof v0.0.0-20250208200701-d0013a598941\n-\tgolang.org/x/arch v0.18.1-0.20250605182141-b2f4e2807dec\n-\tgolang.org/x/build v0.0.0-20250606033421-8c8ff6f34a83\n-\tgolang.org/x/mod... | 2025-08-09T02:06:27 |
electron/electron | 5fb117a7d7fd454f7ecbec4d18eac85c32db3186 | 39c984e23a4459cc3204d0fb256263bff2305839 | fix: don't destroy BrowserView webContents when owning BrowserWindow hasn't been closed (#42353)
* fix: moves bv webContents close to closed event
* chore: adds unit tests
* chore: test that bv webContents are destroyed when parent bw closed | [
{
"path": "lib/browser/api/browser-window.ts",
"patch": "@@ -77,7 +77,7 @@ BrowserWindow.prototype._init = function (this: BWT) {\n \n this._browserViews = [];\n \n- this.on('close', () => {\n+ this.on('closed', () => {\n this._browserViews.forEach(b => b.webContents?.close({ waitForBeforeUnload: tr... | 2024-06-05T07:58:38 |
facebook/react | ee5c19493086fdeb32057e16d1e3414370242307 | f55d172bcf921d761733533395b798c5b3665e04 | Fix async batching in React.startTransition (#29226)
Note: Despite the similar-sounding description, this fix is unrelated to
the issue where updates that occur after an `await` in an async action
must also be wrapped in their own `startTransition`, due to the absence
of an AsyncContext mechanism in browsers today.... | [
{
"path": "packages/react-dom/src/__tests__/ReactStartTransitionMultipleRenderers-test.js",
"patch": "@@ -0,0 +1,143 @@\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 sour... | 2024-05-23T21:19:09 |
nodejs/node | e6f1ddf33fc9a04f4ea88cf58819459b7634c278 | f2d274753a2aeb6f185aaea11abb0b051a3ceea1 | build: add build option suppress_all_error_on_warn
Add an option to suppress cases where warnings are on by
default
Signed-off-by: Michael Dawson <midawson@redhat.com>
PR-URL: https://github.com/nodejs/node/pull/56647
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com> | [
{
"path": "common.gypi",
"patch": "@@ -27,6 +27,7 @@\n \n 'clang%': 0,\n 'error_on_warn%': 'false',\n+ 'suppress_all_error_on_warn%': 'false',\n \n 'openssl_product': '<(STATIC_LIB_PREFIX)openssl<(STATIC_LIB_SUFFIX)',\n 'openssl_no_asm%': 0,",
"additions": 1,
"deletions": 0,
"... | 2025-01-17T19:54:00 |
golang/go | adbf59525c06ae7e037ad0e9a7709ebed2528d66 | 4e182db5fc876564a4f87a0602c58ea0ddc6e37c | internal/runtime/gc/scan: avoid -1 index when cache sizes unavailable
Fixes #74984.
Fixes #74983.
Change-Id: I011c66c2005bc4d92f1d17f1f8ce88158634f71f
Reviewed-on: https://go-review.googlesource.com/c/go/+/695476
Auto-Submit: Michael Knyszek <mknyszek@google.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
LUCI-Tr... | [
{
"path": "src/internal/runtime/gc/scan/scan_test.go",
"patch": "@@ -100,6 +100,9 @@ func benchmarkCacheSizes(b *testing.B, fn func(b *testing.B, heapPages int)) {\n \t\t\tfn(b, pages)\n \t\t})\n \t}\n+\tif len(cacheSizes) == 0 {\n+\t\treturn\n+\t}\n \tramPages := int(cacheSizes[len(cacheSizes)-1]*3/2) / gc... | 2025-08-12T21:57:23 |
vercel/next.js | e6180250bcd34890f63881f760bf750245fbff6e | 2921fb33503e45bc29626f64dbe8071a09a7569d | fix(server): fix pages router resume router matching (#84158)
### What?
Prevents PPR resume requests on Pages Router data routes by rejecting
them with a 422 status code and adds debug cache entry handlers for
testing PPR cache behavior in standalone mode.
### Why?
PPR (Partial Pre-Rendering) is an App Router-speci... | [
{
"path": "packages/next/errors.json",
"patch": "@@ -818,5 +818,6 @@\n \"817\": \"`cacheLifeProfiles` should always be provided.\",\n \"818\": \"`cacheLife()` can only be called inside a \\\"use cache\\\" function.\",\n \"819\": \"`cacheTag()` can only be called inside a \\\"use cache\\\" function.\",... | 2025-09-24T21:49:05 |
facebook/react | 84239da896fd7395a667ab1e7ef1ef338a32de8f | 5fe8c0b4ecd09cfd2c0e1422089e2c603d558ff8 | Move createElement/JSX Warnings into the Renderer (#29088)
This is necessary to simplify the component stack handling to make way
for owner stacks. It also solves some hacks that we used to have but
don't quite make sense. It also solves the problem where things like key
warnings get silenced in RSC because they ge... | [
{
"path": "fixtures/flight/server/region.js",
"patch": "@@ -81,17 +81,20 @@ async function renderApp(res, returnValue, formState) {\n ).main.css;\n }\n const App = m.default.default || m.default;\n- const root = [\n+ const root = React.createElement(\n+ React.Fragment,\n+ null,\n // Prep... | 2024-05-23T16:48:57 |
electron/electron | 39c984e23a4459cc3204d0fb256263bff2305839 | b74d3e14b004d751f1920efae62f730c98bce344 | fix: WebUSB should not crash when using in-memory partitions (#42347) | [
{
"path": "shell/browser/usb/electron_usb_delegate.cc",
"patch": "@@ -174,6 +174,9 @@ std::unique_ptr<content::UsbChooser> ElectronUsbDelegate::RunChooser(\n bool ElectronUsbDelegate::CanRequestDevicePermission(\n content::BrowserContext* browser_context,\n const url::Origin& origin) {\n+ if (!brow... | 2024-06-04T13:24:08 |
nodejs/node | 0741d69f6df5ef2bc503d063b36e0ef80d37e7e3 | efe698ee93f004694b05e2d37762c902354a6e55 | test: remove duplicate error reporter from ci
PR-URL: https://github.com/nodejs/node/pull/56739
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com> | [
{
"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=./test/common/test-error-reporter.js' --measure-flakiness 9\"\n+ mak... | 2025-01-28T16:41:52 |
golang/go | f63e12d0e0f4533af54550d6d049a836fb738147 | 8e317da77d151f180b6e006a0e84154576a4a295 | internal/trace: fix Sync.ClockSnapshot comment
The old comment said "clocks take in close in time" which was probably
due to rewording this a few times.
Replace the comment with the one of the ClockSnapshot type as there
doesn't seem to be a good reason for using a different wording here.
Change-Id: I6a6a69648c8470c... | [
{
"path": "src/internal/trace/event.go",
"patch": "@@ -690,9 +690,11 @@ type Sync struct {\n \t// N indicates that this is the Nth sync event in the trace.\n \tN int\n \n-\t// ClockSnapshot is a snapshot of different clocks taken in close in time\n-\t// that can be used to correlate trace events with data c... | 2025-08-11T06:33:05 |
electron/electron | 5f8a490a008f40b147457803d3b0c0ab6c00189f | 361b37592af3e79606440ca0c229c27df78676cf | build: add release config/dsymutil fix, test-releases for GHA (#42350)
* build: add publishing workflow for GHActions
* build: add test repo/bucket for uploads
* build: clean up conditionals, add macos-14-large, review comments
* build: remove host_cpu var from GCLIENT_EXTRA_ARGS
* build: use GN_CONFIG
... | [
{
"path": ".github/workflows/config/release/evm.mas.json",
"patch": "@@ -0,0 +1,25 @@\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+ ... | 2024-06-03T18:43:54 |
vercel/next.js | 2921fb33503e45bc29626f64dbe8071a09a7569d | 9bd5a76df7c5bcf02d1de4507353a46191424898 | fix: prevent URL mutation in router rewrites (#83963)
### What?
This PR fixes critical URL mutation issues in Next.js routing that were
causing state pollution between requests and breaking compatibility
between App Router and Pages Router during rewrite handling.
### Why?
Several interconnected problems were disco... | [
{
"path": ".github/workflows/build_and_test.yml",
"patch": "@@ -678,6 +678,39 @@ jobs:\n \n secrets: inherit\n \n+ test-new-tests-deploy-experimental:\n+ name: Test new tests when deployed (experimental)\n+ needs:\n+ [\n+ 'optimize-ci',\n+ 'test-experimental-prod',\n+ 't... | 2025-09-24T19:13:33 |
nodejs/node | 50d405a2b6db859fe5e0f67c71b0b706e89cd5f2 | 04f147b0245ac22fc983ddc7d9d0efd3ec69ee38 | test: reduce number of written chunks
Reduce chances of write errors while the request is sent.
Refs: https://github.com/nodejs/node/pull/56756
PR-URL: https://github.com/nodejs/node/pull/56757
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Ste... | [
{
"path": "test/parallel/test-http-server-headers-timeout-delayed-headers.js",
"patch": "@@ -55,10 +55,12 @@ server.listen(0, common.mustCall(() => {\n \n sendDelayedRequestHeaders = common.mustCall(() => {\n setTimeout(() => {\n- client.write('POST / HTTP/1.1\\r\\n');\n- client.write('Conte... | 2025-01-27T10:35:11 |
golang/go | fe4d445c36d69c1b238399e2f13b04bedd65ad7b | 750789fab7f9cccc0756c5ec0d0952c917a4546f | internal/trace/tracev2: fix EvSTWBegin comment to include stack ID
Change-Id: I6a6a69644fb9a6e765933384cdb17c63458be69a
Reviewed-on: https://go-review.googlesource.com/c/go/+/694617
Auto-Submit: Michael Knyszek <mknyszek@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.c... | [
{
"path": "src/internal/trace/tracev2/events.go",
"patch": "@@ -48,7 +48,7 @@ const (\n \tEvGoStatus // goroutine status at the start of a generation [timestamp, goroutine ID, thread ID, status]\n \n \t// STW.\n-\tEvSTWBegin // STW start [timestamp, kind]\n+\tEvSTWBegin // STW start [timestamp, k... | 2025-06-22T13:29:34 |
electron/electron | 9f88820be9b39bd1d87b542234afca657d64853b | 85df2a86dda7b99af99310566601ee04b72e55c8 | fix: dialogs should work with BaseWindows internally (#42315) | [
{
"path": "lib/browser/api/dialog.ts",
"patch": "@@ -1,4 +1,4 @@\n-import { app, BrowserWindow } from 'electron/main';\n+import { app, BaseWindow } from 'electron/main';\n import type { OpenDialogOptions, OpenDialogReturnValue, MessageBoxOptions, SaveDialogOptions, SaveDialogReturnValue, MessageBoxReturnVal... | 2024-05-31T10:04:22 |
rust-lang/rust | 8581df53a2596280d70a0fd70f6d5c176ac2587a | 859951e3c7c9d0322c39bad49221937455bdffcd | Update cargo submodule
8 commits in 8cc0cb136772b8f54eafe0d163fcb7226a06af0c..f298b8c82da0cba538516b45b04a480fc501d4c0
2026-02-17 12:16:26 +0000 to 2026-02-24 21:59:20 +0000
- fix(host-config): fix panic when cross-compiling with host-config (rust-lang/cargo#16674)
- doc: improve documentation on using cfg values with... | [
{
"path": "src/tools/cargo",
"patch": "@@ -1 +1 @@\n-Subproject commit 8cc0cb136772b8f54eafe0d163fcb7226a06af0c\n+Subproject commit f298b8c82da0cba538516b45b04a480fc501d4c0",
"additions": 1,
"deletions": 1,
"language": "Unknown"
}
] | 2026-02-25T00:38:12 |
nodejs/node | 04f147b0245ac22fc983ddc7d9d0efd3ec69ee38 | 1263efdfca224682300498cf8594e3d96b93fa47 | test: fix invalid common.mustSucceed() usage
By its own nature, the function returned by `common.mustSucceed()`
cannot be used as a listener for `'error'` events.
Write errors like `read ECONNRESET` or `write EPIPE`, should be ignored
because the socket might be closed by the other peer while the request
is sent.
Re... | [
{
"path": "test/parallel/test-http-server-headers-timeout-delayed-headers.js",
"patch": "@@ -38,16 +38,18 @@ server.listen(0, common.mustCall(() => {\n response += chunk;\n }));\n \n- const errOrEnd = common.mustSucceed(function(err) {\n+ client.on('error', () => {\n+ // Ignore errors like 'write... | 2025-01-27T10:09:37 |
facebook/react | 82a0a5f88a1bd0f2a0af52e44bbacff1207fc144 | 2e540e22b2b4038a278b2875306976b016fb31a9 | compiler: fixture for suboptimal jsx sibling memo block merging
React Compiler attempts to merge consecutive reactive scopes in order to reduce overhead. The basic idea is that if two consecutive scopes would always invalidate together then we should merge them. It gets more complicated, though, because values produce... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/merge-consecutive-scopes-deps-subset-of-decls.expect.md",
"patch": "@@ -0,0 +1,84 @@\n+\n+## Input\n+\n+```javascript\n+import { useState } from \"react\";\n+\n+function Component() {\n+ const [count, setCount] = useSt... | 2024-05-21T12:10:27 |
golang/go | 750789fab7f9cccc0756c5ec0d0952c917a4546f | 889ab74169db2c8758f51c1a199a90266b16669b | internal/trace/internal/testgen: fix missing stacks nframes arg
Change-Id: I6a6a6964c9c1322bfe289394d5d3937d1f7097bb
Reviewed-on: https://go-review.googlesource.com/c/go/+/694616
Reviewed-by: Michael Knyszek <mknyszek@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>... | [
{
"path": "src/internal/trace/internal/testgen/trace.go",
"patch": "@@ -295,7 +295,7 @@ func (g *Generation) writeEventsTo(tw *raw.TextWriter) {\n \tb.RawEvent(tracev2.EvStacks, nil)\n \tfor stk, id := range g.stacks {\n \t\tstk := stk.stk[:stk.len]\n-\t\targs := []uint64{id}\n+\t\targs := []uint64{id, uint... | 2025-06-22T13:29:34 |
rust-lang/rust | e2b308726ae6336c837688664953097ce2cab83c | 08abc44fa5eec6639cc10d60efa6807038d107ad | Fix SGX delayed host lookup via ToSocketAddr | [
{
"path": "library/std/src/net/mod.rs",
"patch": "@@ -70,3 +70,7 @@ pub enum Shutdown {\n #[stable(feature = \"rust1\", since = \"1.0.0\")]\n Both,\n }\n+\n+// allow(unused_imports): This function is only used on some targets\n+#[allow(unused_imports)]\n+pub(crate) use socket_addr::lookup_host_strin... | 2026-02-24T20:00:05 |
facebook/react | 2e540e22b2b4038a278b2875306976b016fb31a9 | 2e3e6a9b1cc97ec91248be74565e7ccbf6946067 | Set the current fiber to the source of the error during error reporting (#29044)
This lets us expose the component stack to the error reporting that
happens here as `console.error` patching. Now if you just call
`console.error` in the error handlers it'll get the component stack
added to the end by React DevTools.
... | [
{
"path": "packages/react-devtools-shared/src/__tests__/treeContext-test.js",
"patch": "@@ -2586,16 +2586,14 @@ describe('TreeListContext', () => {\n utils.act(() => TestRenderer.create(<Contexts />));\n \n expect(store).toMatchInlineSnapshot(`\n- ✕ 1, ⚠ 0\n [root]\n- ... | 2024-05-23T16:39:52 |
rust-lang/rust | f2f8743b4eec101b1100cb0b04ac1b0cb8e3bff8 | 0028f344ce9f64766259577c998a1959ca1f6a0b | Give a better error when updating a submodule fails
Previously this would sometimes just say "unexpected output ``", which
was extremely unhelpful. The actual issue was that I had a `.jj`
directory but not a `.git` directory, so it couldn't run `git submodule
update.` | [
{
"path": "src/bootstrap/src/core/config/config.rs",
"patch": "@@ -2426,7 +2426,7 @@ pub(crate) fn update_submodule<'a>(\n let actual_hash = recorded\n .split_whitespace()\n .nth(2)\n- .unwrap_or_else(|| panic!(\"unexpected output `{recorded}`\"));\n+ .unwrap_or_else(|| pan... | 2026-02-24T21:58:07 |
nodejs/node | 1263efdfca224682300498cf8594e3d96b93fa47 | 0aa5874098fb05c04963b160d617d21af4cf3b42 | test: use strict mode in global setters test
test-global-setters.js was added in
https://github.com/nodejs/node/pull/26882 and hasn't been modified
since. It appears that it avoids strict mode so that unscoped
identifiers are treated as globals, but that's true in strict mode too.
(In sloppy mode, an assignment to an ... | [
{
"path": "test/parallel/test-global-setters.js",
"patch": "@@ -1,4 +1,10 @@\n-/* eslint-disable strict */\n+// When setters and getters were added for global.process and global.Buffer to\n+// create a deprecation path for them in ESM, this test was added to make sure\n+// the setters and getters behaved as... | 2025-01-27T00:02:05 |
facebook/react | 2e3e6a9b1cc97ec91248be74565e7ccbf6946067 | 4c2e457c7c820e5b4bc895735a703cdbf40f3175 | Unify ReactFiberCurrentOwner and ReactCurrentFiber (#29038)
We previously had two slightly different concepts for "current fiber".
There's the "owner" which is set inside of class components in prod if
string refs are enabled, and sometimes inside function components in DEV
but not other contexts.
Then we have... | [
{
"path": "packages/react-devtools-shared/src/__tests__/treeContext-test.js",
"patch": "@@ -2586,14 +2586,14 @@ describe('TreeListContext', () => {\n utils.act(() => TestRenderer.create(<Contexts />));\n \n expect(store).toMatchInlineSnapshot(`\n- ✕ 2, ⚠ 0\n+ ✕ 1, ⚠ 0\n ... | 2024-05-23T16:25:23 |
rust-lang/rust | 8971ad85af554a2352865bf0e51d2cd16c519622 | 859951e3c7c9d0322c39bad49221937455bdffcd | Fix attribute parser and kind names.
For the attribute `FooBar` the parser is generally called `FooBarParser`
and the kind is called `AttributeKind::FooBar`. This commit renames some
cases that don't match that pattern. The most common cases:
- Adding `Rustc` to the front of the parser name for a `rustc_*`
attribute... | [
{
"path": "compiler/rustc_attr_parsing/src/attributes/allow_unstable.rs",
"patch": "@@ -52,8 +52,8 @@ impl<S: Stage> CombineAttributeParser<S> for UnstableFeatureBoundParser {\n }\n }\n \n-pub(crate) struct AllowConstFnUnstableParser;\n-impl<S: Stage> CombineAttributeParser<S> for AllowConstFnUnstablePa... | 2026-02-24T01:22:20 |
nodejs/node | 6d22fceb3651ba837e58806ad1cc3c40974abcb7 | 43daa9b217934f2cd01d328a8e5563a64d96cdd3 | tools: update inspector_protocol roller
Fix the inspector_protocol/roll.py to fit node source directory
structure.
`roll.py` reads the `deps/v8/thrid_party/inspector_protocol/README.v8`
to get the revision of the inspector_protocol that V8 depends on, and
updates the local version to match.
V8's copy of inspector_pr... | [
{
"path": "tools/inspector_protocol/roll.py",
"patch": "@@ -18,23 +18,22 @@\n 'code_generator.py',\n 'concatenate_protocols.py',\n 'convert_protocol_to_json.py',\n- 'encoding/encoding.h',\n- 'encoding/encoding.cc',\n- 'encoding/encoding_test.cc',\n+ 'crdtp/*',\n 'inspector_protoc... | 2025-01-15T10:11:02 |
facebook/react | 4c2e457c7c820e5b4bc895735a703cdbf40f3175 | f994737d14e83f22ead70e6a41f87353008b73cf | compiler: Handle TSNonNullAssertion expressions (#29218)
## Summary
We ran React compiler against part of our codebase and collected
compiler errors. One of the more common non-actionable errors is caused
by usage of the `!` TypeScript non-null assertion operation:
```
(BuildHIR::lowerExpression) Handle TSNon... | [
{
"path": "compiler/packages/babel-plugin-react-compiler/src/HIR/BuildHIR.ts",
"patch": "@@ -2407,6 +2407,10 @@ function lowerExpression(\n loc: expr.node.loc ?? GeneratedSource,\n };\n }\n+ case \"TSNonNullExpression\": {\n+ let expr = exprPath as NodePath<t.TSNonNullExpression>;\... | 2024-05-22T22:42:06 |
golang/go | 182336bf05c8e833f433510ba62205d8ce40299a | f04421ea9adc634fc24133ddc59aa24e323ceec9 | net/http: fix data race in client
Fixes #73522
Co-authored-by: Damien Neil <dneil@google.com>
Change-Id: I6fb408a0b03bc387f443e17e6f9d0bac32eff31e
Reviewed-on: https://go-review.googlesource.com/c/go/+/694815
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Damien... | [
{
"path": "src/net/http/transport.go",
"patch": "@@ -722,7 +722,7 @@ func (t *Transport) roundTrip(req *Request) (_ *Response, err error) {\n \t\t\tif e, ok := err.(transportReadFromServerError); ok {\n \t\t\t\terr = e.err\n \t\t\t}\n-\t\t\tif b, ok := req.Body.(*readTrackingBody); ok && !b.didClose {\n+\t\... | 2025-08-11T17:21:50 |
vercel/next.js | dabf1f664f882cccde8f19d7b760a782a6518914 | 7d9b384d1be37308484d96bc4816d435bd22ff55 | Fix double comma in build manifest (#84131)
## What?
Fixes a bug highlighted by Vercel Agent while moving code in #84125.
Specific comment:
https://github.com/vercel/next.js/pull/84125/files#r2371621679 | [
{
"path": "packages/next/src/build/webpack/plugins/build-manifest-plugin-utils.ts",
"patch": "@@ -72,9 +72,9 @@ export function createEdgeRuntimeManifest(\n `globalThis.__BUILD_MANIFEST.lowPriorityFiles = [\\n` +\n manifestFilenames\n .map((filename) => {\n- return `\"/static/\" + proce... | 2025-09-24T09:28:40 |
rust-lang/rust | 2e17c9b81a0446cdfaae88e038bbfbba7d105b5a | 4ab624fcca7f8a1386c64d41723b8c2a4ba0ba24 | remove FIXME about size of Pointer type | [
{
"path": "src/tools/miri/src/machine.rs",
"patch": "@@ -300,7 +300,8 @@ pub enum ProvenanceExtra {\n \n #[cfg(target_pointer_width = \"64\")]\n static_assert_size!(StrictPointer, 24);\n-// FIXME: this would with in 24bytes but layout optimizations are not smart enough\n+// Pointer does not fit as the layou... | 2026-02-24T21:29:26 |
facebook/react | 81c5ff2e040ee56b85b8bd27a2f8065661f17fee | 217b2ccf160d7594a926d276a75c7312b299be4d | [Flight Reply] retain listeners when resolving models with existing listeners (#29207)
In #29201 a fix was made to ensure we don't "forget" about some
listeners when handling cyclic chunks.
In #29204 another fix was made for a special case when the chunk already
has listeners before it first resolves.
This imple... | [
{
"path": "packages/react-server/src/ReactFlightReplyServer.js",
"patch": "@@ -205,8 +205,23 @@ function wakeChunkIfInitialized<T>(\n case PENDING:\n case BLOCKED:\n case CYCLIC:\n- chunk.value = resolveListeners;\n- chunk.reason = rejectListeners;\n+ if (chunk.value) {\n+ ... | 2024-05-21T23:16:20 |
nodejs/node | 43daa9b217934f2cd01d328a8e5563a64d96cdd3 | e1e1ada807051ea9088e8542c0753c3c5b9cd21b | doc: fix styles of the expandable TOC
PR-URL: https://github.com/nodejs/node/pull/56755
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com>
Reviewed-By: Claudio Wunder <cwunder@gnome.org>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com> | [
{
"path": "doc/api_assets/style.css",
"patch": "@@ -570,40 +570,28 @@ hr {\n }\n \n .toc ul {\n- margin: 0\n+ margin: 0;\n }\n-\n-.toc li a::before {\n- content: \"■\";\n- color: var(--color-text-primary);\n- padding-right: 1em;\n- font-size: 0.9em;\n+.toc>ul:first-child {\n+ margin-left: 1rem;\n+}\n... | 2025-01-26T22:24:29 |
electron/electron | ae0c55c0b19fc317708e573d30d6d10ea9777a13 | 705d92c5f6dfaaa7be9459b3ea7fa8060ecdb194 | refactor: inherit Observer classes privately, pt. 2 (#42237)
* refactor: use private inheritance in PushNotifications
* refactor: use private inheritance in electron::api::App
* refactor: use private inheritance in electron::api::BrowserWindow
* refactor: use private inheritance in electron::api::NativeTheme
... | [
{
"path": "shell/browser/api/electron_api_app.h",
"patch": "@@ -50,9 +50,9 @@ namespace api {\n class App : public ElectronBrowserClient::Delegate,\n public gin::Wrappable<App>,\n public gin_helper::EventEmitterMixin<App>,\n- public BrowserObserver,\n- public co... | 2024-05-29T18:07:02 |
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.