Skip to content
Merged
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.6.1",
"packages/server": "1.19.0",
"packages/shared": "1.9.1",
"packages/angular/projects/angular-sdk": "0.0.16"
"packages/angular/projects/angular-sdk": "0.0.17"
}
18 changes: 18 additions & 0 deletions packages/angular/projects/angular-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
# Changelog


## [0.0.17](https://github.com/open-feature/js-sdk/compare/angular-sdk-v0.0.16...angular-sdk-v0.0.17) (2025-09-30)

### ✨ New Features

* add feature flag service for angular #1247


Copy link
Contributor

Choose a reason for hiding this comment

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

medium

There's an extra blank line here. To maintain a clean and consistent format in the changelog, it's best to have only a single blank line after a heading.

### 🐛 Bug Fixes

* angular tests in main ([#1251](https://github.com/open-feature/js-sdk/issues/1251)) ([f42011d](https://github.com/open-feature/js-sdk/commit/f42011d1f8f6949022ceefbd6491fca2baa65dce))


Copy link
Contributor

Choose a reason for hiding this comment

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

medium

Similar to the comment above, there's an extra blank line here. Removing it will improve the consistency of the document's formatting.

### Dependencies

* The following workspace dependencies were updated
* devDependencies
* @openfeature/web-sdk bumped from ^1.5.0 to ^1.6.2

## [0.0.16](https://github.com/open-feature/js-sdk/compare/angular-sdk-v0.0.15...angular-sdk-v0.0.16) (2025-07-25)


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-v0.0.16">
<img alt="Release" src="https://img.shields.io/static/v1?label=release&message=v0.0.16&color=blue&style=for-the-badge" />
<a href="https://github.com/open-feature/js-sdk/releases/tag/angular-sdk-v0.0.17">
<img alt="Release" src="https://img.shields.io/static/v1?label=release&message=v0.0.17&color=blue&style=for-the-badge" />
</a>
<!-- x-release-please-end -->
<br/>
Expand Down
4 changes: 2 additions & 2 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": "0.0.16",
"version": "0.0.17",
"description": "OpenFeature Angular SDK",
"repository": {
"type": "git",
Expand All @@ -26,7 +26,7 @@
},
"devDependencies": {
"@openfeature/core": "^1.8.1",
"@openfeature/web-sdk": "^1.5.0",
"@openfeature/web-sdk": "^1.6.2",
Copy link
Contributor

Choose a reason for hiding this comment

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

high

Updating @openfeature/web-sdk to ^1.6.2 without updating the corresponding @openfeature/core dependency might cause issues. The web-sdk likely depends on a newer version of @openfeature/core (e.g., ^1.9.0) than what is specified here (^1.8.1 on the line above). This can lead to dependency conflicts or testing with an unintended version of @openfeature/core. Please consider updating the @openfeature/core dev dependency as well to align with @openfeature/web-sdk's requirements.

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