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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 14, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@antfu/eslint-config ^3.7.3 -> ^3.12.1 age adoption passing confidence
@iconify-json/carbon ^1.2.1 -> ^1.2.5 age adoption passing confidence
@preact/preset-vite ^2.9.1 -> ^2.9.3 age adoption passing confidence
@types/node (source) ^22.7.4 -> ^22.10.2 age adoption passing confidence
@types/react (source) ^18.3.11 -> ^18.3.18 age adoption passing confidence
@types/react-dom (source) ^18.3.0 -> ^18.3.5 age adoption passing confidence
@unocss/reset ^0.63.3 -> ^0.65.3 age adoption passing confidence
@vitejs/plugin-react (source) ^4.3.2 -> ^4.3.4 age adoption passing confidence
@vitejs/plugin-vue (source) ^5.1.4 -> ^5.2.1 age adoption passing confidence
@vitejs/plugin-vue2 (source) ^2.3.1 -> ^2.3.3 age adoption passing confidence
@vitest/ui (source) ^2.1.2 -> ^2.1.8 age adoption passing confidence
@vueuse/core (source) ^11.1.0 -> ^11.3.0 age adoption passing confidence
bumpp ^9.6.1 -> ^9.9.2 age adoption passing confidence
eslint (source) ^9.12.0 -> ^9.17.0 age adoption passing confidence
preact (source) ^10.24.2 -> ^10.25.3 age adoption passing confidence
shell-quote ^1.8.1 -> ^1.8.2 age adoption passing confidence
solid-js (source) ^1.9.1 -> ^1.9.3 age adoption passing confidence
svelte-check ^4.0.4 -> ^4.1.1 age adoption passing confidence
tslib (source) ^2.7.0 -> ^2.8.1 age adoption passing confidence
tsup (source) ^8.3.0 -> ^8.3.5 age adoption passing confidence
typescript (source) ^5.6.2 -> ^5.7.2 age adoption passing confidence
unocss ^0.63.3 -> ^0.65.3 age adoption passing confidence
unplugin-vue-components ^0.27.4 -> ^0.28.0 age adoption passing confidence
vite (source) ^5.4.8 -> ^5.4.11 age adoption passing confidence
vite-plugin-inspect ^0.8.7 -> ^0.10.6 age adoption passing confidence
vite-plugin-pages ^0.32.3 -> ^0.32.4 age adoption passing confidence
vite-plugin-solid ^2.10.2 -> ^2.11.0 age adoption passing confidence
vitest (source) ^2.1.2 -> ^2.1.8 age adoption passing confidence
vue (source) ^3.5.11 -> ^3.5.13 age adoption passing confidence
vue-router ^4.4.5 -> ^4.5.0 age adoption passing confidence
vue-tsc (source) ^2.1.6 -> ^2.2.0 age adoption passing confidence

Release Notes

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

v3.12.1

Compare Source

No significant changes

    View changes on GitHub

v3.12.0

Compare Source

   🚀 Features
    View changes on GitHub

v3.11.2

Compare Source

   🐞 Bug Fixes
  • perfectionist: Revert bahaviour change on import sorting since v3.10  -  by @​antfu (00c41)
    View changes on GitHub

v3.11.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.11.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.10.0

Compare Source

   🚀 Features
    View changes on GitHub

v3.9.2

Compare Source

   🚀 Features
    View changes on GitHub

v3.9.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v3.8.0

Compare Source

   🚀 Features
    View changes on GitHub
preactjs/preset-vite (@​preact/preset-vite)

v2.9.3

Compare Source

What's Changed

Full Changelog: preactjs/preset-vite@2.9.2...2.9.3

v2.9.2

Compare Source

Maintenance

unocss/unocss (@​unocss/reset)

v0.65.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.65.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub

v0.65.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.65.0

Compare Source

If you are interested, please read our upgrade introduction 🌟🌟🌟.
   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.64.1

Compare Source

No significant changes

    View changes on GitHub

v0.64.0

Compare Source

   🚨 Breaking Changes
   🐞 Bug Fixes
    View changes on GitHub

v0.63.6

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.63.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.63.4

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
vitejs/vite-plugin-react (@​vitejs/plugin-react)

v4.3.4

Compare Source

Add Vite 6 to peerDependencies range

Vite 6 is highly backward compatible, not much to add!

Force Babel to output spec compliant import attributes #​386

The default was an old spec (with type: "json"). We now enforce spec compliant (with { type: "json" })

v4.3.3

Compare Source

React Compiler runtimeModule option removed

React Compiler was updated to accept a target option and runtimeModule was removed. vite-plugin-react will still detect runtimeModule for backwards compatibility.

When using a custom runtimeModule or target !== '19', the plugin will not try to pre-optimize react/compiler-runtime dependency.

The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.

Here is the configuration to use the compiler with React 18 and correct source maps in development:

npm install babel-plugin-react-compiler react-compiler-runtime @&#8203;babel/plugin-transform-react-jsx-development
export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]]
  if (command === 'serve') {
    babelPlugins.push(['@&#8203;babel/plugin-transform-react-jsx-development', {}])
  }

  return {
    plugins: [react({ babel: { plugins: babelPlugins } })],
  }
})
vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v5.2.1

v5.2.0

  • feat: add a feature option to support custom component id generator (#​461) (7a1fc4c), closes #​461

v5.1.5

vitejs/vite-plugin-vue2 (@​vitejs/plugin-vue2)

v2.3.3

Compare Source

v2.3.2

Compare Source

Features
vitest-dev/vitest (@​vitest/ui)

v2.1.8

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.1.7

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.1.6

Compare Source

🚀 Features
  • Support Vite 6
    View changes on GitHub

v2.1.5

Compare Source

   🐞 Bug Fixes

Configuration

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

🚦 Automerge: Enabled.

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 was generated by Mend Renovate. View the repository job log.

Copy link

stackblitz bot commented Oct 14, 2024

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from 7f7b402 to 72c0f7f Compare October 19, 2024 18:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from 53dbac8 to 36c591f Compare October 28, 2024 21:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from a48850f to 19c6a97 Compare November 4, 2024 00:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 8e56091 to 57a7bb7 Compare November 30, 2024 04:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 12 times, most recently from 25acf73 to a5f6985 Compare December 13, 2024 23:19
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from a36304b to 28bb6fd Compare December 22, 2024 03:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 63cb26b to ac4068c Compare December 24, 2024 06:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ac4068c to 0581260 Compare December 25, 2024 10:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants