Skip to content

Commit 763c500

Browse files
authored
Merge pull request #858 from sigstore/post1.1.0
Update versions and changelog
2 parents 2e59559 + a2adec6 commit 763c500

File tree

8 files changed

+26
-7
lines changed

8 files changed

+26
-7
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,25 @@ All versions prior to 1.0.0 are untracked
99

1010
## [Unreleased]
1111

12+
# [1.1.0] - 2024-11-22
13+
14+
## Added
15+
- Update sigstore tuf roots to v10 for staging and public-good https://github.com/sigstore/sigstore-java/pull/848
16+
- Tuf conformance tests for tuf client spec conformance https://github.com/sigstore/sigstore-java/pull/838
17+
18+
## Changed
19+
- Allow tuf updater to fetch meta without downloading targets https://github.com/sigstore/sigstore-java/pull/839
20+
- Allow tuf targets and metadata to be stored and fetched separately https://github.com/sigstore/sigstore-java/pull/827
21+
22+
## Fixed
23+
- Fix handling of tuf targets in subdirectories https://github.com/sigstore/sigstore-java/pull/853
24+
- Fix tuf spec conformance for valid but duplicate signatures on a role https://github.com/sigstore/sigstore-java/pull/852
25+
- Fix handling of rsa-pss and ed25519 signatures in tuf metadata https://github.com/sigstore/sigstore-java/pull/849/files
26+
27+
## Security
28+
- Ensure log entries in sigstore bundles are entries that correspond to the
29+
verification material (signature, artifact, public-key) provided to the
30+
verifier. https://github.com/sigstore/sigstore-java/pull/856
1231

1332
# [1.0.0] - 2024-08-28
1433

build-logic/publishing/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ dependencies {
1010
implementation(project(":basics"))
1111
implementation(project(":jvm"))
1212
implementation("dev.sigstore.build-logic:gradle-plugin")
13-
implementation("dev.sigstore:sigstore-gradle-sign-plugin:1.0.0")
13+
implementation("dev.sigstore:sigstore-gradle-sign-plugin:1.1.0")
1414
implementation("com.gradle.plugin-publish:com.gradle.plugin-publish.gradle.plugin:1.3.0")
1515
}

examples/hello-world/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
`java-library`
33
`maven-publish`
4-
val sigstoreVersion = System.getProperty("sigstore.version") ?: "1.0.0"
4+
val sigstoreVersion = System.getProperty("sigstore.version") ?: "1.1.0"
55
id("dev.sigstore.sign") version "$sigstoreVersion"
66
signing
77
}

examples/hello-world/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1717
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1818
<maven.compiler.release>11</maven.compiler.release>
19-
<sigstore.version>1.0.0</sigstore.version>
19+
<sigstore.version>1.1.0</sigstore.version>
2020
</properties>
2121

2222
<build>

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ systemProp.org.gradle.kotlin.dsl.precompiled.accessors.strict=true
55
group=dev.sigstore
66

77
# use the ./scripts/update_version.sh script to update all versions
8-
version=1.1.0
8+
version=1.2.0

sigstore-gradle/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Signature format uses [Sigstore bundle](https://github.com/sigstore/protobuf-spe
1515

1616
```kotlin
1717
plugins {
18-
id("dev.sigstore.sign") version "1.0.0"
18+
id("dev.sigstore.sign") version "1.1.0"
1919
}
2020

2121
// Automatically sign all Maven publications, using GitHub Actions OIDC when available,

sigstore-gradle/sigstore-gradle-sign-base-plugin/src/main/kotlin/dev/sigstore/sign/SigstoreSignExtension.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ abstract class SigstoreSignExtension(private val project: Project) {
4444
abstract val sigstoreJavaVersion : Property<String>
4545

4646
init {
47-
sigstoreJavaVersion.convention("1.1.0")
47+
sigstoreJavaVersion.convention("1.2.0")
4848
(this as ExtensionAware).extensions.create<OidcClientExtension>(
4949
"oidcClient",
5050
project.objects,

sigstore-maven-plugin/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Signature format uses [Sigstore bundle](https://github.com/sigstore/protobuf-spe
1717
<plugin>
1818
<groupId>dev.sigstore</groupId>
1919
<artifactId>sigstore-maven-plugin</artifactId>
20-
<version>1.0.0</version>
20+
<version>1.1.0</version>
2121
<executions>
2222
<execution>
2323
<id>sign</id>

0 commit comments

Comments
 (0)