diff --git a/.changesets/add-redis-client-support.md b/.changesets/add-redis-client-support.md deleted file mode 100644 index 106a8c886..000000000 --- a/.changesets/add-redis-client-support.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -bump: "patch" -type: "add" ---- - -Add support for the `redis-client` gem, which is used by the redis gem since version 5. diff --git a/.changesets/improve-missing-extractor-logs.md b/.changesets/improve-missing-extractor-logs.md deleted file mode 100644 index a4dfe3879..000000000 --- a/.changesets/improve-missing-extractor-logs.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -bump: "patch" -type: "change" ---- - -Make the debug log message for OpenTelemetry spans from libraries we don't automatically recognize more clear. Mention the span id and the instrumentation library. diff --git a/.changesets/jruby-extension-installation-test.md b/.changesets/jruby-extension-installation-test.md deleted file mode 100644 index def19ffb0..000000000 --- a/.changesets/jruby-extension-installation-test.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -bump: "patch" -type: "fix" ---- - -Add more testing to JRuby extension installation to better report the installation result and any possible failures. diff --git a/.changesets/update-sql_lexer-0.9.6.md b/.changesets/update-sql_lexer-0.9.6.md deleted file mode 100644 index 97bc4618d..000000000 --- a/.changesets/update-sql_lexer-0.9.6.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -bump: "patch" -type: "change" ---- - -Fix an issue where queries containing a MySQL leading type indicator would only be partially sanitised. - diff --git a/CHANGELOG.md b/CHANGELOG.md index e423e0dbc..298b8049d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # AppSignal for Ruby gem Changelog +## 3.5.5 + +_Published on 2024-02-01._ + +### Added + +- [d44f7092](https://github.com/appsignal/appsignal-ruby/commit/d44f7092a6a915ebe2825db7b0fe4e8e6eccd873) patch - Add support for the `redis-client` gem, which is used by the redis gem since version 5. + +### Changed + +- [6b9b814d](https://github.com/appsignal/appsignal-ruby/commit/6b9b814d958ca0a13f6da312746c11481bb46cfb) patch - Make the debug log message for OpenTelemetry spans from libraries we don't automatically recognize more clear. Mention the span id and the instrumentation library. +- [6b9b814d](https://github.com/appsignal/appsignal-ruby/commit/6b9b814d958ca0a13f6da312746c11481bb46cfb) patch - Fix an issue where queries containing a MySQL leading type indicator would only be partially sanitised. + +### Fixed + +- [e0f7b0e5](https://github.com/appsignal/appsignal-ruby/commit/e0f7b0e52eb5ed886d0f72941bd1c3c8fe15c9c0) patch - Add more testing to JRuby extension installation to better report the installation result and any possible failures. + ## 3.5.4 ### Changed diff --git a/lib/appsignal/version.rb b/lib/appsignal/version.rb index 871c545b8..02f3b95de 100644 --- a/lib/appsignal/version.rb +++ b/lib/appsignal/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Appsignal - VERSION = "3.5.4" + VERSION = "3.5.5" end