Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2026

Bumps the all-dependencies group with 26 updates in the /action directory:

Package From To
@actions/core 1.10.1 2.0.1
@actions/exec 1.1.1 2.0.0
@actions/github 6.0.0 6.0.1
ajv 8.13.0 8.17.1
cross-env 7.0.3 10.1.0
cross-fetch 4.0.0 4.1.0
eslint-plugin-prettier 5.1.3 5.5.4
form-data 4.0.4 4.0.5
jimp 0.22.12 1.6.0
mime-types 2.1.35 3.0.2
@types/mime-types 2.1.4 3.0.1
pixelmatch 5.3.0 7.1.0
@octokit/openapi-types 22.2.0 27.0.0
@trivago/prettier-plugin-sort-imports 4.3.0 6.0.0
@types/lodash 4.17.1 4.17.21
@types/node 20.12.12 25.0.3
@vercel/ncc 0.38.1 0.38.4
eslint-config-prettier 9.1.0 10.1.8
eslint-plugin-github 4.10.2 6.0.0
eslint-plugin-jest 28.5.0 29.12.0
husky 9.0.11 9.1.7
jest 29.7.0 30.2.0
js-yaml 4.1.0 4.1.1
lint-staged 15.2.2 16.2.7
prettier 3.2.5 3.7.4
ts-jest 29.1.2 29.4.6

Updates @actions/core from 1.10.1 to 2.0.1

Changelog

Sourced from @​actions/core's changelog.

2.0.1

  • Bump @​actions/exec from 1.1.1 to 2.0.0 #2199

2.0.0

  • Add support for Node 24 #2110
  • Bump @​actions/http-client from 2.0.1 to 3.0.0

1.11.1

  • Fix uses of crypto.randomUUID on Node 18 and earlier #1842

1.11.0

  • Add platform info utilities #1551
  • Remove dependency on uuid package #1824
Commits
Maintainer changes

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


Updates @actions/exec from 1.1.1 to 2.0.0

Changelog

Sourced from @​actions/exec's changelog.

2.0.0

  • Add support for Node 24 #2110
  • Bump @​actions/io dependency from ^1.0.1 to ^2.0.0
Commits

Updates @actions/github from 6.0.0 to 6.0.1

Changelog

Sourced from @​actions/github's changelog.

6.0.1

  • Dependency updates #2043
  • Add context.runAttempt #1588
Commits

Updates ajv from 8.13.0 to 8.17.1

Release notes

Sourced from ajv's releases.

v8.17.1

What's Changed

Full Changelog: ajv-validator/ajv@v8.17.0...v8.17.1

Plus everything in 8.17.0 which failed to release

The only functional change is to switch from uri-js (which is no longer supported), to fast-uri. This is the second attempt and the team on fast-uri have been really helpful addressing the issues we found last time.

Revert "Revert fast-uri change (ajv-validator/ajv#2444)" by @​gurgunday in ajv-validator/ajv#2448 fix: ignore new eslint error for @​typescript-eslint/no-extraneous-class by @​jasoniangreen in ajv-validator/ajv#2455 docs: clarify behaviour of addVocabulary by @​jasoniangreen in ajv-validator/ajv#2454 docs: refactor to improve legibility by @​blottn in ajv-validator/ajv#2432 Fix grammatical typo in managing-schemas.md by @​wetneb in ajv-validator/ajv#2305 docs: Fix broken strict-mode link by @​alexanderjsx in ajv-validator/ajv#2459 feat: add test for encoded refs and bump fast-uri by @​jasoniangreen in ajv-validator/ajv#2449 fix: changes for @​typescript-eslint/array-type rule by @​jasoniangreen in ajv-validator/ajv#2467 fixes ajv-validator/ajv#2217 - clarify custom keyword naming by @​jasoniangreen in ajv-validator/ajv#2457

v8.17.0

What's Changed

