Skip to content

Commit

Permalink
Released v4.0.3
Browse files Browse the repository at this point in the history
Added support for latest Ruby (upto 3.4) and Rails (upto 8) versions.

## Fixes

* `CollectionDecorator#respond_to?` for non-ORM collections
  (#920)
* Using Draper outside of controller scope
  (#927)
* Decoration of AR associations
  (#932)

## Performance

* Sped up delegation via `delegate_all`
  (#911)
  • Loading branch information
Alexander-Senko committed Oct 4, 2024
1 parent 6e07b68 commit 1b2a2a4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Draper Changelog

## 4.0.3 - 2024-10-04

Added support for latest Ruby (upto 3.4) and Rails (upto 8) versions.

### Fixes
* Fix `CollectionDecorator#respond_to?` for non-ORM collections [#920](https://github.com/drapergem/draper/pull/920)
* Fix issues with using Draper outside of controller scope [#927](https://github.com/drapergem/draper/pull/927)
* Fix decoration of AR associations [#932](https://github.com/drapergem/draper/pull/932)

### Other Changes
* Improve performance of delegation via `delegate_all` [#911](https://github.com/drapergem/draper/pull/911)
* Improve README [#878](https://github.com/drapergem/draper/pull/878), [#922](https://github.com/drapergem/draper/pull/922), [#934](https://github.com/drapergem/draper/pull/934)

## 4.0.2 - 2021-05-27

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion lib/draper/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Draper
VERSION = '4.0.2'
VERSION = '4.0.3'
end

0 comments on commit 1b2a2a4

Please sign in to comment.