Skip to content

Latest commit

 

History

History
103 lines (85 loc) · 4.18 KB

CHANGELOG.md

File metadata and controls

103 lines (85 loc) · 4.18 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

  • VisitDependencyValues handles reflect.Value dependencies
  • Use a generic Type() function for extracting runtime types
  • tls 1.3 is used as the default minimum version
  • only strong cipher suites are allowed for tls version less than 1.3
  • upgraded to httpaux v0.2.1
  • upgraded to httpaux v0.1.6
  • Refactored dependency reflection to make it easier to use
  • Added a convenience for declaring injected dependencies
  • Simplified declarative builders in arrangehttp
  • arrangetest package now encapsulates more uber/fx testing
  • removed arrangehttp roundtripper functionality in favor of httpaux
  • Support more slice types for server and client options
  • CPU and heap profiling bound to the fx.App lifecycle
  • Easy configuration of net/http/pprof handlers for injected gorilla/mux routers
  • Reverted optional Unmarshaler for arrangehttp, as it caused more problems than it solved
  • Preserve total order of all middleware, whether injected or supplied externally
  • Unmarshaler is now optional for the arrangehttp package
  • Configurable response headers for both clients and servers
  • added server options for building contexts
  • added ErrorLog server option
  • added ConnState server option
  • added a viper option for aggregating decode hooks
  • added a viper option for decoding encoding.TextUnmarshaler implementations
  • added a set of default decode hooks
  • added sonar integration
  • added code climate badges
  • refactored arrangehttp reflection logic around options for simplicity and consistency
  • expose an optional fx.Printer for arrange informational output
  • expose a testing fx.Printer to redirect output to testing.T and testing.B
  • introduce arrange.Unmarshaler rather than having everything depend directly on viper
  • separated Use vs Inject in builders to make API usage clearer
  • struct field traversal
  • fx.In detection
  • support for injecting all options into servers and clients
  • support for immutable and precomputed HTTP headers
  • moved TLS code out of arrangehttp, as that package was getting too large
  • added test utilities for generate TLS certificates for unit tests
  • separated listener creation into its own interface to make customization easier
  • arrangehttp decorators (e.g. middleware) may now be injected
  • http.Roundtripper decoration to support things like metrics and logging
  • Added http.Client support to arrangehttp
  • Simpler TLS configuration
  • Some better examples in godoc
  • Upgrade mapstructure to v1.3.2
  • Added convenient viper.DecoderConfigOption implementations
  • Removed UnmarshalExact, as it is superfluous
  • Added a simple way to unmarshal multiple keys at once
  • Streamlined unmarshal/provide API
  • Added arrangehttp, with support for producing http.Server objects from external configuration

v0.1.0

  • Initial creation