The only functional change is to switch from uri-js (which is no longer supported), to fast-uri. This is the second attempt and the team on fast-uri have been really helpful addressing the issues we found last time.

New Contributors

Full Changelog: ajv-validator/ajv@v8.16.0...v8.17.0

v8.16.0

What's Changed

Full Changelog: ajv-validator/ajv@v8.15.0...v8.16.0

... (truncated)

Commits

Updates cross-env from 7.0.3 to 10.1.0

Release notes

Sourced from cross-env's releases.

v10.1.0

10.1.0 (2025-09-29)

Features

  • add support for default value syntax (152ae6a)

For example:

"dev:server": "cross-env wrangler dev --port ${PORT:-8787}",

If PORT is already set, use that value, otherwise fallback to 8787.

Learn more about Shell Parameter Expansion

v10.0.0

10.0.0 (2025-07-25)

TL;DR: You should probably not have to change anything if:

  • You're using a modern maintained version of Node.js (v20+ is tested)
  • You're only using the CLI (most of you are as that's the intended purpose)

In this release (which should have been v8 except I had some issues with automated releases 🙈), I've updated all the things and modernized the package. This happened in #261

Was this needed? Not really, but I just thought it'd be fun to modernize this package.

Here's the highlights of what was done.

  • Replace Jest with Vitest for testing
  • Convert all source files from .js to .ts with proper TypeScript types
  • Use zshy for ESM-only builds (removes CJS support)
  • Adopt @​epic-web/config for TypeScript, ESLint, and Prettier
  • Update to Node.js >=20 requirement
  • Remove kcd-scripts dependency
  • Add comprehensive e2e tests with GitHub Actions matrix testing
  • Update GitHub workflow with caching and cross-platform testing
  • Modernize documentation and remove outdated sections
  • Update all dependencies to latest versions
  • Add proper TypeScript declarations and exports

The tool maintains its original functionality while being completely modernized with the latest tooling and best practices

BREAKING CHANGES

  • This is a major rewrite that changes the module format from CommonJS to ESM-only. The package now requires Node.js >=20 and only exports ESM modules (not relevant in most cases).
Commits
  • 152ae6a feat: add support ofr default value syntax
  • bd70d1a chore: upgrade zshy
  • 8e0b190 chore(ci): get coverage
  • 8635e80 fix(release): manually release a major version
  • 3a58f22 chore: fix npmrc registry
  • b70bfff chore(ci): add names to steps and workflows
  • cc5759d fix(release): manually release a major version
  • 080a859 chore: remove publish script
  • 31e5bc7 chore(ci): restore built files
  • 81e9c34 chore(ci): add back semantic-release
  • Additional commits viewable in compare view

Updates cross-fetch from 4.0.0 to 4.1.0

Release notes

Sourced from cross-fetch's releases.

v4.1.0

What's Changed

FEATURES

  • Added support for Node 22.
  • Upgraded node-fetch to 2.7.0. Please refer to node-fetch release notes between 2.6.13 and 2.7.0 for features and bug fixes.

FIXES

  • Upgraded whatwg-fetch to 3.6.20. Please refer to whatwg-fetch release notes between 3.6.2 and 3.6.20 for bug fixes.
Changelog

Sourced from cross-fetch's changelog.

4.1.0 (2024-12-21)

Features

Bug Fixes

