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

chore(deps): update dependency vue-template-compiler to v2.5.20 - autoclosed #33

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Oct 16, 2017

This PR contains the following updates:

Package Type Update Change References
vue-template-compiler 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 96.364% when pulling 6adc378 on renovate/vue-template-compiler-2.x into 6aa9036 on master.

@codecov-io
Copy link

codecov-io commented Oct 16, 2017

Codecov Report

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

Impacted file tree graph

@@          Coverage Diff          @@
##           master    #33   +/-   ##
=====================================
  Coverage     100%   100%           
=====================================
  Files           1      1           
  Lines          63     63           
  Branches       16     16           
=====================================
  Hits           63     63

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 6aa9036...a88f73f. Read the comment docs.

@renovate renovate bot force-pushed the renovate/vue-template-compiler-2.x branch from 6adc378 to d6b8b2a Compare November 3, 2017 21:15
@renovate renovate bot changed the title chore(deps): update dependency vue-template-compiler to v2.5.2 chore(deps): update dependency vue-template-compiler to v2.5.3 Nov 3, 2017
@coveralls
Copy link

Coverage Status

Coverage remained the same at 96.364% when pulling d6b8b2a on renovate/vue-template-compiler-2.x into 6aa9036 on master.

@renovate renovate bot force-pushed the renovate/vue-template-compiler-2.x branch from d6b8b2a to 0cc2b9a Compare November 16, 2017 20:54
@renovate renovate bot changed the title chore(deps): update dependency vue-template-compiler to v2.5.3 chore(deps): update dependency vue-template-compiler to v2.5.4 Nov 16, 2017
@coveralls
Copy link

Coverage Status

Coverage remained the same at 96.364% when pulling 0cc2b9a on renovate/vue-template-compiler-2.x into 6aa9036 on master.

@renovate renovate bot force-pushed the renovate/vue-template-compiler-2.x branch from 0cc2b9a to a978373 Compare November 17, 2017 16:45
@renovate renovate bot changed the title chore(deps): update dependency vue-template-compiler to v2.5.4 chore(deps): update dependency vue-template-compiler to v2.5.5 Nov 17, 2017
@coveralls
Copy link

Coverage Status

Coverage remained the same at 96.364% when pulling a978373 on renovate/vue-template-compiler-2.x into 6aa9036 on master.

@renovate renovate bot force-pushed the renovate/vue-template-compiler-2.x branch from a978373 to 6558c9c Compare November 18, 2017 19:46
@renovate renovate bot changed the title chore(deps): update dependency vue-template-compiler to v2.5.5 chore(deps): update dependency vue-template-compiler to v2.5.6 Nov 18, 2017
@coveralls
Copy link

Coverage Status

Coverage remained the same at 96.364% when pulling 6558c9c on renovate/vue-template-compiler-2.x into 6aa9036 on master.

@renovate renovate bot changed the title chore(deps): update dependency vue-template-compiler to v2.5.6 chore(deps): update dependency vue-template-compiler to v2.5.7 Nov 20, 2017
@renovate renovate bot force-pushed the renovate/vue-template-compiler-2.x branch from 6558c9c to 44775d0 Compare November 20, 2017 20:29
@coveralls
Copy link

Coverage Status

Coverage remained the same at 96.364% when pulling 44775d0 on renovate/vue-template-compiler-2.x into 6aa9036 on master.

@renovate renovate bot force-pushed the renovate/vue-template-compiler-2.x branch from 44775d0 to a94c321 Compare November 21, 2017 14:49
@renovate renovate bot changed the title chore(deps): update dependency vue-template-compiler to v2.5.7 chore(deps): update dependency vue-template-compiler to v2.5.8 Nov 21, 2017
@coveralls
Copy link

Coverage Status

Coverage remained the same at 96.364% when pulling a94c321 on renovate/vue-template-compiler-2.x into 6aa9036 on master.

@renovate renovate bot force-pushed the renovate/vue-template-compiler-2.x branch from a94c321 to 1fe5ff0 Compare November 27, 2017 18:37
@renovate renovate bot changed the title chore(deps): update dependency vue-template-compiler to v2.5.8 chore(deps): update dependency vue-template-compiler to v2.5.9 Nov 27, 2017
@coveralls
Copy link

Coverage Status

Coverage remained the same at 96.364% when pulling 1fe5ff0 on renovate/vue-template-compiler-2.x into 6aa9036 on master.

@renovate renovate bot force-pushed the renovate/vue-template-compiler-2.x branch from 1fe5ff0 to 0185c4c Compare December 12, 2017 23:16
@renovate renovate bot changed the title chore(deps): update dependency vue-template-compiler to v2.5.9 chore(deps): update dependency vue-template-compiler to v2.5.10 Dec 12, 2017
@coveralls
Copy link

Coverage Status

Coverage remained the same at 96.364% when pulling 0185c4c on renovate/vue-template-compiler-2.x into 6aa9036 on master.

