Sha256: d095bd36c22a1d5a594f0c18f60be964e908bce41e233ce3d0232fb1dc0c8976

Contents?: true

Size: 1.34 KB

Versions: 2

Compression:

Stored size: 1.34 KB

Contents

# 0.8.1
* Fix Rails 7.1 warnings.

# 0.8.0
* Add option skip_body to skip the body for request responses. Use this option when you don't want to persist the response body. `[Skipped]` will be persisted instead. This is not a breaking change.

# 0.7.0
* Fix an issue in the middleware where the request body was not read correctly if there were encoding issues.
* Improved documentation about outboud request logging.
* Add option skip_body_regexp to skip logging the body of requests matching a regexp.

# 0.6.3
* Fix the CHANGELOG path in gemspec.

# 0.6.2
* Fixes Zeitwerk warning.

# 0.6.1
* Fixes the loading of concern into controllers.

# 0.6.0
* Fixes an important concurrency issue by removing instance variables in the rack middleware.

# 0.5.0
* Started using Zeitwerk.
* Removed RailsAdmin specific code.
* Improved RailsApiLogger class.

# 0.4.1
* Fixed the `.failed` scope.

# 0.4.0
* Added `started_at`, `ended_at` and `duration` methods.

Migrate your tables with:

```
add_column :inbound_request_logs, :started_at, :timestamp
add_column :inbound_request_logs, :ended_at, :timestamp
add_column :outbound_request_logs, :started_at, :timestamp
add_column :outbound_request_logs, :ended_at, :timestamp
```


# 0.3.0
* Added `formatted_request_body` and `formatted_response_body` methods.

# 0.2.0
* Switch to a middleware solution.

# 0.1.0
* Initial release.

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rails_api_logger-0.8.2 CHANGELOG.md
rails_api_logger-0.8.1 CHANGELOG.md