Skip to content

Commit

Permalink
Publish package v4.0.9
Browse files Browse the repository at this point in the history
Update version number and CHANGELOG.md.
  • Loading branch information
tombruijn committed Sep 17, 2024
1 parent bb50c93 commit 1731944
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 29 deletions.
6 changes: 0 additions & 6 deletions .changesets/add-logger-as-dependency.md

This file was deleted.

This file was deleted.

16 changes: 0 additions & 16 deletions .changesets/normalize-uploadedfile-objects.md

This file was deleted.

22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# AppSignal for Ruby gem Changelog

## 4.0.9

_Published on 2024-09-17._

### Changed

- Add the logger gem as a dependency. This fixes the deprecation warning on Ruby 3.3. (patch [8c1d577e](https://github.com/appsignal/appsignal-ruby/commit/8c1d577e4790185db887d49577cedc7d614d8d98))
- Do not report errors caused by `Errno::EPIPE` (broken pipe errors) when instrumenting response bodies, to avoid reporting errors that cannot be fixed by the application. (patch [1fdccba4](https://github.com/appsignal/appsignal-ruby/commit/1fdccba4ceeb8f9bb13ae077019b2c1f7d9d4fe4))
- Normalize Rack and Rails `UploadedFile` objects. Instead of displaying the Ruby class name, it will now show object details like the filename and content type.

```
# Before
#<Rack::Multipart::UploadedFile>
#<ActionDispatch::Http::UploadedFile>
# After
#<Rack::Multipart::UploadedFile original_filename: "uploaded_file.txt", content_type: "text/plain">
#<ActionDispatch::Http::UploadedFile original_filename: "uploaded_file.txt", content_type: "text/plain">
```

(patch [bb50c933](https://github.com/appsignal/appsignal-ruby/commit/bb50c93387eafebe043b0e7f4083c95556b93136))

## 4.0.8

_Published on 2024-09-13._
Expand Down
2 changes: 1 addition & 1 deletion lib/appsignal/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Appsignal
VERSION = "4.0.8"
VERSION = "4.0.9"
end

0 comments on commit 1731944

Please sign in to comment.