Skip to content

chore(deps-dev)(deps-dev): Bump the dev-deps group across 1 directory with 11 updates - #223

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/main/dev-deps-8442c3af0e
Open

chore(deps-dev)(deps-dev): Bump the dev-deps group across 1 directory with 11 updates#223
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/main/dev-deps-8442c3af0e

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 11, 2026

Copy link
Copy Markdown
Contributor

Bumps the dev-deps group with 11 updates in the / directory:

Package From To
@biomejs/biome 2.5.4 2.5.7
lint-staged 17.0.8 17.3.0
pkg-pr-new 0.0.78 0.0.87
skills 1.5.19 1.5.22
turbo 2.10.5 2.10.8
@types/node 26.1.1 26.1.2
@aws-sdk/s3-request-presigner 3.1087.0 3.1101.0
@prisma/dev 0.24.14 0.25.1
@types/pg 8.20.0 8.20.4
prisma 7.9.0 7.9.1
shiki 4.3.1 4.4.1

Updates @biomejs/biome from 2.5.4 to 2.5.7

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.5.7

2.5.7

Patch Changes

  • #10822 c171b3b Thanks @​pkallos! - Added the option ignoreIfStatements to useNullishCoalescing. Biome now flags if statements that only assign to a nullish variable (such as if (!a) { a = b }) and can rewrite them to ??=. When enabled, Biome ignores those if statements.

  • #11136 e63354c Thanks @​AkashNaickar! - Added a new nursery rule noExtendNative, which reports extending the prototype of a built-in object.

  • #10094 e007143 Thanks @​THEjacob1000! - Added the nursery rule noTailwindArbitraryValue. Biome now reports Tailwind CSS arbitrary values such as w-[400px], including in HTML/JSX class attributes, configured utility functions, and tagged templates.

  • #11184 135f476 Thanks @​subotac! - Fixed #11176: noUnknownPseudoClass now recognizes Vue's :deep() pseudo-class inside .vue style blocks.

  • #8239 a519f9d Thanks @​cormacrelf! - Fixed #8233, where Biome CLI in stdin mode didn't work correctly when handling files in projects with nested configurations. For example, with the following structure, --stdin-file-path=subdirectory/... would not use the nested configuration in subdirectory/biome.json:

    ├── biome.json
    └── subdirectory
        ├── biome.json
        └── lib.js
    
    biome format --write --stdin-file-path=subdirectory/lib.js < subdirectory/lib.js

    Now, the nested configuration is correctly picked up and applied.

    In addition, Biome now shows a warning if --stdin-file-path is provided but that path is ignored and therefore not formatted or fixed.

  • #11138 8c2c6bd Thanks @​ematipico! - Fixed noUnnecessaryConditions: Biome now chooses the same function overload as TypeScript when an argument is a callback, so conditions that were previously missed are reported.

    The following code is now invalid, because a parameter typed () => void accepts an async callback and schedule therefore returns string:

    declare function schedule(handler: () => void): string;
    declare function schedule(handler: () => Promise<void>): string | undefined;
    schedule(async () => {}) ?? "fallback";

    The following code is also now invalid, because map(() => 42) returns 42:

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.5.7

Patch Changes

  • #10822 c171b3b Thanks @​pkallos! - Added the option ignoreIfStatements to useNullishCoalescing. Biome now flags if statements that only assign to a nullish variable (such as if (!a) { a = b }) and can rewrite them to ??=. When enabled, Biome ignores those if statements.

  • #11136 e63354c Thanks @​AkashNaickar! - Added a new nursery rule noExtendNative, which reports extending the prototype of a built-in object.

  • #10094 e007143 Thanks @​THEjacob1000! - Added the nursery rule noTailwindArbitraryValue. Biome now reports Tailwind CSS arbitrary values such as w-[400px], including in HTML/JSX class attributes, configured utility functions, and tagged templates.

  • #11184 135f476 Thanks @​subotac! - Fixed #11176: noUnknownPseudoClass now recognizes Vue's :deep() pseudo-class inside .vue style blocks.

  • #8239 a519f9d Thanks @​cormacrelf! - Fixed #8233, where Biome CLI in stdin mode didn't work correctly when handling files in projects with nested configurations. For example, with the following structure, --stdin-file-path=subdirectory/... would not use the nested configuration in subdirectory/biome.json:

    ├── biome.json
    └── subdirectory
        ├── biome.json
        └── lib.js
    
    biome format --write --stdin-file-path=subdirectory/lib.js < subdirectory/lib.js

    Now, the nested configuration is correctly picked up and applied.

    In addition, Biome now shows a warning if --stdin-file-path is provided but that path is ignored and therefore not formatted or fixed.

  • #11138 8c2c6bd Thanks @​ematipico! - Fixed noUnnecessaryConditions: Biome now chooses the same function overload as TypeScript when an argument is a callback, so conditions that were previously missed are reported.

    The following code is now invalid, because a parameter typed () => void accepts an async callback and schedule therefore returns string:

    declare function schedule(handler: () => void): string;
    declare function schedule(handler: () => Promise<void>): string | undefined;
    schedule(async () => {}) ?? "fallback";

    The following code is also now invalid, because map(() => 42) returns 42:

    type Mapper<T> = () => T;
    declare function map<T>(mapper: Mapper<T>): T;

