Skip to content
This repository was archived by the owner on May 20, 2021. It is now read-only.

chore(deps): update vue monorepo#36

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/vue-monorepo
Open

chore(deps): update vue monorepo#36
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/vue-monorepo

Conversation

@renovate
Copy link
Copy Markdown

@renovate renovate bot commented Sep 8, 2020

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@vue/cli-plugin-e2e-cypress 4.5.4 -> 4.5.13 age adoption passing confidence
@vue/cli-plugin-typescript 4.5.4 -> 4.5.13 age adoption passing confidence
@vue/cli-plugin-unit-jest 4.5.4 -> 4.5.13 age adoption passing confidence
@vue/cli-service (source) 4.5.4 -> 4.5.13 age adoption passing confidence
@vue/test-utils 1.0.0-beta.29 -> 1.2.0 age adoption passing confidence
vue 2.6.10 -> 2.6.12 age adoption passing confidence
vue-class-component 7.1.0 -> 7.2.6 age adoption passing confidence
vue-router 3.0.7 -> 3.5.1 age adoption passing confidence
vue-template-compiler 2.6.10 -> 2.6.12 age adoption passing confidence

Release Notes

vuejs/vue-cli

v4.5.13

Compare Source

🐛 Bug Fix
Others
Committers: 3

v4.5.12

Compare Source

  • bump vue-codemod to work around an NPM hoisting bug
  • bump minimum required JSX preset / plugin versions, fixes vuejs/jsx#​183
  • bump default typescript version to 4.1 and prettier version to 2.x for new projects, fixes #​6299

v4.5.11

Compare Source

🐛 Bug Fix
Committers: 1

v4.5.10

Compare Source

🐛 Bug Fix
  • @vue/cli-plugin-unit-mocha
  • @vue/cli-plugin-unit-mocha, @vue/cli-service
  • @vue/cli-ui
  • @vue/cli-service-global, @vue/cli-service
Committers: 3

v4.5.9

Compare Source

🚀 New Features
Committers: 1

v4.5.8

Compare Source

🐛 Bug Fix
Committers: 2

v4.5.7

Compare Source

🐛 Bug Fix
  • @vue/cli-plugin-babel, @vue/cli-plugin-typescript, @vue/cli-service
  • @vue/cli
  • @vue/cli-plugin-pwa, @vue/cli-service
📝 Documentation
Committers: 4

v4.5.6

Compare Source

🐛 Bug Fix
Committers: 1

v4.5.5

Compare Source

🐛 Bug Fix
🏠 Internal
  • @vue/cli-ui
    • #​3687 perf(ui): improve get folder list to use Promises instead of sync (@​pikax)
🔨 Underlying Tools
  • @vue/babel-preset-app
Committers: 8
vuejs/vue-test-utils

v1.2.0

Compare Source

