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 @@ -6,7 +6,7 @@
"providers/env-var": "0.0.12",
"providers/jsonlogic-eval-provider": "1.2.1",
"providers/unleash": "0.1.3-alpha",
"providers/flipt": "0.1.3",
"providers/flipt": "0.1.4",
"providers/configcat": "0.2.1",
"providers/statsig": "0.2.1",
"providers/multiprovider": "0.0.3",
Expand Down
7 changes: 7 additions & 0 deletions providers/flipt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.1.4](https://github.com/open-feature/java-sdk-contrib/compare/dev.openfeature.contrib.providers.flipt-v0.1.3...dev.openfeature.contrib.providers.flipt-v0.1.4) (2026-03-02)


### 🐛 Bug Fixes

* **security:** update dependency com.fasterxml.jackson.core:jackson-core to v2.21.1 [security] ([#1705](https://github.com/open-feature/java-sdk-contrib/issues/1705)) ([7760d09](https://github.com/open-feature/java-sdk-contrib/commit/7760d098b6c965c5a299e274ddf790e10b967738))
Copy link
Contributor

Choose a reason for hiding this comment

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

critical

The security fix mentioned in this changelog entry for com.fasterxml.jackson.core:jackson-core appears to be incorrectly implemented. In the providers/flipt/pom.xml file, the updated dependency is defined with <scope>test</scope>:

<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-core</artifactId>
    <version>2.21.1</version>
    <scope>test</scope>
</dependency>

This configuration means the updated, secure version of jackson-core is only used during the test phase and is not included in the final artifact. The artifact will instead use the older, vulnerable version brought in as a transitive dependency from jackson-databind. To ensure the security fix is effective, the <scope>test</scope> should be removed from the jackson-core dependency declaration.


## [0.1.3](https://github.com/open-feature/java-sdk-contrib/compare/dev.openfeature.contrib.providers.flipt-v0.1.2...dev.openfeature.contrib.providers.flipt-v0.1.3) (2025-07-09)


Expand Down
2 changes: 1 addition & 1 deletion providers/flipt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<dependency>
<groupId>dev.openfeature.contrib.providers</groupId>
<artifactId>flipt</artifactId>
<version>0.1.3</version>
<version>0.1.4</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion providers/flipt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>
<groupId>dev.openfeature.contrib.providers</groupId>
<artifactId>flipt</artifactId>
<version>0.1.3</version> <!--x-release-please-version -->
<version>0.1.4</version> <!--x-release-please-version -->

<name>flipt</name>
<description>Flipt provider for Java</description>
Expand Down
2 changes: 1 addition & 1 deletion providers/flipt/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.3
0.1.4
Loading