Skip to content
This repository has been archived by the owner on Jan 15, 2021. It is now read-only.

chore(deps): update all non-major dependencies #28

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Mar 6, 2019

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
typescript (source) ^2.8.1 -> ^2.9.2 age adoption passing confidence
vue ^2.5.16 -> ^2.6.12 age adoption passing confidence
vue-class-component ^7.0.1 -> ^7.2.6 age adoption passing confidence
vuex ^3.0.1 -> ^3.6.0 age adoption passing confidence
vuex-class ^0.3.1 -> ^0.3.2 age adoption passing confidence

Release Notes

Microsoft/TypeScript

v2.9.2

Compare Source

This release include a set of bug fixes reported against TypeScript 2.9.1. For the complete list of fixed issues, check out the fixed issues query for TypeScript 2.9.2.

Download:

v2.9.1

Compare Source

For release notes, check out the release announcement

For new features, check out the What's new in TypeScript 2.9.

For breaking changes, check out the Breaking changes in TypeScript 2.9 page.

For the complete list of fixed issues, check out the issues fixed in TypeScript 2.9 RC and after TypeScript 2.9 RC.

Download:

Special thanks to all contributors to this release:

  • Aditya Daflapurkar
  • Adrien Gibrat
  • Alan Agius
  • Alex Khomchenko
  • Alex Ryan
  • Alexander Tarasyuk
  • Anders Hejlsberg
  • Andrew Casey
  • Andrew Faulkner
  • Andy Hanson
  • Armando Aguirre
  • Artem Tyurin
  • Arthur Ozga
  • Benjamin Lichtman
  • @​bluelovers
  • Bowden Kenny
  • Brandon Slade
  • Daniel Rosenwasser
  • Derek P Sifford
  • Dhruv Rajvanshi
  • Ecole Keine
  • @​falsandtru
  • Holger Jeromin
  • Jack Williams
  • Jordi Oliveras Rovira
  • Joscha Feth
  • Josh Goldberg
  • Kevin Donnelly
  • Khải
  • Klaus Meinhardt
  • Maarten Sijm
  • Matt Bierner
  • Mine Starks
  • Mohamed Hegazy
  • Nathan Shively-Sanders
  • Paul Koerbitz
  • @​rhysd
  • Ron Buckton
  • Ryan Cavanaugh
  • Sheetal Nandi
  • @​TravCav
  • Vakhurin Sergey
  • Wenlu Wang
  • Wesley Wigham
  • @​Zzzen

v2.8.4

Compare Source

This release include a set of bug fixes reported against TypeScript 2.8.3. For the complete list of fixed issues, check out the fixed issues query for TypeScript 2.8.4.

Download:

v2.8.3

Compare Source

This release include a set of bug fixes reported against TypeScript 2.8.1. For the complete list of fixed issues, check out the fixed issues query for TypeScript 2.8.3.

Download:

vuejs/vue

v2.6.12

Compare Source

v2.6.11

Compare Source

Security Fixes
  • Bump vue-server-renderer's dependency of serialize-javascript to 2.1.2
Bug Fixes

v2.6.10

Compare Source

Bug Fixes

v2.6.9

Compare Source

Bug Fixes

v2.6.8

Compare Source

Bug Fixes

v2.6.7

Compare Source

Bug Fixes

v2.6.6

Compare Source

Bug Fixes
  • ensure scoped slot containing passed down slot content updates properly 21fca2f
  • fix keyCode check for Chrome autofill fake key events 29c348f, closes #​9441

v2.6.5

Compare Source

Bug Fixes
  • allow passing multiple arguments to scoped slot e7d49cd, closes #​9468
  • bail out of event blocking for iOS bug 0bad7e2, closes #​9462
  • do not cache scoped slots when mixed with normal slots 060686d

v2.6.4

Compare Source

Performance Improvements
  • cache result from functional ctx.slots() calls 7a0dfd0
  • skip scoped slots normalization when possible 099f3ba
Bug Fixes
  • avoid breaking avoriaz edge case 9011b83
  • avoid logging same error twice when thrown by user in global handler ca57920, closes #​9445
  • empty scoped slot should return undefined 57bc80a, closes #​9452
  • expose v-slot slots without scope on this.$slots 0e8560d, closes #​9421 #​9458
  • new syntax slots without scope should also be exposed on functional slots() 8a80086

v2.6.3

Compare Source

Bug Fixes
Reverts
  • revert: expose all scoped slots on this.$slots d5ade28

v2.6.2

Compare Source

Improvements
  • Reverted in 2.6.3 expose all scoped slots on this.$slots. 0129b0e, closes #​9421
Bug Fixes
  • always set transformed model value on attrs b034abf (Fixes v-select issue in Vuetify)
  • restore slot-scope + v-if behavior 44a4ca3, closes #​9422

v2.6.1

Compare Source

