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

fix(deps): update all non-major dependencies #74

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 26, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@changesets/cli (source) 2.27.7 -> 2.27.11 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) 7.16.0 -> 7.18.0 age adoption passing confidence
@typescript-eslint/parser (source) 7.16.0 -> 7.18.0 age adoption passing confidence
eslint (source) 8.57.0 -> 8.57.1 age adoption passing confidence
eslint-import-resolver-typescript 3.6.1 -> 3.7.0 age adoption passing confidence
eslint-plugin-import 2.29.1 -> 2.31.0 age adoption passing confidence
eslint-plugin-jsonc (source) 2.16.0 -> 2.18.2 age adoption passing confidence
eslint-plugin-jsx-a11y 6.9.0 -> 6.10.2 age adoption passing confidence
eslint-plugin-markdown 5.0.0 -> 5.1.0 age adoption passing confidence
eslint-plugin-no-only-tests (source) 3.1.0 -> 3.3.0 age adoption passing confidence
eslint-plugin-prettier 5.1.3 -> 5.2.1 age adoption passing confidence
eslint-plugin-promise 6.4.0 -> 6.6.0 age adoption passing confidence
eslint-plugin-react 7.34.3 -> 7.37.2 age adoption passing confidence
eslint-plugin-vue (source) 9.27.0 -> 9.32.0 age adoption passing confidence
eslint-plugin-vue-scoped-css (source) 2.8.1 -> 2.9.0 age adoption passing confidence
eslint-plugin-yml (source) 1.14.0 -> 1.16.0 age adoption passing confidence
pnpm (source) 9.5.0+sha512.140036830124618d624a2187b50d04289d5a087f326c9edfc0ccd733d76c4f52c3a313d4fc148794a2a9d81553016004e6742e8cf850670268a7387fc220c903 -> 9.15.1 age adoption passing confidence
prettier (source) 3.3.2 -> 3.4.2 age adoption passing confidence
typescript (source) 5.5.3 -> 5.7.2 age adoption passing confidence

Release Notes

changesets/changesets (@​changesets/cli)

v2.27.11

Compare Source

Patch Changes

v2.27.10

Compare Source

v2.27.9

Compare Source

Patch Changes

v2.27.8

Compare Source

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

v7.18.0

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-assertion] prevent runtime error when asserting a variable declared in default TS lib

  • eslint-plugin: [unbound-method] report on destructuring in function parameters

  • eslint-plugin: [no-duplicate-type-constituents] shouldn't report on error types

  • eslint-plugin: [strict-boolean-expressions] support branded booleans

❤️ Thank You
  • auvred
  • Oliver Salzburg
  • Vinccool96
  • Yukihiro Hasegawa

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

v7.17.0

Compare Source

🚀 Features
  • eslint-plugin: backport no-unsafe-function type, no-wrapper-object-types from v8 to v7

  • eslint-plugin: [return-await] add option to report in error-handling scenarios only, and deprecate "never"

🩹 Fixes
  • eslint-plugin: [no-floating-promises] check top-level type assertions (and more)

  • eslint-plugin: [strict-boolean-expressions] consider assertion function argument a boolean context

  • eslint-plugin: [no-unnecessary-condition] false positive on optional private field

❤️ Thank You
  • Armano
  • Josh Goldberg ✨
  • Kirk Waiblinger
  • StyleShit

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

v7.16.1

Compare Source

🩹 Fixes
  • eslint-plugin: [no-unnecessary-type-parameters] descend into all parts of mapped types in no-unnecessary-type-parameters
❤️ Thank You
  • Dan Vanderkam

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

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

v7.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.

v7.17.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.

v7.16.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.

eslint/eslint (eslint)

v8.57.1

Compare Source

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

v3.7.0

Compare Source

