Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"packages/web": "1.7.3",
"packages/server": "1.20.2",
"packages/shared": "1.9.2",
"packages/angular/projects/angular-sdk": "1.1.0"
"packages/angular/projects/angular-sdk": "1.2.0"
}
16 changes: 16 additions & 0 deletions packages/angular/projects/angular-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
# Changelog


## [1.2.0](https://github.com/open-feature/js-sdk/compare/angular-sdk-v1.1.0...angular-sdk-v1.2.0) (2026-04-10)


### ✨ New Features

* support type-safe flag keys via module augmentation ([#1349](https://github.com/open-feature/js-sdk/issues/1349)) ([fb2ed4a](https://github.com/open-feature/js-sdk/commit/fb2ed4a7d64d9b8437975a0ef6cb4fe6a12dd671))
* support type-safe variant values for InMemoryProvider ([#1356](https://github.com/open-feature/js-sdk/issues/1356)) ([431f899](https://github.com/open-feature/js-sdk/commit/431f899191a2f7693fea9fab40f7cfb1f22f61f8))


### Dependencies

* The following workspace dependencies were updated
* devDependencies
* @openfeature/core bumped from ^1.8.1 to ^1.10.0
* @openfeature/web-sdk bumped from ^1.6.2 to ^1.8.0

## [1.1.0](https://github.com/open-feature/js-sdk/compare/angular-sdk-v1.0.0...angular-sdk-v1.1.0) (2026-02-18)


Expand Down
4 changes: 2 additions & 2 deletions packages/angular/projects/angular-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
<img alt="Specification" src="https://img.shields.io/static/v1?label=specification&message=v0.8.0&color=yellow&style=for-the-badge" />
</a>
<!-- x-release-please-start-version -->
<a href="https://github.com/open-feature/js-sdk/releases/tag/angular-sdk-v1.1.0">
<img alt="Release" src="https://img.shields.io/static/v1?label=release&message=v1.1.0&color=blue&style=for-the-badge" />
<a href="https://github.com/open-feature/js-sdk/releases/tag/angular-sdk-v1.2.0">
<img alt="Release" src="https://img.shields.io/static/v1?label=release&message=v1.2.0&color=blue&style=for-the-badge" />
</a>
<!-- x-release-please-end -->
<br/>
Expand Down
6 changes: 3 additions & 3 deletions packages/angular/projects/angular-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openfeature/angular-sdk",
"version": "1.1.0",
"version": "1.2.0",
"description": "OpenFeature Angular SDK",
"repository": {
"type": "git",
Expand All @@ -25,8 +25,8 @@
"tslib": "^2.3.0"
},
"devDependencies": {
"@openfeature/core": "^1.8.1",
"@openfeature/web-sdk": "^1.6.2",
"@openfeature/core": "^1.10.0",
"@openfeature/web-sdk": "^1.8.0",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The devDependencies for @openfeature/web-sdk is being updated to ^1.8.0, which is the version that introduces support for type-safe flag keys via module augmentation. However, the peerDependencies (line 22) still specifies ^1.4.1. Since this new feature is a primary highlight of this release, the peerDependencies should be updated to ^1.8.0 to ensure that users have a compatible version of the Web SDK installed. Without this update, users meeting the current peer dependency requirement will not be able to use the advertised type-safe flag keys.

"@angular/common": "^21.0.4",
"@angular/core": "^21.0.4"
},
Expand Down
Loading