Skip to content

Commit

Permalink
chore: Update changelogs, bump instrumentation-all
Browse files Browse the repository at this point in the history
  • Loading branch information
kaylareopelle committed Sep 12, 2024
1 parent 2f5db3f commit b2e4db4
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 55 deletions.
8 changes: 3 additions & 5 deletions helpers/sql-obfuscation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# Release History: opentelemetry-helpers-sql-obfuscation
# Release History: opentelemetry-helpers-sql-obfuscation

### v0.2.0 / 2024-09-10
### v0.2.0 / 2024-09-12

* BREAKING CHANGE: Return message when sql is over the obfuscation limit

* FIXED: Return message when sql is over the obfuscation limit
* BREAKING CHANGE: Return message when sql is over the obfuscation limit. Fixes a bug where sql statements with prepended comments that hit the obfuscation limit would be sent unsanitized.

Check warning on line 5 in helpers/sql-obfuscation/CHANGELOG.md

View workflow job for this annotation

GitHub Actions / SPELLING check

Unknown word (unsanitized)

### v0.1.1 / 2024-06-18

Expand Down
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.64.0 / 2024-09-12

* BREAKING CHANGE: Return message when sql is over the obfuscation limit. Fixes a bug where sql statements with prepended comments that hit the obfuscation limit would be sent unsanitized.

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

View workflow job for this annotation

GitHub Actions / SPELLING check

Unknown word (unsanitized)

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

* ADDED: Collect pg db.collection_name attribute
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.63.0'
VERSION = '0.64.0'
end
end
end
6 changes: 3 additions & 3 deletions instrumentation/all/opentelemetry-instrumentation-all.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ Gem::Specification.new do |spec|
spec.add_dependency 'opentelemetry-instrumentation-koala', '~> 0.20.1'
spec.add_dependency 'opentelemetry-instrumentation-lmdb', '~> 0.22.1'
spec.add_dependency 'opentelemetry-instrumentation-mongo', '~> 0.22.1'
spec.add_dependency 'opentelemetry-instrumentation-mysql2', '~> 0.27.0'
spec.add_dependency 'opentelemetry-instrumentation-mysql2', '~> 0.28.0'
spec.add_dependency 'opentelemetry-instrumentation-net_http', '~> 0.22.1'
spec.add_dependency 'opentelemetry-instrumentation-pg', '~> 0.28.0'
spec.add_dependency 'opentelemetry-instrumentation-pg', '~> 0.29.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 All @@ -59,7 +59,7 @@ Gem::Specification.new do |spec|
spec.add_dependency 'opentelemetry-instrumentation-ruby_kafka', '~> 0.21.0'
spec.add_dependency 'opentelemetry-instrumentation-sidekiq', '~> 0.25.0'
spec.add_dependency 'opentelemetry-instrumentation-sinatra', '~> 0.24.0'
spec.add_dependency 'opentelemetry-instrumentation-trilogy', '~> 0.59.0'
spec.add_dependency 'opentelemetry-instrumentation-trilogy', '~> 0.60.0'

spec.add_development_dependency 'active_model_serializers'
spec.add_development_dependency 'activesupport'
Expand Down
8 changes: 3 additions & 5 deletions instrumentation/mysql2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# Release History: opentelemetry-instrumentation-mysql2

### v0.28.0 / 2024-09-10
### v0.28.0 / 2024-09-12

* BREAKING CHANGE: Return message when sql is over the obfuscation limit

* FIXED: Return message when sql is over the obfuscation limit
* BREAKING CHANGE: Return message when sql is over the obfuscation limit. Fixes a bug where sql statements with prepended comments that hit the obfuscation limit would be sent unsanitized.

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

View workflow job for this annotation

GitHub Actions / SPELLING check

Unknown word (unsanitized)

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

Expand Down Expand Up @@ -39,7 +37,7 @@

### v0.24.2 / 2023-06-05

* FIXED: Base config options
* FIXED: Base config options

### v0.24.1 / 2023-06-01

Expand Down
40 changes: 19 additions & 21 deletions instrumentation/pg/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# Release History: opentelemetry-instrumentation-pg

### v0.29.0 / 2024-09-10
### v0.29.0 / 2024-09-12

* BREAKING CHANGE: Return message when sql is over the obfuscation limit

* FIXED: Return message when sql is over the obfuscation limit
* BREAKING CHANGE: Return message when sql is over the obfuscation limit. Fixes a bug where sql statements with prepended comments that hit the obfuscation limit would be sent unsanitized.

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

View workflow job for this annotation

GitHub Actions / SPELLING check

Unknown word (unsanitized)

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

Expand Down Expand Up @@ -48,30 +46,30 @@

### v0.25.2 / 2023-06-05

* FIXED: Base config options
* FIXED: Base config options

### v0.25.1 / 2023-06-01

* FIXED: Regex non-match with obfuscation limit (issue #486)
* FIXED: Regex non-match with obfuscation limit (issue #486)

### v0.25.0 / 2023-05-25

* ADDED: Add config[:obfuscation_limit] to pg and mysql2
* ADDED: Add config[:obfuscation_limit] to pg and mysql2

### v0.24.0 / 2023-04-17

* BREAKING CHANGE: Drop support for EoL Ruby 2.7
* BREAKING CHANGE: Drop support for EoL Ruby 2.7

* ADDED: Drop support for EoL Ruby 2.7
* ADDED: Drop support for EoL Ruby 2.7

### v0.23.0 / 2023-01-14

* BREAKING CHANGE: Removed deprecated instrumentation options
* BREAKING CHANGE: Removed deprecated instrumentation options

* ADDED: Removed deprecated instrumentation options
* FIXED: Reduce Hash Allocations in PG Instrumentation
* DOCS: Fix gem homepage
* DOCS: More gem documentation fixes
* ADDED: Removed deprecated instrumentation options
* FIXED: Reduce Hash Allocations in PG Instrumentation
* DOCS: Fix gem homepage
* DOCS: More gem documentation fixes

### v0.22.3 / 2022-12-06

Expand All @@ -87,18 +85,18 @@

### v0.22.0 / 2022-10-04

* ADDED: Add `with_attributes` context propagation for PG instrumentation
* ADDED: Add `with_attributes` context propagation for PG instrumentation

### v0.21.0 / 2022-06-09

* Upgrading Base dependency version
* FIXED: Broken test file requirements
* FIXED: Broken test file requirements

### v0.20.0 / 2022-05-02

* ADDED: Validate Using Enums
* FIXED: Update pg instrumentation to handle non primitive argument
* FIXED: RubyGems Fallback
* ADDED: Validate Using Enums
* FIXED: Update pg instrumentation to handle non primitive argument
* FIXED: RubyGems Fallback

### v0.19.2 / 2021-12-02

Expand All @@ -110,8 +108,8 @@

### v0.19.0 / 2021-08-12

* ADDED: Add db_statement toggle for postgres
* DOCS: Update docs to rely more on environment variable configuration
* ADDED: Add db_statement toggle for postgres
* DOCS: Update docs to rely more on environment variable configuration

### v0.18.1 / 2021-06-23

Expand Down
38 changes: 18 additions & 20 deletions instrumentation/trilogy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# Release History: opentelemetry-instrumentation-trilogy

### v0.60.0 / 2024-09-10
### v0.60.0 / 2024-09-12

* BREAKING CHANGE: Return message when sql is over the obfuscation limit

* FIXED: Return message when sql is over the obfuscation limit
* BREAKING CHANGE: Return message when sql is over the obfuscation limit. Fixes a bug where sql statements with prepended comments that hit the obfuscation limit would be sent unsanitized.

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

View workflow job for this annotation

GitHub Actions / SPELLING check

Unknown word (unsanitized)

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

Expand Down Expand Up @@ -45,57 +43,57 @@

### v0.56.1 / 2023-06-05

* FIXED: Base config options
* FIXED: Base config options

### v0.56.0 / 2023-06-02

* BREAKING CHANGE: Separate logical MySQL host from connected host
* BREAKING CHANGE: Separate logical MySQL host from connected host

* ADDED: Separate logical MySQL host from connected host
* ADDED: Separate logical MySQL host from connected host

### v0.55.1 / 2023-06-01

* FIXED: Regex non-match with obfuscation limit (issue #486)
* FIXED: Regex non-match with obfuscation limit (issue #486)

### v0.55.0 / 2023-05-31

* BREAKING CHANGE: Add database name for trilogy traces
* BREAKING CHANGE: Add database name for trilogy traces

* ADDED: Add database name for trilogy traces
* ADDED: Add database name for trilogy traces

### v0.54.0 / 2023-05-25

* ADDED: Add Obfuscation Limit Option to Trilogy
* ADDED: Add Obfuscation Limit Option to Trilogy

### v0.53.0 / 2023-04-17

* BREAKING CHANGE: Drop support for EoL Ruby 2.7
* BREAKING CHANGE: Drop support for EoL Ruby 2.7

* ADDED: Drop support for EoL Ruby 2.7
* ADDED: Drop support for EoL Ruby 2.7

### v0.52.0 / 2023-03-06

* ADDED: Add with_attributes context propagation to Trilogy instrumentation
* ADDED: Add option to configure span name for trilogy
* FIXED: Ensure encoding errors handled during SQL obfuscation for Trilogy
* ADDED: Add with_attributes context propagation to Trilogy instrumentation
* ADDED: Add option to configure span name for trilogy
* FIXED: Ensure encoding errors handled during SQL obfuscation for Trilogy

### v0.51.1 / 2023-01-14

* DOCS: Fix gem homepage
* DOCS: More gem documentation fixes
* DOCS: Fix gem homepage
* DOCS: More gem documentation fixes

### v0.51.0 / 2022-06-09

* Upgrading Base dependency version
* FIXED: Broken test file requirements
* FIXED: Broken test file requirements

### v0.50.2 / 2022-05-05

* (No significant changes)

### v0.50.1 / 2022-01-07

* FIXED: Trilogy Driver Options
* FIXED: Trilogy Driver Options

### v0.50.0 / 2021-12-31

Expand Down

0 comments on commit b2e4db4

Please sign in to comment.