Features

  • feat(stubs): render function props deterministically (#​1834). Note: this may break some snapshots of shallow mounted functional components.

Fixes

  • fix: correctly find functional components (#​1835)
  • fix: trigger keyboard event regression (#​1826)

v1.1.4

Compare Source

Feat

Fixes

  • trigger('focus') added natural to jsdom behavior (#​1777)
  • fix max range stack size (f#​1768)
  • VTU don't return key property to event when use trigger.('eventName.key') #​1808
  • allow find stubbed functional component by name (#​1817)

Types

  • add type definitions for ExtendedVue (#​1789)

v1.1.3

Compare Source

Bug Fixes

v1.1.2

Compare Source

Fixes

v1.1.1

Compare Source

Many small bug fixes.

Features

Fixes

v1.1.0

Compare Source

This is a pretty significant release. We undeprecated is and isVisible due to popular demand.

Features

Fixes

Sync mode cleanup (#​1671) @​AtofStryker

v1.0.5

Compare Source

Bug Fixes
  • extend Vue parent with options to support accessing root. with VCA (#​1661) (f78f817)
  • handle shallowMount on components with v-if and scoped slots (#​1663) (41f2b2b)

v1.0.4

Compare Source

Bug Fixes

v1.0.3

Compare Source

This is a small release, mainly to improve the deprecation messages.

Bugfix/improvements

fix #​1541: Improve deprecation messages (#​1548)
fix: added missing import of the Cheerio type (fix #​1526) (#​1527)
fix: Add attachToDocument conditional deprecation message, (#​1546)
fix: Sync docs with v1.0 (#​1538)

v1.0.2

Compare Source

Note: Version bump only for package vue-test-utils

v1.0.1

Compare Source

v1.0.0

Compare Source

Features

v1.0.0-beta.33

Compare Source

Bug Fixes
Features

v1.0.0-beta.32

Compare Source

Bug Fixes

v1.0.0-beta.31

Compare Source

Bug Fixes
Features

v1.0.0-beta.30

Compare Source

Bug Fixes
Code Refactoring
Features
BREAKING CHANGES
  • html output will now be formatted
  • render and renderToString are now async
    • Remove sync mode
  • Remove TransitionStub
  • Remove Transition
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
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
vuejs/vue-router

v3.5.1

Compare Source

Bug Fixes

v3.5.0

Compare Source

Features

3.4.9 (2020-11-05)

Bug Fixes

3.4.8 (2020-10-26)

Features

3.4.7 (2020-10-16)

Bug Fixes

3.4.6 (2020-10-07)

Bug Fixes

3.4.5 (2020-09-26)

Bug Fixes
  • history: do not call onReady on initial redirection (a1a290e), closes #​3331

3.4.4 (2020-09-24)

Bug Fixes
Features
  • history: Reset history.current when all apps are destroyed (#​3298) (c69ff7b)

3.4.3 (2020-08-11)

  • Revert 4fbaa9f: "fix: keep repeated params in query/hash relative locations" Closes #​3289

3.4.2 (2020-08-07)

Bug Fixes
  • query: leave object as is (7b3328d), closes #​3282
  • keep repeated params in query/hash relative locations (4fbaa9f)

3.4.1 (2020-08-06)

Bug Fixes
  • query: remove undefined values (b952573), closes #​3276
  • router: properly check null and undefined in isSameRoute (d6546d9)

v3.4.9

Compare Source

Bug Fixes

v3.4.8

Compare Source

Features

v3.4.7

Compare Source

Bug Fixes

v3.4.6

Compare Source

Bug Fixes

v3.4.5

Compare Source

Bug Fixes
  • history: do not call onReady on initial redirection (a1a290e), closes #​3331

v3.4.4

Compare Source

Bug Fixes
Features
  • history: Reset history.current when all apps are destroyed (#​3298) (c69ff7b)

v3.4.3

Compare Source

  • Revert 4fbaa9f: "fix: keep repeated params in query/hash relative locations" Closes #​3289

v3.4.2

Compare Source

Bug Fixes
  • query: leave object as is (7b3328d), closes #​3282
  • keep repeated params in query/hash relative locations (4fbaa9f)

v3.4.1

Compare Source

Bug Fixes
  • query: remove undefined values (b952573), closes #​3276
  • router: properly check null and undefined in isSameRoute (d6546d9)

v3.4.0

Compare Source

Bug Fixes
Features

3.3.4 (2020-06-13)

Bug Fixes

3.3.3 (2020-06-12)

Bug Fixes
Features

3.3.2 (2020-05-29)

Bug Fixes

3.3.1 (2020-05-27)

Bug Fixes
  • errors: avoid unnecessary log of errors (2c77247)

v3.3.4

Compare Source

Bug Fixes

v3.3.3

Compare Source

Bug Fixes
Features

v3.3.2

Compare Source

Bug Fixes

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 requested a review from mehrad-rafigh September 8, 2020 14:15
@renovate renovate bot force-pushed the renovate/vue-monorepo branch 4 times, most recently from 9bef3b3 to 99a04d2 Compare September 10, 2020 13:38
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from 99a04d2 to 771220e Compare September 17, 2020 12:24
@renovate renovate bot force-pushed the renovate/vue-monorepo branch 3 times, most recently from 00b518c to e83c7c8 Compare September 26, 2020 19:43
@renovate renovate bot force-pushed the renovate/vue-monorepo branch 2 times, most recently from 09fc302 to 7d47013 Compare October 7, 2020 13:31
@renovate renovate bot force-pushed the renovate/vue-monorepo branch 2 times, most recently from c6bbd38 to eb2fa9a Compare October 19, 2020 10:46
@renovate renovate bot force-pushed the renovate/vue-monorepo branch 2 times, most recently from 3bdad86 to 6b18f1a Compare November 1, 2020 00:41
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from 6b18f1a to f08a6bd Compare November 5, 2020 21:20
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from f08a6bd to 3a484b1 Compare November 17, 2020 06:56
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from 3a484b1 to 0a903f6 Compare January 7, 2021 16:49
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from 0a903f6 to ef77a19 Compare January 24, 2021 09:52
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from ef77a19 to b967af6 Compare February 1, 2021 09:59
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from b967af6 to b9bd9b8 Compare February 9, 2021 08:58
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from b9bd9b8 to 2713c23 Compare April 26, 2021 17:16
@renovate renovate bot force-pushed the renovate/vue-monorepo branch 2 times, most recently from d4b38fc to 5de4f7c Compare May 12, 2021 18:45
@renovate renovate bot force-pushed the renovate/vue-monorepo branch from 5de4f7c to e2445e1 Compare May 17, 2021 10:54
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