Skip to content

chore(deps): bump the minor group with 24 updates#959

Merged
benbrandt merged 1 commit intomainfrom
dependabot/npm_and_yarn/minor-bea3af18af
Apr 13, 2026
Merged

chore(deps): bump the minor group with 24 updates#959
benbrandt merged 1 commit intomainfrom
dependabot/npm_and_yarn/minor-bea3af18af

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 13, 2026

Bumps the minor group with 24 updates:

Package From To
mint 4.2.488 4.2.507
prettier 3.8.1 3.8.2
@mintlify/cli 4.0.1091 4.0.1110
@mintlify/link-rot 3.0.1011 3.0.1024
@mintlify/prebuild 1.0.978 1.0.991
@mintlify/previewing 4.0.1039 4.0.1052
@stoplight/spectral-core 1.21.0 1.22.0
@types/node 25.5.2 25.6.0
bare-fs 4.6.0 4.7.0
bare-stream 2.12.0 2.13.0
brace-expansion 1.1.13 1.1.14
call-bind 1.0.8 1.0.9
es-abstract 1.24.1 1.24.2
follow-redirects 1.15.11 1.16.0
minimatch 3.1.2 3.1.5
netmask 2.0.2 2.1.1
openid-client 6.8.2 6.8.3
resolve 1.22.11 1.22.12
side-channel-list 1.0.0 1.0.1
tinyglobby 0.2.15 0.2.16
twoslash 0.3.6 0.3.7
twoslash-protocol 0.3.6 0.3.7
typescript 5.9.3 6.0.2
undici-types 7.18.2 7.19.2

Updates mint from 4.2.488 to 4.2.507

Commits

Updates prettier from 3.8.1 to 3.8.2

Release notes

Sourced from prettier's releases.

3.8.2

  • Support Angular v21.2

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.8.2

diff

