Skip to content

Bump the all-non-major group across 1 directory with 8 updates - #5

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/all-non-major-fbab657061
Closed

Bump the all-non-major group across 1 directory with 8 updates#5
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/all-non-major-fbab657061

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 19, 2026

Copy link
Copy Markdown
Contributor

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps the all-non-major group with 8 updates in the / directory:

Package From To
zotero-plugin-toolkit 5.1.0-beta.13 5.1.2
@types/node 24.10.0 24.12.4
@zotero-plugin/eslint-config 0.6.7 0.6.9
chai 6.2.1 6.2.2
eslint 9.39.2 9.39.4
prettier 3.7.4 3.8.3
zotero-plugin-scaffold 0.8.2 0.8.6
zotero-types 4.1.0-beta.4 4.1.2

Updates zotero-plugin-toolkit from 5.1.0-beta.13 to 5.1.2

Release notes

Sourced from zotero-plugin-toolkit's releases.

v5.1.2

   🐞 Bug Fixes

    View changes on GitHub

v5.1.1

   🚨 Breaking Changes

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v5.1.0-beta.14

   🐞 Bug Fixes

    View changes on GitHub
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for zotero-plugin-toolkit since your current version.


Updates @types/node from 24.10.0 to 24.12.4

Commits

Updates @zotero-plugin/eslint-config from 0.6.7 to 0.6.9

Release notes

Sourced from @​zotero-plugin/eslint-config's releases.

v0.6.9

   🐞 Bug Fixes

    View changes on GitHub

