Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 16, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@vue/compiler-sfc 3.1.4 -> 3.2.19 age adoption passing confidence
vue 3.1.4 -> 3.2.19 age adoption passing confidence

Release Notes

vuejs/vue-next

v3.2.19

Compare Source

Bug Fixes
  • compiler-core: should treat attribute key as expression (#​4658) (7aa0ea0)
  • server-renderer: respect compilerOptions during runtime template compilation (#​4631) (50d9d34)

v3.2.18

Compare Source

v3.2.17

Compare Source

Bug Fixes

v3.2.16

Compare Source

Bug Fixes
  • ssr: fix ssr runtime helper import in module mode (8e05b7f)

v3.2.15

Compare Source

Bug Fixes
  • compiler-ssr: import ssr helpers from updated path (d74f21a)

v3.2.14

Compare Source

Bug Fixes
  • compiler-core: generate TS-cast safe assignment code for v-model (686d014), closes #​4655
  • compiler-core: more robust member expression check in Node (6257ade)
  • compiler-sfc: fix local var access check for bindings in normal script (6d6cc90), closes #​4644
  • devtools: fix prod devtools detection + handle late devtools hook injection (#​4653) (2476eaa)

v3.2.13

Compare Source

Bug Fixes
  • compiler-core: add check when v-else-if is behind v-else (#​4603) (5addef8)
  • compiler-core: dedupe renderSlot's default props (#​4557) (0448125)
  • compiler-core: ensure hoisted scopeId code can be treeshaken (cb2d7c0)
  • compiler-core: more robust member expression check when running in node (d23fde3), closes #​4640
  • compiler-core: only merge true handlers (#​4577) (d8a36d0)
  • compiler-core: support ts syntax in expressions when isTS is true (0dc521b)
  • compiler-dom: fix transition children check for whitespace nodes (ed6470c), closes #​4637
  • hydration: ensure hydrated event listeners have bound instance (#​4529) (58b1fa5), closes #​4479
  • runtime-core: return the exposeProxy from mount (#​4606) (5aa4255)
  • types: incorrect type inference of array (#​4578) (140f089)
  • watch: remove redundant parameter default value (#​4565) (11a2098)
Features
  • compiler-sfc: allow disabling sourcemap when not needed (585615b)

v3.2.12

Compare Source

Bug Fixes

v3.2.11

Compare Source

Bug Fixes
  • hmr: handle possible duplicate component definitions with same id (aa8908a)

v3.2.10

Compare Source

Bug Fixes

v3.2.9

Compare Source

Bug Fixes

v3.2.8

Compare Source

Bug Fixes

v3.2.7

Compare Source

Bug Fixes
  • compiler-core: remove no longer necessary withScopeId import in generated code (935b4e2)
  • compiler-sfc: ensure script setup lang=ts output is tree-shakable (b89ff92)
  • compiler: only generate non-static ref for script setup if the binding exists (3628991), closes #​4431
  • ref-transform: should transform $ref when used with generic arguments (#​4446) (33cf6c8), closes #​4442
  • runtime-core: properly merge unmounted and beforeUnmount options (#​4447) (741d3b3)
  • suspense: misusing DOM Comment element constructor as a vnode type (#​4451) (ef5b731)

v3.2.6

Compare Source

Bug Fixes

v3.2.5

Compare Source

Bug Fixes
Features
  • experimental: expose ref macro types using separate d.ts file (b408451)
  • experimental: shouldTransform for ref-transform (e565831)
  • experimental: standalone ref transform (db8dc75)
  • experimental: support ref transform for sfc normal <script> (06051c4)
  • ref-transform: auto infer parser plugins (6453359)

v3.2.4

Compare Source

Bug Fixes
  • compiler-sfc: fix import usage check for lowercase imported components (57f1081), closes #​4358
  • runtime-core: ensure consistent arguments for tempalte and render funtion slot usage (644971e), closes #​4367
  • runtime-core: fix child component double update on props change (c1f564e), closes #​4365
Reverts

v3.2.3

Compare Source

Bug Fixes
  • compiler-core: fix hoisting logic for elements with cached handlers + other bindings (a6c1db2), closes #​4327
  • compiler-core: fix style binding edge case (#​4319) (092bdcd), closes #​4317
  • compiler-sfc: bail on import usage check when template has custom lang (aae3725), closes #​4312
  • compiler-sfc: fix import usage check in template strings in expressions (f855ccb), closes #​4340
  • defineProps: defineProps generates unnecessary array of same types (#​4353) (ad66295), closes #​4352
  • runtime-core: patchChildren first in patchElement (#​4313) (5b3f1e8)
  • runtime-core: vnode hooks should not be called on async wrapper (#​4349) (cd2d984), closes #​4346
  • runtime-dom: consistently remove boolean attributes for falsy values (#​4348) (620a69b)
  • shared: fix toDisplayString on object with null prototype (#​4335) (42a334e), closes #​4334
  • types: fix tsx ref component instance type (#​2486) (84d4357)

v3.2.2

Compare Source

Bug Fixes
Features
  • sfc: support $shallowRef ref sugar (00b76d3)

v3.2.1

Compare Source

Bug Fixes
  • compiler-core: should treat attribute key as expression (#​4658) (7aa0ea0)
  • server-renderer: respect compilerOptions during runtime template compilation (#​4631) (50d9d34)

v3.2.0

Compare Source

Compatibility Notes

This release contains no public API breakage. However, there are a few compatibility related notes:

  • Due to usage of new runtime helpers, code generated by the template compiler in >= 3.2 will not be compatible with runtime < 3.2.

    This only affects cases where there is a version mismatch between the compiler and the runtime. The most common case is libraries that ship pre-compiled Vue components. If you are a library author and ship code pre-compiled by Vue >= 3.2, your library will be only compatible Vue >= 3.2.

  • This release ships TypeScript typings that rely on Template Literal Types and requires TS >= 4.1.

Features
SFC
  • remove experimental status of <script setup> (27104ea) (Docs) (RFC)
  • remove experimental status for sfc <style> v-bind (3b38c9a) (Docs) (RFC)
  • support non-explicit type imports in <script setup> by avoiding exposing unused imports to template during dev (5a3ccfd), closes #​3183
  • support namespaced component tags when using <script setup> (e5a4412)
  • (experimental) new ref sugar (562bddb) (RFC)
Custom Elements
Reactivity
SSR
Generic
Types
  • map declared emits to onXXX props in inferred prop types (#​3926) (69344ff)
Performance Improvements
  • reactivity: improve reactive effect memory usage (#​4001) (87f69fd), closes #​2345
  • reactivity: ref-specific track/trigger and miscellaneous optimizations (#​3995) (6431040)
  • reactivity: use bitwise dep markers to optimize re-tracking (#​4017) (6cf2377)
  • compiler-core/runtime-core: improve VNode creation performance with compiler hints (#​3334) (ceff899)
  • compiler-core: also hoist all-static children array (b7ea7c1)
  • compiler-core: hoist dynamic props lists (02339b6)
  • compiler-sfc: ignore empty blocks (#​3520) (b771fdb)
Bug Fixes

Please refer to changelogs of previous beta releases for bug fixes included in this release.

v3.1.5

Compare Source

Bug Fixes

Configuration

📅 Schedule: 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 these updates again.


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

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot changed the title chore(deps): update dependency @vue/compiler-sfc to v3.1.5 chore(deps): update vue monorepo to v3.1.5 Jul 16, 2021
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from d88ad6a to 8053527 Compare July 16, 2021 18:14
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from 8053527 to 7b39cb9 Compare August 9, 2021 21:08
@renovate renovate bot changed the title chore(deps): update vue monorepo to v3.1.5 chore(deps): update vue monorepo to v3.2.1 Aug 9, 2021
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from 7b39cb9 to 8611333 Compare August 11, 2021 16:30
@renovate renovate bot changed the title chore(deps): update vue monorepo to v3.2.1 chore(deps): update vue monorepo to v3.2.2 Aug 11, 2021
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from 8611333 to c01ac3f Compare August 16, 2021 22:30
@renovate renovate bot changed the title chore(deps): update vue monorepo to v3.2.2 chore(deps): update vue monorepo Aug 16, 2021
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from c01ac3f to 4736a3d Compare August 17, 2021 00:08
@renovate renovate bot changed the title chore(deps): update vue monorepo chore(deps): update vue monorepo to v3.2.3 Aug 17, 2021
@renovate renovate bot force-pushed the renovate/vue-monorepo branch 2 times, most recently from a817425 to be62b5f Compare August 17, 2021 16:45
@renovate renovate bot changed the title chore(deps): update vue monorepo to v3.2.3 chore(deps): update vue monorepo to v3.2.4 Aug 17, 2021
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from be62b5f to 988624d Compare August 24, 2021 17:12
@renovate renovate bot changed the title chore(deps): update vue monorepo to v3.2.4 chore(deps): update vue monorepo to v3.2.6 Aug 24, 2021
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from 988624d to 4ff2572 Compare September 1, 2021 22:41
@renovate renovate bot changed the title chore(deps): update vue monorepo to v3.2.6 chore(deps): update vue monorepo to v3.2.7 Sep 1, 2021
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from 4ff2572 to 924f4ee Compare September 2, 2021 19:23
@renovate renovate bot changed the title chore(deps): update vue monorepo to v3.2.7 chore(deps): update vue monorepo to v3.2.8 Sep 2, 2021
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from 924f4ee to 77765f6 Compare September 5, 2021 22:57
@renovate renovate bot changed the title chore(deps): update vue monorepo to v3.2.8 chore(deps): update vue monorepo to v3.2.9 Sep 5, 2021
@renovate renovate bot changed the title chore(deps): update vue monorepo to v3.2.9 chore(deps): update vue monorepo to v3.2.10 Sep 7, 2021
@renovate renovate bot force-pushed the renovate/vue-monorepo branch 2 times, most recently from 6be7822 to 8c3805e Compare September 8, 2021 23:01
@renovate renovate bot changed the title chore(deps): update vue monorepo to v3.2.10 chore(deps): update vue monorepo Sep 8, 2021
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from 8c3805e to cbb332b Compare September 9, 2021 00:23
@renovate renovate bot changed the title chore(deps): update vue monorepo chore(deps): update vue monorepo to v3.2.11 Sep 9, 2021
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from cbb332b to a268040 Compare September 17, 2021 15:19
@renovate renovate bot changed the title chore(deps): update vue monorepo to v3.2.11 chore(deps): update vue monorepo Sep 17, 2021
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from a268040 to 49663b2 Compare September 17, 2021 17:16
@renovate renovate bot changed the title chore(deps): update vue monorepo chore(deps): update vue monorepo to v3.2.12 Sep 17, 2021
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from 49663b2 to 66982ff Compare September 21, 2021 19:04
@renovate renovate bot changed the title chore(deps): update vue monorepo to v3.2.12 chore(deps): update vue monorepo to v3.2.13 Sep 21, 2021
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from 66982ff to ba98f36 Compare September 23, 2021 00:15
@renovate renovate bot changed the title chore(deps): update vue monorepo to v3.2.13 chore(deps): update vue monorepo to v3.2.14 Sep 23, 2021
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from ba98f36 to 5952de7 Compare September 23, 2021 14:11
@renovate renovate bot changed the title chore(deps): update vue monorepo to v3.2.14 chore(deps): update vue monorepo to v3.2.15 Sep 23, 2021
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from 5952de7 to c7723d5 Compare September 23, 2021 15:47
@renovate renovate bot changed the title chore(deps): update vue monorepo to v3.2.15 chore(deps): update vue monorepo to v3.2.16 Sep 23, 2021
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from c7723d5 to 8faad18 Compare September 24, 2021 17:15
@renovate renovate bot changed the title chore(deps): update vue monorepo to v3.2.16 chore(deps): update vue monorepo to v3.2.17 Sep 24, 2021
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from 8faad18 to b78de48 Compare September 24, 2021 20:23
@renovate renovate bot changed the title chore(deps): update vue monorepo to v3.2.17 chore(deps): update vue monorepo Sep 24, 2021
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from b78de48 to 06ec2b8 Compare September 24, 2021 22:16
@renovate renovate bot changed the title chore(deps): update vue monorepo chore(deps): update vue monorepo to v3.2.18 Sep 24, 2021
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from 06ec2b8 to cf17926 Compare September 25, 2021 19:59
@renovate renovate bot changed the title chore(deps): update vue monorepo to v3.2.18 chore(deps): update vue monorepo to v3.2.19 Sep 25, 2021
@renovate renovate bot force-pushed the renovate/vue-monorepo branch 2 times, most recently from 8f11eae to cc91a76 Compare October 2, 2021 12:44
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from cc91a76 to 7223164 Compare October 2, 2021 18:29
@axetroy axetroy merged commit 7942ced into master Oct 2, 2021
@renovate renovate bot deleted the renovate/vue-monorepo branch October 2, 2021 19:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants