chore(deps): update dependency caddyserver/caddy to v2.5.0 #72

Merged
xoxys merged 1 commits from renovate/caddyserver-caddy-2.x into main 2022-04-29 10:42:47 +02:00
Member

This PR contains the following updates:

Package Update Change
caddyserver/caddy minor v2.4.6 -> v2.5.0

Release Notes

caddyserver/caddy

v2.5.0

Compare Source

Caddy 2.5 introduces new features you'll love as well as a huge number of bug fixes and enhancements. Thank you to everyone who contributed!

Feel free to ask on the forum if you have any questions or feedback.

Highlights

  • Reverse proxy: Dynamic upstreams, which is the ability to get the list of upstreams at every request (more specifically, every iteration in the proxy loop of every request) rather than just once at config-load time. Dynamic upstream modules can be plugged in to provide Caddy with the latest list of backends in real-time. Two standard modules have been implemented which can get upstreams from SRV and A/AAAA record lookups.
    • ⚠️ This deprecates the lookup_srv JSON field for upstreams (and srv+ scheme prefix in the Caddyfile), which will be removed in the future.
  • Automatic HTTPS: Caddy will automatically try to get relevant certificates from the local Tailscale instance (if running with permission to access the Tailscale socket). This makes services running on a Tailscale network automatically available over trusted HTTPS with Caddy.
  • Tracing: New OpenTelemetry integration with the tracing handler module and associated tracing directive.
  • Reverse proxy: When using the response handlers, a new handler copy_response is available to copy the proxy's response back to the client, and copy_response_headers may be used to selectively copy header values from the proxy's response.
  • API: Added new endpoints /pki/ca/<id> and /pki/ca/<id>/certificates for getting information about Caddy's managed CAs, including the chain of root and intermediate certificates.

Notable

  • Reverse proxy: The X-Forwarded-Host header will now be automatically set, along with X-Forwarded-For and X-Forwarded-Proto.
  • ⚠️ Reverse proxy: Incoming X-Forwarded-* headers will no longer be automatically trusted, to prevent spoofing. Now, trusted_proxies must be configured to specify a list of downstream proxies which are trusted to have sent good values. You only need to configure trusted proxies if Caddy is not the first server being connected to. For example, if you have Cloudflare in front of Caddy, then you should configure this with Cloudflare's list of IP ranges.
  • Automatic HTTPS: Revoked certificates will be automatically replaced more reliably.
  • Automatic HTTPS: Can now get certificates from Managers. As opposed to Issuers (such as the default ACME issuers) which give Caddy certificates to manage from a CSR, Managers give Caddy certificates to serve (rather than manage) during TLS handshakes.
  • Automatic HTTPS: A DNS challenge domain override can be configured to delegate the solving of the challenge to a different domain.
  • Automatic HTTPS: The DNS challenge propagation checks can now be delayed or disabled by setting propagation_delay or propagation_timeout to -1, respectively.
  • Reverse proxy: The default dial timeout for the HTTP transport has been adjusted down to 3s (was 10s), which should allow for more easily configuring load balancing retries.
  • Logging: HTTP access logs will now render empty values for often-sensitive HTTP headers such as Cookie, Authorization, and Proxy-Authorization. Logging such credentials is now opt-in with the log_credentials global option in the Caddyfile, or the server's logs > should_log_credentials field in JSON.
  • Logging: Logs can now be filtered by query string parameters, cookie values, and regular expressions; and log values can be hashed. These features are useful for redacting sensitive information.
  • Logging: Errors during request handling will now be logged at DEBUG level if the error was handled via errors routes (handle_errors in Caddyfile).
  • ⚠️ Logging: Removed the deprecated common_log field from HTTP access logs, and the single_field encoder. If you relied on this, you may use the transform encoder plugin to encode logs in Common Log format.
  • ⚠️ Logging: The remote_addr field has been replaced by remote_ip and remote_port fields in HTTP access logs, which split up the two parts of the remote address. This improves ease of use for some tooling which only expect an IP address, without a port.
  • HTTP server: The vars matcher can now match on multiple possible values.
  • HTTP server: Requests can now be assigned a random and unique UUID from the new {http.request.uuid} placeholder.
  • HTTP server: New http_redirect listener wrapper which can be used to redirect HTTP requests that come in on a server listening for HTTPS requests to be redirected to https://.
  • ⚠️ Caddyfile: Deprecated paths in site addresses. Prefer using path matchers within your site block instead.
  • Caddyfile: New default_bind global option lets you specify the default interface all sockets should bind to.
  • Caddyfile: New pki global option lets you configure the properties of the internal CAs managed by Caddy.
  • Caddyfile: New method directive allows rewriting the request method via Caddyfile.
  • ⚠️ Caddyfile: The reverse_proxy directive's handle_response subdirective has had its status replacement functionality moved to a new replace_status subdirective. This makes sure that the functionality of handle_response is not overloaded, and usage is clearer.
  • Caddyfile: The map directive now casts outputs to the appropriate scalar type if possible (int, float, bool). If you need to force a string, you may use double quotes or backticks https://github.com/caddyserver/caddy/pull/4643.
  • Caddyfile: New vars directive allows setting some variables during request handling for later use in another handler or matcher.
  • Caddyfile: The Caddyfile adapter is now stricter about curly braces for block openers to try to prevent parsing ambiguities.
  • Caddyfile: The caddy fmt CLI command now has a --diff option which lets you visually see the formatting differences.
  • ⚠️ Admin: Renamed experimental property load_interval ➡️ load_delay for clarification, and improved dynamic config loading.

🛡️ Thanks to David Leadbeater for reporting a security vulnerability related to HTTP methods and metrics cardinality, which was fixed in this release.

New Contributors

Changelog

  • 2e46c2a admin, reverseproxy: Stop timers if canceled to avoid goroutine leak (#​4482)
  • 40b5443 admin: Enforce and refactor origin checking
  • b4bfa29 admin: Require identity for remote (fix #​4478)
  • 32aad90 admin: Write proper status on invalid requests (#​4569) (fix #​4561)
  • ff137d1 caddyconfig: Support placeholders in HTTP loader
  • b47af6e caddyfile: Copy input before parsing (fix #​4422)
  • e90d751 caddyfile: impove fmt warning message (#​4444)
  • 5e5af50 caddyfile: make renew_interval option configurable (#​4451)
  • ddbb234 caddyhttp: Always log handled errors at debug level (#​4584)
  • 6b385a3 caddyhttp: Don't attempt to manage Tailscale certs
  • ecac03c caddyhttp: Enhance vars matcher (#​4433)
  • 6e6ce2b caddyhttp: Fix HTTP->HTTPS redir not preferring HTTPS port if ambiguous (#​4530)
  • 3fe2c73 caddyhttp: Fix MatchPath sanitizing (#​4499)
  • 44e5e9e caddyhttp: Fix test when /tmp/etc already exists (#​4544)
  • 2bb8550 caddyhttp: Honor wildcard hosts in log SkipHosts (#​4606)
  • 180ae0c caddyhttp: Implement http.request.uuid placeholder (#​4285)
  • 7d5047c caddyhttp: Log empty value for typical password headers
  • eead337 caddyhttp: Log non-500 handler errors at debug level (#​4429)
  • 5bf0ada caddyhttp: Make logging of credential headers opt-in (#​4438)
  • 186fdba caddyhttp: Move HTTP redirect listener to an optional module (#​4585)
  • 80d7a35 caddyhttp: Redirect HTTP requests on the HTTPS port to https:// (#​4313)
  • bf380d0 caddyhttp: Reject absurd methods (#​4538)
  • 850e160 caddyhttp: Return HTTP 421 for mismatched Host header (#​4023)
  • f55b123 caddyhttp: Split up logged remote address into IP and port (#​4403)
  • ac14b64 caddyhttp: Support zone identifiers in remote_ip matcher (#​4597)
  • a1c4121 caddypki: Minor tweak, don't use context pointer
  • 78e381b caddypki: Refactor /pki/ admin endpoints
  • c634bbe caddypki: Return error if no PEM data found
  • 9b7cdfa caddypki: Try to fix lint warnings
  • a79b405 caddytls: Add internal Caddyfile lifetime, sign_with_root opts (#​4513)
  • 77a77c0 caddytls: Add propagation_delay, support propagation_timeout -1 (#​4723)
  • 66de438 caddytls: Fix MatchRemoteIP provisoning with multiple CIDR ranges (#​4522)
  • 57a708d caddytls: Support external certificate Managers (like Tailscale) (#​4541)
  • d9b1d46 caddytls: dns_challenge_override_domain for challenge delegation (#​4596)
  • 1a7a78a cmd: Print error if fmt overwrite fails (fix #​4524)
  • bc447e3 core: Config LoadInterval -> LoadDelay for clarity
  • 7ea5b2a core: Config load interval only reloads if changed (#​4603)
  • 7f364c7 core: Load config at interval instead of just once
  • a72acd2 core: Retry dynamic config load if config unchanged
  • ceef70d core: Retry dynamic config load if error or no-op (#​4603)
  • acbee94 core: Revert 7f364c7; simplify dynamic config load
  • 64a3218 core: Simplify shared listeners, fix deadline bug
  • 8e5aafa fastcgi: Fix a TODO, prevent zap using reflection for logging env (#​4437)
  • c8f2834 fastcgi: Protect against requests with null bytes in the path (#​4614)
  • de490c7 fastcgi: Set SERVER_PORT to 80 or 443 depending on scheme (#​4572)
  • 09ba9e9 fileserver: Add pass_thru Caddyfile option (#​4613)
  • 15c95e9 fileserver: Canonical redir when whole path is stripped (#​4549)
  • c8b5a81 fileserver: Fix handling of symlink sizes in directory listings (#​4415)
  • e81369e fileserver: Move default browse template into a separate file (#​4417)
  • 1e10f6f fileserver: browse: do not encode the paths in breadcrumbs and page title (#​4410)
  • 78b5356 fileserver: do not double-escape paths (#​4447)
  • 0de5159 go.mod: Revert version bump of CEL (#​4587)
  • 6f9b6ad go.mod: Update smallstep/certificates, no longer need replace (#​4475)
  • 4906b93 go.mod: Update smallstep/truststore, fix build on FreeBSD (#​4473)
  • c133153 go.mod: Update to latest smallstep/truststore, support FreeBSD (#​4453)
  • ff74a0a go.mod: Upgrade dependencies
  • e9dde23 headers: Fix + in Caddyfile to properly append rather than set (#​4506)
  • 1b7ff5d httpcaddyfile: Add default_bind global option (#​4531)
  • a8bb4a6 httpcaddyfile: Add {vars.*} placeholder shortcut, reverse vars sort order (#​4726)
  • 5a07156 httpcaddyfile: Add pki app root and intermediate cert/key config (#​4514)
  • 3a1e0db httpcaddyfile: Deprecate paths in site addresses; use zap logs (#​4728)
  • 26d633b httpcaddyfile: Disabling OCSP stapling for both managed and unmanaged (#​4589)
  • 93a7a45 httpcaddyfile: Fix incorrect handling of IPv6 bind addresses (#​4532)
  • 81ee34e httpcaddyfile: Fix sorting edgecase for nested handle_path (#​4477)
  • 4b9849c httpcaddyfile: Support configuring pki app names via global options (#​4450)
  • 5bd96a6 httpcaddyfile: Support explicitly turning off strict_sni_host (#​4592)
  • c921e08 logging: Add roll_local_time Caddyfile option (#​4583)
  • 0eb0b60 logging: Remove common_log field and single_field encoder (#​4149) (#​4282)
  • 249adc1 logging: Support turning off roll compression via Caddyfile (#​4505)
  • 8887adb logging: add a filter for cookies (#​4425)
  • bcac2be logging: add a filter for query parameters (#​4424)
  • 789efa5 logging: add a regexp filter (#​4426)
  • a1b417c logging: add support for hashing data (#​4434)
  • eb891d4 metrics: Enforce smaller set of method labels
  • c04d24c pki: Avoid provisioning the local CA when not necessary (#​4463)
  • bbad693 pki: Implement API endpoints for certs and caddy trust (#​4443)
  • 9ee68c1 reverseproxy: Adjust defaults, document defaults (#​4436)
  • 7557d1d reverseproxy: Avoid returning a nil error during GetClientCertificate (#​4550)
  • ab04559 reverseproxy: Dynamic upstreams (with SRV and A/AAAA support) (#​4470)
  • 5333c35 reverseproxy: Fix incorrect health_headers Caddyfile parsing (#​4485)
  • c50094f reverseproxy: Implement trusted proxies for X-Forwarded-* headers (#​4507)
  • f5e1049 reverseproxy: Make shallow-ish clone of the request (#​4551)
  • 87a1f22 reverseproxy: Move status replacement intercept to replace_status (#​4300)
  • d058dee reverseproxy: Refactor dial address parsing, augment command parsing (#​4616)
  • c7d6c4c reverseproxy: copy_response and copy_response_headers for handle_response routes (#​4391)
  • bcb7a19 rewrite: Add method Caddyfile directive (#​4528)
  • 1feb659 rewrite: Fix a double-encode issue when using the {uri} placeholder (#​4516)
  • 6cadb60 templates: Document .OriginalReq
  • 1d0425b templates: Elaborate on what's supported by the markdown function (#​4564)
  • a6199cf templates: Fix docs for .Args
  • ec14ccd templates: fix inconsistent nested includes (#​4452)
  • d0b608a tracing: New OpenTelemetry module (#​4361)
  • 134b805 caddyfile: Prevent bad block opening tokens (#​4655)
  • c5fffb4 caddyfile: Support for raw token values; improve map, expression (#​4643)
  • b82e22b caddyhttp: retain all values of vars matcher when specified multiple times (#​4629)
  • bc15b4b caddypki: Load intermediate for signing on-the-fly (#​4669)
  • 6512832 cmd: Add --diff option for caddy fmt (#​4695)
  • 30b6d1f cmd: Enhance .env (dotenv) file parsing
  • 22d8edb cmd: Fix defaulting admin address if empty in config, fixes reload (#​4674)
  • c232716 cmd: Set Origin header properly on API requests
  • d06d0e7 go.mod: Upgrade CertMagic to v0.16.0
  • bf6a1b7 go.mod: Upgrade some dependencies
  • 79cbe7b httpcaddyfile: Add 'vars' directive
  • a58f240 httpcaddyfile: Fix #​4640 (auto-HTTPS edgecase) (#​4661)
  • 7d22966 logging: Caddyfile support for duration_format (#​4684)
  • 55b4c12 map: Evaluate placeholders in output vals (#​4650)
  • 93c99f6 map: Support numeric and bool types with Caddyfile
  • 3d616e8 requestbody: Return HTTP 413 (fix #​4558)
  • 3e3bb00 reverseproxy: Add _ms placeholders for proxy durations (#​4666)
  • 2196c92 reverseproxy: Don't clear name in SRV upstreams
  • dc4d147 reverseproxy: Expand SRV/A addrs for cache key
  • b8dbecb reverseproxy: Include port in A upstreams cache
  • e4ce40f reverseproxy: Sync up handleUpgradeResponse with stdlib (#​4664)
  • afca242 staticfiles: Expand placeholder for index files (#​4679)
  • 00234c8 templates: Switch to BurntSushi/toml (#​4700)

Full Changelog: https://github.com/caddyserver/caddy/compare/v2.4.6...v2.5.0


Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [caddyserver/caddy](https://github.com/caddyserver/caddy) | minor | `v2.4.6` -> `v2.5.0` | --- ### Release Notes <details> <summary>caddyserver/caddy</summary> ### [`v2.5.0`](https://github.com/caddyserver/caddy/releases/v2.5.0) [Compare Source](https://github.com/caddyserver/caddy/compare/v2.4.6...v2.5.0) Caddy 2.5 introduces new features you'll love as well as a huge number of bug fixes and enhancements. Thank you to everyone who contributed! Feel free to ask on the [forum](https://caddy.community) if you have any questions or feedback. #### Highlights - **Reverse proxy:** [:sparkles: *Dynamic upstreams*](https://github.com/caddyserver/caddy/pull/4470), which is the ability to get the list of upstreams at every request (more specifically, every iteration in the proxy loop of every request) rather than just once at config-load time. Dynamic upstream modules can be plugged in to provide Caddy with the latest list of backends in real-time. Two standard modules have been implemented which can get upstreams from SRV and A/AAAA record lookups. - :warning: This deprecates the `lookup_srv` JSON field for upstreams (and `srv+` scheme prefix in the Caddyfile), which will be removed in the future. - **Automatic HTTPS:** Caddy will automatically try to get relevant certificates from the local [Tailscale](https://tailscale.com) instance (if running with permission to access the Tailscale socket). This makes services running on a Tailscale network [automatically available](https://github.com/caddyserver/caddy/pull/4541) over trusted HTTPS with Caddy. - **Tracing:** New [OpenTelemetry](https://opentelemetry.io/) integration with the [`tracing` handler module and associated `tracing` directive](https://github.com/caddyserver/caddy/pull/4361). - **Reverse proxy:** When using the response handlers, a new handler `copy_response` is available to copy the proxy's response back to the client, and `copy_response_headers` may be used to selectively copy header values from the proxy's response. - **API:** Added new endpoints `/pki/ca/<id>` and `/pki/ca/<id>/certificates` for getting information about Caddy's managed CAs, including the chain of root and intermediate certificates. #### Notable - **Reverse proxy:** The `X-Forwarded-Host` header will now be automatically set, along with `X-Forwarded-For` and `X-Forwarded-Proto`. - :warning: **Reverse proxy:** Incoming `X-Forwarded-*` headers will no longer be automatically trusted, to prevent spoofing. Now, `trusted_proxies` must be configured to specify a list of downstream proxies which are trusted to have sent good values. You only need to configure trusted proxies if Caddy is not the first server being connected to. For example, if you have Cloudflare in front of Caddy, then you should configure this with Cloudflare's [list of IP ranges](https://www.cloudflare.com/en-ca/ips/). - **Automatic HTTPS:** Revoked certificates will be automatically [replaced more reliably](https://github.com/caddyserver/certmagic/pull/166). - **Automatic HTTPS:** [Can now get certificates from *Managers*.](https://github.com/caddyserver/caddy/pull/4541) As opposed to *Issuers* (such as the default ACME issuers) which give Caddy certificates to manage from a CSR, Managers give Caddy certificates to serve (rather than manage) during TLS handshakes. - **Automatic HTTPS:** A DNS challenge [domain override](https://github.com/caddyserver/caddy/issues/4071) can be configured to delegate the solving of the challenge to a different domain. - **Automatic HTTPS:** The DNS challenge propagation checks can now be delayed or disabled by setting `propagation_delay` or `propagation_timeout` to -1, respectively. - **Reverse proxy:** The default dial timeout for the HTTP transport [has been adjusted](https://github.com/caddyserver/caddy/pull/4436) down to `3s` (was `10s`), which should allow for more easily configuring load balancing retries. - **Logging:** HTTP access logs will now [render empty values](https://github.com/caddyserver/caddy/commit/7d5047c1f190421528695e1cc3a4ad71c97eb022) for often-sensitive HTTP headers such as Cookie, Authorization, and Proxy-Authorization. Logging such credentials is now [opt-in](https://github.com/caddyserver/caddy/commit/5bf0adad8748e96e10529d5fc5777afc9236a7b5) with the `log_credentials` global option in the Caddyfile, or the server's `logs > should_log_credentials` field in JSON. - **Logging:** Logs can now be filtered by [query string parameters](https://github.com/caddyserver/caddy/commit/bcac2beee7e419f8cdab2ed16f388d1af282a46b), [cookie values](https://github.com/caddyserver/caddy/commit/8887adb027982e844965b4707b8595cee5845d54), and [regular expressions](https://github.com/caddyserver/caddy/commit/789efa5deef53071b57479d37e4022bf372c4eef); and log values can be [hashed](https://github.com/caddyserver/caddy/commit/a1b417c832b4ab3dab9eaa9690e1d07672a949b8). These features are useful for redacting sensitive information. - **Logging:** Errors during request handling [will now be logged at `DEBUG` level](https://github.com/caddyserver/caddy/pull/4429) if the error was [handled via `errors` routes](https://github.com/caddyserver/caddy/pull/4584) (`handle_errors` in Caddyfile). - :warning: **Logging:** Removed the [deprecated](https://github.com/caddyserver/caddy/issues/4148) `common_log` field from HTTP access logs, and the `single_field` encoder. If you relied on this, you may use the [transform encoder plugin](https://github.com/caddyserver/transform-encoder) to encode logs in Common Log format. - :warning: **Logging:** The `remote_addr` field [has been replaced](https://github.com/caddyserver/caddy/commit/f55b123d63132e290789bcd07077375c76b6e1dd) by `remote_ip` and `remote_port` fields in HTTP access logs, which split up the two parts of the remote address. This improves ease of use for some tooling which only expect an IP address, without a port. - **HTTP server:** The [`vars` matcher](https://github.com/caddyserver/caddy/commit/ecac03cdcb6cceae743aac16faca7f32e5da1607) can now match on multiple possible values. - **HTTP server:** Requests [can now be assigned](https://github.com/caddyserver/caddy/commit/180ae0cc4843ecc3c7ddcb6e978ebfd474ed07f9) a random and unique UUID from the new `{http.request.uuid}` placeholder. - **HTTP server:** [New `http_redirect` listener wrapper](https://github.com/caddyserver/caddy/pull/4585) which can be used to redirect HTTP requests that come in on a server listening for HTTPS requests to be redirected to `https://`. - :warning: **Caddyfile:** [Deprecated paths in site addresses.](https://github.com/caddyserver/caddy/pull/4728) Prefer using path matchers within your site block instead. - **Caddyfile:** [New `default_bind` global option](https://github.com/caddyserver/caddy/pull/4531) lets you specify the default interface all sockets should bind to. - **Caddyfile:** [New `pki` global option](https://github.com/caddyserver/caddy/pull/4450) lets you configure the properties of the internal CAs managed by Caddy. - **Caddyfile:** [New `method` directive](https://github.com/caddyserver/caddy/pull/4528) allows rewriting the request method via Caddyfile. - :warning: **Caddyfile:** The `reverse_proxy` directive's `handle_response` subdirective has had its status replacement functionality [moved to a new `replace_status`](https://github.com/caddyserver/caddy/pull/4300) subdirective. This makes sure that the functionality of `handle_response` is not overloaded, and usage is clearer. - **Caddyfile**: The `map` directive [now casts outputs](https://github.com/caddyserver/caddy/commit/93c99f67342504efe9f6b58a734aaec3929fe785) to the appropriate scalar type if possible (int, float, bool). If you need to force a string, you may use double quotes or backticks https://github.com/caddyserver/caddy/pull/4643. - **Caddyfile**: [New `vars` directive](https://github.com/caddyserver/caddy/commit/79cbe7bfd06565d0e7ab0717119f78960ed54c08) allows setting some variables during request handling for later use in another handler or matcher. - **Caddyfile**: The Caddyfile adapter [is now stricter](https://github.com/caddyserver/caddy/pull/4655) about curly braces for block openers to try to prevent parsing ambiguities. - **Caddyfile**: The `caddy fmt` CLI command now has a [`--diff` option](https://github.com/caddyserver/caddy/pull/4695) which lets you visually see the formatting differences. - :warning: **Admin:** [Renamed](https://github.com/caddyserver/caddy/commit/bc447e307f195b80eeec0f6157e0d8e641af9155) experimental property `load_interval` :arrow_right: `load_delay` for clarification, and improved dynamic config loading. *** :shield: Thanks to [David Leadbeater](https://github.com/dgl) for reporting a security vulnerability related to HTTP methods and metrics cardinality, which was fixed in this release. #### New Contributors - [@&#8203;adamburgess](https://github.com/adamburgess) made their first contribution in https://github.com/caddyserver/caddy/pull/4460 - [@&#8203;12f23eddde](https://github.com/12f23eddde) made their first contribution in https://github.com/caddyserver/caddy/pull/4444 - [@&#8203;rayjlinden](https://github.com/rayjlinden) made their first contribution in https://github.com/caddyserver/caddy/pull/4023 - [@&#8203;GallopingKylin](https://github.com/GallopingKylin) made their first contribution in https://github.com/caddyserver/caddy/pull/4522 - [@&#8203;ForestJohnson](https://github.com/ForestJohnson) made their first contribution in https://github.com/caddyserver/caddy/pull/4534 - [@&#8203;VojtechVitek](https://github.com/VojtechVitek) made their first contribution in https://github.com/caddyserver/caddy/pull/4535 - [@&#8203;Ikke](https://github.com/Ikke) made their first contribution in https://github.com/caddyserver/caddy/pull/4544 - [@&#8203;YourTechBud](https://github.com/YourTechBud) made their first contribution in https://github.com/caddyserver/caddy/pull/4603 - [@&#8203;BitWuehler](https://github.com/BitWuehler) made their first contribution in https://github.com/caddyserver/caddy/pull/4597 - [@&#8203;ttys3](https://github.com/ttys3) made their first contribution in https://github.com/caddyserver/caddy/pull/4572 - [@&#8203;crccw](https://github.com/crccw) made their first contribution in https://github.com/caddyserver/caddy/pull/4596 - [@&#8203;andriikushch](https://github.com/andriikushch) made their first contribution in https://github.com/caddyserver/caddy/pull/4361 - [@&#8203;renbou](https://github.com/renbou) made their first contribution in https://github.com/caddyserver/caddy/pull/4654 - [@&#8203;cuishuang](https://github.com/cuishuang) made their first contribution in https://github.com/caddyserver/caddy/pull/4702 #### Changelog - [`2e46c2a`](https://github.com/caddyserver/caddy/commit/2e46c2ac) admin, reverseproxy: Stop timers if canceled to avoid goroutine leak ([#&#8203;4482](https://github.com/caddyserver/caddy/issues/4482)) - [`40b5443`](https://github.com/caddyserver/caddy/commit/40b54434) admin: Enforce and refactor origin checking - [`b4bfa29`](https://github.com/caddyserver/caddy/commit/b4bfa29b) admin: Require identity for remote (fix [#&#8203;4478](https://github.com/caddyserver/caddy/issues/4478)) - [`32aad90`](https://github.com/caddyserver/caddy/commit/32aad909) admin: Write proper status on invalid requests ([#&#8203;4569](https://github.com/caddyserver/caddy/issues/4569)) (fix [#&#8203;4561](https://github.com/caddyserver/caddy/issues/4561)) - [`ff137d1`](https://github.com/caddyserver/caddy/commit/ff137d17) caddyconfig: Support placeholders in HTTP loader - [`b47af6e`](https://github.com/caddyserver/caddy/commit/b47af6ef) caddyfile: Copy input before parsing (fix [#&#8203;4422](https://github.com/caddyserver/caddy/issues/4422)) - [`e90d751`](https://github.com/caddyserver/caddy/commit/e90d7517) caddyfile: impove fmt warning message ([#&#8203;4444](https://github.com/caddyserver/caddy/issues/4444)) - [`5e5af50`](https://github.com/caddyserver/caddy/commit/5e5af50e) caddyfile: make renew_interval option configurable ([#&#8203;4451](https://github.com/caddyserver/caddy/issues/4451)) - [`ddbb234`](https://github.com/caddyserver/caddy/commit/ddbb234d) caddyhttp: Always log handled errors at debug level ([#&#8203;4584](https://github.com/caddyserver/caddy/issues/4584)) - [`6b385a3`](https://github.com/caddyserver/caddy/commit/6b385a36) caddyhttp: Don't attempt to manage Tailscale certs - [`ecac03c`](https://github.com/caddyserver/caddy/commit/ecac03cd) caddyhttp: Enhance vars matcher ([#&#8203;4433](https://github.com/caddyserver/caddy/issues/4433)) - [`6e6ce2b`](https://github.com/caddyserver/caddy/commit/6e6ce2be) caddyhttp: Fix HTTP->HTTPS redir not preferring HTTPS port if ambiguous ([#&#8203;4530](https://github.com/caddyserver/caddy/issues/4530)) - [`3fe2c73`](https://github.com/caddyserver/caddy/commit/3fe2c73d) caddyhttp: Fix `MatchPath` sanitizing ([#&#8203;4499](https://github.com/caddyserver/caddy/issues/4499)) - [`44e5e9e`](https://github.com/caddyserver/caddy/commit/44e5e9e4) caddyhttp: Fix test when /tmp/etc already exists ([#&#8203;4544](https://github.com/caddyserver/caddy/issues/4544)) - [`2bb8550`](https://github.com/caddyserver/caddy/commit/2bb8550a) caddyhttp: Honor wildcard hosts in log SkipHosts ([#&#8203;4606](https://github.com/caddyserver/caddy/issues/4606)) - [`180ae0c`](https://github.com/caddyserver/caddy/commit/180ae0cc) caddyhttp: Implement http.request.uuid placeholder ([#&#8203;4285](https://github.com/caddyserver/caddy/issues/4285)) - [`7d5047c`](https://github.com/caddyserver/caddy/commit/7d5047c1) caddyhttp: Log empty value for typical password headers - [`eead337`](https://github.com/caddyserver/caddy/commit/eead3373) caddyhttp: Log non-500 handler errors at debug level ([#&#8203;4429](https://github.com/caddyserver/caddy/issues/4429)) - [`5bf0ada`](https://github.com/caddyserver/caddy/commit/5bf0adad) caddyhttp: Make logging of credential headers opt-in ([#&#8203;4438](https://github.com/caddyserver/caddy/issues/4438)) - [`186fdba`](https://github.com/caddyserver/caddy/commit/186fdba9) caddyhttp: Move HTTP redirect listener to an optional module ([#&#8203;4585](https://github.com/caddyserver/caddy/issues/4585)) - [`80d7a35`](https://github.com/caddyserver/caddy/commit/80d7a356) caddyhttp: Redirect HTTP requests on the HTTPS port to https:// ([#&#8203;4313](https://github.com/caddyserver/caddy/issues/4313)) - [`bf380d0`](https://github.com/caddyserver/caddy/commit/bf380d00) caddyhttp: Reject absurd methods ([#&#8203;4538](https://github.com/caddyserver/caddy/issues/4538)) - [`850e160`](https://github.com/caddyserver/caddy/commit/850e1605) caddyhttp: Return HTTP 421 for mismatched Host header ([#&#8203;4023](https://github.com/caddyserver/caddy/issues/4023)) - [`f55b123`](https://github.com/caddyserver/caddy/commit/f55b123d) caddyhttp: Split up logged remote address into IP and port ([#&#8203;4403](https://github.com/caddyserver/caddy/issues/4403)) - [`ac14b64`](https://github.com/caddyserver/caddy/commit/ac14b64e) caddyhttp: Support zone identifiers in remote_ip matcher ([#&#8203;4597](https://github.com/caddyserver/caddy/issues/4597)) - [`a1c4121`](https://github.com/caddyserver/caddy/commit/a1c41210) caddypki: Minor tweak, don't use context pointer - [`78e381b`](https://github.com/caddyserver/caddy/commit/78e381b2) caddypki: Refactor /pki/ admin endpoints - [`c634bbe`](https://github.com/caddyserver/caddy/commit/c634bbe9) caddypki: Return error if no PEM data found - [`9b7cdfa`](https://github.com/caddyserver/caddy/commit/9b7cdfa2) caddypki: Try to fix lint warnings - [`a79b405`](https://github.com/caddyserver/caddy/commit/a79b4055) caddytls: Add internal Caddyfile `lifetime`, `sign_with_root` opts ([#&#8203;4513](https://github.com/caddyserver/caddy/issues/4513)) - [`77a77c0`](https://github.com/caddyserver/caddy/commit/77a77c02) caddytls: Add `propagation_delay`, support `propagation_timeout -1` ([#&#8203;4723](https://github.com/caddyserver/caddy/issues/4723)) - [`66de438`](https://github.com/caddyserver/caddy/commit/66de438a) caddytls: Fix `MatchRemoteIP` provisoning with multiple CIDR ranges ([#&#8203;4522](https://github.com/caddyserver/caddy/issues/4522)) - [`57a708d`](https://github.com/caddyserver/caddy/commit/57a708d1) caddytls: Support external certificate Managers (like Tailscale) ([#&#8203;4541](https://github.com/caddyserver/caddy/issues/4541)) - [`d9b1d46`](https://github.com/caddyserver/caddy/commit/d9b1d463) caddytls: dns_challenge_override_domain for challenge delegation ([#&#8203;4596](https://github.com/caddyserver/caddy/issues/4596)) - [`1a7a78a`](https://github.com/caddyserver/caddy/commit/1a7a78a1) cmd: Print error if fmt overwrite fails (fix [#&#8203;4524](https://github.com/caddyserver/caddy/issues/4524)) - [`bc447e3`](https://github.com/caddyserver/caddy/commit/bc447e30) core: Config LoadInterval -> LoadDelay for clarity - [`7ea5b2a`](https://github.com/caddyserver/caddy/commit/7ea5b2a8) core: Config load interval only reloads if changed ([#&#8203;4603](https://github.com/caddyserver/caddy/issues/4603)) - [`7f364c7`](https://github.com/caddyserver/caddy/commit/7f364c77) core: Load config at interval instead of just once - [`a72acd2`](https://github.com/caddyserver/caddy/commit/a72acd21) core: Retry dynamic config load if config unchanged - [`ceef70d`](https://github.com/caddyserver/caddy/commit/ceef70db) core: Retry dynamic config load if error or no-op ([#&#8203;4603](https://github.com/caddyserver/caddy/issues/4603)) - [`acbee94`](https://github.com/caddyserver/caddy/commit/acbee947) core: Revert [`7f364c7`](https://github.com/caddyserver/caddy/commit/7f364c7); simplify dynamic config load - [`64a3218`](https://github.com/caddyserver/caddy/commit/64a3218f) core: Simplify shared listeners, fix deadline bug - [`8e5aafa`](https://github.com/caddyserver/caddy/commit/8e5aafa5) fastcgi: Fix a TODO, prevent zap using reflection for logging env ([#&#8203;4437](https://github.com/caddyserver/caddy/issues/4437)) - [`c8f2834`](https://github.com/caddyserver/caddy/commit/c8f2834b) fastcgi: Protect against requests with null bytes in the path ([#&#8203;4614](https://github.com/caddyserver/caddy/issues/4614)) - [`de490c7`](https://github.com/caddyserver/caddy/commit/de490c7c) fastcgi: Set SERVER_PORT to 80 or 443 depending on scheme ([#&#8203;4572](https://github.com/caddyserver/caddy/issues/4572)) - [`09ba9e9`](https://github.com/caddyserver/caddy/commit/09ba9e99) fileserver: Add `pass_thru` Caddyfile option ([#&#8203;4613](https://github.com/caddyserver/caddy/issues/4613)) - [`15c95e9`](https://github.com/caddyserver/caddy/commit/15c95e9d) fileserver: Canonical redir when whole path is stripped ([#&#8203;4549](https://github.com/caddyserver/caddy/issues/4549)) - [`c8b5a81`](https://github.com/caddyserver/caddy/commit/c8b5a816) fileserver: Fix handling of symlink sizes in directory listings ([#&#8203;4415](https://github.com/caddyserver/caddy/issues/4415)) - [`e81369e`](https://github.com/caddyserver/caddy/commit/e81369e2) fileserver: Move default browse template into a separate file ([#&#8203;4417](https://github.com/caddyserver/caddy/issues/4417)) - [`1e10f6f`](https://github.com/caddyserver/caddy/commit/1e10f6f7) fileserver: browse: do not encode the paths in breadcrumbs and page title ([#&#8203;4410](https://github.com/caddyserver/caddy/issues/4410)) - [`78b5356`](https://github.com/caddyserver/caddy/commit/78b5356f) fileserver: do not double-escape paths ([#&#8203;4447](https://github.com/caddyserver/caddy/issues/4447)) - [`0de5159`](https://github.com/caddyserver/caddy/commit/0de51593) go.mod: Revert version bump of CEL ([#&#8203;4587](https://github.com/caddyserver/caddy/issues/4587)) - [`6f9b6ad`](https://github.com/caddyserver/caddy/commit/6f9b6ad7) go.mod: Update smallstep/certificates, no longer need replace ([#&#8203;4475](https://github.com/caddyserver/caddy/issues/4475)) - [`4906b93`](https://github.com/caddyserver/caddy/commit/4906b935) go.mod: Update smallstep/truststore, fix build on FreeBSD ([#&#8203;4473](https://github.com/caddyserver/caddy/issues/4473)) - [`c133153`](https://github.com/caddyserver/caddy/commit/c1331534) go.mod: Update to latest smallstep/truststore, support FreeBSD ([#&#8203;4453](https://github.com/caddyserver/caddy/issues/4453)) - [`ff74a0a`](https://github.com/caddyserver/caddy/commit/ff74a0aa) go.mod: Upgrade dependencies - [`e9dde23`](https://github.com/caddyserver/caddy/commit/e9dde230) headers: Fix `+` in Caddyfile to properly append rather than set ([#&#8203;4506](https://github.com/caddyserver/caddy/issues/4506)) - [`1b7ff5d`](https://github.com/caddyserver/caddy/commit/1b7ff5d7) httpcaddyfile: Add `default_bind` global option ([#&#8203;4531](https://github.com/caddyserver/caddy/issues/4531)) - [`a8bb4a6`](https://github.com/caddyserver/caddy/commit/a8bb4a66) httpcaddyfile: Add `{vars.*}` placeholder shortcut, reverse `vars` sort order ([#&#8203;4726](https://github.com/caddyserver/caddy/issues/4726)) - [`5a07156`](https://github.com/caddyserver/caddy/commit/5a071568) httpcaddyfile: Add pki app `root` and `intermediate` cert/key config ([#&#8203;4514](https://github.com/caddyserver/caddy/issues/4514)) - [`3a1e0db`](https://github.com/caddyserver/caddy/commit/3a1e0dbf) httpcaddyfile: Deprecate paths in site addresses; use zap logs ([#&#8203;4728](https://github.com/caddyserver/caddy/issues/4728)) - [`26d633b`](https://github.com/caddyserver/caddy/commit/26d633ba) httpcaddyfile: Disabling OCSP stapling for both managed and unmanaged ([#&#8203;4589](https://github.com/caddyserver/caddy/issues/4589)) - [`93a7a45`](https://github.com/caddyserver/caddy/commit/93a7a45e) httpcaddyfile: Fix incorrect handling of IPv6 bind addresses ([#&#8203;4532](https://github.com/caddyserver/caddy/issues/4532)) - [`81ee34e`](https://github.com/caddyserver/caddy/commit/81ee34e9) httpcaddyfile: Fix sorting edgecase for nested `handle_path` ([#&#8203;4477](https://github.com/caddyserver/caddy/issues/4477)) - [`4b9849c`](https://github.com/caddyserver/caddy/commit/4b9849c7) httpcaddyfile: Support configuring `pki` app names via global options ([#&#8203;4450](https://github.com/caddyserver/caddy/issues/4450)) - [`5bd96a6`](https://github.com/caddyserver/caddy/commit/5bd96a6a) httpcaddyfile: Support explicitly turning off `strict_sni_host` ([#&#8203;4592](https://github.com/caddyserver/caddy/issues/4592)) - [`c921e08`](https://github.com/caddyserver/caddy/commit/c921e082) logging: Add `roll_local_time` Caddyfile option ([#&#8203;4583](https://github.com/caddyserver/caddy/issues/4583)) - [`0eb0b60`](https://github.com/caddyserver/caddy/commit/0eb0b60f) logging: Remove common_log field and single_field encoder ([#&#8203;4149](https://github.com/caddyserver/caddy/issues/4149)) ([#&#8203;4282](https://github.com/caddyserver/caddy/issues/4282)) - [`249adc1`](https://github.com/caddyserver/caddy/commit/249adc1c) logging: Support turning off roll compression via Caddyfile ([#&#8203;4505](https://github.com/caddyserver/caddy/issues/4505)) - [`8887adb`](https://github.com/caddyserver/caddy/commit/8887adb0) logging: add a filter for cookies ([#&#8203;4425](https://github.com/caddyserver/caddy/issues/4425)) - [`bcac2be`](https://github.com/caddyserver/caddy/commit/bcac2bee) logging: add a filter for query parameters ([#&#8203;4424](https://github.com/caddyserver/caddy/issues/4424)) - [`789efa5`](https://github.com/caddyserver/caddy/commit/789efa5d) logging: add a regexp filter ([#&#8203;4426](https://github.com/caddyserver/caddy/issues/4426)) - [`a1b417c`](https://github.com/caddyserver/caddy/commit/a1b417c8) logging: add support for hashing data ([#&#8203;4434](https://github.com/caddyserver/caddy/issues/4434)) - [`eb891d4`](https://github.com/caddyserver/caddy/commit/eb891d46) metrics: Enforce smaller set of method labels - [`c04d24c`](https://github.com/caddyserver/caddy/commit/c04d24ca) pki: Avoid provisioning the `local` CA when not necessary ([#&#8203;4463](https://github.com/caddyserver/caddy/issues/4463)) - [`bbad693`](https://github.com/caddyserver/caddy/commit/bbad6931) pki: Implement API endpoints for certs and `caddy trust` ([#&#8203;4443](https://github.com/caddyserver/caddy/issues/4443)) - [`9ee68c1`](https://github.com/caddyserver/caddy/commit/9ee68c1b) reverseproxy: Adjust defaults, document defaults ([#&#8203;4436](https://github.com/caddyserver/caddy/issues/4436)) - [`7557d1d`](https://github.com/caddyserver/caddy/commit/7557d1d9) reverseproxy: Avoid returning a `nil` error during GetClientCertificate ([#&#8203;4550](https://github.com/caddyserver/caddy/issues/4550)) - [`ab04559`](https://github.com/caddyserver/caddy/commit/ab045592) reverseproxy: Dynamic upstreams (with SRV and A/AAAA support) ([#&#8203;4470](https://github.com/caddyserver/caddy/issues/4470)) - [`5333c35`](https://github.com/caddyserver/caddy/commit/5333c352) reverseproxy: Fix incorrect `health_headers` Caddyfile parsing ([#&#8203;4485](https://github.com/caddyserver/caddy/issues/4485)) - [`c50094f`](https://github.com/caddyserver/caddy/commit/c50094fc) reverseproxy: Implement trusted proxies for `X-Forwarded-*` headers ([#&#8203;4507](https://github.com/caddyserver/caddy/issues/4507)) - [`f5e1049`](https://github.com/caddyserver/caddy/commit/f5e10494) reverseproxy: Make shallow-ish clone of the request ([#&#8203;4551](https://github.com/caddyserver/caddy/issues/4551)) - [`87a1f22`](https://github.com/caddyserver/caddy/commit/87a1f228) reverseproxy: Move status replacement intercept to `replace_status` ([#&#8203;4300](https://github.com/caddyserver/caddy/issues/4300)) - [`d058dee`](https://github.com/caddyserver/caddy/commit/d058dee1) reverseproxy: Refactor dial address parsing, augment command parsing ([#&#8203;4616](https://github.com/caddyserver/caddy/issues/4616)) - [`c7d6c4c`](https://github.com/caddyserver/caddy/commit/c7d6c4cb) reverseproxy: copy_response and copy_response_headers for handle_response routes ([#&#8203;4391](https://github.com/caddyserver/caddy/issues/4391)) - [`bcb7a19`](https://github.com/caddyserver/caddy/commit/bcb7a19c) rewrite: Add `method` Caddyfile directive ([#&#8203;4528](https://github.com/caddyserver/caddy/issues/4528)) - [`1feb659`](https://github.com/caddyserver/caddy/commit/1feb6595) rewrite: Fix a double-encode issue when using the `{uri}` placeholder ([#&#8203;4516](https://github.com/caddyserver/caddy/issues/4516)) - [`6cadb60`](https://github.com/caddyserver/caddy/commit/6cadb60f) templates: Document .OriginalReq - [`1d0425b`](https://github.com/caddyserver/caddy/commit/1d0425b2) templates: Elaborate on what's supported by the markdown function ([#&#8203;4564](https://github.com/caddyserver/caddy/issues/4564)) - [`a6199cf`](https://github.com/caddyserver/caddy/commit/a6199cf8) templates: Fix docs for .Args - [`ec14ccd`](https://github.com/caddyserver/caddy/commit/ec14ccdd) templates: fix inconsistent nested includes ([#&#8203;4452](https://github.com/caddyserver/caddy/issues/4452)) - [`d0b608a`](https://github.com/caddyserver/caddy/commit/d0b608af) tracing: New OpenTelemetry module ([#&#8203;4361](https://github.com/caddyserver/caddy/issues/4361)) - [`134b805`](https://github.com/caddyserver/caddy/commit/134b8056) caddyfile: Prevent bad block opening tokens ([#&#8203;4655](https://github.com/caddyserver/caddy/issues/4655)) - [`c5fffb4`](https://github.com/caddyserver/caddy/commit/c5fffb4a) caddyfile: Support for raw token values; improve `map`, `expression` ([#&#8203;4643](https://github.com/caddyserver/caddy/issues/4643)) - [`b82e22b`](https://github.com/caddyserver/caddy/commit/b82e22b4) caddyhttp: retain all values of vars matcher when specified multiple times ([#&#8203;4629](https://github.com/caddyserver/caddy/issues/4629)) - [`bc15b4b`](https://github.com/caddyserver/caddy/commit/bc15b4b0) caddypki: Load intermediate for signing on-the-fly ([#&#8203;4669](https://github.com/caddyserver/caddy/issues/4669)) - [`6512832`](https://github.com/caddyserver/caddy/commit/6512832f) cmd: Add `--diff` option for `caddy fmt` ([#&#8203;4695](https://github.com/caddyserver/caddy/issues/4695)) - [`30b6d1f`](https://github.com/caddyserver/caddy/commit/30b6d1f4) cmd: Enhance .env (dotenv) file parsing - [`22d8edb`](https://github.com/caddyserver/caddy/commit/22d8edb9) cmd: Fix defaulting admin address if empty in config, fixes `reload` ([#&#8203;4674](https://github.com/caddyserver/caddy/issues/4674)) - [`c232716`](https://github.com/caddyserver/caddy/commit/c2327161) cmd: Set Origin header properly on API requests - [`d06d0e7`](https://github.com/caddyserver/caddy/commit/d06d0e79) go.mod: Upgrade CertMagic to v0.16.0 - [`bf6a1b7`](https://github.com/caddyserver/caddy/commit/bf6a1b75) go.mod: Upgrade some dependencies - [`79cbe7b`](https://github.com/caddyserver/caddy/commit/79cbe7bf) httpcaddyfile: Add 'vars' directive - [`a58f240`](https://github.com/caddyserver/caddy/commit/a58f240d) httpcaddyfile: Fix [#&#8203;4640](https://github.com/caddyserver/caddy/issues/4640) (auto-HTTPS edgecase) ([#&#8203;4661](https://github.com/caddyserver/caddy/issues/4661)) - [`7d22966`](https://github.com/caddyserver/caddy/commit/7d229665) logging: Caddyfile support for `duration_format` ([#&#8203;4684](https://github.com/caddyserver/caddy/issues/4684)) - [`55b4c12`](https://github.com/caddyserver/caddy/commit/55b4c12e) map: Evaluate placeholders in output vals ([#&#8203;4650](https://github.com/caddyserver/caddy/issues/4650)) - [`93c99f6`](https://github.com/caddyserver/caddy/commit/93c99f67) map: Support numeric and bool types with Caddyfile - [`3d616e8`](https://github.com/caddyserver/caddy/commit/3d616e8c) requestbody: Return HTTP 413 (fix [#&#8203;4558](https://github.com/caddyserver/caddy/issues/4558)) - [`3e3bb00`](https://github.com/caddyserver/caddy/commit/3e3bb002) reverseproxy: Add `_ms` placeholders for proxy durations ([#&#8203;4666](https://github.com/caddyserver/caddy/issues/4666)) - [`2196c92`](https://github.com/caddyserver/caddy/commit/2196c92c) reverseproxy: Don't clear name in SRV upstreams - [`dc4d147`](https://github.com/caddyserver/caddy/commit/dc4d1473) reverseproxy: Expand SRV/A addrs for cache key - [`b8dbecb`](https://github.com/caddyserver/caddy/commit/b8dbecb8) reverseproxy: Include port in A upstreams cache - [`e4ce40f`](https://github.com/caddyserver/caddy/commit/e4ce40f8) reverseproxy: Sync up `handleUpgradeResponse` with stdlib ([#&#8203;4664](https://github.com/caddyserver/caddy/issues/4664)) - [`afca242`](https://github.com/caddyserver/caddy/commit/afca2421) staticfiles: Expand placeholder for index files ([#&#8203;4679](https://github.com/caddyserver/caddy/issues/4679)) - [`00234c8`](https://github.com/caddyserver/caddy/commit/00234c8a) templates: Switch to `BurntSushi/toml` ([#&#8203;4700](https://github.com/caddyserver/caddy/issues/4700)) **Full Changelog**: https://github.com/caddyserver/caddy/compare/v2.4.6...v2.5.0 </details> --- ### Configuration 📅 **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
renovator added 1 commit 2022-04-25 20:02:39 +02:00
xoxys merged commit bb07e1b8ca into main 2022-04-29 10:42:47 +02:00
xoxys deleted branch renovate/caddyserver-caddy-2.x 2022-04-29 10:42:47 +02:00
This repo is archived. You cannot comment on pull requests.
No reviewers
No Label
No Milestone
No Assignees
1 Participants
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: container/link-validator#72
No description provided.