NuxtJS module for Stripe.js

Overview

@chantouchsek/nuxt-stripe

NuxtJS module for Stripe.js

@chantouchsek/nuxt-stripe @chantouchsek/nuxt-stripe @chantouchsek/nuxt-stripe

Table of contents

Features

  • Load Stripe.js only when required (once $stripe() is called)
  • Reuse the same instance across all components
  • Retry mechanism to bypass temporary network issues
  • TypeScript support

Setup

  1. Add @chantouchsek/nuxt-stripe dependency to your project:
npm install @chantouchsek/nuxt-stripe
  1. Add @chantouchsek/nuxt-stripe module and configuration to nuxt.config.js:
export default {
    modules: [
        // simple usage
        '@chantouchsek/nuxt-stripe',
        // with options
        ["@chantouchsek/nuxt-stripe", {
            publishableKey: 'YOUR_STRIPE_PUBLISHABLE_KEY',
            version: '2020-08-27',
            i18n: true,
        }]
    ],
    // .....option
    stripe: {
        publishableKey: 'YOUR_STRIPE_PUBLISHABLE_KEY',
        version: '2020-08-27',
        i18n: true,
    },
    // runtime config
    publicRuntimeConfig: {
        stripe: {
            publishableKey: 'YOUR_STRIPE_PUBLISHABLE_KEY',
            version: '2020-08-27',
            i18n: true,
        }
    }
}
  1. (Optional) TypeScript support. Add @chantouchsek/nuxt-stripe to the types section of tsconfig.json:
{
  "compilerOptions": {
    "types": [
      "@nuxt/types",
      "@chantouchsek/nuxt-stripe"
    ]
  }
}
  1. (Optional), If you need to support change stripe locale base i18n locale changed, just create a file in plugins/i18n.{js,ts}
import { Context, Inject } from '@nuxt/types/app'
import { getStripeInstance } from '@chantouchsek/nuxt-stripe'
import { CheckoutLocale, StripeElementLocale } from '@stripe/stripe-js'

export default function (ctx: Context, inject: Inject) {
    const {app} = ctx
    app.i18n.onLanguageSwitched = async (_, locale) => {
        const stripeLocale = locale as StripeElementLocale | CheckoutLocale
        const stripeInstance = await getStripeInstance(ctx, stripeLocale)
        inject('stripe', stripeInstance)
        ctx.app.stripe = stripeInstance
    }
}

And call it in nuxt.config.{js,ts}

export default {
    plugins: [
        '~/plugins/i18n',
    ]
}

Options

publishableKey

  • Type: String

Your Stripe's publishable key.

version

  • Type: String

Your Stripe's version.

i18n

  • Type: Boolean
  • Default: false

Enable i18n-module integration.

Usage

It can be used inside components like:

<template>
    <div>
        <div ref="stripeElements"/>
    </div>
</template>
export default {
    async mounted() {
        const stripe = await this.$stripe()
        const elements = stripe.elements()

        const card = elements.create('card')
        card.mount(this.$refs.stripeElements)
    }
}

Stripe: JavaScript SDK documentation & reference

License

See the License file for license rights and limitations (MIT).

Comments
  • fix(deps): bump @stripe/stripe-js from 1.19.1 to 1.45.0

    fix(deps): bump @stripe/stripe-js from 1.19.1 to 1.45.0

    Bumps @stripe/stripe-js from 1.19.1 to 1.45.0.

    Release notes

    Sourced from @​stripe/stripe-js's releases.

    v1.45.0

    New features

    • Add Link PRB types (#391)

    Changed

    • AE: Remove beta comments (#388)

    v1.44.1

    Changed

    • Fixes typo on payButton Element types (#383)

    v1.44.0

    New features

    • Add types for payButton element (#381)

    Changed

    • Bump minimist from 1.2.5 to 1.2.7 in /examples/parcel (#380)
    • Bump minimist from 1.2.5 to 1.2.7 in /examples/rollup (#379)
    • Bump minimatch from 3.0.4 to 3.1.2 in /examples/parcel (#377)
    • Bump minimatch from 3.0.4 to 3.1.2 (#375)
    • Bump minimatch from 3.0.4 to 3.1.2 in /examples/webpack (#376)
    • Bump minimatch from 3.0.4 to 3.1.2 in /examples/rollup (#378)

    v1.43.0

    Changed

    • add item_details (#374)
    • Bump minimist from 1.2.5 to 1.2.7 in /examples/webpack (#370)

    v1.42.1

    Updated types

    • Update types for PMM element (#369)
    • FIX: TS def XX_bank_account -> XX_bank_transfer (#346)

    v1.42.0

    ... (truncated)

    Commits

    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 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)
    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps-dev): bump typescript from 4.4.3 to 4.9.3

    chore(deps-dev): bump typescript from 4.4.3 to 4.9.3

    Bumps typescript from 4.4.3 to 4.9.3.

    Release notes

    Sourced from typescript's releases.

    TypeScript 4.8.4

    For release notes, check out the release announcement.

    For the complete list of fixed issues, check out the

    Downloads are available on:

    TypeScript 4.8.3

    For release notes, check out the release announcement.

    For the complete list of fixed issues, check out the

    Downloads are available on:

    TypeScript 4.8

    For release notes, check out the release announcement.

    For the complete list of fixed issues, check out the

    Downloads are available on:

    TypeScript 4.8 RC

    For release notes, check out the release announcement.

    ... (truncated)

    Commits

    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 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)
    dependencies javascript 
    opened by dependabot[bot] 1
  • fix(deps): bump @stripe/stripe-js from 1.19.1 to 1.44.1

    fix(deps): bump @stripe/stripe-js from 1.19.1 to 1.44.1

    Bumps @stripe/stripe-js from 1.19.1 to 1.44.1.

    Release notes

    Sourced from @​stripe/stripe-js's releases.

    v1.44.1

    Changed

    • Fixes typo on payButton Element types (#383)

    v1.44.0

    New features

    • Add types for payButton element (#381)

    Changed

    • Bump minimist from 1.2.5 to 1.2.7 in /examples/parcel (#380)
    • Bump minimist from 1.2.5 to 1.2.7 in /examples/rollup (#379)
    • Bump minimatch from 3.0.4 to 3.1.2 in /examples/parcel (#377)
    • Bump minimatch from 3.0.4 to 3.1.2 (#375)
    • Bump minimatch from 3.0.4 to 3.1.2 in /examples/webpack (#376)
    • Bump minimatch from 3.0.4 to 3.1.2 in /examples/rollup (#378)

    v1.43.0

    Changed

    • add item_details (#374)
    • Bump minimist from 1.2.5 to 1.2.7 in /examples/webpack (#370)

    v1.42.1

    Updated types

    • Update types for PMM element (#369)
    • FIX: TS def XX_bank_account -> XX_bank_transfer (#346)

    v1.42.0

    New features

    • Add cart actions (#366)

    v1.41.0

    Fixes

    • remove lae from stripeelement (#365)
    • manually bump version (#364)

    ... (truncated)

    Commits
    • 66b277c v1.44.1
    • a21793d Fix typo on payButton element types (#383)
    • dce249f v1.44.0
    • e815ae6 Bump minimist from 1.2.5 to 1.2.7 in /examples/parcel (#380)
    • da03281 Bump minimist from 1.2.5 to 1.2.7 in /examples/rollup (#379)
    • 84d41a3 Add types for payButton element (#381)
    • 87b5db1 Bump minimatch from 3.0.4 to 3.1.2 in /examples/parcel (#377)
    • b0388f2 Bump minimatch from 3.0.4 to 3.1.2 (#375)
    • 4296445 Bump minimatch from 3.0.4 to 3.1.2 in /examples/webpack (#376)
    • 5fadb45 Bump minimatch from 3.0.4 to 3.1.2 in /examples/rollup (#378)
    • Additional commits viewable in compare view
    Maintainer changes

    This version was pushed to npm by awalker-stripe, a new releaser for @​stripe/stripe-js since your current version.


    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 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)
    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps-dev): bump eslint-plugin-vue from 7.19.1 to 9.7.0

    chore(deps-dev): bump eslint-plugin-vue from 7.19.1 to 9.7.0

    Bumps eslint-plugin-vue from 7.19.1 to 9.7.0.

    Release notes

    Sourced from eslint-plugin-vue's releases.

    v9.7.0

    ✨ Enhancements

    ⚙️ Updates

    Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v9.6.0...v9.7.0

    v9.6.0

    ✨ Enhancements

    🐛 Bug Fixes

    Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v9.5.1...v9.6.0

    v9.5.1

    🐛 Bug Fixes

    Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v9.5.0...v9.5.1

    v9.5.0

    ✨ Enhancements

    ⚙️ Updates

    Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v9.4.0...v9.5.0

    Thanks @​dev1437, @​Amorites, @​acupofspirt for your contributions!

    ... (truncated)

    Commits
    • c64af6b 9.7.0
    • a4d37ff chore: update docs and fix tsc error
    • f5d700c Add vue/v-on-handler-style rule and deprecate vue/v-on-function-call rule...
    • 2c1ba8c Add example for rule vue/no-restricted-static-attribute (#2021)
    • edb7ec5 Update extension rule descriptions
    • 702e362 Fix irregular whitespace (#2017)
    • b41379b Update links from v3.vuejs.org to vuejs.org (#2015)
    • 96bfff0 Update outdated lifecycle diagram link in docs (#2014)
    • 0d2607f Allow restricting classes by regexp in vue/no-restricted-class (#2013)
    • 2479d2f Improve new-rule tool and templates (#2008)
    • 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 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)
    dependencies javascript 
    opened by dependabot[bot] 1
  • fix(deps): bump @stripe/stripe-js from 1.19.1 to 1.42.1

    fix(deps): bump @stripe/stripe-js from 1.19.1 to 1.42.1

    Bumps @stripe/stripe-js from 1.19.1 to 1.42.1.

    Release notes

    Sourced from @​stripe/stripe-js's releases.

    v1.42.1

    Updated types

    • Update types for PMM element (#369)
    • FIX: TS def XX_bank_account -> XX_bank_transfer (#346)

    v1.42.0

    New features

    • Add cart actions (#366)

    v1.41.0

    Fixes

    • remove lae from stripeelement (#365)
    • manually bump version (#364)

    v1.40.0

    New types

    • Added cart types + missing LAE, AE, SAE types (#363)

    Changes

    • Added cart types + missing LAE, AE, SAE types (#363)

    v1.39.0

    New features

    • Add type definitions for Issuing Elements (#362)
    • Finish specifying Financial Connections Account types (#354)
    • Add confirmPixPayment (#359)

    Fixes

    • Re-enable the test to run against the BETA tagged version of TypeScript (#357)

    v1.37.0

    New features

    • Add address element types (#352)

    v1.36.0

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by jackieosborn-stripe, a new releaser for @​stripe/stripe-js since your current version.


    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 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)
    dependencies javascript 
    opened by dependabot[bot] 1
  • fix(deps): bump @stripe/stripe-js from 1.19.1 to 1.42.0

    fix(deps): bump @stripe/stripe-js from 1.19.1 to 1.42.0

    Bumps @stripe/stripe-js from 1.19.1 to 1.42.0.

    Release notes

    Sourced from @​stripe/stripe-js's releases.

    v1.42.0

    New features

    • Add cart actions (#366)

    v1.41.0

    Fixes

    • remove lae from stripeelement (#365)
    • manually bump version (#364)

    v1.40.0

    New types

    • Added cart types + missing LAE, AE, SAE types (#363)

    Changes

    • Added cart types + missing LAE, AE, SAE types (#363)

    v1.39.0

    New features

    • Add type definitions for Issuing Elements (#362)
    • Finish specifying Financial Connections Account types (#354)
    • Add confirmPixPayment (#359)

    Fixes

    • Re-enable the test to run against the BETA tagged version of TypeScript (#357)

    v1.37.0

    New features

    • Add address element types (#352)

    v1.36.0

    New types

    • Add networkschange event (#348)
    • Add types for RadarSessions (#345)
    • Fix CollectBankAccountTokenResult type (#343)

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by martinalong-stripe, a new releaser for @​stripe/stripe-js since your current version.


    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 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)
    dependencies javascript 
    opened by dependabot[bot] 1
  • fix(deps): bump @stripe/stripe-js from 1.19.1 to 1.41.0

    fix(deps): bump @stripe/stripe-js from 1.19.1 to 1.41.0

    Bumps @stripe/stripe-js from 1.19.1 to 1.41.0.

    Release notes

    Sourced from @​stripe/stripe-js's releases.

    v1.41.0

    Fixes

    • remove lae from stripeelement (#365)
    • manually bump version (#364)

    v1.40.0

    New types

    • Added cart types + missing LAE, AE, SAE types (#363)

    Changes

    • Added cart types + missing LAE, AE, SAE types (#363)

    v1.39.0

    New features

    • Add type definitions for Issuing Elements (#362)
    • Finish specifying Financial Connections Account types (#354)
    • Add confirmPixPayment (#359)

    Fixes

    • Re-enable the test to run against the BETA tagged version of TypeScript (#357)

    v1.37.0

    New features

    • Add address element types (#352)

    v1.36.0

    New types

    • Add networkschange event (#348)
    • Add types for RadarSessions (#345)
    • Fix CollectBankAccountTokenResult type (#343)

    Changes

    • Deprecates disableAutocomplete from SAE (#347)

    v1.35.0

    New features

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by martinalong-stripe, a new releaser for @​stripe/stripe-js since your current version.


    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 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)
    dependencies javascript 
    opened by dependabot[bot] 1
  • fix(deps): bump @stripe/stripe-js from 1.19.1 to 1.39.0

    fix(deps): bump @stripe/stripe-js from 1.19.1 to 1.39.0

    Bumps @stripe/stripe-js from 1.19.1 to 1.39.0.

    Release notes

    Sourced from @​stripe/stripe-js's releases.

    v1.39.0

    New features

    • Add type definitions for Issuing Elements (#362)
    • Finish specifying Financial Connections Account types (#354)
    • Add confirmPixPayment (#359)

    Fixes

    • Re-enable the test to run against the BETA tagged version of TypeScript (#357)

    v1.37.0

    New features

    • Add address element types (#352)

    v1.36.0

    New types

    • Add networkschange event (#348)
    • Add types for RadarSessions (#345)
    • Fix CollectBankAccountTokenResult type (#343)

    Changes

    • Deprecates disableAutocomplete from SAE (#347)

    v1.35.0

    New features

    • Document new options and update method in shipping address element (#339)

    v1.34.0

    New features

    • Add Financial Connections types (#338)

    v1.33.0

    New features

    • Add loaderstart event (#336)
    • Add defaultValues to StripePaymentElementOptions interface (#332)

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by arashn-stripe, a new releaser for @​stripe/stripe-js since your current version.


    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 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)
    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps-dev): bump eslint-plugin-vue from 7.19.1 to 9.6.0

    chore(deps-dev): bump eslint-plugin-vue from 7.19.1 to 9.6.0

    Bumps eslint-plugin-vue from 7.19.1 to 9.6.0.

    Release notes

    Sourced from eslint-plugin-vue's releases.

    v9.6.0

    ✨ Enhancements

    🐛 Bug Fixes

    Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v9.5.1...v9.6.0

    v9.5.1

    🐛 Bug Fixes

    Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v9.5.0...v9.5.1

    v9.5.0

    ✨ Enhancements

    ⚙️ Updates

    Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v9.4.0...v9.5.0

    Thanks @​dev1437, @​Amorites, @​acupofspirt for your contributions!

    v9.4.0

    🐛 Bug Fixes

    Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v9.3.0...v9.4.0

    v9.3.0

    ⚙️ Updates

    🐛 Bug Fixes

    ... (truncated)

    Commits
    • f7960c8 9.6.0
    • 228b49f Fix false positives for uninitialized vars in vue/no-ref-as-operand rule (#...
    • 2e54472 Chore: remove from docs how to install via VueCLI (#2000)
    • cae6d29 Add consistent option to vue/padding-line-between-tags (#1982)
    • f4f946a Fix docs code example for vue/no-required-prop-with-default (#1995)
    • 467e85f docs: improve example to better clarify rule (#1985)
    • fdb67d1 docs: better example to clarify rule (#1984)
    • a4e807c feat: add no-required-prop-with-default rule (#1943)
    • e9964e1 fix define-prps-declaration docs (#1977)
    • 4d0ffae 9.5.1
    • 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 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)
    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps-dev): bump typescript from 4.4.3 to 4.8.4

    chore(deps-dev): bump typescript from 4.4.3 to 4.8.4

    Bumps typescript from 4.4.3 to 4.8.4.

    Release notes

    Sourced from typescript's releases.

    TypeScript 4.8.4

    For release notes, check out the release announcement.

    For the complete list of fixed issues, check out the

    Downloads are available on:

    TypeScript 4.8.3

    For release notes, check out the release announcement.

    For the complete list of fixed issues, check out the

    Downloads are available on:

    TypeScript 4.8

    For release notes, check out the release announcement.

    For the complete list of fixed issues, check out the

    Downloads are available on:

    TypeScript 4.8 RC

    For release notes, check out the release announcement.

    ... (truncated)

    Commits

    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 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)
    dependencies javascript 
    opened by dependabot[bot] 1
  • fix(deps): bump @stripe/stripe-js from 1.19.1 to 1.38.1

    fix(deps): bump @stripe/stripe-js from 1.19.1 to 1.38.1

    Bumps @stripe/stripe-js from 1.19.1 to 1.38.1.

    Release notes

    Sourced from @​stripe/stripe-js's releases.

    v1.37.0

    New features

    • Add address element types (#352)

    v1.36.0

    New types

    • Add networkschange event (#348)
    • Add types for RadarSessions (#345)
    • Fix CollectBankAccountTokenResult type (#343)

    Changes

    • Deprecates disableAutocomplete from SAE (#347)

    v1.35.0

    New features

    • Document new options and update method in shipping address element (#339)

    v1.34.0

    New features

    • Add Financial Connections types (#338)

    v1.33.0

    New features

    • Add loaderstart event (#336)
    • Add defaultValues to StripePaymentElementOptions interface (#332)

    Fixes

    • fix typo incompability -> incompatibility (#327)

    v1.32.0

    New types

    • Adding loaderror types to other applicable Elements (#331)

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by jima-stripe, a new releaser for @​stripe/stripe-js since your current version.


    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 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)
    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps-dev): bump typescript from 4.4.3 to 4.9.4

    chore(deps-dev): bump typescript from 4.4.3 to 4.9.4

    Bumps typescript from 4.4.3 to 4.9.4.

    Release notes

    Sourced from typescript's releases.

    TypeScript 4.9.4

    For release notes, check out the release announcement.

    For the complete list of fixed issues, check out the

    Downloads are available on:

    Changes:

    • e2868216f637e875a74c675845625eb15dcfe9a2 Bump version to 4.9.4 and LKG.
    • eb5419fc8d980859b98553586dfb5f40d811a745 Cherry-pick #51704 to release 4.9 (#51712)
    • b4d382b9b12460adf2da4cc0d1429cf19f8dc8be Cherry-pick changes for narrowing to tagged literal types.
    • e7a02f43fce47e1a39259ada5460bcc33c8e98b5 Port of #51626 and #51689 to release-4.9 (#51627)
    • 1727912f0437a7f367d90040fc4b0b4f3efd017a Cherry-pick fix around visitEachChild to release-4.9. (#51544)

    This list of changes was auto generated.

    TypeScript 4.9

    For release notes, check out the release announcement.

    Downloads are available on:

    Changes:

    • 93bd577458d55cd720b2677705feab5c91eb12ce Bump version to 4.9.3 and LKG.
    • 107f832b80df2dc97748021cb00af2b6813db75b Update LKG.
    • 31bee5682df130a14ffdd5742f994dbe7313dd0e Cherry-pick PR #50977 into release-4.9 (#51363) [ #50872 ]
    • 1e2fa7ae15f8530910fef8b916ec8a4ed0b59c45 Update version to 4.9.2-rc and LKG.
    • 7ab89e5c6e401d161f31f28a6c555a3ba530910e Merge remote-tracking branch 'origin/main' into release-4.9
    • e5cd686defb1a4cbdb36bd012357ba5bed28f371 Update package-lock.json
    • 8d40dc15d1b9945837e7860320fdccfe27c40cad Update package-lock.json
    • 5cfb3a2fe344a5350734305193e6cc99516285ca Only call return() for an abrupt completion in user code (#51297)
    • a7a9d158e817fcb0e94dc1c24e0a401b21be0cc9 Fix for broken baseline in yieldInForInInDownlevelGenerator (#51345)
    • 7f8426f4df0d0a7dd8b72079dafc3e60164a23b1 fix for-in enumeration containing yield in generator (#51295)
    • 3d2b4017eb6b9a2b94bc673291e56ae95e8beddd Fix assertion functions accessed via wildcard imports (#51324)
    • 64d0d5ae140b7b26a09e75114517b418d6bcaa9f fix(51301): Fixing an unused import at the end of a line removes the newline (#51320)
    • 754eeb2986bde30d5926e0fa99c87dda9266d01b Update CodeQL workflow and configuration, fix found bugs (#51263)
    • d8aad262006ad2d2c91aa7a0e4449b4b83c57f7b Update package-lock.json
    • d4f26c840b1db76c0b25a405c8e73830a2b45cbc fix(51245): Class with parameter decorator in arrow function causes "convert to default export" refactoring failure (#51256)
    • 16faf45682173ea437a50330feb4785578923d7f Update package-lock.json
    • 8b1ecdb701e2a2e19e9f8bcdd6b2beac087eabee fix(50654): "Move to a new file" breaks the declaration of referenced variable (#50681)
    • 170a17fad57eae619c5ef2b7bdb3ac00d6c32c47 Dom update 2022-10-25 (#51300)

    ... (truncated)

    Commits

    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 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)
    dependencies javascript 
    opened by dependabot[bot] 0
  • fix(deps): bump @stripe/stripe-js from 1.19.1 to 1.46.0

    fix(deps): bump @stripe/stripe-js from 1.19.1 to 1.46.0

    Bumps @stripe/stripe-js from 1.19.1 to 1.46.0.

    Release notes

    Sourced from @​stripe/stripe-js's releases.

    v1.45.0

    New features

    • Add Link PRB types (#391)

    Changed

    • AE: Remove beta comments (#388)

    v1.44.1

    Changed

    • Fixes typo on payButton Element types (#383)

    v1.44.0

    New features

    • Add types for payButton element (#381)

    Changed

    • Bump minimist from 1.2.5 to 1.2.7 in /examples/parcel (#380)
    • Bump minimist from 1.2.5 to 1.2.7 in /examples/rollup (#379)
    • Bump minimatch from 3.0.4 to 3.1.2 in /examples/parcel (#377)
    • Bump minimatch from 3.0.4 to 3.1.2 (#375)
    • Bump minimatch from 3.0.4 to 3.1.2 in /examples/webpack (#376)
    • Bump minimatch from 3.0.4 to 3.1.2 in /examples/rollup (#378)

    v1.43.0

    Changed

    • add item_details (#374)
    • Bump minimist from 1.2.5 to 1.2.7 in /examples/webpack (#370)

    v1.42.1

    Updated types

    • Update types for PMM element (#369)
    • FIX: TS def XX_bank_account -> XX_bank_transfer (#346)

    v1.42.0

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by jima-stripe, a new releaser for @​stripe/stripe-js since your current version.


    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 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)
    dependencies javascript 
    opened by dependabot[bot] 0
  • chore(deps-dev): bump eslint-plugin-vue from 7.19.1 to 9.8.0

    chore(deps-dev): bump eslint-plugin-vue from 7.19.1 to 9.8.0

    Bumps eslint-plugin-vue from 7.19.1 to 9.8.0.

    Release notes

    Sourced from eslint-plugin-vue's releases.

    v9.8.0

    ✨ Enhancements

    🐛 Bug Fixes

    Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v9.7.0...v9.8.0

    v9.7.0

    ✨ Enhancements

    ⚙️ Updates

    Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v9.6.0...v9.7.0

    v9.6.0

    ✨ Enhancements

    🐛 Bug Fixes

    Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v9.5.1...v9.6.0

    v9.5.1

    🐛 Bug Fixes

    Full Changelog: https://github.com/vuejs/eslint-plugin-vue/compare/v9.5.0...v9.5.1

    v9.5.0

    ✨ Enhancements

    ... (truncated)

    Commits
    • a15d036 9.8.0
    • ec0276b Disable autofix in vue/attribute-hyphenation for attributes with underscore...
    • ced6fc3 Chore: add script to site that remove service-worker (#2047)
    • 2d46741 Ignore well known tags in component-name-in-template-casing (#2031)
    • 0fd431e Chore: fix playground (#2046)
    • 55daf43 Chore: use vitepress instead of vuepress (#2044)
    • 1d669d3 fix(docs): update example code for watch() (#2041)
    • 8dc3cd9 fix(define-macros-order): update rule to support interface/type export in <sc...
    • cc1b8d9 feat: rule fixer for require-name-property (#2034)
    • 9673a61 docs: fix formatting and grammar for clarity (#2028)
    • 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 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)
    dependencies javascript 
    opened by dependabot[bot] 0
  • chore(deps-dev): bump nuxt from 2.15.8 to 3.0.0

    chore(deps-dev): bump nuxt from 2.15.8 to 3.0.0

    Bumps nuxt from 2.15.8 to 3.0.0.

    Release notes

    Sourced from nuxt's releases.

    Nuxt 3.0 stable

    Official Release Announcenment

    💬 Release Discussion

    📝 Changelog

    Check out v3.0.0-rc.14 for other recent changes.

    🩹 Fixes

    • nuxt: Removed auto imports (#9045)
    • schema: Initialise runtimeConfig.public with empty object (#9050)
    • cli: Upgrade with latest tag (#9060)
    • nuxt: Allow union type arguments for useAsyncData (#9061)

    📖 Documentation

    • New website design (#9007)
    • Update website theme version (819deb89)
    • Minor style improvements (9ab069b2)
    • Update website-theme (780b17b1)
    • Add warning about definePageMeta issues with transitions and NuxtLoadingIndicator (#9055)
    • Add missing agencies (#9059)

    🏡 Chore

    • Update readme design (#9048)
    • Ignore parse5 for renovate update (#9046)

    ❤️ Contributors

    v3.0.0-rc.14

    Note This is the last release candidate for Nuxt v3! Are you ready? 👀

    👉 Release Discussion

    Changelog

    compare changes

    ... (truncated)

    Commits

    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 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)
    dependencies javascript 
    opened by dependabot[bot] 0
  • chore(deps-dev): bump @nuxtjs/i18n from 7.0.3 to 7.3.0

    chore(deps-dev): bump @nuxtjs/i18n from 7.0.3 to 7.3.0

    Bumps @nuxtjs/i18n from 7.0.3 to 7.3.0.

    Release notes

    Sourced from @​nuxtjs/i18n's releases.

    v7.3.0

    Features

    • add setting for setting expiration of the cookie that stores locale (#1492) (dd764d7)

    v7.2.3

    Bug Fixes

    • infinite redirect on URL with special characters (#1472) (426af76)

    v7.2.2

    Bug Fixes

    • fixed locale changing issue in server side middleware (#1429) (c10231d)

    v7.2.1

    Bug Fixes

    • don't detect locale from route when using no_prefix (#1421) (609782f)
    • docs: add info on using dynamic translations with _.vue (b6039d2), closes #1400
    • docs: correct links to [Custom paths] and [Ignore routes] (#1392) (091944c)
    • parse-pages: add jsx plugin for .vue files using jsx syntax (#1356) (8cdb999)

    v7.2.0

    Features

    Bug Fixes

    • docs: refactor and separate some pages related to routing (89eb12f)
    • load vue-template-compiler with nuxt.resolver.requireModule (#1327) (c5a3ca8)

    v7.1.0

    Features

    • add support for query params in canonical url (#1274) (d5dea9c)

    Bug Fixes

    • adjust strange redirection logic for prefix_and_default (#1304) (578acd8)
    Changelog

    Sourced from @​nuxtjs/i18n's changelog.

    7.3.0 (2022-08-24)

    Features

    • add setting for setting expiration of the cookie that stores locale (#1492) (dd764d7)

    7.2.3 (2022-08-01)

    Bug Fixes

    • infinite redirect on URL with special characters (#1472) (426af76)

    7.2.2 (2022-04-25)

    Bug Fixes

    • fixed locale changing issue in server side middleware (#1429) (c10231d)

    7.2.1 (2022-04-01)

    Bug Fixes

    • don't detect locale from route when using no_prefix (#1421) (609782f)
    • docs: add info on using dynamic translations with _.vue (b6039d2), closes #1400
    • docs: correct links to [Custom paths] and [Ignore routes] (#1392) (091944c)
    • parse-pages: add jsx plugin for .vue files using jsx syntax (#1356) (8cdb999)## 7.2.0 (2021-11-04)

    Features

    Bug Fixes

    • docs: refactor and separate some pages related to routing (89eb12f)
    • load vue-template-compiler with nuxt.resolver.requireModule (#1327) (c5a3ca8)

    7.1.0 (2021-10-19)

    Features

    • add support for query params in canonical url (#1274) (d5dea9c)

    ... (truncated)

    Commits
    • 3b1c957 chore: release 7.3.0
    • dd764d7 feat: add setting for setting expiration of the cookie that stores locale (#1...
    • f8f0759 chore(deps): update all non-major dependencies
    • a0d52a1 chore: release 7.2.3
    • 426af76 fix: infinite redirect on URL with special characters (#1472)
    • a5f0188 chore(deps): update all non-major dependencies
    • b776c37 chore(deps): update devdependency @​nuxtjs/eslint-config-typescript to v10
    • 7740a33 chore(deps): update devdependency @​release-it/conventional-changelog to v5 (#...
    • a3fc5b1 chore(deps): update devdependency release-it to v15 (#1435)
    • ae475b9 chore(deps): disable updates of the node engine
    • 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 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)
    dependencies javascript 
    opened by dependabot[bot] 0
  • chore(deps-dev): bump standard-version from 9.3.1 to 9.5.0

    chore(deps-dev): bump standard-version from 9.3.1 to 9.5.0

    Bumps standard-version from 9.3.1 to 9.5.0.

    Release notes

    Sourced from standard-version's releases.

    v9.5.0

    9.5.0 (2022-05-15)

    Features

    Bug Fixes

    • deps: update dependency conventional-changelog to v3.1.25 (#865) (4c938a2)
    • deps: update dependency conventional-changelog-conventionalcommits to v4.6.3 (#866) (6c75ed0)

    v9.4.0

    9.4.0 (2021-12-31)

    Features

    Bug Fixes

    • Ensures provided packageFiles arguments are merged with bumpFiles when no bumpFiles argument is specified (default). (#534) (2785023), closes #533

    standard-version v9.3.2

    Bug Fixes

    • deps: update dependency conventional-changelog-conventionalcommits to v4.6.1 (#752) (bb8869d)
    Changelog

    Sourced from standard-version's changelog.

    9.5.0 (2022-05-15)

    Features

    Bug Fixes

    • deps: update dependency conventional-changelog to v3.1.25 (#865) (4c938a2)
    • deps: update dependency conventional-changelog-conventionalcommits to v4.6.3 (#866) (6c75ed0)

    9.4.0 (2021-12-31)

    Features

    Bug Fixes

    • Ensures provided packageFiles arguments are merged with bumpFiles when no bumpFiles argument is specified (default). (#534) (2785023), closes #533

    9.3.2 (2021-10-17)

    Bug Fixes

    • deps: update dependency conventional-changelog-conventionalcommits to v4.6.1 (#752) (bb8869d)
    Commits
    • 017dcb6 chore(master): release 9.5.0 (#867)
    • 61b41fa feat(deprecated): add deprecation message (#907)
    • 6c75ed0 fix(deps): update dependency conventional-changelog-conventionalcommits to v4...
    • 4c938a2 fix(deps): update dependency conventional-changelog to v3.1.25 (#865)
    • fd05681 chore(master): release 9.4.0 (#864)
    • e510623 build: run tests on label
    • eceaedf feat: add .cjs config file (#717)
    • 366a498 build: update publish configuration
    • 095e1eb test: updates .gitignore test to check against a default package and bump fil...
    • fb3f3fa chore: Move to native fs.access, removes fs-access package. (#840)
    • Additional commits viewable in compare view
    Maintainer changes

    This version was pushed to npm by oss-bot, a new releaser for standard-version since your current version.


    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 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)
    dependencies javascript 
    opened by dependabot[bot] 0
Releases(v0.0.6)
Owner
Chantouch Sek
I am gender, and a Developer.
Chantouch Sek
Nuxt.js module to use Unleash toggle feature services

nuxt-unleash Nuxt.js module to use Unleash toggle feature services ?? Release Notes Features Use $unleash to access and handle your Unleash feature fl

Juanjo Conejero 15 Dec 3, 2022
🔎 Algolia module for Nuxt

@nuxtjs/algolia Algolia module for Nuxt ✨ Release Notes ?? Read the documentation Features Nuxt 3 ready Easy integration with Algolia Handy composable

Nuxt Community 128 Jan 7, 2023
Nuxt 3 module for Kirby's Query Language API

nuxt-kql Kirby KQL module for Nuxt 3. This module provides a useKql composable, which under the hood uses useFetch. Thus, KQL query fetching in your N

Johann Schopplich 25 Dec 15, 2022
Restream is a module that allows you to create a stream of an audio/video file from the Firebase storage, protected from direct download through the client-side.

nuxt-restream Restream is a module that allows you to create a stream of an audio/video file from the Firebase storage, protected from direct download

Restorm 3 Dec 13, 2022
Nuxt 3 module for Web3.js

nuxt-web3.js Nuxt 3 module for Web3.js. Installation npm install nuxt-web3.js Usage export default defineNuxtConfig({ modules: ['nuxt-web3.js'], })

Robert Soriano 8 Dec 16, 2022
OpenID-Connect(OIDC) integration module for nuxt 3.0.

Nuxt OpenID-Connect OpenID-Connect(OIDC) integration module for nuxt 3.0. Features An Nuxt 3 module. OIDC integration ( implemetation base openid-clie

Aborn Jiang 10 Dec 24, 2022
🔎 Meilisearch module for Nuxt 3

nuxt-meilisearch Meilisearch module for Nuxt Features Nuxt 3 Easy integration with MeilisearchJS lib Support for Vue Algolia Vue 3 InstantSearch compo

Alex Duval 50 Dec 26, 2022
✉️ Nuxt module for first class integration with popular newsletter providers

nuxt-newsletter Newsletter module for Nuxt 3 ✨ Release Notes ?? Read the documentation Features Nuxt 3 ready Easy integration with Mailchimp, Revue, B

Jakub Andrzejewski 39 Jan 5, 2023
🔎 Algolia module for Nuxt

@nuxtjs/algolia Algolia module for Nuxt ✨ Release Notes ?? Read the documentation Features Nuxt 3 ready Easy integration with Algolia Handy composable

Nuxt Community 91 Jul 28, 2022
A Nuxt.js module that injects a server route to serve the GraphQL Playground

@pin-pon/nuxt-graphql-playground A Nuxt.js module that injects a server route to serve the GraphQL Playground Setup Add @pin-pon/nuxt-graphql-playgrou

Pin-Pon 3 Sep 22, 2022
Make use css module more sense.

vite-plugin-sense-css-module Make use css module more sense. Installation npm npm install --save-dev vite-plugin-sense-css-module yarn yarn add -D vi

null 2 Sep 25, 2022
🪅 Nuxt 3 module to connect with any API securely – server proxy & customizable composable names

nuxt-api-party This module provides composables to fetch data from an API of your choice securely. You can customize the composable names! Given json-

Johann Schopplich 65 Dec 26, 2022
Nuxt-Module, that provides a system to set shopware cache-tags for later use in e.g. a full-page cache

nuxt-shopware-caching Nuxt-Module, that provides a system to set shopware cache-tags for later use in e.g. a full-page cache. This module is meant to

Mothership GmbH 5 Nov 8, 2022
Grupprojekt för kurserna 'Javascript med Ramverk' och 'Agil Utveckling'

JavaScript-med-Ramverk-Laboration-3 Grupprojektet för kurserna Javascript med Ramverk och Agil Utveckling. Utvecklingsguide För information om hur utv

Svante Jonsson IT-Högskolan 3 May 18, 2022
Hemsida för personer i Sverige som kan och vill erbjuda boende till människor på flykt

Getting Started with Create React App This project was bootstrapped with Create React App. Available Scripts In the project directory, you can run: np

null 4 May 3, 2022
Kurs-repo för kursen Webbserver och Databaser

Webbserver och databaser This repository is meant for CME students to access exercises and codealongs that happen throughout the course. I hope you wi

null 14 Jan 3, 2023
An npm package for demonstration purposes using TypeScript to build for both the ECMAScript Module format (i.e. ESM or ES Module) and CommonJS Module format. It can be used in Node.js and browser applications.

An npm package for demonstration purposes using TypeScript to build for both the ECMAScript Module format (i.e. ESM or ES Module) and CommonJS Module format. It can be used in Node.js and browser applications.

Snyk Labs 57 Dec 28, 2022
HTML CSS & React - Client side dynamic e-commerce website (stripe integrated)

Furniture E-Commerce Project Description React front-end full operating dynamic and responsive E-Commerce shop including payment connection (stripe) B

Almog Wertzberger 15 Dec 27, 2022
A Node.js CLI to download PDF invoices from Stripe.

A Node.js CLI to download PDF invoices from Stripe.

Fabian Hedin 1 Feb 13, 2022