Skip to content

Comments

Bump the updates group across 1 directory with 31 updates#16

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/updates-972785f1ec
Open

Bump the updates group across 1 directory with 31 updates#16
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/updates-972785f1ec

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 4, 2026

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

Package From To
@clack/prompts 0.11.0 1.0.0
@itwin/core-backend 5.1.1 5.5.2
@itwin/imodels-access-backend 6.0.1 6.0.2
@itwin/imodels-access-common 6.0.1 6.0.2
@itwin/itwins-client 1.6.1 2.5.0
@itwin/node-cli-authorization 3.0.1 3.0.2
chalk 5.5.0 5.6.2
globby 14.1.0 16.1.0
module-alias 2.2.3 2.3.3
semver 7.7.2 7.7.3
@types/semver 7.7.0 7.7.1
zod 4.0.17 4.3.6
@eslint/js 9.33.0 9.39.2
@types/node 24.2.1 25.2.0
@typescript-eslint/eslint-plugin 8.39.1 8.54.0
@typescript-eslint/parser 8.39.1 8.54.0
esbuild 0.25.9 0.27.2
esbuild-node-externals 1.18.0 1.20.1
eslint 9.33.0 9.39.2
globals 16.3.0 17.3.0
typescript 5.9.2 5.9.3
typescript-eslint 8.39.1 8.54.0
vitest 3.2.4 4.0.18

Updates @clack/prompts from 0.11.0 to 1.0.0

Release notes

Sourced from @​clack/prompts's releases.

@​clack/prompts@​1.0.0

Major Changes

  • c713fd5: The package is now distributed as ESM-only. In v0 releases, the package was dual-published as CJS and ESM.

    For existing CJS projects using Node v20+, please see Node's guide on Loading ECMAScript modules using require().

Minor Changes

  • 415410b: This adds a custom filter function to autocompleteMultiselect. It could be used, for example, to support fuzzy searching logic.

  • 7bc3301: Prompts now have a userInput stored separately from their value.

  • 8409f2c: feat: add styleFrame option for spinner

  • 2837845: Adds suggestion and path prompts

  • 99c3530: Adds format option to the note prompt to allow formatting of individual lines

  • 0aaee4c: Added new taskLog prompt for log output which is cleared on success

  • 729bbb6: Add support for customizable spinner cancel and error messages. Users can now customize these messages either per spinner instance or globally via the updateSettings function to support multilingual CLIs.

    This update also improves the architecture by exposing the core settings to the prompts package, enabling more consistent default message handling across the codebase.

    // Per-instance customization
    const spinner = prompts.spinner({
      cancelMessage: "Operación cancelada", // "Operation cancelled" in Spanish
      errorMessage: "Se produjo un error", // "An error occurred" in Spanish
    });
    // Global customization via updateSettings
    prompts.updateSettings({
    messages: {
    cancel: "Operación cancelada", // "Operation cancelled" in Spanish
    error: "Se produjo un error", // "An error occurred" in Spanish
    },
    });
    // Settings can now be accessed directly
    console.log(prompts.settings.messages.cancel); // "Operación cancelada"
    // Direct options take priority over global settings
    const spinner = prompts.spinner({
    cancelMessage: "Cancelled", // This will be used instead of the global setting
    });

  • 44df9af: Adds a new groupSpacing option to grouped multi-select prompts. If set to an integer greater than 0, it will add that number of new lines between each group.

... (truncated)

Changelog

Sourced from @​clack/prompts's changelog.

1.0.0

Major Changes

  • c713fd5: The package is now distributed as ESM-only. In v0 releases, the package was dual-published as CJS and ESM.

    For existing CJS projects using Node v20+, please see Node's guide on Loading ECMAScript modules using require().

