diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4f2fb04870..b3820a4ada 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -25,7 +25,7 @@ "instrumentation/active_model_serializers": "0.20.1", "instrumentation/concurrent_ruby": "0.21.2", "instrumentation/dalli": "0.25.0", - "instrumentation/delayed_job": "0.22.1", + "instrumentation/delayed_job": "0.23.0", "instrumentation/ethon": "0.21.3", "instrumentation/excon": "0.22.0", "instrumentation/faraday": "0.23.4", diff --git a/instrumentation/delayed_job/CHANGELOG.md b/instrumentation/delayed_job/CHANGELOG.md index ac8bd79d9d..69e9dc768a 100644 --- a/instrumentation/delayed_job/CHANGELOG.md +++ b/instrumentation/delayed_job/CHANGELOG.md @@ -1,5 +1,31 @@ # Release History: opentelemetry-instrumentation-delayed_job +## [0.23.0](https://github.com/flywirecorp/opentelemetry-ruby-contrib/compare/opentelemetry-instrumentation-delayed_job-v0.22.1...opentelemetry-instrumentation-delayed_job/v0.23.0) (2024-02-27) + + +### ⚠ BREAKING CHANGES + +* Drop DelayedJob ActiveRecord in Tests ([#685](https://github.com/flywirecorp/opentelemetry-ruby-contrib/issues/685)) +* Drop support for EoL Ruby 2.7 ([#389](https://github.com/flywirecorp/opentelemetry-ruby-contrib/issues/389)) +* Remove parent repo libraries ([#3](https://github.com/flywirecorp/opentelemetry-ruby-contrib/issues/3)) + +### Features + +* Drop support for EoL Ruby 2.7 ([#389](https://github.com/flywirecorp/opentelemetry-ruby-contrib/issues/389)) ([233dfd0](https://github.com/flywirecorp/opentelemetry-ruby-contrib/commit/233dfd0dae81346e9687090f9d8dfb85215e0ba7)) + + +### Bug Fixes + +* Base config options ([#499](https://github.com/flywirecorp/opentelemetry-ruby-contrib/issues/499)) ([7304e86](https://github.com/flywirecorp/opentelemetry-ruby-contrib/commit/7304e86e9a3beba5c20f790b256bbb54469411ca)) +* broken test file requirements ([#1286](https://github.com/flywirecorp/opentelemetry-ruby-contrib/issues/1286)) ([3ec7d8a](https://github.com/flywirecorp/opentelemetry-ruby-contrib/commit/3ec7d8a456dbd3c9bbad7b397a3da8b8a311d8e3)) +* Drop DelayedJob ActiveRecord in Tests ([#685](https://github.com/flywirecorp/opentelemetry-ruby-contrib/issues/685)) ([fc5a75f](https://github.com/flywirecorp/opentelemetry-ruby-contrib/commit/fc5a75f16951ae434aa973a4ae07017fddcd38e5)) +* regex non-match with obfuscation limit (issue [#486](https://github.com/flywirecorp/opentelemetry-ruby-contrib/issues/486)) ([#488](https://github.com/flywirecorp/opentelemetry-ruby-contrib/issues/488)) ([6a9c330](https://github.com/flywirecorp/opentelemetry-ruby-contrib/commit/6a9c33088c6c9f39b2bc30247a3ed825553c07d4)) + + +### Code Refactoring + +* Remove parent repo libraries ([#3](https://github.com/flywirecorp/opentelemetry-ruby-contrib/issues/3)) ([3e85d44](https://github.com/flywirecorp/opentelemetry-ruby-contrib/commit/3e85d4436d338f326816c639cd2087751c63feb1)) + ### v0.22.1 / 2023-11-23 * CHANGED: Applied Rubocop Performance Recommendations [#727](https://github.com/open-telemetry/opentelemetry-ruby-contrib/pull/727) diff --git a/instrumentation/delayed_job/lib/opentelemetry/instrumentation/delayed_job/version.rb b/instrumentation/delayed_job/lib/opentelemetry/instrumentation/delayed_job/version.rb index 642c8c07e9..1b16098935 100644 --- a/instrumentation/delayed_job/lib/opentelemetry/instrumentation/delayed_job/version.rb +++ b/instrumentation/delayed_job/lib/opentelemetry/instrumentation/delayed_job/version.rb @@ -7,7 +7,7 @@ module OpenTelemetry module Instrumentation module DelayedJob - VERSION = '0.22.1' + VERSION = '0.23.0' end end end