Update dependency qrcode.vue to v3.6.0 #110

Merged
Brain merged 1 commits from renovate/qrcode.vue-3.x into main 2024-11-07 16:16:18 +01:00
Collaborator

This PR contains the following updates:

Package Type Update Change
qrcode.vue (source) dependencies minor 3.4.1 -> 3.6.0

Release Notes

scopewu/qrcode.vue (qrcode.vue)

v3.6.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/scopewu/qrcode.vue/compare/v3.5.1...v3.6.0

v3.5.1

Compare Source

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

Compare Source

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/vue@3.5/dist/vue.global.prod.js"></script>
<script src="https://cdn.jsdelivr.net/npm/qrcode.vue@3.5/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>

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 becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [qrcode.vue](https://qr-vue.tie.pub/) ([source](https://github.com/scopewu/qrcode.vue)) | dependencies | minor | [`3.4.1` -> `3.6.0`](https://renovatebot.com/diffs/npm/qrcode.vue/3.4.1/3.6.0) | --- ### Release Notes <details> <summary>scopewu/qrcode.vue (qrcode.vue)</summary> ### [`v3.6.0`](https://github.com/scopewu/qrcode.vue/releases/tag/v3.6.0) [Compare Source](https://github.com/scopewu/qrcode.vue/compare/v3.5.1...v3.6.0) #### What's Changed - feat: add gradient fill functionality for QR codes by [@&#8203;WuChenDi](https://github.com/WuChenDi) in https://github.com/scopewu/qrcode.vue/pull/87 #### New Contributors - [@&#8203;WuChenDi](https://github.com/WuChenDi) made their first contribution in https://github.com/scopewu/qrcode.vue/pull/87 **Full Changelog**: https://github.com/scopewu/qrcode.vue/compare/v3.5.1...v3.6.0 ### [`v3.5.1`](https://github.com/scopewu/qrcode.vue/releases/tag/v3.5.1) [Compare Source](https://github.com/scopewu/qrcode.vue/compare/v3.5.0...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 [#&#8203;85](https://github.com/scopewu/qrcode.vue/issues/85) ### [`v3.5.0`](https://github.com/scopewu/qrcode.vue/blob/HEAD/CHANGELOG.md#350---2024-09-26) [Compare Source](https://github.com/scopewu/qrcode.vue/compare/v3.4.1...v3.5.0) ##### 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: ```js const QrcodeVue = require('qrcode.vue').default const { default: QrcodeVue, QrcodeCanvas, QrcodeSvg } = require('qrcode.vue') ``` ```html <!--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/vue@3.5/dist/vue.global.prod.js"></script> <script src="https://cdn.jsdelivr.net/npm/qrcode.vue@3.5/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> ``` </details> --- ### 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 becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40NDAuNyIsInVwZGF0ZWRJblZlciI6IjM3LjQ0MC43IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
renovate-bot added 1 commit 2024-09-29 10:36:12 +02:00
Update dependency qrcode.vue to v3.5.0
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
continuous-integration/drone/pr Build is passing
977fd448d8
Brain added 1 commit 2024-09-30 13:54:40 +02:00
Merge branch 'main' into renovate/qrcode.vue-3.x
All checks were successful
continuous-integration/drone/pr Build is passing
9c09cd3345
renovate-bot changed title from Update dependency qrcode.vue to v3.5.0 to Update dependency qrcode.vue to v3.5.1 2024-11-04 17:38:56 +01:00
renovate-bot force-pushed renovate/qrcode.vue-3.x from 9c09cd3345 to 6753ba664d 2024-11-04 17:38:56 +01:00 Compare
renovate-bot force-pushed renovate/qrcode.vue-3.x from 6753ba664d to a5f976b5ef 2024-11-06 11:38:52 +01:00 Compare
renovate-bot changed title from Update dependency qrcode.vue to v3.5.1 to Update dependency qrcode.vue to v3.6.0 2024-11-06 11:38:52 +01:00
Brain merged commit 7f8f6b1550 into main 2024-11-07 16:16:18 +01:00
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: wtf-eg/digitale-online-offline-registration#110
No description provided.