v0.6.8

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • 71b06e8 chore(release): publish v0.6.9
  • 2a3fce4 fix: update deps
  • 2e78a40 fix: allow eslint 9
  • 433bd4c chore(release): publish v0.6.8
  • da8f999 chore(deps): update dependency chai to ^6.2.2 (#17)
  • 6c1e1b2 chore: fix playgroud lint
  • a22bc17 fix: eslint 10
  • 1e76f8e chore(deps): update dependency @​antfu/eslint-config to v7 (#18)
  • 6fd22b7 ci: use reuseable workflows
  • 061562f chore(deps): update actions/checkout action to v6 (#16)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​zotero-plugin/eslint-config since your current version.


Updates chai from 6.2.1 to 6.2.2

Release notes

Sourced from chai's releases.

v6.2.2

What's Changed

New Contributors

Full Changelog: chaijs/chai@v6.2.1...v6.2.2

Commits
  • 814172d chore(deps): update dependency esbuild to v0.27.2 (#1759)
  • b38c22b chore: add legal-comments=none option (#1756)
  • 180d4cc chore(deps): update dependencies to v9.39.2 (#1757)
  • 678cd00 chore(deps): update dependencies (#1755)
  • c8fb100 chore(deps): update dependency prettier to v3.7.3 (#1754)
  • d63c74e chore(deps): update dependency eslint-plugin-jsdoc to v61.4.1 (#1751)
  • 243bf86 fix: avoid BigInt literal in closeTo for runtime compat (#1748)
  • d8b0395 chore(deps): update actions/checkout action to v6 (#1749)
  • 7e1e247 build(deps): bump glob from 10.4.5 to 10.5.0 (#1747)
  • b25e5d8 chore(deps): update dependency eslint-plugin-jsdoc to v61.2.1 (#1746)
  • Additional commits viewable in compare view

Updates eslint from 9.39.2 to 9.39.4

Release notes

Sourced from eslint's releases.

v9.39.4

Bug Fixes

  • f18f6c8 fix: update dependency minimatch to ^3.1.5 (#20564) (Milos Djermanovic)
  • a3c868f fix: update dependency @​eslint/eslintrc to ^3.3.4 (#20554) (Milos Djermanovic)
  • 234d005 fix: minimatch security vulnerability patch for v9.x (#20549) (Andrej Beles)
  • b1b37ee fix: update ajv to 6.14.0 to address security vulnerabilities (#20538) (루밀LuMir)

Documentation

  • 4675152 docs: add deprecation notice partial (#20520) (Milos Djermanovic)

Chores

  • b8b4eb1 chore: update dependencies for ESLint v9.39.4 (#20596) (Francesco Trotta)
  • 71b2f6b chore: package.json update for @​eslint/js release (Jenkins)
  • 1d16c2f ci: pin Node.js 25.6.1 (#20563) (Milos Djermanovic)

v9.39.3

Bug Fixes

  • 791bf8d fix: restore TypeScript 4.0 compatibility in types (#20504) (sethamus)

Chores

  • 8594a43 chore: upgrade @​eslint/js@​9.39.3 (#20529) (Milos Djermanovic)
  • 9ceef92 chore: package.json update for @​eslint/js release (Jenkins)
  • af498c6 chore: ignore /docs/v9.x in link checker (#20453) (Milos Djermanovic)
Commits

Updates prettier from 3.7.4 to 3.8.3

Release notes

Sourced from prettier's releases.

3.8.3

🔗 Changelog

3.8.2

  • Support Angular v21.2

🔗 Changelog

3.8.1

🔗 Changelog

3.8.0

  • Support Angular v21.1

diff

🔗 Release note "Prettier 3.8: Support for Angular v21.1"

Changelog

Sourced from prettier's changelog.

3.8.3

diff

SCSS: Prevent trailing comma in if() function (#18471 by @​kovsu)

// Input
$value: if(sass(false): 1; else: -1);
// Prettier 3.8.2
$value: if(
sass(false): 1; else: -1,
);
// Prettier 3.8.3
$value: if(sass(false): 1; else: -1);

3.8.2

diff

Angular: Support Angular v21.2 (#18722, #19034 by @​fisker)

Exhaustive typechecking with @default never;

<!-- Input -->
@switch (foo) {
  @case (1) {}
  @default never;
}
<!-- Prettier 3.8.1 -->
SyntaxError: Incomplete block "default never". If you meant to write the @ character, you should use the "&#64;" HTML entity instead. (3:3)
<!-- Prettier 3.8.2 -->
@​switch (foo) {
@​case (1) {}
@​default never;
}

arrow function and instanceof expressions.

</tr></table> 

... (truncated)

Commits

Updates zotero-plugin-scaffold from 0.8.2 to 0.8.6

Release notes

Sourced from zotero-plugin-scaffold's releases.

v0.8.6

   🐞 Bug Fixes

    View changes on GitHub

v0.8.5

   🐞 Bug Fixes

    View changes on GitHub

v0.8.4

   🐞 Bug Fixes

    View changes on GitHub

v0.8.3

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • acd6d68 chore(release): publish v0.8.6
  • 4eb40ca chore: update deps
  • cd1911b fix(deps): update dependency bumpp to v11 (#173)
  • 2715d85 chore(deps): update github artifact actions (#172)
  • cb5a7a0 chore(deps): update actions/configure-pages action to v6 (#169)
  • a3e0cdc chore(deps): update actions/deploy-pages action to v5 (#170)
  • 138629f fix(deps): update all non-major dependencies (#168)
  • 9141453 fix(test-runner): exit process when test awaiting timeout
  • 70a81dc chore(release): publish v0.8.5
  • 2251a2e fix(test-runner): unresolved placeholders
  • Additional commits viewable in compare view

Updates zotero-types from 4.1.0-beta.4 to 4.1.2

Release notes

Sourced from zotero-types's releases.

v4.1.2

   🐞 Bug Fixes

    View changes on GitHub

v4.1.1

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v4.1.0-beta.8

No significant changes

    View changes on GitHub
Commits
  • 012c845 chore: release v4.1.2
  • 80328af fix: update collectionTreeRow type to _ZoteroTypes.CollectionTree
  • 29ce566 chore: use branch to lock pdfjs-types (#88)
  • 53fa5ea fix: update Zotero.File (#87)
  • f6b5840 chore: release v4.1.1
  • bfa38d6 fix: update and use full commit hash for pdfjs-types (#85)
  • b65cc96 chore: release v4.1.0-beta.8
  • a827fd4 chore: fix npm release
  • a638a2c chore: release v4.1.0-beta.7
  • 487286f chore: fix npm release
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for zotero-types since your current version.


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

Bumps the all-non-major group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [zotero-plugin-toolkit](https://github.com/windingwind/zotero-plugin-toolkit) | `5.1.0-beta.13` | `5.1.2` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.10.0` | `24.12.4` |
| [@zotero-plugin/eslint-config](https://github.com/zotero-plugin-dev/eslint-config) | `0.6.7` | `0.6.9` |
| [chai](https://github.com/chaijs/chai) | `6.2.1` | `6.2.2` |
| [eslint](https://github.com/eslint/eslint) | `9.39.2` | `9.39.4` |
| [prettier](https://github.com/prettier/prettier) | `3.7.4` | `3.8.3` |
| [zotero-plugin-scaffold](https://github.com/zotero-plugin-dev/zotero-plugin-scaffold) | `0.8.2` | `0.8.6` |
| [zotero-types](https://github.com/windingwind/zotero-types) | `4.1.0-beta.4` | `4.1.2` |



Updates `zotero-plugin-toolkit` from 5.1.0-beta.13 to 5.1.2
- [Release notes](https://github.com/windingwind/zotero-plugin-toolkit/releases)
- [Commits](windingwind/zotero-plugin-toolkit@v5.1.0-beta.13...v5.1.2)

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

Updates `@zotero-plugin/eslint-config` from 0.6.7 to 0.6.9
- [Release notes](https://github.com/zotero-plugin-dev/eslint-config/releases)
- [Commits](zotero-plugin-dev/eslint-config@v0.6.7...v0.6.9)

Updates `chai` from 6.2.1 to 6.2.2
- [Release notes](https://github.com/chaijs/chai/releases)
- [Changelog](https://github.com/chaijs/chai/blob/main/History.md)
- [Commits](chaijs/chai@v6.2.1...v6.2.2)

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

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

Updates `zotero-plugin-scaffold` from 0.8.2 to 0.8.6
- [Release notes](https://github.com/zotero-plugin-dev/zotero-plugin-scaffold/releases)
- [Commits](zotero-plugin-dev/zotero-plugin-scaffold@v0.8.2...v0.8.6)

Updates `zotero-types` from 4.1.0-beta.4 to 4.1.2
- [Release notes](https://github.com/windingwind/zotero-types/releases)
- [Commits](windingwind/zotero-types@v4.1.0-beta.4...v4.1.2)

---
updated-dependencies:
- dependency-name: zotero-plugin-toolkit
  dependency-version: 5.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-non-major
- dependency-name: "@types/node"
  dependency-version: 24.12.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-non-major
- dependency-name: "@zotero-plugin/eslint-config"
  dependency-version: 0.6.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-non-major
- dependency-name: chai
  dependency-version: 6.2.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-non-major
- dependency-name: eslint
  dependency-version: 9.39.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-non-major
- dependency-name: prettier
  dependency-version: 3.8.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-non-major
- dependency-name: zotero-plugin-scaffold
  dependency-version: 0.8.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-non-major
- dependency-name: zotero-types
  dependency-version: 4.1.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-non-major
...

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 May 19, 2026
@dependabot @github

dependabot Bot commented on behalf of github May 19, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are no longer being updated by Dependabot, so this is no longer needed.

@dependabot dependabot Bot closed this May 19, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/all-non-major-fbab657061 branch May 19, 2026 06:15
@github-actions github-actions Bot locked as resolved and limited conversation to collaborators Jun 18, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

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