Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all devdependencies (major) #288

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

svc-secops
Copy link
Contributor

@svc-secops svc-secops commented Apr 18, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
concurrently 8.2.2 -> 9.1.0 age adoption passing confidence
eslint (source) 8.57.0 -> 9.17.0 age adoption passing confidence
eslint-plugin-react-hooks (source) 4.6.0 -> 5.1.0 age adoption passing confidence
glob 10.3.12 -> 11.0.0 age adoption passing confidence
global-jsdom 24.0.0 -> 25.0.0 age adoption passing confidence
jsdom 24.0.0 -> 25.0.1 age adoption passing confidence
rimraf 5.0.5 -> 6.0.1 age adoption passing confidence
vitest (source) 1.6.0 -> 2.1.8 age adoption passing confidence

Release Notes

open-cli-tools/concurrently (concurrently)

v9.1.0

Compare Source

What's Changed
New Contributors

Full Changelog: open-cli-tools/concurrently@v9.0.1...v9.1.0

v9.0.1

Compare Source

What's Changed

Full Changelog: open-cli-tools/concurrently@v9.0.0...v9.0.1

v9.0.0

Compare Source

💥 Breaking Changes
  • Dropped support for Node.js < 18.0.0.
    Older Node.js version have reached end-of-life, and certain features require new-ish JS APIs.

  • Pending commands no longer run when --max-processes is set and an interruption/kill signal is sent - #​433, #​452, #​460
    Before v9.0.0, pressing Ctrl+C when --max-processes is set meant that only those commands would receive it. Once these stopped, the pending commands would start, which in turn meant that another Ctrl+C press would be necessary to stop them, and so on.
    Similar situation applied to combining --max-processes with --kill-others/--kill-others-on-fail.

    Starting with v9.0.0, this no longer happens, as these flags and/or key presses send a signal to stop the running commands in addition to preventing new commands from running.

  • The concurrently and default exports are now the same - #​399
    It's reasonable to expect that import { concurrently } from 'concurrently' would work the same as import concurrently from 'concurrently', however this has not been the case.
    The former used to be an unconfigured version of concurrently, lacking all features that you'd get from the CLI, which was seen as a "footgun". Both are now the same function.

    If you'd like to access the unconfigured function, use import { createConcurrently } from 'concurrently' instead.

✨ New Features
  • Exponential back-off support for process restarting - #​265, #​462
    Use --restart-after exponential. Restarts happen at 2^N seconds.
  • Add prefix padding via new --pad-prefix flag - #​166, #​417, #​495
  • Specify teardown commands via new --teardown flag - #​472, #​500
  • Expand node:<script> commands to node --run <script> - #​475
  • [API only] Inter-Process Communication (ipc) - #​498
  • [API only] Make it possible to use no colors at all - #​466
  • [API only] Add a state field to Command - #​455
🐛 Bug Fixes
Other Changes
New Contributors

Full Changelog: open-cli-tools/concurrently@v8.2.2...v9.0.0

eslint/eslint (eslint)

v9.17.0

Compare Source

