Releases: aaronland/go-http
Releases · aaronland/go-http
Release list
4.1.0
What's Changed
- Add support for retrieving multiple values with the same key to
sanitizepackage by @thisisaaronland in #8
Full Changelog: v4.0.4...v4.1.0
4.0.4
4.0.3
What's Changed
- Update slog.LoggerWithRequest to not repeatedly set request fields by @thisisaaronland in #6
- Bug fix: Update
slog.LoggerWithRequestto not repeatedly set request fields for default logger - Update vendor deps
Full Changelog: v4.0.2...v4.0.3
4.0.2
- Better logging for route handler
- Update vendor deps
4.0.1
4.0.0
What's Changed
Move all the individual handler packages in the handler package in to discrete top-level named-packages. This is a backwards incompatible change in that all the import paths have changed but the method signatures (and names) for individual methods have NOT changed.
go-http/v3/handlers.DisabledHandlerbecomesgo-http/v4/response.DisabledHandlergo-http/v3/handlers.NotImplementedHandlerbecomesgo-http/v4/response.NotImplementedHandlergo-http/v3/handlers.PingHandlerbecomesgo-http/v4/response.PingHandler(the same applies forPingPongHandler)go-http/v3/handlers.NullHandlerbecomesgo-http/v4/response.NullHandlergo-http/v3/handlers.RouteHandlerbecomesgo-http/v4/route.RouteHandlergo-http/v3/handlers.OpenSearchHandlerbecomesgo-http/v4/ropensearch.OpenSearchHandler
Additionally:
- The
opensearchhandler package has been updated to include missing code from the originalsfomuseum/go-http-opensearchpackage - Internal packages have been updated to reflect these changes
- Update vendor deps
New Contributors
Full Changelog: v3.3.0...v4.0.0
3.3.0
What's Changed
- Add
wellknown/webfingerpackage. by @thisisaaronland in #3
Full Changelog: v3.2.0...v3.3.0
3.2.0
What's Changed
- Merge
aaronland/go-http-bootstrapby @thisisaaronland in #2
New Contributors
- @thisisaaronland made their first contribution in #2
Full Changelog: v3.1.1...v3.2.0
3.1.1
- Bug fix: Add missing methods to
sanitizepackage - Update vendor deps
3.1.0
- Add
slogpackage (for creatinglog/sloginstances with a preset keys based on the current request). - Update vendor deps.