rsksmart / 2wp-app

MIT License
12 stars 15 forks source link

build(deps-dev): bump vue-facing-decorator from 2.1.20 to 3.0.4 #871

Closed dependabot[bot] closed 2 weeks ago

dependabot[bot] commented 2 weeks ago

Bumps vue-facing-decorator from 2.1.20 to 3.0.4.

Release notes

Sourced from vue-facing-decorator's releases.

v3.0.4

What's Changed

v3.0.3

@Component({
    methods: {
        foo() {
    }
}

})
class MyComponent extends Vue {

}

v3.0.0

Description

In v3.0.0, v-f-d is compatible with both decorators API stage 3 and stage 2 now.

Decorators API stage 3

To enable this, you need to update TypeScript to 5.x and set compilerOptions.experimentalDecorators to false (value true for stage 2).

Currently some vue libraries(e.g. Volar) may not compatible with TypeScript 5.x.

Breaking changes

Cast class component to vue options API

Using toNative to cast a class component to vue options API, after that, the casted component could be used as a native vue component in where vue accepts it.

Currently toNative is not necessary, because v-f-d use a vue internal API, but it is not stable and may missing in the future vue versions. So toNative is recommended.

@Component
export class MyComp extends Vue{}
export default toNative(MyComp)

//Code also works currently:
@​Component
export default class MyComp extends Vue{}

... (truncated)

Commits
  • cb8c1fe v3.0.4
  • 3954c58 Merge pull request #82 from reedsy/emit-undefined
  • ad701ee Merge pull request #81 from reedsy/reactive-provide
  • b8ea646 docs
  • da77328 v3.0.3
  • 9374270 component option methods
  • a41aa9b Merge pull request #87 from tall1on/master
  • 891ad52 + correctly expose "methods"-option to recover compatibility to vue-class-com...
  • f60e9d3 + correctly expose "methods"-option to recover compatibility to vue-class-com...
  • d45a6b8 + correctly expose "methods"-option to recover compatibility to vue-class-com...
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
github-actions[bot] commented 2 weeks ago

Dependency Review

✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

PackageVersionScoreDetails
npm/vue-facing-decorator 3.0.4 UnknownUnknown
npm/vue-facing-decorator ^3.0.4 UnknownUnknown

Scanned Files

dependabot[bot] commented 2 weeks ago

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.