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
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/release-checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ Full release instructions are at: [RELEASING.md](/sigstore/sigstore-java/blob/ma

## Post Release
- [ ] Update README if required
- [ ] Update versions (`./scripts/update_version.sh`)
- [ ] Update versions (`./scripts/update_versions.sh`)
- [ ] Update CHANGELOG.md
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@ All versions prior to 1.0.0 are untracked

## [Unreleased]

# [2.3.0] - 2026-09-08

## Added
- Allow verifying bundles without transparency-log entries (for private deployments), relying on signed RFC 3161 timestamps: https://github.com/sigstore/sigstore-java/pull/1252
- Add Automatic-Module-Name to sigstore-java: https://github.com/sigstore/sigstore-java/pull/1269
- Support Gradle Project Isolation in the Gradle plugin: https://github.com/sigstore/sigstore-java/pull/1246

## Fixed
- Handle 409 responses from Rekor: https://github.com/sigstore/sigstore-java/pull/1266

# [2.2.0] - 2026-06-10

## Added
Expand Down
2 changes: 1 addition & 1 deletion build-logic/publishing/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies {
implementation(project(":basics"))
implementation(project(":jvm"))
implementation("dev.sigstore.build-logic:gradle-plugin")
implementation("dev.sigstore:sigstore-gradle-sign-plugin:2.2.0")
implementation("dev.sigstore:sigstore-gradle-sign-plugin:2.3.0")
implementation("com.gradle.plugin-publish:com.gradle.plugin-publish.gradle.plugin:2.1.1")
implementation("com.gradleup.nmcp:com.gradleup.nmcp.gradle.plugin:1.6.2")
}
2 changes: 1 addition & 1 deletion examples/hello-world/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
`java-library`
`maven-publish`
val sigstoreVersion = System.getProperty("sigstore.version") ?: "2.2.0"
val sigstoreVersion = System.getProperty("sigstore.version") ?: "2.3.0"
id("dev.sigstore.sign") version "$sigstoreVersion"
signing
}
Expand Down
2 changes: 1 addition & 1 deletion examples/hello-world/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.release>11</maven.compiler.release>
<sigstore.version>2.2.0</sigstore.version>
<sigstore.version>2.3.0</sigstore.version>
</properties>

<build>
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ org.gradle.jvmargs=-XX:MaxMetaspaceSize=768m

group=dev.sigstore

# use the ./scripts/update_version.sh script to update all versions
version=2.3.0
# use the ./scripts/update_versions.sh script to update all versions
version=2.4.0

# Kotlin Dokka is experemental, and we want silence the build warning
org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
Expand Down
2 changes: 1 addition & 1 deletion sigstore-gradle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Signature format uses [Sigstore bundle](https://github.com/sigstore/protobuf-spe

```kotlin
plugins {
id("dev.sigstore.sign") version "2.2.0"
id("dev.sigstore.sign") version "2.3.0"
}

// Automatically sign all Maven publications, using GitHub Actions OIDC when available,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ abstract class SigstoreSignExtension @Inject constructor (private val project: P
abstract val sigstoreJavaVersion : Property<String>

init {
sigstoreJavaVersion.convention("2.3.0")
sigstoreJavaVersion.convention("2.4.0")
}

fun sign(publications: DomainObjectCollection<Publication>) {
Expand Down
2 changes: 1 addition & 1 deletion sigstore-maven-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Signature format uses [Sigstore bundle](https://github.com/sigstore/protobuf-spe
<plugin>
<groupId>dev.sigstore</groupId>
<artifactId>sigstore-maven-plugin</artifactId>
<version>2.2.0</version>
<version>2.3.0</version>
<executions>
<execution>
<id>sign</id>
Expand Down
Loading