Minor Changes
  • #​326 93ea130 Thanks @​SukkaW! - This version has implemented the eslint-plugin-import-x's v3 resolver interface. This allows you to use import/require to reference eslint-import-resolver-typescript directly in your ESLint flat config:

    Previously

    // eslint.config.js
    module.exports = {
      settings: {
        'import-x/resolver': {
          typescript: {
            alwaysTryTypes: true,
          },
          // or
          require.resolve('eslint-import-resolver-typescript'):
            alwaysTryTypes: true,
          }
        }
      }
    }

    Now

    // eslint.config.js
    const {
      createTypeScriptImportResolver,
    } = require('eslint-import-resolver-typescript')
    
    module.exports = {
      settings: {
        'import-x/resolver-next': [
          createTypeScriptImportResolver({
            alwaysTryTypes: true,
          }),
        ],
      },
    }

    Note that this only works with eslint-plugin-import-x@>=4.5.0. You can't use createTypeScriptImportResolver with the older versions of eslint-plugin-import-x or any existing versions of eslint-plugin-import.

v3.6.3

Compare Source

Patch Changes
import-js/eslint-plugin-import (eslint-plugin-import)

v2.31.0

Compare Source

Added
Fixed
Changed

v2.30.0

Compare Source

Added
Fixed
Changed
  • [Docs] no-extraneous-dependencies: Make glob pattern description more explicit ([#​2944], thanks [@​mulztob])
  • [no-unused-modules]: add console message to help debug [#​2866]
  • [Refactor] ExportMap: make procedures static instead of monkeypatching exportmap ([#​2982], thanks [@​soryy708])
  • [Refactor] ExportMap: separate ExportMap instance from its builder logic ([#​2985], thanks [@​soryy708])
  • [Docs] order: Add a quick note on how unbound imports and --fix ([#​2640], thanks [@​minervabot])
  • [Tests] appveyor -> GHA (run tests on Windows in both pwsh and WSL + Ubuntu) ([#​2987], thanks [@​joeyguerra])
  • [actions] migrate OSX tests to GHA ([ljharb#37], thanks [@​aks-])
  • [Refactor] exportMapBuilder: avoid hoisting ([#​2989], thanks [@​soryy708])
  • [Refactor] ExportMap: extract "builder" logic to separate files ([#​2991], thanks [@​soryy708])
  • [Docs] [order]: update the description of the pathGroupsExcludedImportTypes option ([#​3036], thanks [@​liby])
  • [readme] Clarify how to install the plugin ([#​2993], thanks [@​jwbth])
ota-meshi/eslint-plugin-jsonc (eslint-plugin-jsonc)

v2.18.2

Compare Source

Patch Changes

v2.18.1

Compare Source

Patch Changes

v2.18.0

Compare Source

Minor Changes

v2.17.0

Compare Source

Minor Changes
jsx-eslint/eslint-plugin-jsx-a11y (eslint-plugin-jsx-a11y)

v6.10.2

Compare Source

Fixed
  • [patch] no-redundandant-roles: allow <img src="*.svg" role="img" /> #936
Commits
  • [meta] fix changelog URLs 0d01a1a
  • [Refactor] remove no-longer-needed es-iterator-helpers aa075bd
  • [Refactor] avoid spreading things that are already arrays d15d3ab
  • [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, @babel/plugin-transform-flow-strip-types, @babel/register 5dad7c4
  • [Tests] aria-role: Add valid test for <svg role="img" /> daba189
  • [Docs] label-has-associated-control: add line breaks for readability 0bc6378
  • [Tests] label-has-associated-control: add additional test cases 30d2318
  • [Tests] Add tests to reinforce required attributes for role="heading" d92446c

v6.10.1

Compare Source

Commits
  • [Fix] handle interactive/noninteractive changes from aria-query 4925ba8
  • [Docs] Use consistent spelling of 'screen reader' cb6788c
  • [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, @babel/plugin-transform-flow-strip-types, @babel/register, auto-changelog, eslint-plugin-import, tape 518a77e
  • [Deps] update es-iterator-helpers, string.prototype.includes eed03a3
  • [meta] package.json - Update jscodeshift & remove babel-jest 2ee940c
  • [Docs] Remove accidental whitespace in CONTRIBUTING.md a262131
  • [Deps] unpin aria-query e517937

v6.10.0

Compare Source

Fixed
  • [New] label-has-associated-control: add additional error message #1005
  • [Fix] label-has-associated-control: ignore undetermined label text #966
Commits
  • [Tests] switch from jest to tape a284cbf
  • [New] add eslint 9 support deac4fd
  • [New] add attributes setting a1ee7f8
  • [New] allow polymorphic linting to be restricted 6cd1a70
  • [Tests] remove duplicate tests 74d5dec
  • [Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, @babel/plugin-transform-flow-strip-types 6eca235
  • [readme] remove deprecated travis ci badge; add github actions badge 0be7ea9
  • [Tests] use npm audit instead of aud 05a5e49
  • [Deps] update axobject-query 912e98c
  • [Deps] unpin axobject-query 75147aa
  • [Deps] update axe-core 27ff7cb
  • [readme] fix jsxA11y import name ce846e0
  • [readme] fix typo in shareable config section in readme cca288b
eslint/eslint-plugin-markdown (eslint-plugin-markdown)

v5.1.0

Compare Source

Features
levibuzolic/eslint-plugin-no-only-tests (eslint-plugin-no-only-tests)

v3.3.0

Compare Source

What's Changed

Full Changelog: levibuzolic/eslint-plugin-no-only-tests@v3.2.0...v3.3.0

v3.2.0

Compare Source

What's Changed

Development Changes

New Contributors

Full Changelog: levibuzolic/eslint-plugin-no-only-tests@v3.1.0...v3.2.0

prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.2.1

Compare Source

Patch Changes
eslint-community/eslint-plugin-promise (eslint-plugin-promise)

v6.6.0

Compare Source

Bug Fixes
  • always-return: treat process.exit() or process.abort() as an acceptable "return" (#​493) (f368c5a)
Features
  • add strict option to disallow then or catch following await or yield (#​494) (fa482cc)

v6.5.1

Compare Source

v6.5.0

Compare Source

jsx-eslint/eslint-plugin-react (eslint-plugin-react)

v7.37.2

Compare Source

Fixed
  • [destructuring-assignment]: fix false negative when using typeof props.a (#​3835 @​golopot)
Changed
  • [Refactor] [destructuring-assignment]: use getParentStatelessComponent (#​3835 @​golopot)

v7.37.1

Compare Source

Fixed
Changed

v7.37.0

Compare Source

Added
Changed

v7.36.1

Compare Source

Fixed

v7.36.0

Compare Source

Added
Fixed
  • [function-component-definition], [boolean-prop-naming], [jsx-first-prop-new-line], [jsx-props-no-multi-spaces], propTypes: use type args (#​3629 @​HenryBrown0)
  • JSX pragma: fail gracefully (#​3632 @​ljharb)
  • [jsx-props-no-spreading]: add explicitSpread option to schema (#​3799 @​ljharb)
Changed

v7.35.2

Compare Source

Fixed
  • [jsx-curly-brace-presence]: avoid autofixing attributes with double quotes to a double quoted attribute ([#​3814][] @​ljharb)

undefined
[#​1000]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1000%0A[#​1002]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1002%0A[#​1005]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1005%0A[#​100]: https://github.com/jsx-eslint/eslint-plugin-react/issues/100%0A[#​1010]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1010%0A[#​1013]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1013%0A[#​1022]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1022%0A[#​1029]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1029%0A[#​102]: https://github.com/jsx-eslint/eslint-plugin-react/issues/102%0A[#​1034]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1034%0A[#​1038]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1038%0A[#​1041]: https://github.com/jsx-eslint/eslint-plugin-react/pull/1041%0A[#​1043]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1043%0A[#​1046]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1046%0A[#​1047]: https://github.com/jsx-eslint/eslint-plugin-react/issues/1047%0A[#​1050]: [https://github.com/jsx-eslint/eslint-plugin-react/pull/1050](h


Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" in timezone Europe/Zurich, 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.

Copy link

changeset-bot bot commented Feb 26, 2024

⚠️ No Changeset found

Latest commit: c61647b

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot changed the title fix(deps): update all non-major dependencies fix(deps): update all non-major dependencies - autoclosed Mar 26, 2024
@renovate renovate bot closed this Mar 26, 2024
@renovate renovate bot deleted the renovate/all-minor-patch branch March 26, 2024 13:51
@renovate renovate bot changed the title fix(deps): update all non-major dependencies - autoclosed fix(deps): update all non-major dependencies Mar 28, 2024
@renovate renovate bot reopened this Mar 28, 2024
@renovate renovate bot restored the renovate/all-minor-patch branch March 28, 2024 10:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e0e1153 to 3c7f85b Compare March 28, 2024 10:02
@renovate renovate bot changed the title fix(deps): update all non-major dependencies fix(deps): update all non-major dependencies to v0.24.0 Mar 28, 2024
@renovate renovate bot changed the title fix(deps): update all non-major dependencies to v0.24.0 fix(deps): update all non-major dependencies to v0.24.0 - autoclosed Mar 28, 2024
@renovate renovate bot closed this Mar 28, 2024
@renovate renovate bot deleted the renovate/all-minor-patch branch March 28, 2024 10:25
@renovate renovate bot changed the title fix(deps): update all non-major dependencies to v0.24.0 - autoclosed fix(deps): update all non-major dependencies to v0.24.0 Apr 1, 2024
@renovate renovate bot restored the renovate/all-minor-patch branch April 1, 2024 12:12
@renovate renovate bot reopened this Apr 1, 2024
@renovate renovate bot changed the title fix(deps): update all non-major dependencies to v0.24.0 fix(deps): update dependency eslint-plugin-jsonc to v2.15.0 Apr 1, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3c7f85b to ee05196 Compare April 1, 2024 15:48
@renovate renovate bot changed the title fix(deps): update dependency eslint-plugin-jsonc to v2.15.0 fix(deps): update all non-major dependencies Apr 2, 2024
@renovate renovate bot changed the title fix(deps): update all non-major dependencies chore(deps): update all non-major dependencies May 17, 2024
@renovate renovate bot changed the title chore(deps): update all non-major dependencies chore(deps): update all non-major dependencies - autoclosed Jul 9, 2024
@renovate renovate bot closed this Jul 9, 2024
@renovate renovate bot deleted the renovate/all-minor-patch branch July 9, 2024 19:24
@renovate renovate bot restored the renovate/all-minor-patch branch July 11, 2024 23:29
@renovate renovate bot changed the title chore(deps): update all non-major dependencies - autoclosed chore(deps): update all non-major dependencies Jul 11, 2024
@renovate renovate bot reopened this Jul 11, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ee05196 to 43e3349 Compare July 12, 2024 01:28
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update dependency eslint-plugin-markdown to v5.1.0 Jul 12, 2024
@renovate renovate bot changed the title fix(deps): update dependency eslint-plugin-markdown to v5.1.0 fix(deps): update all non-major dependencies Jul 13, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 43e3349 to aa4c52e Compare July 22, 2024 01:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 096fcb8 to 6acbd4d Compare October 31, 2024 07:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 927e600 to 2abb415 Compare November 14, 2024 18:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 95b887c to bc6f3eb Compare November 20, 2024 12:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 96e0576 to cc1116e Compare November 29, 2024 12:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 0a9e099 to 2373454 Compare December 6, 2024 15:19
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Dec 10, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2373454 to fbce5a9 Compare December 18, 2024 11:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fbce5a9 to c61647b Compare December 20, 2024 01:25
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.

0 participants