Minor Changes

  • 415410b: This adds a custom filter function to autocompleteMultiselect. It could be used, for example, to support fuzzy searching logic.

  • 7bc3301: Prompts now have a userInput stored separately from their value.

  • 8409f2c: feat: add styleFrame option for spinner

  • 2837845: Adds suggestion and path prompts

  • 99c3530: Adds format option to the note prompt to allow formatting of individual lines

  • 0aaee4c: Added new taskLog prompt for log output which is cleared on success

  • 729bbb6: Add support for customizable spinner cancel and error messages. Users can now customize these messages either per spinner instance or globally via the updateSettings function to support multilingual CLIs.

    This update also improves the architecture by exposing the core settings to the prompts package, enabling more consistent default message handling across the codebase.

    // Per-instance customization
    const spinner = prompts.spinner({
      cancelMessage: "Operación cancelada", // "Operation cancelled" in Spanish
      errorMessage: "Se produjo un error", // "An error occurred" in Spanish
    });
    // Global customization via updateSettings
    prompts.updateSettings({
    messages: {
    cancel: "Operación cancelada", // "Operation cancelled" in Spanish
    error: "Se produjo un error", // "An error occurred" in Spanish
    },
    });
    // Settings can now be accessed directly
    console.log(prompts.settings.messages.cancel); // "Operación cancelada"
    // Direct options take priority over global settings
    const spinner = prompts.spinner({
    cancelMessage: "Cancelled", // This will be used instead of the global setting
    });

  • 44df9af: Adds a new groupSpacing option to grouped multi-select prompts. If set to an integer greater than 0, it will add that number of new lines between each group.

  • 55645c2: Support wrapping autocomplete and select prompts.

  • 9e5bc6c: Add support for signals in prompts, allowing them to be aborted.

  • f2c2b89: Adds AutocompletePrompt to core with comprehensive tests and implement both autocomplete and autocomplete-multiselect components in prompts package.

  • 38019c7: Updates the API for stopping spinners and progress bars to be clearer

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​clack/prompts since your current version.


Updates @itwin/core-backend from 5.1.1 to 5.5.2

Release notes

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

v5.5.2

Release notes

