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 #21

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 9, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@antfu/eslint-config ^2.24.1 -> ^2.27.3 age adoption passing confidence
@eslint-react/eslint-plugin (source) ^1.8.0 -> ^1.15.2 age adoption passing confidence
@rollup/plugin-alias (source) ^5.1.0 -> ^5.1.1 age adoption passing confidence
@rollup/plugin-commonjs (source) ^26.0.1 -> ^26.0.3 age adoption passing confidence
@rollup/plugin-node-resolve (source) ^15.2.3 -> ^15.3.0 age adoption passing confidence
@types/node (source) ^20.14.14 -> ^20.17.6 age adoption passing confidence
@types/react (source) ^18.3.3 -> ^18.3.12 age adoption passing confidence
@types/react-dom (source) ^18.3.0 -> ^18.3.1 age adoption passing confidence
autoprefixer ^10.4.19 -> ^10.4.20 age adoption passing confidence
debug ^4.3.6 -> ^4.3.7 age adoption passing confidence
eslint (source) ^9.8.0 -> ^9.14.0 age adoption passing confidence
eslint-plugin-react-refresh ^0.4.9 -> ^0.4.14 age adoption passing confidence
h3 ^1.12.0 -> ^1.13.0 age adoption passing confidence
jotai ^2.9.1 -> ^2.10.1 age adoption passing confidence
lint-staged ^15.2.7 -> ^15.2.10 age adoption passing confidence
picocolors ^1.0.1 -> ^1.1.1 age adoption passing confidence
pnpm (source) 9.6.0 -> 9.12.3 age adoption passing confidence
postcss (source) ^8.4.40 -> ^8.4.47 age adoption passing confidence
tailwindcss (source) ^3.4.7 -> ^3.4.14 age adoption passing confidence
typescript (source) ^5.5.4 -> ^5.6.3 age adoption passing confidence

Release Notes

antfu/eslint-config (@​antfu/eslint-config)

v2.27.3

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.27.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.27.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.27.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v2.26.1

Compare Source

No significant changes

    View changes on GitHub

v2.26.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.25.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.25.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.25.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
Rel1cx/eslint-react (@​eslint-react/eslint-plugin)

v1.15.2

Compare Source

🪄 Improvements
  • Update @typescript-eslint's packages to ^8.12.1.

v1.15.1

Compare Source

✨ New
  • feat: added code fixer to react-x/avoid-shorthand-boolean and react-x/prefer-shorthand-fragment by @​Rel1cx
🐞 Fixes

v1.15.0

Compare Source

✨ New
🐞 Fixes
  • fix: Fix false positives when 'web-api/no-leaked-event-listener' passes a signal to an intermediate variable, closes #​838
🪄 Improvements

v1.14.3

Compare Source

🪄 Improvements
  • Update @typescript-eslint's packages to ^8.7.0.

v1.14.2

Compare Source

🪄 Improvements
  • Update @typescript-eslint's packages to ^8.6.0.

v1.14.1

Compare Source

🐞 Fixes
  • Fixed false positives in rule web-api/no-leaked-resize-observer.

v1.14.0

Compare Source

🐞 Fixes
  • Fixed mono plugins missing default export.
  • Fixed component name detection when the component name starts with a underscore.
🪄 Improvements
  • Update @typescript-eslint's packages to ^8.5.0.

v1.13.1

Compare Source

🐞 Fixes
  • Fixed hooks-extra/no-unnecessary-use-callback and hooks-extra/no-unnecessary-use-memo false positives when there are references from nested scopes.

v1.13.0

Compare Source

✨ New
  • Added web-api/no-leaked-resize-observer rule to prevent leaked ResizeObserver.
🐞 Fixes
  • hooks-extra/no-redundant-custom-hook should allow custom hooks with empty body.
🪄 Improvements
  • Rename debug/react-hooks to debug/hook.
  • Rename hooks-extra/ensure-custom-using-hooks to hooks-extra/no-redundant-custom-hook.
  • Rename hooks-extra/ensure-use-memo-has-non-empty-deps to hooks-extra/no-unnecessary-use-memo.
  • Rename hooks-extra/ensure-use-callback-has-non-empty-deps to hooks-extra/no-unnecessary-use-callback.
  • Upgrade @typescript-eslint's packages to ^8.4.0.

(The rules that were renamed in this release will still be available until the next major update to avoid breaking changes.)

v1.12.4

Compare Source

✨ New
  • Added useLayoutEffect and useInsertionEffect support to hooks-extra/no-direct-set-state-in-use-effect.
🪄 Improvements
  • Deprecate rule hooks-extra/no-direct-set-state-in-use-layout-effect in favor of hooks-extra/no-direct-set-state-in-use-effect (the previous rule will still be available until the next major update to avoid breaking changes).

v1.12.3

Compare Source

