You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,22 @@ All versions prior to 1.0.0 are untracked
9
9
10
10
## [Unreleased]
11
11
12
+
# [2.0.0-rc1] - 2025-08-14
13
+
14
+
## Added
15
+
- Add support for rekor v2 logs https://github.com/sigstore/sigstore-java/pull/990, https://github.com/sigstore/sigstore-java/pull/1016, https://github.com/sigstore/sigstore-java/pull/1017, https://github.com/sigstore/sigstore-java/pull/1008, https://github.com/sigstore/sigstore-java/pull/1031, https://github.com/sigstore/sigstore-java/pull/1040
16
+
- Add support for timestamps https://github.com/sigstore/sigstore-java/pull/960, https://github.com/sigstore/sigstore-java/pull/975, https://github.com/sigstore/sigstore-java/pull/977, https://github.com/sigstore/sigstore-java/pull/978, https://github.com/sigstore/sigstore-java/pull/979
17
+
- Library support for token string auth https://github.com/sigstore/sigstore-java/pull/925
18
+
- ED25519 support in trusted\_root https://github.com/sigstore/sigstore-java/pull/983
19
+
20
+
## Fixed
21
+
- Fixed windows support https://github.com/sigstore/sigstore-java/pull/974
22
+
- Parsing json with unknown fields https://github.com/sigstore/sigstore-java/pull/966
23
+
24
+
## Changed
25
+
- Users can no longer specify signer object in KeylessSigner, use Algorithm Registry instead https://github.com/sigstore/sigstore-java/pull/1027
26
+
- Users with custom sigstore infrastructure deployments must specify a SigningConfig to configure the KeylessSigner, individual urls for infrastructure pieces are removed https://github.com/sigstore/sigstore-java/pull/956, https://github.com/sigstore/sigstore-java/pull/965, https://github.com/sigstore/sigstore-java/pull/981
Copy file name to clipboardExpand all lines: RELEASING.md
+6-7Lines changed: 6 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,26 +19,25 @@ Tag the release at the version you wish (ex `v0.5.3`), this *MUST* match the pro
19
19
Releasing to maven central is a **permanent** action, it cannot be reverted
20
20
21
21
Release the bundle:
22
-
1. Log into [sonatype (s01)](https://s01.oss.sonatype.org)
23
-
1. Click "Staging Repositories" on the left navbar
24
-
1. Select your artifact, "close" it to begin checks
25
-
1. After all checks have passed, "release" it
26
-
1. If checks are failing, "drop" the bundle and fix the release process
27
-
1. Releases show up on Maven Central roughly 1-2 hours after release
22
+
1. Log into [maven central](https://central.sonatype.org)
23
+
1. Click on your account icon in the top right and then "View Deployments" ([link](https://central.sonatype.com/publishing/deployments))
24
+
1. Select your Deployment, wait for it to finish validation and then "Publish" it
25
+
1. Releases show up on Maven Central roughly 0-2 hours after release
28
26
29
27
## Release `sigstore-gradle-plugin` to Gradle Plugin Portal
30
28
31
29
- Use the "Release sigstore gradle plugins to Gradle Plugin Portal" action against the tagged version `v0.5.3'. This action builds, signs and pushes the artifacts to the Gradle Plugin Portal
32
30
- There is no follow up here, plugins are auto released on the plugin portal.## Reverting a failed release (Github only)
33
31
32
+
## Revert a Release
34
33
If a release build fails for any reason or the resulting artifacts are not as expected, you must clean-up
35
34
any tags or releases built during the action
36
35
1. Delete the release from [Releases](https://github.com/sigstore/sigstore-java/releases)
37
36
2. Delete the tag from [Tags](https://github.com/sigstore/sigstore-java/tags)
38
37
39
38
### Maven Central
40
39
41
-
You can try to contact support but typically releases are permanent.
40
+
If you accidentally publish something to maven central you didn't want to, you can try to contact support but typically releases are permanent.
Copy file name to clipboardExpand all lines: sigstore-gradle/sigstore-gradle-sign-base-plugin/src/main/kotlin/dev/sigstore/sign/SigstoreSignExtension.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ abstract class SigstoreSignExtension(private val project: Project) {
0 commit comments