diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4f2fb0487..f0f091248 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -7,7 +7,7 @@ "instrumentation/rake": "0.2.1", "instrumentation/rdkafka": "0.4.2", "instrumentation/trilogy": "0.58.0", - "instrumentation/active_support": "0.5.1", + "instrumentation/active_support": "0.6.0", "instrumentation/action_view": "0.7.0", "instrumentation/action_pack": "0.9.0", "instrumentation/active_job": "0.7.1", diff --git a/instrumentation/active_support/CHANGELOG.md b/instrumentation/active_support/CHANGELOG.md index 47f8a176c..c0fb59ad7 100644 --- a/instrumentation/active_support/CHANGELOG.md +++ b/instrumentation/active_support/CHANGELOG.md @@ -1,5 +1,41 @@ # Release History: opentelemetry-instrumentation-active_support +## [0.6.0](https://github.com/yoheyk/opentelemetry-ruby-contrib/compare/opentelemetry-instrumentation-active_support-v0.5.1...opentelemetry-instrumentation-active_support/v0.6.0) (2024-02-21) + + +### ⚠ BREAKING CHANGES + +* Drop Rails 6.0 EOL ([#680](https://github.com/yoheyk/opentelemetry-ruby-contrib/issues/680)) +* Drop support for EoL Ruby 2.7 ([#389](https://github.com/yoheyk/opentelemetry-ruby-contrib/issues/389)) +* Drop Rails 5 Support ([#259](https://github.com/yoheyk/opentelemetry-ruby-contrib/issues/259)) +* Remove parent repo libraries ([#3](https://github.com/yoheyk/opentelemetry-ruby-contrib/issues/3)) + +### Features + +* Drop Rails 5 Support ([#259](https://github.com/yoheyk/opentelemetry-ruby-contrib/issues/259)) ([b0d5aa6](https://github.com/yoheyk/opentelemetry-ruby-contrib/commit/b0d5aa68dd660546d28f8f89ef9004ec776c7bf6)) +* Drop Rails 6.0 EOL ([#680](https://github.com/yoheyk/opentelemetry-ruby-contrib/issues/680)) ([3f44472](https://github.com/yoheyk/opentelemetry-ruby-contrib/commit/3f44472230964017d1831a47ea0661dc92d55909)) +* Drop support for EoL Ruby 2.7 ([#389](https://github.com/yoheyk/opentelemetry-ruby-contrib/issues/389)) ([233dfd0](https://github.com/yoheyk/opentelemetry-ruby-contrib/commit/233dfd0dae81346e9687090f9d8dfb85215e0ba7)) + + +### Bug Fixes + +* Add Rails 7.1 compatability ([#684](https://github.com/yoheyk/opentelemetry-ruby-contrib/issues/684)) ([93dcf35](https://github.com/yoheyk/opentelemetry-ruby-contrib/commit/93dcf359a8a66d17fed545f7a642f1d3a83d4ef4)) +* Base config options ([#499](https://github.com/yoheyk/opentelemetry-ruby-contrib/issues/499)) ([7304e86](https://github.com/yoheyk/opentelemetry-ruby-contrib/commit/7304e86e9a3beba5c20f790b256bbb54469411ca)) +* broken test file requirements ([#1286](https://github.com/yoheyk/opentelemetry-ruby-contrib/issues/1286)) ([3ec7d8a](https://github.com/yoheyk/opentelemetry-ruby-contrib/commit/3ec7d8a456dbd3c9bbad7b397a3da8b8a311d8e3)) +* Drop Rails dependency for ActiveSupport Instrumentation ([#242](https://github.com/yoheyk/opentelemetry-ruby-contrib/issues/242)) ([c571ece](https://github.com/yoheyk/opentelemetry-ruby-contrib/commit/c571ecee6283e877fb7df3ea2b01acf722410551)) +* regex non-match with obfuscation limit (issue [#486](https://github.com/yoheyk/opentelemetry-ruby-contrib/issues/486)) ([#488](https://github.com/yoheyk/opentelemetry-ruby-contrib/issues/488)) ([6a9c330](https://github.com/yoheyk/opentelemetry-ruby-contrib/commit/6a9c33088c6c9f39b2bc30247a3ed825553c07d4)) +* remove call to ActiveSupport::Notifications.notifier#synchronize deprecated in Rails 7.2 ([#707](https://github.com/yoheyk/opentelemetry-ruby-contrib/issues/707)) ([828e137](https://github.com/yoheyk/opentelemetry-ruby-contrib/commit/828e1379fa626078fc9ca278d863481e4c01dc70)) + + +### Performance Improvements + +* Reduce Object allocation ([#642](https://github.com/yoheyk/opentelemetry-ruby-contrib/issues/642)) ([a906f74](https://github.com/yoheyk/opentelemetry-ruby-contrib/commit/a906f7465c44edc70ab45a354120905cfcceeb50)) + + +### Code Refactoring + +* Remove parent repo libraries ([#3](https://github.com/yoheyk/opentelemetry-ruby-contrib/issues/3)) ([3e85d44](https://github.com/yoheyk/opentelemetry-ruby-contrib/commit/3e85d4436d338f326816c639cd2087751c63feb1)) + ### v0.5.1 / 2023-11-23 * CHANGED: Applied Rubocop Performance Recommendations [#727](https://github.com/open-telemetry/opentelemetry-ruby-contrib/pull/727) diff --git a/instrumentation/active_support/lib/opentelemetry/instrumentation/active_support/version.rb b/instrumentation/active_support/lib/opentelemetry/instrumentation/active_support/version.rb index 60c531ca6..4026a632f 100644 --- a/instrumentation/active_support/lib/opentelemetry/instrumentation/active_support/version.rb +++ b/instrumentation/active_support/lib/opentelemetry/instrumentation/active_support/version.rb @@ -7,7 +7,7 @@ module OpenTelemetry module Instrumentation module ActiveSupport - VERSION = '0.5.1' + VERSION = '0.6.0' end end end