Skip to content
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

chore(deps): update all non-major dependencies #141

Merged
merged 1 commit into from
Jan 18, 2024

Conversation

open-turo-bot
Copy link
Contributor

@open-turo-bot open-turo-bot commented Jul 21, 2023

This PR contains the following updates:

Package Type Update Change
@commitlint/cli (source) devDependencies patch 18.4.3 -> 18.4.4
@commitlint/config-conventional (source) devDependencies patch 18.4.3 -> 18.4.4
@types/node (source) devDependencies minor 20.10.4 -> 20.11.5
@typescript-eslint/eslint-plugin devDependencies minor 6.14.0 -> 6.19.0
@typescript-eslint/parser devDependencies minor 6.14.0 -> 6.19.0
alessandrojcm/commitlint-pre-commit-hook repository minor v9.10.0 -> v9.11.0
eslint-plugin-jest devDependencies patch 27.6.0 -> 27.6.3
eslint-plugin-prettier devDependencies minor 5.0.1 -> 5.1.3
node minor 20.10.0 -> 20.11.0
prettier (source) devDependencies minor 3.1.1 -> 3.2.4
ts-patch devDependencies patch 3.1.1 -> 3.1.2

Note: The pre-commit manager in Renovate is not supported by the pre-commit maintainers or community. Please do not report any problems there, instead create a Discussion in the Renovate repository if you have any questions.


Release Notes

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

v18.4.4

Compare Source

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

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

v18.4.4

Compare Source

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

typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v6.19.0

Compare Source

🚀 Features
  • eslint-plugin: [prefer-promise-reject-errors] add rule

  • eslint-plugin: [no-array-delete] add new rule

  • eslint-plugin: [no-useless-template-literals] add fix suggestions

🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-assertion] detect unnecessary non-null-assertion on a call expression

  • eslint-plugin: [no-unnecesary-type-assertion] treat unknown/any as nullable

❤️ Thank You
  • auvred
  • Brad Zacher
  • Josh Goldberg ✨
  • Joshua Chen
  • LJX
  • Steven
  • StyleShit

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

v6.18.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-non-null-assertion] provide valid fix when member access is on next line

  • eslint-plugin: [no-unnecessary-condition] improve checking optional callee

  • eslint-plugin: [prefer-readonly] support modifiers of unions and intersections

  • eslint-plugin: [switch-exhaustiveness-check] fix new allowDefaultCaseForExhaustiveSwitch option

❤️ Thank You
  • auvred
  • James
  • Josh Goldberg ✨
  • YeonJuan

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

v6.18.0

Compare Source

🚀 Features
  • typescript-estree: throw on invalid update expressions

  • eslint-plugin: [no-var-requires, no-require-imports] allow option

❤️ Thank You
  • auvred
  • Joshua Chen

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

v6.17.0

Compare Source

