Skip to content

Bump the updates group across 1 directory with 25 updates#22

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/updates-486eb29997
Closed

Bump the updates group across 1 directory with 25 updates#22
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/updates-486eb29997

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 15, 2026

Bumps the updates group with 20 updates in the / directory:

Package From To
@clack/prompts 1.1.0 1.2.0
@itwin/core-backend 5.7.2 5.8.1
@itwin/imodels-access-backend 6.0.2 6.1.0
@itwin/imodels-access-common 6.0.2 6.1.0
@itwin/itwins-client 2.5.2 2.5.4
@itwin/node-cli-authorization 3.0.2 3.0.3
@itwin/object-storage-azure 3.0.4 3.0.5
@itwin/object-storage-core 3.0.4 3.0.5
@itwin/object-storage-google 3.0.4 3.0.5
@modelcontextprotocol/sdk 1.27.1 1.29.0
axios 1.13.6 1.15.0
globby 16.1.1 16.2.0
@types/node 25.5.0 25.6.0
@vitest/coverage-v8 4.1.0 4.1.4
esbuild 0.27.4 0.28.0
esbuild-node-externals 1.20.1 1.22.0
eslint 10.0.3 10.2.0
globals 17.4.0 17.5.0
typescript 5.9.3 6.0.2
typescript-eslint 8.57.1 8.58.2

Updates @clack/prompts from 1.1.0 to 1.2.0

Release notes

Sourced from @​clack/prompts's releases.

@​clack/prompts@​1.2.0

Minor Changes

  • 9786226: Externalize fast-string-width and fast-wrap-ansi to avoid double dependencies
  • 090902c: Adds date prompt with format support (YMD, MDY, DMY)

Patch Changes

  • 134a1a1: Fix the path prompt so directory: true correctly enforces directory-only selection while still allowing directory navigation, and add regression tests for both directory and default file selection behavior.
  • bdf89a5: Adds placeholder option to autocomplete. When the placeholder is set and the input is empty, pressing tab will set the value to placeholder.
  • 336495a: Apply guide to wrapped multi-line messages in confirm prompt.
  • 9fe8de6: Respect withGuide: false in autocomplete and multiselect prompts.
  • 29a50cb: Fix path directory mode so pressing Enter with an existing directory initialValue submits that current directory instead of the first child option, and add regression coverage for immediate submit and child-directory navigation.
  • Updated dependencies [9786226]
  • Updated dependencies [bdf89a5]
  • Updated dependencies [417b451]
  • Updated dependencies [090902c]
    • @​clack/core@​1.2.0
Changelog

Sourced from @​clack/prompts's changelog.

1.2.0

Minor Changes

  • 9786226: Externalize fast-string-width and fast-wrap-ansi to avoid double dependencies
  • 090902c: Adds date prompt with format support (YMD, MDY, DMY)

Patch Changes

  • 134a1a1: Fix the path prompt so directory: true correctly enforces directory-only selection while still allowing directory navigation, and add regression tests for both directory and default file selection behavior.
  • bdf89a5: Adds placeholder option to autocomplete. When the placeholder is set and the input is empty, pressing tab will set the value to placeholder.
  • 336495a: Apply guide to wrapped multi-line messages in confirm prompt.
  • 9fe8de6: Respect withGuide: false in autocomplete and multiselect prompts.
  • 29a50cb: Fix path directory mode so pressing Enter with an existing directory initialValue submits that current directory instead of the first child option, and add regression coverage for immediate submit and child-directory navigation.
  • Updated dependencies [9786226]
  • Updated dependencies [bdf89a5]
  • Updated dependencies [417b451]
  • Updated dependencies [090902c]
    • @​clack/core@​1.2.0
