diff --git a/instrumentation/action_pack/CHANGELOG.md b/instrumentation/action_pack/CHANGELOG.md index 3eff08eb9b..a0c3155cf3 100644 --- a/instrumentation/action_pack/CHANGELOG.md +++ b/instrumentation/action_pack/CHANGELOG.md @@ -1,5 +1,9 @@ # Release History: opentelemetry-instrumentation-action_pack +### v0.12.1 / 2025-05-07 + +* FIXED: Account for `nil` routes + ### v0.12.0 / 2025-02-04 * ADDED: Strip Rails `(.:format)` suffix from `http.route` diff --git a/instrumentation/action_pack/lib/opentelemetry/instrumentation/action_pack/version.rb b/instrumentation/action_pack/lib/opentelemetry/instrumentation/action_pack/version.rb index 57cb47a9aa..d72f04f090 100644 --- a/instrumentation/action_pack/lib/opentelemetry/instrumentation/action_pack/version.rb +++ b/instrumentation/action_pack/lib/opentelemetry/instrumentation/action_pack/version.rb @@ -7,7 +7,7 @@ module OpenTelemetry module Instrumentation module ActionPack - VERSION = '0.12.0' + VERSION = '0.12.1' end end end diff --git a/resources/aws/CHANGELOG.md b/resources/aws/CHANGELOG.md index bd0ba80519..fd4b63f66a 100644 --- a/resources/aws/CHANGELOG.md +++ b/resources/aws/CHANGELOG.md @@ -1,5 +1,10 @@ # Release History: opentelemetry-resource-detector-aws +### v0.3.0 / 2025-05-07 + +* ADDED: Contribute aws lambda resource detector +* FIXED: Add missing semantic conventions require in AWS resource detectors + ### v0.2.0 / 2025-04-29 * ADDED: Contribute aws ecs resource detector diff --git a/resources/aws/lib/opentelemetry/resource/detector/aws/version.rb b/resources/aws/lib/opentelemetry/resource/detector/aws/version.rb index 0777ad1f1e..a5107c1a0c 100644 --- a/resources/aws/lib/opentelemetry/resource/detector/aws/version.rb +++ b/resources/aws/lib/opentelemetry/resource/detector/aws/version.rb @@ -8,7 +8,7 @@ module OpenTelemetry module Resource module Detector module AWS - VERSION = '0.2.0' + VERSION = '0.3.0' end end end