✨ New
  • Added support for detecting event listeners removed by abort signal in rule web-api/no-leaked-event-listener.
🐞 Fixes
  • Fixed no-duplicate-key rule false positives when the key is an variable.
  • Fixed web-api/no-leaked-set-timeout and web-api/no-leaked-set-interval false positives when a timer is assigned to a variable declared by let but not initialized.

v1.12.2

Compare Source

✨ New
  • Added type declarations for react-x settings to the @typescript-eslint/utils/ts-eslint module via the SharedConfigurationSettings interface.
🪄 Improvements
  • Improve the performance of the no-missing-key and no-duplicate-key rules.
  • Upgrade @typescript-eslint's packages to ^8.3.0.

v1.12.1

Compare Source

✨ New
  • Add the options allowAllCaps, allowNamespace, allowLeadingUnderscore to naming-convention/component-name and set their default values to false.
🪄 Improvements
  • Normalize the component name in rule naming-convention/component-name before checking it against the pattern.

v1.12.0

Compare Source

✨ New
  • Added hooks-extra rules to recommended and recommended-legacy presets.

v1.11.0

Compare Source

✨ New
  • Added eslint-plugin-react-web-api - A plugin that provides rules for interacting with Web APIs in React applications.
  • Added web-api/no-leaked-timeout rule to prevent leaked setTimeout.
  • Added web-api/no-leaked-interval rule to prevent leaked setInterval.
  • Added web-api/no-leaked-event-listener rule to prevent leaked addEventListener.
  • Added web-api and web-api-legacy presets to enable all rules provided by eslint-plugin-react-web-api.
  • Added react-web-api/no-leaked-event-listener to recommended and recommended-legacy presets.
🪄 Improvements
  • Improve performance by skipping unnecessary checks when possible.
  • Improve dts generation of the @eslint-react/eslint-plugin package.
  • Improve website and documentation.
  • Upgrade @typescript-eslint's packages to ^8.2.0.

v1.10.1

Compare Source

🐞 Fixes
  • Fixed hooks-extra/prefer-use-state-lazy-initialization false positive when using an initializer function.
🪄 Improvements
  • Improve rule no-implicit-key error marker position and range.
  • Upgrade @typescript-eslint's packages to ^8.1.0.
  • Improve website and documentation.

v1.10.0

Compare Source

✨ New
  • Add disable-type-checked and disable-type-checked-legacy presets to disable all type-checked rules.
🪄 Improvements
  • Rename off-dom and off-dom-legacy presets to disable-dom and disable-dom-legacy (the old names will still be available until the next major update to avoid breaking changes).

v1.9.1

Compare Source

🐞 Fixes
  • Fixed dom/no-missing-iframe-sandbox false positive when the sandbox attribute is set to sandbox="".
  • Fixed all and all-legacy presets not including hooks-extra rules.

v1.9.0

Compare Source

✨ New
  • Add core preset that includes the most essential rules.
🪄 Improvements
  • Upgrade @typescript-eslint's packages to 8.0.1.
rollup/plugins (@​rollup/plugin-alias)

v5.1.1

2024-09-22

