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

[Snyk] Upgrade vue-class-component from 7.2.3 to 7.2.6 #58

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

Conversation

JuanJTorres11
Copy link
Owner

This PR was automatically created by Snyk using the credentials of a real user.


Snyk has created this PR to upgrade vue-class-component from 7.2.3 to 7.2.6.

ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


  • The recommended version is 3 versions ahead of your current version.
  • The recommended version was released 4 years ago, on 2020-09-17.
Release notes
Package name: vue-class-component
  • 7.2.6 - 2020-09-17

    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.

      Component
      class GenricComponent<T> extends Vue {
      value: T
      }

      // Specify the generic parameter by extending it
      @Component
      class SpecialComponent extends GenericComponent<string> {}

      // Use the specified one as a mixin
      @Component
      class MyComp extends mixins(SpecialComponent) {
      // ...
      }

  • 7.2.5 - 2020-07-23

    Bug Fixes

    • make mixins declaration backward compatible (#436) (491a1b1)
  • 7.2.4 - 2020-07-20

    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)
  • 7.2.3 - 2020-02-13
from vue-class-component GitHub release notes
Commit messages
Package name: vue-class-component
  • a094dff [release] 7.2.6
  • 2f93aea [build] 7.2.6
  • bdcec69 fix: make mixins helper type compatible with previous usage (#454)
  • bb3c645 docs: refer to contribution guideline in readme
  • b1176e4 docs: create contribution guideline
  • 7f17ca6 docs: add a guide to annotate component type in decorator (#450)
  • a9739d2 build(deps): bump http-proxy from 1.18.0 to 1.18.1 (#443)
  • e48dd93 build(deps): bump prismjs from 1.18.0 to 1.21.0 (#438)
  • f6f482b build(deps): bump elliptic from 6.4.1 to 6.5.3 (#437)
  • 7a07c2b [release] 7.2.5
  • 7af1e4e [build] 7.2.5
  • 491a1b1 fix: make mixins declaration backward compatible (#436)
  • 9fa8b42 [release] 7.2.4
  • 3e9d9c7 [build] 7.2.4
  • f02fa0e fix: allow accessing vue-router properties in property initializers (#434)
  • 4c7f651 fix: support any number of args on mixins helper (#433)
  • 59d1dd4 build(deps): bump lodash from 4.17.15 to 4.17.19 (#431)
  • a984a54 build(deps): bump websocket-extensions from 0.1.3 to 0.1.4 (#427)
  • 74f65f6 chore: setup Gitpod (#422)
  • 70ed762 feat: mark as side effect free to enable efficient tree-shaking (#423)
  • c81b0d5 docs: Fixes typo (#405)
  • d18680c build(deps): bump acorn from 6.4.0 to 6.4.1 (#404)
  • 1b3edbf docs: script in overview should be JaveScript

Compare


Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

🧐 View latest project report

🛠 Adjust upgrade PR settings

🔕 Ignore this dependency or unsubscribe from future upgrade PRs

Copy link

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarCloud

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.

2 participants