Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.

chore(deps): update dependency vue to v2.5.20 - autoclosed #22

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Nov 27, 2017

This PR contains the following updates:

Package Type Update Change References
vue devDependencies minor 2.4.2 -> 2.5.20 source

Release Notes

vuejs/vue

v2.5.20

Compare Source

v2.5.19

Compare Source

Bug Fixes
  • ssr: should not warn for custom directives that do not have ssr implementation 780dac5, closes #​9167
  • vdom: remove unnecessary sameVnode condition 0d4b35f, closes #​9168
Reverts

v2.5.18

Compare Source

Includes everything in 2.5.18-beta.0
Bug Fixes

v2.5.17

Compare Source

NOTE: this is a hot fix that contains the following changes only, and does NOT include any changes from 2.5.17-beta.0.

Bug Fixes
  • fix potential xss vulnerability in ssr when using v-bind c28f792

v2.5.16

Compare Source

Bug Fixes

v2.5.15

Compare Source

Bug Fixes
  • do not traverse VNodes when regsitering dependencies 84a9a9d, closes #​7786

v2.5.14

Compare Source

Bug Fixes

v2.5.13

Compare Source

Bug Fixes
  • revert auto cache for inline prop literals, fix regressions (#​7283)

v2.5.12

Compare Source

Bug Fixes
Improvements
  • core: allow symbol as vdom key bacb911, closes #​7271

  • core: prop bindings with inline Object/Array literal values no longer cause the child component to always re-render:

    <foo :bar="[1, 2, 3]"/>

    The compiler now automatically wraps the literal value as an inline computed property to avoid creating new values on each render (unless data it depends on has changed).

  • types: extract VueConfiguration type for easy expansion (#​7274) c0d516c, closes #​7273

v2.5.11

Compare Source

Bug Fixes
  • avoid unnecessary lowercase coersion in component name validation 3f0c628, closes #​7237
Improvements

v2.5.10

Compare Source

Bug Fixes

v2.5.9

Compare Source

Bug Fixes
  • core: ensure functionalContext is cloned during slot clones 604e081, closes #​7106
  • core: fix async component resolving in sibling mounted hook dd21eac, closes #​7107
  • compiler: fix v-for iterator parsing destructuring + parens without index aa82625
  • keep-alive: should not destroy active instance when pruning cache 3932a45, closes #​7105
  • types: add missing ssr renderToString signature 14e9908
  • types: add Promise signature for bundleRenderer.renderToString (#​7098) 3554eb2
  • types: bump ts version and fix typing bugs (#​7135) a71e653, closes #​7135
  • types: improve and test bundleRenderer.renderToString Promise types fcc1229
  • types: use object and string instead of Object and String (#​7126) d2e1d49
  • browser quirks: block unnecessary input event on textarea placeholder in IE 0f7c443, closes #​7138

v2.5.8

Compare Source

Bug Fixes

v2.5.7

Compare Source

Bug Fixes
  • ssr: fix bundle renderer require path on windows (#​7085) 063acb7, closes #​7085
  • keep-alive: fix <keep-alive> include/exclude logic for anonymous components a23b913
Improvements
  • core: allow deep tracking of reactive objects which are sealed (#​7080) 4c22d1d
  • compiler: improve error detector v-for identifier check to handle arbitrary unicode d891cd1, closes #​6971

v2.5.6

Compare Source

Bug Fixes

v2.5.5

Compare Source

Bug Fixes
  • init _staticTrees to avoid runtime reference warning f5cd29e, closes #​7075
  • <keep-alive> should not cache anonymous components 4d8226f, closes #​6938
  • should warn unknown components inside <keep-alive> 6d6b373
Improvements
  • warn if both v-model and v-bind:value are used on same element (#​7056) 1e14603

v2.5.4

Compare Source

Bug Fixes

v2.5.3

Compare Source

Notable update: Type compatibility with TS 2.6

Bug Fixes

v2.5.2

Compare Source

Bug Fixes
  • adjust nextTick implementation for more consistent behavior with earlier versions 4e0c485, closes #​6813

v2.5.1

Compare Source

Bug Fixes

v2.5.0

Compare Source

Features & Improvements

Error Handling and Reporting
TypeScript Declaration Improvements
Functional Components
  • compiled templates for functional component support ea0d227

  • scoped CSS support for functional components 050bb33

    These features require vue-loader>=13.3.0. Thanks to the work by @​blake-newman. [Details]

Server Side Rendering
  • renderToString now returns a Promise if no callback is passed f881dd1, closes #​6160
  • add shouldPrefetch option (same signature as shouldPreload) 7bc899c, closes #​5964
  • auto-remove initial state embed script if in production (#​6763) 2d32b5d, closes #​6761
  • now ships an environment-agnostic build of the server renderer in vue-server-renderer/basic.js c5d0fa0 [Details]
v-model
v-on
Scoped Slots
Provide/Inject
<keep-alive>
  • add max prop for <keep-alive> for limiting max number of instances cached 2cba6d4
Other Improvements
  • config.ignoredElements can now contain RegExp in addition to strings (#​6769) 795b908
  • data function is now called with the vm instance as the first argument (#​6760) 3a5432a
  • vue-template-compiler now ships an environment-agnostic build which can be used directly in browsers in vue-template-compiler/browser.js a5e5b31

Bug Fixes

  • compiler: warn when inline-template component has no children (fix #​6703) (#​6715) baabd6d, closes #​6703 #​6715
  • core: avoid observing VNodes 4459b87, closes #​6610
  • ref: preserve ref on components after removing root element (#​6718) 6ad44e1, closes #​6632 #​6641
  • handle errors in errorHandler 2b5c83a, closes #​6714
  • ssr: fix hydration mismatch with adjacent text node from slots b080a14, closes vuejs/vue-loader#​974
  • add slot v-bind warning (#​6736) 514b90b, closes #​6677
  • allow an object's Symbols to be observed (#​6704) 4fd2ce8
  • fix scoped CSS for nested nodes in functional components 4216588
  • ssr: handle inline template compilation error dff85b2, closes #​6766
  • perperly handle v-if on scoped slot 68bdbf5, closes #​6725
  • prevent memory leak due to circular reference in vnodes 405d8e9, closes #​6759
  • properly render value on in IE/Edge c64f9ae, closes #​6666
  • resolve async component default for native dynamic import 2876ed8, closes #​6751
  • use correct namespace inside as root node cf1ff5b, closes #​6642
  • use MessageChannel for nextTick 6e41679, closes #​6566 #​6690
  • work around old Chrome bug 0f2cb09, closes #​6601
  • Internals

    We have changed the implementation of Vue.nextTick to fix a few bugs (related to #​6566, #​6690). The change involves using a macro task instead of a micro task to defer DOM updates when inside a DOM event handler attached via v-on. This means any Vue updates triggered by state changes inside v-on handlers will be now deferred using a macro task. This may lead to changes in behavior when dealing with native DOM events.

    For more details regarding micro/macro tasks, see this blog post.

    For the new implementation, see source code for nextTick.

    v2.4.4

    Compare Source

    Bug Fixes

    v2.4.3

    Compare Source

    Bug Fixes

    Renovate 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 if you modify the PR title to begin with "rebase!".

    🔕 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. View repository job log here.

@coveralls
Copy link

Coverage Status

Coverage remained the same at 100.0% when pulling 0d0b1f1 on renovate/vue-2.x into 32a2b55 on master.

@codecov
Copy link

codecov bot commented Nov 27, 2017

Codecov Report

Merging #22 into master will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@          Coverage Diff          @@
##           master    #22   +/-   ##
=====================================
  Coverage     100%   100%           
=====================================
  Files           1      1           
  Lines         102    102           
  Branches       28     28           
=====================================
  Hits          102    102

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 32a2b55...d690e45. Read the comment docs.

@renovate renovate bot force-pushed the renovate/vue-2.x branch from 0d0b1f1 to a0c375a Compare December 12, 2017 23:50
@renovate renovate bot changed the title chore(deps): update dependency vue to v2.5.9 chore(deps): update dependency vue to v2.5.10 Dec 12, 2017
@coveralls
Copy link

Coverage Status

Coverage remained the same at 100.0% when pulling a0c375a on renovate/vue-2.x into 32a2b55 on master.

@renovate renovate bot force-pushed the renovate/vue-2.x branch from a0c375a to 7f609a0 Compare December 14, 2017 17:18
@renovate renovate bot changed the title chore(deps): update dependency vue to v2.5.10 chore(deps): update dependency vue to v2.5.11 Dec 14, 2017
@coveralls
Copy link

Coverage Status

Coverage remained the same at 100.0% when pulling 7f609a0 on renovate/vue-2.x into 32a2b55 on master.

@renovate renovate bot force-pushed the renovate/vue-2.x branch from 7f609a0 to 728c70d Compare December 19, 2017 16:19
@renovate renovate bot changed the title chore(deps): update dependency vue to v2.5.11 chore(deps): update dependency vue to v2.5.12 Dec 19, 2017
@coveralls
Copy link

Coverage Status

Coverage remained the same at 100.0% when pulling 728c70d on renovate/vue-2.x into 32a2b55 on master.

@renovate renovate bot force-pushed the renovate/vue-2.x branch from 728c70d to 9cfedea Compare December 19, 2017 20:20
@renovate renovate bot changed the title chore(deps): update dependency vue to v2.5.12 chore(deps): update dependency vue to v2.5.13 Dec 19, 2017
@coveralls
Copy link

coveralls commented Dec 19, 2017

Coverage Status

Coverage remained the same at 100.0% when pulling d690e45 on renovate/vue-2.x into 32a2b55 on master.

@renovate renovate bot force-pushed the renovate/vue-2.x branch from 9cfedea to 8f8574e Compare March 9, 2018 21:57
@renovate renovate bot changed the title chore(deps): update dependency vue to v2.5.13 chore(deps): update dependency vue to v2.5.14 Mar 9, 2018
@renovate renovate bot force-pushed the renovate/vue-2.x branch from 8f8574e to bddb64b Compare March 10, 2018 23:38
@renovate renovate bot changed the title chore(deps): update dependency vue to v2.5.14 chore(deps): update dependency vue to v2.5.15 Mar 10, 2018
@renovate renovate bot force-pushed the renovate/vue-2.x branch from bddb64b to 890d41b Compare March 13, 2018 22:16
@renovate renovate bot changed the title chore(deps): update dependency vue to v2.5.15 chore(deps): update dependency vue to v2.5.16 Mar 13, 2018
@renovate renovate bot changed the title chore(deps): update dependency vue to v2.5.16 Update dependency vue to v2.5.16 May 9, 2018
@renovate renovate bot changed the title Update dependency vue to v2.5.16 chore(deps): update dependency vue to v2.5.16 May 9, 2018
@renovate renovate bot changed the title chore(deps): update dependency vue to v2.5.16 Update dependency vue to v2.5.16 May 9, 2018
@renovate renovate bot changed the title Update dependency vue to v2.5.16 chore(deps): update dependency vue to v2.5.16 May 9, 2018
@renovate renovate bot force-pushed the renovate/vue-2.x branch from 890d41b to 5fbe55e Compare August 1, 2018 19:33
@renovate renovate bot changed the title chore(deps): update dependency vue to v2.5.16 chore(deps): update dependency vue to v2.5.17 Aug 1, 2018
@renovate renovate bot changed the title chore(deps): update dependency vue to v2.5.17 chore(deps): update dependency vue to v2.5.18 Dec 7, 2018
@renovate renovate bot force-pushed the renovate/vue-2.x branch 2 times, most recently from 31a330b to 81ddd35 Compare December 9, 2018 21:28
@renovate renovate bot changed the title chore(deps): update dependency vue to v2.5.18 chore(deps): update dependency vue to v2.5.19 Dec 9, 2018
@renovate renovate bot changed the title chore(deps): update dependency vue to v2.5.19 chore(deps): update dependency vue to v2.5.20 Dec 10, 2018
@renovate renovate bot force-pushed the renovate/vue-2.x branch from 81ddd35 to d690e45 Compare December 10, 2018 16:59
@renovate renovate bot changed the title chore(deps): update dependency vue to v2.5.20 chore(deps): update dependency vue to v2.5.20 - autoclosed Dec 11, 2018
@renovate renovate bot closed this Dec 11, 2018
@renovate renovate bot deleted the renovate/vue-2.x branch December 11, 2018 10:50
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants