Skip to content

Commit 572aa43

Browse files
committed
Preparing for release, 1.1.0
1 parent 1f536e4 commit 572aa43

2 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
### Next Release
1+
### 1.1.0 (2026-06-05)
22

33
#### Features
44

5-
* Your contribution here.
5+
* [#404](https://github.com/ruby-grape/grape-entity/pull/404): Drop `MultiJson` dependency, use `Hash#to_json` for ActiveSupport-aware serialization - [@numbata](https://github.com/numbata).
66

77
#### Fixes
88

9-
* Your contribution here.
10-
* [#404](https://github.com/ruby-grape/grape-entity/pull/404): Drop `MultiJson` dependency, use `Hash#to_json` for ActiveSupport-aware serialization - [@numbata](https://github.com/numbata).
119
* [#406](https://github.com/ruby-grape/grape-entity/pull/406): Handle symbol-to-proc wrappers (`&:method_name`) where the method uses `delegate` or `method_missing`, and let unknown methods raise a native `NoMethodError` - [@marcrohloff](https://github.com/marcrohloff).
1210

11+
1312
### 1.0.4 (2026-04-17)
1413

1514
#### Fixes
1615

1716
* [#405](https://github.com/ruby-grape/grape-entity/pull/405): Fix `Time` serialization regression by reverting #385 and restoring `MultiJson.dump` - [@numbata](https://github.com/numbata).
1817
* [#402](https://github.com/ruby-grape/grape-entity/pull/402): Remove `Json::ParseError` assignment - [@olivier-thatch](https://github.com/olivier-thatch).
1918

19+
2020
### 1.0.3 (2026-04-15)
2121

2222
#### Features

UPGRADING.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
# Upgrading Grape Entity
22

3+
### Upgrading to >= 1.1.0
4+
5+
`multi_json` gem is no longer a runtime dependency. Applications that relied on a configured `MultiJson` adapter should add it to their own `Gemfile`.
6+
7+
`expose :x, &:missing_method` no longer raises `ArgumentError` at definition time. Unknown methods now raise a native `NoMethodError` at call time.
8+
If you rescue `ArgumentError` around entity rendering to catch typos in method names, update those rescue clauses to `NoMethodError`.
39

410
### Upgrading to >= 0.10.2
11+
512
Official support for `FetchableObject` was removed.
613

714
See [#352](https://github.com/ruby-grape/grape-entity/pull/369) for more information.

0 commit comments

Comments
 (0)