Skip to content

Commit be14a81

Browse files
chore(main): release dev.openfeature.contrib.tools.junitopenfeature 0.2.0
1 parent 0ba5758 commit be14a81

File tree

5 files changed

+34
-4
lines changed

5 files changed

+34
-4
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
"providers/configcat": "0.1.0",
1111
"providers/statsig": "0.1.0",
1212
"providers/multiprovider": "0.0.1",
13-
"tools/junit-openfeature": "0.1.2"
13+
"tools/junit-openfeature": "0.2.0"
1414
}

tools/junit-openfeature/CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# Changelog
22

3+
## [0.2.0](https://github.com/jarebudev/java-sdk-contrib/compare/dev.openfeature.contrib.tools.junitopenfeature-v0.1.2...dev.openfeature.contrib.tools.junitopenfeature-v0.2.0) (2025-04-15)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* use sdk-maintained state, require 1.12 ([#964](https://github.com/jarebudev/java-sdk-contrib/issues/964))
9+
10+
### 🐛 Bug Fixes
11+
12+
* added missing dependency and installation instruction ([#895](https://github.com/jarebudev/java-sdk-contrib/issues/895)) ([6748d02](https://github.com/jarebudev/java-sdk-contrib/commit/6748d02403f0ceecb6cb9ecdfb2fecf98423a7db))
13+
* **deps:** update dependency org.apache.commons:commons-lang3 to v3.16.0 ([#908](https://github.com/jarebudev/java-sdk-contrib/issues/908)) ([d21cfe3](https://github.com/jarebudev/java-sdk-contrib/commit/d21cfe3ac7da1ff6e1a4dc2ee4b0db5c24ed4847))
14+
* **deps:** update dependency org.apache.commons:commons-lang3 to v3.17.0 ([#932](https://github.com/jarebudev/java-sdk-contrib/issues/932)) ([c598d9f](https://github.com/jarebudev/java-sdk-contrib/commit/c598d9f0a61f2324fb85d72fdfea34811283c575))
15+
* race condition causing default when multiple flags are used ([#983](https://github.com/jarebudev/java-sdk-contrib/issues/983)) ([356a973](https://github.com/jarebudev/java-sdk-contrib/commit/356a973cf2b6ddf82b8311ea200fa30df4f1d048))
16+
17+
18+
### ✨ New Features
19+
20+
* Add JUnit5 extension for OpenFeature ([#888](https://github.com/jarebudev/java-sdk-contrib/issues/888)) ([9fff9db](https://github.com/jarebudev/java-sdk-contrib/commit/9fff9db4bcee3c3ae8128a1b2fb040f53df1d5ed))
21+
* added interception of parameterized tests to Junit OpenFeature Extension ([#1093](https://github.com/jarebudev/java-sdk-contrib/issues/1093)) ([a78c906](https://github.com/jarebudev/java-sdk-contrib/commit/a78c906b24b53f7d25eb01aad85ed614eb30ca05))
22+
* use sdk-maintained state, require 1.12 ([#964](https://github.com/jarebudev/java-sdk-contrib/issues/964)) ([4a041b0](https://github.com/jarebudev/java-sdk-contrib/commit/4a041b0dda9c4e460f4c2199f3bc680df0dda621))
23+
24+
25+
### 🧹 Chore
26+
27+
* **main:** release dev.openfeature.contrib.tools.junitopenfeature 0.0.2 ([#892](https://github.com/jarebudev/java-sdk-contrib/issues/892)) ([0efebc7](https://github.com/jarebudev/java-sdk-contrib/commit/0efebc7630657a3f398caadaf652e79b525e5ef9))
28+
* **main:** release dev.openfeature.contrib.tools.junitopenfeature 0.0.3 ([#896](https://github.com/jarebudev/java-sdk-contrib/issues/896)) ([1c23b15](https://github.com/jarebudev/java-sdk-contrib/commit/1c23b156d09011216cb57450c3ce23a309d5e657))
29+
* **main:** release dev.openfeature.contrib.tools.junitopenfeature 0.1.0 ([#933](https://github.com/jarebudev/java-sdk-contrib/issues/933)) ([1d11f63](https://github.com/jarebudev/java-sdk-contrib/commit/1d11f630c9f2d32e1e623f80a3a4cbc0386777f2))
30+
* **main:** release dev.openfeature.contrib.tools.junitopenfeature 0.1.1 ([#985](https://github.com/jarebudev/java-sdk-contrib/issues/985)) ([38fa733](https://github.com/jarebudev/java-sdk-contrib/commit/38fa7332cb3d0037b268bd244d060c348b4b913f))
31+
* **main:** release dev.openfeature.contrib.tools.junitopenfeature 0.1.2 ([#1094](https://github.com/jarebudev/java-sdk-contrib/issues/1094)) ([c8435e7](https://github.com/jarebudev/java-sdk-contrib/commit/c8435e7182c3f351e8ae31492226aa0d99d126a3))
32+
333
## [0.1.2](https://github.com/open-feature/java-sdk-contrib/compare/dev.openfeature.contrib.tools.junitopenfeature-v0.1.1...dev.openfeature.contrib.tools.junitopenfeature-v0.1.2) (2024-12-03)
434

535

tools/junit-openfeature/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A JUnit5 extension to reduce boilerplate code for testing code which utilizes Op
88
<dependency>
99
<groupId>dev.openfeature.contrib.tools</groupId>
1010
<artifactId>junitopenfeature</artifactId>
11-
<version>0.1.2</version>
11+
<version>0.2.0</version>
1212
<scope>test</scope>
1313
</dependency>
1414
```

tools/junit-openfeature/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111
<groupId>dev.openfeature.contrib.tools</groupId>
1212
<artifactId>junitopenfeature</artifactId>
13-
<version>0.1.2</version> <!--x-release-please-version -->
13+
<version>0.2.0</version> <!--x-release-please-version -->
1414

1515
<name>junit-openfeature-extension</name>
1616
<description>JUnit5 Extension for OpenFeature</description>

tools/junit-openfeature/version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.2
1+
0.2.0

0 commit comments

Comments
 (0)