Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 25, 2025

Bumps the npm group with 8 updates in the / directory:

Package From To
@types/node 24.0.10 24.5.2
js-base64 3.7.7 3.7.8
@biomejs/biome 2.0.6 2.2.4
jasmine 5.8.0 5.10.0
publint 0.3.12 0.3.13
puppeteer 24.11.2 24.22.3
rollup 4.44.1 4.52.2
typescript 5.8.3 5.9.2

Updates @types/node from 24.0.10 to 24.5.2

Commits

Updates js-base64 from 3.7.7 to 3.7.8

Commits
  • 5fd183d version 3.7.8
  • fa94481 add permissions section to make CodeQL happy
  • fb0b409 add node 24
  • f2587cc use unknown instead of any accordingly to Aaron
  • 237bffc use unknown instead of any accordingly to Aaron
  • 73236ad Merge pull request #187 from Chanran/feat/optimize-atobPolyfill-performance
  • 9df6b69 Merge pull request #179 from lifeiscontent/patch-1
  • 1b1c84f feat: optimize atobPolyfill performance to avoid minor gc
  • 09fde58 Update base64.ts
  • df91b05 add node 22
  • See full diff in compare view

Updates @biomejs/biome from 2.0.6 to 2.2.4

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.2.4

2.2.4

Patch Changes

  • #7453 aa8cea3 Thanks @​arendjr! - Fixed #7242: Aliases specified in package.json's imports section now support having multiple targets as part of an array.

  • #7454 ac17183 Thanks @​arendjr! - Greatly improved performance of noImportCycles by eliminating allocations.

    In one repository, the total runtime of Biome with only noImportCycles enabled went from ~23s down to ~4s.

  • #7447 7139aad Thanks @​rriski! - Fixes #7446. The GritQL $... spread metavariable now correctly matches members in object literals, aligning its behavior with arrays and function calls.

  • #6710 98cf9af Thanks @​arendjr! - Fixed #4723: Type inference now recognises index signatures and their accesses when they are being indexed as a string.

    Example

    type BagOfPromises = {
      // This is an index signature definition. It declares that instances of type
      // `BagOfPromises` can be indexed using arbitrary strings.
      [property: string]: Promise<void>;
    };
    let bag: BagOfPromises = {};
    // Because bag.iAmAPromise is equivalent to bag[&quot;iAmAPromise&quot;], this is
    // considered an access to the string index, and a Promise is expected.
    bag.iAmAPromise;

  • #7415 d042f18 Thanks @​qraqras! - Fixed #7212, now the useOptionalChain rule recognizes optional chaining using typeof (e.g., typeof foo !== 'undefined' && foo.bar).

  • #7419 576baf4 Thanks @​Conaclos! - Fixed #7323. noUnusedPrivateClassMembers no longer reports as unused TypeScript private members if the rule encounters a computed access on this.

    In the following example, member as previously reported as unused. It is no longer reported.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.2.4

Patch Changes

  • #7453 aa8cea3 Thanks @​arendjr! - Fixed #7242: Aliases specified in package.json's imports section now support having multiple targets as part of an array.

  • #7454 ac17183 Thanks @​arendjr! - Greatly improved performance of noImportCycles by eliminating allocations.

    In one repository, the total runtime of Biome with only noImportCycles enabled went from ~23s down to ~4s.

  • #7447 7139aad Thanks @​rriski! - Fixes #7446. The GritQL $... spread metavariable now correctly matches members in object literals, aligning its behavior with arrays and function calls.

  • #6710 98cf9af Thanks @​arendjr! - Fixed #4723: Type inference now recognises index signatures and their accesses when they are being indexed as a string.

    Example

    type BagOfPromises = {
      // This is an index signature definition. It declares that instances of type
      // `BagOfPromises` can be indexed using arbitrary strings.
      [property: string]: Promise<void>;
    };
    let bag: BagOfPromises = {};
    // Because bag.iAmAPromise is equivalent to bag[&quot;iAmAPromise&quot;], this is
    // considered an access to the string index, and a Promise is expected.
    bag.iAmAPromise;

  • #7415 d042f18 Thanks @​qraqras! - Fixed #7212, now the useOptionalChain rule recognizes optional chaining using typeof (e.g., typeof foo !== 'undefined' && foo.bar).

  • #7419 576baf4 Thanks @​Conaclos! - Fixed #7323. noUnusedPrivateClassMembers no longer reports as unused TypeScript private members if the rule encounters a computed access on this.

    In the following example, member as previously reported as unused. It is no longer reported.

    class TsBioo {
      private member: number;
    set_with_name(name: string, value: number) {
    this[name] = value;
    }
    }

