Compare commits

...

3 Commits

Author SHA1 Message Date
e796daa50c update CHANGELOG 2026-01-23 22:38:34 -05:00
d246ba7c16 stop hijacking / 2026-01-23 22:12:44 -05:00
04a626df60 update CHANGELOG 2026-01-23 21:00:48 -05:00
2 changed files with 21 additions and 1 deletions

View File

@@ -1,3 +1,24 @@
# v0.17.1
* stop hijacking /
# v0.17.0
* feat: Add CORS support
# v0.16.1
* fix custom type management
# v0.16.0
* enhance context management for custom types
# v0.15.0
* updates go dependencies, refactors config loading precedence, adds gRPC gateway path stripping option, and improves HTTP handler setup.
# v0.14.0
* Improve serve mux path
# v0.13.0
* add default tag name
# v0.12.1 # v0.12.1
* feat: Implement custom OpenTelemetry span name formatting for HTTP requests. * feat: Implement custom OpenTelemetry span name formatting for HTTP requests.
* refactor: Streamline OpenTelemetry handler integration by removing custom wrapper. * refactor: Streamline OpenTelemetry handler integration by removing custom wrapper.

View File

@@ -44,7 +44,6 @@ func prepHTTPServer(opts *opts.AppHTTP) *http.Server {
healthChecks := handleHealthCheckFunc(opts.Ctx, opts.HealthChecks...) healthChecks := handleHealthCheckFunc(opts.Ctx, opts.HealthChecks...)
mux.HandleFunc("/health", healthChecks) mux.HandleFunc("/health", healthChecks)
mux.HandleFunc("/", healthChecks)
for _, f := range opts.Funcs { for _, f := range opts.Funcs {
mux.HandleFunc(f.Path, f.HandlerFunc) mux.HandleFunc(f.Path, f.HandlerFunc)