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

chore(main): release opentelemetry-instrumentation-rails 0.31.0 #37

Closed
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"instrumentation/pg": "0.26.1",
"instrumentation/que": "0.7.1",
"instrumentation/rack": "0.24.0",
"instrumentation/rails": "0.30.0",
"instrumentation/rails": "0.31.0",
"instrumentation/redis": "0.25.3",
"instrumentation/restclient": "0.22.3",
"instrumentation/rspec": "0.3.2",
Expand Down
35 changes: 35 additions & 0 deletions instrumentation/rails/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
# Release History: opentelemetry-instrumentation-rails

## [0.31.0](https://github.com/yoheyk/opentelemetry-ruby-contrib/compare/opentelemetry-instrumentation-rails-v0.30.0...opentelemetry-instrumentation-rails/v0.31.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))
* Update Instrumentations ([#303](https://github.com/yoheyk/opentelemetry-ruby-contrib/issues/303))
* remove enable_recognize_route and span_naming options ([#214](https://github.com/yoheyk/opentelemetry-ruby-contrib/issues/214))
* 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))
* name ActionPack spans with the HTTP method and route ([#123](https://github.com/yoheyk/opentelemetry-ruby-contrib/issues/123)) ([4a65b3d](https://github.com/yoheyk/opentelemetry-ruby-contrib/commit/4a65b3d7f76603eba1d958964c64093f47846929))
* Update Instrumentations ([#303](https://github.com/yoheyk/opentelemetry-ruby-contrib/issues/303)) ([5441260](https://github.com/yoheyk/opentelemetry-ruby-contrib/commit/54412608511e42591f5775e1d805682147e3bb94))


### 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))
* bump rails instrumentation dependency on action_pack instrumentation ([#175](https://github.com/yoheyk/opentelemetry-ruby-contrib/issues/175)) ([e3b9e0e](https://github.com/yoheyk/opentelemetry-ruby-contrib/commit/e3b9e0e197ff0cb5c489c77d27fb5be23052797c))
* 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 enable_recognize_route and span_naming options ([#214](https://github.com/yoheyk/opentelemetry-ruby-contrib/issues/214)) ([ea604aa](https://github.com/yoheyk/opentelemetry-ruby-contrib/commit/ea604aa77e0d4c26e1d178877dea75c795f039ee))


### 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.30.0 / 2024-01-09

* BREAKING CHANGE: Use ActiveSupport instead of patches #703
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.30.0'
VERSION = '0.31.0'
end
end
end