... (truncated)

Commits

Updates jasmine from 5.8.0 to 5.10.0

Release notes

Sourced from jasmine's releases.

v5.10.0

Please see the release notes.

v5.9.0

Please see the release notes.

Commits
  • e1e9411 Bump version to 5.10.0
  • 2712681 Fixed release notes
  • 642b38c Bump version to 5.9.0
  • 4aa1dbb Fixed startup hang when using ES module loaders in parallel mode
  • 6c418b3 Fixed jsdoc description of Configuration#requires
  • 48263e0 Don't test on Node versions before 18.20.5
  • 4238c1e Removed shelljs dev dependency
  • cd7e7b1 Removed rimraf dev dependency
  • See full diff in compare view

Updates jasmine-core from 5.8.0 to 5.10.0

Release notes

Sourced from jasmine-core's releases.

v5.10.0

Please see the release notes.

v5.9.0

Please see the release notes.

Commits
  • 7978ad9 Fix fn names in release notes
  • af4662a Bump version to 5.10.0
  • 15c38c7 Add Firefox 140 (current ESR) to supported browsers and demote 128 to best-ef...
  • b597975 Fix and enable pending async expectation message spec
  • 09ce3a3 Pend environment-specific specs rather than passing
  • 3bcbc2e Tweak spec duration margin
  • fbaba90 Merge branch 'bonkevin-html-reporter-with-duration'
  • bf2e8e7 Merge branch 'bonkevin-spec-suite-properties-accessors'
  • 50e566b Move beforeAll failure reporting into TreeRunner
  • 4b7d5e3 Update and move remaining disabled Runner specs
  • Additional commits viewable in compare view

Updates publint from 0.3.12 to 0.3.13

Release notes

Sourced from publint's releases.

[email protected]

Patch Changes

  • Improve message for "main" field with empty value and has missing files (0499518)

  • Update fallback arrays message for CLI output (37b9dd5)

Changelog

Sourced from publint's changelog.

0.3.13

Patch Changes

  • Improve message for "main" field with empty value and has missing files (0499518)

  • Update fallback arrays message for CLI output (37b9dd5)

Commits
Maintainer changes

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


Updates puppeteer from 24.11.2 to 24.22.3

Release notes

Sourced from puppeteer's releases.

puppeteer-core: v24.22.3

24.22.3 (2025-09-24)

Bug Fixes

puppeteer: v24.22.3

24.22.3 (2025-09-24)

Miscellaneous Chores

  • puppeteer: Synchronize puppeteer versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.22.2 to 24.22.3

puppeteer-core: v24.22.2

24.22.2 (2025-09-23)

