Skip to content
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

fix(deps): update module github.com/caddyserver/caddy/v2 to v2.7.6 #111

Merged
merged 2 commits into from
Dec 14, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 6, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
github.com/caddyserver/caddy/v2 require patch v2.7.3 -> v2.7.6

Release Notes

caddyserver/caddy (github.com/caddyserver/caddy/v2)

v2.7.6

Compare Source

In this version we've made several fixes and enhancements with help from several contributors. Most changes are small, but some notable ones:

  • The templates middleware is now officially extensible (experimentally). This means modules can add custom functions/actions for templates to execute.
  • TLS storage cleaning is now synchronized across the cluster and remembered across restarts. This should greatly lower costs for expensive storage backends like DynamoDB.
  • Placeholders are now evaluated in config for certificate loaders.
  • Numerous bug fixes.

Thank you to everyone who contributed!

Changelog

Full Changelog: caddyserver/caddy@v2.7.5...v2.7.6

v2.7.5

Compare Source

In this release, we've fixed quite a few small bugs and annoyances, including HTTP/2 Rapid Reset which affected most HTTP/2 implementations.

On a personal note (from @​mholt): I recently became a dad! I want to thank our maintainers for helping in so many ways while I've been taking extra time for family. Francis, Matthew, Mohammed, and others -- including all the contributors below, and then some -- are to thank for shipping this release.

