Skip to content

Commit 6a9f2f5

Browse files
chore: next version release (#293)
1 parent e7a653f commit 6a9f2f5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+236
-124
lines changed

.changeset/curvy-rabbits-provide.md

-5
This file was deleted.

.changeset/famous-forks-unite.md

-17
This file was deleted.

.changeset/four-months-nail.md

-6
This file was deleted.

.changeset/nine-drinks-sort.md

-5
This file was deleted.

.changeset/ninety-stingrays-destroy.md

-5
This file was deleted.

.changeset/orange-buses-bake.md

-5
This file was deleted.

.changeset/pretty-wasps-whisper.md

-10
This file was deleted.

.changeset/strong-geese-hope.md

-5
This file was deleted.

.changeset/tame-toys-grab.md

-5
This file was deleted.

.changeset/twelve-oranges-enjoy.md

-5
This file was deleted.

.changeset/yellow-shrimps-explain.md

-5
This file was deleted.

apps/docs/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# docs
22

3+
## 1.5.5
4+
5+
### Patch Changes
6+
7+
- [#295](https://github.com/shopware/frontends/pull/295) [`23a0a53`](https://github.com/shopware/frontends/commit/23a0a532410990c0075ea7fff622949ccdecfd49) Thanks [@patzick](https://github.com/patzick)! - bump dependencies
8+
9+
- [#284](https://github.com/shopware/frontends/pull/284) [`bb48e13`](https://github.com/shopware/frontends/commit/bb48e131570a2db4b7431c842e54ad67d9384cd5) Thanks [@mkucmus](https://github.com/mkucmus)! - Set default locale from accept-language header in SSR
10+
11+
- Updated dependencies [[`e6a52ec`](https://github.com/shopware/frontends/commit/e6a52ec4b7c28627c55cbd8ca15b8458cedf53bd), [`23a0a53`](https://github.com/shopware/frontends/commit/23a0a532410990c0075ea7fff622949ccdecfd49), [`bb48e13`](https://github.com/shopware/frontends/commit/bb48e131570a2db4b7431c842e54ad67d9384cd5), [`14d97c5`](https://github.com/shopware/frontends/commit/14d97c5942adf5a49163625b2740d95bc5772689)]:
12+
- @shopware-pwa/composables-next@0.11.0
13+
- @shopware-pwa/api-client@0.5.1
14+
- @shopware-pwa/helpers-next@0.3.1
15+
316
## 1.5.4
417

518
### Patch Changes

apps/docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "docs",
33
"private": true,
4-
"version": "1.5.4",
4+
"version": "1.5.5",
55
"description": "",
66
"scripts": {
77
"dev": "vitepress",

packages/api-client-next/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @shopware/api-client
22

3+
## 0.1.0
4+
5+
### Minor Changes
6+
7+
- [#300](https://github.com/shopware/frontends/pull/300) [`da347b5`](https://github.com/shopware/frontends/commit/da347b548aea93afaab1cc9ebab63f732ecdb964) Thanks [@patzick](https://github.com/patzick)! - Predefining methods: exported `RequestReturnType ` and `RequestParameters` types. You can now create predefined methods:
8+
9+
```typescript
10+
const readCart = (params: RequestParameters<"readCart", operations>) =>
11+
apiInstance.invoke("readCart get /checkout/cart?name", params);
12+
```
13+
14+
### Patch Changes
15+
16+
- [#295](https://github.com/shopware/frontends/pull/295) [`23a0a53`](https://github.com/shopware/frontends/commit/23a0a532410990c0075ea7fff622949ccdecfd49) Thanks [@patzick](https://github.com/patzick)! - bump dependencies
17+
318
## 0.0.3
419

520
### Patch Changes

packages/api-client-next/README.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,17 @@ async function loadMainNavigation() {
127127

128128
Full changelog for stable version is available [here](https://github.com/shopware/frontends/blob/main/packages/api-client-next/CHANGELOG.md)
129129

130-
### Latest changes: 0.0.3
130+
### Latest changes: 0.1.0
131+
132+
### Minor Changes
133+
134+
- [#300](https://github.com/shopware/frontends/pull/300) [`da347b5`](https://github.com/shopware/frontends/commit/da347b548aea93afaab1cc9ebab63f732ecdb964) Thanks [@patzick](https://github.com/patzick)! - Predefining methods: exported `RequestReturnType ` and `RequestParameters` types. You can now create predefined methods:
135+
136+
```typescript
137+
const readCart = (params: RequestParameters<"readCart", operations>) =>
138+
apiInstance.invoke("readCart get /checkout/cart?name", params);
139+
```
131140

132141
### Patch Changes
133142

134-
- [#290](https://github.com/shopware/frontends/pull/290) [`9562a8a`](https://github.com/shopware/frontends/commit/9562a8add35751093d766017abba474f0ad578f8) Thanks [@patzick](https://github.com/patzick)! - ship api-types with package
143+
- [#295](https://github.com/shopware/frontends/pull/295) [`23a0a53`](https://github.com/shopware/frontends/commit/23a0a532410990c0075ea7fff622949ccdecfd49) Thanks [@patzick](https://github.com/patzick)! - bump dependencies

packages/api-client-next/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopware/api-client",
3-
"version": "0.0.3",
3+
"version": "0.1.0",
44
"description": "Shopware client for API connection.",
55
"author": "Shopware",
66
"repository": {

packages/api-client/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @shopware-pwa/api-client
22

3+
## 0.5.1
4+
5+
### Patch Changes
6+
7+
- [#270](https://github.com/shopware/frontends/pull/270) [`14d97c5`](https://github.com/shopware/frontends/commit/14d97c5942adf5a49163625b2740d95bc5772689) Thanks [@mdanilowicz](https://github.com/mdanilowicz)! - Change getContextCountryEndpoint request type to POST
8+
9+
- Updated dependencies [[`8a94e37`](https://github.com/shopware/frontends/commit/8a94e3739a24e5d748ba807852c5e5c2dfbe6cb4)]:
10+
- @shopware-pwa/types@0.5.5
11+
312
## 0.5.0
413

514
### Minor Changes

packages/api-client/README.md

+4-8
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,11 @@ Documentation specific for this package: [api-client](https://frontends.shopware
1212

1313
Full changelog for stable version is available [here](https://github.com/shopware/frontends/blob/main/packages/api-client/CHANGELOG.md)
1414

15-
### Latest changes: 0.5.0
16-
17-
### Minor Changes
18-
19-
- [#230](https://github.com/shopware/frontends/pull/230) [`d1e07d6`](https://github.com/shopware/frontends/commit/d1e07d6f73135cb742807aba78f1271943d47beb) Thanks [@mdanilowicz](https://github.com/mdanilowicz)! - Add redirectUrl to the contextService
15+
### Latest changes: 0.5.1
2016

2117
### Patch Changes
2218

23-
- [#243](https://github.com/shopware/frontends/pull/243) [`d5f0bcc`](https://github.com/shopware/frontends/commit/d5f0bcc18cb581a48185cb8622d0e0d9b7fea23f) Thanks [@patzick](https://github.com/patzick)! - bump dependencies
19+
- [#270](https://github.com/shopware/frontends/pull/270) [`14d97c5`](https://github.com/shopware/frontends/commit/14d97c5942adf5a49163625b2740d95bc5772689) Thanks [@mdanilowicz](https://github.com/mdanilowicz)! - Change getContextCountryEndpoint request type to POST
2420

25-
- Updated dependencies [[`e359aa2`](https://github.com/shopware/frontends/commit/e359aa28c9c9c7fb2521be3ebd5b847c855e4d24), [`5bb88e9`](https://github.com/shopware/frontends/commit/5bb88e9f4422141de916b704f13e9ecce9b8f2f2)]:
26-
- @shopware-pwa/types@0.5.4
21+
- Updated dependencies [[`8a94e37`](https://github.com/shopware/frontends/commit/8a94e3739a24e5d748ba807852c5e5c2dfbe6cb4)]:
22+
- @shopware-pwa/types@0.5.5

packages/api-client/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopware-pwa/api-client",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"description": "Shopware Store API client",
55
"author": "Shopware",
66
"repository": {

packages/api-gen/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @shopware/api-gen
22

3+
## 0.0.4
4+
5+
### Patch Changes
6+
7+
- [#295](https://github.com/shopware/frontends/pull/295) [`23a0a53`](https://github.com/shopware/frontends/commit/23a0a532410990c0075ea7fff622949ccdecfd49) Thanks [@patzick](https://github.com/patzick)! - bump dependencies
8+
39
## 0.0.3
410

511
### Patch Changes

packages/api-gen/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Documentation specific for this package: [api-gen](https://frontends.shopware.co
1212

1313
Full changelog for stable version is available [here](https://github.com/shopware/frontends/blob/main/packages/api-gen/CHANGELOG.md)
1414

15-
### Latest changes: 0.0.3
15+
### Latest changes: 0.0.4
1616

1717
### Patch Changes
1818

19-
- [#292](https://github.com/shopware/frontends/pull/292) [`b68ca7f`](https://github.com/shopware/frontends/commit/b68ca7fbd51d22f4be84a228ca107972e07bfa32) Thanks [@patzick](https://github.com/patzick)! - fixed cli building, prettier is not inlined into bundle
19+
- [#295](https://github.com/shopware/frontends/pull/295) [`23a0a53`](https://github.com/shopware/frontends/commit/23a0a532410990c0075ea7fff622949ccdecfd49) Thanks [@patzick](https://github.com/patzick)! - bump dependencies

packages/api-gen/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopware/api-gen",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"description": "Shopware CLI for API client generation.",
55
"author": "Shopware",
66
"repository": {

packages/cms-base/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @shopware-pwa/cms-base
22

3+
## 0.7.0
4+
5+
### Minor Changes
6+
7+
- [#283](https://github.com/shopware/frontends/pull/283) [`e6a52ec`](https://github.com/shopware/frontends/commit/e6a52ec4b7c28627c55cbd8ca15b8458cedf53bd) Thanks [@BrocksiNet](https://github.com/BrocksiNet)! - CmsElementText has now proper support for colors and align, when set in admin panel
8+
9+
### Patch Changes
10+
11+
- [#295](https://github.com/shopware/frontends/pull/295) [`23a0a53`](https://github.com/shopware/frontends/commit/23a0a532410990c0075ea7fff622949ccdecfd49) Thanks [@patzick](https://github.com/patzick)! - bump dependencies
12+
13+
- Updated dependencies [[`e6a52ec`](https://github.com/shopware/frontends/commit/e6a52ec4b7c28627c55cbd8ca15b8458cedf53bd), [`23a0a53`](https://github.com/shopware/frontends/commit/23a0a532410990c0075ea7fff622949ccdecfd49), [`bb48e13`](https://github.com/shopware/frontends/commit/bb48e131570a2db4b7431c842e54ad67d9384cd5), [`14d97c5`](https://github.com/shopware/frontends/commit/14d97c5942adf5a49163625b2740d95bc5772689)]:
14+
- @shopware-pwa/composables-next@0.11.0
15+
- @shopware-pwa/api-client@0.5.1
16+
- @shopware-pwa/helpers-next@0.3.1
17+
318
## 0.6.1
419

520
### Patch Changes

packages/cms-base/README.md

+11-3
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,17 @@ No additional packages needed to be installed.
8181

8282
Full changelog for stable version is available [here](https://github.com/shopware/frontends/blob/main/packages/cms-base/CHANGELOG.md)
8383

84-
### Latest changes: 0.6.1
84+
### Latest changes: 0.7.0
85+
86+
### Minor Changes
87+
88+
- [#283](https://github.com/shopware/frontends/pull/283) [`e6a52ec`](https://github.com/shopware/frontends/commit/e6a52ec4b7c28627c55cbd8ca15b8458cedf53bd) Thanks [@BrocksiNet](https://github.com/BrocksiNet)! - CmsElementText has now proper support for colors and align, when set in admin panel
8589

8690
### Patch Changes
8791

88-
- Updated dependencies [[`558c9d0`](https://github.com/shopware/frontends/commit/558c9d0f2127776a0542e8d1d95734cb5d4c7e75)]:
89-
- @shopware-pwa/composables-next@0.10.0
92+
- [#295](https://github.com/shopware/frontends/pull/295) [`23a0a53`](https://github.com/shopware/frontends/commit/23a0a532410990c0075ea7fff622949ccdecfd49) Thanks [@patzick](https://github.com/patzick)! - bump dependencies
93+
94+
- Updated dependencies [[`e6a52ec`](https://github.com/shopware/frontends/commit/e6a52ec4b7c28627c55cbd8ca15b8458cedf53bd), [`23a0a53`](https://github.com/shopware/frontends/commit/23a0a532410990c0075ea7fff622949ccdecfd49), [`bb48e13`](https://github.com/shopware/frontends/commit/bb48e131570a2db4b7431c842e54ad67d9384cd5), [`14d97c5`](https://github.com/shopware/frontends/commit/14d97c5942adf5a49163625b2740d95bc5772689)]:
95+
- @shopware-pwa/composables-next@0.11.0
96+
- @shopware-pwa/api-client@0.5.1
97+
- @shopware-pwa/helpers-next@0.3.1

packages/cms-base/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopware-pwa/cms-base",
3-
"version": "0.6.1",
3+
"version": "0.7.0",
44
"description": "Vue CMS support for Shopware",
55
"author": "Shopware",
66
"repository": {

packages/composables/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# @shopware-pwa/composables-next
22

3+
## 0.11.0
4+
5+
### Minor Changes
6+
7+
- [#284](https://github.com/shopware/frontends/pull/284) [`bb48e13`](https://github.com/shopware/frontends/commit/bb48e131570a2db4b7431c842e54ad67d9384cd5) Thanks [@mkucmus](https://github.com/mkucmus)! - Use function constructor instead of init method to set config for price displaying
8+
9+
### Patch Changes
10+
11+
- [#283](https://github.com/shopware/frontends/pull/283) [`e6a52ec`](https://github.com/shopware/frontends/commit/e6a52ec4b7c28627c55cbd8ca15b8458cedf53bd) Thanks [@BrocksiNet](https://github.com/BrocksiNet)! - Fixed initial listing suring search
12+
13+
- [#295](https://github.com/shopware/frontends/pull/295) [`23a0a53`](https://github.com/shopware/frontends/commit/23a0a532410990c0075ea7fff622949ccdecfd49) Thanks [@patzick](https://github.com/patzick)! - bump dependencies
14+
15+
- Updated dependencies [[`14d97c5`](https://github.com/shopware/frontends/commit/14d97c5942adf5a49163625b2740d95bc5772689)]:
16+
- @shopware-pwa/api-client@0.5.1
17+
- @shopware-pwa/helpers-next@0.3.1
18+
319
## 0.10.0
420

521
### Minor Changes

packages/composables/README.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,18 @@ All composable functions are fully typed with TypeScript and they are registed g
137137

138138
Full changelog for stable version is available [here](https://github.com/shopware/frontends/blob/main/packages/composables/CHANGELOG.md)
139139

140-
### Latest changes: 0.10.0
140+
### Latest changes: 0.11.0
141141

142142
### Minor Changes
143143

144-
- [#281](https://github.com/shopware/frontends/pull/281) [`558c9d0`](https://github.com/shopware/frontends/commit/558c9d0f2127776a0542e8d1d95734cb5d4c7e75) Thanks [@mdanilowicz](https://github.com/mdanilowicz)! - Remove refreshing cart from create order function
144+
- [#284](https://github.com/shopware/frontends/pull/284) [`bb48e13`](https://github.com/shopware/frontends/commit/bb48e131570a2db4b7431c842e54ad67d9384cd5) Thanks [@mkucmus](https://github.com/mkucmus)! - Use function constructor instead of init method to set config for price displaying
145+
146+
### Patch Changes
147+
148+
- [#283](https://github.com/shopware/frontends/pull/283) [`e6a52ec`](https://github.com/shopware/frontends/commit/e6a52ec4b7c28627c55cbd8ca15b8458cedf53bd) Thanks [@BrocksiNet](https://github.com/BrocksiNet)! - Fixed initial listing suring search
149+
150+
- [#295](https://github.com/shopware/frontends/pull/295) [`23a0a53`](https://github.com/shopware/frontends/commit/23a0a532410990c0075ea7fff622949ccdecfd49) Thanks [@patzick](https://github.com/patzick)! - bump dependencies
151+
152+
- Updated dependencies [[`14d97c5`](https://github.com/shopware/frontends/commit/14d97c5942adf5a49163625b2740d95bc5772689)]:
153+
- @shopware-pwa/api-client@0.5.1
154+
- @shopware-pwa/helpers-next@0.3.1

packages/composables/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopware-pwa/composables-next",
3-
"version": "0.10.0",
3+
"version": "0.11.0",
44
"description": "Shopware Frontends composables for Vue",
55
"author": "Shopware",
66
"repository": {

packages/eslint-config-shopware/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# eslint-config-shopware
22

3+
## 0.0.3
4+
5+
### Patch Changes
6+
7+
- [#295](https://github.com/shopware/frontends/pull/295) [`23a0a53`](https://github.com/shopware/frontends/commit/23a0a532410990c0075ea7fff622949ccdecfd49) Thanks [@patzick](https://github.com/patzick)! - bump dependencies
8+
39
## 0.0.2
410

511
### Patch Changes

packages/eslint-config-shopware/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-shopware",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"private": true,
55
"main": "index.js",
66
"license": "MIT",

packages/helpers/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @shopware-pwa/helpers-next
22

3+
## 0.3.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`8a94e37`](https://github.com/shopware/frontends/commit/8a94e3739a24e5d748ba807852c5e5c2dfbe6cb4)]:
8+
- @shopware-pwa/types@0.5.5
9+
310
## 0.3.0
411

512
### Minor Changes

packages/helpers/README.md

+3-9
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,9 @@ Documentation specific for this package: [helpers](https://frontends.shopware.co
1212

1313
Full changelog for stable version is available [here](https://github.com/shopware/frontends/blob/main/packages/helpers/CHANGELOG.md)
1414

15-
### Latest changes: 0.3.0
16-
17-
### Minor Changes
18-
19-
- [#230](https://github.com/shopware/frontends/pull/230) [`d1e07d6`](https://github.com/shopware/frontends/commit/d1e07d6f73135cb742807aba78f1271943d47beb) Thanks [@mdanilowicz](https://github.com/mdanilowicz)! - Add internationalization helpers with mocks data
15+
### Latest changes: 0.3.1
2016

2117
### Patch Changes
2218

23-
- [#243](https://github.com/shopware/frontends/pull/243) [`d5f0bcc`](https://github.com/shopware/frontends/commit/d5f0bcc18cb581a48185cb8622d0e0d9b7fea23f) Thanks [@patzick](https://github.com/patzick)! - bump dependencies
24-
25-
- Updated dependencies [[`e359aa2`](https://github.com/shopware/frontends/commit/e359aa28c9c9c7fb2521be3ebd5b847c855e4d24), [`5bb88e9`](https://github.com/shopware/frontends/commit/5bb88e9f4422141de916b704f13e9ecce9b8f2f2)]:
26-
- @shopware-pwa/types@0.5.4
19+
- Updated dependencies [[`8a94e37`](https://github.com/shopware/frontends/commit/8a94e3739a24e5d748ba807852c5e5c2dfbe6cb4)]:
20+
- @shopware-pwa/types@0.5.5

packages/helpers/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopware-pwa/helpers-next",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "Shopware helpers for accessing API data",
55
"author": "Shopware",
66
"repository": {

0 commit comments

Comments
 (0)