Prepare release v0.8.12 (#331)

Signed-off-by: Max Lambrecht <maxlambrecht@gmail.com>
This commit is contained in:
Max Lambrecht 2025-06-05 12:59:30 -05:00 committed by GitHub
parent 30f5bcf688
commit 6d428b4494
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 27 additions and 13 deletions

View File

@ -1,5 +1,19 @@
# Changelog
## [0.8.12] - 2025-06-05
### Dependency updates
- Bump grpcVersion to 1.73.0 (#327)
- Bump com.nimbusds:nimbus-jose-jwt to 10.3 (#323)
- Bump io.netty:netty-transport-native-kqueue to 4.2.1.Final (#321)
- Bump com.google.protobuf:protobuf-gradle-plugin to 0.9.5 (#314)
- Bump org.projectlombok:lombok to 1.18.38 (#313)
### Documentation
- Add documentation about sslNegotiation config in java-spiffe-provider (#325)
## [0.8.11] - 2024-11-18
### Fixed

View File

@ -26,7 +26,7 @@ X.509 and JWT SVIDs and bundles.
Download
--------
The JARs can be downloaded from [Maven Central](https://search.maven.org/search?q=g:io.spiffe%20AND%20v:0.8.11).
The JARs can be downloaded from [Maven Central](https://search.maven.org/search?q=g:io.spiffe%20AND%20v:0.8.12).
The dependencies can be added to `pom.xml`
@ -35,7 +35,7 @@ To import the `java-spiffe-provider` component:
<dependency>
<groupId>io.spiffe</groupId>
<artifactId>java-spiffe-provider</artifactId>
<version>0.8.11</version>
<version>0.8.12</version>
</dependency>
```
The `java-spiffe-provider` component imports the `java-spiffe-core` component.
@ -45,7 +45,7 @@ To just import the `java-spiffe-core` component:
<dependency>
<groupId>io.spiffe</groupId>
<artifactId>java-spiffe-core</artifactId>
<version>0.8.11</version>
<version>0.8.12</version>
</dependency>
```
@ -53,12 +53,12 @@ Using Gradle:
Import `java-spiffe-provider`:
```gradle
implementation group: 'io.spiffe', name: 'java-spiffe-provider', version: '0.8.11'
implementation group: 'io.spiffe', name: 'java-spiffe-provider', version: '0.8.12'
```
Import `java-spiffe-core`:
```gradle
implementation group: 'io.spiffe', name: 'java-spiffe-core', version: '0.8.11'
implementation group: 'io.spiffe', name: 'java-spiffe-core', version: '0.8.12'
```
### MacOS Support
@ -72,14 +72,14 @@ In case run on a osx-x86 architecture, add to your `pom.xml`:
<dependency>
<groupId>io.spiffe</groupId>
<artifactId>grpc-netty-macos</artifactId>
<version>0.8.11</version>
<version>0.8.12</version>
<scope>runtime</scope>
</dependency>
```
Using Gradle:
```gradle
runtimeOnly group: 'io.spiffe', name: 'grpc-netty-macos', version: '0.8.11'
runtimeOnly group: 'io.spiffe', name: 'grpc-netty-macos', version: '0.8.12'
```
#### Aarch64 (M1) Architecture
@ -91,7 +91,7 @@ If you are running the aarch64 architecture (M1 CPUs), add to your `pom.xml`:
<dependency>
<groupId>io.spiffe</groupId>
<artifactId>grpc-netty-macos-aarch64</artifactId>
<version>0.8.11</version>
<version>0.8.12</version>
<scope>runtime</scope>
</dependency>
```
@ -99,7 +99,7 @@ If you are running the aarch64 architecture (M1 CPUs), add to your `pom.xml`:
Using Gradle:
```gradle
runtimeOnly group: 'io.spiffe', name: 'grpc-netty-macos-aarch64', version: '0.8.11'
runtimeOnly group: 'io.spiffe', name: 'grpc-netty-macos-aarch64', version: '0.8.12'
```
*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
### Docker Image
Pull the `java-spiffe-helper` image from `ghcr.io/spiffe/java-spiffe-helper:0.8.11`.
Pull the `java-spiffe-helper` image from `ghcr.io/spiffe/java-spiffe-helper:0.8.12`.
For more details, see [java-spiffe-helper/README.md](java-spiffe-helper/README.md).

View File

@ -1,2 +1,2 @@
version=0.8.11
version=0.8.12
mavenDeployUrl=https://oss.sonatype.org/service/local/staging/deploy/maven2

View File

@ -10,11 +10,11 @@ The Helper automatically gets the SVID updates and stores them in the KeyStore a
On Linux:
`java -jar java-spiffe-helper-0.8.11-linux-x86_64.jar`
`java -jar java-spiffe-helper-0.8.12-linux-x86_64.jar`
On Mac OS:
`java -jar java-spiffe-helper-0.8.11-osx-x86_64.jar`
`java -jar java-spiffe-helper-0.8.12-osx-x86_64.jar`
You can run the utility with the `-c` or `--config` option to specify the path to the configuration file. By default, it
will look for a configuration file named `conf/java-spiffe-helper.properties` in the current working directory.