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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,11 @@

### Migration
- No breaking changes. If you relied on rejecting schemeless base URLs, be aware they now default to `http://`.
## 0.1.2 — 2025-09-13

### Fixes
- Add explicit `commons-lang3` runtime dependency required by `commons-configuration2` to prevent `NoClassDefFoundError: org/apache/commons/lang3/SystemProperties` in consumer apps.

### Notes
- If you previously consumed `0.1.1`, update to `0.1.2` to pick up the dependency fix. Dependency metadata for `0.1.1` may be cached by your build; a version bump ensures the fix is resolved.

2 changes: 1 addition & 1 deletion phoenixd-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>xyz.tcheeric</groupId>
<artifactId>phoenixd-java</artifactId>
<version>0.1.1</version>
<version>0.1.2</version>
</parent>

<artifactId>phoenixd-base</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion phoenixd-mock/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>xyz.tcheeric</groupId>
<artifactId>phoenixd-java</artifactId>
<version>0.1.1</version>
<version>0.1.2</version>
</parent>

<artifactId>phoenixd-mock</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion phoenixd-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>xyz.tcheeric</groupId>
<artifactId>phoenixd-java</artifactId>
<version>0.1.1</version>
<version>0.1.2</version>
</parent>

<artifactId>phoenixd-model</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions phoenixd-rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<parent>
<groupId>xyz.tcheeric</groupId>
<artifactId>phoenixd-java</artifactId>
<version>0.1.1</version>
<version>0.1.2</version>
</parent>

<artifactId>phoenixd-rest</artifactId>
<packaging>jar</packaging>
<version>0.1.1</version>
<version>0.1.2</version>
<name>phoenixd-rest</name>
<url>https://maven.apache.org</url>

Expand Down
2 changes: 1 addition & 1 deletion phoenixd-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>xyz.tcheeric</groupId>
<artifactId>phoenixd-java</artifactId>
<version>0.1.1</version>
<version>0.1.2</version>
</parent>

<artifactId>phoenixd-test</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>xyz.tcheeric</groupId>
<artifactId>phoenixd-java</artifactId>
<version>0.1.1</version>
<version>0.1.2</version>
<packaging>pom</packaging>

<modules>
Expand Down
Loading