Skip to content

chore(deps-dev): bump the dev-deps group across 1 directory with 13 updates#273

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

chore(deps-dev): bump the dev-deps group across 1 directory with 13 updates#273
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dev-deps-ac324d78af

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 28, 2026

Copy link
Copy Markdown
Contributor

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

Package From To
@heroku-cli/test-utils 0.2.0 1.0.0
@types/node 24.9.1 26.0.1
ansis 3.17.0 4.3.1
c8 10.1.3 11.0.0
chai 5.3.3 6.2.2
eslint 9.39.2 10.6.0
lint-staged 16.2.7 17.0.8
mocha 11.7.5 11.7.6
nock 14.0.15 14.0.16
oclif 4.22.81 4.23.23
prettier 3.8.3 3.9.1
sinon 21.0.1 22.0.0
tsx 4.21.0 4.22.4

Updates @heroku-cli/test-utils from 0.2.0 to 1.0.0

Release notes

Sourced from @​heroku-cli/test-utils's releases.

test-utils: v1.0.0

1.0.0 (2026-06-11)

Performance Improvements

  • cache Config in getConfig by loadOpts (#69) (d95ac16)

Dependencies

  • bump @​heroku-cli/command from 12.3.3 to 12.4.0 (#68) (882472e)
  • bump @​oclif/core from 4.11.2 to 4.11.4 (#65) (c3cde37)

Miscellaneous Chores

test-utils: v0.3.0

0.3.0 (2026-05-14)

⚠ BREAKING CHANGES

  • support vitest-based consumers (#56)

Features

Changelog

Sourced from @​heroku-cli/test-utils's changelog.

1.0.0 (2026-06-11)

Performance Improvements

  • cache Config in getConfig by loadOpts (#69) (d95ac16)

Dependencies

  • bump @​heroku-cli/command from 12.3.3 to 12.4.0 (#68) (882472e)
  • bump @​oclif/core from 4.11.2 to 4.11.4 (#65) (c3cde37)

Miscellaneous Chores

0.3.0 (2026-05-14)

⚠ BREAKING CHANGES

  • support vitest-based consumers (#56)

Features

Commits
  • 295b7d4 chore(main): release test-utils 1.0.0 (#70)
  • eb46474 chore: release as 1.0.0 (#71)
  • d95ac16 perf: cache Config in getConfig by loadOpts (#69)
  • c3cde37 deps: bump @​oclif/core from 4.11.2 to 4.11.4 (#65)
  • 2871db5 deps(dev): bump the dev-patch-minor-dependencies group across 1 directory wit...
  • 882472e deps: bump @​heroku-cli/command from 12.3.3 to 12.4.0 (#68)
  • 040e8ba ci: surface deps and refactor in changelog, hide dev-dep bumps (#60)
  • 79887f1 test: migrate to vitest, drop unused sinon peer dep (#59)
  • 4df0b8c chore(main): release test-utils 0.3.0 (#57)
  • f952cc4 deps: bump @​heroku-cli/command from 12.2.0 to 12.3.3 (#52)
  • Additional commits viewable in compare view

Updates @types/node from 24.9.1 to 26.0.1

Commits

Updates ansis from 3.17.0 to 4.3.1

Release notes

Sourced from ansis's releases.

v4.3.1

Bug fixes

1. reset no longer appends a closing sequence

[!IMPORTANT] reset is now a single SGR command, not a paired open/close style. ansis.reset(value) prepends \x1b[0m and no longer appends a closing reset. If your code or snapshot tests relied on the trailing \x1b[0m, update them or add the reset explicitly (see below).

Before, reset was treated like any other style with an open and a close code, so it wrapped the value on both sides. That produced extra reset sequences in chained, nested, template literal, and multiline compositions, and the output did not match what a single reset should do.

Before:

ansis.reset('foo');
// "\x1b[0mfoo\x1b[0m"

Now:

ansis.reset('foo');
// "\x1b[0mfoo"

If you need a trailing reset, add it explicitly:

ansis.reset`foo ${ansis.red('bar')} baz` + ansis.reset();
// "\x1b[0mfoo \x1b[31mbar\x1b[39m baz\x1b[0m"

ansis.reset() without argument returns just the reset code \x1b[0m, which makes appending it easy.

2. strip() removes OSC 8 hyperlink sequences

strip() did not clear the OSC 8 sequences produced by link(). It now removes them and returns plain text:

ansis.strip(ansis.link('https://example.com', 'text'));
// "text"

3. No style leakage between instances with different color levels

Styles created on one Ansis instance could appear on another instance that was created with a different color level. That could give output rendered at the wrong color level. Now, instances are isolated, so each one keeps its own styles and level.

import { Ansis } from 'ansis';
</tr></table> 

... (truncated)

Changelog

Sourced from ansis's changelog.

4.3.1 (2026-05-31)

  • fix: remove closing reset ANSI sequence

    reset is now treated as a single SGR command, not as a paired style. This means ansis.reset(value) prepends \x1b[0m and does not append a closing reset sequence.

    Before:

    ansis.reset('foo');
    // "\x1b[0mfoo\x1b[0m"

    Now:

    ansis.reset('foo');
    // "\x1b[0mfoo"

    If a trailing reset is needed, add it explicitly:

    ansis.reset`foo ${ansis.red('bar')} baz` + ansis.reset();
    // "\x1b[0mfoo \x1b[31mbar\x1b[39m baz\x1b[0m"

    The fix removes extra reset sequences in chained, nested, template literal, and multiline style compositions where treating reset as a paired style gave wrong output.

  • fix: strip() now removes OSC 8 hyperlink sequences generated by link() ansis.strip(ansis.link(url, text)) now returns plain text

  • fix: prevent silent style leakage between Ansis instances created with different color levels

  • fix: .extend() on one Ansis instance no longer overrides styles created on other instances with different color levels

  • refactor: micro-optimisations to reduce code size

4.3.0 (2026-05-11)

  • feat: add link(url, text?) for OSC 8 hyperlinks, supported by many terminal emulators
  • feat: add constructor overload to pass a mock globalThis object for controlled color auto-detection
    import { Ansis } from 'ansis';
    const color = new Ansis({
    process: {
    env: { FORCE_COLOR: '1' },

... (truncated)

Commits
  • 3baa7aa refactor: micro-optimisations to reduce code size
  • 1914005 fix: prevent silent style leakage between Ansis instances created with differ...
  • 1d575d4 fix: fix edge cases in reset ANSI sequence generation
  • d83dd95 refactor: code micro optimisation
  • bc74986 test: add tests for style stack handling
  • fa344ef test: detected BUG in Node hasColors under Windows + Node 24 - NO_COLOR="" re...
  • 29c1412 chore: update git workflow
  • 3873dbd chore: update github templates
  • b514d49 chore: release 4.3.0
  • 8eb1334 refactor: micro optimisations
  • Additional commits viewable in compare view

Updates c8 from 10.1.3 to 11.0.0

Release notes

Sourced from c8's releases.

v11.0.0

11.0.0 (2026-02-22)

⚠ BREAKING CHANGES

  • deps: transitive deps require 20 || >=22

Bug Fixes

Changelog

Sourced from c8's changelog.

11.0.0 (2026-02-22)

⚠ BREAKING CHANGES

  • deps: transitive deps require 20 || >=22

Bug Fixes

Commits

Updates chai from 5.3.3 to 6.2.2

Release notes

Sourced from chai's releases.

v6.2.2

What's Changed

New Contributors

Full Changelog: chaijs/chai@v6.2.1...v6.2.2

v6.2.1

What's Changed

New Contributors

Full Changelog: chaijs/chai@v6.2.0...v6.2.1

... (truncated)

Commits
  • 814172d chore(deps): update dependency esbuild to v0.27.2 (#1759)
  • b38c22b chore: add legal-comments=none option (#1756)
  • 180d4cc chore(deps): update dependencies to v9.39.2 (#1757)
  • 678cd00 chore(deps): update dependencies (#1755)
  • c8fb100 chore(deps): update dependency prettier to v3.7.3 (#1754)
  • d63c74e chore(deps): update dependency eslint-plugin-jsdoc to v61.4.1 (#1751)
  • 243bf86 fix: avoid BigInt literal in closeTo for runtime compat (#1748)
  • d8b0395 chore(deps): update actions/checkout action to v6 (#1749)
  • 7e1e247 build(deps): bump glob from 10.4.5 to 10.5.0 (#1747)
  • b25e5d8 chore(deps): update dependency eslint-plugin-jsdoc to v61.2.1 (#1746)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for chai since your current version.


Updates eslint from 9.39.2 to 10.6.0

Release notes

Sourced from eslint's releases.

v10.6.0

Features

  • b1f9106 feat: detect Symbol() and BigInt() in no-constant-binary-expression (#20981) (Taejin Kim)
  • f291007 feat: add checkRelationalComparisons to no-constant-binary-expression (#20948) (sethamus)

Bug Fixes

  • 6b05784 fix: prefer-exponentiation-operator invalid autofix at statement start (#20997) (Milos Djermanovic)
  • bb9eb2a fix: account for shadowed Boolean in no-extra-boolean-cast (#21013) (den$)
  • 8fd8741 fix: don't report shadowed undefined in radix rule (#21011) (Pixel)
  • 5784980 fix: don't report shadowed undefined in no-throw-literal (#21010) (Pixel)
  • 9cd1e6d fix: suppress invalid class suggestion in no-promise-executor-return (#21008) (Pixel)
  • d4eb2dc fix: don't report shadowed undefined in prefer-promise-reject-errors (#21006) (Pixel)
  • 2360464 fix: prefer-promise-reject-errors false positives for shadowed Promise (#21003) (den$)
  • 63d52d2 fix: restore max-classes-per-file report range (#21002) (Pixel)
  • 7feaff0 fix: callback detection logic for IIFEs in max-nested-callbacks (#20979) (fnx)
  • 399a2ec fix: don't report inner non-callbacks in max-nested-callbacks (#20995) (Milos Djermanovic)

Documentation

  • a83683d docs: Update README (GitHub Actions Bot)
  • f5449f9 docs: document userland patterns for global assertionOptions in RuleT… (#20986) (playgirl)
  • bea49f7 docs: Update README (GitHub Actions Bot)
  • e5f70f9 docs: update code-path diagrams (#20984) (Tanuj Kanti)
  • 8890c2d docs: add TypeScript config guidance for MCP server (#20796) (Pierluigi Lenoci)
  • 3eb3d9b docs: Update README (GitHub Actions Bot)
  • c5bb59c docs: Update README (GitHub Actions Bot)
  • eb3c97c docs: fix grammar in prefer-const rule description (#20983) (lumir)

Chores

  • 6a42034 ci: run ecosystem tests on main branch (#20891) (sethamus)
  • 3dbacdb ci: bump actions/checkout from 6 to 7 (#21014) (dependabot[bot])
  • c3abfca chore: correct JSDoc param types in html formatter (#21018) (Minseon Kim)
  • a832320 ci: split ecosystem tests into separate jobs (#21001) (xbinaryx)
  • 27166e7 chore: update ecosystem plugins (#21005) (ESLint Bot)
  • 865d76e ci: bump pnpm/action-setup from 6.0.8 to 6.0.9 (#20989) (dependabot[bot])
  • 27a88c9 chore: update dependency markdown-it to v14 in root (#20994) (Milos Djermanovic)
  • 970cea6 chore: update dependency markdown-it to v14 (#20993) (Milos Djermanovic)
  • b482120 chore: update dependency prettier to v3.8.4 (#20990) (renovate[bot])
  • 6993fb3 chore: update ecosystem plugins (#20985) (ESLint Bot)

v10.5.0

Features

  • 5ca8c52 feat: correct stack tracking in max-nested-callbacks (#20973) (Pixel998)
  • b565783 feat: report no-with violations at the with keyword (#20971) (Pixel998)
  • 2ce032f feat: report max-lines-per-function violations at function head (#20966) (Pixel998)
  • 732cb3e feat: report max-nested-callbacks violations at function head (#20967) (Pixel998)
  • f9c138a feat: report max-depth violations on keywords (#20943) (Pixel998)
  • bdb496c feat: correct max-depth handling for else-if chains (#20944) (Pixel998)
  • c296873 feat: update error loc in max-statements to function header (#20907) (Taejin Kim)

Documentation

... (truncated)

Commits
  • 5d12a04 10.6.0
  • f7ca54b Build: changelog update for 10.6.0
  • 6a42034 ci: run ecosystem tests on main branch (#20891)
  • b1f9106 feat: detect Symbol() and BigInt() in no-constant-binary-expression (#20981)
  • 3dbacdb ci: bump actions/checkout from 6 to 7 (#21014)
  • c3abfca chore: correct JSDoc param types in html formatter (#21018)
  • a83683d docs: Update README
  • a832320 ci: split ecosystem tests into separate jobs (#21001)
  • 6b05784 fix: prefer-exponentiation-operator invalid autofix at statement start (#20997)
  • bb9eb2a fix: account for shadowed Boolean in no-extra-boolean-cast (#21013)
  • Additional commits viewable in compare view

Updates lint-staged from 16.2.7 to 17.0.8

Release notes

Sourced from lint-staged's releases.

v17.0.8

Patch Changes

  • #1809 179b437 - Fix lint-staged discarding the ongoing merge conflict status (.git/MERGE_HEAD) when using the --hide-unstaged or --hide-all options.

  • #1811 3d0b2c0 - Fix issues with Git commands that are successful but also emit warnings to stderr, by ignoring the stderr output completely when the process exits with code 0. This was the behavior when using nano-spawn and execa, but when switching to tinyexec in 16.3.0 both stdout and stderr were used as interleaved output.

v17.0.7

Patch Changes

v17.0.6

Patch Changes

  • #1803 bdf2770 - Run all tests with Deno, in addition to Node.js and Bun.

  • #1796 7508272 - Fix performance regression of lint-staged v17 by going back to using git add to stage task modifications. This was changed to git update-index --again in v17 for less manual work, but unfortunately the update-index command gets slower in very large Git repos.

  • #1797 7b2505a - This version of lint-staged uses the new staged publishing for npm packages feature. Releases are already published from GitHub Actions with trusted publishing, but now an additional approval with two-factor authentication is also required.

  • #1802 321b0a9 - Downgrade dependency tinyexec@1.2.2 to avoid issues in version 1.2.3.

v17.0.5

Patch Changes

  • #1792 1f67271 - Correctly set the --max-arg-length default value based on the running platform. This controls how very long lists of staged files are split into multiple chunks.

v17.0.4

Patch Changes

  • #1788 f95c1f8 - Another fix for making sure lint-staged adds task modifications correctly to the commit in the following cases:

    • after editing <file> it is staged with git add <file>, and then committed with git commit
    • after editing <file> it is committed with git commit --all without explicit git add
    • after editing <file> it is committed with git commit <pathspec> without explicit git add

    There's new test cases which actually setup the Git pre_commit hook to run lint-staged and verify them. These issues started in v17.0.0 when trying to improve support for committig without having explicitly staged files.

v17.0.3

Patch Changes

  • #1782 06813f9 Thanks @​iiroj! - Fix lint-staged behavior when implicitly committing files without using git add by either:
    • git commit -am "my commit message" where -a (--all) means to automatically stage all tracked modified and deleted files
    • git commit -m "my commit message" . where . is an example of a pathspec where matching files will be staged

v17.0.2

Patch Changes

... (truncated)

Changelog

Sourced from lint-staged's changelog.

17.0.8

Patch Changes

  • #1809 179b437 - Fix lint-staged discarding the ongoing merge conflict status (.git/MERGE_HEAD) when using the --hide-unstaged or --hide-all options.

  • #1811 3d0b2c0 - Fix issues with Git commands that are successful but also emit warnings to stderr, by ignoring the stderr output completely when the process exits with code 0. This was the behavior when using nano-spawn and execa, but when switching to tinyexec in 16.3.0 both stdout and stderr were used as interleaved output.

17.0.7

Patch Changes

17.0.6

Patch Changes

  • #1803 bdf2770 - Run all tests with Deno, in addition to Node.js and Bun.

  • #1796 7508272 - Fix performance regression of lint-staged v17 by going back to using git add to stage task modifications. This was changed to git update-index --again in v17 for less manual work, but unfortunately the update-index command gets slower in very large Git repos.

  • #1797 7b2505a - This version of lint-staged uses the new staged publishing for npm packages feature. Releases are already published from GitHub Actions with trusted publishing, but now an additional approval with two-factor authentication is also required.

  • #1802 321b0a9 - Downgrade dependency tinyexec@1.2.2 to avoid issues in version 1.2.3.

17.0.5

Patch Changes

  • #1792 1f67271 - Correctly set the --max-arg-length default value based on the running platform. This controls how very long lists of staged files are split into multiple chunks.

17.0.4

Patch Changes

  • #1788 f95c1f8 - Another fix for making sure lint-staged adds task modifications correctly to the commit in the following cases:

    • after editing <file> it is staged with git add <file>, and then committed with git commit
    • after editing <file> it is committed with git commit --all without explicit git add
    • after editing <file> it is committed with git commit <pathspec> without explicit git add

    There's new test cases which actually setup the Git pre_commit hook to run lint-staged and verify them. These issues started in v17.0.0 when trying to improve support for committig without having explicitly staged files.

17.0.3

Patch Changes

  • #1782 06813f9 Thanks @​iiroj! - Fix lint-staged behavior when implicitly committing files without using git add by either:
    • git commit -am "my commit message" where -a (--all) means to automatically stage all tracked modified and deleted files
    • git commit -m "my commit message" . where . is an example of a pathspec where matching files will be staged

... (truncated)

Commits
  • 5f3b8f2 Merge pull request #1812 from lint-staged/changeset-release/main
  • 43a9b8d chore(changeset): release
  • 630e2f6 Merge pull request #1809 from lint-staged/restore-merge-status
  • 179b437 fix: restore Git merge status after creating backup stash
  • 6bae2e2 Merge pull request #1811 from lint-staged/exec-git-ignore-stderr
  • b82a830 ci: run npm audit omitting dev, including prod dependencies
  • 0b19b80 build(deps): update dependencies
  • 3d0b2c0 fix: ignore stderr when doing Git operations
  • cd11fec Merge pull request #1807 from lint-staged/changeset-release/main
  • 15a8ee0 chore(changeset): release
  • Additional commits viewable in compare view

Updates mocha from 11.7.5 to 11.7.6

Release notes

Sourced from mocha's releases.

v11.7.6

11.7.6 (2026-02-14)

🩹 Fixes

  • make describe().timeout() work (aafe6fd)
  • test: replace wmic usage with native Windows API (#5694) (73ebdfa)

🧹 Chores

Changelog

Sourced from mocha's changelog.

11.7.6 (2026-02-14)

🩹 Fixes

  • make describe().timeout() work (aafe6fd)
  • test: replace wmic usage with native Windows API (#5694) (73ebdfa)

🧹 Chores

Commits

Updates nock from 14.0.15 to 14.0.16

Release notes

Sourced from nock's releases.

v14.0.16

14.0.16 (2026-06-26)

Bug Fixes

  • guard against AbortSignal-aborted requests in response handler (#2977) (2d68e8a), closes #2949
Commits

Updates oclif from 4.22.81 to 4.23.23

Release notes

Sourced from oclif's releases.

4.23.23

Bug Fixes

  • deps: bump @​oclif/plugin-warn-if-update-available (cabf031)

4.23.22

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.1068.0 to 3.1075.0 (acabb5c)

4.23.21

Bug Fixes

  • deps: bump @​oclif/plugin-help from 6.2.50 to 6.2.52 (cafe92c)

4.23.20

Bug Fixes

4.23.19

Bug Fixes

  • deps: bump semver from 7.8.4 to 7.8.5 (bef73e4)

4.23.18

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.1063.0 to 3.1073.0 (414c733)

4.23.17

Bug Fixes

  • deps: bump @​babel/core from 7.25.7 to 7.29.7 (f9221b3)

4.23.16

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.1045.0 to 3.1068.0 (49f4ce5)

4.23.15

Bug Fixes

  • deps: bump semver from 7.8.2 to 7.8.4 (d8fb49b)

4.23.14

Bug Fixes

  • deps: bump @​aws-sdk/client-s3 from 3.1053.0 to 3.1063.0 (956371b)

... (truncated)

Changelog

Sourced from oclif's changelog.

4.23.23 (2026-06-28)

Bug Fixes

  • deps: bump @​oclif/plugin-warn-if-update-available (cabf031)

4.23.22 (2026-06-28)

Bug Fixes

  • deps: bump @​aws-sdk/client-cloudfront from 3.1068.0 to 3.1075.0 (acabb5c)

4.23.21 (2026-06-23)

Bug Fixes

  • deps: bump @​oclif/plugin-help from 6.2.50 to 6.2.52 (cafe92c)

4.23.20 (2026-06-22)

Bug Fixes

4.23.19 (2026-06-22)

Bug Fixes

  • deps: bump semver from 7.8.4 to 7.8.5 (bef73e4)

4.23.18 (2026-06-22)

Bug Fixes

    ...

    Description has been truncated

…pdates

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

| Package | From | To |
| --- | --- | --- |
| [@heroku-cli/test-utils](https://github.com/heroku/heroku-cli-test-utils) | `0.2.0` | `1.0.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.9.1` | `26.0.1` |
| [ansis](https://github.com/webdiscus/ansis) | `3.17.0` | `4.3.1` |
| [c8](https://github.com/bcoe/c8) | `10.1.3` | `11.0.0` |
| [chai](https://github.com/chaijs/chai) | `5.3.3` | `6.2.2` |
| [eslint](https://github.com/eslint/eslint) | `9.39.2` | `10.6.0` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `16.2.7` | `17.0.8` |
| [mocha](https://github.com/mochajs/mocha) | `11.7.5` | `11.7.6` |
| [nock](https://github.com/nock/nock) | `14.0.15` | `14.0.16` |
| [oclif](https://github.com/oclif/oclif) | `4.22.81` | `4.23.23` |
| [prettier](https://github.com/prettier/prettier) | `3.8.3` | `3.9.1` |
| [sinon](https://github.com/sinonjs/sinon) | `21.0.1` | `22.0.0` |
| [tsx](https://github.com/privatenumber/tsx) | `4.21.0` | `4.22.4` |



Updates `@heroku-cli/test-utils` from 0.2.0 to 1.0.0
- [Release notes](https://github.com/heroku/heroku-cli-test-utils/releases)
- [Changelog](https://github.com/heroku/heroku-cli-test-utils/blob/main/CHANGELOG.md)
- [Commits](heroku/heroku-cli-test-utils@test-utils-v0.2.0...test-utils-v1.0.0)

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

Updates `ansis` from 3.17.0 to 4.3.1
- [Release notes](https://github.com/webdiscus/ansis/releases)
- [Changelog](https://github.com/webdiscus/ansis/blob/master/CHANGELOG.md)
- [Commits](webdiscus/ansis@v3.17.0...v4.3.1)

Updates `c8` from 10.1.3 to 11.0.0
- [Release notes](https://github.com/bcoe/c8/releases)
- [Changelog](https://github.com/bcoe/c8/blob/main/CHANGELOG.md)
- [Commits](bcoe/c8@v10.1.3...v11.0.0)

Updates `chai` from 5.3.3 to 6.2.2
- [Release notes](https://github.com/chaijs/chai/releases)
- [Changelog](https://github.com/chaijs/chai/blob/main/History.md)
- [Commits](chaijs/chai@v5.3.3...v6.2.2)

Updates `eslint` from 9.39.2 to 10.6.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.2...v10.6.0)

Updates `lint-staged` from 16.2.7 to 17.0.8
- [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@v16.2.7...v17.0.8)

Updates `mocha` from 11.7.5 to 11.7.6
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/v11.7.6/CHANGELOG.md)
- [Commits](mochajs/mocha@v11.7.5...v11.7.6)

Updates `nock` from 14.0.15 to 14.0.16
- [Release notes](https://github.com/nock/nock/releases)
- [Changelog](https://github.com/nock/nock/blob/main/CHANGELOG.md)
- [Commits](nock/nock@v14.0.15...v14.0.16)

Updates `oclif` from 4.22.81 to 4.23.23
- [Release notes](https://github.com/oclif/oclif/releases)
- [Changelog](https://github.com/oclif/oclif/blob/main/CHANGELOG.md)
- [Commits](oclif/oclif@4.22.81...4.23.23)

Updates `prettier` from 3.8.3 to 3.9.1
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.8.3...3.9.1)

Updates `sinon` from 21.0.1 to 22.0.0
- [Release notes](https://github.com/sinonjs/sinon/releases)
- [Changelog](https://github.com/sinonjs/sinon/blob/main/CHANGES.md)
- [Commits](sinonjs/sinon@v21.0.1...v22.0.0)

Updates `tsx` from 4.21.0 to 4.22.4
- [Release notes](https://github.com/privatenumber/tsx/releases)
- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
- [Commits](privatenumber/tsx@v4.21.0...v4.22.4)

---
updated-dependencies:
- dependency-name: "@heroku-cli/test-utils"
  dependency-version: 1.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-deps
- dependency-name: "@types/node"
  dependency-version: 26.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-deps
- dependency-name: ansis
  dependency-version: 4.3.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-deps
- dependency-name: c8
  dependency-version: 11.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-deps
- dependency-name: chai
  dependency-version: 6.2.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-deps
- dependency-name: eslint
  dependency-version: 10.6.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-deps
- dependency-name: lint-staged
  dependency-version: 17.0.8
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-deps
- dependency-name: mocha
  dependency-version: 11.7.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: nock
  dependency-version: 14.0.16
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-deps
- dependency-name: oclif
  dependency-version: 4.23.23
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: prettier
  dependency-version: 3.9.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
- dependency-name: sinon
  dependency-version: 22.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-deps
- dependency-name: tsx
  dependency-version: 4.22.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 28, 2026
@dependabot dependabot Bot requested a review from a team as a code owner June 28, 2026 19:04
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 28, 2026
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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants