chore(deps): update npm dependencies #2077
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
10.3.0
->10.4.1
10.3.0
->10.4.1
4.1.1
->4.2.0
1.4.0
->1.5.0
1.4.10
->1.4.12
10.1.0
->10.2.0
9.0.0
->9.0.1
9.2.2
->9.4.1
3.3.13
->3.3.16
Release Notes
vueuse/vueuse (@vueuse/components)
v10.4.1
Compare Source
🐞 Bug Fixes
es2018
, close #3349 - by @antfu in https://github.com/vueuse/vueuse/issues/3349 (0e4a5)View changes on GitHub
v10.4.0
Compare Source
🚀 Features
updateDataOnError
option - by @climba03003 and @antfu in https://github.com/vueuse/vueuse/issues/3092 (945ca)requestPermissions
option, returnpermissionGranted
andensurePermissions
- by @michealroberts and @antfu in https://github.com/vueuse/vueuse/issues/3325 (a1753)🐞 Bug Fixes
as
prop for component usage - by @menghany in https://github.com/vueuse/vueuse/issues/3274 (791f7)type
ispage
, closes #2922 - by @CatsJuice and @antfu in https://github.com/vueuse/vueuse/issues/3244 and https://github.com/vueuse/vueuse/issues/2922 (c2f64)isClient
to checkdocument
too - by @brc-dd and @antfu in https://github.com/vueuse/vueuse/issues/3329 (786cb)View changes on GitHub
hvianna/audioMotion-analyzer (audiomotion-analyzer)
v4.2.0
Compare Source
Added:
stopTracks
argument todisconnectInput()
- thanks @hookedupjoe (#52);destroy()
- thanks @lucienimmink for the suggestion;maxFPS
- set the maximum desired animation frame rate;peakLine
- show peaks as a continuous line for Graphmode
;start()
andstop()
methods.Fixed:
package.json
- thanks @cprussin (#54).Improved:
showPeaks
now works for Graph mode in radial view;axios/axios (axios)
v1.5.0
Compare Source
Bug Fixes
cacheable-lookup
integration; (#5836) (b3e327d)Features
unsafe
prefix (#5839) (1601f4a)Contributors to this release
video-dev/hls.js (hls.js)
v1.4.12
Compare Source
Summary
HLS.js v1.4.12 includes bug fixes and improvements over the last release.
Changes Since The Last Release
Demo Page
https://6fd26b8d.hls-js-dev.pages.dev/
API and Breaking Changes
If you are upgrading from version v0.14.17 or lower, see the MIGRATING guide for API changes between v0.14.x and v1.0.0.
Feedback
Please provide feedback via Issues in GitHub. For more details on how to contribute to HLS.js, see our CONTRIBUTING guide.
v1.4.11
Compare Source
Summary
HLS.js v1.4.11 includes bug fixes and improvements over the last release.
Changes Since The Last Release
(Fixes Live to VOD transition when ENDLIST is appended without a new Segment EXTINF)
Demo Page
https://324bd619.hls-js-dev.pages.dev/
API and Breaking Changes
If you are upgrading from version v0.14.17 or lower, see the MIGRATING guide for API changes between v0.14.x and v1.0.0.
Feedback
Please provide feedback via Issues in GitHub. For more details on how to contribute to HLS.js, see our CONTRIBUTING guide.
nolimits4web/Swiper (swiper)
v10.2.0
Compare Source
Bug Fixes
contextmenu
event (721ccaf), closes #6692part
when added dynamically (db5b5d6), closes #6899Features
clickableClass
(703d13b), closes #6741uuidjs/uuid (uuid)
v9.0.1
Compare Source
build
intlify/vue-i18n-next (vue-i18n)
v9.4.1
Compare Source
This changelog is generated by GitHub Releases
What's Changed
🐛 Bug Fixes
📝️ Documentations
Full Changelog: intlify/vue-i18n@v9.4.0...v9.4.1
v9.4.0
Compare Source
This changelog is generated by GitHub Releases
What's Changed
🌟 Features
🐛 Bug Fixes
⚡ Improvement Features
New Contributors
Full Changelog: intlify/vue-i18n@v9.3.0...v9.4.0
v9.3.0
Compare Source
We are excited to announce the release of Vue I18n v9.3, finally !! This release includes some new features, bug fixes, improvements, and document fixes.
We had commited with 37 contributors. Thanks for your contributing ❤️
In the following, we introduce some of the new features:
🌟 Features
Node.js Dual packages (
cjs
/mjs
)We provide CommonJS and Native ESM dual module packages for Node.js. This supports both
require
andimport
for loading modules in Node.js.JIT Style Compilation
Supports JIT (Just In Time) style compilation of message formats. This mean, removes the CSP limitation and allows for use in environments such as Service worker, Web worker, and Edge.
It mean also now supports the use-case where locale messages are dynamically retrieved from the backend via the API.
For more information, please see the docs
The performance of JIT-style compilation is close to that of conventional AOT (Ahead Of Time) style compilation, and you can improve the performance to nearly 3x with combination of JIT + AOT.
Below are the compile performance benchmark results for vue-i18n:
You can clone Vue I18n and run the benchmark with
pnpm build:type && pnpm benchmark
to check.Custome message format
Starting with v9.3, Vue I18n will give message format customization as an experimental feature. This will allow for extending to the message format:
About details, please see the docs
messageCompiler
option by @kazupon in https://github.com/intlify/vue-i18n-next/pull/1497Exports type definition and API
Export
v-t
type definitions and API$te
to support Vue I18n extending for third vendors and your Vue applications.v-t
directive type by @kazupon in https://github.com/intlify/vue-i18n-next/pull/1511$te
as global on composition mode by @kazupon in https://github.com/intlify/vue-i18n-next/pull/1222❗ Important Changes: 1
allowComposition
optionThe
allowComposition
option will be removed in Vue I18n v10. We have accordingly output a warning if you are using it.If you are using Vue I18n Legacy API to migrate to the Composition API, please make sure you have done so with the Vue I18n v9 version.
allowComposition
option by @kazupon in https://github.com/intlify/vue-i18n-next/pull/1496Deprecate vue-i18n official bundle plugins
The following plugin or loader for bundler is deprecated because it can be replaced by the
unplugin-vue-i18n
.rollup-plugin-vue-i18n
vite-plugin-vue-i18n
vue-i18n-loader
These will only be taken as hot fixes in the future, and no additional functionality will be added.
⚡ Improvement Features: 15
globalThis
with bundler by @kazupon in https://github.com/intlify/vue-i18n-next/pull/1413TranslateVNodeSymbol
by @DamianGlowala in https://github.com/intlify/vue-i18n-next/pull/1236optionalDependencies
by @kazupon in https://github.com/intlify/vue-i18n-next/pull/1184🐛 Bug Fixes: 17
isMessageAST
more strictly by @kazupon in https://github.com/intlify/vue-i18n-next/pull/1509rt
by @kazupon in https://github.com/intlify/vue-i18n-next/pull/1455<i18n-t>
,<i18n-n>
and<i18n-d>
by @kazupon in https://github.com/intlify/vue-i18n-next/pull/1416📝️ Documentations: 28
🧑🤝🧑 Contributers: 37
Full Changelog: intlify/vue-i18n@v9.2.2...v9.3.0
vuetifyjs/vuetify (vuetify)
v3.3.16
Compare Source
🔧 Bug Fixes
🧪 Labs
v3.3.15
Compare Source
🔧 Bug Fixes
v3.3.14
Compare Source
🔧 Bug Fixes
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.
This PR has been generated by Mend Renovate. View repository job log here.