Commits
  • 3415e1f chore(release): 4.1.0
  • f0dbe54 chore: fixed release workflow
  • df46c2a fix: updated whatwg-fetch to 3.6.20 (#197)
  • 04846bc refactor: improved make targets output
  • 0ab2481 feat: updated node-fetch to 2.7.0 (#192)
  • 074cd87 feat: added support for node 22
  • 4283bd9 chore: changed default node version to 20
  • 625bf57 chore: updated action/setup-node to v4 and hmarr/debug-action to v3
  • d24345b chore: updated actions/checkout and actions/cache to v4
  • ccaf40b chore: switched minifier from @​rollup/plugin-terser to rollup-plugin-esbuild ...
  • Additional commits viewable in compare view

Updates eslint-plugin-prettier from 5.1.3 to 5.5.4

Release notes

Sourced from eslint-plugin-prettier's releases.

v5.5.4

Patch Changes

v5.5.3

republish the latest version

Full Changelog: prettier/eslint-plugin-prettier@v5.5.2...v5.5.3

v5.5.2

republish the latest version

Full Changelog: prettier/eslint-plugin-prettier@v5.5.1...v5.5.2

v5.5.1

Patch Changes

Full Changelog: prettier/eslint-plugin-prettier@v5.5.0...v5.5.1

v5.5.0

Minor Changes

  • #743 92f2c9c Thanks @​dotcarmen! - feat: support non-js languages like css for @eslint/css and json for @eslint/json

New Contributors

Full Changelog: prettier/eslint-plugin-prettier@v5.4.1...v5.5.0

v5.4.1

Patch Changes

  • #740 c21521f Thanks @​JounQin! - fix(deps): bump synckit to v0.11.7 to fix potential TypeError: Cannot read properties of undefined (reading 'message') error

Full Changelog: prettier/eslint-plugin-prettier@v5.4.0...v5.4.1

v5.4.0

Minor Changes

v5.3.1

Patch Changes

... (truncated)

Changelog

Sourced from eslint-plugin-prettier's changelog.

5.5.4

Patch Changes

5.5.1

Patch Changes

5.5.0

Minor Changes

  • #743 92f2c9c Thanks @​dotcarmen! - feat: support non-js languages like css for @eslint/css and json for @eslint/json

5.4.1

Patch Changes

  • #740 c21521f Thanks @​JounQin! - fix(deps): bump synckit to v0.11.7 to fix potential TypeError: Cannot read properties of undefined (reading 'message') error

5.4.0

Minor Changes

5.3.1

Patch Changes

5.3.0

Minor Changes

5.2.6

Patch Changes

... (truncated)

Commits
  • e2c31d2 chore: release eslint-plugin-prettier (#756)
  • 98a8bfd chore(deps): update all dependencies (#750)
  • cf52b30 fix: disallow extra properties in rule options (#751)
  • 723f7a8 fix: add 'oxc', 'oxc-ts' and 'hermes' parsers to parserBlocklist (#755)
  • cdfcefd fix: release a new latest version
  • d8c303e fix: release a new latest version
  • 3e87f2e chore: release eslint-plugin-prettier (#749)
  • bfd1e95 fix: use prettierRcOptions directly for prettier 3.6+ (#748)
  • 9c4b792 chore: release eslint-plugin-prettier (#744)
  • 78e41ec chore(deps): update all dependencies (#745)
  • Additional commits viewable in compare view

Updates form-data from 4.0.4 to 4.0.5

Changelog

Sourced from form-data's changelog.

v4.0.5 - 2025-11-17

Commits

  • [Tests] Switch to newer v8 prediction library; enable node 24 testing 16e0076
  • [Dev Deps] update @ljharb/eslint-config, eslint 5822467
  • [Fix] set Symbol.toStringTag in the proper place 76d0dee
Commits
  • 68ff7dd v4.0.5
  • 5822467 [Dev Deps] update @ljharb/eslint-config, eslint
  • 76d0dee [Fix] set Symbol.toStringTag in the proper place
  • 16e0076 [Tests] Switch to newer v8 prediction library; enable node 24 testing
  • See full diff in compare view

Updates jimp from 0.22.12 to 1.6.0

Release notes

Sourced from jimp's releases.

v1.6.0

Release Notes

Add support for image decoder options (#1336)

Can now have options for the underlying image codecs

CleanShot 2024-09-07 at 15 26 41


🚀 Enhancement

  • @jimp/core, @jimp/types, @jimp/js-bmp, @jimp/js-jpeg, @jimp/js-png

⚠️ Pushed to main

Authors: 1

v1.4.0

🚀 Enhancement

🐛 Bug Fix

⚠️ Pushed to main

  • @jimp/core, @jimp/types, @jimp/utils, @jimp/plugin-print, @jimp/plugin-quantize, @jimp/wasm-webp

📝 Documentation

... (truncated)

Changelog

Sourced from jimp's changelog.

v1.5.0 (Mon Sep 09 2024)

Release Notes

Add support for image decoder options (#1336)

Can now have options for the underlying image codecs

CleanShot 2024-09-07 at 15 26 41


🚀 Enhancement

  • @jimp/core, @jimp/types, @jimp/js-bmp, @jimp/js-jpeg, @jimp/js-png

⚠️ Pushed to main

Authors: 1


v1.5.0 (Sat Sep 07 2024)

Release Notes

Add support for image decoder options (#1336)

Can now have options for the underlying image codecs

CleanShot 2024-09-07 at 15 26 41


🚀 Enhancement

  • @jimp/core, @jimp/types, @jimp/js-bmp, @jimp/js-jpeg, @jimp/js-png

Authors: 1


... (truncated)

Commits

Updates mime-types from 2.1.35 to 3.0.2

Release notes

Sourced from mime-types's releases.

v3.0.2

What's Changed

New Contributors

Full Changelog: jshttp/mime-types@v3.0.1...v3.0.2

v3.0.1

What's Changed

New Contributors

Full Changelog: jshttp/mime-types@v3.0.0...v3.0.1

v3.0.0

What's Changed

... (truncated)

Changelog

Sourced from mime-types's changelog.

3.0.2 / 2025-11-20

  • Fix: update JSDoc to reflect that functions return only false or string, not boolean|string.
  • Fix: refined mime-score logic so .mp4 resolves correctly
  • Fix:reflect the current Node.js version supported to ≥ 18 (See 3.0.0 for more details).

3.0.1 / 2025-03-26

  • deps: mime-db@1.54.0

3.0.0 / 2024-08-31

  • Drop support for node <18
  • deps: mime-db@1.53.0
  • resolve extension conflicts with mime-score (#119)
    • asc -> application/pgp-signature is now application/pgp-keys
    • mpp -> application/vnd.ms-project is now application/dash-patch+xml
    • ac -> application/vnd.nokia.n-gage.ac+xml is now application/pkix-attr-cert
    • bdoc -> application/x-bdoc is now application/bdoc
    • wmz -> application/x-msmetafile is now application/x-ms-wmz
    • xsl -> application/xslt+xml is now application/xml
    • wav -> audio/wave is now audio/wav
    • rtf -> text/rtf is now application/rtf
    • xml -> text/xml is now application/xml
    • mp4 -> video/mp4 is now application/mp4
    • mpg4 -> video/mp4 is now application/mp4
Commits
  • 29a0302 3.0.2 (#169)
  • c3ebfb1 build(deps-dev): bump eslint-plugin-import from 2.27.5 to 2.32.0 (#155)
  • 02e8eb2 fix: update JSDoc to convey only false return (#152)
  • ef03e6a build(deps): bump actions/upload-artifact from 4.5.0 to 4.6.2 (#147)
  • 636cd1b build(deps-dev): bump mocha from 10.2.0 to 10.8.2 (#149)
  • c02166b build(deps-dev): bump eslint-plugin-markdown from 3.0.0 to 3.0.1 (#148)
  • 44956c6 build(deps): bump coverallsapp/github-action from 1.2.5 to 2.3.6 (#144)
  • 5e3bb15 build(deps-dev): bump eslint-plugin-promise from 6.1.1 to 6.6.0 (#150)
  • 53f720c build(deps): bump ossf/scorecard-action from 2.4.0 to 2.4.3 (#167)
  • eac806f build(deps): bump github/codeql-action from 3.30.0 to 3.30.5 (#168)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by ulisesgascon, a new releaser for mime-types since your current version.


Updates @types/mime-types from 2.1.4 to 3.0.1

Commits

Updates pixelmatch from 5.3.0 to 7.1.0

Release notes

Sourced from pixelmatch's releases.

v7.1.0

  • Add first-class TypeScript types to the project. They'll be maintained in the repo from now on. #139
  • Improve matching performance by ~22%. #150

v7.0.0

  • Potentially breaking: improve handling of semitransparent pixels. Previously, they were blended with white, so a transparent pixel vs white pixel would show zero difference; now pixels are blended with an irregular pattern, making it easier to catch regressions. (h/t @​NathanMOlson #142)
  • Improve match performance by ~6%. #147
  • Significantly improve diff generation performance. (h/t @​kawanet #105)
  • Fix options handling to use the default value when undefined is passed explicitly. (h/t @​denis-sokolov #146)
  • Fix ESLint failing on Windows when working on the library locally. (h/t @​haraldreingruber-dedalus #123)

v6.0.0

⚠️ Breaking: publish pixelmatch as a ES module. Use the older v5.3.0 if you need to support CommonJS environments.

Commits

Updates @octokit/openapi-types from 22.2.0 to 27.0.0

Release notes

Sourced from @​octokit/openapi-types's releases.

v27.0.0

27.0.0 (2025-10-30)

Features

  • add GHES 3.18, immutable releases, enterprise team membership, enterprise team organization, custom runner images, many type additions and improvements (#479) (1e600e2)

BREAKING CHANGES

  • Several endpoints ID change
  • Removed endpoints

v26.0.0

26.0.0 (2025-09-16)

Features

  • remove GHES 3.13, new Projects v2 endpoints, new code scanning dismissal endpoints, many other endpoints (#471) (f322421)

BREAKING CHANGES

  • remove GHES 3.13

v25.1.0

25.1.0 (2025-05-25)

Features

  • add GHES 3.17, new /credentials/revoke, /users/{username}/settings/billing/usage, /enterprises/{enterprise}/members/{username}/copilot endpoints, description updates (#493) (#465) (9c706c4)

v25.0.0

25.0.0 (2025-04-09)

Features

  • new /orgs/{org}/campaigns, /orgs/{org}/campaigns/{campaign_number} endpoints, remove Copilot usage endpoints, description updates (#461) (f27d1a2)

BREAKING CHANGES

  • Remove Copilot usage endpoints

... (truncated)

Commits
  • 1e600e2 feat: add GHES 3.18, immutable releases, enterprise team membership, enterpri...
  • f322421 feat: remove GHES 3.13, new Projects v2 endpoints, new code scanning dismissa...

    Description has been truncated

Bumps the all-dependencies group with 26 updates in the /action directory:

| Package | From | To |
| --- | --- | --- |
| [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) | `1.10.1` | `2.0.1` |
| [@actions/exec](https://github.com/actions/toolkit/tree/HEAD/packages/exec) | `1.1.1` | `2.0.0` |
| [@actions/github](https://github.com/actions/toolkit/tree/HEAD/packages/github) | `6.0.0` | `6.0.1` |
| [ajv](https://github.com/ajv-validator/ajv) | `8.13.0` | `8.17.1` |
| [cross-env](https://github.com/kentcdodds/cross-env) | `7.0.3` | `10.1.0` |
| [cross-fetch](https://github.com/lquixada/cross-fetch) | `4.0.0` | `4.1.0` |
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.1.3` | `5.5.4` |
| [form-data](https://github.com/form-data/form-data) | `4.0.4` | `4.0.5` |
| [jimp](https://github.com/jimp-dev/jimp) | `0.22.12` | `1.6.0` |
| [mime-types](https://github.com/jshttp/mime-types) | `2.1.35` | `3.0.2` |
| [@types/mime-types](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/mime-types) | `2.1.4` | `3.0.1` |
| [pixelmatch](https://github.com/mapbox/pixelmatch) | `5.3.0` | `7.1.0` |
| [@octokit/openapi-types](https://github.com/octokit/openapi-types.ts/tree/HEAD/packages/openapi-types) | `22.2.0` | `27.0.0` |
| [@trivago/prettier-plugin-sort-imports](https://github.com/trivago/prettier-plugin-sort-imports) | `4.3.0` | `6.0.0` |
| [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) | `4.17.1` | `4.17.21` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.12.12` | `25.0.3` |
| [@vercel/ncc](https://github.com/vercel/ncc) | `0.38.1` | `0.38.4` |
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `9.1.0` | `10.1.8` |
| [eslint-plugin-github](https://github.com/github/eslint-plugin-github) | `4.10.2` | `6.0.0` |
| [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) | `28.5.0` | `29.12.0` |
| [husky](https://github.com/typicode/husky) | `9.0.11` | `9.1.7` |
| [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) | `29.7.0` | `30.2.0` |
| [js-yaml](https://github.com/nodeca/js-yaml) | `4.1.0` | `4.1.1` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.2.2` | `16.2.7` |
| [prettier](https://github.com/prettier/prettier) | `3.2.5` | `3.7.4` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `29.1.2` | `29.4.6` |



Updates `@actions/core` from 1.10.1 to 2.0.1
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/@actions/artifact@2.0.1/packages/core)

Updates `@actions/exec` from 1.1.1 to 2.0.0
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/exec/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/exec)

Updates `@actions/github` from 6.0.0 to 6.0.1
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/github/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/github)

Updates `ajv` from 8.13.0 to 8.17.1
- [Release notes](https://github.com/ajv-validator/ajv/releases)
- [Commits](ajv-validator/ajv@v8.13.0...v8.17.1)

Updates `cross-env` from 7.0.3 to 10.1.0
- [Release notes](https://github.com/kentcdodds/cross-env/releases)
- [Changelog](https://github.com/kentcdodds/cross-env/blob/main/CHANGELOG.md)
- [Commits](kentcdodds/cross-env@v7.0.3...v10.1.0)

Updates `cross-fetch` from 4.0.0 to 4.1.0
- [Release notes](https://github.com/lquixada/cross-fetch/releases)
- [Changelog](https://github.com/lquixada/cross-fetch/blob/v4.x/CHANGELOG.md)
- [Commits](lquixada/cross-fetch@v4.0.0...v4.1.0)

Updates `eslint-plugin-prettier` from 5.1.3 to 5.5.4
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-plugin-prettier@v5.1.3...v5.5.4)

Updates `form-data` from 4.0.4 to 4.0.5
- [Release notes](https://github.com/form-data/form-data/releases)
- [Changelog](https://github.com/form-data/form-data/blob/master/CHANGELOG.md)
- [Commits](form-data/form-data@v4.0.4...v4.0.5)

Updates `jimp` from 0.22.12 to 1.6.0
- [Release notes](https://github.com/jimp-dev/jimp/releases)
- [Changelog](https://github.com/jimp-dev/jimp/blob/main/CHANGELOG.md)
- [Commits](jimp-dev/jimp@v0.22.12...v1.6.0)

Updates `mime-types` from 2.1.35 to 3.0.2
- [Release notes](https://github.com/jshttp/mime-types/releases)
- [Changelog](https://github.com/jshttp/mime-types/blob/master/HISTORY.md)
- [Commits](jshttp/mime-types@2.1.35...v3.0.2)

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

Updates `pixelmatch` from 5.3.0 to 7.1.0
- [Release notes](https://github.com/mapbox/pixelmatch/releases)
- [Commits](mapbox/pixelmatch@v5.3.0...v7.1.0)

Updates `@octokit/openapi-types` from 22.2.0 to 27.0.0
- [Release notes](https://github.com/octokit/openapi-types.ts/releases)
- [Commits](https://github.com/octokit/openapi-types.ts/commits/v27.0.0/packages/openapi-types)

Updates `@trivago/prettier-plugin-sort-imports` from 4.3.0 to 6.0.0
- [Release notes](https://github.com/trivago/prettier-plugin-sort-imports/releases)
- [Changelog](https://github.com/trivago/prettier-plugin-sort-imports/blob/main/CHANGELOG.md)
- [Commits](trivago/prettier-plugin-sort-imports@v4.3.0...v6.0.0)

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

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

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

Updates `@vercel/ncc` from 0.38.1 to 0.38.4
- [Release notes](https://github.com/vercel/ncc/releases)
- [Commits](vercel/ncc@0.38.1...0.38.4)

Updates `eslint-config-prettier` from 9.1.0 to 10.1.8
- [Release notes](https://github.com/prettier/eslint-config-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-config-prettier@v9.1.0...v10.1.8)

Updates `eslint-plugin-github` from 4.10.2 to 6.0.0
- [Release notes](https://github.com/github/eslint-plugin-github/releases)
- [Commits](github/eslint-plugin-github@v4.10.2...v6.0.0)

Updates `eslint-plugin-jest` from 28.5.0 to 29.12.0
- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases)
- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md)
- [Commits](jest-community/eslint-plugin-jest@v28.5.0...v29.12.0)

Updates `husky` from 9.0.11 to 9.1.7
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v9.0.11...v9.1.7)

Updates `jest` from 29.7.0 to 30.2.0
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v30.2.0/packages/jest)

Updates `js-yaml` from 4.1.0 to 4.1.1
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](nodeca/js-yaml@4.1.0...4.1.1)

Updates `lint-staged` from 15.2.2 to 16.2.7
- [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@v15.2.2...v16.2.7)

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

Updates `ts-jest` from 29.1.2 to 29.4.6
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v29.1.2...v29.4.6)

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

---
updated-dependencies:
- dependency-name: "@actions/core"
  dependency-version: 2.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@actions/exec"
  dependency-version: 2.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@actions/github"
  dependency-version: 6.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: ajv
  dependency-version: 8.17.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: cross-env
  dependency-version: 10.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: cross-fetch
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: eslint-plugin-prettier
  dependency-version: 5.5.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: form-data
  dependency-version: 4.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: jimp
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: mime-types
  dependency-version: 3.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@types/mime-types"
  dependency-version: 3.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: pixelmatch
  dependency-version: 7.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@octokit/openapi-types"
  dependency-version: 27.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@trivago/prettier-plugin-sort-imports"
  dependency-version: 6.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@types/lodash"
  dependency-version: 4.17.21
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@types/mime-types"
  dependency-version: 3.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@types/node"
  dependency-version: 25.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@vercel/ncc"
  dependency-version: 0.38.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: eslint-config-prettier
  dependency-version: 10.1.8
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: eslint-plugin-github
  dependency-version: 6.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: eslint-plugin-jest
  dependency-version: 29.12.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: husky
  dependency-version: 9.1.7
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: jest
  dependency-version: 30.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: js-yaml
  dependency-version: 4.1.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: lint-staged
  dependency-version: 16.2.7
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: prettier
  dependency-version: 3.7.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: ts-jest
  dependency-version: 29.4.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: typescript
  dependency-version: 5.9.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

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 Jan 1, 2026
@vercel
Copy link

vercel bot commented Jan 1, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Review Updated (UTC)
stoat-docs Ready Ready Preview Jan 1, 2026 11:06pm

@stoat-app
Copy link

stoat-app bot commented Jan 1, 2026

Easy and customizable dashboards for your build system. Learn more about Stoat ↗︎

Chart

Package Size
Runner Memory Usage

Job Runtime

job runtime chart

debug

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant