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 6 gems #1117

Merged
merged 5 commits into from
Aug 15, 2024
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
4 changes: 4 additions & 0 deletions instrumentation/active_job/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History: opentelemetry-instrumentation-active_job

### v0.7.5 / 2024-08-15

* FIXED: Use Active Support Lazy Load Hooks to avoid prematurely initializing ActiveRecord::Base and ActiveJob::Base

### v0.7.4 / 2024-07-30

* FIXED: Honour dynamic changes in configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module ActiveJob
VERSION = '0.7.4'
VERSION = '0.7.5'
end
end
end
4 changes: 4 additions & 0 deletions instrumentation/active_record/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History: opentelemetry-instrumentation-active_record

### v0.7.3 / 2024-08-15

* FIXED: Use Active Support Lazy Load Hooks to avoid prematurely initializing ActiveRecord::Base and ActiveJob::Base

### v0.7.2 / 2024-04-30

* FIXED: Resolve active_record testing issue
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module ActiveRecord
VERSION = '0.7.2'
VERSION = '0.7.3'
end
end
end
4 changes: 4 additions & 0 deletions instrumentation/all/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History: opentelemetry-instrumentation-all

### v0.63.0 / 2024-08-15

* ADDED: Collect pg db.collection_name attribute

### v0.62.1 / 2024-07-23

* DOCS: Add cspell to CI
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.62.1'
VERSION = '0.63.0'
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Gem::Specification.new do |spec|
spec.add_dependency 'opentelemetry-instrumentation-mongo', '~> 0.22.1'
spec.add_dependency 'opentelemetry-instrumentation-mysql2', '~> 0.27.0'
spec.add_dependency 'opentelemetry-instrumentation-net_http', '~> 0.22.1'
spec.add_dependency 'opentelemetry-instrumentation-pg', '~> 0.27.0'
spec.add_dependency 'opentelemetry-instrumentation-pg', '~> 0.28.0'
spec.add_dependency 'opentelemetry-instrumentation-que', '~> 0.8.0'
spec.add_dependency 'opentelemetry-instrumentation-racecar', '~> 0.3.0'
spec.add_dependency 'opentelemetry-instrumentation-rack', '~> 0.24.0'
Expand Down
4 changes: 4 additions & 0 deletions instrumentation/base/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History: opentelemetry-instrumentation-base

### v0.22.6 / 2024-08-15

* FIXED: Fix the issue of wrong log msg

### v0.22.5 / 2024-07-23

* DOCS: Add cspell to CI
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@

module OpenTelemetry
module Instrumentation
VERSION = '0.22.5'
VERSION = '0.22.6'
end
end
5 changes: 5 additions & 0 deletions instrumentation/pg/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release History: opentelemetry-instrumentation-pg

### v0.28.0 / 2024-08-15

* ADDED: Collect pg db.collection_name attribute
* FIXED: Update versions to be tested (includes drop support for pg 1.2)

### v0.27.4 / 2024-07-23

* DOCS: Add cspell to CI
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
module OpenTelemetry
module Instrumentation
module PG
VERSION = '0.27.4'
VERSION = '0.28.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.31.2 / 2024-08-15

* FIXED: Rails instrumentation should load ActiveJob instrumentation

### v0.31.1 / 2024-07-23

* DOCS: Add cspell to CI
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.31.1'
VERSION = '0.31.2'
end
end
end
Loading