From c42ab53cb40f430340c393cedd8d345da0081697 Mon Sep 17 00:00:00 2001 From: btea <2356281422@qq.com> Date: Fri, 26 Apr 2024 11:31:53 +0800 Subject: [PATCH 01/15] fix: update create-vue option info (#2826) --- src/guide/quick-start.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/guide/quick-start.md b/src/guide/quick-start.md index d7074d286e..d8d0b997cb 100644 --- a/src/guide/quick-start.md +++ b/src/guide/quick-start.md @@ -67,8 +67,8 @@ This command will install and execute [create-vue](https://github.com/vuejs/crea Add Vue Router for Single Page Application development? No / Yes Add Pinia for state management? No / Yes Add Vitest for Unit testing? No / Yes - Add an End-to-End Testing Solution? No / Cypress / Playwright - Add ESLint for code quality? No / Yes + Add an End-to-End Testing Solution? No / Cypress / Nightwatch / Playwright + Add ESLint for code quality? … No / Yes Add Prettier for code formatting? No / Yes Add Vue DevTools 7 extension for debugging? (experimental) No / Yes From 15ada9d4b8ee42d7c341a3ec819abee0df5877bf Mon Sep 17 00:00:00 2001 From: Alexander Lichter Date: Fri, 26 Apr 2024 05:32:27 +0200 Subject: [PATCH 02/15] docs: link to suspense (#2827) --- src/api/sfc-script-setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/sfc-script-setup.md b/src/api/sfc-script-setup.md index 7ac82031e9..72744864e9 100644 --- a/src/api/sfc-script-setup.md +++ b/src/api/sfc-script-setup.md @@ -433,7 +433,7 @@ const post = await fetch(`/api/post/1`).then((r) => r.json()) In addition, the awaited expression will be automatically compiled in a format that preserves the current component instance context after the `await`. :::warning Note -`async setup()` must be used in combination with `Suspense`, which is currently still an experimental feature. We plan to finalize and document it in a future release - but if you are curious now, you can refer to its [tests](https://github.com/vuejs/core/blob/main/packages/runtime-core/__tests__/components/Suspense.spec.ts) to see how it works. +`async setup()` must be used in combination with [`Suspense`](/guide/built-ins/suspense.html), which is currently still an experimental feature. We plan to finalize and document it in a future release - but if you are curious now, you can refer to its [tests](https://github.com/vuejs/core/blob/main/packages/runtime-core/__tests__/components/Suspense.spec.ts) to see how it works. ::: ## Generics {#generics} From 306262e9f9c6a9ad7c78008a75a086946b7afced Mon Sep 17 00:00:00 2001 From: DY_XiaoDong Date: Fri, 26 Apr 2024 11:34:35 +0800 Subject: [PATCH 03/15] docs: unifies playground link text (#2829) --- src/guide/best-practices/performance.md | 2 +- src/guide/components/v-model.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/guide/best-practices/performance.md b/src/guide/best-practices/performance.md index 83035add0a..f66339efe5 100644 --- a/src/guide/best-practices/performance.md +++ b/src/guide/best-practices/performance.md @@ -165,7 +165,7 @@ const computedObj = computed((oldValue) => { }) ``` -[Playground Example](https://play.vuejs.org/#eNqVVMtu2zAQ/JUFgSZK4UpuczMkow/40AJ9IC3aQ9mDIlG2EokUyKVt1PC/d0lKtoEminMQQC1nZ4c7S+7Yu66L11awGUtNoesOwQi03ZzLuu2URtiBFtUECtV2FkU5gU2OxWpRVaJA2EOlVQuXxHDJJZeFkgYJayVC5hKj6dUxLnzSjZXmV40rZfFrh3Vb/82xVrLH//5DCQNNKPkweNiNVFP+zBsrIJvDjksgGrRahjVAbRZrIWdBVLz2yBfwBrIsg6mD7LncPyryfIVnywupUmz68HOEEqqCI+XFBQzrOKR79MDdx66GCn1jhpQDZx8f0oZ+nBgdRVcH/aMuBt1xZ80qGvGvh/X6nlXwnGpPl6qsLLxTtitzFFTNl0oSN/79AKOCHHQuS5pw4XorbXsr9ImHZN7nHFdx1SilI78MeOJ7Ca+nbvgd+GgomQOv6CNjSQqXaRJuHd03+kHRdg3JoT+A3a7XsfcmpbcWkQS/LZq6uM84C8o5m4fFuOg0CemeOXXX2w2E6ylsgj2gTgeYio/f1l5UEqj+Z3yC7lGuNDlpApswNNTrql7Gd0ZJeqW8TZw5t+tGaMdDXnA2G4acs7xp1OaTj6G2YjLEi5Uo7h+I35mti3H2TQsj9Jp6etjDXC8Fhu3F9y9iS+vDZqtK2xB6ZPNGGNVYpzHA3ltZkuwTnFf70b+1tVz+MIstCmmGQzmh/p56PGf00H4YOfpR7nV8PTxubP8P2GAP9Q==) +[Try it in the playground](https://play.vuejs.org/#eNqVVMtu2zAQ/JUFgSZK4UpuczMkow/40AJ9IC3aQ9mDIlG2EokUyKVt1PC/d0lKtoEminMQQC1nZ4c7S+7Yu66L11awGUtNoesOwQi03ZzLuu2URtiBFtUECtV2FkU5gU2OxWpRVaJA2EOlVQuXxHDJJZeFkgYJayVC5hKj6dUxLnzSjZXmV40rZfFrh3Vb/82xVrLH//5DCQNNKPkweNiNVFP+zBsrIJvDjksgGrRahjVAbRZrIWdBVLz2yBfwBrIsg6mD7LncPyryfIVnywupUmz68HOEEqqCI+XFBQzrOKR79MDdx66GCn1jhpQDZx8f0oZ+nBgdRVcH/aMuBt1xZ80qGvGvh/X6nlXwnGpPl6qsLLxTtitzFFTNl0oSN/79AKOCHHQuS5pw4XorbXsr9ImHZN7nHFdx1SilI78MeOJ7Ca+nbvgd+GgomQOv6CNjSQqXaRJuHd03+kHRdg3JoT+A3a7XsfcmpbcWkQS/LZq6uM84C8o5m4fFuOg0CemeOXXX2w2E6ylsgj2gTgeYio/f1l5UEqj+Z3yC7lGuNDlpApswNNTrql7Gd0ZJeqW8TZw5t+tGaMdDXnA2G4acs7xp1OaTj6G2YjLEi5Uo7h+I35mti3H2TQsj9Jp6etjDXC8Fhu3F9y9iS+vDZqtK2xB6ZPNGGNVYpzHA3ltZkuwTnFf70b+1tVz+MIstCmmGQzmh/p56PGf00H4YOfpR7nV8PTxubP8P2GAP9Q==) Note that you should always perform the full computation before comparing and returning the old value, so that the same dependencies can be collected on every run. diff --git a/src/guide/components/v-model.md b/src/guide/components/v-model.md index 63b2974a7e..7369551939 100644 --- a/src/guide/components/v-model.md +++ b/src/guide/components/v-model.md @@ -47,7 +47,7 @@ const model = defineModel() ``` -[Playground Example](https://play.vuejs.org/#eNqFUtFKwzAU/ZWYl06YLbK30Q10DFSYigq+5KW0t11mmoQknZPSf/cm3eqEsT0l555zuefmpKV3WsfbBuiUpjY3XDtiwTV6ziSvtTKOLNZcFKQ0qiZRnATkG6JB0BIDJen2kp5iMlfSOlLbisw8P4oeQAhFPpURxVV0zWSa9PNwEgIHtRaZA0SEpOvbeduG5q5LE0Sh2jvZ3tSqADFjFHlGSYJkmhz10zF1FseXvIo3VklcrfX9jOaq1lyAedGOoz1GpyQwnsvQ3fdTqDnTwPhQz9eQf52ob+zO1xh9NWDBbIHRgXOZqcD19PL9GXZ4H0h03whUnyHfwCrReI+97L6RBdo+0gW3j+H9uaw+7HLnQNrDUt6oV3ZBzyhmsjiz+p/dSTwJfUx2+IpD1ic+xz5enwQGXEDJJaw8Gl2I1upMzlc/hEvdOBR6SNKAjqP1J6P/o6XdL11L5h4=) +[Try it in the playground](https://play.vuejs.org/#eNqFUtFKwzAU/ZWYl06YLbK30Q10DFSYigq+5KW0t11mmoQknZPSf/cm3eqEsT0l555zuefmpKV3WsfbBuiUpjY3XDtiwTV6ziSvtTKOLNZcFKQ0qiZRnATkG6JB0BIDJen2kp5iMlfSOlLbisw8P4oeQAhFPpURxVV0zWSa9PNwEgIHtRaZA0SEpOvbeduG5q5LE0Sh2jvZ3tSqADFjFHlGSYJkmhz10zF1FseXvIo3VklcrfX9jOaq1lyAedGOoz1GpyQwnsvQ3fdTqDnTwPhQz9eQf52ob+zO1xh9NWDBbIHRgXOZqcD19PL9GXZ4H0h03whUnyHfwCrReI+97L6RBdo+0gW3j+H9uaw+7HLnQNrDUt6oV3ZBzyhmsjiz+p/dSTwJfUx2+IpD1ic+xz5enwQGXEDJJaw8Gl2I1upMzlc/hEvdOBR6SNKAjqP1J6P/o6XdL11L5h4=) ### Under the Hood {#under-the-hood} From 7d474410c53ae40cd84be1c17cbfa644f534f974 Mon Sep 17 00:00:00 2001 From: DY_XiaoDong Date: Fri, 26 Apr 2024 11:43:19 +0800 Subject: [PATCH 04/15] fix: `
` inside `

` in example code (#2825) Co-authored-by: Divyansh Singh <40380293+brc-dd@users.noreply.github.com> --- src/examples/src/form-bindings/App/template.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/examples/src/form-bindings/App/template.html b/src/examples/src/form-bindings/App/template.html index fabedc6631..29fa8acc22 100644 --- a/src/examples/src/form-bindings/App/template.html +++ b/src/examples/src/form-bindings/App/template.html @@ -1,5 +1,6 @@

Text Input

- {{ text }} + +

{{ text }}

Checkbox

@@ -16,7 +17,7 @@

Multi Checkbox

-

Checked names:

{{ checkedNames }}

+

Checked names: {{ checkedNames }}

Radio

@@ -24,8 +25,7 @@

Radio


-
-Picked: {{ picked }} +

Picked: {{ picked }}

Select

-Selected: {{ selected }} +

Selected: {{ selected }}

Multi Select

-Selected: {{ multiSelected }} +

Selected: {{ multiSelected }}

From 21cd803662e9ed58ca0253cd21ebba2acad82ae9 Mon Sep 17 00:00:00 2001 From: DY_XiaoDong Date: Fri, 26 Apr 2024 11:44:10 +0800 Subject: [PATCH 05/15] docs: format code block comments (#2831) --- src/guide/components/v-model.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/guide/components/v-model.md b/src/guide/components/v-model.md index 7369551939..0ff92e68e0 100644 --- a/src/guide/components/v-model.md +++ b/src/guide/components/v-model.md @@ -547,7 +547,7 @@ const [firstName, firstNameModifiers] = defineModel('firstName') const [lastName, lastNameModifiers] = defineModel('lastName') console.log(firstNameModifiers) // { capitalize: true } -console.log(lastNameModifiers) // { uppercase: true} +console.log(lastNameModifiers) // { uppercase: true } ``` @@ -565,7 +565,7 @@ lastNameModifiers: { default: () => ({}) } defineEmits(['update:firstName', 'update:lastName']) console.log(props.firstNameModifiers) // { capitalize: true } -console.log(props.lastNameModifiers) // { uppercase: true} +console.log(props.lastNameModifiers) // { uppercase: true } ``` @@ -589,7 +589,7 @@ export default { emits: ['update:firstName', 'update:lastName'], created() { console.log(this.firstNameModifiers) // { capitalize: true } - console.log(this.lastNameModifiers) // { uppercase: true} + console.log(this.lastNameModifiers) // { uppercase: true } } } From 4976d7da19f44ba0403f4042992f24665ce3e647 Mon Sep 17 00:00:00 2001 From: DY_XiaoDong Date: Fri, 26 Apr 2024 12:03:30 +0800 Subject: [PATCH 06/15] typo: Chrome should be capitalized (#2832) --- src/guide/best-practices/accessibility.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/best-practices/accessibility.md b/src/guide/best-practices/accessibility.md index 03bfc700b8..f6633c2935 100644 --- a/src/guide/best-practices/accessibility.md +++ b/src/guide/best-practices/accessibility.md @@ -169,7 +169,7 @@ Provide labels to describe the purpose of all form control; linking `for` and `i -If you inspect this element in your chrome developer tools and open the Accessibility tab inside the Elements tab, you will see how the input gets its name from the label: +If you inspect this element in your Chrome DevTools and open the Accessibility tab inside the Elements tab, you will see how the input gets its name from the label: ![Chrome Developer Tools showing input accessible name from label](./images/AccessibleLabelChromeDevTools.png) From 8cf681562260f8624ef062512485fbc86870dec5 Mon Sep 17 00:00:00 2001 From: Evan You Date: Fri, 26 Apr 2024 12:36:11 +0800 Subject: [PATCH 07/15] update license to CC-BY-4.0 and explicitly exclude images --- LICENSE | 184 +++++++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 163 insertions(+), 21 deletions(-) diff --git a/LICENSE b/LICENSE index 8944fd0b7d..f282aafc9b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,21 +1,163 @@ -MIT License - -Copyright (c) 2019 vuejs - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +Copyright (c) 2019-present, Yuxi (Evan) You and Vue documentation contributors + +The contents of this repository, **except for all image files**, are licensed under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/), detailed below. Images in this repository retain the copyright and licensing terms of their respective authors and owners. + +--- + +# Creative Commons Attribution 4.0 International + +Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. + +**Using Creative Commons Public Licenses** + +Creative Commons public licenses provide a standard set of terms and conditions that creators and other rights holders may use to share original works of authorship and other material subject to copyright and certain other rights specified in the public license below. The following considerations are for informational purposes only, are not exhaustive, and do not form part of our licenses. + +* __Considerations for licensors:__ Our public licenses are intended for use by those authorized to give the public permission to use material in ways otherwise restricted by copyright and certain other rights. Our licenses are irrevocable. Licensors should read and understand the terms and conditions of the license they choose before applying it. Licensors should also secure all rights necessary before applying our licenses so that the public can reuse the material as expected. Licensors should clearly mark any material not subject to the license. This includes other CC-licensed material, or material used under an exception or limitation to copyright. [More considerations for licensors](http://wiki.creativecommons.org/Considerations_for_licensors_and_licensees#Considerations_for_licensors). + +* __Considerations for the public:__ By using one of our public licenses, a licensor grants the public permission to use the licensed material under specified terms and conditions. If the licensor’s permission is not necessary for any reason–for example, because of any applicable exception or limitation to copyright–then that use is not regulated by the license. Our licenses grant only permissions under copyright and certain other rights that a licensor has authority to grant. Use of the licensed material may still be restricted for other reasons, including because others have copyright or other rights in the material. A licensor may make special requests, such as asking that all changes be marked or described. Although not required by our licenses, you are encouraged to respect those requests where reasonable. [More considerations for the public](http://wiki.creativecommons.org/Considerations_for_licensors_and_licensees#Considerations_for_licensees). + +## Creative Commons Attribution 4.0 International Public License + +By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. + +### Section 1 – Definitions. + +a. __Adapted Material__ means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. + +b. __Adapter's License__ means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License. + +c. __Copyright and Similar Rights__ means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights. + +d. __Effective Technological Measures__ means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements. + +e. __Exceptions and Limitations__ means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material. + +f. __Licensed Material__ means the artistic or literary work, database, or other material to which the Licensor applied this Public License. + +g. __Licensed Rights__ means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license. + +h. __Licensor__ means the individual(s) or entity(ies) granting rights under this Public License. + +i. __Share__ means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them. + +j. __Sui Generis Database Rights__ means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world. + +k. __You__ means the individual or entity exercising the Licensed Rights under this Public License. __Your__ has a corresponding meaning. + +### Section 2 – Scope. + +a. ___License grant.___ + + 1. Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to: + + A. reproduce and Share the Licensed Material, in whole or in part; and + + B. produce, reproduce, and Share Adapted Material. + + 2. __Exceptions and Limitations.__ For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions. + + 3. __Term.__ The term of this Public License is specified in Section 6(a). + + 4. __Media and formats; technical modifications allowed.__ The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material. + + 5. __Downstream recipients.__ + + A. __Offer from the Licensor – Licensed Material.__ Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License. + + B. __No downstream restrictions.__ You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material. + + 6. __No endorsement.__ Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i). + +b. ___Other rights.___ + + 1. Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this Public License. + + 3. To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties. + +### Section 3 – License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the following conditions. + +a. ___Attribution.___ + + 1. If You Share the Licensed Material (including in modified form), You must: + + A. retain the following if it is supplied by the Licensor with the Licensed Material: + + i. identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of warranties; + + v. a URI or hyperlink to the Licensed Material to the extent reasonably practicable; + + B. indicate if You modified the Licensed Material and retain an indication of any previous modifications; and + + C. indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information. + + 3. If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable. + + 4. If You Share Adapted Material You produce, the Adapter's License You apply must not prevent recipients of the Adapted Material from complying with this Public License. + +### Section 4 – Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material: + +a. for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database; + +b. if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material; and + +c. You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights. + +### Section 5 – Disclaimer of Warranties and Limitation of Liability. + +a. __Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.__ + +b. __To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You.__ + +c. The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability. + +### Section 6 – Term and Termination. + +a. This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically. + +b. Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License. + +c. For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License. + +d. Sections 1, 5, 6, 7, and 8 survive termination of this Public License. + +### Section 7 – Other Terms and Conditions. + +a. The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed. + +b. Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License. + +### Section 8 – Interpretation. + +a. For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License. + +b. To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions. + +c. No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. + +d. Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. + +> Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at [creativecommons.org/policies](http://creativecommons.org/policies), Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. +> +> Creative Commons may be contacted at creativecommons.org From 5bc30bfde40901ef9ad96405c9974c6bbfb546cd Mon Sep 17 00:00:00 2001 From: Evan You Date: Fri, 26 Apr 2024 13:32:39 +0800 Subject: [PATCH 08/15] add privacy policy --- .vitepress/config.ts | 1 + src/about/privacy.md | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 src/about/privacy.md diff --git a/.vitepress/config.ts b/.vitepress/config.ts index 9a2d986615..6571830492 100644 --- a/.vitepress/config.ts +++ b/.vitepress/config.ts @@ -113,6 +113,7 @@ const nav: ThemeConfig['nav'] = [ link: '/about/community-guide' }, { text: 'Code of Conduct', link: '/about/coc' }, + { text: 'Privacy Policy', link: '/about/privacy' }, { text: 'The Documentary', link: 'https://www.youtube.com/watch?v=OrxmtDw4pVI' diff --git a/src/about/privacy.md b/src/about/privacy.md new file mode 100644 index 0000000000..3720aebfca --- /dev/null +++ b/src/about/privacy.md @@ -0,0 +1,40 @@ +# Vue.js Privacy Policy + +> Effective Date: April 26, 2024 + +This Privacy Policy describes the Vue.js organization ("Vue", "we", "us" or "our") practices for handling your information in connection with this website (https://vuejs.org) and our open source-related websites ("Websites") and any content, related documentation, information and services (e.g. tutorials, tools to support the developer workflow, access to resources, etc.) made available to you on this website (collectively, the "Services"). This Privacy Policy describes the personal information we process to support our Services. + +For clarity, this Privacy Policy only applies to the Websites and does not apply to any: + +1. Use of open source code, documentation or specifications made available on GitHub (https://github.com/), which are governed by the terms of the applicable open source license; + +2. Pull requests, issues and any other interactions or features related to participation in open source projects on GitHub, which are governed by GitHub's terms and conditions; or + +3. Usage statistics of our published packages on NPM (https://npmjs.com/), which are governed by NPM's terms and conditions; or + +4. Usage statistics of our published browser extensions, which are collected by the browser vendors and governed by their respective terms and conditions. + +## What Kinds of Information Do We Collect? + +We do not collect or store any type of personal data, but may collect anonymized data via 3rd party services integrated in our websites: + +- **Visitor data to our websites.** Our website analytics is powered by [Fathom Analytics](https://usefathom.com/), which doesn't use cookies and complies with the GDPR, ePrivacy (including PECR), COPPA and CCPA. Using this privacy-friendly website analytics software, your IP address is only briefly processed, and we (running this website) have no way of identifying you. As per the CCPA, your personal information is de-identified. You can read more about this on Fathom Analytics' website. + + - Fathom Analytics' Privacy Policy: https://usefathom.com/legal/privacy + +- **Usage data of the search functionality.** Our search functionality is powered by [Algolia DocSearch](https://docsearch.algolia.com/), which does not perform any type of user tracking or fingerprinting, and does not use cookies. Algolia services are GPDR compliant, CCPA compliant, and TRUSTe Certified. + + - Algolia's privacy policy: https://www.algolia.com/policies/privacy/ + - Algolia's security and privacy compliance: https://www.algolia.com/distributed-secure/security-compliance/ + +## How Do We Use Information? + +The sole purpose of collecting the aforementioned data is to understand our website traffic and usage in the most privacy-friendly way possible so that we can continually improve our website and documentation quality. The lawful basis as per the GDPR is "Article 6(1)(f); where our legitimate interests are to improve our website and business continually." As per the explanation, no personal data is stored over time. + +## Data Retention + +All data collected are stored on aforementioned 3rd party services and are subject to the services' respective data retention policies. + +## Questions + +If you have any questions about this Privacy Policy or our practices, please contact us via email at hello@vuejs.org. From 0112f1aa6a5709f3c5d7d711369c4e992cecbf60 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Apr 2024 19:12:28 +0000 Subject: [PATCH 09/15] chore(deps): bump @vue/repl from 4.1.1 to 4.1.2 Bumps [@vue/repl](https://github.com/vuejs/repl) from 4.1.1 to 4.1.2. - [Release notes](https://github.com/vuejs/repl/releases) - [Changelog](https://github.com/vuejs/repl/blob/main/CHANGELOG.md) - [Commits](https://github.com/vuejs/repl/compare/v4.1.1...v4.1.2) --- updated-dependencies: - dependency-name: "@vue/repl" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pnpm-lock.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0a792b0144..c87c4384bc 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10,7 +10,7 @@ overrides: dependencies: '@vue/repl': specifier: ^4.0.1 - version: 4.1.1 + version: 4.1.2 '@vue/theme': specifier: ^2.2.5 version: 2.2.5(vitepress@1.1.3)(vue@3.4.25) @@ -765,8 +765,8 @@ packages: '@vue/shared': 3.4.25 dev: false - /@vue/repl@4.1.1: - resolution: {integrity: sha512-gkbnU+rM01/ILdnDJbsWS8+PW6qMAzprBo/U2+7eVci0kx6VAR26fL/qrcEPwEYa6q0vzzptZ4il0SaUGGqZKw==} + /@vue/repl@4.1.2: + resolution: {integrity: sha512-h5JQ5NRN9HOCNfE4QCbZsFgAFS7/A21V3zrltxV2Uag1JIvtQb68qfmj795CPFjMBnRNpCddOBi34AKlq5yHbg==} dev: false /@vue/runtime-core@3.4.25: From 566533bfd511c6c82d7e2f6288e7a2a4e855f414 Mon Sep 17 00:00:00 2001 From: Hussain Panahy <144150970+HP8585@users.noreply.github.com> Date: Mon, 29 Apr 2024 21:34:31 +0330 Subject: [PATCH 10/15] docs: fix grammar on keep-alive.md (#2840) --- src/guide/built-ins/keep-alive.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/guide/built-ins/keep-alive.md b/src/guide/built-ins/keep-alive.md index c4fbec72c9..8d202f1876 100644 --- a/src/guide/built-ins/keep-alive.md +++ b/src/guide/built-ins/keep-alive.md @@ -135,8 +135,7 @@ Note that: - `onActivated``activated` is also called on mount, and `onDeactivated``deactivated` on unmount. -- Both hooks work for not only the root component cached by ``, but also descendant components in the cached tree. - +- Both hooks work for not only the root component cached by ``, but also the descendant components in the cached tree. --- **Related** From e57413f4638699c2581d8d346bfc97351a2868a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alois=20Se=C4=8Dk=C3=A1r?= Date: Mon, 29 Apr 2024 20:07:44 +0200 Subject: [PATCH 11/15] docs: missing anchors in new content (#2838) --- src/about/privacy.md | 10 +++++----- src/guide/components/props.md | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/about/privacy.md b/src/about/privacy.md index 3720aebfca..97f5da8f1d 100644 --- a/src/about/privacy.md +++ b/src/about/privacy.md @@ -1,4 +1,4 @@ -# Vue.js Privacy Policy +# Vue.js Privacy Policy {#vue.js-privacy-policy} > Effective Date: April 26, 2024 @@ -14,7 +14,7 @@ For clarity, this Privacy Policy only applies to the Websites and does not apply 4. Usage statistics of our published browser extensions, which are collected by the browser vendors and governed by their respective terms and conditions. -## What Kinds of Information Do We Collect? +## What Kinds of Information Do We Collect? {#what-kinds-of-information-do-we-collect} We do not collect or store any type of personal data, but may collect anonymized data via 3rd party services integrated in our websites: @@ -27,14 +27,14 @@ We do not collect or store any type of personal data, but may collect anonymized - Algolia's privacy policy: https://www.algolia.com/policies/privacy/ - Algolia's security and privacy compliance: https://www.algolia.com/distributed-secure/security-compliance/ -## How Do We Use Information? +## How Do We Use Information? {#how-do-we-use-information} The sole purpose of collecting the aforementioned data is to understand our website traffic and usage in the most privacy-friendly way possible so that we can continually improve our website and documentation quality. The lawful basis as per the GDPR is "Article 6(1)(f); where our legitimate interests are to improve our website and business continually." As per the explanation, no personal data is stored over time. -## Data Retention +## Data Retention {#data-retention} All data collected are stored on aforementioned 3rd party services and are subject to the services' respective data retention policies. -## Questions +## Questions {#questions} If you have any questions about this Privacy Policy or our practices, please contact us via email at hello@vuejs.org. diff --git a/src/guide/components/props.md b/src/guide/components/props.md index 5387598243..b550a5abf3 100644 --- a/src/guide/components/props.md +++ b/src/guide/components/props.md @@ -567,7 +567,7 @@ export default { Vue will use `instanceof Person` to validate whether the value of the `author` prop is indeed an instance of the `Person` class. -### Nullable Type +### Nullable Type {#nullable-type} If the type is required but nullable, you can use the array syntax that includes `null`: From 980866bd3a2832eb0fdc08fa8cbb8b02470a2fd5 Mon Sep 17 00:00:00 2001 From: DY_XiaoDong Date: Tue, 30 Apr 2024 02:08:55 +0800 Subject: [PATCH 12/15] docs: ensure consistency in comment in guide step-11 (#2837) --- src/tutorial/src/step-11/App/composition.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tutorial/src/step-11/App/composition.js b/src/tutorial/src/step-11/App/composition.js index 464d263d73..e059be9c51 100644 --- a/src/tutorial/src/step-11/App/composition.js +++ b/src/tutorial/src/step-11/App/composition.js @@ -1,3 +1,3 @@ export default { - // register component + // register child component } From c70fdb380655c76a99b159e9fa509153010d6278 Mon Sep 17 00:00:00 2001 From: DY_XiaoDong Date: Tue, 30 Apr 2024 02:10:45 +0800 Subject: [PATCH 13/15] docs: add vue vapor repo link (#2836) * docs: add vapor link * docs: switch link wrap in reactivity in depth --------- Co-authored-by: Ben Hong --- src/guide/extras/reactivity-in-depth.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/extras/reactivity-in-depth.md b/src/guide/extras/reactivity-in-depth.md index b733a33a42..e918c541b6 100644 --- a/src/guide/extras/reactivity-in-depth.md +++ b/src/guide/extras/reactivity-in-depth.md @@ -409,7 +409,7 @@ Quite a few other frameworks have introduced reactivity primitives similar to re Fundamentally, signals are the same kind of reactivity primitive as Vue refs. It's a value container that provides dependency tracking on access, and side-effect triggering on mutation. This reactivity-primitive-based paradigm isn't a particularly new concept in the frontend world: it dates back to implementations like [Knockout observables](https://knockoutjs.com/documentation/observables.html) and [Meteor Tracker](https://docs.meteor.com/api/tracker.html) from more than a decade ago. Vue Options API and the React state management library [MobX](https://mobx.js.org/) are also based on the same principles, but hide the primitives behind object properties. -Although not a necessary trait for something to qualify as signals, today the concept is often discussed alongside the rendering model where updates are performed through fine-grained subscriptions. Due to the use of Virtual DOM, Vue currently [relies on compilers to achieve similar optimizations](/guide/extras/rendering-mechanism#compiler-informed-virtual-dom). However, we are also exploring a new Solid-inspired compilation strategy (Vapor Mode) that does not rely on Virtual DOM and takes more advantage of Vue's built-in reactivity system. +Although not a necessary trait for something to qualify as signals, today the concept is often discussed alongside the rendering model where updates are performed through fine-grained subscriptions. Due to the use of Virtual DOM, Vue currently [relies on compilers to achieve similar optimizations](/guide/extras/rendering-mechanism#compiler-informed-virtual-dom). However, we are also exploring a new Solid-inspired compilation strategy, called [Vapor Mode](https://github.com/vuejs/core-vapor), that does not rely on Virtual DOM and takes more advantage of Vue's built-in reactivity system. ### API Design Trade-Offs {#api-design-trade-offs} From d4b8decc05146e16e2ce58d7e14db51091692769 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 19:35:48 +0000 Subject: [PATCH 14/15] chore(deps): bump vue from 3.4.25 to 3.4.26 Bumps [vue](https://github.com/vuejs/core) from 3.4.25 to 3.4.26. - [Release notes](https://github.com/vuejs/core/releases) - [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md) - [Commits](https://github.com/vuejs/core/compare/v3.4.25...v3.4.26) --- updated-dependencies: - dependency-name: vue dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pnpm-lock.yaml | 152 ++++++++++++++++++++++++------------------------- 1 file changed, 76 insertions(+), 76 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c87c4384bc..4adfd32a63 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -13,7 +13,7 @@ dependencies: version: 4.1.2 '@vue/theme': specifier: ^2.2.5 - version: 2.2.5(vitepress@1.1.3)(vue@3.4.25) + version: 2.2.5(vitepress@1.1.3)(vue@3.4.26) dynamics.js: specifier: ^1.1.5 version: 1.1.5 @@ -25,7 +25,7 @@ dependencies: version: 1.1.3(@types/node@20.10.1)(terser@5.14.2) vue: specifier: ^3.4.0 - version: 3.4.25 + version: 3.4.26 devDependencies: '@types/markdown-it': @@ -683,7 +683,7 @@ packages: resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==} dev: false - /@vitejs/plugin-vue@5.0.0-beta.1(vite@5.2.9)(vue@3.4.25): + /@vitejs/plugin-vue@5.0.0-beta.1(vite@5.2.9)(vue@3.4.26): resolution: {integrity: sha512-zFAHH6RJH2w/LQlFyqrml96yjYmT8n8e3O4esRxHzCn250uOlkuc0IAqFJWqdxLmQquEM4q5/ECnQJRGsKjoIw==} engines: {node: ^18.0.0 || >=20.0.0} peerDependencies: @@ -691,56 +691,56 @@ packages: vue: ^3.2.25 dependencies: vite: 5.2.9(@types/node@20.10.1)(terser@5.14.2) - vue: 3.4.25 + vue: 3.4.26 dev: false - /@vue/compiler-core@3.4.25: - resolution: {integrity: sha512-Y2pLLopaElgWnMNolgG8w3C5nNUVev80L7hdQ5iIKPtMJvhVpG0zhnBG/g3UajJmZdvW0fktyZTotEHD1Srhbg==} + /@vue/compiler-core@3.4.26: + resolution: {integrity: sha512-N9Vil6Hvw7NaiyFUFBPXrAyETIGlQ8KcFMkyk6hW1Cl6NvoqvP+Y8p1Eqvx+UdqsnrnI9+HMUEJegzia3mhXmQ==} dependencies: '@babel/parser': 7.24.4 - '@vue/shared': 3.4.25 + '@vue/shared': 3.4.26 entities: 4.5.0 estree-walker: 2.0.2 source-map-js: 1.2.0 dev: false - /@vue/compiler-dom@3.4.25: - resolution: {integrity: sha512-Ugz5DusW57+HjllAugLci19NsDK+VyjGvmbB2TXaTcSlQxwL++2PETHx/+Qv6qFwNLzSt7HKepPe4DcTE3pBWg==} + /@vue/compiler-dom@3.4.26: + resolution: {integrity: sha512-4CWbR5vR9fMg23YqFOhr6t6WB1Fjt62d6xdFPyj8pxrYub7d+OgZaObMsoxaF9yBUHPMiPFK303v61PwAuGvZA==} dependencies: - '@vue/compiler-core': 3.4.25 - '@vue/shared': 3.4.25 + '@vue/compiler-core': 3.4.26 + '@vue/shared': 3.4.26 dev: false - /@vue/compiler-sfc@3.4.25: - resolution: {integrity: sha512-m7rryuqzIoQpOBZ18wKyq05IwL6qEpZxFZfRxlNYuIPDqywrXQxgUwLXIvoU72gs6cRdY6wHD0WVZIFE4OEaAQ==} + /@vue/compiler-sfc@3.4.26: + resolution: {integrity: sha512-It1dp+FAOCgluYSVYlDn5DtZBxk1NCiJJfu2mlQqa/b+k8GL6NG/3/zRbJnHdhV2VhxFghaDq5L4K+1dakW6cw==} dependencies: '@babel/parser': 7.24.4 - '@vue/compiler-core': 3.4.25 - '@vue/compiler-dom': 3.4.25 - '@vue/compiler-ssr': 3.4.25 - '@vue/shared': 3.4.25 + '@vue/compiler-core': 3.4.26 + '@vue/compiler-dom': 3.4.26 + '@vue/compiler-ssr': 3.4.26 + '@vue/shared': 3.4.26 estree-walker: 2.0.2 magic-string: 0.30.10 postcss: 8.4.38 source-map-js: 1.2.0 dev: false - /@vue/compiler-ssr@3.4.25: - resolution: {integrity: sha512-H2ohvM/Pf6LelGxDBnfbbXFPyM4NE3hrw0e/EpwuSiYu8c819wx+SVGdJ65p/sFrYDd6OnSDxN1MB2mN07hRSQ==} + /@vue/compiler-ssr@3.4.26: + resolution: {integrity: sha512-FNwLfk7LlEPRY/g+nw2VqiDKcnDTVdCfBREekF8X74cPLiWHUX6oldktf/Vx28yh4STNy7t+/yuLoMBBF7YDiQ==} dependencies: - '@vue/compiler-dom': 3.4.25 - '@vue/shared': 3.4.25 + '@vue/compiler-dom': 3.4.26 + '@vue/shared': 3.4.26 dev: false - /@vue/devtools-api@7.0.27(vue@3.4.25): + /@vue/devtools-api@7.0.27(vue@3.4.26): resolution: {integrity: sha512-BFCFCusSDcw2UcOFD/QeK7OxD1x2C/m+uAN30Q7jLKECSW53hmz0urzJmX834GuWDZX/hIxkyUKnLLfEIP1c/w==} dependencies: - '@vue/devtools-kit': 7.0.27(vue@3.4.25) + '@vue/devtools-kit': 7.0.27(vue@3.4.26) transitivePeerDependencies: - vue dev: false - /@vue/devtools-kit@7.0.27(vue@3.4.25): + /@vue/devtools-kit@7.0.27(vue@3.4.26): resolution: {integrity: sha512-/A5xM38pPCFX5Yhl/lRFAzjyK6VNsH670nww2WbjFKWqlu3I+lMxWKzQkCW6A1V8bduITgl2kHORfg2gTw6QaA==} peerDependencies: vue: ^3.0.0 @@ -750,7 +750,7 @@ packages: mitt: 3.0.1 perfect-debounce: 1.0.0 speakingurl: 14.0.1 - vue: 3.4.25 + vue: 3.4.26 dev: false /@vue/devtools-shared@7.0.27: @@ -759,53 +759,53 @@ packages: rfdc: 1.3.1 dev: false - /@vue/reactivity@3.4.25: - resolution: {integrity: sha512-mKbEtKr1iTxZkAG3vm3BtKHAOhuI4zzsVcN0epDldU/THsrvfXRKzq+lZnjczZGnTdh3ojd86/WrP+u9M51pWQ==} + /@vue/reactivity@3.4.26: + resolution: {integrity: sha512-E/ynEAu/pw0yotJeLdvZEsp5Olmxt+9/WqzvKff0gE67tw73gmbx6tRkiagE/eH0UCubzSlGRebCbidB1CpqZQ==} dependencies: - '@vue/shared': 3.4.25 + '@vue/shared': 3.4.26 dev: false /@vue/repl@4.1.2: resolution: {integrity: sha512-h5JQ5NRN9HOCNfE4QCbZsFgAFS7/A21V3zrltxV2Uag1JIvtQb68qfmj795CPFjMBnRNpCddOBi34AKlq5yHbg==} dev: false - /@vue/runtime-core@3.4.25: - resolution: {integrity: sha512-3qhsTqbEh8BMH3pXf009epCI5E7bKu28fJLi9O6W+ZGt/6xgSfMuGPqa5HRbUxLoehTNp5uWvzCr60KuiRIL0Q==} + /@vue/runtime-core@3.4.26: + resolution: {integrity: sha512-AFJDLpZvhT4ujUgZSIL9pdNcO23qVFh7zWCsNdGQBw8ecLNxOOnPcK9wTTIYCmBJnuPHpukOwo62a2PPivihqw==} dependencies: - '@vue/reactivity': 3.4.25 - '@vue/shared': 3.4.25 + '@vue/reactivity': 3.4.26 + '@vue/shared': 3.4.26 dev: false - /@vue/runtime-dom@3.4.25: - resolution: {integrity: sha512-ode0sj77kuwXwSc+2Yhk8JMHZh1sZp9F/51wdBiz3KGaWltbKtdihlJFhQG4H6AY+A06zzeMLkq6qu8uDSsaoA==} + /@vue/runtime-dom@3.4.26: + resolution: {integrity: sha512-UftYA2hUXR2UOZD/Fc3IndZuCOOJgFxJsWOxDkhfVcwLbsfh2CdXE2tG4jWxBZuDAs9J9PzRTUFt1PgydEtItw==} dependencies: - '@vue/runtime-core': 3.4.25 - '@vue/shared': 3.4.25 + '@vue/runtime-core': 3.4.26 + '@vue/shared': 3.4.26 csstype: 3.1.3 dev: false - /@vue/server-renderer@3.4.25(vue@3.4.25): - resolution: {integrity: sha512-8VTwq0Zcu3K4dWV0jOwIVINESE/gha3ifYCOKEhxOj6MEl5K5y8J8clQncTcDhKF+9U765nRw4UdUEXvrGhyVQ==} + /@vue/server-renderer@3.4.26(vue@3.4.26): + resolution: {integrity: sha512-xoGAqSjYDPGAeRWxeoYwqJFD/gw7mpgzOvSxEmjWaFO2rE6qpbD1PC172YRpvKhrihkyHJkNDADFXTfCyVGhKw==} peerDependencies: - vue: 3.4.25 + vue: 3.4.26 dependencies: - '@vue/compiler-ssr': 3.4.25 - '@vue/shared': 3.4.25 - vue: 3.4.25 + '@vue/compiler-ssr': 3.4.26 + '@vue/shared': 3.4.26 + vue: 3.4.26 dev: false - /@vue/shared@3.4.25: - resolution: {integrity: sha512-k0yappJ77g2+KNrIaF0FFnzwLvUBLUYr8VOwz+/6vLsmItFp51AcxLL7Ey3iPd7BIRyWPOcqUjMnm7OkahXllA==} + /@vue/shared@3.4.26: + resolution: {integrity: sha512-Fg4zwR0GNnjzodMt3KRy2AWGMKQXByl56+4HjN87soxLNU9P5xcJkstAlIeEF3cU6UYOzmJl1tV0dVPGIljCnQ==} dev: false - /@vue/theme@2.2.5(vitepress@1.1.3)(vue@3.4.25): + /@vue/theme@2.2.5(vitepress@1.1.3)(vue@3.4.26): resolution: {integrity: sha512-UUPD0XxlRa69Ytely8JEU/cu8Pae5f4UqZNIXANPN8KT6j/O23dCbOfp1cKlSn+Q/xXLYp0K+vRh4IqZjt/9BQ==} peerDependencies: vitepress: ^1.0.0-alpha.60 dependencies: '@docsearch/css': 3.5.2 '@docsearch/js': 3.5.2 - '@vueuse/core': 9.13.0(vue@3.4.25) + '@vueuse/core': 9.13.0(vue@3.4.26) body-scroll-lock: 3.1.5 normalize.css: 8.0.1 vitepress: 1.1.3(@types/node@20.10.1)(terser@5.14.2) @@ -819,31 +819,31 @@ packages: - vue dev: false - /@vueuse/core@10.9.0(vue@3.4.25): + /@vueuse/core@10.9.0(vue@3.4.26): resolution: {integrity: sha512-/1vjTol8SXnx6xewDEKfS0Ra//ncg4Hb0DaZiwKf7drgfMsKFExQ+FnnENcN6efPen+1kIzhLQoGSy0eDUVOMg==} dependencies: '@types/web-bluetooth': 0.0.20 '@vueuse/metadata': 10.9.0 - '@vueuse/shared': 10.9.0(vue@3.4.25) - vue-demi: 0.14.7(vue@3.4.25) + '@vueuse/shared': 10.9.0(vue@3.4.26) + vue-demi: 0.14.7(vue@3.4.26) transitivePeerDependencies: - '@vue/composition-api' - vue dev: false - /@vueuse/core@9.13.0(vue@3.4.25): + /@vueuse/core@9.13.0(vue@3.4.26): resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==} dependencies: '@types/web-bluetooth': 0.0.16 '@vueuse/metadata': 9.13.0 - '@vueuse/shared': 9.13.0(vue@3.4.25) - vue-demi: 0.14.6(vue@3.4.25) + '@vueuse/shared': 9.13.0(vue@3.4.26) + vue-demi: 0.14.6(vue@3.4.26) transitivePeerDependencies: - '@vue/composition-api' - vue dev: false - /@vueuse/integrations@10.9.0(focus-trap@7.5.4)(vue@3.4.25): + /@vueuse/integrations@10.9.0(focus-trap@7.5.4)(vue@3.4.26): resolution: {integrity: sha512-acK+A01AYdWSvL4BZmCoJAcyHJ6EqhmkQEXbQLwev1MY7NBnS+hcEMx/BzVoR9zKI+UqEPMD9u6PsyAuiTRT4Q==} peerDependencies: async-validator: '*' @@ -884,10 +884,10 @@ packages: universal-cookie: optional: true dependencies: - '@vueuse/core': 10.9.0(vue@3.4.25) - '@vueuse/shared': 10.9.0(vue@3.4.25) + '@vueuse/core': 10.9.0(vue@3.4.26) + '@vueuse/shared': 10.9.0(vue@3.4.26) focus-trap: 7.5.4 - vue-demi: 0.14.7(vue@3.4.25) + vue-demi: 0.14.7(vue@3.4.26) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -901,19 +901,19 @@ packages: resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==} dev: false - /@vueuse/shared@10.9.0(vue@3.4.25): + /@vueuse/shared@10.9.0(vue@3.4.26): resolution: {integrity: sha512-Uud2IWncmAfJvRaFYzv5OHDli+FbOzxiVEQdLCKQKLyhz94PIyFC3CHcH7EDMwIn8NPtD06+PNbC/PiO0LGLtw==} dependencies: - vue-demi: 0.14.7(vue@3.4.25) + vue-demi: 0.14.7(vue@3.4.26) transitivePeerDependencies: - '@vue/composition-api' - vue dev: false - /@vueuse/shared@9.13.0(vue@3.4.25): + /@vueuse/shared@9.13.0(vue@3.4.26): resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==} dependencies: - vue-demi: 0.14.7(vue@3.4.25) + vue-demi: 0.14.7(vue@3.4.26) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -1201,16 +1201,16 @@ packages: '@shikijs/core': 1.3.0 '@shikijs/transformers': 1.3.0 '@types/markdown-it': 14.0.1 - '@vitejs/plugin-vue': 5.0.0-beta.1(vite@5.2.9)(vue@3.4.25) - '@vue/devtools-api': 7.0.27(vue@3.4.25) - '@vueuse/core': 10.9.0(vue@3.4.25) - '@vueuse/integrations': 10.9.0(focus-trap@7.5.4)(vue@3.4.25) + '@vitejs/plugin-vue': 5.0.0-beta.1(vite@5.2.9)(vue@3.4.26) + '@vue/devtools-api': 7.0.27(vue@3.4.26) + '@vueuse/core': 10.9.0(vue@3.4.26) + '@vueuse/integrations': 10.9.0(focus-trap@7.5.4)(vue@3.4.26) focus-trap: 7.5.4 mark.js: 8.11.1 minisearch: 6.3.0 shiki: 1.3.0 vite: 5.2.9(@types/node@20.10.1)(terser@5.14.2) - vue: 3.4.25 + vue: 3.4.26 transitivePeerDependencies: - '@algolia/client-search' - '@types/node' @@ -1239,7 +1239,7 @@ packages: - universal-cookie dev: false - /vue-demi@0.14.6(vue@3.4.25): + /vue-demi@0.14.6(vue@3.4.26): resolution: {integrity: sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==} engines: {node: '>=12'} hasBin: true @@ -1251,10 +1251,10 @@ packages: '@vue/composition-api': optional: true dependencies: - vue: 3.4.25 + vue: 3.4.26 dev: false - /vue-demi@0.14.7(vue@3.4.25): + /vue-demi@0.14.7(vue@3.4.26): resolution: {integrity: sha512-EOG8KXDQNwkJILkx/gPcoL/7vH+hORoBaKgGe+6W7VFMvCYJfmF2dGbvgDroVnI8LU7/kTu8mbjRZGBU1z9NTA==} engines: {node: '>=12'} hasBin: true @@ -1266,20 +1266,20 @@ packages: '@vue/composition-api': optional: true dependencies: - vue: 3.4.25 + vue: 3.4.26 dev: false - /vue@3.4.25: - resolution: {integrity: sha512-HWyDqoBHMgav/OKiYA2ZQg+kjfMgLt/T0vg4cbIF7JbXAjDexRf5JRg+PWAfrAkSmTd2I8aPSXtooBFWHB98cg==} + /vue@3.4.26: + resolution: {integrity: sha512-bUIq/p+VB+0xrJubaemrfhk1/FiW9iX+pDV+62I/XJ6EkspAO9/DXEjbDFoe8pIfOZBqfk45i9BMc41ptP/uRg==} peerDependencies: typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@vue/compiler-dom': 3.4.25 - '@vue/compiler-sfc': 3.4.25 - '@vue/runtime-dom': 3.4.25 - '@vue/server-renderer': 3.4.25(vue@3.4.25) - '@vue/shared': 3.4.25 + '@vue/compiler-dom': 3.4.26 + '@vue/compiler-sfc': 3.4.26 + '@vue/runtime-dom': 3.4.26 + '@vue/server-renderer': 3.4.26(vue@3.4.26) + '@vue/shared': 3.4.26 dev: false From baf27c806b6dda7a9cb83f46f968bc3fdfc56c6d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 19:49:39 +0000 Subject: [PATCH 15/15] chore(deps): bump vitepress from 1.1.3 to 1.1.4 Bumps [vitepress](https://github.com/vuejs/vitepress) from 1.1.3 to 1.1.4. - [Release notes](https://github.com/vuejs/vitepress/releases) - [Changelog](https://github.com/vuejs/vitepress/blob/main/CHANGELOG.md) - [Commits](https://github.com/vuejs/vitepress/compare/v1.1.3...v1.1.4) --- updated-dependencies: - dependency-name: vitepress dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pnpm-lock.yaml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4adfd32a63..74de8e593f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -13,7 +13,7 @@ dependencies: version: 4.1.2 '@vue/theme': specifier: ^2.2.5 - version: 2.2.5(vitepress@1.1.3)(vue@3.4.26) + version: 2.2.5(vitepress@1.1.4)(vue@3.4.26) dynamics.js: specifier: ^1.1.5 version: 1.1.5 @@ -22,7 +22,7 @@ dependencies: version: 3.9.0 vitepress: specifier: ^1.1.0 - version: 1.1.3(@types/node@20.10.1)(terser@5.14.2) + version: 1.1.4(@types/node@20.10.1)(terser@5.14.2) vue: specifier: ^3.4.0 version: 3.4.26 @@ -683,14 +683,14 @@ packages: resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==} dev: false - /@vitejs/plugin-vue@5.0.0-beta.1(vite@5.2.9)(vue@3.4.26): + /@vitejs/plugin-vue@5.0.0-beta.1(vite@5.2.10)(vue@3.4.26): resolution: {integrity: sha512-zFAHH6RJH2w/LQlFyqrml96yjYmT8n8e3O4esRxHzCn250uOlkuc0IAqFJWqdxLmQquEM4q5/ECnQJRGsKjoIw==} engines: {node: ^18.0.0 || >=20.0.0} peerDependencies: vite: ^5.0.0 vue: ^3.2.25 dependencies: - vite: 5.2.9(@types/node@20.10.1)(terser@5.14.2) + vite: 5.2.10(@types/node@20.10.1)(terser@5.14.2) vue: 3.4.26 dev: false @@ -798,7 +798,7 @@ packages: resolution: {integrity: sha512-Fg4zwR0GNnjzodMt3KRy2AWGMKQXByl56+4HjN87soxLNU9P5xcJkstAlIeEF3cU6UYOzmJl1tV0dVPGIljCnQ==} dev: false - /@vue/theme@2.2.5(vitepress@1.1.3)(vue@3.4.26): + /@vue/theme@2.2.5(vitepress@1.1.4)(vue@3.4.26): resolution: {integrity: sha512-UUPD0XxlRa69Ytely8JEU/cu8Pae5f4UqZNIXANPN8KT6j/O23dCbOfp1cKlSn+Q/xXLYp0K+vRh4IqZjt/9BQ==} peerDependencies: vitepress: ^1.0.0-alpha.60 @@ -808,7 +808,7 @@ packages: '@vueuse/core': 9.13.0(vue@3.4.26) body-scroll-lock: 3.1.5 normalize.css: 8.0.1 - vitepress: 1.1.3(@types/node@20.10.1)(terser@5.14.2) + vitepress: 1.1.4(@types/node@20.10.1)(terser@5.14.2) transitivePeerDependencies: - '@algolia/client-search' - '@types/react' @@ -1147,8 +1147,8 @@ packages: /undici-types@5.26.5: resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} - /vite@5.2.9(@types/node@20.10.1)(terser@5.14.2): - resolution: {integrity: sha512-uOQWfuZBlc6Y3W/DTuQ1Sr+oIXWvqljLvS881SVmAj00d5RdgShLcuXWxseWPd4HXwiYBFW/vXHfKFeqj9uQnw==} + /vite@5.2.10(@types/node@20.10.1)(terser@5.14.2): + resolution: {integrity: sha512-PAzgUZbP7msvQvqdSD+ErD5qGnSFiGOoWmV5yAKUEI0kdhjbH6nMWVyZQC/hSc4aXwc0oJ9aEdIiF9Oje0JFCw==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -1184,8 +1184,8 @@ packages: fsevents: 2.3.3 dev: false - /vitepress@1.1.3(@types/node@20.10.1)(terser@5.14.2): - resolution: {integrity: sha512-hGrIYN0w9IHWs0NQSnlMjKV/v/HLfD+Ywv5QdvCSkiT32mpNOOwUrZjnqZv/JL/WBPpUc94eghTUvmipxw0xrA==} + /vitepress@1.1.4(@types/node@20.10.1)(terser@5.14.2): + resolution: {integrity: sha512-bWIzFZXpPB6NIDBuWnS20aMADH+FcFKDfQNYFvbOWij03PR29eImTceQHIzCKordjXYBhM/TjE5VKFTUJ3EheA==} hasBin: true peerDependencies: markdown-it-mathjax3: ^4 @@ -1201,7 +1201,7 @@ packages: '@shikijs/core': 1.3.0 '@shikijs/transformers': 1.3.0 '@types/markdown-it': 14.0.1 - '@vitejs/plugin-vue': 5.0.0-beta.1(vite@5.2.9)(vue@3.4.26) + '@vitejs/plugin-vue': 5.0.0-beta.1(vite@5.2.10)(vue@3.4.26) '@vue/devtools-api': 7.0.27(vue@3.4.26) '@vueuse/core': 10.9.0(vue@3.4.26) '@vueuse/integrations': 10.9.0(focus-trap@7.5.4)(vue@3.4.26) @@ -1209,7 +1209,7 @@ packages: mark.js: 8.11.1 minisearch: 6.3.0 shiki: 1.3.0 - vite: 5.2.9(@types/node@20.10.1)(terser@5.14.2) + vite: 5.2.10(@types/node@20.10.1)(terser@5.14.2) vue: 3.4.26 transitivePeerDependencies: - '@algolia/client-search'