Skip to content

ci(dev-deps): update all non-major dependencies #923

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 17, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 1, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@rebeccastevens/eslint-config 3.6.3 -> 3.7.1 age adoption passing confidence devDependencies minor
@types/node (source) 18.19.79 -> 18.19.80 age adoption passing confidence devDependencies patch
@vitest/eslint-plugin 1.1.36 -> 1.1.37 age adoption passing confidence devDependencies patch
codecov/codecov-action v5.1.2 -> v5.4.0 age adoption passing confidence action minor
eslint-doc-generator 2.1.0 -> 2.1.2 age adoption passing confidence devDependencies patch
eslint-import-resolver-typescript 3.8.3 -> 3.9.1 age adoption passing confidence devDependencies minor
eslint-plugin-import-x 4.6.1 -> 4.8.0 age adoption passing confidence devDependencies minor
eslint-plugin-jsdoc 50.6.3 -> 50.6.6 age adoption passing confidence devDependencies patch
github/accessibility-alt-text-bot v1.6.0 -> v1.7.1 age adoption passing confidence action minor
knip (source) 5.45.0 -> 5.46.0 age adoption passing confidence devDependencies minor
lint-staged 15.4.3 -> 15.5.0 age adoption passing confidence devDependencies minor
pnpm (source) 10.6.1 -> 10.6.3 age adoption passing confidence packageManager patch
rollup (source) 4.34.9 -> 4.35.0 age adoption passing confidence devDependencies minor

Release Notes

RebeccaStevens/eslint-config-rebeccastevens (@​rebeccastevens/eslint-config)

v3.7.1

Compare Source

Bug Fixes

v3.7.0

Compare Source

Features

3.6.3 (2025-02-24)

Bug Fixes

3.6.2 (2025-02-23)

Bug Fixes
  • rely on upstream for turning off rules for prettier (9d2cf76)

3.6.1 (2025-02-19)

Bug Fixes
  • remove deprecated rules (3e13442)
vitest-dev/eslint-plugin-vitest (@​vitest/eslint-plugin)

v1.1.37

Compare Source

Features

What's Changed

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.1.36...v1.1.37

codecov/codecov-action (codecov/codecov-action)

v5.4.0

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.3.1..v5.4.0

v5.3.1

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.3.0..v5.3.1

v5.3.0

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.2.0..v5.3.0

v5.2.0

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.1.2..v5.2.0

bmish/eslint-doc-generator (eslint-doc-generator)

v2.1.2

Compare Source

🐛 Bug Fix
🏠 Internal
Committers: 1

v2.1.1

Compare Source

🐛 Bug Fix
Committers: 1
import-js/eslint-import-resolver-typescript (eslint-import-resolver-typescript)

v3.9.1

Compare Source

Patch Changes

v3.9.0

Compare Source

Minor Changes

v3.8.7

Compare Source

Patch Changes

v3.8.6

Compare Source

Patch Changes

v3.8.5

Compare Source

Patch Changes

v3.8.4

Compare Source

Patch Changes
un-ts/eslint-plugin-import-x (eslint-plugin-import-x)

v4.8.0

Compare Source

Minor Changes

v4.7.2

Compare Source

Patch Changes

v4.7.1

Compare Source

Patch Changes

v4.7.0

Compare Source

Minor Changes
Patch Changes
gajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc)

v50.6.6

Compare Source

Bug Fixes
  • empty-tags: allow for JSDoc-block final asterisks; fixes #​670 (23b4bfa)

v50.6.5

Compare Source

Bug Fixes
  • text-escaping: always allow content in example tags; fixes #​1360 (6baad05)

v50.6.4

Compare Source

Bug Fixes
github/accessibility-alt-text-bot (github/accessibility-alt-text-bot)

v1.7.1

Compare Source

What's Changed

Full Changelog: github/accessibility-alt-text-bot@v1.7.0...v1.7.1

v1.7.0

Compare Source

What's Changed

Docs
Experimental

