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 npm development dependencies #2346

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 12, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@eslint/eslintrc 3.0.2 -> 3.1.0 age adoption passing confidence
@iconify/json (source) 2.2.208 -> 2.2.215 age adoption passing confidence
@intlify/eslint-plugin-vue-i18n 3.0.0-next.12 -> 3.0.0-next.13 age adoption passing confidence
@tauri-apps/cli 1.5.13 -> 1.5.14 age adoption passing confidence
@types/node (source) 20.12.11 -> 20.13.0 age adoption passing confidence
@vitejs/plugin-vue (source) 5.0.4 -> 5.0.5 age adoption passing confidence
eslint-plugin-jsdoc 48.2.4 -> 48.2.7 age adoption passing confidence
eslint-plugin-jsonc (source) 2.15.1 -> 2.16.0 age adoption passing confidence
eslint-plugin-promise 6.1.1 -> 6.2.0 age adoption passing confidence
globals 15.2.0 -> 15.3.0 age adoption passing confidence
lightningcss 1.24.1 -> 1.25.1 age adoption passing confidence
typescript-eslint (source) 7.8.0 -> 7.11.0 age adoption passing confidence
unocss 0.60.0 -> 0.60.3 age adoption passing confidence
unplugin-vue-macros (source) 2.9.2 -> 2.9.3 age adoption passing confidence
unplugin-vue-router 0.8.6 -> 0.9.0 age adoption passing confidence
vite (source) 5.2.11 -> 5.2.12 age adoption passing confidence
vue-tsc (source) 2.0.17 -> 2.0.19 age adoption passing confidence

Release Notes

eslint/eslintrc (@​eslint/eslintrc)

v3.1.0

Compare Source

Features
Chores
iconify/icon-sets (@​iconify/json)

v2.2.215

Compare Source

v2.2.214

Compare Source

v2.2.213

Compare Source

v2.2.212

Compare Source

v2.2.211

Compare Source

v2.2.210

Compare Source

v2.2.209

Compare Source

intlify/eslint-plugin-vue-i18n (@​intlify/eslint-plugin-vue-i18n)

v3.0.0-next.13

Compare Source

Major Changes
Patch Changes
tauri-apps/tauri (@​tauri-apps/cli)

v1.5.14: @​tauri-apps/cli v1.5.14

Compare Source

[1.5.14]

Dependencies
  • Upgraded to tauri-cli@1.5.14
vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v5.0.5

gajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc)

v48.2.7

Compare Source

v48.2.6

Compare Source

Bug Fixes
  • require-yields: avoid error when ExportNamedDeclaration has no declaration prop (93a9415)

v48.2.5

Compare Source

Bug Fixes
ota-meshi/eslint-plugin-jsonc (eslint-plugin-jsonc)

v2.16.0

Compare Source

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

v6.2.0

Compare Source

sindresorhus/globals (globals)

v15.3.0

Compare Source

parcel-bundler/lightningcss (lightningcss)

v1.25.1

Compare Source

Fixes a property ordering bug when using the all shorthand.

v1.25.0

Compare Source

This release adds more granular options for CSS modules, implements some new CSS properties, and fixes bugs.

Added
  • Add granular options to control which identifiers are scoped in CSS modules. You can turn off scoping for grid, animation, and custom_idents. This may be useful when migrating from other tools. See docs. Thanks @​timneutkens! 83839a9
  • Optimize the all shorthand property to reset other properties except direction and unicode-bidi. d7aeff3
  • Implement animation-timeline property and add support for it in the animation shorthand f4408c7
Fixed
  • Prevent simplifying translate: none and scale: none which are distinct from translate: 0 and scale: 1. Thanks @​RobinMalfait! a4cc024
  • Fix crash on box-shadow with currentColor keyword. Thanks @​magic-akari! 06ba62f
  • Fix minifier removing zero channels in color() function to follow spec change 445def9
  • Fix CSS module scoping with variables in animation shorthand fb4b334
  • Update browser compatibility data ec9da43
typescript-eslint/typescript-eslint (typescript-eslint)

v7.11.0

Compare Source

🚀 Features
  • eslint-plugin: deprecate prefer-ts-expect-error in favor of ban-ts-comment
❤️ Thank You
  • Abraham Guo
  • auvred
  • Dom Armstrong
  • Kirk Waiblinger

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

v7.10.0

Compare Source

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

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

v7.9.0

Compare Source

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

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

unocss/unocss (unocss)

v0.60.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
  • preset-mini: Improve performance of resolveBreakpoints  -  by @​antfu (05d90)
    View changes on GitHub

v0.60.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v0.60.1

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vue-macros/vue-macros (unplugin-vue-macros)

v2.9.3

Compare Source

Patch Changes
posva/unplugin-vue-router (unplugin-vue-router)

v0.9.0

Compare Source

Bug Fixes
  • move extension handling outside of tree (85d8472), closes #​400
  • remove wrong error log during HMR (c511082)
  • require explicit routes import to avoid cyclic imports (63788f6), closes #​132
Code Refactoring
  • pkg: migrate package to type=module (f1e4ca5)
BREAKING CHANGES
  • createRouter() now requires the explicit router
    property to be set and imported:
import { createRouter, createWebHistory } from 'vue-router/auto'
+import { routes } from 'vue-router/auto-routes'

createRouter({
  history: createWebHistory(),
+  routes
})

This also means that runtime extendRoutes() option is not needed. It
has been deprecated and will be removed in the next major release.

  • Tree and PrefixTree insert method expects a path without the file
    extension. They also expect the fullpath of the file as a second
    argument (it used to be optional). This aligns better with their responsibility as they shouldn't be trimming the extension like they used to.
// replace
tree.insert('file.vue')
// with
tree.insert('file', resolve('file.vue'))

This shouldn't affect most users as the Tree implementation is used
internally to represent the folder structure.

  • pkg: The package is now of "type": "module". It shouldn't
    break anything for users but this is just in case, we all know how fragile this js ecosystem is sometimes...

0.8.8 (2024-05-22)

Bug Fixes
  • watch all extensions not just root (74ac22b)

0.8.7 (2024-05-20)

Bug Fixes
Features
  • add an option to disable file watching (#​387) (13f93fc)
  • add component alias to EditableTreeNode (fc8ae27)

0.8.6 (2024-04-12)

Bug Fixes
  • data-loaders: tracked properties with an object in key (58aa516)

0.8.5 (2024-03-14)

Bug Fixes
  • avoid invalid modules with definePage query (25bbec3), closes #​338

0.8.4 (2024-02-24)

This patch contains the necessary fixes to allow importing the data loaders. However, they cannot be imported from vue-router/auto nor from unplugin-vue-router/runtime. Instead, they should be imported from unplugin-vue-router/data-loaders/.... This is needed as some of the loaders depends on extra packages that not all users have installed. At the moment, there are two data loaders

Bug Fixes

0.8.3 (2024-02-22)

Bug Fixes

0.8.2 (2024-02-22)

Bug Fixes
  • data-loaders: fix types references (6558fa8)
  • types: typed router (8ff1984)

0.8.1 (2024-02-22)

Bug Fixes
  • upgrade peer dep on vue-router to 4.3.0 (746ad8f)

v0.8.8

Compare Source

Bug Fixes
  • watch all extensions not just root (74ac22b)

v0.8.7

Compare Source

Bug Fixes
Features
  • add an option to disable file watching (#​387) (13f93fc)
  • add component alias to EditableTreeNode (fc8ae27)
vitejs/vite (vite)

v5.2.12

Compare Source

vuejs/language-tools (vue-tsc)

v2.0.19

Compare Source

Bug Fixes
  • language-core: property 'xyz' does not exist on type 'abc' when using v-for (#​4386)
  • language-core: avoid report error when events do not accept parameters (#​4387)
  • language-core: inline dynamic event handlers should not expect commas (#​4387)

v2.0.18

Compare Source

Features
  • feat(language-core): report unknown events when strictTemplates is enabled (#​3718)
  • feat(language-core): add compileSFCScript plugin hook (#​3200)
  • feat(vscode): add coffeescript syntax highlight support
Bug Fixes
  • fix(language-core): fix event handler type for hyphen-case event names
  • fix(language-core): allow binding multiple events with the same name (#​4369)
  • fix(language-core): variable used in key appears as unused in v-for template tag (#​329) (#​3421)
  • fix(language-core): generics with slots don't work with Vue 2.7 (#​3241)
  • fix(language-core): template language of .md files should be markdown (#​4299)
  • fix(language-core): no template class links when experimentalResolveStyleCssClasses is set to always (#​4379)
Other Changes
  • Upgrade Volar from v2.2.2 to v2.2.4.
    • Fixed a few URI conversion issues
    • fix(typescript): empty items list should be valid completion result (#​4368)
    • fix(typescript): path completion not working for meta files
  • Upgrade Volar services from v0.0.44 to v0.0.45.
  • The following extensions have been added to Hybrid Mode’s compatibility whitelist:
    • miaonster.vscode-tsx-arrow-definition
    • runem.lit-plugin

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 Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label May 12, 2024
@jellyfin-bot jellyfin-bot added this to In progress in Ongoing development May 12, 2024
@jellyfin-bot
Copy link

jellyfin-bot commented May 12, 2024

Cloudflare Pages deployment

Latest commit 52c84e1
Status ✅ Deployed!
Preview URL https://086af6b8.jf-vue.pages.dev
Type 🔀 Preview

View build logs
View bot logs

@renovate renovate bot changed the title chore(deps): update dependency unocss to v0.60.1 chore(deps): update dependency unocss to v0.60.2 May 12, 2024
@renovate renovate bot force-pushed the renovate/npm-dev branch 3 times, most recently from c251f8b to 37ff6d6 Compare May 13, 2024 11:42
@renovate renovate bot changed the title chore(deps): update dependency unocss to v0.60.2 chore(deps): update npm development dependencies May 13, 2024
@renovate renovate bot force-pushed the renovate/npm-dev branch 15 times, most recently from a7627d4 to 5f25257 Compare May 20, 2024 18:22
@renovate renovate bot force-pushed the renovate/npm-dev branch 2 times, most recently from 31ff96a to d0be189 Compare May 23, 2024 06:48
@renovate renovate bot force-pushed the renovate/npm-dev branch 14 times, most recently from 047b25f to 245b321 Compare May 30, 2024 08:32
Copy link

sonarcloud bot commented May 31, 2024

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarCloud

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
Development

Successfully merging this pull request may close these issues.

None yet

3 participants