Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions instrumentation/all/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History: opentelemetry-instrumentation-all

### v0.82.0 / 2025-09-18

* BREAKING CHANGE: AWS Lambda: Check if span has the attributes method to avoid internal error

* FIXED: AWS Lambda: Check if span has the attributes method to avoid internal error

### v0.81.0 / 2025-09-16

* ADDED: Anthropic initial instrumentation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module All
VERSION = '0.81.0'
VERSION = '0.82.0'
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Gem::Specification.new do |spec|

spec.add_dependency 'opentelemetry-instrumentation-active_model_serializers', '~> 0.22.0'
spec.add_dependency 'opentelemetry-instrumentation-anthropic', '~> 0.1.0'
spec.add_dependency 'opentelemetry-instrumentation-aws_lambda', '~> 0.3.0'
spec.add_dependency 'opentelemetry-instrumentation-aws_lambda', '~> 0.4.0'
spec.add_dependency 'opentelemetry-instrumentation-aws_sdk', '~> 0.8.0'
spec.add_dependency 'opentelemetry-instrumentation-bunny', '~> 0.22.0'
spec.add_dependency 'opentelemetry-instrumentation-concurrent_ruby', '~> 0.22.0'
Expand Down
6 changes: 6 additions & 0 deletions instrumentation/aws_lambda/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History: opentelemetry-instrumentation-aws_lambda

### v0.4.0 / 2025-09-18

* BREAKING CHANGE: Check if span has the attributes method to avoid internal error

* FIXED: Check if span has the attributes method to avoid internal error

### v0.3.0 / 2025-02-04

* ADDED: AWS Lambda programmatic wrap
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module AwsLambda
VERSION = '0.3.0'
VERSION = '0.4.0'
end
end
end
Loading