Features
Bug Fixes
  • 67d683d fix: fix crash when message.fix is nullish (#​19168) (ntnyq)
  • c618707 fix: ignore vars with non-identifier references in no-useless-assignment (#​19200) (YeonJuan)
Documentation
  • 3c22d2a docs: update yoda to Yoda in yoda.md for consistency (#​19230) (루밀LuMir)
  • e0a2203 docs: add missing backticks to no-sequences (#​19233) (루밀LuMir)
  • 4cc4881 docs: Update README (GitHub Actions Bot)
  • 3db6fdf docs: [no-await-in-loop] expand on benefits and inapplicability (#​19211) (Kirk Waiblinger)
  • bf2a4f6 docs: add missing backticks to func-style (#​19227) (루밀LuMir)
  • ba098bd docs: add missing header to prefer-spread (#​19224) (루밀LuMir)
  • b607ae6 docs: update description of no-param-reassign (#​19220) (루밀LuMir)
  • 1eb424d docs: add missing backticks to prefer-destructuring (#​19223) (루밀LuMir)
  • 85998d1 docs: add missing backticks to no-unneeded-ternary (#​19222) (루밀LuMir)
  • b75b32c docs: add missing backticks to no-new-func (#​19219) (루밀LuMir)
  • a7700bc docs: add missing backticks to id-length (#​19217) (루밀LuMir)
  • e2bb429 docs: add missing backticks to complexity.md (#​19214) (루밀LuMir)
  • 045d716 docs: add missing ) to id-denylist (#​19213) (루밀LuMir)
  • 7fe4114 docs: Update README (GitHub Actions Bot)
  • c743ba6 docs: add CSS language to no-restricted-syntax (#​19208) (Milos Djermanovic)
  • 1416d70 docs: add missing backticks to eqeqeq (#​19207) (루밀LuMir)
  • b950c1b docs: add missing backticks to prefer-object-spread (#​19206) (루밀LuMir)
  • 8a941cb docs: update docs and description of require-unicode-regexp (#​19205) (루밀LuMir)
  • cbab228 docs: Update README (GitHub Actions Bot)
  • f2257ce docs: update comments and description of no-script-url (#​19203) (루밀LuMir)
  • 365f0f4 docs: add missing backtick to default-case-last (#​19202) (루밀LuMir)
  • e6b84f5 docs: add missing punctuation in document (#​19161) (루밀LuMir)
  • c88708e docs: replace quote with backtick in description of for-direction (#​19199) (루밀LuMir)
  • a76f233 docs: use higher contrast color tokens for code comments (#​19187) (Josh Goldberg ✨)
  • db19502 docs: Update README (GitHub Actions Bot)
Chores

v9.16.0

Compare Source

Features
  • 8f70eb1 feat: Add ignoreComputedKeys option in sort-keys rule (#​19162) (Milos Djermanovic)
Documentation
  • 9eefc8f docs: fix typos in use-isnan (#​19190) (루밀LuMir)
  • 0c8cea8 docs: switch the order of words in no-unreachable (#​19189) (루밀LuMir)
  • 0c19417 docs: add missing backtick to no-async-promise-executor (#​19188) (루밀LuMir)
  • 8df9276 docs: add backtick in -0 in description of no-compare-neg-zero (#​19186) (루밀LuMir)
  • 7e16e3f docs: fix caseSensitive option's title of sort-keys (#​19183) (Tanuj Kanti)
  • 0c6b842 docs: fix typos in migration-guide.md (#​19180) (루밀LuMir)
  • 353266e docs: fix a typo in debug.md (#​19179) (루밀LuMir)
  • 5ff318a docs: delete unnecessary horizontal rule(---) in nodejs-api (#​19175) (루밀LuMir)
  • 576bcc5 docs: mark more rules as handled by TypeScript (#​19164) (Tanuj Kanti)
  • 742d054 docs: note that no-restricted-syntax can be used with any language (#​19148) (Milos Djermanovic)
Chores

v9.15.0

Compare Source

Features
  • 01557ce feat: Implement Language#normalizeLanguageOptions() (#​19104) (Nicholas C. Zakas)
  • 2edc0e2 feat: add meta.defaultOptions (#​17656) (Josh Goldberg ✨)
  • bdec50e feat: fix no-useless-computed-key false negative with __proto__ (#​19123) (Milos Djermanovic)
  • 3087c9e feat: add meta object to @eslint/js plugin (#​19095) (Francesco Trotta)
Bug Fixes
Documentation
  • d927920 docs: fix styles in no-js mode (#​18916) (Tanuj Kanti)
  • 09bc2a8 docs: Update README (GitHub Actions Bot)
  • 39089c8 docs: add no-useless-computed-key examples with object patterns (#​19109) (Milos Djermanovic)
  • 895c60f docs: add missing messageId property and suggestion properties (#​19122) (fnx)
  • 298625e docs: Change CLI -c to use flat config (#​19103) (Nicholas C. Zakas)
  • 522d8a3 docs: add deprecation on indent, quotes and semi rule types (#​19090) (Marco Pasqualetti)
Chores

v9.14.0

Compare Source

Features
  • 3fa009f feat: add support for Import Attributes and RegExp Modifiers (#​19076) (Milos Djermanovic)
  • b0faee3 feat: add types for the @eslint/js package (#​19010) (Nitin Kumar)
Bug Fixes
  • 24d0172 fix: enable retry concurrency limit for readFile() (#​19077) (Nicholas C. Zakas)
  • b442067 fix: Don't crash when directory is deleted during traversal. (#​19067) (Nicholas C. Zakas)
  • d474443 fix: avoid call stack overflow while processing globs (#​19035) (Livia Medeiros)
Documentation
Build Related
Chores

v9.13.0

Compare Source

Features
Bug Fixes
Documentation
  • abdbfa8 docs: mark LintMessage#nodeType as deprecated (#​19019) (Nitin Kumar)
  • 19e68d3 docs: update deprecated rules type definitions (#​19018) (Nitin Kumar)
  • 7dd402d docs: Update examples of passing multiple values to a CLI option (#​19006) (Milos Djermanovic)
  • 5dcbc51 docs: Add example with side-effect imports to no-restricted-imports (#​18997) (Milos Djermanovic)
  • 1ee87ca docs: Update README (GitHub Actions Bot)
  • 2c3dbdc docs: Use prerendered sponsors for README (#​18988) (Milos Djermanovic)
Chores

v9.12.0

Compare Source

Features
Bug Fixes
Documentation
  • ecbd522 docs: Mention code explorer (#​18978) (Nicholas C. Zakas)
  • 7ea4ecc docs: Clarifying the Use of Meta Objects (#​18697) (Amaresh S M)
  • d3e4b2e docs: Clarify how to exclude .js files (#​18976) (Milos Djermanovic)
  • 57232ff docs: Mention plugin-kit in language docs (#​18973) (Nicholas C. Zakas)
  • b80ed00 docs: Update README (GitHub Actions Bot)
  • cb69ab3 docs: Update README (GitHub Actions Bot)
  • 7fb0d95 docs: Update README (GitHub Actions Bot)
  • 493348a docs: Update README (GitHub Actions Bot)
  • 87a582c docs: fix typo in id-match rule (#​18944) (Jay)
Chores

v9.11.1

Compare Source

Bug Fixes
  • 20fd916 fix: add @eslint/core, @types/estree, & @types/json-schema deps (#​18938) (Nitin Kumar)
  • 2738322 fix: add missing types for require-atomic-updates rule (#​18937) (Kristóf Poduszló)
  • d71ff30 fix: add missing types for object-shorthand rule (#​18935) (Kristóf Poduszló)
  • 561cadc fix: add missing types for no-unsafe-negation rule (#​18932) (Kristóf Poduszló)
  • 8843656 fix: add missing types for no-underscore-dangle rule (#​18931) (Kristóf Poduszló)
  • 92cde5c fix: add missing types for no-shadow rule (#​18930) (Kristóf Poduszló)
  • b3cbe11 fix: add missing types for no-sequences rule (#​18929) (Kristóf Poduszló)
  • 976f77f fix: add missing types for no-unused-expressions rule (#​18933) (Kristóf Poduszló)
Documentation
  • 3eff709 docs: replace deprecated Linter.FlatConfig type with Linter.Config (#​18941) (Carlos Meira)
Chores

v9.11.0

Compare Source

Features
  • ec30c73 feat: add "eslint/universal" to export Linter (#​18883) (唯然)
  • c591da6 feat: Add language to types (#​18917) (Nicholas C. Zakas)
  • 492eb8f feat: limit the name given to ImportSpecifier in id-length (#​18861) (Tanuj Kanti)
  • 19c6856 feat: Add no-useless-constructor suggestion (#​18799) (Jordan Thomson)
  • a48f8c2 feat: add type FormatterFunction, update LoadedFormatter (#​18872) (Francesco Trotta)
Bug Fixes
  • 5e5f39b fix: add missing types for no-restricted-exports rule (#​18914) (Kristóf Poduszló)
  • 8f630eb fix: add missing types for no-param-reassign options (#​18906) (Kristóf Poduszló)
  • d715781 fix: add missing types for no-extra-boolean-cast options (#​18902) (Kristóf Poduszló)
  • 2de5742 fix: add missing types for no-misleading-character-class options (#​18905) (Kristóf Poduszló)
  • c153084 fix: add missing types for no-implicit-coercion options (#​18903) (Kristóf Poduszló)
  • fa11b2e fix: add missing types for no-empty-function options (#​18901) (Kristóf Poduszló)
  • a0deed1 fix: add missing types for camelcase options (#​18897) (Kristóf Poduszló)
Documentation
  • e4e5709 docs: correct prefer-object-has-own type definition comment (#​18924) (Nitin Kumar)
  • 91cbd18 docs: add unicode abbreviations in no-irregular-whitespace rule (#​18894) (Alix Royere)
  • 59cfc0f docs: clarify resultsMeta in LoadedFormatter type (#​18881) (Milos Djermanovic)
  • adcc50d docs: Update README (GitHub Actions Bot)
  • 4edac1a docs: Update README (GitHub Actions Bot)
Build Related
  • 959d360 build: Support updates to previous major versions (#​18871) (Milos Djermanovic)
Chores

v9.10.0

Compare Source

Features

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - "after 8am and before 4pm on tuesday" in timezone Etc/UTC.

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


This PR has been generated by Renovate Bot.

@svc-secops svc-secops requested a review from a team as a code owner April 18, 2024 13:08
@svc-secops svc-secops added the dependencies Pull requests that update a dependency file label Apr 18, 2024
@svc-secops
Copy link
Contributor Author

svc-secops commented Apr 18, 2024

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: yarn.lock
➤ YN0000: · Yarn 4.1.0
➤ YN0000: ┌ Resolution step
➤ YN0085: │ + @testing-library/react@npm:15.0.6, eslint@npm:9.2.0, @eslint/eslintrc@npm:3.0.2, @eslint/js@npm:9.2.0, @humanwhocodes/config-array@npm:0.13.0, and 13 more.
➤ YN0085: │ - @eslint/js@npm:8.57.0, @humanwhocodes/config-array@npm:0.11.14, @humanwhocodes/object-schema@npm:2.0.2, @testing-library/dom@npm:9.3.4, and 3 more.
➤ YN0000: └ Completed in 1s 258ms
➤ YN0000: ┌ Post-resolution validation
➤ YN0060: │ eslint is listed by your project with version 9.2.0, which doesn't satisfy what @typescript-eslint/eslint-plugin (p4f55c) and other dependencies request (^8.56.0).
➤ YN0002: │ @apollo/client-react-streaming@workspace:packages/client-react-streaming [a7905] doesn't provide react-dom (p0dd3c), requested by @testing-library/react.
➤ YN0002: │ @apollo/client-react-streaming@workspace:packages/client-react-streaming [a7905] doesn't provide react-dom (p73f32), requested by react-server-dom-webpack.
➤ YN0002: │ @apollo/client-react-streaming@workspace:packages/client-react-streaming [a7905] doesn't provide webpack (p92a18), requested by react-server-dom-webpack.
➤ YN0002: │ @apollo/client-react-streaming@workspace:packages/client-react-streaming [ff90e] doesn't provide react-dom (p07efe), requested by react-server-dom-webpack.
➤ YN0002: │ @apollo/client-react-streaming@workspace:packages/client-react-streaming [ff90e] doesn't provide react-dom (pe3922), requested by @testing-library/react.
➤ YN0002: │ @apollo/client-react-streaming@workspace:packages/client-react-streaming [ff90e] doesn't provide webpack (pb9870), requested by react-server-dom-webpack.
➤ YN0002: │ @apollo/client-react-streaming@workspace:packages/client-react-streaming doesn't provide react-dom (p0c22f), requested by @testing-library/react.
➤ YN0002: │ @apollo/client-react-streaming@workspace:packages/client-react-streaming doesn't provide react-dom (p1efc4), requested by react-server-dom-webpack.
➤ YN0002: │ @apollo/client-react-streaming@workspace:packages/client-react-streaming doesn't provide webpack (pd6b69), requested by react-server-dom-webpack.
➤ YN0002: │ @apollo/experimental-nextjs-app-support@workspace:packages/experimental-nextjs-app-support [57d1f] doesn't provide react-dom (p5e725), requested by @testing-library/react.
➤ YN0002: │ @apollo/experimental-nextjs-app-support@workspace:packages/experimental-nextjs-app-support doesn't provide react-dom (p6ec33), requested by next.
➤ YN0002: │ @apollo/experimental-nextjs-app-support@workspace:packages/experimental-nextjs-app-support doesn't provide react-dom (pa877d), requested by @testing-library/react.
➤ YN0002: │ monorepo@workspace:. doesn't provide webpack (pa8ffb), requested by @size-limit/webpack-why.
➤ YN0086: │ Some peer dependencies are incorrectly met; run yarn explain peer-requirements <hash> for details, where <hash> is the six-letter p-prefixed code.
➤ YN0000: └ Completed
➤ YN0000: ┌ Fetch step
➤ YN0066: │ typescript@patch:typescript@npm%3A5.4.3#optional!builtin<compat/typescript>::version=5.4.3&hash=d69c25: Cannot apply hunk #23
➤ YN0013: │ 19 packages were added to the project (+ 7.97 MiB).
➤ YN0000: └ Completed in 4s 860ms
➤ YN0000: ┌ Link step

Copy link

netlify bot commented Apr 24, 2024

Deploy Preview for apollo-client-nextjs-docmodel failed.

Name Link
🔨 Latest commit 01aa399
🔍 Latest deploy log https://app.netlify.com/sites/apollo-client-nextjs-docmodel/deploys/6762cb1bf1076c0008cb0d15

@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from bc1491e to 70ba8df Compare May 5, 2024 12:28
@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from 70ba8df to 67dd803 Compare May 8, 2024 12:27
@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from 67dd803 to 18cc1c2 Compare May 10, 2024 11:19
@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from 18cc1c2 to def8480 Compare May 15, 2024 12:19
@svc-secops svc-secops changed the title chore(deps): update all devdependencies (major) chore(deps): update dependency eslint to v9 May 15, 2024
@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from def8480 to 6c1f2a1 Compare May 22, 2024 11:05
@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from 6c1f2a1 to fd6f05c Compare June 4, 2024 13:07
@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from fd6f05c to 0b5d220 Compare June 7, 2024 11:26
@svc-secops svc-secops changed the title chore(deps): update dependency eslint to v9 chore(deps): update all devdependencies (major) Jun 7, 2024
@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from 0b5d220 to 6e5f5ee Compare June 19, 2024 11:49
@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from 6e5f5ee to 8ec9717 Compare July 3, 2024 11:59
@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from 8ec9717 to cfb4341 Compare July 12, 2024 12:03
@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from cfb4341 to 3773a71 Compare July 14, 2024 11:21
@svc-secops
Copy link
Contributor Author

svc-secops commented Oct 15, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: yarn.lock
➤ YN0000: · Yarn 4.2.2
➤ YN0000: ┌ Resolution step
➤ YN0085: │ + concurrently@npm:9.1.0, eslint-plugin-react-hooks@npm:5.1.0, eslint@npm:9.17.0, glob@npm:11.0.0, global-jsdom@npm:25.0.0, jsdom@npm:25.0.1, and 67 more.
➤ YN0085: │ - @eslint/js@npm:8.57.0, @humanwhocodes/config-array@npm:0.11.14, @humanwhocodes/object-schema@npm:2.0.2, @jest/schemas@npm:29.6.3, and 66 more.
➤ YN0000: └ Completed in 1s 236ms
➤ YN0000: ┌ Post-resolution validation
➤ YN0060: │ @types/react is listed by your project with version 19.0.0, which doesn't satisfy what @chakra-ui/react (pa4a20) and other dependencies request (^16.9.0 || ^17.0.0 || ^18.0.0).
➤ YN0060: │ eslint is listed by your project with version 9.17.0, which doesn't satisfy what @typescript-eslint/eslint-plugin (p2218a) and other dependencies request (^8.56.0).
➤ YN0060: │ next is listed by your project with version 15.0.0, which doesn't satisfy what @as-integrations/next (p1c588) requests (^12.0.0 || ^13.0.0 || ^14.0.0).
➤ YN0060: │ react is listed by your project with version 19.0.0, which doesn't satisfy what @apollo/client (pe33c9) and other dependencies request (^18.2.0 || ^18.2.0).
➤ YN0060: │ react-dom is listed by your project with version 19.0.0, which doesn't satisfy what @apollo/client (p623d4) and other dependencies request (^18.2.0).
➤ YN0002: │ @apollo/client-react-streaming@workspace:packages/client-react-streaming [a7905] doesn't provide react-dom (pce696), requested by @testing-library/react.
➤ YN0002: │ @apollo/client-react-streaming@workspace:packages/client-react-streaming [a7905] doesn't provide react-dom (pe0c99), requested by react-server-dom-webpack.
➤ YN0002: │ @apollo/client-react-streaming@workspace:packages/client-react-streaming [a7905] doesn't provide webpack (p039c3), requested by react-server-dom-webpack.
➤ YN0002: │ @apollo/client-react-streaming@workspace:packages/client-react-streaming [ff90e] doesn't provide react-dom (p45e3d), requested by @testing-library/react.
➤ YN0002: │ @apollo/client-react-streaming@workspace:packages/client-react-streaming [ff90e] doesn't provide react-dom (p566d9), requested by react-server-dom-webpack.
➤ YN0002: │ @apollo/client-react-streaming@workspace:packages/client-react-streaming [ff90e] doesn't provide webpack (p91ba3), requested by react-server-dom-webpack.
➤ YN0002: │ @apollo/client-react-streaming@workspace:packages/client-react-streaming doesn't provide react-dom (p82a62), requested by @testing-library/react.
➤ YN0002: │ @apollo/client-react-streaming@workspace:packages/client-react-streaming doesn't provide react-dom (pdc451), requested by react-server-dom-webpack.
➤ YN0002: │ @apollo/client-react-streaming@workspace:packages/client-react-streaming doesn't provide webpack (p8e155), requested by react-server-dom-webpack.
➤ YN0002: │ @apollo/experimental-nextjs-app-support@workspace:packages/experimental-nextjs-app-support [57d1f] doesn't provide react-dom (pdc9c3), requested by @testing-library/react.
➤ YN0002: │ @apollo/experimental-nextjs-app-support@workspace:packages/experimental-nextjs-app-support doesn't provide react-dom (p135ea), requested by @testing-library/react.
➤ YN0002: │ @apollo/experimental-nextjs-app-support@workspace:packages/experimental-nextjs-app-support doesn't provide react-dom (pd35a6), requested by next.
➤ YN0002: │ monorepo@workspace:. doesn't provide webpack (pa8ffb), requested by @size-limit/webpack-why.
➤ YN0086: │ Some peer dependencies are incorrectly met; run yarn explain peer-requirements <hash> for details, where <hash> is the six-letter p-prefixed code.
➤ YN0000: └ Completed
➤ YN0000: ┌ Fetch step

@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from 4542b3a to d3b18bd Compare October 17, 2024 12:32
@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from d3b18bd to d8b88e8 Compare October 22, 2024 13:20
@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from d8b88e8 to 689bdce Compare November 1, 2024 15:18
@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from 689bdce to 023f8fd Compare November 5, 2024 12:35
@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from 023f8fd to 474d2f7 Compare November 7, 2024 12:32
@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from 474d2f7 to 18949ed Compare November 18, 2024 12:56
@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from 18949ed to 296210c Compare November 19, 2024 13:16
@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from 296210c to 7bc9802 Compare December 4, 2024 13:27
@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from 7bc9802 to 2804bf0 Compare December 5, 2024 12:25
@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from 2804bf0 to f4f10d3 Compare December 6, 2024 14:30
@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from f4f10d3 to 9cbf4fd Compare December 10, 2024 12:16
@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from 9cbf4fd to 7e32378 Compare December 17, 2024 13:36
@svc-secops svc-secops force-pushed the renovate/major-all-dev branch from 7e32378 to 01aa399 Compare December 18, 2024 13:16
Copy link

changeset-bot bot commented Dec 18, 2024

⚠️ No Changeset found

Latest commit: 01aa399

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets
Name Type
@apollo/client-react-streaming Patch
@apollo/experimental-nextjs-app-support Patch

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant