Skip to content

chore(deps-dev): bump the js-dependencies group across 1 directory with 10 updates - #2335

Open
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/npm_and_yarn/icechunk-js/js-dependencies-1da3b16ec7
Open

chore(deps-dev): bump the js-dependencies group across 1 directory with 10 updates#2335
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/npm_and_yarn/icechunk-js/js-dependencies-1da3b16ec7

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 17, 2026

Copy link
Copy Markdown
Contributor

Bumps the js-dependencies group with 10 updates in the /icechunk-js directory:

Package From To
@emnapi/core 1.11.2 1.11.3
@emnapi/runtime 1.11.2 1.11.3
@napi-rs/cli 3.7.4 3.8.5
@napi-rs/wasm-runtime 1.1.6 1.2.2
chalk 5.6.2 6.0.0
lint-staged 17.2.0 17.3.0
npm-run-all2 9.0.2 9.0.3
oxlint 1.74.0 1.78.0
tinybench 6.1.2 6.1.3
zarrita 0.7.3 0.7.4

Updates @emnapi/core from 1.11.2 to 1.11.3

Release notes

Sourced from @​emnapi/core's releases.

v1.11.3

What's Changed

Full Changelog: toyobayashi/emnapi@v1.11.2...v1.11.3

Commits
  • b2011ea ci: publish wasi-threads with legacy tag
  • 0aa8658 1.11.3
  • 26917d1 fix: refresh memory views after unshared memory growth (v1.x backport) (#230)
  • f8f3860 fix(runtime): define deferred state as own properties (#223)
  • See full diff in compare view

Updates @emnapi/runtime from 1.11.2 to 1.11.3

Release notes

Sourced from @​emnapi/runtime's releases.

v1.11.3

What's Changed

Full Changelog: toyobayashi/emnapi@v1.11.2...v1.11.3

Commits
  • b2011ea ci: publish wasi-threads with legacy tag
  • 0aa8658 1.11.3
  • 26917d1 fix: refresh memory views after unshared memory growth (v1.x backport) (#230)
  • f8f3860 fix(runtime): define deferred state as own properties (#223)
  • See full diff in compare view

Updates @napi-rs/cli from 3.7.4 to 3.8.5

Commits
  • a5b5f27 chore(release): publish
  • 980b0b3 fix(cli): validate publish-effective exports in threadless wasi pre-publish (...
  • f5c8872 chore(deps): lock file maintenance (#3435)
  • 956e452 chore: release (#3448)
  • 73048f5 chore(release): publish
  • 61fae8a fix(napi): stop unloading addons with live native code, preserve non-Error re...
  • 93e86ce chore(release): publish
  • 2c90599 fix(cli): support npm 12 pack output (#3449)
  • 360b1ec fix(wasi): avoid randomness during module registration (#3447)
  • b648c40 build(deps): bump nanoid from 3.3.16 to 3.3.18 (#3446)
  • Additional commits viewable in compare view

Updates @napi-rs/wasm-runtime from 1.1.6 to 1.2.2

Changelog

Sourced from @​napi-rs/wasm-runtime's changelog.

1.2.2 (2026-07-31)

Performance Improvements

1.2.1 (2026-07-30)

Bug Fixes

  • wasm-runtime: preserve emnapi v1 compatibility (#3426) (856326b)

1.2.0 (2026-07-28)

Features

Commits

Updates chalk from 5.6.2 to 6.0.0

Release notes

Sourced from chalk's releases.

v6.0.0

Breaking

  • Require Node.js 22 8a94e0e

Improvements

  • Add underline styles and underline colors (#689) 4c304dd
  • Improve performance 5729845 fa5cff2

Fixes

  • Treat a numeric FORCE_COLOR as an exact level (#688) e912931
  • Downsample ansi256() and bgAnsi256() to 16 colors at level 1 (#687) ff549c5

chalk/chalk@v5.6.2...v6.0.0

Commits

Updates lint-staged from 17.2.0 to 17.3.0

Release notes

Sourced from lint-staged's releases.

v17.3.0

Minor Changes

  • #1825 16b3f74 - It is now possible to run multiple tasks in parallel for a single glob by configuring it with an array of tasks (which run sequentially), and then placing another array inside it (where the tasks will run in parallel). The following demonstrates the order tasks will start in:

    {
      "*.ts": ["first", "second", ["third", "third"], "fourth"]
    }

    As a concrete example, lint-staged's own configuration is:

    /** @type {import('./lib/index.js').Configuration} */
    export default {
      "*": [
        [
          "oxfmt --check --no-error-on-unmatched-pattern",
          "oxlint --no-error-on-unmatched-pattern",
        ],
      ],
      "*.ts": () => "tsc",
    };

    which means:

    1. for all staged files, run the two commands in parallel with staged filenames appended, for example:
      • oxfmt --check --no-error-on-unmatched-pattern lib/index.js
      • oxlint --no-error-on-unmatched-pattern lib/index.js
    2. additionally, if any *.ts files are staged, run tsc without appending any arguments
    3. The two sets of commands also run in parallel

Patch Changes

  • #1829 15f7e53 - During an in-progress merge, files that are unchanged from the branch being merged are now skipped. Technically, files are only included if there are staged changes against both HEAD and MERGE_HEAD.
Changelog

Sourced from lint-staged's changelog.

17.3.0

Minor Changes

  • #1825 16b3f74 - It is now possible to run multiple tasks in parallel for a single glob by configuring it with an array of tasks (which run sequentially), and then placing another array inside it (where the tasks will run in parallel). The following demonstrates the order tasks will start in:

    {
      "*.ts": ["first", "second", ["third", "third"], "fourth"]
    }

    As a concrete example, lint-staged's own configuration is:

    /** @type {import('./lib/index.js').Configuration} */
    export default {
      "*": [
        [
          "oxfmt --check --no-error-on-unmatched-pattern",
          "oxlint --no-error-on-unmatched-pattern",
        ],
      ],
      "*.ts": () => "tsc",
    };

    which means:

    1. for all staged files, run the two commands in parallel with staged filenames appended, for example:
      • oxfmt --check --no-error-on-unmatched-pattern lib/index.js
      • oxlint --no-error-on-unmatched-pattern lib/index.js
    2. additionally, if any *.ts files are staged, run tsc without appending any arguments
    3. The two sets of commands also run in parallel

Patch Changes

  • #1829 15f7e53 - During an in-progress merge, files that are unchanged from the branch being merged are now skipped. Technically, files are only included if there are staged changes against both HEAD and MERGE_HEAD.
Commits
  • d153443 Merge pull request #1828 from lint-staged/changeset-release/main
  • 5162c14 chore(changeset): release
  • a4db9a4 Merge pull request #1831 from lint-staged/linter-updates
  • ea96cab style: enable oxlint "suspicious" category
  • 2fae007 style: add @e18e/eslint-plugin
  • 2280c38 Merge pull request #1829 from lint-staged/fix-merge-conflict-files
  • 1453ae6 test: relax assertion so that it passes in worktree
  • 15f7e53 fix: lint only files changed against HEAD and MERGE_HEAD, during a merge
  • dedfc31 Merge pull request #1825 from lint-staged/parallel-tasks-inside-sequence
  • 286e25c feat: allow running parallel tasks by nesting arrays
  • Additional commits viewable in compare view

Updates npm-run-all2 from 9.0.2 to 9.0.3

Release notes

Sourced from npm-run-all2's releases.

v9.0.3

Merged

Commits

  • Harden GitHub Actions workflows 7f5fca6
  • Remove obsolete shell-quote types d970668
Changelog

Sourced from npm-run-all2's changelog.

v9.0.3

Merged

Commits

  • Harden GitHub Actions workflows 7f5fca6
  • Remove obsolete shell-quote types d970668
Commits
  • 15b6080 9.0.3
  • cd624c4 Upgrade: Bump ansi-styles from 6.2.3 to 7.0.0 (#244)
  • ac00835 Upgrade: Bump zizmorcore/zizmor-action from 0.6.0 to 0.6.1 (#243)
  • dca8f34 Upgrade: Bump zizmorcore/zizmor-action from 0.5.7 to 0.6.0 (#242)
  • d970668 Remove obsolete shell-quote types
  • 7f5fca6 Harden GitHub Actions workflows
  • a0617b3 Upgrade: Bump actions/setup-node from 6 to 7 (#241)
  • 7b8430c chore: update schema version in .knip.jsonc to v6 (#237)
  • aab1c72 Upgrade: Bump @​types/node from 25.9.4 to 26.0.0 (#239)
  • f495e0d Upgrade: Bump actions/checkout from 6 to 7 (#238)
  • See full diff in compare view

Updates oxlint from 1.74.0 to 1.78.0

Changelog

Sourced from oxlint's changelog.

[1.78.0] - 2026-08-10

🚀 Features

  • ccb8fe8 linter/jsdoc: Implement no-blank-blocks rule (#25207) (Mikhail Baev)
  • d4a897c linter/eslint: Implement one-var rule (#24470) (Cole Ellison)
  • 5ab9340 linter/jsx-a11y/anchor-has-content: Add options to match eslint (#24571) (Cole Ellison)

🐛 Bug Fixes

  • 9573937 linter/typescript: Validate ban-ts-comment description_format (#25320) (Mikhail Baev)

[1.77.0] - 2026-08-03

🐛 Bug Fixes

  • 5c0fa61 linter/eslint/no-warning-comments: Unify config structs and remove manual options docs (#25151) (Mikhail Baev)

📚 Documentation

  • 9dc7756 linter/typescript/no-unnecessary-condition: Clarify options (#25110) (camc314)

[1.76.0] - 2026-07-27

🚀 Features

  • 8d31dfa linter: Verify eslint/no-restricted-globals config schema (#24598) (vigneshwar)
  • 7069621 linter: Verify jest/vitest prefer-lowercase-title config schema (#24724) (Bartok)
  • 016cf2a linter/oxc: Add bad-match-all-arg rule (#24900) (camc314)
  • cdc941e linter/n: Implement exports-style rule (#24087) (Mikhail Baev)
  • 1ad6f6c linter/eslint: Implement id-denylist rule (#24632) (Mikhail Baev)

📚 Documentation

  • 3ff2e0e linter: Clarify config extends types (#24936) (Boshen)

[1.75.0] - 2026-07-20

🚀 Features

  • dd18383 linter/node: Implement no-top-level-await rule (#24634) (Connor Shea)
  • 16a65f2 linter/react: Implement function-component-definition rule (#24471) (Cole Ellison)
  • 7f1f585 linter: Reuse jest/padding-around-test-blocks for vitest/padding-around-test-blocks (#24519) (Mikhail Baev)
  • 99978a8 linter/import/consistent-type-specifier-style: Support prefer-top-level-if-only-type-imports option (#24502) (camc314)

🐛 Bug Fixes

  • 8694167 linter/eslint/prefer-destructuring: Handle typed declarations (#24616) (camc314)
Commits
  • c42d639 release(apps): oxlint v1.78.0 && oxfmt v0.63.0 (#25473)
  • ccb8fe8 feat(linter/jsdoc): implement no-blank-blocks rule (#25207)
  • 9573937 fix(linter/typescript): validate ban-ts-comment description_format (#25320)
  • d4a897c feat(linter/eslint): implement one-var rule (#24470)
  • 5ab9340 feat(linter/jsx-a11y/anchor-has-content): add options to match eslint (#24571)
  • 9a423f2 release(apps): oxlint v1.77.0 && oxfmt v0.62.0 (#25251)
  • 5c0fa61 fix(linter/eslint/no-warning-comments): unify config structs and remove manua...
  • 9dc7756 docs(linter/typescript/no-unnecessary-condition): clarify options (#25110)
  • 65fe65d release(apps): oxlint v1.76.0 && oxfmt v0.61.0 (#24976)
  • 3ff2e0e docs(linter): clarify config extends types (#24936)
  • Additional commits viewable in compare view

Updates tinybench from 6.1.2 to 6.1.3

Release notes

Sourced from tinybench's releases.

v6.1.3

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • 053ecab chore: release v6.1.3
  • 2a46e5b refactor(utils): drop redundant boolean casts and comment-split ternaries
  • 76bd006 style: reflow signatures, imports and calls to formatter width
  • b54b73b fix: enforce optional signature (#633)
  • ebe67b3 chore(deps): update all non-major dependencies (#631)
  • 52fb2be chore(deps): lock file maintenance (#627)
  • 1eff6f9 chore(deps): update all non-major dependencies (#630)
  • f3bf4d3 chore(deps): update all non-major dependencies (#629)
  • f562c5c chore(deps): update all non-major dependencies (#628)
  • dbe7c91 chore(deps): update all non-major dependencies (#626)
  • Additional commits viewable in compare view

Updates zarrita from 0.7.3 to 0.7.4

Release notes

Sourced from zarrita's releases.

zarrita@0.7.4

Patch Changes

  • Fix BytesCodec mutating its input buffer in place when byte-swapping big-endian data. Combined with withByteCaching, this corrupted cached chunks so repeated reads alternated between correct and incorrect values. The codec now copies before swapping on both encode and decode. (#433)

  • Copy a selection in one go when it is contiguous in both the chunk and the output (#443)

  • Fix writes through the transpose codec when the order is not its own inverse (#444)

  • Fix transpose codec on dimension-reducing selections (#435)

  • Fix reads and writes through an integer index on a transposed array (#445)

Commits
  • 89f0048 Version Packages (#434)
  • 84effc0 Use node 24 in the release workflow (#449)
  • 922ef83 Update dev dependencies (#448)
  • 42093a0 chore(deps): bump actions/setup-node from 6 to 7 (#441)
  • 9d26f0b Follow-ups to the transpose and indexing fixes (#447)
  • d6043ef Copy a selection in one go when it is contiguous on both sides (#443)
  • 1b96b9b Apply the stride when an integer index terminates the copy (#445)
  • 0dd0632 Fix writes through the transpose codec (#444)
  • 24c638f chore(deps-dev): bump @​types/node from 25.6.0 to 26.1.0 (#439)
  • 7deafa3 chore(deps): bump actions/checkout from 6 to 7 (#436)
  • 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 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

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 17, 2026
@li-em
li-em force-pushed the dependabot/npm_and_yarn/icechunk-js/js-dependencies-1da3b16ec7 branch from 74e4cab to 41fbd83 Compare August 20, 2026 22:48
…th 10 updates

Bumps the js-dependencies group with 10 updates in the /icechunk-js directory:

| Package | From | To |
| --- | --- | --- |
| [@emnapi/core](https://github.com/toyobayashi/emnapi) | `1.11.2` | `1.11.3` |
| [@emnapi/runtime](https://github.com/toyobayashi/emnapi) | `1.11.2` | `1.11.3` |
| [@napi-rs/cli](https://github.com/napi-rs/napi-rs) | `3.7.4` | `3.8.5` |
| [@napi-rs/wasm-runtime](https://github.com/napi-rs/napi-rs/tree/HEAD/wasm-runtime) | `1.1.6` | `1.2.2` |
| [chalk](https://github.com/chalk/chalk) | `5.6.2` | `6.0.0` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `17.2.0` | `17.3.0` |
| [npm-run-all2](https://github.com/bcomnes/npm-run-all2) | `9.0.2` | `9.0.3` |
| [oxlint](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxlint) | `1.74.0` | `1.78.0` |
| [tinybench](https://github.com/tinylibs/tinybench) | `6.1.2` | `6.1.3` |
| [zarrita](https://github.com/manzt/zarrita.js) | `0.7.3` | `0.7.4` |



Updates `@emnapi/core` from 1.11.2 to 1.11.3
- [Release notes](https://github.com/toyobayashi/emnapi/releases)
- [Commits](toyobayashi/emnapi@v1.11.2...v1.11.3)

Updates `@emnapi/runtime` from 1.11.2 to 1.11.3
- [Release notes](https://github.com/toyobayashi/emnapi/releases)
- [Commits](toyobayashi/emnapi@v1.11.2...v1.11.3)

Updates `@napi-rs/cli` from 3.7.4 to 3.8.5
- [Release notes](https://github.com/napi-rs/napi-rs/releases)
- [Commits](https://github.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.7.4...@napi-rs/cli@3.8.5)

Updates `@napi-rs/wasm-runtime` from 1.1.6 to 1.2.2
- [Release notes](https://github.com/napi-rs/napi-rs/releases)
- [Changelog](https://github.com/napi-rs/napi-rs/blob/main/wasm-runtime/CHANGELOG.md)
- [Commits](https://github.com/napi-rs/napi-rs/commits/@napi-rs/wasm-runtime@1.2.2/wasm-runtime)

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

Updates `lint-staged` from 17.2.0 to 17.3.0
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v17.2.0...v17.3.0)

Updates `npm-run-all2` from 9.0.2 to 9.0.3
- [Release notes](https://github.com/bcomnes/npm-run-all2/releases)
- [Changelog](https://github.com/bcomnes/npm-run-all2/blob/master/CHANGELOG.md)
- [Commits](bcomnes/npm-run-all2@v9.0.2...v9.0.3)

Updates `oxlint` from 1.74.0 to 1.78.0
- [Release notes](https://github.com/oxc-project/oxc/releases)
- [Changelog](https://github.com/oxc-project/oxc/blob/main/npm/oxlint/CHANGELOG.md)
- [Commits](https://github.com/oxc-project/oxc/commits/oxlint_v1.78.0/npm/oxlint)

Updates `tinybench` from 6.1.2 to 6.1.3
- [Release notes](https://github.com/tinylibs/tinybench/releases)
- [Commits](tinylibs/tinybench@v6.1.2...v6.1.3)

Updates `zarrita` from 0.7.3 to 0.7.4
- [Release notes](https://github.com/manzt/zarrita.js/releases)
- [Commits](https://github.com/manzt/zarrita.js/compare/zarrita@0.7.3...zarrita@0.7.4)

---
updated-dependencies:
- dependency-name: "@emnapi/core"
  dependency-version: 1.11.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-dependencies
- dependency-name: "@emnapi/runtime"
  dependency-version: 1.11.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-dependencies
- dependency-name: "@napi-rs/cli"
  dependency-version: 3.8.5
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-dependencies
- dependency-name: "@napi-rs/wasm-runtime"
  dependency-version: 1.2.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-dependencies
- dependency-name: chalk
  dependency-version: 6.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: js-dependencies
- dependency-name: lint-staged
  dependency-version: 17.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-dependencies
- dependency-name: npm-run-all2
  dependency-version: 9.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-dependencies
- dependency-name: oxlint
  dependency-version: 1.78.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: js-dependencies
- dependency-name: tinybench
  dependency-version: 6.1.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-dependencies
- dependency-name: zarrita
  dependency-version: 0.7.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: js-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@li-em
li-em force-pushed the dependabot/npm_and_yarn/icechunk-js/js-dependencies-1da3b16ec7 branch from 41fbd83 to 15d637c Compare August 20, 2026 22:50
@codecov-commenter

codecov-commenter commented Aug 20, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 84.82%. Comparing base (224519b) to head (4d166d3).

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #2335   +/-   ##
=======================================
  Coverage   84.82%   84.82%           
=======================================
  Files          88       88           
  Lines       39444    39444           
=======================================
  Hits        33460    33460           
  Misses       5984     5984           
Flag Coverage Δ
python 90.06% <ø> (ø)
rust 84.23% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@napi-rs/cli 3.8.6 moves emnapi from a hard dependency to an optional
peer dependency. The CLI still resolves it in setWasiEnv, so the
wasm32-wasip1-threads build fails without it. Declare it directly.

Regenerate the wasi loader files, which 3.8.6 emits in a new form, and
index.js. icechunk.wasi.d.cts is new and required at publish.
@li-em
li-em force-pushed the dependabot/npm_and_yarn/icechunk-js/js-dependencies-1da3b16ec7 branch from 15d637c to 4d166d3 Compare August 20, 2026 23:06
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.

2 participants