Skip to content

Commit 7996666

Browse files
feat(changeset): version packages (#845)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 31df3a8 commit 7996666

109 files changed

Lines changed: 770 additions & 116 deletions

File tree

Some content is hidden

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

.changeset/fix-framework-peer-deps.md

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

packages/blocks/account/user-account/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @o2s/blocks.user-account
22

3+
## 1.6.1
4+
5+
### Patch Changes
6+
7+
- 31df3a8: fix(deps): move @o2s/framework to peerDependencies in all published packages
8+
9+
`@o2s/framework` was listed in `dependencies` of blocks, integrations, modules, and utils packages. When installed from npm with mismatched versions across the dependency tree, npm would create nested copies of `@o2s/framework` with different class references. This caused NestJS to fail resolving DI tokens (e.g. `SearchService`) because injected class instances came from a different `@o2s/framework` copy than the one registered in the application module.
10+
11+
Moved `@o2s/framework` to `peerDependencies` across all affected packages so that the consuming application always provides a single shared copy. Also moved `@o2s/integrations.mocked` to `peerDependencies` in `@o2s/integrations.mocked-dxp`.
12+
13+
- Updated dependencies [31df3a8]
14+
- @o2s/utils.api-harmonization@0.3.4
15+
- @o2s/utils.frontend@0.6.1
16+
317
## 1.6.0
418

519
### Minor Changes

packages/blocks/account/user-account/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@o2s/blocks.user-account",
3-
"version": "1.6.0",
3+
"version": "1.6.1",
44
"private": false,
55
"license": "MIT",
66
"description": "A block displaying and managing user account information.",

packages/blocks/billing/invoice-list/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @o2s/blocks.invoice-list
22

3+
## 1.8.1
4+
5+
### Patch Changes
6+
7+
- 31df3a8: fix(deps): move @o2s/framework to peerDependencies in all published packages
8+
9+
`@o2s/framework` was listed in `dependencies` of blocks, integrations, modules, and utils packages. When installed from npm with mismatched versions across the dependency tree, npm would create nested copies of `@o2s/framework` with different class references. This caused NestJS to fail resolving DI tokens (e.g. `SearchService`) because injected class instances came from a different `@o2s/framework` copy than the one registered in the application module.
10+
11+
Moved `@o2s/framework` to `peerDependencies` across all affected packages so that the consuming application always provides a single shared copy. Also moved `@o2s/integrations.mocked` to `peerDependencies` in `@o2s/integrations.mocked-dxp`.
12+
13+
- Updated dependencies [31df3a8]
14+
- @o2s/utils.api-harmonization@0.3.4
15+
- @o2s/utils.frontend@0.6.1
16+
317
## 1.8.0
418

519
### Minor Changes

packages/blocks/billing/invoice-list/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@o2s/blocks.invoice-list",
3-
"version": "1.8.0",
3+
"version": "1.8.1",
44
"private": false,
55
"license": "MIT",
66
"description": "A block for displaying and managing invoice list.",

packages/blocks/billing/payments-history/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @o2s/blocks.payments-history
22

3+
## 1.7.1
4+
5+
### Patch Changes
6+
7+
- 31df3a8: fix(deps): move @o2s/framework to peerDependencies in all published packages
8+
9+
`@o2s/framework` was listed in `dependencies` of blocks, integrations, modules, and utils packages. When installed from npm with mismatched versions across the dependency tree, npm would create nested copies of `@o2s/framework` with different class references. This caused NestJS to fail resolving DI tokens (e.g. `SearchService`) because injected class instances came from a different `@o2s/framework` copy than the one registered in the application module.
10+
11+
Moved `@o2s/framework` to `peerDependencies` across all affected packages so that the consuming application always provides a single shared copy. Also moved `@o2s/integrations.mocked` to `peerDependencies` in `@o2s/integrations.mocked-dxp`.
12+
13+
- Updated dependencies [31df3a8]
14+
- @o2s/utils.api-harmonization@0.3.4
15+
- @o2s/utils.frontend@0.6.1
16+
317
## 1.7.0
418

519
### Minor Changes

packages/blocks/billing/payments-history/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@o2s/blocks.payments-history",
3-
"version": "1.7.0",
3+
"version": "1.7.1",
44
"private": false,
55
"license": "MIT",
66
"description": "A block displaying payment history.",

packages/blocks/billing/payments-summary/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @o2s/blocks.payments-summary
22

3+
## 1.7.1
4+
5+
### Patch Changes
6+
7+
- 31df3a8: fix(deps): move @o2s/framework to peerDependencies in all published packages
8+
9+
`@o2s/framework` was listed in `dependencies` of blocks, integrations, modules, and utils packages. When installed from npm with mismatched versions across the dependency tree, npm would create nested copies of `@o2s/framework` with different class references. This caused NestJS to fail resolving DI tokens (e.g. `SearchService`) because injected class instances came from a different `@o2s/framework` copy than the one registered in the application module.
10+
11+
Moved `@o2s/framework` to `peerDependencies` across all affected packages so that the consuming application always provides a single shared copy. Also moved `@o2s/integrations.mocked` to `peerDependencies` in `@o2s/integrations.mocked-dxp`.
12+
13+
- Updated dependencies [31df3a8]
14+
- @o2s/utils.api-harmonization@0.3.4
15+
- @o2s/utils.frontend@0.6.1
16+
317
## 1.7.0
418

519
### Minor Changes

packages/blocks/billing/payments-summary/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@o2s/blocks.payments-summary",
3-
"version": "1.7.0",
3+
"version": "1.7.1",
44
"private": false,
55
"license": "MIT",
66
"description": "A block displaying a summary of payments, including overdue and to-be-paid amounts.",

packages/blocks/checkout/cart/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @o2s/blocks.cart
22

3+
## 0.4.1
4+
5+
### Patch Changes
6+
7+
- 31df3a8: fix(deps): move @o2s/framework to peerDependencies in all published packages
8+
9+
`@o2s/framework` was listed in `dependencies` of blocks, integrations, modules, and utils packages. When installed from npm with mismatched versions across the dependency tree, npm would create nested copies of `@o2s/framework` with different class references. This caused NestJS to fail resolving DI tokens (e.g. `SearchService`) because injected class instances came from a different `@o2s/framework` copy than the one registered in the application module.
10+
11+
Moved `@o2s/framework` to `peerDependencies` across all affected packages so that the consuming application always provides a single shared copy. Also moved `@o2s/integrations.mocked` to `peerDependencies` in `@o2s/integrations.mocked-dxp`.
12+
13+
- Updated dependencies [31df3a8]
14+
- @o2s/utils.api-harmonization@0.3.4
15+
- @o2s/utils.frontend@0.6.1
16+
317
## 0.4.0
418

519
### Minor Changes

0 commit comments

Comments
 (0)