... (truncated)

Commits

Updates lint-staged from 17.0.8 to 17.3.0

Release notes

Sourced from lint-staged's releases.

v17.3.0

Minor Changes

  • #1825 16b3f74 - It is now possible to run multiple tasks in parallel for a single glob by configuring it with an array of tasks (which run sequentially), and then placing another array inside it (where the tasks will run in parallel). The following demonstrates the order tasks will start in:

    {
      "*.ts": ["first", "second", ["third", "third"], "fourth"]
    }

    As a concrete example, lint-staged's own configuration is:

    /** @type {import('./lib/index.js').Configuration} */
    export default {
      "*": [
        [
          "oxfmt --check --no-error-on-unmatched-pattern",
          "oxlint --no-error-on-unmatched-pattern",
        ],
      ],
      "*.ts": () => "tsc",
    };

    which means:

    1. for all staged files, run the two commands in parallel with staged filenames appended, for example:
      • oxfmt --check --no-error-on-unmatched-pattern lib/index.js
      • oxlint --no-error-on-unmatched-pattern lib/index.js
    2. additionally, if any *.ts files are staged, run tsc without appending any arguments
    3. The two sets of commands also run in parallel

Patch Changes

  • #1829 15f7e53 - During an in-progress merge, files that are unchanged from the branch being merged are now skipped. Technically, files are only included if there are staged changes against both HEAD and MERGE_HEAD.

v17.2.0

Minor Changes

  • #1823 ee156cc - The chunking of tasks based on maximum command line argument length has been re-implemented to be more precise. Now the chunking happens based on the final generated command string, instead of just the list of staged files like previously. This benefits mainly Windows platforms and function commands like:

    /** @type {import('lint-staged').Configuration} */
    export default {
      "*.ts": () => "tsc", // Run "tsc" when any TS file is changed (for entire project)
    };

... (truncated)

Changelog

Sourced from lint-staged's changelog.

17.3.0

Minor Changes

  • #1825 16b3f74 - It is now possible to run multiple tasks in parallel for a single glob by configuring it with an array of tasks (which run sequentially), and then placing another array inside it (where the tasks will run in parallel). The following demonstrates the order tasks will start in:

    {
      "*.ts": ["first", "second", ["third", "third"], "fourth"]
    }

    As a concrete example, lint-staged's own configuration is:

    /** @type {import('./lib/index.js').Configuration} */
    export default {
      "*": [
        [
          "oxfmt --check --no-error-on-unmatched-pattern",
          "oxlint --no-error-on-unmatched-pattern",
        ],
      ],
      "*.ts": () => "tsc",
    };

    which means:

    1. for all staged files, run the two commands in parallel with staged filenames appended, for example:
      • oxfmt --check --no-error-on-unmatched-pattern lib/index.js
      • oxlint --no-error-on-unmatched-pattern lib/index.js
    2. additionally, if any *.ts files are staged, run tsc without appending any arguments
    3. The two sets of commands also run in parallel

Patch Changes

  • #1829 15f7e53 - During an in-progress merge, files that are unchanged from the branch being merged are now skipped. Technically, files are only included if there are staged changes against both HEAD and MERGE_HEAD.

17.2.0

Minor Changes

  • #1823 ee156cc - The chunking of tasks based on maximum command line argument length has been re-implemented to be more precise. Now the chunking happens based on the final generated command string, instead of just the list of staged files like previously. This benefits mainly Windows platforms and function commands like:

    /** @type {import('lint-staged').Configuration} */
    export default {
      "*.ts": () => "tsc", // Run "tsc" when any TS file is changed (for entire project)
    };