@renovate renovate bot force-pushed the renovate/vue-template-compiler-2.x branch from 0185c4c to a542ad4 Compare December 14, 2017 17:32
@renovate renovate bot changed the title chore(deps): update dependency vue-template-compiler to v2.5.10 chore(deps): update dependency vue-template-compiler to v2.5.11 Dec 14, 2017
@coveralls
Copy link

Coverage Status

Coverage remained the same at 96.364% when pulling a542ad4 on renovate/vue-template-compiler-2.x into 6aa9036 on master.

@renovate renovate bot force-pushed the renovate/vue-template-compiler-2.x branch from a542ad4 to 4815b0e Compare December 19, 2017 15:09
@renovate renovate bot changed the title chore(deps): update dependency vue-template-compiler to v2.5.11 chore(deps): update dependency vue-template-compiler to v2.5.12 Dec 19, 2017
@coveralls
Copy link

Coverage Status

Coverage remained the same at 96.364% when pulling 4815b0e on renovate/vue-template-compiler-2.x into 6aa9036 on master.

@renovate renovate bot force-pushed the renovate/vue-template-compiler-2.x branch from 4815b0e to c39ee9e Compare December 19, 2017 19:56
@renovate renovate bot changed the title chore(deps): update dependency vue-template-compiler to v2.5.12 chore(deps): update dependency vue-template-compiler to v2.5.13 Dec 19, 2017
@coveralls
Copy link

coveralls commented Dec 19, 2017

Coverage Status

Coverage remained the same at 96.364% when pulling a88f73f on renovate/vue-template-compiler-2.x into 6aa9036 on master.

@renovate renovate bot force-pushed the renovate/vue-template-compiler-2.x branch from c39ee9e to b9782f0 Compare March 9, 2018 21:49
@renovate renovate bot changed the title chore(deps): update dependency vue-template-compiler to v2.5.13 chore(deps): update dependency vue-template-compiler to v2.5.14 Mar 9, 2018
@renovate renovate bot force-pushed the renovate/vue-template-compiler-2.x branch from b9782f0 to 9245c23 Compare March 10, 2018 23:39
@renovate renovate bot changed the title chore(deps): update dependency vue-template-compiler to v2.5.14 chore(deps): update dependency vue-template-compiler to v2.5.15 Mar 10, 2018
@renovate renovate bot force-pushed the renovate/vue-template-compiler-2.x branch from 9245c23 to 1b1b5e4 Compare March 13, 2018 22:16
@renovate renovate bot changed the title chore(deps): update dependency vue-template-compiler to v2.5.15 chore(deps): update dependency vue-template-compiler to v2.5.16 Mar 13, 2018
@renovate renovate bot changed the title chore(deps): update dependency vue-template-compiler to v2.5.16 Update dependency vue-template-compiler to v2.5.16 May 9, 2018
@renovate renovate bot changed the title Update dependency vue-template-compiler to v2.5.16 chore(deps): update dependency vue-template-compiler to v2.5.16 May 9, 2018
@renovate renovate bot changed the title chore(deps): update dependency vue-template-compiler to v2.5.16 Update dependency vue-template-compiler to v2.5.16 May 9, 2018
@renovate renovate bot changed the title Update dependency vue-template-compiler to v2.5.16 chore(deps): update dependency vue-template-compiler to v2.5.16 May 9, 2018
@renovate renovate bot force-pushed the renovate/vue-template-compiler-2.x branch from 1b1b5e4 to c8a09d2 Compare August 1, 2018 19:34
@renovate renovate bot changed the title chore(deps): update dependency vue-template-compiler to v2.5.16 chore(deps): update dependency vue-template-compiler to v2.5.17 Aug 1, 2018
@renovate renovate bot changed the title chore(deps): update dependency vue-template-compiler to v2.5.17 chore(deps): update dependency vue-template-compiler to v2.5.18 Dec 7, 2018
@renovate renovate bot force-pushed the renovate/vue-template-compiler-2.x branch from c8a09d2 to b54f897 Compare December 7, 2018 21:14
@renovate renovate bot changed the title chore(deps): update dependency vue-template-compiler to v2.5.18 chore(deps): update dependency vue-template-compiler to v2.5.19 Dec 9, 2018
@renovate renovate bot force-pushed the renovate/vue-template-compiler-2.x branch from b54f897 to 2d538ab Compare December 9, 2018 21:27
@renovate renovate bot changed the title chore(deps): update dependency vue-template-compiler to v2.5.19 chore(deps): update dependency vue-template-compiler to v2.5.20 Dec 10, 2018
@renovate renovate bot force-pushed the renovate/vue-template-compiler-2.x branch from 2d538ab to a88f73f Compare December 10, 2018 16:59
@renovate renovate bot changed the title chore(deps): update dependency vue-template-compiler to v2.5.20 chore(deps): update dependency vue-template-compiler to v2.5.20 - autoclosed Dec 11, 2018
@renovate renovate bot closed this Dec 11, 2018
@renovate renovate bot deleted the renovate/vue-template-compiler-2.x branch December 11, 2018 10:55
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.

3 participants