Skip to content

Commit de2aef0

Browse files
chore: release
1 parent da06b74 commit de2aef0

19 files changed

Lines changed: 118 additions & 72 deletions

.changeset/friendly-custom-fields.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changeset/modern-api-gen-formatter.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/quiet-countries-fetch.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/tidy-falcons-glow.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/api-client/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @shopware/api-client
22

3+
## 1.5.1
4+
5+
### Patch Changes
6+
7+
- [#2515](https://github.com/shopware/frontends/pull/2515) [`978b02c`](https://github.com/shopware/frontends/commit/978b02c969ca4b16f5fc1d7a953ec4cce3d98173) Thanks [@patzick](https://github.com/patzick)! - Generate `customFields` properties with a dedicated `CustomFields` type instead of the broader `GenericRecord` type.
8+
39
## 1.5.0
410

511
### Minor Changes
@@ -46,6 +52,7 @@
4652
### Minor Changes
4753

4854
- [#1865](https://github.com/shopware/frontends/pull/1865) [`d016d6b`](https://github.com/shopware/frontends/commit/d016d6b845bff9a148405a74dae88d7fc81ec99c) Thanks [@patzick](https://github.com/patzick)! - Added new methods to manage API client base configuration:
55+
4956
- `updateBaseConfig`: Allows updating baseURL and accessToken in a single call
5057
- `getBaseConfig`: Returns current baseURL and accessToken values
5158

@@ -98,6 +105,7 @@
98105
- [#1316](https://github.com/shopware/frontends/pull/1316) [`15bebee`](https://github.com/shopware/frontends/commit/15bebee0daefacc078ac99fea8725b95fdbc1cc7) Thanks [@mkucmus](https://github.com/mkucmus)! - Extend Criteria type in exported admin API schema
99106

100107
- [#1323](https://github.com/shopware/frontends/pull/1323) [`ebb10eb`](https://github.com/shopware/frontends/commit/ebb10eba629b3ec2c5a4a50fa12ef0b134601d6f) Thanks [@mkucmus](https://github.com/mkucmus)! - Don't send Content-Type in case of [multipart/form-data](https://www.w3.org/Protocols/rfc1341/7_2_Multipart.html).
108+
101109
- Ignore `Content-Type` header in browser context when `multipart/form-data` is set.
102110
- _boundary_ is set by a browser automatically.
103111

@@ -235,9 +243,11 @@
235243
### Patch Changes
236244

237245
- [#385](https://github.com/shopware/frontends/pull/385) [`5d7e7973`](https://github.com/shopware/frontends/commit/5d7e7973437a4d74d19ec2fa0765c6d927bf8b2a) Thanks [@patzick](https://github.com/patzick)! - Dependency changes:
246+
238247
- Changed dependency _ofetch_ from **^1.2.1** to **^1.3.3**
239248

240249
- [#375](https://github.com/shopware/frontends/pull/375) [`bd88d6fa`](https://github.com/shopware/frontends/commit/bd88d6fa95de2b90f8a1e08e34159b46c5932b3b) Thanks [@patzick](https://github.com/patzick)! - Dependency changes:
250+
241251
- Changed dependency _ofetch_ from **^1.1.1** to **^1.2.1**
242252

243253
- [`15d6e696`](https://github.com/shopware/frontends/commit/15d6e69616bd9bc5ad32f2a5f697e00c45a94784) Thanks [@patzick](https://github.com/patzick)! - Emit cjs bundle

packages/api-client/README.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -496,14 +496,8 @@ apiClient.invoke("getProducts get /product", {
496496

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

499-
### Latest changes: 1.5.0
500-
501-
### Minor Changes
502-
503-
- [#2263](https://github.com/shopware/frontends/pull/2263) [`b5f7e2a`](https://github.com/shopware/frontends/commit/b5f7e2a20c9dfdde1690e9006252d847f732bc0a) Thanks [@mkucmus](https://github.com/mkucmus)! - Regenerated Store API schemas from the latest backend. Removed obsolete schema patches that were fixed upstream.
504-
505-
- [#2261](https://github.com/shopware/frontends/pull/2261) [`9604f22`](https://github.com/shopware/frontends/commit/9604f22678150d04c3c3156fd8ee2ce440c8c8bf) Thanks [@mkucmus](https://github.com/mkucmus)! - update admin API types to be aligned with the backend.
499+
### Latest changes: 1.5.1
506500

507501
### Patch Changes
508502

509-
- [#2261](https://github.com/shopware/frontends/pull/2261) [`9604f22`](https://github.com/shopware/frontends/commit/9604f22678150d04c3c3156fd8ee2ce440c8c8bf) Thanks [@mkucmus](https://github.com/mkucmus)! - Changed `scopes` to `scope` in OAuth token request types to align with RFC 6749 and League OAuth2 server implementation.
503+
- [#2515](https://github.com/shopware/frontends/pull/2515) [`978b02c`](https://github.com/shopware/frontends/commit/978b02c969ca4b16f5fc1d7a953ec4cce3d98173) Thanks [@patzick](https://github.com/patzick)! - Generate `customFields` properties with a dedicated `CustomFields` type instead of the broader `GenericRecord` type.

packages/api-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopware/api-client",
3-
"version": "1.5.0",
3+
"version": "1.5.1",
44
"description": "Shopware client for API connection.",
55
"author": "Shopware",
66
"type": "module",

packages/api-gen/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @shopware/api-gen
22

3+
## 1.5.1
4+
5+
### Patch Changes
6+
7+
- [#2515](https://github.com/shopware/frontends/pull/2515) [`978b02c`](https://github.com/shopware/frontends/commit/978b02c969ca4b16f5fc1d7a953ec4cce3d98173) Thanks [@patzick](https://github.com/patzick)! - Generate `customFields` properties with a dedicated `CustomFields` type instead of the broader `GenericRecord` type.
8+
9+
- [#2516](https://github.com/shopware/frontends/pull/2516) [`13a3766`](https://github.com/shopware/frontends/commit/13a37660fbbf63054b9e7d02f39d161bb7f2b065) Thanks [@patzick](https://github.com/patzick)! - Use `oxfmt` instead of Prettier for generated API files.
10+
11+
- Updated dependencies [[`978b02c`](https://github.com/shopware/frontends/commit/978b02c969ca4b16f5fc1d7a953ec4cce3d98173)]:
12+
- @shopware/api-client@1.5.1
13+
314
## 1.5.0
415

516
### Minor Changes
@@ -33,6 +44,7 @@
3344
```
3445

3546
- [#2126](https://github.com/shopware/frontends/pull/2126) [`e595bc1`](https://github.com/shopware/frontends/commit/e595bc1ea6afe01a0065300277a78ef8c1fe5667) Thanks [@mdanilowicz](https://github.com/mdanilowicz)! - Enhanced OpenAPI schema override merging to properly handle conflicts between `$ref` and composition keywords (`oneOf`, `anyOf`, `allOf`, `not`). When merging overrides:
47+
3648
- Composition keywords now automatically remove conflicting `$ref` properties
3749
- `$ref` overrides can replace composition keywords entirely
3850
- Different composition keywords can replace each other (e.g., `allOf``oneOf`)
@@ -257,6 +269,7 @@
257269
### Patch Changes
258270

259271
- [#396](https://github.com/shopware/frontends/pull/396) [`dfc49b80`](https://github.com/shopware/frontends/commit/dfc49b80bcaa8e00b71e0dff6e35b413383274f5) Thanks [@patzick](https://github.com/patzick)! - Dependency changes:
272+
260273
- Changed dependency _openapi-typescript_ from **^6.5.5** to **^6.6.1**
261274

262275
- [#418](https://github.com/shopware/frontends/pull/418) [`67cf5650`](https://github.com/shopware/frontends/commit/67cf56506f58973bf3ab8bb8acef06758a6a6720) Thanks [@patzick](https://github.com/patzick)! - Dependency changes:
@@ -267,10 +280,12 @@
267280
### Patch Changes
268281

269282
- [#369](https://github.com/shopware/frontends/pull/369) [`bc7a2db2`](https://github.com/shopware/frontends/commit/bc7a2db292d67cc448a901c1b7a9b5cb7dfbcd04) Thanks [@patzick](https://github.com/patzick)! - Dependency changes:
283+
270284
- Changed dependency _openapi-typescript_ from **^6.4.0** to **^6.5.2**
271285
- Changed dependency _prettier_ from **^3.0.0** to **^3.0.2**
272286

273287
- [#385](https://github.com/shopware/frontends/pull/385) [`5d7e7973`](https://github.com/shopware/frontends/commit/5d7e7973437a4d74d19ec2fa0765c6d927bf8b2a) Thanks [@patzick](https://github.com/patzick)! - Dependency changes:
288+
274289
- Changed dependency _ofetch_ from **^1.2.1** to **^1.3.3**
275290
- Changed dependency _openapi-typescript_ from **^6.5.3** to **^6.5.5**
276291
- Changed dependency _prettier_ from **^3.0.2** to **^3.0.3**

packages/api-gen/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -401,13 +401,13 @@ await split({
401401

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

404-
### Latest changes: 1.5.0
404+
### Latest changes: 1.5.1
405405

406-
### Minor Changes
406+
### Patch Changes
407407

408-
- [#2262](https://github.com/shopware/frontends/pull/2262) [`7a20ea0`](https://github.com/shopware/frontends/commit/7a20ea0454ee237c772e532a03408477e968a958) Thanks [@mkucmus](https://github.com/mkucmus)! - Added support for `client_credentials` grant type authentication when loading Admin API schema. Set `SHOPWARE_ADMIN_CLIENT_SECRET` and `SHOPWARE_ADMIN_CLIENT_ID`environment variables to use integration credentials instead of username/password.
408+
- [#2515](https://github.com/shopware/frontends/pull/2515) [`978b02c`](https://github.com/shopware/frontends/commit/978b02c969ca4b16f5fc1d7a953ec4cce3d98173) Thanks [@patzick](https://github.com/patzick)! - Generate `customFields` properties with a dedicated `CustomFields` type instead of the broader `GenericRecord` type.
409409

410-
### Patch Changes
410+
- [#2516](https://github.com/shopware/frontends/pull/2516) [`13a3766`](https://github.com/shopware/frontends/commit/13a37660fbbf63054b9e7d02f39d161bb7f2b065) Thanks [@patzick](https://github.com/patzick)! - Use `oxfmt` instead of Prettier for generated API files.
411411

412-
- Updated dependencies [[`9604f22`](https://github.com/shopware/frontends/commit/9604f22678150d04c3c3156fd8ee2ce440c8c8bf), [`b5f7e2a`](https://github.com/shopware/frontends/commit/b5f7e2a20c9dfdde1690e9006252d847f732bc0a), [`9604f22`](https://github.com/shopware/frontends/commit/9604f22678150d04c3c3156fd8ee2ce440c8c8bf)]:
413-
- @shopware/api-client@1.5.0
412+
- Updated dependencies [[`978b02c`](https://github.com/shopware/frontends/commit/978b02c969ca4b16f5fc1d7a953ec4cce3d98173)]:
413+
- @shopware/api-client@1.5.1

packages/api-gen/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shopware/api-gen",
3-
"version": "1.5.0",
3+
"version": "1.5.1",
44
"description": "Shopware CLI for API client generation.",
55
"author": "Shopware",
66
"type": "module",

0 commit comments

Comments
 (0)