Bugfixes
  • fix: remove unused slash dependency (#​1763)
rollup/plugins (@​rollup/plugin-commonjs)

v26.0.3

2024-09-23

Updates
rollup/plugins (@​rollup/plugin-node-resolve)

v15.3.0

2024-09-23

Features
  • feat: allow preferBuiltins to be a function (#​1694)

v15.2.4

2024-09-22

Updates
  • chore: remove is-builtin-module (#​1735)
postcss/autoprefixer (autoprefixer)

v10.4.20

Compare Source

  • Fixed fit-content prefix for Firefox.
debug-js/debug (debug)

v4.3.7

Compare Source

What's Changed

Full Changelog: debug-js/debug@4.3.6...4.3.7

eslint/eslint (eslint)

v9.14.0

Compare Source

v9.13.0

Compare Source

v9.12.0

Compare Source

Features

Bug Fixes

Documentation

  • ecbd522 docs: Mention code explorer (#​18978) (Nicholas C. Zakas)
  • 7ea4ecc docs: Clarifying the Use of Meta Objects (#​18697) (Amaresh S M)
  • d3e4b2e docs: Clarify how to exclude .js files (#​18976) (Milos Djermanovic)
  • 57232ff docs: Mention plugin-kit in language docs (#​18973) (Nicholas C. Zakas)
  • b80ed00 docs: Update README (GitHub Actions Bot)
  • cb69ab3 docs: Update README (GitHub Actions Bot)
  • 7fb0d95 docs: Update README (GitHub Actions Bot)
  • 493348a docs: Update README (GitHub Actions Bot)
  • 87a582c docs: fix typo in id-match rule (#​18944) (Jay)

Chores

v9.11.1

Compare Source

v9.11.0

Compare Source

Features

  • ec30c73 feat: add "eslint/universal" to export Linter (#​18883) (唯然)
  • c591da6 feat: Add language to types (#​18917) (Nicholas C. Zakas)
  • 492eb8f feat: limit the name given to ImportSpecifier in id-length (#​18861) (Tanuj Kanti)
  • 19c6856 feat: Add no-useless-constructor suggestion (#​18799) (Jordan Thomson)
  • a48f8c2 feat: add type FormatterFunction, update LoadedFormatter (#​18872) (Francesco Trotta)

Bug Fixes

  • 5e5f39b fix: add missing types for no-restricted-exports rule (#​18914) (Kristóf Poduszló)
  • 8f630eb fix: add missing types for no-param-reassign options (#​18906) (Kristóf Poduszló)
  • d715781 fix: add missing types for no-extra-boolean-cast options (#​18902) (Kristóf Poduszló)
  • 2de5742 fix: add missing types for no-misleading-character-class options (#​18905) (Kristóf Poduszló)
  • c153084 fix: add missing types for no-implicit-coercion options (#​18903) (Kristóf Poduszló)
  • fa11b2e fix: add missing types for no-empty-function options (#​18901) (Kristóf Poduszló)
  • a0deed1 fix: add missing types for camelcase options (#​18897) (Kristóf Poduszló)

Documentation

  • e4e5709 docs: correct prefer-object-has-own type definition comment (#​18924) (Nitin Kumar)
  • 91cbd18 docs: add unicode abbreviations in no-irregular-whitespace rule (#​18894) (Alix Royere)
  • 59cfc0f docs: clarify resultsMeta in LoadedFormatter type (#​18881) (Milos Djermanovic)
  • adcc50d docs: Update README (GitHub Actions Bot)
  • 4edac1a docs: Update README (GitHub Actions Bot)

Build Related

  • 959d360 build: Support updates to previous major versions (#​18871) (Milos Djermanovic)

Chores

v9.10.0

Compare Source

v9.9.1

Compare Source

v9.9.0

Compare Source

Features

  • 41d0206 feat: Add support for TS config files (#​18134) (Arya Emami)
  • 3a4eaf9 feat: add suggestion to require-await to remove async keyword (#​18716) (Dave)

Documentation

  • 9fe068c docs: how to author plugins with configs that extend other configs (#​18753) (Alec Gibson)
  • 48117b2 docs: add version support page in the side navbar (#​18738) (Amaresh S M)
  • fec2951 docs: add version support page to the dropdown (#​18730) (Amaresh S M)
  • 38a0661 docs: Fix typo (#​18735) (Zaina Al Habash)
  • 3c32a9e docs: Update yarn command for creating ESLint config (#​18739) (Temitope Ogunleye)
  • f9ac978 docs: Update README (GitHub Actions Bot)

Chores

ArnaudBarre/eslint-plugin-react-refresh (eslint-plugin-react-refresh)

v0.4.14

Compare Source

v0.4.13

Compare Source

v0.4.12

Compare Source

  • Support type assertion on default export (fixes #​48)
  • Add default export to fix usage with jiti (fixes #​50)

v0.4.11

Compare Source

  • Ignore type exports (ex. export type foo = string;) (fixes #​47)

v0.4.10

Compare Source

  • Support function Foo() {}; export default React.memo(Foo) (#​46) (thanks @​SukkaW!)
unjs/h3 (h3)

v1.13.0

Compare Source

compare changes

🚀 Enhancements
🩹 Fixes
  • readRawBody: Handle URLSearchParams (#​888)
❤️ Contributors
pmndrs/jotai (jotai)

v2.10.1

Compare Source

This fixes a bug in an extreme edge case. If you find this change breaks something, please report to us.

What's Changed

New Contributors

Full Changelog: pmndrs/jotai@v2.10.0...v2.10.1

v2.10.0

Compare Source

It comes with another significant internal change to address some edge cases.

Since v2.9.0, we've been working on some internal refactors to support more edge cases and clean up the code.

Users are encouraged to update to the new versions eventually, but if you're satisfied with the current situation and prefer to avoid temporary instability, you can stick with v2.8.4 for now.

What's Changed

New Contributors


Configuration

📅 Schedule: Branch creation - "before 9pm on saturday" in timezone Asia/Shanghai, 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 added the dependencies label Aug 9, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 14 times, most recently from ae259b3 to 1e7b79e Compare August 16, 2024 22:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 2351636 to d94ee82 Compare August 24, 2024 11:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 404d56f to 07939f3 Compare August 26, 2024 22:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from b456791 to 69cc1cd Compare October 12, 2024 01:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from c76be26 to e0d98ec Compare October 20, 2024 00:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from aaf536e to 95fbbed Compare October 28, 2024 14:18
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 7e60f39 to e849214 Compare November 4, 2024 19:12
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