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 dependencies #2077

Merged
merged 1 commit into from
Sep 15, 2023
Merged

chore(deps): update npm dependencies #2077

merged 1 commit into from
Sep 15, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 17, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@vueuse/components (source) 10.3.0 -> 10.4.1 age adoption passing confidence
@vueuse/core 10.3.0 -> 10.4.1 age adoption passing confidence
audiomotion-analyzer (source) 4.1.1 -> 4.2.0 age adoption passing confidence
axios (source) 1.4.0 -> 1.5.0 age adoption passing confidence
hls.js 1.4.10 -> 1.4.12 age adoption passing confidence
swiper (source) 10.1.0 -> 10.2.0 age adoption passing confidence
uuid 9.0.0 -> 9.0.1 age adoption passing confidence
vue-i18n (source) 9.2.2 -> 9.4.1 age adoption passing confidence
vuetify (source) 3.3.13 -> 3.3.16 age adoption passing confidence

Release Notes

vueuse/vueuse (@​vueuse/components)

v10.4.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v10.4.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
hvianna/audioMotion-analyzer (audiomotion-analyzer)

v4.2.0

Compare Source

Added:
Fixed:
Improved:
  • Peak hold and decay times and radial spin speed should now remain consistent on any frame rate;
  • showPeaks now works for Graph mode in radial view;
  • Code quality and documentation improvements - also thanks @​Staijn1 for #​55.
axios/axios (axios)

v1.5.0

Compare Source

Bug Fixes
  • adapter: make adapter loading error more clear by using platform-specific adapters explicitly (#​5837) (9a414bb)
  • dns: fixed cacheable-lookup integration; (#​5836) (b3e327d)
  • headers: added support for setting header names that overlap with class methods; (#​5831) (d8b4ca0)
  • headers: fixed common Content-Type header merging; (#​5832) (8fda276)
Features
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

  • Fix support of skip directive without block reload (#​5791)

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

  • Merge bugfix/live-append-only-endlist into patch v1.4.x branch (#​5785) @​semarche-kaltura
    (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
  • autoplay: fix autoplay pause during transition (db9b17f), closes #​6896
  • controller: fix issues with loop mode (fbb84fe), closes #​6659
  • core: fix touch move and loop behavior when transition-delay enabled on swiper-wrapper (ac27d02)
  • core: handle contextmenu event (721ccaf), closes #​6692
  • element: fix missing elements part when added dynamically (db5b5d6), closes #​6899
  • element: fix parallax on elements passed to component root (265e466)
  • element: fixed issue with incorrect lookup for lazy prelader and images (64513ac), closes #​6901
  • element: fixed issue with pointer-events:none in fade effect (2dcb802), closes #​6908
  • pagination: fixed issue in loop mode when sometimes it switches slides with transiton (3d7dc58), closes #​6856
Features
uuidjs/uuid (uuid)

v9.0.1

Compare Source

build
  • Fix CI to work with Node.js 20.x
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 and import 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:

> node ./benchmark/index.mjs

compilation:

compile simple message x 396,898 ops/sec ±0.31% (98 runs sampled)
compile complex message x 60,036 ops/sec ±0.34% (99 runs sampled)

simple pattern on 1000 resources (AOT):

resolve time with core x 279,919 ops/sec ±0.19% (99 runs sampled)
resolve time on composition x 93,963 ops/sec ±0.48% (93 runs sampled)
resolve time on composition with compile cache x 230,928 ops/sec ±0.20% (100 runs sampled)

simple pattern on 1000 resources (JIT):

resolve time with core x 277,813 ops/sec ±0.18% (99 runs sampled)
resolve time on composition x 91,959 ops/sec ±0.43% (97 runs sampled)
resolve time on composition with compile cache x 227,117 ops/sec ±0.15% (99 runs sampled)

simple pattern on 1000 resources (JIT + AOT):

resolve time with core x 319,061 ops/sec ±0.18% (100 runs sampled)
resolve time on composition x 204,529 ops/sec ±0.22% (95 runs sampled)
resolve time on composition with compile cache x 204,652 ops/sec ±0.30% (100 runs sampled)

complex pattern on 1000 resources (AOT):

resolve time with core x 240,427 ops/sec ±0.37% (100 runs sampled)
resolve time on composition x 33,959 ops/sec ±0.45% (94 runs sampled)
resolve time on composition with compile cache x 200,980 ops/sec ±0.15% (99 runs sampled)

complex pattern on 1000 resources (JIT):

resolve time with core x 225,739 ops/sec ±0.25% (99 runs sampled)
resolve time on composition x 36,379 ops/sec ±0.49% (97 runs sampled)
resolve time on composition with compile cache x 191,653 ops/sec ±0.24% (100 runs sampled)

complex pattern on 1000 resources (JIT + AOT):

resolve time with core x 278,542 ops/sec ±0.20% (98 runs sampled)
resolve time on composition x 92,781 ops/sec ±0.31% (98 runs sampled)
resolve time on composition with compile cache x 92,865 ops/sec ±0.33% (98 runs sampled)

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:

import { createI18n } from 'vue-i18n'
import { messageCompiler } from './compilation'

const i18n = createI18n({
  legacy: false,
  locale: 'en',
  messageCompiler,
  messages: {
    en: {
      hello: 'hello world!',
      greeting: 'hi, {name}!',
      photo: `You have {numPhotos, plural,
        =0 {no photos.}
        =1 {one photo.}
        other {# photos.}
      }`
    }
  }
})

About details, please see the docs

Exports type definition and API

Export v-t type definitions and API $te to support Vue I18n extending for third vendors and your Vue applications.

❗ Important Changes: 1

allowComposition option

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

Deprecate vue-i18n official bundle plugins

The following plugin or loader for bundler is deprecated because it can be replaced by the unplugin-vue-i18n.

These will only be taken as hot fixes in the future, and no additional functionality will be added.

⚡ Improvement Features: 15

🐛 Bug Fixes: 17

📝️ 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
  • date: add startOfDay and endOfDay functions (6bd0f2c)
  • date: check if date is null | undefined | falsy in isValid (a1a1ca7)
  • filter: always pass InternalItem to custom filter function (#​17832) (bbe5b2c), closes #​17487
  • VBottomSheet: add elevation to content (5a6167d)
  • VDatePicker: enforce min/max on keyboard input (#​18115) (e74d19d), closes #​18113
  • VDatePickerYears: adjust default height (be1d41f)

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.


  • 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 Aug 17, 2023
@renovate renovate bot force-pushed the renovate/npm branch 3 times, most recently from 4f72db2 to 9e585c8 Compare August 17, 2023 15:24
@renovate renovate bot changed the title chore(deps): update dependency swiper to v10.2.0 chore(deps): update npm dependencies Aug 20, 2023
@renovate renovate bot force-pushed the renovate/npm branch 7 times, most recently from c306fcc to 14912d3 Compare August 26, 2023 19:31
@renovate renovate bot force-pushed the renovate/npm branch 8 times, most recently from 48dd147 to fa22615 Compare September 1, 2023 06:30
@renovate renovate bot force-pushed the renovate/npm branch 4 times, most recently from e6cc1b4 to 10f4480 Compare September 4, 2023 13:01
@renovate renovate bot force-pushed the renovate/npm branch 4 times, most recently from ac87556 to d6bf467 Compare September 10, 2023 17:10
@renovate renovate bot force-pushed the renovate/npm branch 4 times, most recently from b911928 to 4c3430b Compare September 14, 2023 13:40
@jellyfin-bot jellyfin-bot added the merge conflict Something has merge conflicts label Sep 15, 2023
@renovate renovate bot force-pushed the renovate/npm branch 2 times, most recently from 8aeb561 to f2c289b Compare September 15, 2023 13:47
@jellyfin-bot jellyfin-bot removed the merge conflict Something has merge conflicts label Sep 15, 2023
@sonarcloud
Copy link

sonarcloud bot commented Sep 15, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

@ferferga ferferga merged commit 83f011a into master Sep 15, 2023
16 of 18 checks passed
@ferferga ferferga deleted the renovate/npm branch September 15, 2023 14:03
@jellyfin-bot
Copy link

Cloudflare Pages deployment

Latest commit 5c40c13
Status ✅ Deployed!
Preview URL https://4bc15616.jf-vue.pages.dev
Type 🔀 Preview

View build logs
View bot logs

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.

3 participants