Bug Fixes

  • pipes: concat buffers instead of string concatenation (#14236) (21e54b6)

puppeteer: v24.22.2

24.22.2 (2025-09-23)

Miscellaneous Chores

  • puppeteer: Synchronize puppeteer versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.22.1 to 24.22.2

puppeteer-core: v24.22.1

24.22.1 (2025-09-23)

... (truncated)

Changelog

Sourced from puppeteer's changelog.

24.22.3 (2025-09-24)

Miscellaneous Chores

  • puppeteer: Synchronize puppeteer versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.22.2 to 24.22.3

Bug Fixes

24.22.2 (2025-09-23)

Miscellaneous Chores

  • puppeteer: Synchronize puppeteer versions

Dependencies

  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.22.1 to 24.22.2

Bug Fixes

  • pipes: concat buffers instead of string concatenation (#14236) (21e54b6)

24.22.1 (2025-09-23)

Miscellaneous Chores

  • puppeteer: Synchronize puppeteer versions

Dependencies

... (truncated)

Commits

Updates rollup from 4.44.1 to 4.52.2

Release notes

Sourced from rollup's releases.

v4.52.2

4.52.2

2025-09-23

Bug Fixes

  • Fix Android build crashing due to failed dlopen (#6109)

Pull Requests

v4.52.1

4.52.1

2025-09-23

Bug Fixes

  • Opt-out of dynamic import optimization when using top-level await to effectively prevent deadlocks (#6121)

Pull Requests

v4.52.0

4.52.0

2025-09-19

Features

  • Add option output.onlyExplicitManualChunks to turn off merging additional dependencies into manual chunks (#6087)
  • Add support for x86_64-pc-windows-gnu platform (#6110)

Pull Requests

v4.51.0

4.51.0

2025-09-19

Features

  • Support ROLLUP_FILE_URL_OBJ placeholder to inject file URLs into the generated code (#6108)

... (truncated)

Changelog

Sourced from rollup's changelog.

4.52.2

2025-09-23

Bug Fixes

  • Fix Android build crashing due to failed dlopen (#6109)

Pull Requests

4.52.1

2025-09-23

Bug Fixes

  • Opt-out of dynamic import optimization when using top-level await to effectively prevent deadlocks (#6121)

Pull Requests

4.52.0

2025-09-19

Features

  • Add option output.onlyExplicitManualChunks to turn off merging additional dependencies into manual chunks (#6087)
  • Add support for x86_64-pc-windows-gnu platform (#6110)

Pull Requests

4.51.0

2025-09-19

Features

  • Support ROLLUP_FILE_URL_OBJ placeholder to inject file URLs into the generated code (#6108)

Bug Fixes

  • Improve OpenHarmony build to work in more situations (#6115)

... (truncated)

Commits

Updates typescript from 5.8.3 to 5.9.2

Release notes

Sourced from typescript's releases.

TypeScript 5.9

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 RC

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits
  • be86783 Give more specific errors for verbatimModuleSyntax (#62113)
  • 22ef577 LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250714...
  • d5a414c Don't use noErrorTruncation when printing types with maximumLength set (#...
  • f14b5c8 Remove unused and confusing dom.iterable.d.ts file (#62037)
  • 2778e84 Restore AbortSignal.abort (#62086)
  • 65cb4bd LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250710...
  • 9e20e03 Clear out checker-level stacks on pop (#62016)
  • 87740bc Fix for Issue 61081 (#61221)
  • 833a8d4 Fix Symbol completion priority and cursor positioning (#61945)
  • 0018c9f LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250702...
  • Additional commits viewable in compare view

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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 npm group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.0.10` | `24.5.2` |
| [js-base64](https://github.com/dankogai/js-base64) | `3.7.7` | `3.7.8` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.0.6` | `2.2.4` |
| [jasmine](https://github.com/jasmine/jasmine-npm) | `5.8.0` | `5.10.0` |
| [publint](https://github.com/publint/publint/tree/HEAD/packages/publint) | `0.3.12` | `0.3.13` |
| [puppeteer](https://github.com/puppeteer/puppeteer) | `24.11.2` | `24.22.3` |
| [rollup](https://github.com/rollup/rollup) | `4.44.1` | `4.52.2` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.3` | `5.9.2` |



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

Updates `js-base64` from 3.7.7 to 3.7.8
- [Commits](dankogai/js-base64@3.7.7...3.7.8)

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

Updates `jasmine` from 5.8.0 to 5.10.0
- [Release notes](https://github.com/jasmine/jasmine-npm/releases)
- [Changelog](https://github.com/jasmine/jasmine-npm/blob/main/RELEASE.md)
- [Commits](jasmine/jasmine-npm@v5.8.0...v5.10.0)

Updates `jasmine-core` from 5.8.0 to 5.10.0
- [Release notes](https://github.com/jasmine/jasmine/releases)
- [Changelog](https://github.com/jasmine/jasmine/blob/main/RELEASE.md)
- [Commits](jasmine/jasmine@v5.8.0...v5.10.0)

Updates `publint` from 0.3.12 to 0.3.13
- [Release notes](https://github.com/publint/publint/releases)
- [Changelog](https://github.com/publint/publint/blob/master/packages/publint/CHANGELOG.md)
- [Commits](https://github.com/publint/publint/commits/[email protected]/packages/publint)

Updates `puppeteer` from 24.11.2 to 24.22.3
- [Release notes](https://github.com/puppeteer/puppeteer/releases)
- [Changelog](https://github.com/puppeteer/puppeteer/blob/main/CHANGELOG.md)
- [Commits](puppeteer/puppeteer@puppeteer-v24.11.2...puppeteer-v24.22.3)

Updates `rollup` from 4.44.1 to 4.52.2
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.44.1...v4.52.2)

Updates `typescript` from 5.8.3 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.8.3...v5.9.2)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 24.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: js-base64
  dependency-version: 3.7.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@biomejs/biome"
  dependency-version: 2.2.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: jasmine
  dependency-version: 5.10.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: jasmine-core
  dependency-version: 5.10.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: publint
  dependency-version: 0.3.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: puppeteer
  dependency-version: 24.22.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: rollup
  dependency-version: 4.52.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
...

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 Sep 25, 2025
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