Skip to content

chore(deps): update patch/minor dependencies #1226

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
May 7, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 25, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@commitlint/cli (source) 19.7.1 -> 19.8.0 age adoption passing confidence
@commitlint/config-angular (source) 19.7.1 -> 19.8.0 age adoption passing confidence
@octokit/action 7.0.1 -> 7.0.2 age adoption passing confidence
@types/node (source) 22.13.4 -> 22.15.15 age adoption passing confidence
@typescript-eslint/utils (source) 8.24.0 -> 8.32.0 age adoption passing confidence
eslint-import-resolver-typescript 3.8.0 -> 3.10.1 age adoption passing confidence
lint-staged 15.4.3 -> 15.5.2 age adoption passing confidence
prettier (source) 3.5.1 -> 3.5.3 age adoption passing confidence
pretty-quick 4.0.0 -> 4.1.1 age adoption passing confidence
typescript (source) 5.7.3 -> 5.8.3 age adoption passing confidence

Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v19.8.0

Compare Source

Performance Improvements
  • use node: prefix to bypass require.cache call for builtins (#​4302) (0cd8f41)

19.7.1 (2025-02-02)

Note: Version bump only for package @​commitlint/cli

19.6.1 (2024-12-15)

Note: Version bump only for package @​commitlint/cli

conventional-changelog/commitlint (@​commitlint/config-angular)

v19.8.0

Compare Source

Note: Version bump only for package @​commitlint/config-angular

19.7.1 (2025-02-02)

Note: Version bump only for package @​commitlint/config-angular

octokit/action.js (@​octokit/action)

v7.0.2

Compare Source

Bug Fixes
typescript-eslint/typescript-eslint (@​typescript-eslint/utils)

v8.32.0

Compare Source

This was a version bump only for utils to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.31.1

Compare Source

This was a version bump only for utils to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.31.0

Compare Source

This was a version bump only for utils to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.30.1

Compare Source

This was a version bump only for utils to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.30.0

Compare Source

This was a version bump only for utils to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.29.1

Compare Source

This was a version bump only for utils to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.29.0

Compare Source

This was a version bump only for utils to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.28.0

Compare Source

This was a version bump only for utils to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.27.0

Compare Source

🚀 Features
  • utils: support DeprecatedInfo for rule.meta.deprecated (#​10932)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.26.1

Compare Source

This was a version bump only for utils to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.26.0

Compare Source

🚀 Features
❤️ Thank You

You can read about our versioning strategy and releases on our website.

v8.25.0

Compare Source

This was a version bump only for utils to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

v8.24.1

Compare Source

This was a version bump only for utils to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

import-js/eslint-import-resolver-typescript (eslint-import-resolver-typescript)

v3.10.1

Compare Source

v3.10.0

Compare Source

Minor Changes

Full Changelog: import-js/eslint-import-resolver-typescript@v3.9.1...v3.10.0

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

v3.8.3

Compare Source

Patch Changes

v3.8.2

Compare Source

Patch Changes

v3.8.1

Compare Source

Patch Changes
lint-staged/lint-staged (lint-staged)

v15.5.2

Compare Source

Patch Changes

v15.5.1

Compare Source

Patch Changes
  • #​1533 5d53534 Thanks @​iiroj! - Improve listing of staged files so that lint-staged doesn't crash when encountering an uninitialized submodule. This should result in less errors like:

    ✖ Failed to get staged files!
    

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
prettier/prettier (prettier)

v3.5.3

Compare Source

v3.5.2

Compare Source

diff

Remove module-sync condition (#​17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

prettier/pretty-quick (pretty-quick)

v4.1.1

Compare Source

Patch Changes

v4.1.0

Compare Source

Minor Changes
microsoft/TypeScript (typescript)

v5.8.3

Compare Source

v5.8.2

Compare Source


Configuration

📅 Schedule: Branch creation - "before 1pm on friday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 requested a review from vladfrangu as a code owner April 25, 2025 02:59
Copy link

vercel bot commented Apr 25, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
discord-api-types ✅ Ready (Inspect) Visit Preview 💬 Add feedback May 7, 2025 4:31pm

@renovate renovate bot force-pushed the renovate/all-non-major branch from 3598ddb to 9eddd60 Compare April 25, 2025 08:35
@renovate renovate bot force-pushed the renovate/all-non-major branch from 9eddd60 to 593d0da Compare April 28, 2025 11:52
@renovate renovate bot force-pushed the renovate/all-non-major branch from 593d0da to 1414e40 Compare April 28, 2025 20:17
@renovate renovate bot force-pushed the renovate/all-non-major branch from 1414e40 to bc57878 Compare May 5, 2025 20:19
@renovate renovate bot force-pushed the renovate/all-non-major branch from bc57878 to d5b74b1 Compare May 5, 2025 23:07
@renovate renovate bot force-pushed the renovate/all-non-major branch from d5b74b1 to fb813bb Compare May 6, 2025 02:21
@renovate renovate bot force-pushed the renovate/all-non-major branch from fb813bb to 523e700 Compare May 6, 2025 07:58
@renovate renovate bot force-pushed the renovate/all-non-major branch from 523e700 to 7b6747b Compare May 6, 2025 10:39
@renovate renovate bot force-pushed the renovate/all-non-major branch from 7b6747b to cd36e70 Compare May 6, 2025 19:03
@renovate renovate bot force-pushed the renovate/all-non-major branch from cd36e70 to b78f8ca Compare May 7, 2025 16:23
@vladfrangu vladfrangu merged commit 6437928 into main May 7, 2025
5 of 6 checks passed
@vladfrangu vladfrangu deleted the renovate/all-non-major branch May 7, 2025 16:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant