Releases: XSAM/otelsql
Releases · XSAM/otelsql
Release v0.26.0
Release v0.25.0
0.25.0 - 2023-09-18
⚠️ Notice ⚠️
This update contains a breaking change of the type of SpanNameFormatter
. If you use SpanNameFormatter
in your code, you need to change the type of SpanNameFormatter
to function.
The minimum supported Go version is 1.20
.
Changed
- Upgrade OTel to version
v1.18.0/v0.41.0
. (#184) - The type of
SpanNameFormatter
has been changed to function for easier use. (#185)
Removed
- Support for Go
1.19
. (#186)
Release v0.24.0
Release v0.23.0
Release v0.22.0
Release v0.21.0
0.21.0 - 2023-04-16
⚠️ Notice ⚠️
This update contains a breaking change of correcting the behavior of returning driver.ErrSkip
when not permitted by sql/driver
.
- If your driver uses the old
sql/driver
interfaces, which does not use theContext
as a parameter, this update may let your driver work with this library. - If your driver uses the new
sql/driver
interfaces, which use theContext
as a parameter, this update should not affect your code.