Skip to content

Commit 84bdf09

Browse files
committed
Prepare release 0.8.15
Signed-off-by: Max Lambrecht <[email protected]>
1 parent 268a6e2 commit 84bdf09

File tree

4 files changed

+32
-13
lines changed

4 files changed

+32
-13
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## [0.8.15] - 2025-12-23
4+
5+
### Fixed
6+
7+
* Fix X509SVID hint deduplication to apply only to non-empty hints (#385)
8+
9+
### Dependency updates
10+
11+
* Remove lombok and replace all annotations with plain java implementations (#377)
12+
* Bump io.netty:netty-transport-native-kqueue to 4.2.9.Final (#381)
13+
* Bump com.google.protobuf to 0.9.6 (#389)
14+
15+
### Build
16+
17+
* Upgrade to Gradle 9.2.1 and migrate Shadow plugin (#380)
18+
* Remove deprecations and prep for Gradle 10 (#384)
19+
* Add Makefile (#388)
20+
21+
322
## [0.8.14] - 2025-12-09
423

524
### Dependency updates

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ X.509 and JWT SVIDs and bundles.
2626
Download
2727
--------
2828

29-
The JARs can be downloaded from [Maven Central](https://search.maven.org/search?q=g:io.spiffe%20AND%20v:0.8.14).
29+
The JARs can be downloaded from [Maven Central](https://search.maven.org/search?q=g:io.spiffe%20AND%20v:0.8.15).
3030

3131
The dependencies can be added to `pom.xml`
3232

@@ -35,7 +35,7 @@ To import the `java-spiffe-provider` component:
3535
<dependency>
3636
<groupId>io.spiffe</groupId>
3737
<artifactId>java-spiffe-provider</artifactId>
38-
<version>0.8.14</version>
38+
<version>0.8.15</version>
3939
</dependency>
4040
```
4141
The `java-spiffe-provider` component imports the `java-spiffe-core` component.
@@ -45,20 +45,20 @@ To just import the `java-spiffe-core` component:
4545
<dependency>
4646
<groupId>io.spiffe</groupId>
4747
<artifactId>java-spiffe-core</artifactId>
48-
<version>0.8.14</version>
48+
<version>0.8.15</version>
4949
</dependency>
5050
```
5151

5252
Using Gradle:
5353

5454
Import `java-spiffe-provider`:
5555
```gradle
56-
implementation group: 'io.spiffe', name: 'java-spiffe-provider', version: '0.8.14'
56+
implementation group: 'io.spiffe', name: 'java-spiffe-provider', version: '0.8.15'
5757
```
5858

5959
Import `java-spiffe-core`:
6060
```gradle
61-
implementation group: 'io.spiffe', name: 'java-spiffe-core', version: '0.8.14'
61+
implementation group: 'io.spiffe', name: 'java-spiffe-core', version: '0.8.15'
6262
```
6363

6464
### MacOS Support
@@ -72,14 +72,14 @@ In case run on a osx-x86 architecture, add to your `pom.xml`:
7272
<dependency>
7373
<groupId>io.spiffe</groupId>
7474
<artifactId>grpc-netty-macos</artifactId>
75-
<version>0.8.14</version>
75+
<version>0.8.15</version>
7676
<scope>runtime</scope>
7777
</dependency>
7878
```
7979

8080
Using Gradle:
8181
```gradle
82-
runtimeOnly group: 'io.spiffe', name: 'grpc-netty-macos', version: '0.8.14'
82+
runtimeOnly group: 'io.spiffe', name: 'grpc-netty-macos', version: '0.8.15'
8383
```
8484

8585
#### Aarch64 (M1) Architecture
@@ -91,15 +91,15 @@ If you are running the aarch64 architecture (M1 CPUs), add to your `pom.xml`:
9191
<dependency>
9292
<groupId>io.spiffe</groupId>
9393
<artifactId>grpc-netty-macos-aarch64</artifactId>
94-
<version>0.8.14</version>
94+
<version>0.8.15</version>
9595
<scope>runtime</scope>
9696
</dependency>
9797
```
9898

9999
Using Gradle:
100100

101101
```gradle
102-
runtimeOnly group: 'io.spiffe', name: 'grpc-netty-macos-aarch64', version: '0.8.14'
102+
runtimeOnly group: 'io.spiffe', name: 'grpc-netty-macos-aarch64', version: '0.8.15'
103103
```
104104

105105
*Caveat: not all OpenJDK distributions are aarch64 native, make sure your JDK is also running
@@ -112,7 +112,7 @@ The `java-spiffe-helper` module manages X.509 SVIDs and Bundles in Java Keystore
112112

113113
### Docker Image
114114

115-
Pull the `java-spiffe-helper` image from `ghcr.io/spiffe/java-spiffe-helper:0.8.14`.
115+
Pull the `java-spiffe-helper` image from `ghcr.io/spiffe/java-spiffe-helper:0.8.15`.
116116

117117
For more details, see [java-spiffe-helper/README.md](java-spiffe-helper/README.md).
118118

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=0.8.14
1+
version=0.8.15

java-spiffe-helper/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ The Helper automatically gets the SVID updates and stores them in the KeyStore a
1010

1111
On Linux:
1212

13-
`java -jar java-spiffe-helper-0.8.14-linux-x86_64.jar`
13+
`java -jar java-spiffe-helper-0.8.15-linux-x86_64.jar`
1414

1515
On Mac OS:
1616

17-
`java -jar java-spiffe-helper-0.8.14-osx-x86_64.jar`
17+
`java -jar java-spiffe-helper-0.8.15-osx-x86_64.jar`
1818

1919
You can run the utility with the `-c` or `--config` option to specify the path to the configuration file. By default, it
2020
will look for a configuration file named `conf/java-spiffe-helper.properties` in the current working directory.

0 commit comments

Comments
 (0)