Commits
  • aa488fc [ci] release (#482)
  • 9fe8de6 feat: respect withGuide: false in autocomplete and multiselect prompts (#500)
  • 001351e test: specify locale in tests (#497)
  • 336495a fix: correctly wrap multi-line messages in confirm prompt (#495)
  • ffbdcb0 [ci] format
  • fe32e13 ref(dates): adjust date interface (#487)
  • bdf89a5 feat(prompts,core): make autocomplete placeholder tabbable (#485)
  • 52fce8a fix(date): resolve timezone issues in DatePrompt (#486)
  • 090902c feat(core, prompts): add DatePrompt for date input with customizable formats ...
  • 29a50cb fix(prompts): submit initial directory value in path prompt (#484)
  • Additional commits viewable in compare view

Updates @itwin/core-backend from 5.7.2 to 5.8.1

Release notes

Sourced from @​itwin/core-backend's releases.

v5.8.1

Release notes

Changes

  • Security: fix high CVE GHSA-p9ff-h696-f583 (vite arbitrary file read) (backport #9174) [release/5.8.x] (#9178)
  • Security: fix high/critical CVEs (GHSA-3p68-rc4w-qgx5 and 14 others) (backport #9184) [release/5.8.x] (#9185)
  • Presentation: Fix content traverser (createContentTraverser) creating invalid fields hierarchy when array properties are nested under NestedContentField (backport #9188) [release/5.8.x] (#9189)

Full changelog: 5.8.0...5.8.1

v5.8.0

A new withQueryReader method has been added to both ECDb and IModelDb, providing true row-by-row behavior for ECSQL queries with synchronous execution. This API introduces a new ECSqlSyncReader through the ECSqlRowExecutor and supports configuration via SynchronousQueryOptions.

Key Features:

  • True row-by-row streaming: Unlike the existing async reader APIs, withQueryReader provides synchronous row-by-row access to query results
  • Consistent API across databases: The same interface is available on both ECDb and IModelDb instances
  • Configurable behavior: Support for various query options through SynchronousQueryOptions

Usage Examples:

// ECDb usage
db.withQueryReader("SELECT ECInstanceId, UserLabel FROM bis.Element LIMIT 100", (reader) => {
  while (reader.step()) {
    const row = reader.current;
    console.log(`ID: ${row.id}, Label: ${row.userLabel}`);
</tr></table> 

... (truncated)

Changelog

Sourced from @​itwin/core-backend's changelog.

5.8.1

Fri, 10 Apr 2026 13:02:00 GMT

Version update only

5.8.0

Thu, 02 Apr 2026 18:19:33 GMT

Patches

  • Fix operator precedence bug in WorkspaceImpl.getContainerAsync that silently discarded explicit access tokens

Updates

  • For StandaloneDb make sure to delete txns
  • Remove unnecessary warning when calling IModelDb.saveChanges with no unsaved changes.
  • QueryBinder should not fail on bind empty array
  • Fix WorkspaceDb/SettingsDb instance caching, cloud version defaulting, and getSetting prototype-chain guard.
  • Added SettingsDb and SettingsEditor APIs for dedicated JSON settings storage, separate from WorkspaceDb.
  • Fix nested Error objects losing non-enumerable properties (message, stack) during IPC serialization in IpcHandler
  • Added withQueryReader to ECDb and iModel and also created ECSqlSyncReader to query imodels in true row by row fashion

5.7.3

Tue, 24 Mar 2026 14:29:17 GMT

Version update only

Commits

Updates @itwin/core-bentley from 5.7.2 to 5.8.1

Release notes

Sourced from @​itwin/core-bentley's releases.

v5.8.1

Release notes

Changes

  • Security: fix high CVE GHSA-p9ff-h696-f583 (vite arbitrary file read) (backport #9174) [release/5.8.x] (#9178)
  • Security: fix high/critical CVEs (GHSA-3p68-rc4w-qgx5 and 14 others) (backport #9184) [release/5.8.x] (#9185)
  • Presentation: Fix content traverser (createContentTraverser) creating invalid fields hierarchy when array properties are nested under NestedContentField (backport #9188) [release/5.8.x] (#9189)

Full changelog: 5.8.0...5.8.1

v5.8.0

A new withQueryReader method has been added to both ECDb and IModelDb, providing true row-by-row behavior for ECSQL queries with synchronous execution. This API introduces a new ECSqlSyncReader through the ECSqlRowExecutor and supports configuration via SynchronousQueryOptions.

Key Features:

  • True row-by-row streaming: Unlike the existing async reader APIs, withQueryReader provides synchronous row-by-row access to query results
  • Consistent API across databases: The same interface is available on both ECDb and IModelDb instances
  • Configurable behavior: Support for various query options through SynchronousQueryOptions

Usage Examples:

// ECDb usage
db.withQueryReader("SELECT ECInstanceId, UserLabel FROM bis.Element LIMIT 100", (reader) => {
  while (reader.step()) {
    const row = reader.current;
    console.log(`ID: ${row.id}, Label: ${row.userLabel}`);
</tr></table> 

... (truncated)

Changelog

Sourced from @​itwin/core-bentley's changelog.

5.8.1

Fri, 10 Apr 2026 13:02:00 GMT

Version update only

5.8.0

Thu, 02 Apr 2026 18:19:33 GMT

Version update only

5.7.3

Tue, 24 Mar 2026 14:29:17 GMT

Version update only

Commits

Updates @itwin/core-common from 5.7.2 to 5.8.1

Release notes

Sourced from @​itwin/core-common's releases.

v5.8.1

Release notes

Changes

  • Security: fix high CVE GHSA-p9ff-h696-f583 (vite arbitrary file read) (backport #9174) [release/5.8.x] (#9178)
  • Security: fix high/critical CVEs (GHSA-3p68-rc4w-qgx5 and 14 others) (backport #9184) [release/5.8.x] (#9185)
  • Presentation: Fix content traverser (createContentTraverser) creating invalid fields hierarchy when array properties are nested under NestedContentField (backport #9188) [release/5.8.x] (#9189)

Full changelog: 5.8.0...5.8.1

v5.8.0

A new withQueryReader method has been added to both ECDb and IModelDb, providing true row-by-row behavior for ECSQL queries with synchronous execution. This API introduces a new ECSqlSyncReader through the ECSqlRowExecutor and supports configuration via SynchronousQueryOptions.

Key Features:

  • True row-by-row streaming: Unlike the existing async reader APIs, withQueryReader provides synchronous row-by-row access to query results
  • Consistent API across databases: The same interface is available on both ECDb and IModelDb instances
  • Configurable behavior: Support for various query options through SynchronousQueryOptions

Usage Examples:

// ECDb usage
db.withQueryReader("SELECT ECInstanceId, UserLabel FROM bis.Element LIMIT 100", (reader) => {
  while (reader.step()) {
    const row = reader.current;
    console.log(`ID: ${row.id}, Label: ${row.userLabel}`);
</tr></table> 

... (truncated)

Changelog

Sourced from @​itwin/core-common's changelog.

5.8.1

Fri, 10 Apr 2026 13:02:00 GMT

Version update only

5.8.0

Thu, 02 Apr 2026 18:19:33 GMT

Updates

  • Optimize DisplayStyleSettings performance, when modifying sub-category and model appearance overrides, reality model display settings and planar clip masks.
  • Support for binding range3d
  • QueryBinder should not fail on bind empty array
  • Minor bump on IModelReadRpcInterface.interfaceVersion.
  • Add common DbCloudContainerInfo interface for metadata display
  • Added ECSqlReaderBase api which will act as a base point for both the async and sync version of ECSqlReader

5.7.3

Tue, 24 Mar 2026 14:29:17 GMT

Version update only

Commits

Updates @itwin/ecschema-metadata from 5.7.2 to 5.8.1

Release notes

Sourced from @​itwin/ecschema-metadata's releases.

v5.8.1

Release notes

Changes

  • Security: fix high CVE GHSA-p9ff-h696-f583 (vite arbitrary file read) (backport #9174) [release/5.8.x] (#9178)
  • Security: fix high/critical CVEs (GHSA-3p68-rc4w-qgx5 and 14 others) (backport #9184) [release/5.8.x] (#9185)
  • Presentation: Fix content traverser (createContentTraverser) creating invalid fields hierarchy when array properties are nested under NestedContentField (backport #9188) [release/5.8.x] (#9189)

Full changelog: 5.8.0...5.8.1

v5.8.0

A new withQueryReader method has been added to both ECDb and IModelDb, providing true row-by-row behavior for ECSQL queries with synchronous execution. This API introduces a new ECSqlSyncReader through the ECSqlRowExecutor and supports configuration via SynchronousQueryOptions.

Key Features:

  • True row-by-row streaming: Unlike the existing async reader APIs, withQueryReader provides synchronous row-by-row access to query results
  • Consistent API across databases: The same interface is available on both ECDb and IModelDb instances
  • Configurable behavior: Support for various query options through SynchronousQueryOptions

Usage Examples:

// ECDb usage
db.withQueryReader("SELECT ECInstanceId, UserLabel FROM bis.Element LIMIT 100", (reader) => {
  while (reader.step()) {
    const row = reader.current;
    console.log(`ID: ${row.id}, Label: ${row.userLabel}`);
</tr></table> 

... (truncated)

Changelog

Sourced from @​itwin/ecschema-metadata's changelog.

5.8.1

Fri, 10 Apr 2026 13:02:00 GMT

Version update only

5.8.0

Thu, 02 Apr 2026 18:19:33 GMT

Version update only

5.7.3

Tue, 24 Mar 2026 14:29:17 GMT

Version update only

Commits

Updates @itwin/imodels-access-backend from 6.0.2 to 6.1.0

Commits
  • 97ce43d Version bump: Interop packages 6.1.0, Client packages 6.1.0
  • dec57b3 Add recent and favorite iModels operations (#332)
  • 29b05ae Update dependencies (#330)
  • c9de6d2 Expose IModelsClient from itwin-platform-access (#322)
  • 33f6916 refactor: update AtLeastOneProperty type definition for improved clarity (#326)
  • dd30050 Update node version to 22.11.0 (#327)
  • c356f6f Create add-triage-label-to-issue.yml (#324)
  • See full diff in compare view

Updates @itwin/imodels-access-common from 6.0.2 to 6.1.0

Commits
  • 97ce43d Version bump: Interop packages 6.1.0, Client packages 6.1.0
  • dec57b3 Add recent and favorite iModels operations (#332)
  • 29b05ae Update dependencies (#330)
  • c9de6d2 Expose IModelsClient from itwin-platform-access (#322)
  • 33f6916 refactor: update AtLeastOneProperty type definition for improved clarity (#326)
  • dd30050 Update node version to 22.11.0 (#327)
  • c356f6f Create add-triage-label-to-issue.yml (#324)
  • See full diff in compare view

Updates @itwin/imodels-client-authoring from 6.0.2 to 6.1.0

Commits
  • 97ce43d Version bump: Interop packages 6.1.0, Client packages 6.1.0
  • dec57b3 Add recent and favorite iModels operations (#332)
  • 29b05ae Update dependencies (#330)
  • c9de6d2 Expose IModelsClient from itwin-platform-access (#322)
  • 33f6916 refactor: update AtLeastOneProperty type definition for improved clarity (#326)
  • dd30050 Update node version to 22.11.0 (#327)
  • c356f6f Create add-triage-label-to-issue.yml (#324)
  • See full diff in compare view

Updates @itwin/itwins-client from 2.5.2 to 2.5.4

Release notes

Sourced from @​itwin/itwins-client's releases.

v2.5.4

Patch Changes

2.5.4 - 2026-03-26

Fixed audit issue coming from changesets cli

v2.5.3

Patch Changes

2.5.3 - 2026-03-19

Fixed audit issues with dev packages

Changelog

Sourced from @​itwin/itwins-client's changelog.

2.5.4

Patch Changes

2.5.4 - 2026-03-26

Fixed audit issue coming from changesets cli

2.5.3

Patch Changes

2.5.3 - 2026-03-19

Fixed audit issues with dev packages

Commits

Updates @itwin/node-cli-authorization from 3.0.2 to 3.0.3

Changelog

Sourced from @​itwin/node-cli-authorization's changelog.

3.0.3

Mon, 30 Mar 2026 16:53:21 GMT

Patches

Commits
  • a7a2885 Version bump [skip actions][publish docs]
  • 517ef25 Consume @​itwin/eslint-plugin 6.0.0, update linting, remove a pnpm override (#...
  • 12e74f6 Version bump [skip actions][publish docs]
  • cda99a0 Fix high severity audit issues (#327)
  • See full diff in compare view

Updates @itwin/object-storage-azure from 3.0.4 to 3.0.5

Commits

Updates @itwin/object-storage-core from 3.0.4 to 3.0.5

Commits

Updates @itwin/object-storage-google from 3.0.4 to 3.0.5

Commits

Updates @modelcontextprotocol/sdk from 1.27.1 to 1.29.0

Release notes

Sourced from @​modelcontextprotocol/sdk's releases.

v1.29.0

What's Changed

New Contributors

Full Changelog: modelcontextprotocol/typescript-sdk@v1.28.0...v1.29.0

v1.28.0

What's Changed

New Contributors

Full Changelog: modelcontextprotocol/typescript-sdk@v1.27.1...v1.28.0

Commits

Updates axios from 1.13.6 to 1.15.0

Release notes

Sourced from axios's releases.

v1.15.0

This release delivers two critical security patches, adds runtime support for Deno and Bun, and includes significant CI hardening, documentation improvements, and routine dependency updates.

⚠️ Important Changes

  • Deprecation: url.parse() usage has been replaced to address Node.js deprecation warnings. If you are on a recent version of Node.js, this resolves console warnings you may have been seeing. (#10625)

🔒 Security Fixes

  • Proxy Handling: Fixed a no_proxy hostname normalisation bypass that could lead to Server-Side Request Forgery (SSRF). (#10661)
  • Header Injection: Fixed an unrestricted cloud metadata exfiltration vulnerability via a header injection chain. (#10660)

🚀 New Features

  • Runtime Support: Added compatibility checks and documentation for Deno and Bun environments. (#10652, #10653)

🔧 Maintenance & Chores

  • CI Security: Hardened workflow permissions to least privilege, added the zizmor security scanner, pinned action versions, and gated npm publishing with OIDC and environment protection. (#10618, #10619, #10627, #10637, #10666)
  • Dependencies: Bumped serialize-javascript, handlebars, picomatch, vite, and denoland/setup-deno to latest versions. Added a 7-day Dependabot cooldown period. (#10574, #10572, #10568, #10663, #10664, #10665, #10669, #10670,

Bumps the updates group with 20 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@clack/prompts](https://github.com/bombshell-dev/clack/tree/HEAD/packages/prompts) | `1.1.0` | `1.2.0` |
| [@itwin/core-backend](https://github.com/iTwin/itwinjs-core/tree/HEAD/core/backend) | `5.7.2` | `5.8.1` |
| [@itwin/imodels-access-backend](https://github.com/iTwin/imodels-clients) | `6.0.2` | `6.1.0` |
| [@itwin/imodels-access-common](https://github.com/iTwin/imodels-clients) | `6.0.2` | `6.1.0` |
| [@itwin/itwins-client](https://github.com/iTwin/itwins-client) | `2.5.2` | `2.5.4` |
| [@itwin/node-cli-authorization](https://github.com/iTwin/auth-clients/tree/HEAD/packages/node-cli) | `3.0.2` | `3.0.3` |
| [@itwin/object-storage-azure](https://github.com/iTwin/object-storage) | `3.0.4` | `3.0.5` |
| [@itwin/object-storage-core](https://github.com/iTwin/object-storage) | `3.0.4` | `3.0.5` |
| [@itwin/object-storage-google](https://github.com/iTwin/object-storage) | `3.0.4` | `3.0.5` |
| [@modelcontextprotocol/sdk](https://github.com/modelcontextprotocol/typescript-sdk) | `1.27.1` | `1.29.0` |
| [axios](https://github.com/axios/axios) | `1.13.6` | `1.15.0` |
| [globby](https://github.com/sindresorhus/globby) | `16.1.1` | `16.2.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.5.0` | `25.6.0` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.1.0` | `4.1.4` |
| [esbuild](https://github.com/evanw/esbuild) | `0.27.4` | `0.28.0` |
| [esbuild-node-externals](https://github.com/pradel/esbuild-node-externals) | `1.20.1` | `1.22.0` |
| [eslint](https://github.com/eslint/eslint) | `10.0.3` | `10.2.0` |
| [globals](https://github.com/sindresorhus/globals) | `17.4.0` | `17.5.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `6.0.2` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.57.1` | `8.58.2` |



Updates `@clack/prompts` from 1.1.0 to 1.2.0
- [Release notes](https://github.com/bombshell-dev/clack/releases)
- [Changelog](https://github.com/bombshell-dev/clack/blob/main/packages/prompts/CHANGELOG.md)
- [Commits](https://github.com/bombshell-dev/clack/commits/@clack/[email protected]/packages/prompts)

Updates `@itwin/core-backend` from 5.7.2 to 5.8.1
- [Release notes](https://github.com/iTwin/itwinjs-core/releases)
- [Changelog](https://github.com/iTwin/itwinjs-core/blob/master/core/backend/CHANGELOG.md)
- [Commits](https://github.com/iTwin/itwinjs-core/commits/release/5.8.1/core/backend)

Updates `@itwin/core-bentley` from 5.7.2 to 5.8.1
- [Release notes](https://github.com/iTwin/itwinjs-core/releases)
- [Changelog](https://github.com/iTwin/itwinjs-core/blob/master/core/bentley/CHANGELOG.md)
- [Commits](https://github.com/iTwin/itwinjs-core/commits/release/5.8.1/core/bentley)

Updates `@itwin/core-common` from 5.7.2 to 5.8.1
- [Release notes](https://github.com/iTwin/itwinjs-core/releases)
- [Changelog](https://github.com/iTwin/itwinjs-core/blob/master/core/common/CHANGELOG.md)
- [Commits](https://github.com/iTwin/itwinjs-core/commits/release/5.8.1/core/common)

Updates `@itwin/ecschema-metadata` from 5.7.2 to 5.8.1
- [Release notes](https://github.com/iTwin/itwinjs-core/releases)
- [Changelog](https://github.com/iTwin/itwinjs-core/blob/master/core/ecschema-metadata/CHANGELOG.md)
- [Commits](https://github.com/iTwin/itwinjs-core/commits/release/5.8.1/core/ecschema-metadata)

Updates `@itwin/imodels-access-backend` from 6.0.2 to 6.1.0
- [Commits](iTwin/imodels-clients@clients/6.0.2...clients/6.1.0)

Updates `@itwin/imodels-access-common` from 6.0.2 to 6.1.0
- [Commits](iTwin/imodels-clients@clients/6.0.2...clients/6.1.0)

Updates `@itwin/imodels-client-authoring` from 6.0.2 to 6.1.0
- [Commits](iTwin/imodels-clients@clients/6.0.2...clients/6.1.0)

Updates `@itwin/itwins-client` from 2.5.2 to 2.5.4
- [Release notes](https://github.com/iTwin/itwins-client/releases)
- [Changelog](https://github.com/iTwin/itwins-client/blob/main/CHANGELOG.md)
- [Commits](iTwin/itwins-client@v2.5.2...v2.5.4)

Updates `@itwin/node-cli-authorization` from 3.0.2 to 3.0.3
- [Release notes](https://github.com/iTwin/auth-clients/releases)
- [Changelog](https://github.com/iTwin/auth-clients/blob/main/packages/node-cli/CHANGELOG.md)
- [Commits](https://github.com/iTwin/auth-clients/commits/@itwin/node-cli-authorization_v3.0.3/packages/node-cli)

Updates `@itwin/object-storage-azure` from 3.0.4 to 3.0.5
- [Commits](https://github.com/iTwin/object-storage/commits)

Updates `@itwin/object-storage-core` from 3.0.4 to 3.0.5
- [Commits](https://github.com/iTwin/object-storage/commits)

Updates `@itwin/object-storage-google` from 3.0.4 to 3.0.5
- [Commits](https://github.com/iTwin/object-storage/commits)

Updates `@modelcontextprotocol/sdk` from 1.27.1 to 1.29.0
- [Release notes](https://github.com/modelcontextprotocol/typescript-sdk/releases)
- [Commits](modelcontextprotocol/typescript-sdk@v1.27.1...v1.29.0)

Updates `axios` from 1.13.6 to 1.15.0
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.13.6...v1.15.0)

Updates `globby` from 16.1.1 to 16.2.0
- [Release notes](https://github.com/sindresorhus/globby/releases)
- [Commits](sindresorhus/globby@v16.1.1...v16.2.0)

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

Updates `@vitest/coverage-v8` from 4.1.0 to 4.1.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.4/packages/coverage-v8)

Updates `esbuild` from 0.27.4 to 0.28.0
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.4...v0.28.0)

Updates `esbuild-node-externals` from 1.20.1 to 1.22.0
- [Release notes](https://github.com/pradel/esbuild-node-externals/releases)
- [Commits](pradel/esbuild-node-externals@esbuild-node-externals-v1.20.1...esbuild-node-externals-v1.22.0)

Updates `eslint` from 10.0.3 to 10.2.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v10.0.3...v10.2.0)

Updates `globals` from 17.4.0 to 17.5.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v17.4.0...v17.5.0)

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 `typescript-eslint` from 8.57.1 to 8.58.2
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.58.2/packages/typescript-eslint)

Updates `vitest` from 4.1.0 to 4.1.4
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.4/packages/vitest)

---
updated-dependencies:
- dependency-name: "@clack/prompts"
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@itwin/core-backend"
  dependency-version: 5.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@itwin/core-bentley"
  dependency-version: 5.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@itwin/core-common"
  dependency-version: 5.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@itwin/ecschema-metadata"
  dependency-version: 5.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@itwin/imodels-access-backend"
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@itwin/imodels-access-common"
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@itwin/imodels-client-authoring"
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@itwin/itwins-client"
  dependency-version: 2.5.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: "@itwin/node-cli-authorization"
  dependency-version: 3.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: "@itwin/object-storage-azure"
  dependency-version: 3.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: "@itwin/object-storage-core"
  dependency-version: 3.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: "@itwin/object-storage-google"
  dependency-version: 3.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: "@modelcontextprotocol/sdk"
  dependency-version: 1.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: axios
  dependency-version: 1.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: globby
  dependency-version: 16.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@types/node"
  dependency-version: 25.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: esbuild
  dependency-version: 0.28.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: esbuild-node-externals
  dependency-version: 1.22.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: eslint
  dependency-version: 10.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: globals
  dependency-version: 17.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: typescript
  dependency-version: 6.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: updates
- dependency-name: typescript-eslint
  dependency-version: 8.58.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: vitest
  dependency-version: 4.1.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 15, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 6, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this May 6, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/updates-486eb29997 branch May 6, 2026 12:26
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