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

Update vue to the latest version 🚀 #135

Closed
wants to merge 1 commit into from

Conversation

greenkeeper[bot]
Copy link

@greenkeeper greenkeeper bot commented Nov 3, 2017

Version 2.5.3 of vue was just published.

Dependency vue
Current Version 2.5.2
Type dependency

The version 2.5.3 is not covered by your current version range.

If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of vue.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


Release Notes v2.5.3

Notable update: Type compatibility with TS 2.6

Bug Fixes

  • core: static trees should be cached on options (#6826) (#6837) b6c384d
  • core: $set should respect properties on prototype chain 83ed926, closes #6845
  • core: also clone component slot children during deepClone 1cf02ef, closes #6891 #6915
  • core: properly mark slot rendered flag in production mode 4fe1a95, closes #6997
  • core: clean up target variables to avoid memory leaks (#6932) c355319, closes #6931
  • core: properly handle nested named slot passing 5a9da95, closes #6996
  • core: properly $off array of events (#6949) c24f3e4
  • ssr: properly render <select v-model> initial state e1657fd, closes #6986
  • ssr: properly render textarea value 79c0d7b, closes #6986
  • ssr: should not optimize root if conditions 4ad9a56, closes #6907
  • types: improve typing for better completion (#6886) 98ea0a3
  • types: relax $options type for TS2.6+ (#6819) 9caed00
  • keep-alive: higher priority for exclude than include (#6905) 604230f
  • v-model: correctly set select v-model initial value on patch (#6910) 58a39df
  • v-model: v-if / v-else not working with :type + v-model (#6955) 0c703e3, closes #6918
  • weex: stop trim css units in richtext component (#6927) 8a784d8
  • quirks: special case for static muted attribute in firefox f2e00f7, closes #6887
  • quirks: handle encoded tabs and newlines in attributes for Chrome a[href] and IE/Edge cfd73c2, closes #6828 #6916
Commits

The new version differs by 33 commits.

  • 2acc12c build: release 2.5.3
  • 015a318 build: build 2.5.3
  • ad673e1 chore: fix flow
  • 5a9da95 fix(slots): properly handle nested named slot passing
  • 4fe1a95 fix: properly mark slot rendered flag in production mode
  • e1657fd fix(ssr): properly render initial state e80104e refactor: minor tweak on conditions order (#6992) 79c0d7b fix(ssr): properly render textarea value 53b77f8 refactor: simplify mergeVNodeHook usage 664cee6 refactor: small tweak to #6910 58a39df fix(model): correctly set select v-model initial value on patch (#6910) 0c703e3 fix(v-model): v-if / v-else not working with :type + v-model (#6955) bdcc05a chore: fix creative Tim missing from the sponsors list (#6939) c24f3e4 fix(events): properly $off array of events (#6949) f2e00f7 fix: special case for static muted attribute in firefox

    There are 33 commits in total.
    See the full diff

FAQ and help

There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


Your Greenkeeper bot 🌴

greenkeeper bot added a commit that referenced this pull request Nov 16, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Nov 16, 2017

Version 2.5.4 just got published.

Update to this version instead 🚀

Release Notes v2.5.4

Bug Fixes

  • core: clone slot nodes for render function usage as well 13196b2, closes #7041
  • v-on: normlaize @click.right and @click.middle daed1e7, closes #7020
  • ssr: should warn unknown components during hydration df82aeb, closes #6998
  • ssr: ensure hydrated class & style bindings are reactive 5db86b4, closes #7063
  • transition: fix out-in transition getting stuck with v-if (#7023) 45d7ba8, closes #7023 #6687
  • types: expose VueConstructor (#7002) 267ada0
  • weex: donot rethrow the captured error on weex platform (#7024) c2b1cfe
Commits

The new version differs by 15 commits.

  • a2cd14c build: release 2.5.4
  • 9edcc6b build: build 2.5.4
  • 5db86b4 fix(ssr): ensure hydrated class & style bindings are reactive
  • 6b79919 test: add test case for #6687 + fix lingering comment node
  • 45d7ba8 fix(transition): fix out-in transition getting stuck with v-if (#7023)
  • a3246fd chore: closing after chat (#7059)
  • 13196b2 fix: clone slot nodes for render fn usage as well
  • df82aeb fix: should warn unknown components during hydration
  • daed1e7 fix: normlaize @click.right and @click.middle
  • 7cf188e feat(weex): support batch update styles and attributes (#7046)
  • c2b1cfe fix(weex): donot rethrow the captured error on weex platform (#7024)
  • 0496115 chore: live link for Vue examples under 'Documentation' (#7026)
  • 9463ac8 test: fix weex tests
  • f0a66c5 refactor: cache v-once and purely static trees separately
  • 267ada0 fix(types): expose VueConstructor (#7002)

See the full diff

greenkeeper bot added a commit that referenced this pull request Nov 17, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Nov 17, 2017

Version 2.5.5 just got published.

Update to this version instead 🚀

Release Notes v2.5.5

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
Commits

The new version differs by 6 commits.

  • 06f121b build: release 2.5.5
  • 9ae75e5 build: build 2.5.5
  • 4d8226f fix: keep-alive should not cache anonymous components
  • 6d6b373 fix: should warn unknown components inside
  • f5cd29e fix: init _staticTrees to avoid runtime reference warning
  • 1e14603 feat: warn if both v-model and v-bind:value used on same element (#7056)

See the full diff

greenkeeper bot added a commit that referenced this pull request Nov 18, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Nov 18, 2017

Version 2.5.6 just got published.

Update to this version instead 🚀

Release Notes v2.5.6

Bug Fixes

  • fix v-model :value warning on custom component 59dea37, closes #7084
Commits

The new version differs by 3 commits.

  • b278120 build: release 2.5.6
  • 7f31ec9 build: build 2.5.6
  • 59dea37 fix: fix v-model :value warning on custom component

See the full diff

greenkeeper bot added a commit that referenced this pull request Nov 20, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Nov 20, 2017

Version 2.5.7 just got published.

Update to this version instead 🚀

Release Notes v2.5.7

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
Commits

The new version differs by 7 commits.

  • f9f7423 build: release 2.5.7
  • c0d03ab build: build 2.5.7
  • d891cd1 fix: improve error detector v-for identifier check
  • c264335 feat: feat: add warning for ambiguous combined usage of slot-scope and v-for
  • 4c22d1d fix: allow traversing reactive objects which are sealed (#7080)
  • 063acb7 fix(ssr): fix bundle renderer require path on windows (#7085)
  • a23b913 fix: fix include/exclude logic for anonymous components

See the full diff

greenkeeper bot added a commit that referenced this pull request Nov 21, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Nov 21, 2017

Version 2.5.8 just got published.

Update to this version instead 🚀

Commits

The new version differs by 3 commits.

  • b0bbcbd build: release 2.5.8
  • 0fdeae7 build: build 2.5.8
  • ebcef58 fix: fix v-for alias deconstruct regression

See the full diff

greenkeeper bot added a commit that referenced this pull request Nov 27, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Nov 27, 2017

Version 2.5.9 just got published.

Update to this version instead 🚀

Release Notes v2.5.9

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
Commits

The new version differs by 18 commits.

  • d4e0c3e build: release 2.5.9
  • 55a719c build: build 2.5.9
  • c865836 build: tweak release script to generate note before tagging
  • 1c1621d chore: fix flow
  • 0f7c443 fix: block unnecessary input event on textarea placeholder in IE
  • d2e1d49 fix(types): use object and string instead of Object and String (#7126)
  • a71e653 fix(types): bump ts version and fix typing bugs (#7135)
  • 8b43c81 ci: bump transition unit test duration
  • aa82625 fix: fix v-for iterator parsing destructuring + parens without index
  • 14e9908 fix(types): add missing ssr renderToString signature
  • df37292 chore: fix comment typo (#7113)
  • 70fb68b chore: fix comment typo
  • dd21eac fix: fix async component resolving in sibling mounted hook
  • 604e081 fix: ensure functionalContext is cloned during slot clones
  • 3932a45 fix(keep-alive): should not destroy active instance when pruning cache

There are 18 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Dec 12, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Dec 12, 2017

Version 2.5.10 just got published.

Update to this version instead 🚀

Release Notes v2.5.10

Bug Fixes

  • core: data() should be called with vm as first argument in mixins bd4819e, closes #7191
  • core: more consistent component naming warnings across the API 644274c, closes #7212
  • core: revert shared static tree cache to avoid memory leak 5875c7c, closes #7184
  • core: warn duplicate keys in all cases (#7200) 023f171, closes #7199
  • v-for: support array and nested destructuring in v-for f5ce6b5
  • v-model: should not update in-focus input value with lazy modifier 60da366, closes #7153
  • ssr: fix double escaping of ssrNode attribute values (#7224) 73a89bf, closes #7224 #7223
  • ssr: properly handle errors in async component 8936b8d, closes #6778
  • weex: send createFinish signal after root component mounted (#7154) 0da8bce
Commits

The new version differs by 17 commits.

  • a5924a5 build: release 2.5.10
  • 711aaf7 build: build 2.5.10
  • 8936b8d fix(ssr): properly handle errors in async component
  • 86e4d75 test: add test case for #7223
  • 73a89bf fix(ssr): fix double escaping of ssrNode attribute values (#7224)
  • 023f171 fix(core): warn duplicate keys in all cases (#7200)
  • 644274c fix: more consistent component naming warnings across the API
  • bd4819e fix: data() should be called with vm as first argument in mixins
  • 6eccd8e chore: update backers
  • 904d9c9 test: fix weex test case
  • 5875c7c fix: revert shared static tree cache to avoid memory leak
  • 0da8bce fix(weex): send createFinish signal after root component mounted (#7154)
  • 7166c4e chore: update sponsors
  • a6bf97d chore: tweak logo alt in README.md (#7156)
  • 60da366 fix: should not update in-focus input value with lazy modifier

There are 17 commits in total.

See the full diff

@greenkeeper
Copy link
Author

greenkeeper bot commented Dec 14, 2017

Version 2.5.11 just got published.

Update to this version instead 🚀

Commits

The new version differs by 8 commits.

  • 9c01684 build: release 2.5.11
  • 36efc76 build: build 2.5.11
  • 3f0c628 fix: avoid unnecessary lowercase coersion in component name validation
  • 90ed482 refactor: move prop rule validation to util/options.js
  • d02bb37 feat: warn misspelled keys on prop validation object (#7198)
  • 14f7015 test: fix ssr test due to webpack asset emit order change
  • 531371b types: upgrade flow
  • 4e00688 build: update dev dependencies

See the full diff

@greenkeeper greenkeeper bot closed this Dec 15, 2017
@greenkeeper greenkeeper bot deleted the greenkeeper/vue-2.5.3 branch December 15, 2017 19:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants