diff options
author | Mariano Cano <[email protected]> | 2023-10-23 18:02:11 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2023-10-23 21:02:11 -0400 |
commit | ac0ad4da84b3bb478ecfe4a0e81a2e6bb1e10c9c (patch) | |
tree | 957def573b5d57f6366450f1ee15446e2a3cf3b5 /go.mod | |
parent | 4c10a05431043f573ce3207a8fbbca4c1f67d8c7 (diff) | |
download | caddy-ac0ad4da84b3bb478ecfe4a0e81a2e6bb1e10c9c.tar.gz caddy-ac0ad4da84b3bb478ecfe4a0e81a2e6bb1e10c9c.zip |
Upgrade acmeserver to github.com/go-chi/chi/v5 (#5913)
This commit upgrades the router used in the acmeserver to
github.com/go-chi/chi/v5. In the latest release of step-ca, the router
used by certificates was upgraded to that version.
Fixes #5911
Signed-off-by: Mariano Cano <[email protected]>
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -9,7 +9,7 @@ require ( github.com/aryann/difflib v0.0.0-20210328193216-ff5ff6dc229b github.com/caddyserver/certmagic v0.19.2 github.com/dustin/go-humanize v1.0.1 - github.com/go-chi/chi v4.1.2+incompatible + github.com/go-chi/chi/v5 v5.0.10 github.com/google/cel-go v0.15.1 github.com/google/uuid v1.3.1 github.com/klauspost/compress v1.17.0 @@ -49,7 +49,6 @@ require ( github.com/antlr/antlr4/runtime/Go/antlr/v4 v4.0.0-20230305170008-8188dc5388df // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/fxamacker/cbor/v2 v2.5.0 // indirect - github.com/go-chi/chi/v5 v5.0.10 // indirect github.com/golang/glog v1.1.2 // indirect github.com/google/certificate-transparency-go v1.1.6 // indirect github.com/google/go-tpm v0.9.0 // indirect |