Angular: Support Angular v21.2 (#18722, #19034 by @​fisker)

Exhaustive typechecking with @default never;

<!-- Input -->
@switch (foo) {
  @case (1) {}
  @default never;
}
<!-- Prettier 3.8.1 -->
SyntaxError: Incomplete block "default never". If you meant to write the @ character, you should use the "&#64;" HTML entity instead. (3:3)
<!-- Prettier 3.8.2 -->
@​switch (foo) {
@​case (1) {}
@​default never;
}

arrow function and instanceof expressions.

<!-- Input -->
@let fn = (a) =>        a?    1:2;
{{ fn ( a         instanceof b)}}
<!-- Prettier 3.8.1 -->
@​let fn = (a) =>        a?    1:2;
{{ fn ( a         instanceof b)}}
<!-- Prettier 3.8.2 -->
@​let fn = (a) => (a ? 1 : 2);
{{ fn(a instanceof b) }}

Commits

Updates @mintlify/cli from 4.0.1091 to 4.0.1110

Commits

Updates @mintlify/link-rot from 3.0.1011 to 3.0.1024

Commits

Updates @mintlify/prebuild from 1.0.978 to 1.0.991

Commits

Updates @mintlify/previewing from 4.0.1039 to 4.0.1052

Commits

Updates @stoplight/spectral-core from 1.21.0 to 1.22.0

Commits
  • b95890b chore(release): 1.22.0 [skip ci]
  • 8e442b2 chore(release): 6.15.1 [skip ci]
  • e4d0ac1 chore(release): 1.7.0 [skip ci]
  • 6944c27 chore(deps): bump lodash-es from 4.17.23 to 4.18.1 (#2930)
  • a078111 chore(deps): bump lodash to ^4.18.1 (#2931)
  • 0d6a910 feat(repo): replace skypack usage with esm cdn (#2940)
  • 26144bc feat(core): further adjustments for extending rulesets with aliases (#2939)
  • c29966f chore(deps): bump brace-expansion from 1.1.11 to 1.1.12 (#2924)
  • 659bb91 chore(deps): bump picomatch from 2.3.0 to 2.3.2 (#2921)
  • 7d7c29d chore(deps): bump handlebars from 4.7.7 to 4.7.9 (#2923)
  • Additional commits viewable in compare view

Updates @types/node from 25.5.2 to 25.6.0

Commits

Updates bare-fs from 4.6.0 to 4.7.0

Release notes

Sourced from bare-fs's releases.

v4.7.0

What's Changed

Full Changelog: holepunchto/bare-fs@v4.6.0...v4.7.0

Commits

Updates bare-stream from 2.12.0 to 2.13.0

Release notes

Sourced from bare-stream's releases.

v2.13.0

What's Changed

Full Changelog: holepunchto/bare-stream@v2.12.0...v2.13.0

Commits

Updates brace-expansion from 1.1.13 to 1.1.14

Commits

Updates call-bind from 1.0.8 to 1.0.9

Changelog

Sourced from call-bind's changelog.

v1.0.9 - 2026-04-09

Commits

  • [Fix] correct .length computation when partial args exceed function arity 95c406d
  • [Dev Deps] update @ljharb/eslint-config, es-value-fixtures, eslint, for-each, has-strict-mode, npmignore, object-inspect 06a4e21
  • [Deps] update call-bind-apply-helpers, es-define-property, get-intrinsic 3fea81e
  • [readme] replace runkit CI badge with shields.io check-runs badge 23437d4
Commits
  • 8d6a98c v1.0.9
  • 95c406d [Fix] correct .length computation when partial args exceed function arity
  • 3fea81e [Deps] update call-bind-apply-helpers, es-define-property, get-intrinsic
  • 06a4e21 [Dev Deps] update @ljharb/eslint-config, es-value-fixtures, eslint, `fo...
  • 23437d4 [readme] replace runkit CI badge with shields.io check-runs badge
  • See full diff in compare view

Updates es-abstract from 1.24.1 to 1.24.2

Changelog

Sourced from es-abstract's changelog.

1.24.2 / 2026-04-07

  • [Fix] IfAbruptCloseIterator: handle all abrupt completions, not just throw
  • [Robustness] use +x instead of Number(x)
  • [Robustness] use isFinite/parseInt intrinsics, and isNaN helper
  • [Robustness] ensure undefined is undefined
  • [patch] add a TODO to remove an unused helper
  • [Dev Deps] update @ljharb/eslint-config, npmignore
Commits
  • 9c40412 v1.24.2
  • 5f9c0c1 [Robustness] use +x instead of Number(x)
  • 9cb3440 [Fix] IfAbruptCloseIterator: handle all abrupt completions, not just throw
  • 4a61750 [patch] add a TODO to remove an unused helper
  • e69f21a [Robustness] use isFinite/parseInt intrinsics, and isNaN helper
  • ff03c92 [Robustness] ensure undefined is undefined
  • f4fc91c [Dev Deps] update @ljharb/eslint-config, npmignore
  • See full diff in compare view

Updates follow-redirects from 1.15.11 to 1.16.0

Commits
  • 0c23a22 Release version 1.16.0 of the npm package.
  • 844c4d3 Add sensitiveHeaders option.
  • 5e8b8d0 ci: add Node.js 24.x to the CI matrix
  • 7953e22 ci: upgrade GitHub Actions to use setup-node@v6 and checkout@v6
  • 86dc1f8 Sanitizing input.
  • See full diff in compare view

Updates minimatch from 3.1.2 to 3.1.5

Commits

Updates netmask from 2.0.2 to 2.1.1

Commits
  • 1cbf0e1 Bump version to 2.1.1
  • 962a9cc Restore backward-compatible exports broken in 2.1.0
  • ab1d343 Restrict published files to dist and docs
  • 35ee578 Bump version to 2.1.0
  • 0df907d Add IPv6 support with unified Netmask class
  • 5389154 Convert codebase from CoffeeScript to TypeScript
  • 879e53d Merge pull request #57 from ai/patch-1
  • 4bfde0b Remove dev files to make npm smaller
  • d496bbc Merge pull request #55 from rs/dependabot/github_actions/actions/setup-node-4
  • 09e7029 Bump actions/setup-node from 3 to 4
  • Additional commits viewable in compare view
Install script changes

This version modifies prepublish script that runs during installation. Review the package contents before updating.


Updates openid-client from 6.8.2 to 6.8.3

Release notes

Sourced from openid-client's releases.

v6.8.3

Documentation

  • note a workaround for redirect_uri with query string or bare origin (e9689de), closes #868

Fixes

  • passport: delete one-time state on callback (1e7dd2e)
Changelog

Sourced from openid-client's changelog.

6.8.3 (2026-04-13)

Documentation

  • note a workaround for redirect_uri with query string or bare origin (e9689de), closes #868

Fixes

  • passport: delete one-time state on callback (1e7dd2e)
Commits
  • 66e4082 chore(release): 6.8.3
  • fa292f2 test: fix typings build issues
  • 0600c91 test: deflake pollBackchannelAuthenticationGrant
  • 1e7dd2e fix(passport): delete one-time state on callback
  • da961e2 test: add coverage the passport strategy
  • 14a2d38 chore: bump packages
  • c64adc8 chore: fix typings in the example
  • 70cc56e chore: node --run format
  • e9689de docs: note a workaround for redirect_uri with query string or bare origin
  • a3ffaef example: update dpop example to respect the token_type
  • Additional commits viewable in compare view

Updates resolve from 1.22.11 to 1.22.12

Commits
  • d2d30de v1.22.12
  • 655c3db [Fix] defaultPaths: handle null homedir gracefully
  • 0cec52b [Fix] homedir: fix operator precedence bug with HOMEDRIVE/HOMEPATH concaten...
  • a93a913 [Fix] loadpkg: add missing return after error callback to prevent double-...
  • eeb965e [meta] update security policy to use GitHub PVR instead of Tidelift
  • 7929ac1 [Test] add test from v2 branch
  • 9fcaf60 [Refactor] use non-hoisted declarations instead of expressions
  • 4c6db66 [Robustness] use es-errors
  • 29bac90 [readme] replace runkit CI badge with shields.io check-runs badge
  • 651f4d1 [Performance] avoid an unnecessary slice
  • Additional commits viewable in compare view

Updates side-channel-list from 1.0.0 to 1.0.1

Changelog

Sourced from side-channel-list's changelog.

[v1.0.1](https://github.com/ljharb/side-channel-list.git

/compare/v1.0.0...v1.0.1) - 2026-04-08

Fixed

Commits

Commits
  • 0d8f74e v1.0.1
  • 9c068e5 [Fix] delete: do not reset the list when deleting the head node of a multi-...
  • 9e79e6b [actions] update workflows
  • 9f0f4b8 [Deps] update object-inspect
  • babf3ca [Deps] update @arethetypeswrong/cli, @ljharb/eslint-config, `@ljharb/tsco...
  • See full diff in compare view

Updates tinyglobby from 0.2.15 to 0.2.16

Release notes

Sourced from tinyglobby's releases.

0.2.16

Fixed

Changed

  • Overhauled and optimized most internals by @​Torathion
  • Ignore patterns are no longer compiled twice by @​webpro

Consider sponsoring if you'd like to support the development of this project and the goal of reaching a lighter and faster ecosystem

Changelog

Sourced from tinyglobby's changelog.

0.2.16

Fixed

Changed

  • Overhauled and optimized most internals by Torathion
  • Ignore patterns are no longer compiled twice by webpro
Commits
  • 5779202 release 0.2.16
  • 071954f bump deps once more
  • e541dde do not import the whole fs module
  • 2381b76 fix root being too broad
  • 0addeb9 chore(deps): update all non-major dependencies (#191)
  • 91ac26c chore(deps): update pnpm/action-setup action to v5 (#192)
  • c50558e upgrade picomatch (and everything else)
  • 6185175 chore(deps): update dependency picomatch to v4.0.4 [security] (#193)
  • 49c2b93 enable pnpm trustPolicy
  • bc825c4 chore(deps): update all non-major dependencies (#181)
  • Additional commits viewable in compare view

Updates twoslash from 0.3.6 to 0.3.7

Release notes

Sourced from twoslash's releases.

v0.3.7

   🚀 Features

    View changes on GitHub
Commits

Updates twoslash-protocol from 0.3.6 to 0.3.7

Release notes

Sourced from twoslash-protocol's releases.

v0.3.7

   🚀 Features

    View changes on GitHub
Commits

Updates typescript from 5.9.3 to 6.0.2

Release notes

Sourced from typescript's releases.

TypeScript 6.0

For release notes, check out the release announcement blog post.

Downloads are available on:

TypeScript 6.0 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits

Updates undici-types from 7.18.2 to 7.19.2

Release notes

Sourced from undici-types's releases.

v7.19.2

What's Changed

New Contributors

Full Changelog: nodejs/undici@v7.19.1...v7.19.2

v7.19.1

What's Changed

New Contributors

Full Changelog: nodejs/undici@v7.19.0...v7.19.1

v7.19.0

What's Changed

New Contributors

Full Changelog: nodejs/undici@v7.18.2...v7.19.0

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the minor group with 24 updates:

| Package | From | To |
| --- | --- | --- |
| [mint](https://github.com/mintlify/mint/tree/HEAD/packages/mint) | `4.2.488` | `4.2.507` |
| [prettier](https://github.com/prettier/prettier) | `3.8.1` | `3.8.2` |
| [@mintlify/cli](https://github.com/mintlify/mint/tree/HEAD/packages/cli) | `4.0.1091` | `4.0.1110` |
| [@mintlify/link-rot](https://github.com/mintlify/mint/tree/HEAD/packages/link-rot) | `3.0.1011` | `3.0.1024` |
| [@mintlify/prebuild](https://github.com/mintlify/mint/tree/HEAD/packages/prebuild) | `1.0.978` | `1.0.991` |
| [@mintlify/previewing](https://github.com/mintlify/mint/tree/HEAD/packages/previewing) | `4.0.1039` | `4.0.1052` |
| [@stoplight/spectral-core](https://github.com/stoplightio/spectral) | `1.21.0` | `1.22.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.5.2` | `25.6.0` |
| [bare-fs](https://github.com/holepunchto/bare-fs) | `4.6.0` | `4.7.0` |
| [bare-stream](https://github.com/holepunchto/bare-stream) | `2.12.0` | `2.13.0` |
| [brace-expansion](https://github.com/juliangruber/brace-expansion) | `1.1.13` | `1.1.14` |
| [call-bind](https://github.com/ljharb/call-bind) | `1.0.8` | `1.0.9` |
| [es-abstract](https://github.com/ljharb/es-abstract) | `1.24.1` | `1.24.2` |
| [follow-redirects](https://github.com/follow-redirects/follow-redirects) | `1.15.11` | `1.16.0` |
| [minimatch](https://github.com/isaacs/minimatch) | `3.1.2` | `3.1.5` |
| [netmask](https://github.com/rs/node-netmask) | `2.0.2` | `2.1.1` |
| [openid-client](https://github.com/panva/openid-client) | `6.8.2` | `6.8.3` |
| [resolve](https://github.com/browserify/resolve) | `1.22.11` | `1.22.12` |
| [side-channel-list](https://github.com/ljharb/side-channel-list) | `1.0.0` | `1.0.1` |
| [tinyglobby](https://github.com/SuperchupuDev/tinyglobby) | `0.2.15` | `0.2.16` |
| [twoslash](https://github.com/twoslashes/twoslash/tree/HEAD/packages/twoslash) | `0.3.6` | `0.3.7` |
| [twoslash-protocol](https://github.com/twoslashes/twoslash/tree/HEAD/packages/twoslash-protocol) | `0.3.6` | `0.3.7` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `6.0.2` |
| [undici-types](https://github.com/nodejs/undici) | `7.18.2` | `7.19.2` |


Updates `mint` from 4.2.488 to 4.2.507
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/mint)

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

Updates `@mintlify/cli` from 4.0.1091 to 4.0.1110
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/cli)

Updates `@mintlify/link-rot` from 3.0.1011 to 3.0.1024
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/link-rot)

Updates `@mintlify/prebuild` from 1.0.978 to 1.0.991
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/prebuild)

Updates `@mintlify/previewing` from 4.0.1039 to 4.0.1052
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/previewing)

Updates `@stoplight/spectral-core` from 1.21.0 to 1.22.0
- [Release notes](https://github.com/stoplightio/spectral/releases)
- [Changelog](https://github.com/stoplightio/spectral/blob/develop/CHANGELOG.md)
- [Commits](https://github.com/stoplightio/spectral/compare/@stoplight/spectral-core-1.21.0...@stoplight/spectral-core-1.22.0)

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

Updates `bare-fs` from 4.6.0 to 4.7.0
- [Release notes](https://github.com/holepunchto/bare-fs/releases)
- [Commits](holepunchto/bare-fs@v4.6.0...v4.7.0)

Updates `bare-stream` from 2.12.0 to 2.13.0
- [Release notes](https://github.com/holepunchto/bare-stream/releases)
- [Commits](holepunchto/bare-stream@v2.12.0...v2.13.0)

Updates `brace-expansion` from 1.1.13 to 1.1.14
- [Release notes](https://github.com/juliangruber/brace-expansion/releases)
- [Commits](juliangruber/brace-expansion@v1.1.13...v1.1.14)

Updates `call-bind` from 1.0.8 to 1.0.9
- [Changelog](https://github.com/ljharb/call-bind/blob/main/CHANGELOG.md)
- [Commits](ljharb/call-bind@v1.0.8...v1.0.9)

Updates `es-abstract` from 1.24.1 to 1.24.2
- [Changelog](https://github.com/ljharb/es-abstract/blob/main/CHANGELOG.md)
- [Commits](ljharb/es-abstract@v1.24.1...v1.24.2)

Updates `follow-redirects` from 1.15.11 to 1.16.0
- [Release notes](https://github.com/follow-redirects/follow-redirects/releases)
- [Commits](follow-redirects/follow-redirects@v1.15.11...v1.16.0)

Updates `minimatch` from 3.1.2 to 3.1.5
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v3.1.2...v3.1.5)

Updates `netmask` from 2.0.2 to 2.1.1
- [Changelog](https://github.com/rs/node-netmask/blob/master/CHANGELOG.md)
- [Commits](rs/node-netmask@2.0.2...2.1.1)

Updates `openid-client` from 6.8.2 to 6.8.3
- [Release notes](https://github.com/panva/openid-client/releases)
- [Changelog](https://github.com/panva/openid-client/blob/main/CHANGELOG.md)
- [Commits](panva/openid-client@v6.8.2...v6.8.3)

Updates `resolve` from 1.22.11 to 1.22.12
- [Commits](browserify/resolve@v1.22.11...v1.22.12)

Updates `side-channel-list` from 1.0.0 to 1.0.1
- [Changelog](https://github.com/ljharb/side-channel-list/blob/main/CHANGELOG.md)
- [Commits](ljharb/side-channel-list@v1.0.0...v1.0.1)

Updates `tinyglobby` from 0.2.15 to 0.2.16
- [Release notes](https://github.com/SuperchupuDev/tinyglobby/releases)
- [Changelog](https://github.com/SuperchupuDev/tinyglobby/blob/main/CHANGELOG.md)
- [Commits](SuperchupuDev/tinyglobby@0.2.15...0.2.16)

Updates `twoslash` from 0.3.6 to 0.3.7
- [Release notes](https://github.com/twoslashes/twoslash/releases)
- [Commits](https://github.com/twoslashes/twoslash/commits/v0.3.7/packages/twoslash)

Updates `twoslash-protocol` from 0.3.6 to 0.3.7
- [Release notes](https://github.com/twoslashes/twoslash/releases)
- [Commits](https://github.com/twoslashes/twoslash/commits/v0.3.7/packages/twoslash-protocol)

Updates `typescript` from 5.9.3 to 6.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.2)

Updates `undici-types` from 7.18.2 to 7.19.2
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](nodejs/undici@v7.18.2...v7.19.2)

---
updated-dependencies:
- dependency-name: mint
  dependency-version: 4.2.507
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: prettier
  dependency-version: 3.8.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/cli"
  dependency-version: 4.0.1110
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/link-rot"
  dependency-version: 3.0.1024
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/prebuild"
  dependency-version: 1.0.991
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/previewing"
  dependency-version: 4.0.1052
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@stoplight/spectral-core"
  dependency-version: 1.22.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@types/node"
  dependency-version: 25.6.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: bare-fs
  dependency-version: 4.7.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: bare-stream
  dependency-version: 2.13.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: brace-expansion
  dependency-version: 1.1.14
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: call-bind
  dependency-version: 1.0.9
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: es-abstract
  dependency-version: 1.24.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: follow-redirects
  dependency-version: 1.16.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: minimatch
  dependency-version: 3.1.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: netmask
  dependency-version: 2.1.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: openid-client
  dependency-version: 6.8.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: resolve
  dependency-version: 1.22.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: side-channel-list
  dependency-version: 1.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: tinyglobby
  dependency-version: 0.2.16
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: twoslash
  dependency-version: 0.3.7
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: twoslash-protocol
  dependency-version: 0.3.7
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: typescript
  dependency-version: 6.0.2
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: minor
- dependency-name: undici-types
  dependency-version: 7.19.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner April 13, 2026 15:32
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 13, 2026
@benbrandt benbrandt merged commit 29e4a68 into main Apr 13, 2026
2 checks passed
@benbrandt benbrandt deleted the dependabot/npm_and_yarn/minor-bea3af18af branch April 13, 2026 15:35
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.

1 participant