Changes

  • Fixed the issue of getAllBaseClasses() function not returning all the base classes (backport #8912) [release/5.5.x] (#8918)

Full changelog: 5.5.1...5.5.2

v5.5.1

Release notes

Changes

  • Fix past release toc headers (#8891)
  • fix iModelDb documentation include examples (backport #8894) [release/5.5.x] (#8895)
  • Add loaders.gl/core back as a dependency of frontend (backport #8900) [release/5.5.x] (#8902)

Full changelog: 5.5.0...5.5.1

v5.5.0


deltaDoc: true version: '5.5.0'

Support has been added for the proposed BENTLEY_materials_point_style glTF extension.

This allows iTwin.js to process and apply the above extension when loading glTF files. This means point primitives will be able to have a diameter property specified and respected in iTwin.js when loaded via glTF.

The image below demonstrates four points with different diameters and colors being rendered in iTwin.js using this glTF extension.

A rendering of four points with varying colors and widths as specified via BENTLEY_materials_point_style

v5.4.2

Release notes

Changes

  • @​bentley/imodeljs-native 5.4.20

Full changelog: 5.4.1...5.4.2

v5.4.1

Release notes

... (truncated)

Changelog

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

5.5.2

Thu, 22 Jan 2026 16:16:54 GMT

Version update only

5.5.1

Wed, 14 Jan 2026 17:52:53 GMT

Version update only

5.5.0

Mon, 05 Jan 2026 17:05:53 GMT

Updates

  • Fix crash when discarding changes
  • Do not fail abort() due to local unsaved changes
  • Improve unit test for rebase to include linktable relationships
  • Documentation of a case where ECInstanceId got reused across two different classes
  • Update iModelDb.clearCaches() to clear ECDbCache
  • ChannelRoot gets created with the correct aspect relationship class.
  • introduce better mechanism for enabling standaloneDb edits
  • Mobile: don't do workspace update checks when offline

5.4.2

Fri, 12 Dec 2025 14:40:14 GMT

Version update only

5.4.1

Thu, 11 Dec 2025 21:29:31 GMT

Version update only

5.4.0

Tue, 02 Dec 2025 21:22:25 GMT

Updates

  • Added incrementalSchemaLoading setting on IModelHostOptions and IModelHostConfiguration to enable or disable incremental schema loading. For now, incremental schema loading is disabled by default.
  • Enhance rebase event handling in TxnManager
  • Add test for enumerating transaction changes during recompute
  • Make discardChanges() public preview
  • Listen on localhost only instead of all interfaces for LocalhostIpcHost
  • Temporarily skipping the health check stats test
  • Add support for Node.js 24
  • Changes iModelDb.abandonChanges() to only clear element, model, and instanceKey caches instead of all backend caches
  • Fixes and enhancements for text fields.
  • Add APIs for project and sheet information.
  • Made change to backend to raise an event when pushing and pulling changes.

... (truncated)

Commits

Updates @itwin/core-bentley from 5.1.1 to 5.5.2

Release notes

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

v5.5.2

Release notes

Changes

  • Fixed the issue of getAllBaseClasses() function not returning all the base classes (backport #8912) [release/5.5.x] (#8918)

Full changelog: 5.5.1...5.5.2

v5.5.1

Release notes

Changes

  • Fix past release toc headers (#8891)
  • fix iModelDb documentation include examples (backport #8894) [release/5.5.x] (#8895)
  • Add loaders.gl/core back as a dependency of frontend (backport #8900) [release/5.5.x] (#8902)

Full changelog: 5.5.0...5.5.1

v5.5.0


deltaDoc: true version: '5.5.0'

Support has been added for the proposed BENTLEY_materials_point_style glTF extension.

This allows iTwin.js to process and apply the above extension when loading glTF files. This means point primitives will be able to have a diameter property specified and respected in iTwin.js when loaded via glTF.

The image below demonstrates four points with different diameters and colors being rendered in iTwin.js using this glTF extension.

A rendering of four points with varying colors and widths as specified via BENTLEY_materials_point_style

v5.4.2

Release notes

Changes

  • @​bentley/imodeljs-native 5.4.20

Full changelog: 5.4.1...5.4.2

v5.4.1

Release notes

... (truncated)

Changelog

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

5.5.2

Thu, 22 Jan 2026 16:16:54 GMT

Version update only

5.5.1

Wed, 14 Jan 2026 17:52:53 GMT

Version update only

5.5.0

Mon, 05 Jan 2026 17:05:53 GMT

Version update only

5.4.2

Fri, 12 Dec 2025 14:40:14 GMT

Version update only

5.4.1

Thu, 11 Dec 2025 21:29:31 GMT

Version update only

5.4.0

Tue, 02 Dec 2025 21:22:25 GMT

Version update only

5.3.4

Fri, 12 Dec 2025 20:11:41 GMT

Version update only

5.3.3

Thu, 20 Nov 2025 22:30:37 GMT

Version update only

5.3.2

Thu, 13 Nov 2025 23:23:23 GMT

Version update only

5.3.1

Thu, 06 Nov 2025 20:29:06 GMT

Version update only

... (truncated)

Commits

Updates @itwin/core-common from 5.1.1 to 5.5.2

Release notes

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

v5.5.2

Release notes

Changes

  • Fixed the issue of getAllBaseClasses() function not returning all the base classes (backport #8912) [release/5.5.x] (#8918)

Full changelog: 5.5.1...5.5.2

v5.5.1

Release notes

Changes

  • Fix past release toc headers (#8891)
  • fix iModelDb documentation include examples (backport #8894) [release/5.5.x] (#8895)
  • Add loaders.gl/core back as a dependency of frontend (backport #8900) [release/5.5.x] (#8902)

Full changelog: 5.5.0...5.5.1

v5.5.0


deltaDoc: true version: '5.5.0'

Support has been added for the proposed BENTLEY_materials_point_style glTF extension.

This allows iTwin.js to process and apply the above extension when loading glTF files. This means point primitives will be able to have a diameter property specified and respected in iTwin.js when loaded via glTF.

The image below demonstrates four points with different diameters and colors being rendered in iTwin.js using this glTF extension.

A rendering of four points with varying colors and widths as specified via BENTLEY_materials_point_style

v5.4.2

Release notes

Changes

  • @​bentley/imodeljs-native 5.4.20

Full changelog: 5.4.1...5.4.2

v5.4.1

Release notes

... (truncated)

Changelog

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

5.5.2

Thu, 22 Jan 2026 16:16:54 GMT

Version update only

5.5.1

Wed, 14 Jan 2026 17:52:53 GMT

Version update only

5.5.0

Mon, 05 Jan 2026 17:05:53 GMT

Updates

  • introduce enableTransactions flag on standaloneDb creation props

5.4.2

Fri, 12 Dec 2025 14:40:14 GMT

Version update only

5.4.1

Thu, 11 Dec 2025 21:29:31 GMT

Version update only

5.4.0

Tue, 02 Dec 2025 21:22:25 GMT

Updates

  • Fixes and enhancements for text fields.
  • Fix MapImagerySettings failing to preserve solid black background base.
  • Add APIs for project and sheet information.
  • Added changeset_index as a part of ChangesetHealthStats.
  • Added new terminatorShape property in TextStyleSettings

5.3.4

Fri, 12 Dec 2025 20:11:41 GMT

Version update only

5.3.3

Thu, 20 Nov 2025 22:30:37 GMT

Version update only

5.3.2

Thu, 13 Nov 2025 23:23:23 GMT

... (truncated)

Commits

Updates @itwin/ecschema-metadata from 5.1.1 to 5.5.2

Release notes

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

v5.5.2

Release notes

Changes

  • Fixed the issue of getAllBaseClasses() function not returning all the base classes (backport #8912) [release/5.5.x] (#8918)

Full changelog: 5.5.1...5.5.2

v5.5.1

Release notes

Changes

  • Fix past release toc headers (#8891)
  • fix iModelDb documentation include examples (backport #8894) [release/5.5.x] (#8895)
  • Add loaders.gl/core back as a dependency of frontend (backport #8900) [release/5.5.x] (#8902)

Full changelog: 5.5.0...5.5.1

v5.5.0


deltaDoc: true version: '5.5.0'

Support has been added for the proposed BENTLEY_materials_point_style glTF extension.

This allows iTwin.js to process and apply the above extension when loading glTF files. This means point primitives will be able to have a diameter property specified and respected in iTwin.js when loaded via glTF.

The image below demonstrates four points with different diameters and colors being rendered in iTwin.js using this glTF extension.

A rendering of four points with varying colors and widths as specified via BENTLEY_materials_point_style

v5.4.2

Release notes

Changes

  • @​bentley/imodeljs-native 5.4.20

Full changelog: 5.4.1...5.4.2

v5.4.1

Release notes

... (truncated)

Changelog

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

5.5.2

Thu, 22 Jan 2026 16:16:54 GMT

Updates

  • Fixed the issue of getAllBaseClasses() method of ECClass not returning all the base classes

5.5.1

Wed, 14 Jan 2026 17:52:53 GMT

Version update only

5.5.0

Mon, 05 Jan 2026 17:05:53 GMT

Version update only

5.4.2

Fri, 12 Dec 2025 14:40:14 GMT

Version update only

5.4.1

Thu, 11 Dec 2025 21:29:31 GMT

Version update only

5.4.0

Tue, 02 Dec 2025 21:22:25 GMT

Version update only

5.3.4

Fri, 12 Dec 2025 20:11:41 GMT

Version update only

5.3.3

Thu, 20 Nov 2025 22:30:37 GMT

Version update only

5.3.2

Thu, 13 Nov 2025 23:23:23 GMT

Version update only

5.3.1

Thu, 06 Nov 2025 20:29:06 GMT

... (truncated)

Commits

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

Commits

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

Commits

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

Commits

Updates @itwin/itwins-client from 1.6.1 to 2.5.0

Release notes

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

v2.5.0

Minor Changes

2.5.0 - 2026-01-28

Added 3 New Methods To Itwins Client To Support Federated Architecture Support:

  • getRepositoryResourcesByUri() - Retrieve multiple resources with OData support

  • getRepositoryResourceByUri() - Retrieve single resource

  • getResourceGraphicsByUri() - Retrieve graphics metadata

Added support for redirects in the following methods :

  • getRepositoryResource()

  • getRepositoryResources()

  • getResourceGraphics()

  • All URI-based methods

v2.4.0

Minor Changes

2.4.0 - 2026-01-09

Added new repo class "SensorData" to string union for repo classes

v2.3.0

Minor Changes

2.3.0 - 2025-11-05

API Method: Added deleteRepositoryResource() method to iTwinsClient class for deleting repository resources

v2.2.0

Minor Changes

2.2.0 - 2025-10-15

Enhanced type safety with conditional return types

Added conditional return types to methods that support both minimal and representation responses. Return types now automatically infer based on the resultMode parameter, providing better IntelliSense and compile-time type checking.

**Enhanced Methods:**

- getFavoritesITwins

... (truncated)

Changelog

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

2.5.0

Minor Changes

2.5.0 - 2026-01-28

Added 3 New Methods To Itwins Client To Support Federated Architecture Support:

  • getRepositoryResourcesByUri() - Retrieve multiple resources with OData support

  • getRepositoryResourceByUri() - Retrieve single resource

  • getResourceGraphicsByUri() - Retrieve graphics metadata

Added support for redirects in the following methods :

  • getRepositoryResource()

  • getRepositoryResources()

  • getResourceGraphics()

  • All URI-based methods

2.4.0

Minor Changes

2.4.0 - 2026-01-09

Added new repo class "SensorData" to string union for repo classes

2.3.0

Minor Changes

2.3.0 - 2025-11-05

API Method: Added deleteRepositoryResource() method to iTwinsClient class for deleting repository resources

2.2.0

Minor Changes

2.2.0 - 2025-10-15

Enhanced type safety with conditional return types

Added conditional return types to methods that support both minimal and representation responses. Return types now automatically infer based on the resultMode parameter, providing better IntelliSense and compile-time type checking.

... (truncated)

Commits

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

Changelog

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

3.0.2

Mon, 27 Oct 2025 12:14:12 GMT

Patches

Commits

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

Commits

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

Commits

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

Commits

Updates axios from 1.11.0 to 1.13.4

Release notes

Sourced from axios's releases.

v1.13.4

Overview

The release addresses issues discovered in v1.13.3 and includes significant CI/CD improvements.

Full Changelog: v1.13.3...v1.13.4

What's New in v1.13.4

Bug Fixes

  • fix: issues with version 1.13.3 (#7352) (ee90dfc)
    • Fixed issues discovered in v1.13.3 release
    • Cleaned up interceptor test files
    • Improved workflow configurations

Infrastructure & CI/CD

  • refactor: ci and build (#7340) (8ff6c19)

    • Major refactoring of CI/CD workflows
    • Consolidated workflow files for better maintainability
    • Added mise configuration for the development environment
    • Improved sponsor block update automation
    • Enhanced issue and PR templates
    • Added automatic release notes generation
    • Implemented workflow cancellation for concurrent runs
  • chore: codegen and some updates to workflows (76cf77b)

    • Code generation improvements
    • Workflow optimisations

Migration Notes

Breaking Changes

None in this release.

Deprecations

None in this release.

Contributors

Thank you to all contributors who made this release possible! Special thanks to:

Release v1.13.3

Release notes:

Bug Fixes

... (truncated)

Changelog

Sourced from axios's changelog.

Changelog

1.13.3 (2026-01-20)

Bug Fixes

  • http2: Use port 443 for HTTPS connections by default. (#7256) (d7e6065)
  • interceptor: handle the error in the same interceptor (#6269) (5945e40)
  • main field in package.json should correspond to cjs artifacts (#5756) (7373fbf)
  • package.json: add 'bun' package.json 'exports' condition. Load the Node.js build in Bun instead of the browser build (#5754) (b89217e)
  • silentJSONParsing=false should throw on invalid JSON (#7253) (#7257) (7d19335)
  • turn AxiosError into a native error (#5394) (#5558) (1c6a86d)
  • types: add handlers to AxiosInterceptorManager interface (#5551) (8d1271b)
  • types: restore AxiosError.cause type from unknown to Error (#7327) (d8233d9)
  • unclear error message is thrown when specifying an empty proxy authorization (#6314) (6ef867e)

Features

Reverts

  • Revert "fix: silentJSONParsing=false should throw on invalid JSON (#7253) (#7…" (#7298) (a4230f5), closes #7253 #7 #7298
  • deps: bump peter-evans/create-pull-request from 7 to 8 in the github-actions group (#7334) (2d6ad5e)

Contributors to this release

... (truncated)

Commits
  • 9336cf9 chore(release): prepare release 1.13.4 (#7353)
  • ee90dfc fix: issues with version 1.13.3 (#7352)
  • af4f6d9 fix: release branch yml
  • 253e3ad fix: all merge configs
  • 8ff6c19 refactor: ci and build (#7340)
  • ab06109 chore(release): v1.13.3 (#7335)
  • 2d6ad5e revert(deps): bump peter-evans/create-pull-request from 7 to 8 in the github-...
  • cb49a6f chore(sponsor): update sponsor block (#7330)
  • d8233d9 fix(types): restore AxiosError.cause type from unknown to Error (#7327)
  • 5945e40 fix(interceptor): handle the error in the same interceptor (#6269)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for axios since your current version.


Updates chalk from 5.5.0 to 5.6.2

Release notes

Sourced from chalk's releases.

v5.6.2

v5.6.0

  • Make WezTerm terminal use true color a8f5bf7

chalk/chalk@v5.5.0...v5.6.0

Commits

Updates globby from 14.1.0 to 16.1.0

Release notes

Sourced from globby's releases.

v16.1.0


sindresorhus/globby@v16.0.0...v16.1.0

v16.0.0

Breaking

  • Respect parent .gitignore files when gitignore option is enabled b9a9a84
    • When {gitignore: true}, Globby now searches for .gitignore files up to the Git repo root (if detected). This matches Git's actual behavior where parent .gitignore patterns apply to subdirectories. Previously, only .gitignore files within the glob search path were considered. This change could break existing code that relied on the previous, more limited behavior.

Improvements

  • Support negation-only patterns 1273541
  • Respect custom fs implementation from options c2eb272
  • Add some more options to isGitIgnored functions e794ff9
  • Improve error message for invalid cwd option 7535e6d

Fixes

  • Fix {gitignore: true} performance issue fcb07c3
  • Fix bundler compatibility e6c72c9
  • Fix parent directory patterns with gitignore option 11dd2df
  • Fix ignore patterns with parent directory references a58d117
  • Fix types for stats option c10f600

sindresorhus/globby@v15.0.0...v16.0.0

v15.0.0

Breaking

  • Require Node.js 20 4ae42c8

Fixes

  • Fix expandDirectories not working with globstar patterns 98d691a
  • Fix relative paths with gitignore option b4d78d8
  • Fix gitignore patterns in subdirectories not applying recursively 2cb6088
  • Fix TypeScript types for globbyStream to correctly yield strings 1c7f3ed

sindresorhus/globby@v14.1.0...v15.0.0

Commits
  • 70c011b 16.1.0
  • eb78791 Add expandNegationOnlyPatterns option
  • 59e269f Fix: Normalize leading-slash negation patterns before task generation
  • cdbb6a2 16.0.0
  • e6c72c9 Fix bundler compatibility
  • b9a9a84 Respect parent .gitignore files when gitignore option is enabled
  • db9cb72 Add test for suppressErrors option with file patterns
  • 69e0ee7 Add test for ignore option with trailing slashes
  • 11dd2df Fix parent directory patterns with gitignore option
  • e4d0918 Add tests for special characters in directory names
  • Additional commits viewable in compare view

Updates module-alias from 2.2.3 to 2.3.3

Commits

Updates semver from 7.7.2 to 7.7.3

Details Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [@clack/prompts](https://github.com/bombshell-dev/clack/tree/HEAD/packages/prompts) | `0.11.0` | `1.0.0` |
| [@itwin/core-backend](https://github.com/iTwin/itwinjs-core/tree/HEAD/core/backend) | `5.1.1` | `5.5.2` |
| [@itwin/imodels-access-backend](https://github.com/iTwin/imodels-clients) | `6.0.1` | `6.0.2` |
| [@itwin/imodels-access-common](https://github.com/iTwin/imodels-clients) | `6.0.1` | `6.0.2` |
| [@itwin/itwins-client](https://github.com/iTwin/itwins-client) | `1.6.1` | `2.5.0` |
| [@itwin/node-cli-authorization](https://github.com/iTwin/auth-clients/tree/HEAD/packages/node-cli) | `3.0.1` | `3.0.2` |
| [chalk](https://github.com/chalk/chalk) | `5.5.0` | `5.6.2` |
| [globby](https://github.com/sindresorhus/globby) | `14.1.0` | `16.1.0` |
| [module-alias](https://github.com/ilearnio/module-alias) | `2.2.3` | `2.3.3` |
| [semver](https://github.com/npm/node-semver) | `7.7.2` | `7.7.3` |
| [@types/semver](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/semver) | `7.7.0` | `7.7.1` |
| [zod](https://github.com/colinhacks/zod) | `4.0.17` | `4.3.6` |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.33.0` | `9.39.2` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.2.1` | `25.2.0` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.39.1` | `8.54.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.39.1` | `8.54.0` |
| [esbuild](https://github.com/evanw/esbuild) | `0.25.9` | `0.27.2` |
| [esbuild-node-externals](https://github.com/pradel/esbuild-node-externals) | `1.18.0` | `1.20.1` |
| [eslint](https://github.com/eslint/eslint) | `9.33.0` | `9.39.2` |
| [globals](https://github.com/sindresorhus/globals) | `16.3.0` | `17.3.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.2` | `5.9.3` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.39.1` | `8.54.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `3.2.4` | `4.0.18` |



Updates `@clack/prompts` from 0.11.0 to 1.0.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/prompts@1.0.0/packages/prompts)

Updates `@itwin/core-backend` from 5.1.1 to 5.5.2
- [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.5.2/core/backend)

Updates `@itwin/core-bentley` from 5.1.1 to 5.5.2
- [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.5.2/core/bentley)

Updates `@itwin/core-common` from 5.1.1 to 5.5.2
- [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.5.2/core/common)

Updates `@itwin/ecschema-metadata` from 5.1.1 to 5.5.2
- [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.5.2/core/ecschema-metadata)

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

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

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

Updates `@itwin/itwins-client` from 1.6.1 to 2.5.0
- [Release notes](https://github.com/iTwin/itwins-client/releases)
- [Changelog](https://github.com/iTwin/itwins-client/blob/main/CHANGELOG.md)
- [Commits](https://github.com/iTwin/itwins-client/commits/v2.5.0)

Updates `@itwin/node-cli-authorization` from 3.0.1 to 3.0.2
- [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.2/packages/node-cli)

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

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

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

Updates `axios` from 1.11.0 to 1.13.4
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.11.0...v1.13.4)

Updates `chalk` from 5.5.0 to 5.6.2
- [Release notes](https://github.com/chalk/chalk/releases)
- [Commits](chalk/chalk@v5.5.0...v5.6.2)

Updates `globby` from 14.1.0 to 16.1.0
- [Release notes](https://github.com/sindresorhus/globby/releases)
- [Commits](sindresorhus/globby@v14.1.0...v16.1.0)

Updates `module-alias` from 2.2.3 to 2.3.3
- [Commits](https://github.com/ilearnio/module-alias/commits)

Updates `semver` from 7.7.2 to 7.7.3
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md)
- [Commits](npm/node-semver@v7.7.2...v7.7.3)

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

Updates `zod` from 4.0.17 to 4.3.6
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](colinhacks/zod@v4.0.17...v4.3.6)

Updates `@eslint/js` from 9.33.0 to 9.39.2
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](https://github.com/eslint/eslint/commits/v9.39.2/packages/js)

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

Updates `@typescript-eslint/eslint-plugin` from 8.39.1 to 8.54.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.54.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.39.1 to 8.54.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.54.0/packages/parser)

Updates `esbuild` from 0.25.9 to 0.27.2
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.25.9...v0.27.2)

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

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

Updates `globals` from 16.3.0 to 17.3.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v16.3.0...v17.3.0)

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

Updates `typescript-eslint` from 8.39.1 to 8.54.0
- [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.54.0/packages/typescript-eslint)

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

---
updated-dependencies:
- dependency-name: "@clack/prompts"
  dependency-version: 1.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: updates
- dependency-name: "@itwin/core-backend"
  dependency-version: 5.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@itwin/core-bentley"
  dependency-version: 5.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@itwin/core-common"
  dependency-version: 5.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@itwin/ecschema-metadata"
  dependency-version: 5.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@itwin/imodels-access-backend"
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: "@itwin/imodels-access-common"
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: "@itwin/imodels-client-authoring"
  dependency-version: 6.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: "@itwin/itwins-client"
  dependency-version: 2.5.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: updates
- dependency-name: "@itwin/node-cli-authorization"
  dependency-version: 3.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: "@itwin/object-storage-azure"
  dependency-version: 3.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: "@itwin/object-storage-core"
  dependency-version: 3.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: "@itwin/object-storage-google"
  dependency-version: 3.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: axios
  dependency-version: 1.13.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: chalk
  dependency-version: 5.6.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: globby
  dependency-version: 16.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: updates
- dependency-name: module-alias
  dependency-version: 2.3.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: semver
  dependency-version: 7.7.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: "@types/semver"
  dependency-version: 7.7.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: zod
  dependency-version: 4.3.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@eslint/js"
  dependency-version: 9.39.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@types/node"
  dependency-version: 25.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: updates
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.54.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.54.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: esbuild
  dependency-version: 0.27.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: esbuild-node-externals
  dependency-version: 1.20.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: eslint
  dependency-version: 9.39.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: globals
  dependency-version: 17.3.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: updates
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: updates
- dependency-name: typescript-eslint
  dependency-version: 8.54.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: updates
- dependency-name: vitest
  dependency-version: 4.0.18
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: updates
...

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 Feb 4, 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