Bug Fixes
  • eslint-plugin: [no-restricted-imports] prevent crash when patterns or paths in options are empty (#​8108) (675e987)
Features
  • eslint-plugin: [no-floating-promises] flag result of .map(async) (#​7897) (5857356)
  • eslint-plugin: [switch-exhaustiveness-check] add an option to warn against a default case on an already exhaustive switch (#​7539) (6a219bd)

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

v6.16.0

Compare Source

Bug Fixes
  • eslint-plugin: [unbound-method] exempt all non-Promise built-in statics (#​8096) (3182959)
Features
  • eslint-plugin: deprecate formatting (meta.type: layout) rules (#​8073) (04dea84)
  • eslint-plugin: deprecate no-extra-semi in favor of ESLint Stylistic equivalent (#​8123) (9368bf3)

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

v6.15.0

Compare Source

Features

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

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v6.19.0

Compare Source

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

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

v6.18.1

Compare Source

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

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

v6.18.0

Compare Source

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

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

v6.17.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

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

v6.16.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

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

v6.15.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

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

alessandrojcm/commitlint-pre-commit-hook (alessandrojcm/commitlint-pre-commit-hook)

v9.11.0

Compare Source

Features
  • bump semantic-release from 22.0.8 to 22.0.9 (f7cad55)
  • bump semantic-release from 22.0.9 to 22.0.12 (86e3dbf)
jest-community/eslint-plugin-jest (eslint-plugin-jest)

v27.6.3

Compare Source

Bug Fixes

v27.6.2

Compare Source

Reverts

v27.6.1

Compare Source

Bug Fixes
  • include plugin meta information with snapshot processor for ESLint v9 (#​1484) (067e246)
prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.1.3

Compare Source

Patch Changes

v5.1.2

Compare Source

Patch Changes
  • #​623 8210e44 Thanks @​BPScott! - Add exports mapping to package.json, to allow import eslintPluginRecommended from 'eslint-plugin-prettier/recommended' to work as expected.

    Strictly speaking this is a breaking change as it removes the ability for people to import from "eslint-plugin-prettier/eslint-plugin-prettier.js" and "eslint-plugin-prettier/recommended.js" but the former was never recommended in the first place and the latter has only been available for a few days.

  • #​621 2b09e7f Thanks @​JounQin! - feat: support parsing markdown via eslint-mdx natively

    What means the following is unnecessary anymore when using with eslint-mdx/eslint-plugin-mdx!

    [
      {
        files: ['**/*.md'],
        rules: { 'prettier/prettier': ['error', { parser: 'markdown' }] },
      },
      {
        files: ['**/*.mdx'],
        rules: { 'prettier/prettier': ['error', { parser: 'mdx' }] },
      },
    ]

v5.1.1

Compare Source

Patch Changes

v5.1.0

Compare Source

Minor Changes
  • #​616 3856413 Thanks @​BPScott! - Add recommended config for the flat config format.

    If you are using flat config, import the recommended config from eslint-plugin-prettier/recommended. Like the legacy format recommended config, this automatically includes the contents of eslint-config-prettier.

    // eslint.config.js
    const eslintPluginPrettierRecommended = require('eslint-plugin-prettier/recommended');
    
    module.exports = [
      // Any other config imports go at the top
      eslintPluginPrettierRecommended,
    ];
Patch Changes
  • #​614 5270877 Thanks @​BPScott! - Add meta block to plugin. This improves debugging and cachebusting when using the new flat config

  • #​603 a63a570 Thanks @​filiptammergard! - fix: specify eslint-config-prettier as peer dependency

    It's already added to peerDependenciesMeta as optional, which means it should also be specified in peerDependencies.

nodejs/node (node)

v20.11.0: 2024-01-09, Version 20.11.0 'Iron' (LTS), @​UlisesGascon

Compare Source

Notable Changes
Commits

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR is behind base branch, 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 has been generated by Renovate Bot.

@open-turo-bot open-turo-bot requested a review from a team as a code owner July 21, 2023 00:22
@open-turo-bot open-turo-bot changed the title chore(deps): update dependency ts-patch to v3.0.2 chore(deps): update all non-major dependencies Jul 22, 2023
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch 2 times, most recently from 885496f to d808de7 Compare July 23, 2023 00:24
Copy link

@llosimura llosimura left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

minor & patch version update

@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch 3 times, most recently from 2a30db5 to f70cc1a Compare July 29, 2023 00:20
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch 6 times, most recently from 0074244 to 3f43ccf Compare August 11, 2023 00:18
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch 3 times, most recently from 2fbc30a to c61ebcf Compare August 17, 2023 00:18
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch 5 times, most recently from 1e50ff1 to ef3ab1e Compare August 25, 2023 00:18
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch 5 times, most recently from de0212f to d50294e Compare September 1, 2023 19:57
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch 3 times, most recently from 47e63cb to 412266a Compare September 5, 2023 00:18
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch 5 times, most recently from e8ae197 to a03bb05 Compare December 25, 2023 00:21
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch 2 times, most recently from a2e6eb0 to a174243 Compare December 31, 2023 00:22
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch 2 times, most recently from 0d7e6ce to 106471c Compare January 3, 2024 13:23
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch 6 times, most recently from 285039b to 50f756c Compare January 10, 2024 00:20
@open-turo-bot open-turo-bot force-pushed the c/renovate_all-minor-patch branch 6 times, most recently from 2926665 to 67e91ad Compare January 17, 2024 00:20
Copy link

Release notes preview

No new release will be created.

If you are expecting a release, you will need to either fix a bug or add a feature.
Chores, CI, docs, refactoring, style and other changes will not trigger a release.

@OmarJaroudi OmarJaroudi merged commit 64b0ec4 into main Jan 18, 2024
3 checks passed
@OmarJaroudi OmarJaroudi deleted the c/renovate_all-minor-patch branch January 18, 2024 00:24
@open-turo-bot
Copy link
Contributor Author

🎉 This PR is included in version 6.0.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants