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

build(deps): bump vue, qrcode.vue, vue-async-computed and vuex in /frontend #130

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 25, 2024

Bumps vue, qrcode.vue, vue-async-computed and vuex. These dependencies needed to be updated together.
Updates vue from 2.7.14 to 3.5.12

Release notes

Sourced from vue's releases.

v3.5.12

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.11

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.10

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.9

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.8

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.7

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.6

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.5

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.4

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.3

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.2

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.1

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.0

For stable releases, please refer to CHANGELOG.md for details.

... (truncated)

Changelog

Sourced from vue's changelog.

3.5.12 (2024-10-11)

Bug Fixes

Performance Improvements

  • reactivity: avoid unnecessary recursion in removeSub (#12135) (ec917cf)

3.5.11 (2024-10-03)

Bug Fixes

  • compiler-sfc: do not skip TSSatisfiesExpression when transforming props destructure (#12062) (2328b05), closes #12061
  • reactivity: prevent overwriting next property during batch processing (#12075) (d3f5e6e), closes #12072
  • scheduler: job ordering when the post queue is flushing (#12090) (577edca)
  • types: correctly infer TypeProps when it is any (#12073) (57315ab), closes #12058
  • types: should not intersect PublicProps with Props (#12077) (6f85894)
  • types: infer the first generic type of Ref correctly (#12094) (c97bb84)

3.5.10 (2024-09-27)

Bug Fixes

... (truncated)

Commits

Updates qrcode.vue from 1.7.0 to 3.5.1

Release notes

Sourced from qrcode.vue's releases.

v3.5.1

Optimized

Forced type conversion margin, to support <qrcode-vue margin="0" :value="test"></qrcode-vue>.

:margin='0' maybe better. But support string.

Look more in #85

v3.5.0

feature:

  1. Upgrade to support logo for qrcode, check #47.
  2. Export components QrcodeCanvas and QrcodeSvg.

v3.4.1

BUGFIX

  • Fixed TypeScript type export error.

v3.4.0

Performance

  • remove qr.js dependency, use nayuki/QR-Code-generator instead.

v3.3.4

  1. upgrade dependencies.
  2. use native es modules.

v3.3.3

BUGFIX:

  • errorCorrectLevel error.

v3.3.2

Fixed type error of component props.

v3.3.1

optimizing function calls and type declarations.

v3.3.0

convert vue options to setup.

v3.2.0

Feature

  • add support of typescript.

v3.1.0

Feature:

  • Add support margin for QRcode.

... (truncated)

Changelog

Sourced from qrcode.vue's changelog.

[3.5.0] - 2024-09-26

Feature

  • Support logo image for Qrcode.
  • Exports separate QrcodeCanvas and QrcodeSvg components

Direct references to QrcodeVue in common.js and cdn now require the default field:

const QrcodeVue = require('qrcode.vue').default
const { default: QrcodeVue, QrcodeCanvas, QrcodeSvg } = require('qrcode.vue')
<!--With HTML-->
<div id="root">
  <p class="flex space-x">
  <qrcode-vue :value="test" render-as="svg"></qrcode-vue>
<qrcode-canvas :value="test"></qrcode-canvas>
<qrcode-svg :value="test" :image-settings="imageSettings"></qrcode-svg>
</p>
<p><input v-model="test" /></p>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.global.prod.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/qrcode.vue.browser.min.js"></script>
<script>
Vue.createApp({
data() { return {
test: 'Hello World',
imageSettings: {
src: 'https://avatars.githubusercontent.com/u/15811268',
width: 30,
height: 30,
excavate: true,
},
}},
components: {
QrcodeVue: QrcodeVue.default,
QrcodeCanvas: QrcodeVue.QrcodeCanvas,
QrcodeSvg: QrcodeVue.QrcodeSvg,
},
}).mount('#root')
</script>

[3.4.1] - 2023-08-05

BUGFIX

... (truncated)

Commits
  • 8e42a8a fix: forced type conversion.
  • c0e7227 chore(deps): update doc and upgrade deps.
  • 53e790c fix: change assert to with.
  • 3208666 chore(docs): opt example.
  • 0a4ef95 feat: canvas support image.
  • 148693c feat: fix vue maxnum error.
  • cd6ce30 feat: support image for SVG.
  • c11715c chore(deps-dev): bump rollup from 4.21.2 to 4.22.4
  • 67088eb chore(deps): upgrade rsbuild and typescript.
  • 4866c60 chore: upgrade github action dependencies.
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by iiiwwj, a new releaser for qrcode.vue since your current version.


Updates vue-async-computed from 3.9.0 to 4.0.1

Changelog

Sourced from vue-async-computed's changelog.

Changelog

v4.0.0

  • Add support for Vue 3.
  • Drop support for Vue 2.
Commits
Maintainer changes

This version was pushed to npm by cdrini, a new releaser for vue-async-computed since your current version.


Updates vuex from 3.6.2 to 4.1.0

Release notes

Sourced from vuex's releases.

v4.0.2

Bug Fixes

  • devtools: fix no getters displayed on root module + better getters inspector (#1986) (bc20295)
  • build: cjs build failing due to __VUE_PROD_DEVTOOLS__ defined (#1991) (#1992) (7151622)

v4.0.1

Features

  • dx: add devtools integration (#1949)

v4.0.0

This is the official Vuex 4 release.

The focus for Vuex 4 is compatibility. Vuex 4 supports Vue 3, and it provides the exact same API as Vuex 3, so users can reuse their existing Vuex code with Vue 3.

There are a few breaking changes described in a later section, so please check them out.

You can find basic usage with both Option and Composition API in the example directory.

It's still released under next tag in NPM package as same as Vue 3. We're planning to remove next tag once Vue 3 is ready to remove it.

There have been a lot of contribution to make Vuex 4 stable. Thank you all for your very much appreciated help. It wouldn't have been possible without this wonderful Vue community!

Documentation

To check out docs, visit next.vuex.vuejs.org.

Breaking changes

Installation process has changed

To align with the new Vue 3 initialization process, the installation process of Vuex has changed.

To create a new store instance, users are now encouraged to use the newly introduced createStore function.

import { createStore } from 'vuex'
export const store = createStore({
state() {
return {
count: 1
}
}
})

Whilst this is not technically a breaking change, you may still use the new Store(...) syntax, we recommend this approach to align with Vue 3 and Vue Router 4.

... (truncated)

Changelog

Sourced from vuex's changelog.

4.1.0 (2022-10-14)

Vue Core Version Requirement Change

This release contains an important fix (#1883) that relies on the effectScope API from Vue core, which is only available in Vue 3.2+.

Bug Fixes

4.0.2 (2021-06-17)

Bug Fixes

  • devtools: fix no getters displayed on root module + better getters inspector (#1986) (bc20295)
  • build: cjs build failing due to __VUE_PROD_DEVTOOLS__ defined (#1991) (#1992) (7151622)

4.0.1 (2021-05-24)

Features

  • dx: add devtools integration (#1949)

4.0.0 (2021-02-02)

This is the official Vuex 4 release.

The focus for Vuex 4 is compatibility. Vuex 4 supports Vue 3, and it provides the exact same API as Vuex 3, so users can reuse their existing Vuex code with Vue 3.

There are a few breaking changes described in a later section, so please check them out.

You can find basic usage with both Option and Composition API in the example directory.

It's still released under next tag in NPM package as same as Vue 3. We're planning to remove next tag once Vue 3 is ready to remove it.

There have been a lot of contribution to make Vuex 4 stable. Thank you all for your very much appreciated help. It wouldn't have been possible without this wonderful Vue community!

Documentation

To check out docs, visit next.vuex.vuejs.org.

Breaking changes

Installation process has changed

To align with the new Vue 3 initialization process, the installation process of Vuex has changed.

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [vue](https://github.com/vuejs/core), [qrcode.vue](https://github.com/scopewu/qrcode.vue), [vue-async-computed](https://github.com/foxbenjaminfox/vue-async-computed) and [vuex](https://github.com/vuejs/vuex). These dependencies needed to be updated together.

Updates `vue` from 2.7.14 to 3.5.12
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vuejs/core/commits/v3.5.12)

Updates `qrcode.vue` from 1.7.0 to 3.5.1
- [Release notes](https://github.com/scopewu/qrcode.vue/releases)
- [Changelog](https://github.com/scopewu/qrcode.vue/blob/main/CHANGELOG.md)
- [Commits](scopewu/qrcode.vue@v1.7.0...v3.5.1)

Updates `vue-async-computed` from 3.9.0 to 4.0.1
- [Release notes](https://github.com/foxbenjaminfox/vue-async-computed/releases)
- [Changelog](https://github.com/foxbenjaminfox/vue-async-computed/blob/master/CHANGELOG.md)
- [Commits](foxbenjaminfox/vue-async-computed@v3.9.0...v4.0.1)

Updates `vuex` from 3.6.2 to 4.1.0
- [Release notes](https://github.com/vuejs/vuex/releases)
- [Changelog](https://github.com/vuejs/vuex/blob/main/CHANGELOG.md)
- [Commits](vuejs/vuex@v3.6.2...v4.1.0)

---
updated-dependencies:
- dependency-name: vue
  dependency-type: direct:production
- dependency-name: qrcode.vue
  dependency-type: direct:production
- dependency-name: vue-async-computed
  dependency-type: direct:production
- dependency-name: vuex
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Oct 25, 2024
Copy link

This PR is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.

@github-actions github-actions bot added the Stale label Nov 24, 2024
Copy link

This PR was closed because it has been stalled for 5 days with no activity.

@github-actions github-actions bot closed this Nov 30, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 30, 2024

OK, I won't notify you again about this release, but will get in touch when a new version is available.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/frontend/multi-8a8e45eaf3 branch November 30, 2024 02:38
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 javascript Pull requests that update Javascript code Stale
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants