diff --git a/.changesets/add-reported_by-tag-to-rails-error-reporter.md b/.changesets/add-reported_by-tag-to-rails-error-reporter.md deleted file mode 100644 index bd07ffcf5..000000000 --- a/.changesets/add-reported_by-tag-to-rails-error-reporter.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -bump: patch -type: change ---- - -Add the `reported_by` tag to errors reported by the Rails error reporter so the source of the error is easier to identify. diff --git a/.changesets/fix-no-implicit-conversion-of-pathname-into-string-error.md b/.changesets/fix-no-implicit-conversion-of-pathname-into-string-error.md deleted file mode 100644 index 0e0492c10..000000000 --- a/.changesets/fix-no-implicit-conversion-of-pathname-into-string-error.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -bump: patch -type: fix ---- - -Fix 'no implicit conversion of Pathname into String' error when parsing backtrace lines of error causes in Rails apps. diff --git a/.changesets/fix-no-logs-appearing-from-capistrano-tasks.md b/.changesets/fix-no-logs-appearing-from-capistrano-tasks.md deleted file mode 100644 index a625fa672..000000000 --- a/.changesets/fix-no-logs-appearing-from-capistrano-tasks.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -bump: patch -type: fix ---- - -Fix no AppSignal internal logs being logged from Capistrano tasks. diff --git a/.changesets/report-all-dsl-config-options-in-config-source.md b/.changesets/report-all-dsl-config-options-in-config-source.md deleted file mode 100644 index 9e0b489af..000000000 --- a/.changesets/report-all-dsl-config-options-in-config-source.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -bump: patch -type: fix ---- - -Report all the config options set via `Appsignal.config` in the DSL config source in the diagnose report. Previously, it would only report the options from the last time `Appsignal.configure` was called. diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cb4e1c16..f2af71e56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # AppSignal for Ruby gem Changelog +## 4.1.1 + +_Published on 2024-09-28._ + +### Changed + +- Add the `reported_by` tag to errors reported by the Rails error reporter so the source of the error is easier to identify. (patch [ff98ed67](https://github.com/appsignal/appsignal-ruby/commit/ff98ed677bf30242c51261bf7e44c9b6ba2f33ac)) + +### Fixed + +- Fix no AppSignal internal logs being logged from Capistrano tasks. (patch [089d0325](https://github.com/appsignal/appsignal-ruby/commit/089d03251c3dc8b83658a4ebfade51ab6bed1771)) +- Report all the config options set via `Appsignal.config` in the DSL config source in the diagnose report. Previously, it would only report the options from the last time `Appsignal.configure` was called. (patch [27b9aff7](https://github.com/appsignal/appsignal-ruby/commit/27b9aff7776646dfef6c55fa589024a71052e70b)) +- Fix 'no implicit conversion of Pathname into String' error when parsing backtrace lines of error causes in Rails apps. (patch [b767f269](https://github.com/appsignal/appsignal-ruby/commit/b767f269c41cb7625d6869d8e8acb9b288292d19)) + ## 4.1.0 _Published on 2024-09-26._ diff --git a/lib/appsignal/version.rb b/lib/appsignal/version.rb index 0680a734e..65c661cc2 100644 --- a/lib/appsignal/version.rb +++ b/lib/appsignal/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Appsignal - VERSION = "4.1.0" + VERSION = "4.1.1" end