diff --git a/CHANGELOG.md b/CHANGELOG.md index f927092a..30359867 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.8.8] - 2024-10-08 + +### Dependency updates + +- Bump `grpcVersion` from 1.66.0 to 1.68.0 (#262) +- Bump `io.netty:netty-transport-native-kqueue` from 4.1.113.Final to 4.1.114.Final (#265) +- Bump `com.nimbusds:nimbus-jose-jwt` from 9.41.1 to 9.41.2 in (#266) + +### Changed + +- Updated Gradle to version 8.10.2 (#269) + ## [0.8.7] - 2024-09-20 ### Dependency updates diff --git a/README.md b/README.md index 0a8f15a5..410723cc 100644 --- a/README.md +++ b/README.md @@ -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.7). +The JARs can be downloaded from [Maven Central](https://search.maven.org/search?q=g:io.spiffe%20AND%20v:0.8.8). The dependencies can be added to `pom.xml` @@ -35,7 +35,7 @@ To import the `java-spiffe-provider` component: io.spiffe java-spiffe-provider - 0.8.7 + 0.8.8 ``` The `java-spiffe-provider` component imports the `java-spiffe-core` component. @@ -45,7 +45,7 @@ To just import the `java-spiffe-core` component: io.spiffe java-spiffe-core - 0.8.7 + 0.8.8 ``` @@ -53,12 +53,12 @@ Using Gradle: Import `java-spiffe-provider`: ```gradle -implementation group: 'io.spiffe', name: 'java-spiffe-provider', version: '0.8.7' +implementation group: 'io.spiffe', name: 'java-spiffe-provider', version: '0.8.8' ``` Import `java-spiffe-core`: ```gradle -implementation group: 'io.spiffe', name: 'java-spiffe-core', version: '0.8.7' +implementation group: 'io.spiffe', name: 'java-spiffe-core', version: '0.8.8' ``` ### MacOS Support @@ -72,14 +72,14 @@ In case run on a osx-x86 architecture, add to your `pom.xml`: io.spiffe grpc-netty-macos - 0.8.7 + 0.8.8 runtime ``` Using Gradle: ```gradle -runtimeOnly group: 'io.spiffe', name: 'grpc-netty-macos', version: '0.8.7' +runtimeOnly group: 'io.spiffe', name: 'grpc-netty-macos', version: '0.8.8' ``` #### Aarch64 (M1) Architecture @@ -91,7 +91,7 @@ If you are running the aarch64 architecture (M1 CPUs), add to your `pom.xml`: io.spiffe grpc-netty-macos-aarch64 - 0.8.7 + 0.8.8 runtime ``` @@ -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.7' +runtimeOnly group: 'io.spiffe', name: 'grpc-netty-macos-aarch64', version: '0.8.8' ``` *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.7`. +Pull the `java-spiffe-helper` image from `ghcr.io/spiffe/java-spiffe-helper:0.8.8`. For more details, see [java-spiffe-helper/README.md](java-spiffe-helper/README.md). diff --git a/gradle.properties b/gradle.properties index 187d7c02..8641ffaf 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -version=0.8.7 +version=0.8.8 mavenDeployUrl=https://oss.sonatype.org/service/local/staging/deploy/maven2 diff --git a/java-spiffe-helper/README.md b/java-spiffe-helper/README.md index 206fc957..267c892c 100644 --- a/java-spiffe-helper/README.md +++ b/java-spiffe-helper/README.md @@ -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.7-linux-x86_64.jar` +`java -jar java-spiffe-helper-0.8.8-linux-x86_64.jar` On Mac OS: -`java -jar java-spiffe-helper-0.8.7-osx-x86_64.jar` +`java -jar java-spiffe-helper-0.8.8-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.