From 8ef3798a31f2b70b97ec9b7b583587795265151b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 20 Aug 2024 11:50:17 +0000 Subject: [PATCH] chore: release --- .changeset/friendly-rats-type.md | 5 ----- .changeset/shaggy-bikes-wonder.md | 16 ---------------- .changeset/wise-cheetahs-remember.md | 5 ----- packages/nuxt3-module/CHANGELOG.md | 17 +++++++++++++++++ packages/nuxt3-module/README.md | 17 +++++++++++++---- packages/nuxt3-module/package.json | 2 +- templates/vue-demo-store/CHANGELOG.md | 8 ++++++++ templates/vue-demo-store/package.json | 4 ++-- 8 files changed, 41 insertions(+), 33 deletions(-) delete mode 100644 .changeset/friendly-rats-type.md delete mode 100644 .changeset/shaggy-bikes-wonder.md delete mode 100644 .changeset/wise-cheetahs-remember.md diff --git a/.changeset/friendly-rats-type.md b/.changeset/friendly-rats-type.md deleted file mode 100644 index 2fc4cfeee..000000000 --- a/.changeset/friendly-rats-type.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"vue-demo-store": patch ---- - -- Fixed closing modal for resetting password page diff --git a/.changeset/shaggy-bikes-wonder.md b/.changeset/shaggy-bikes-wonder.md deleted file mode 100644 index 12b1500a7..000000000 --- a/.changeset/shaggy-bikes-wonder.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -"@shopware-pwa/nuxt3-module": patch ---- - -Improvements within a nuxt module and the plugin: - -- properly loading a `sw-context-token` cookie in SSR -- exposing an [API client](https://www.npmjs.com/package/@shopware/api-client) instance provided in a nuxt plugin -- adds corresponding types - -```ts -// works also in a route middleware -const { $shopwareApiClient } = useNuxtApp(); - -await $shopwareApiClient.invoke("readContext get /context"); -``` diff --git a/.changeset/wise-cheetahs-remember.md b/.changeset/wise-cheetahs-remember.md deleted file mode 100644 index 6f0603016..000000000 --- a/.changeset/wise-cheetahs-remember.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"vue-demo-store": patch ---- - -- Fixed promotion-not-found error message diff --git a/packages/nuxt3-module/CHANGELOG.md b/packages/nuxt3-module/CHANGELOG.md index 6f56a13eb..4bfb9109b 100644 --- a/packages/nuxt3-module/CHANGELOG.md +++ b/packages/nuxt3-module/CHANGELOG.md @@ -1,5 +1,22 @@ # @shopware-pwa/nuxt3-module +## 1.0.5 + +### Patch Changes + +- [#1207](https://github.com/shopware/frontends/pull/1207) [`7531874`](https://github.com/shopware/frontends/commit/75318747536b3cad5b83804a730b6680deb3fc8d) Thanks [@mkucmus](https://github.com/mkucmus)! - Improvements within a nuxt module and the plugin: + + - properly loading a `sw-context-token` cookie in SSR + - exposing an [API client](https://www.npmjs.com/package/@shopware/api-client) instance provided in a nuxt plugin + - adds corresponding types + + ```ts + // works also in a route middleware + const { $shopwareApiClient } = useNuxtApp(); + + await $shopwareApiClient.invoke("readContext get /context"); + ``` + ## 1.0.4 ### Patch Changes diff --git a/packages/nuxt3-module/README.md b/packages/nuxt3-module/README.md index f8e43259a..deb4192f4 100644 --- a/packages/nuxt3-module/README.md +++ b/packages/nuxt3-module/README.md @@ -99,10 +99,19 @@ Internally, the module uses [API Client](https://npmjs.com/package/@shopware-pwa Full changelog for stable version is available [here](https://github.com/shopware/frontends/blob/main/packages/nuxt3-module/CHANGELOG.md) -### Latest changes: 1.0.4 +### Latest changes: 1.0.5 ### Patch Changes -- Updated dependencies [[`2e4c887`](https://github.com/shopware/frontends/commit/2e4c8872060fb2ebabe5b89d92761994a2ed8128), [`aa8f5a4`](https://github.com/shopware/frontends/commit/aa8f5a4d2eabce1d6119e31af8c7479911d7b07b)]: - - @shopware-pwa/helpers-next@1.0.2 - - @shopware-pwa/composables-next@1.2.0 +- [#1207](https://github.com/shopware/frontends/pull/1207) [`7531874`](https://github.com/shopware/frontends/commit/75318747536b3cad5b83804a730b6680deb3fc8d) Thanks [@mkucmus](https://github.com/mkucmus)! - Improvements within a nuxt module and the plugin: + + - properly loading a `sw-context-token` cookie in SSR + - exposing an [API client](https://www.npmjs.com/package/@shopware/api-client) instance provided in a nuxt plugin + - adds corresponding types + + ```ts + // works also in a route middleware + const { $shopwareApiClient } = useNuxtApp(); + + await $shopwareApiClient.invoke("readContext get /context"); + ``` diff --git a/packages/nuxt3-module/package.json b/packages/nuxt3-module/package.json index 2845692fe..c29a0e758 100644 --- a/packages/nuxt3-module/package.json +++ b/packages/nuxt3-module/package.json @@ -1,6 +1,6 @@ { "name": "@shopware-pwa/nuxt3-module", - "version": "1.0.4", + "version": "1.0.5", "description": "Nuxt 3 module for Shopware Frontends", "author": "Shopware", "repository": { diff --git a/templates/vue-demo-store/CHANGELOG.md b/templates/vue-demo-store/CHANGELOG.md index d56b5cf5e..a58564ceb 100644 --- a/templates/vue-demo-store/CHANGELOG.md +++ b/templates/vue-demo-store/CHANGELOG.md @@ -1,5 +1,13 @@ # vue-demo-store +## 1.1.2 + +### Patch Changes + +- [#1218](https://github.com/shopware/frontends/pull/1218) [`a3de8e0`](https://github.com/shopware/frontends/commit/a3de8e06d702c4f762b8e8cd8a2f1b8e4365a4cf) Thanks [@mdanilowicz](https://github.com/mdanilowicz)! - - Fixed closing modal for resetting password page + +- [#1223](https://github.com/shopware/frontends/pull/1223) [`4c92624`](https://github.com/shopware/frontends/commit/4c92624cee2cf24e3b00946fbecbad7e2a47bb69) Thanks [@mdanilowicz](https://github.com/mdanilowicz)! - - Fixed promotion-not-found error message + ## 1.1.1 ### Patch Changes diff --git a/templates/vue-demo-store/package.json b/templates/vue-demo-store/package.json index d547b50a8..9f531c38d 100644 --- a/templates/vue-demo-store/package.json +++ b/templates/vue-demo-store/package.json @@ -1,6 +1,6 @@ { "name": "vue-demo-store", - "version": "1.1.1", + "version": "1.1.2", "private": true, "scripts": { "dev": "nuxt prepare && nuxt dev", @@ -42,4 +42,4 @@ "engines": { "node": "^18.17.x || ^20.x" } -} \ No newline at end of file +}