Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: Release 5 gems #1394

Merged
merged 5 commits into from
Feb 4, 2025
Merged
Show file tree
Hide file tree
Changes from 2 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
4 changes: 4 additions & 0 deletions instrumentation/action_pack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History: opentelemetry-instrumentation-action_pack

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

* ADDED: Strip Rails `(.:format)` suffix from `http.route`

### v0.11.0 / 2025-01-16

* BREAKING CHANGE: Drop Support for EoL Rails 6.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module ActionPack
VERSION = '0.11.0'
VERSION = '0.12.0'
end
end
end
7 changes: 7 additions & 0 deletions instrumentation/all/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Release History: opentelemetry-instrumentation-all

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

* CHANGED: opentelemetry-instrumentation-redis v0.26.1
* CHANGED: opentelemetry-instrumentation-rails v0.36.0
* CHANGED: opentelemetry-instrumentation-aws_lambda v0.3.0
* CHANGED: opentelemetry-instrumentation-action_pack v0.12.0

### v0.72.0 / 2025-01-16

* BREAKING CHANGE: Set minimum supported version to Ruby 3.1
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.72.0'
VERSION = '0.73.0'
end
end
end
5 changes: 5 additions & 0 deletions instrumentation/aws_lambda/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release History: opentelemetry-instrumentation-aws_lambda

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

* ADDED: AWS lambda programatic wrap

Check warning on line 5 in instrumentation/aws_lambda/CHANGELOG.md

View workflow job for this annotation

GitHub Actions / SPELLING check

Unknown word (programatic)
arielvalentin marked this conversation as resolved.
Show resolved Hide resolved
* FIXED: Aws_lambda test fix

### v0.2.0 / 2025-01-16

* BREAKING CHANGE: Set minimum supported version to Ruby 3.1
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.2.0'
VERSION = '0.3.0'
end
end
end
4 changes: 4 additions & 0 deletions instrumentation/rails/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History: opentelemetry-instrumentation-rails

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

* ADDED: Add active_storage instrumentation to `rails`

### v0.35.1 / 2025-01-28

* DOCS: Required version in Rails README from 0.24 to 0.34.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module Rails
VERSION = '0.35.1'
VERSION = '0.36.0'
end
end
end
4 changes: 4 additions & 0 deletions instrumentation/redis/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History: opentelemetry-instrumentation-redis

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

* FIXED: Do not expose auth params with Redis 5

### v0.26.0 / 2025-01-16

* BREAKING CHANGE: Set minimum supported version to Ruby 3.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module Redis
VERSION = '0.26.0'
VERSION = '0.26.1'
end
end
end
Loading