Merge branch 'master' into version/4

This commit is contained in:
DarthSim
2025-09-21 21:17:04 +03:00
4 changed files with 15 additions and 1 deletions

View File

@@ -1,6 +1,10 @@
# Changelog
## [Unreleased]
### Changed
- Format New Relic and OpenTelemetry metadata values that implement the `fmt.Stringer` interface as strings.
## [3.30.0] - 2025-09-17
### Added
- Add [IMGPROXY_GRACEFUL_STOP_TIMEOUT](https://docs.imgproxy.net/latest/configuration/options#IMGPROXY_GRACEFUL_STOP_TIMEOUT) config.
- (pro) Add [color_profile](https://docs.imgproxy.net/latest/usage/processing#color-profile) processing option and [IMGPROXY_COLOR_PROFILES_DIR](https://docs.imgproxy.net/latest/configuration/options#IMGPROXY_COLOR_PROFILES_DIR) config.

View File

@@ -146,6 +146,11 @@ func setMetadata(span attributable, key string, value interface{}) {
return
}
if stringer, ok := value.(fmt.Stringer); ok {
span.AddAttribute(key, stringer.String())
return
}
rv := reflect.ValueOf(value)
switch {
case rv.Kind() == reflect.String || rv.Kind() == reflect.Bool:

View File

@@ -431,6 +431,11 @@ func setMetadata(span trace.Span, key string, value interface{}) {
return
}
if stringer, ok := value.(fmt.Stringer); ok {
span.SetAttributes(attribute.String(key, stringer.String()))
return
}
rv := reflect.ValueOf(value)
switch {

View File

@@ -1,3 +1,3 @@
package version
const Version = "3.29.1"
const Version = "3.30.0"