Highlights

  • Updated https://github.com/quic-go/quic-go from v0.37.5 to v0.39.0, including many performance improvements. GSO and ECN are now enabled by default, but you may turn them off by setting the QUIC_GO_DISABLE_GSO=true and QUIC_GO_DISABLE_ECN=true environment variables respectively, if they cause you problems. See the quic-go release notes for more details.
  • The file server's fileserver.BrowseTemplate is now exported, so it may be customized by programs embedding Caddy. (ed8bb13)
  • Environment variables loaded with --envfile no longer override existing variables. (#​5803)
  • The encode handler now compresses application/wasm* content types by default. (#​5869)
  • The reverse_proxy handler can now emit very detailed logs for debugging streaming and buffering. To enable it, set the verbose_logs subdirective, and set logging to debug level. Since the logs from this are very noisy, using verbose_logs to opt-in is necessary. We may ask you to enable this when asking for support! (#​5793)
  • You can now check the version with caddy -v, like most other CLI utilities! (#​5874)

Caddy is on feature freeze until after 2.8 so we can improve our testing situation. These patches have all been tried to ensure they work as intended, but if you notice any issues please report them!

Changelog

  • 0e204b7 admin: Respond with 4xx on non-existing config path (#​5870)
  • 89c407a build(deps): bump actions/checkout from 3 to 4 (#​5846)
  • 1405683 build(deps): bump goreleaser/goreleaser-action from 4 to 5 (#​5847)
  • 38a7b6b caddyfile: Adjust error formatting (#​5765)
  • 7103ea0 caddyfile: Fix case where heredoc marker is empty after newline (#​5769)
  • 10053f7 caddyfile: Loosen heredoc parsing (#​5761)
  • 58ab3a0 caddyhttp: Use LimitedReader for HTTPRedirectListener (thank you to Bartek Nowotarski for reporting)
  • 9c419f1 cmd: Fix exiting with custom status code, add caddy -v (#​5874)
  • f2ab709 cmd: Prevent overwriting existing env vars with --envfile (#​5803)
  • e0aaefa encode: Add application/wasm* to the default content types (#​5869)
  • fa5a579 fileserver: Add command shortcuts -l and -a (#​5854)
  • ed8bb13 fileserver: Export BrowseTemplate
  • 130f6d1 fileserver: Set canonical URL on browse template (#​5867)
  • a306c5f fileserver: browse template SVG icons and UI tweaks (#​5812)
  • 0a6d333 fileserver: docs: clarify the ability to produce JSON array with browse (#​5751)
  • 82c356f fix: caddytest.AssertResponseCode error message (#​5853)
  • 888c6d7 go.mod: Update quic-go to v0.38.0 (#​5772)
  • 88b4fbf go.mod: Upgrade dependencies incl. x/net/http
  • df99502 httpcaddyfile: Enable TLS for catch-all site if tls directive is specified (#​5808)
  • 33d8d2c httpcaddyfile: Sort TLS SNI matcher for deterministic JSON output (#​5860)
  • 288216e httpcaddyfile: Stricter errors for site and upstream address schemes (#​5757)
  • 2cac3c5 httpcaddyfile: fix placeholder shorthands in named routes (#​5791)
  • c46ec3b logging: Clone array on log filters, prevent side-effects (#​5786)
  • 1b73e38 logging: query filter for array of strings (#​5779)
  • 4776f62 replacer: change timezone to UTC for "time.now.http" placeholders (#​5774)
  • a8586b0 reverseproxy: Add logging for dynamic A upstreams (#​5857)
  • 3a3182f reverseproxy: Add more debug logs (#​5793)
  • 4feac4d reverseproxy: Allow fallthrough for response handlers without routes (#​5780)
  • e8b8d4a reverseproxy: Fix least_conn policy regression (#​5862)
  • 2a6859a reverseproxy: Fix retries on "upstreams unavailable" error (#​5841)
  • 05dbe1c reverseproxy: Replace health header placeholders (#​5861)
  • 1e0dea5 reverseproxy: fix nil pointer dereference in AUpstreams.GetUpstreams (#​5811)
  • b245ecd reverseproxy: fix parsing Caddyfile fails for unlimited request/response buffers (#​5828)
  • 5653c36 templates: Add dummy RemoteAddr to httpInclude request, proxy compatibility (#​5845)
  • 289934f tls: Add X25519Kyber768Draft00 PQ "curve" behind build tag (#​5852)

New Contributors

Full Changelog: caddyserver/caddy@v2.7.4...v2.7.5

v2.7.4

Compare Source

Caddy 2.7.4 rounds out some bug fixes from the 2.7 release. For example, Go made a last-minute breaking change to a new API that broke quic-go (HTTP/3) on Go 1.21 just before Go 1.21 was released; we resolved a few issues with on-demand TLS that are now much improved from the 2.6 tree; a couple race conditions were fixed in dynamic reverse proxy upstreams. We hope you will be pleased with this new version!

Caddy is on feature freeze until after 2.8 so we can improve our testing situation. These patches have all been tried to ensure they work as intended, but if you notice any issues please report them!

We encourage all users to test this new version and then upgrade. Thanks to all who get involved!

Changelog

New Contributors

Full Changelog: caddyserver/caddy@v2.7.3...v2.7.4


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - 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, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/github.aaakk.us.kg-caddyserver-caddy-v2-2.x branch 5 times, most recently from 744ba3b to d7a165b Compare December 8, 2023 01:59
@renovate renovate bot changed the title fix(deps): update module github.com/caddyserver/caddy/v2 to v2.7.5 fix(deps): update module github.com/caddyserver/caddy/v2 to v2.7.6 Dec 8, 2023
@renovate renovate bot force-pushed the renovate/github.aaakk.us.kg-caddyserver-caddy-v2-2.x branch 5 times, most recently from 3d8019b to 8166661 Compare December 14, 2023 10:35
@renovate renovate bot force-pushed the renovate/github.aaakk.us.kg-caddyserver-caddy-v2-2.x branch from 8166661 to 39af457 Compare December 14, 2023 10:36
@renovate renovate bot force-pushed the renovate/github.aaakk.us.kg-caddyserver-caddy-v2-2.x branch from 39af457 to 2c08349 Compare December 14, 2023 11:39
Signed-off-by: Felipe Zipitria <[email protected]>
Copy link

sonarcloud bot commented Dec 14, 2023

Quality Gate Passed Quality Gate passed

Kudos, no new issues were introduced!

0 New issues
0 Security Hotspots
No data about Coverage
No data about Duplication

See analysis details on SonarCloud

Copy link
Contributor Author

renovate bot commented Dec 14, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@fzipi fzipi merged commit f8544f4 into main Dec 14, 2023
5 checks passed
@fzipi fzipi deleted the renovate/github.aaakk.us.kg-caddyserver-caddy-v2-2.x branch December 14, 2023 12:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant