An in-range update of vue is breaking the build π¨
greenkeeper opened this issue Β· 5 comments
Version 2.4.0 of vue just got published.
Branch | Build failing π¨ |
---|---|
Dependency | vue |
Current Version | 2.3.4 |
Type | dependency |
This version is covered by your current version range and after updating it in your project the build failed.
vue is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you itβs very likely also breaking them.
I recommend you give this issue a very high priority. Iβm sure you can resolve this πͺ
Status Details
Commits
The new version differs by 143 commits ahead by 143, behind by 3.
ac3d1ea
build: release 2.4.0
1bdea82
build: build 2.4.0
529e3db
build: update build script
e0ca894
test: improve coverage
92a5e93
build: update release note script
086e6d9
fix: handle arrays in v-on object syntax
dc1bca1
chore: document new ssr methods in vue-template-compiler
67fe6cb
test: use latest mobile browsers on saucelabs
e761573
perf: remove src directory from npm module (#6072)
754e041
remove references to gitter; use chat.vuejs.org for discourse (#6084)
485e740
test: make tests pass in IE
91deb4f
fix: multiple merged vnode hooks not invoked properly
6bf9772
feat(ssr): inheritAttrs support in SSR
1bf98b0
test: adjust transition tests for firefox
606666d
test: fix Object.prototype.watch related warnings
There are 143 commits in total.
See the full diff
Not sure how things should work exactly?
There is a collection of frequently asked questions and of course you may always ask my humans.
Your Greenkeeper Bot π΄
After pinning to 2.3.4 your tests are passing again. Downgrade this dependency π.
Version 2.4.1 just got published.
Your tests are passing again with this version. Explicitly upgrade to this version π
Version 2.4.2 just got published.
Your tests are passing again with this version. Explicitly upgrade to this version π
Release Notes
v2.4.2Bug Fixes
- v-on: revert component root data.on/data.nativeOn behavior for 1713061, closes #6109
- checkbox v-model="array" ignore false-value (#6180) 3d14e85, closes #6178
- compile: properly generate comments with special character (#6156) d03fa26, closes #6150
- parser: only ignore the first newline in
<pre>
082fc39, closes #6146 - provide/inject: merge provide properly from mixins 3036551, closes #6175
- provide/inject: resolve inject properly from mixins (#6107) b0f00e3, closes #6093
- transition: should trigger transition hooks for v-show in ie9 9b4dbba, closes #5525
- v-bind: respect .prop modifier on components (#6159) 06b9b0b
- v-model: use stricter check for
<select>
option update c70addf, closes #6112 - ensure looseEqual is not dependant on key enumeration order a8ac129, closes #5908
- include boolean in isPrimitive check (#6127) be3dc9c, closes #6126
- work around IE/Edge bug when accessing document.activeElement from iframe fc3d7cd, closes #6157
Improvements
Reverts
Commits
The new version differs by 21 commits.
b8f1bcd
build: release 2.4.2
fd68195
build: build 2.4.2
f104b84
build: tweak release note file default name
ec4b1be
revert: perf: remove src directory from npm module (#6072)
3d14e85
fix: checkbox v-model="array" ignore false-value (#6180)
3036551
fix(provide/inject): merge provide properly from mixins
fc3d7cd
fix: work around IE/Edge bug when accessing document.activeElement from iframe
eb9168c
feat: warn when assigning to computed property with no setter
a8ac129
fix: ensure looseEqual is not dependant on key enumeration order
9b4dbba
fix(transition): should trigger transition hooks for v-show in ie9
082fc39
fix(parser): only ignore the first newline in
1713061
fix(v-on): revert component root data.on/data.nativeOn behavior for
06b9b0b
fix(v-bind): respect .prop modifier on components (#6159)
d03fa26
fix(compile): properly generate comments with special character (#6156)
b0f00e3
fix(provide/inject): resolve inject properly from mixins (#6107)
There are 21 commits in total.
See the full diff
Version 2.4.3 just got published.
Your tests are passing again with this version. Explicitly upgrade to this version π
Release Notes
v2.4.3Bug Fixes
- directive: should invoke unbind & inserted on inner component root element change 538ad20, closes #6513
- inject: exclude not enumerable keys of inject object (#6346) 3ee62fd, closes #6574
- provide: provide should default to parentVal during merging (#6473) 3c21675, closes #6436
- ssr: address possible xss vector 5091e2c
- vdom: avoid diff de-opt when both head/tail are different 230c6ae, closes #6502
- $off should ignore undefined handler argument fa6a729, closes #6591
- ssr: better handle v-html hydration 0f00f8f, closes #6519
- ssr: expose context.styles when no lifecycle styles are injected 1f52a2a, closes #6353
- ssr: fix cachedEscape memory issue 02f8b80, closes #6332
- ssr: handle v-text/v-html with non-string value 09106f0, closes #6572
- ssr: should also escape static text content 172dbf9, closes #6345
- transition: consider async placeholder as valid child to return (#6369) a43d667, closes #6256
- types: add
inject
option in functional component options type (#6530) 1baa0a7 - types: allow variadic plugin use (#6363) 38d5218, closes #6357
- v-model: Allow using array value with array v-model in checkboxes (#6220) d6e6f1d, closes #6219
- v-model: avoid unnecessary change event on select options change d4d553c, closes #6193
- v-model: fix input listener with modifier blocking v-model update 6f312d6, closes #6552
- vdom: Don't replace input for text-like type change (#6344) f76d16e, closes #6313
- computed properties should not be cached during SSR 06741f3
- deep clone slot vnodes on re-render 0529040, closes #6372
- do not use MutationObserver in IE11 844a540, closes #6466
- ensure $attrs and $listeners are always objects (#6441) 59dbd4a, closes #6263
- ensure outer bindings on nested HOC are properly re-applied on inner root element change a744497
- handle special case for allowfullscreen on d77b953, closes #6202
- inherit SVG ns on component root node (#6511) 89f0d29, closes #6506
- preserve slot attribute if not resolved by Vue 684cd7d, closes #6553
- set value as domProp for 7116af4, closes #6561
- support prop type checking for primitive wrapper objects (#6450) 679cd1f, closes #6447
Commits
The new version differs by 100 commits.
0a7ffb1
build: release 2.4.3
ef432c6
build: build 2.4.3
c8564ab
refactor: tweak dependArray change
fa6a729
fix: $off should ignore undefined handler argument
1c86b9e
chore: ignore code that cannot be reached in PhantomJS
1baa0a7
fix(types): add
inject
option in functional component options type (#6530)aa820cb
perf(core): prevent iteration of arrays that should not be observable (#6467)
3ee62fd
fix(inject): exclude not enumerable keys of inject object (#6346)
1f52a2a
fix(ssr): expose context.styles when no lifecycle styles are injected
09106f0
fix(ssr): handle v-text/v-html with non-string value
7116af4
fix: set value as domProp for
684cd7d
fix: preserve slot attribute if not resolved by Vue
844a540
fix: do not use MutationObserver in IE11
6f312d6
fix(v-model): fix input listener with modifier blocking v-model update
a977740
chore: update backers.md for tiered open collective sponsors
There are 100 commits in total.
See the full diff
Version 2.4.4 just got published.
Your tests are passing again with this version. Explicitly upgrade to this version π
Release Notes
v2.4.4Bug Fixes
Commits
The new version differs by 108 commits.
94512f3
build: release 2.4.4
a32490f
build: build 2.4.4
a2f73f2
fix(ssr): fix style injection regression
0c9534f
fix(ssr): fix bundleRenderer Promise rejection regression
5376dab
chore: fix bronze sponsors
ed88ac4
docs(packages): fix syntax (#6600)
7cea42b
chore: re-organize backers.md
4504caf
chore: re-organize README
0a7ffb1
build: release 2.4.3
ef432c6
build: build 2.4.3
c8564ab
refactor: tweak dependArray change
fa6a729
fix: $off should ignore undefined handler argument
1c86b9e
chore: ignore code that cannot be reached in PhantomJS
1baa0a7
fix(types): add
inject
option in functional component options type (#6530)aa820cb
perf(core): prevent iteration of arrays that should not be observable (#6467)
There are 108 commits in total.
See the full diff