forked from caddyserver/certmagic
-
Notifications
You must be signed in to change notification settings - Fork 1
Merge upstream CertMagic v0.25.3 #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
0b5e0e9
chore: use math/rand/v2 instead of math/rand (#363)
WeidiDeng 6902925
chore: Bump zerossl dependency (#370)
francislavoie 8a2d459
fix: handshake worker starve when loading external certificate (#369)
bndcts ce47f46
go.mod: Upgrade dependencies
mholt a7a8ce3
logging: Disable stack traces, fix logger name (#372)
francislavoie b9e85a9
Don't log nil errors when stapling OCSP (fix #362)
mholt fa1257f
Unblock ManageAsync() by putting manageOne() in a goroutine (#374)
mholt e03792e
Modernize TLSConfig() (close #375)
mholt 60d9d8b
Fix HTTP-01 challenge for IPv6 literal addresses (#377)
nekohasekai 3229642
go.mod: Upgrade indirect dependencies
mholt 3e3363f
readme: add dark-mode banner for GitHub UI (#379)
mpge 2cf7e08
Revert "Fix HTTP-01 challenge for IPv6 literal addresses (#377)"
mholt cdc4eb2
fix: Normalization IPv6 addresses for ACME challenge (#376)
u5surf c7496f1
More validation of delegated OCSP responders (#378)
mholt d31b8d4
Merge tag 'refs/tags/v0.25.3' into chore/merge-upstream-v0.25.3
danillouz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,25 +1,25 @@ | ||
| module github.com/caddyserver/certmagic | ||
|
|
||
| go 1.24.0 | ||
| go 1.25.0 | ||
|
|
||
| require ( | ||
| github.com/caddyserver/zerossl v0.1.4 | ||
| github.com/caddyserver/zerossl v0.1.5 | ||
| github.com/klauspost/cpuid/v2 v2.3.0 | ||
| github.com/libdns/libdns v1.1.1 | ||
| github.com/mholt/acmez/v3 v3.1.4 | ||
| github.com/miekg/dns v1.1.69 | ||
| github.com/mholt/acmez/v3 v3.1.6 | ||
| github.com/miekg/dns v1.1.72 | ||
| github.com/zeebo/blake3 v0.2.4 | ||
| go.uber.org/zap v1.27.1 | ||
| go.uber.org/zap/exp v0.3.0 | ||
| golang.org/x/crypto v0.46.0 | ||
| golang.org/x/net v0.48.0 | ||
| golang.org/x/crypto v0.50.0 | ||
| golang.org/x/net v0.53.0 | ||
| ) | ||
|
|
||
| require ( | ||
| go.uber.org/multierr v1.11.0 // indirect | ||
| golang.org/x/mod v0.30.0 // indirect | ||
| golang.org/x/sync v0.19.0 // indirect | ||
| golang.org/x/sys v0.39.0 // indirect | ||
| golang.org/x/text v0.32.0 // indirect | ||
| golang.org/x/tools v0.39.0 // indirect | ||
| golang.org/x/mod v0.35.0 // indirect | ||
| golang.org/x/sync v0.20.0 // indirect | ||
| golang.org/x/sys v0.43.0 // indirect | ||
| golang.org/x/text v0.36.0 // indirect | ||
| golang.org/x/tools v0.44.0 // indirect | ||
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.