... (truncated)

Commits
  • d153443 Merge pull request #1828 from lint-staged/changeset-release/main
  • 5162c14 chore(changeset): release
  • a4db9a4 Merge pull request #1831 from lint-staged/linter-updates
  • ea96cab style: enable oxlint "suspicious" category
  • 2fae007 style: add @e18e/eslint-plugin
  • 2280c38 Merge pull request #1829 from lint-staged/fix-merge-conflict-files
  • 1453ae6 test: relax assertion so that it passes in worktree
  • 15f7e53 fix: lint only files changed against HEAD and MERGE_HEAD, during a merge
  • dedfc31 Merge pull request #1825 from lint-staged/parallel-tasks-inside-sequence
  • 286e25c feat: allow running parallel tasks by nesting arrays
  • Additional commits viewable in compare view

Updates pkg-pr-new from 0.0.78 to 0.0.87

Commits

Updates skills from 1.5.19 to 1.5.22

Release notes

Sourced from skills's releases.

v1.5.22

Changelog

  • fix: discover skills nested under two categories (#1866)
  • fix(update): normalize GitHub shorthand for project deletion checks (#1865)
  • fix: preserve locked GitHub host during updates (#1837)
  • Surface skills added upstream to well-known sources during update (#1824)
  • Make skills update work for well-known installs (incl. skills.sh packs) (#1821)
  • Preselect all skills when installing a skills.sh pack (#1820)
  • Add MiniMax Code agent support (#1814)
  • fix(remove): keep the lock entry while another agent still uses the skill (#1786)
  • fix(find): show all registry results in non-interactive search (#1748)
  • fix: store local path sources in lockfile using portable source (#1743)

Contributors

@​AndreaCovelli,@​IsmaelMartinez @​SenseiMarv,@​Ygilany @​byapparov,@​hetaoBackend @​mlekhi,@​quuu

v1.5.21

Changelog

  • fix preserve well-known install urls (#1811)
  • refactor: share zip extraction without yauzl (#1809)
  • feat: support installing from direct archive URLs (#1671)

Contributors

@​lanzhi-lee,@​quuu

v1.5.20

Changelog

  • test: make warning sanitization coverage Windows-safe (#1755)
  • fix: honor GH_HOST for GitHub Enterprise shorthand (#1752)
  • Add Grok Build agent support (#1708)
  • feat: add Kimchi agent support (#1707)
  • fix(update): support full-depth skill updates (#1705)
  • fix: apply claude-code symlink exemption to blob install path (#1608)
  • fix: clean up upstream-deleted skills whose lock key differs from folder name (#1570)
  • feat: show skill origin in list output (#1450)
  • fix: remove missing skills from lock files during update/uninstall (#1357)
  • fix: warn instead of silently skipping malformed SKILL.md files (#1058) (#1059)
  • fix(cli): exit 1 on unknown command and honour subcommand --help (#1040)

Contributors

@​ADM-NKH,@​IsmaelMartinez @​Ygilany,@​akunzai @​fabio-barboza,@​jaryalarshita @​paymog,@​quuu @​yearth

Commits
  • a4d243c v1.5.22
  • ab4fc49 fix(find): show all returned search results (#1748)
  • 644686b Merge pull request #1743 from SenseiMarv/fix/store-local-path-sources-using-p...
  • 7533583 Merge branch 'main' into fix/store-local-path-sources-using-portable-source
  • 50d3b75 fix project update GitHub shorthand clone (#1865)
  • 653739a fix: preserve locked GitHub host during updates (#1837)
  • 65658a8 Merge pull request #1786 from IsmaelMartinez/fix/remove-agent-subset-keeps-lock
  • 375f497 Merge pull request #1866 from vercel-labs/fix/deeper-nested-skill-discovery
  • dc045b9 docs: update nested discovery depth
  • 6eeafb7 fix: discover skills nested under two categories
  • Additional commits viewable in compare view

Updates turbo from 2.10.5 to 2.10.8

Release notes

Sourced from turbo's releases.

Turborepo v2.10.8

What's Changed

Changelog

... (truncated)

Commits

Updates @types/node from 26.1.1 to 26.1.2

Commits

Updates @aws-sdk/s3-request-presigner from 3.1087.0 to 3.1101.0

Release notes

Sourced from @​aws-sdk/s3-request-presigner's releases.

v3.1101.0

3.1101.0(2026-07-31)

New Features
  • client-resiliencehubv2: Adding support for new testing capability in AWS Resilience Hub. (105876ce)
  • client-cloudwatch-logs: Amazon CloudWatch Logs now lets you create and update lookup tables directly from CloudWatch Logs query results by passing a queryId, and configure a lookup table as a scheduled query destination so it refreshes automatically with the latest query results on each run. (6f5f75a0)
  • client-network-firewall: Doc Updates for Container Attributes (82107b32)
  • client-billing: Adds GetEnterpriseSupportChargeSummary, GetEnterpriseSupportContractDetails, and ListEnterpriseSupportLinkedAccountCharges. These APIs provide first-time programmatic access to billing data for Enterprise Support usage previously only available upon request through AWS Concierge or Support. (643d01c5)
  • client-quicksight: Adding TopicV2 management APIs, adding possibility to use Topics in Analysis (087bb505)
  • client-connectcampaignsv2: Launching feature for abandonment rate pacing control for outbound campaigns. (fbb8c225)
  • client-amp: Amazon Managed Service for Prometheus adds support for an Amazon OpenSearch Service exporter for managed collectors. (d9c634a8)
  • client-elementalinference: AWS Elemental Inference now supports graphic composition on cropped video outputs, enabling branded graphics and other visual elements to be overlaid as part of the inference workflow. (b9116f87)
  • client-rds: Adds StorageOperationStatus and StorageOperationPercentProgress to DescribeDBInstances, letting you monitor RDS storage initialization and optimization progress. (842d1779)
  • client-datazone: Adding support for enhanced Git experience in Sagemaker Unified Studio. (e5fcea3c)
  • client-transcribe-streaming: This release adds a new optional TranscriptFormat parameter to the Amazon Transcribe streaming API, letting customers select spoken or written form for numeric and formatted output. (5808fd5c)
  • client-bedrock-runtime: Added support for mid-conversation tool changes in the Amazon Bedrock Converse and ConverseStream APIs (8f29d856)
  • client-cloudformation: Adding enum for sensitive property to DriftIgnoredReason (ce2fa95d)
  • client-marketplace-catalog: This release enhances the ListEntities API to support TargetAgreementId, TargetAgreementIntent, and CreatedBySource filters for the Offer entity type. (550b6cf0)
  • client-outposts: Adds the "EKS" value to the AWSServiceName enum and marks the Address field as sensitive. (65dd1932)

For list of updated packages, view updated-packages.md in assets-3.1101.0.zip

v3.1100.0

3.1100.0(2026-07-31)

Chores
  • add packages-internal to root tsconfig inclusion (#8240) (a0f3fb58)
New Features
  • clients: update client endpoints as of 2026-07-31 (30d44c7e)
  • client-bcm-pricing-calculator: Removing Smithy RPC v2 CBOR support that was added in previous SDK release. (edce242c)
  • client-bcm-recommended-actions: Removing Smithy RPC v2 CBOR support that was added in previous SDK release. (7bed97ab)
Bug Fixes
  • core/protocols: v2 JSON codec updates and JsonBytesStringAdapter (#8238) (a1001f4b)
Tests

... (truncated)

Changelog

Sourced from @​aws-sdk/s3-request-presigner's changelog.

3.1101.0 (2026-07-31)

Note: Version bump only for package @​aws-sdk/s3-request-presigner

3.1100.0 (2026-07-31)

Note: Version bump only for package @​aws-sdk/s3-request-presigner

3.1099.0 (2026-07-30)

Note: Version bump only for package @​aws-sdk/s3-request-presigner

3.1098.0 (2026-07-29)

Note: Version bump only for package @​aws-sdk/s3-request-presigner

3.1097.0 (2026-07-28)

Note: Version bump only for package @​aws-sdk/s3-request-presigner

3.1096.0 (2026-07-27)

Note: Version bump only for package @​aws-sdk/s3-request-presigner

3.1095.0 (2026-07-24)

... (truncated)

Commits

Updates @prisma/dev from 0.24.14 to 0.25.1

Updates @types/pg from 8.20.0 to 8.20.4

Commits

Updates prisma from 7.9.0 to 7.9.1

Release notes

Sourced from prisma's releases.

7.9.1

Today, we're issuing a patch release to resolve a security advisory in a transitive dependency of Prisma CLI (via @prisma/dev).

This fixes prisma/prisma#29780.

It does not actually affect @prisma/dev or Prisma CLI so no urgent action is required, but it is recommended to upgrade nevertheless to avoid false positives from security scanners.

Commits

Updates shiki from 4.3.1 to 4.4.1

Release notes

Sourced from shiki's releases.

v4.4.1

   🚀 Features

    View changes on GitHub

v4.4.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
Commits

@dependabot @github

dependabot Bot commented on behalf of github Aug 11, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: dependencies. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@pkg-pr-new

pkg-pr-new Bot commented Aug 11, 2026

Copy link
Copy Markdown

Open in StackBlitz

npm i https://pkg.pr.new/@prisma/composer@223
npm i https://pkg.pr.new/@prisma/composer-prisma-cloud@223

commit: 96e02e5

@dependabot dependabot Bot changed the title chore(deps-dev)(deps-dev): Bump the dev-deps group with 11 updates chore(deps-dev)(deps-dev): Bump the dev-deps group across 1 directory with 11 updates Aug 12, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/main/dev-deps-8442c3af0e branch 2 times, most recently from e5838e3 to 1ae3826 Compare August 12, 2026 08:59
… with 11 updates

Bumps the dev-deps group with 11 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.5.4` | `2.5.7` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `17.0.8` | `17.3.0` |
| [pkg-pr-new](https://github.com/stackblitz-labs/pkg.pr.new/tree/HEAD/packages/cli) | `0.0.78` | `0.0.87` |
| [skills](https://github.com/vercel-labs/skills) | `1.5.19` | `1.5.22` |
| [turbo](https://github.com/vercel/turborepo) | `2.10.5` | `2.10.8` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.1.1` | `26.1.2` |
| [@aws-sdk/s3-request-presigner](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/s3-request-presigner) | `3.1087.0` | `3.1101.0` |
| @prisma/dev | `0.24.14` | `0.25.1` |
| [@types/pg](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/pg) | `8.20.0` | `8.20.4` |
| [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) | `7.9.0` | `7.9.1` |
| [shiki](https://github.com/shikijs/shiki/tree/HEAD/packages/shiki) | `4.3.1` | `4.4.1` |



Updates `@biomejs/biome` from 2.5.4 to 2.5.7
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.5.7/packages/@biomejs/biome)

Updates `lint-staged` from 17.0.8 to 17.3.0
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v17.0.8...v17.3.0)

Updates `pkg-pr-new` from 0.0.78 to 0.0.87
- [Commits](https://github.com/stackblitz-labs/pkg.pr.new/commits/v0.0.87/packages/cli)

Updates `skills` from 1.5.19 to 1.5.22
- [Release notes](https://github.com/vercel-labs/skills/releases)
- [Commits](vercel-labs/skills@v1.5.19...v1.5.22)

Updates `turbo` from 2.10.5 to 2.10.8
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/RELEASE.md)
- [Commits](vercel/turborepo@v2.10.5...v2.10.8)

Updates `@types/node` from 26.1.1 to 26.1.2
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@aws-sdk/s3-request-presigner` from 3.1087.0 to 3.1101.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/s3-request-presigner/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.1101.0/packages/s3-request-presigner)

Updates `@prisma/dev` from 0.24.14 to 0.25.1

Updates `@types/pg` from 8.20.0 to 8.20.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/pg)

Updates `prisma` from 7.9.0 to 7.9.1
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/7.9.1/packages/cli)

Updates `shiki` from 4.3.1 to 4.4.1
- [Release notes](https://github.com/shikijs/shiki/releases)
- [Commits](https://github.com/shikijs/shiki/commits/v4.4.1/packages/shiki)

---
updated-dependencies:
- dependency-name: "@aws-sdk/s3-request-presigner"
  dependency-version: 3.1101.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: "@biomejs/biome"
  dependency-version: 2.5.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: "@prisma/dev"
  dependency-version: 0.25.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: "@types/node"
  dependency-version: 26.1.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: "@types/pg"
  dependency-version: 8.20.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: lint-staged
  dependency-version: 17.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: pkg-pr-new
  dependency-version: 0.0.86
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: prisma
  dependency-version: 7.9.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: shiki
  dependency-version: 4.4.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: skills
  dependency-version: 1.5.22
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: turbo
  dependency-version: 2.10.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/main/dev-deps-8442c3af0e branch from 1ae3826 to 96e02e5 Compare August 12, 2026 09:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants