Skip to content

Releases: aaronland/go-http

4.1.0

Choose a tag to compare

@thisisaaronland thisisaaronland released this 07 Aug 01:55
541885a

What's Changed

  • Add support for retrieving multiple values with the same key to sanitize package by @thisisaaronland in #8

Full Changelog: v4.0.4...v4.1.0

4.0.4

Choose a tag to compare

@thisisaaronland thisisaaronland released this 18 Jun 18:01
  • Update vendor deps

4.0.3

Choose a tag to compare

@thisisaaronland thisisaaronland released this 16 Apr 18:35
ccfc9bd

What's Changed

  • Update slog.LoggerWithRequest to not repeatedly set request fields by @thisisaaronland in #6
  • Bug fix: Update slog.LoggerWithRequest to not repeatedly set request fields for default logger
  • Update vendor deps

Full Changelog: v4.0.2...v4.0.3

4.0.2

Choose a tag to compare

@thisisaaronland thisisaaronland released this 04 Mar 02:15
  • Better logging for route handler
  • Update vendor deps

4.0.1

Choose a tag to compare

@thisisaaronland thisisaaronland released this 03 Mar 01:23
  • Update vendor deps
  • Run go fix

4.0.0

Choose a tag to compare

@straup straup released this 13 Nov 16:32
9f6309f

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.DisabledHandler becomes go-http/v4/response.DisabledHandler
  • go-http/v3/handlers.NotImplementedHandler becomes go-http/v4/response.NotImplementedHandler
  • go-http/v3/handlers.PingHandler becomes go-http/v4/response.PingHandler (the same applies for PingPongHandler)
  • go-http/v3/handlers.NullHandler becomes go-http/v4/response.NullHandler
  • go-http/v3/handlers.RouteHandler becomes go-http/v4/route.RouteHandler
  • go-http/v3/handlers.OpenSearchHandler becomes go-http/v4/ropensearch.OpenSearchHandler

Additionally:

  • The opensearch handler package has been updated to include missing code from the original sfomuseum/go-http-opensearch package
  • Internal packages have been updated to reflect these changes
  • Update vendor deps

New Contributors

  • @straup made their first contribution in #4

Full Changelog: v3.3.0...v4.0.0

3.3.0

Choose a tag to compare

@thisisaaronland thisisaaronland released this 12 Nov 22:46
d270e9f

What's Changed

Full Changelog: v3.2.0...v3.3.0

3.2.0

Choose a tag to compare

@thisisaaronland thisisaaronland released this 09 Sep 21:36
77eac79

What's Changed

New Contributors

Full Changelog: v3.1.1...v3.2.0

3.1.1

Choose a tag to compare

@thisisaaronland thisisaaronland released this 29 Aug 20:30
  • Bug fix: Add missing methods to sanitize package
  • Update vendor deps

3.1.0

Choose a tag to compare

@thisisaaronland thisisaaronland released this 22 Aug 19:13
  • Add slog package (for creating log/slog instances with a preset keys based on the current request).
  • Update vendor deps.