Full Changelog: github/accessibility-alt-text-bot@v1.6.0...v1.7.0

webpro-nl/knip (knip)

v5.46.0

Compare Source

lint-staged/lint-staged (lint-staged)

v15.5.0

Compare Source

Minor Changes
  • #​1526 630af5f Thanks @​iiroj! - Lint-staged no longer resets to the original state when preventing an empty git commit. This happens when your configured tasks reset all the staged changes, typically when trying to commit formatting changes which conflict with your linter setup like ESLint or Prettier.
Example with Prettier

By default Prettier prefers double quotes.

Previously
  1. Stage file.js with only double quotes " changed to '
  2. Run git commit -am "I don't like double quotes"
  3. Lint-staged runs prettier --write file.js, converting all the ' back to "
  4. Because there are now no changes, lint-staged fails, cancels the commit, and resets back to the original state
  5. Commit was not done, original state is restored and single quotes ' are staged
Now
  1. Stage file.js with only double-quotes " changed to '
  2. Run git commit -am "I don't like double quotes"
  3. Lint-staged runs prettier --write file.js, converting all the ' back to "
  4. Because there are now no changes, lint-staged fails and cancels the commit
  5. Commit was not done, and there are no staged changes
pnpm/pnpm (pnpm)

v10.6.3

Compare Source

Patch Changes
  • pnpm install --prod=false should not crash, when executed in a project with a pnpm-workspace.yaml file #​9233. This fixes regression introduced via #​9211.

  • Add the missing node-options config to recursive run #​9180.

  • Removed a branching code path that only executed when dedupe-peer-dependents=false. We believe this internal refactor will not result in behavior changes, but we expect it to make future pnpm versions behave more consistently for projects that override dedupe-peer-dependents to false. There should be less unique bugs from turning off dedupe-peer-dependents.

    See details in #​9259.

v10.6.2

Compare Source

Patch Changes
  • pnpm self-update should always update the version in the packageManager field of package.json.
  • Fix running pnpm CLI from pnpm CLI on Windows when the CLI is bundled to an executable #​8971.
  • pnpm patch-commit will now use the same filesystem as the store directory to compare and create patch files.
  • Don't show info output when --loglevel=error is used.
  • peerDependencyRules should be set in pnpm-workspace.yaml to take effect.
rollup/rollup (rollup)

v4.35.0

Compare Source

2025-03-08

Features
  • Pass build errors to the closeBundle hook (#​5867)
Pull Requests

Configuration

📅 Schedule: Branch creation - "* 0-3 1 * *" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added 💙 Renovate Type: Maintenance Generic maintenance tasks, e.g., package updates. labels Feb 1, 2025
Copy link

graphite-app bot commented Feb 1, 2025

How to use the Graphite Merge Queue

Add either label to this PR to merge it via the merge queue:

  • Status: Merge Queue - adds this PR to the back of the merge queue
  • Status: Hotfix - for urgent hot fixes, skip the queue and merge this PR next

You must have a Graphite account in order to use the merge queue. Sign up using this link.

An organization admin has enabled the Graphite Merge Queue in this repository.

Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 21 times, most recently from e80d663 to fee1922 Compare February 7, 2025 17:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from a733a75 to 440a227 Compare February 12, 2025 19:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from d6883ce to d3808a2 Compare March 6, 2025 07:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 11 times, most recently from dd137ac to b7c3e05 Compare March 13, 2025 19:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 7762ae8 to 665adca Compare March 16, 2025 17:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 665adca to 80827cc Compare March 17, 2025 03:46
@renovate renovate bot merged commit 593b198 into main Mar 17, 2025
15 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch March 17, 2025 06:42
Copy link

github-actions bot commented Jun 2, 2025

🎉 This PR is included in version 9.0.2 🎉

The release is available on:

Your semantic-release bot 📦🚀

@github-actions github-actions bot added the Status: Released It's now live. label Jun 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
💙 Renovate Status: Released It's now live. Type: Maintenance Generic maintenance tasks, e.g., package updates.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants