Skip to content

Commit 5438e95

Browse files
authored
Merge pull request #2144 from anakinj/activesupport61-fix
Explicitly require active_support/core_ext/array/conversions
2 parents 0f250dc + e65bdc1 commit 5438e95

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
#### Fixes
88

99
* Your contribution here.
10+
* [#2144](https://github.com/ruby-grape/grape/pull/2144): Fix compatibility issue with activesupport 6.1 and XML serialization of arrays - [@anakinj](https://github.com/anakinj).
1011
* [#2137](https://github.com/ruby-grape/grape/pull/2137): Fix typos - [@johnny-miyake](https://github.com/johnny-miyake).
1112
* [#2131](https://github.com/ruby-grape/grape/pull/2131): Fix Ruby 2.7 keyword deprecation warning in validators/coerce - [@K0H205](https://github.com/K0H205).
1213
* [#2132](https://github.com/ruby-grape/grape/pull/2132): Use #ruby2_keywords for correct delegation on Ruby <= 2.6, 2.7 and 3 - [@eregon](https://github.com/eregon).

lib/grape.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
require 'active_support/core_ext/object/blank'
1313
require 'active_support/core_ext/array/extract_options'
1414
require 'active_support/core_ext/array/wrap'
15+
require 'active_support/core_ext/array/conversions'
1516
require 'active_support/core_ext/hash/deep_merge'
1617
require 'active_support/core_ext/hash/reverse_merge'
1718
require 'active_support/core_ext/hash/except'

0 commit comments

Comments
 (0)