diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a83c85909..ca2e1867e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -81,6 +81,8 @@ jobs: - uses: actions/attest-build-provenance@v3 with: subject-checksums: ./dist/lego_*_checksums.txt + github-token: ${{ secrets.GH_TOKEN_REPO }} - uses: actions/attest-build-provenance@v3 with: subject-checksums: ./dist/digests.txt + github-token: ${{ secrets.GH_TOKEN_REPO }} diff --git a/CHANGELOG.md b/CHANGELOG.md index ccfd912d5..31f8ff569 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ Everybody thinks that the others will donate, but in the end, nobody does. So if you think that lego is worth it, please consider [donating](https://donate.ldez.dev). +## v4.28.1 + +- Release date: 2025-11-06 +- Tag: [v4.28.1](https://github.com/go-acme/lego/releases/tag/v4.28.1) + +### Fixed + +- **[cli]** fix: skip nil response + ## v4.28.0 - Release date: 2025-10-31 diff --git a/acme/api/internal/sender/useragent.go b/acme/api/internal/sender/useragent.go index 903fd7483..2e5f84d82 100644 --- a/acme/api/internal/sender/useragent.go +++ b/acme/api/internal/sender/useragent.go @@ -4,10 +4,10 @@ package sender const ( // ourUserAgent is the User-Agent of this underlying library package. - ourUserAgent = "xenolf-acme/4.28.0" + ourUserAgent = "xenolf-acme/4.28.1" // ourUserAgentComment is part of the UA comment linked to the version status of this underlying library package. // values: detach|release // NOTE: Update this with each tagged release. - ourUserAgentComment = "detach" + ourUserAgentComment = "release" ) diff --git a/cmd/lego/zz_gen_version.go b/cmd/lego/zz_gen_version.go index afee84317..1f4a291dd 100644 --- a/cmd/lego/zz_gen_version.go +++ b/cmd/lego/zz_gen_version.go @@ -2,7 +2,7 @@ package main -const defaultVersion = "v4.28.0+dev-detach" +const defaultVersion = "v4.28.1+dev-release" var version = "" diff --git a/providers/dns/internal/useragent/useragent.go b/providers/dns/internal/useragent/useragent.go index 2a48e1942..57e2a727a 100644 --- a/providers/dns/internal/useragent/useragent.go +++ b/providers/dns/internal/useragent/useragent.go @@ -10,12 +10,12 @@ import ( const ( // ourUserAgent is the User-Agent of this underlying library package. - ourUserAgent = "goacme-lego/4.28.0" + ourUserAgent = "goacme-lego/4.28.1" // ourUserAgentComment is part of the UA comment linked to the version status of this underlying library package. // values: detach|release // NOTE: Update this with each tagged release. - ourUserAgentComment = "detach" + ourUserAgentComment = "release" ) // Get builds and returns the User-Agent string.