Merge pull request #374 from opencloud-eu/dependabot/go_modules/github.com/riandyrn/otelchi-0.12.1

build(deps): bump github.com/riandyrn/otelchi from 0.12.0 to 0.12.1
This commit is contained in:
Ralf Haferkamp
2025-03-18 08:11:16 +01:00
committed by GitHub
6 changed files with 17 additions and 7 deletions
+9 -1
View File
@@ -8,6 +8,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## [Unreleased]
## [0.12.1] - 2025-02-12
### Fixed
- Fix superfluous header writer ([#89])
## [0.12.0] - 2025-01-18
### Changed
@@ -222,6 +228,7 @@ It contains instrumentation for trace and depends on:
- Example code for a basic usage.
- Apache-2.0 license.
[#89]: https://github.com/riandyrn/otelchi/pull/89
[#88]: https://github.com/riandyrn/otelchi/pull/88
[#87]: https://github.com/riandyrn/otelchi/pull/87
[#74]: https://github.com/riandyrn/otelchi/pull/74
@@ -253,7 +260,8 @@ It contains instrumentation for trace and depends on:
[#2]: https://github.com/riandyrn/otelchi/pull/2
[#1]: https://github.com/riandyrn/otelchi/pull/1
[Unreleased]: https://github.com/riandyrn/otelchi/compare/v0.12.0...HEAD
[Unreleased]: https://github.com/riandyrn/otelchi/compare/v0.12.1...HEAD
[0.12.1]: https://github.com/riandyrn/otelchi/releases/tag/v0.12.1
[0.12.0]: https://github.com/riandyrn/otelchi/releases/tag/v0.12.0
[0.11.0]: https://github.com/riandyrn/otelchi/releases/tag/v0.11.0
[0.10.1]: https://github.com/riandyrn/otelchi/releases/tag/v0.10.1
+3 -1
View File
@@ -89,8 +89,10 @@ func getRRW(writer http.ResponseWriter) *recordingResponseWriter {
if !rrw.written {
rrw.written = true
rrw.status = statusCode
// only call next WriteHeader when header is not written yet
// this is to prevent superfluous WriteHeader call
next(statusCode)
}
next(statusCode)
}
},
})
+1 -1
View File
@@ -2,5 +2,5 @@ package version
// Version is the current release version of otelchi in use.
func Version() string {
return "0.12.0"
return "0.12.1"
}