Bug Fixes

v2.6.0

Compare Source

##### [Announcement Blog Post](https://medium.com/the-vue-point/vue-2-6-released-66aa6c8e785e) ##### Contributors

@​gzzhanghao, @​mathieutu, @​Justineo, @​shortdiv, @​imzyf, @​youngrok, @​enkot, @​posva, @​utatti, @​Akryum, @​ferdaber, @​ktsn, @​mymyoux, @​sodatea, @​hikerpig, @​hirokiosame, @​AlexMaguey

Features
Performance Improvements
Important Internal Changes

These internal changes may cause unintended side effects on existing code that relies on non-publicly-documented behavior.

Bug Fixes

v2.5.22

Compare Source

Bug Fixes

v2.5.21

Compare Source

Bug Fixes
Performance Improvements
  • skip normalization on single child element v-for 4074104

v2.5.20

Compare Source

Bug Fixes

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
vuejs/vue-class-component

v7.2.6

Compare Source

Bug Fixes
  • make mixins helper type compatible with previous usage (#​454) (bdcec69)

    This is a fix to retain backward compatibility to the old mixins type. Although it is recommended not to manually specify mixin types via the type parameters of mixins. e.g.

    // NOT recommended
    @​Component
    class MyComp extends mixins<Foo & Bar>(Foo, Bar) {
      // ...
    }

    Because you can pass any type to the parameter even if it is not matched with the actual mixin structure.

    If you want to specify a generic type parameter for your class component, you can extend it before passing in mixins helper.

    @&#8203;Component
    class GenricComponent<T> extends Vue {
      value: T
    }
    
    // Specify the generic parameter by extending it
    @&#8203;Component
    class SpecialComponent extends GenericComponent<string> {}
    
    // Use the specified one as a mixin
    @&#8203;Component
    class MyComp extends mixins(SpecialComponent) {
      // ...
    }

v7.2.5

Compare Source

Bug Fixes

v7.2.4

Compare Source

Bug Fixes
  • allow accessing vue-router properties in property initializers (#​434) (f02fa0e)
  • support any number of args on mixins helper (#​433) (4c7f651)
Features
  • mark as side effect free to enable efficient tree-shaking (#​423) (70ed762)

v7.2.3

Compare Source

Improvement
  • add vue to peerDependencies for yarn v2 (#​396)

v7.2.2

Compare Source

Bug Fixes

v7.2.1

Compare Source

Bug Fixes
  • Disabled lifecycle IntelliSense support by default to avoid possible breakage of existing components (#​386) (d54490b).

    To enable IntelliSense support, please load vue-class-component/hooks wherever inside your project code:

    // main.ts
    import 'vue-class-component/hooks'
    import Vue from 'vue'
    import App from './App.vue'
    
    new Vue({
      render: h => h(App)
    }).$mount('#app')

    For details about this change, see the pull request.

v7.2.0

Compare Source

Bug Fixes
  • check reflectionIsSupported in decorator runtime (#​350) (2fc6ab5)
Features

v7.1.0

Compare Source

Features
  • Provides ESModule bundle

v7.0.2

Compare Source

Bug Fixes
vuejs/vuex

v3.6.0

Compare Source

Bug Fixes
Features

3.5.1 (2020-06-29)

Bug Fixes

v3.5.1

Compare Source

Bug Fixes

v3.5.0

Compare Source

Features

v3.4.0

Compare Source

Features

v3.3.0

Compare Source

Bug Fixes
Features

v3.2.0

Compare Source

Features

3.1.3 (2020-03-09)

Bug Fixes

3.1.2 (2019-11-10)

Bug Fixes
Performance Improvements
  • Implementing a cache for the gettersProxy object creation (#​1546) (4003382)

3.1.1 (2019-05-08)

Bug Fixes
Features

v3.1.3

Compare Source

Bug Fixes

v3.1.2

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 you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 force-pushed the renovate/all-minor-patch branch 3 times, most recently from 9f1b893 to d7a4eaf Compare March 20, 2019 06:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d7a4eaf to 5a13840 Compare March 25, 2019 12:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5a13840 to 6548d3e Compare May 12, 2019 12:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6548d3e to e266722 Compare November 11, 2019 06:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e266722 to 616cb65 Compare December 14, 2019 19:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 616cb65 to d5c9c65 Compare January 18, 2020 19:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d5c9c65 to 894ae5e Compare March 14, 2020 10:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 894ae5e to c651ebc Compare April 28, 2020 04:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c651ebc to 8bd7243 Compare May 15, 2020 17:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8bd7243 to b80a048 Compare July 1, 2020 19:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b80a048 to 1e87da9 Compare August 26, 2020 03:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1e87da9 to 2a4bb65 Compare October 26, 2020 06:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2a4bb65 to 3f1511e Compare November 28, 2020 18:55
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.

1 participant