Skip to content

Commit dea7edf

Browse files
authored
Release 1.0.2 (#395)
## Summary Release 1.0.2 brings compatibility improvements and bug fixes: - **Grape 3.2 compatibility** — Entities now work seamlessly as parameter types in Grape 3.2+, removing the need for workarounds when using entities for coercion. - **Fixed `inspect` for nil values** — Inspecting entities with `nil` attribute values no longer raises errors, improving debuggability. - **CI maintenance** — Dropped `ruby-head` from the test matrix to keep builds stable and green.
1 parent 28eebab commit dea7edf

2 files changed

Lines changed: 4 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
11
### Next
22

3-
#### Features
4-
5-
* Your contribution here.
3+
### 1.0.2 (2026-04-13)
64

75
#### Fixes
86

97
* [#394](https://github.com/ruby-grape/grape-entity/pull/394): Add `Entity.[]` for Grape >= 3.2 param type compatibility - [@numbata](https://github.com/numbata).
108
* [#388](https://github.com/ruby-grape/grape-entity/pull/388): Drop ruby-head from test matrix - [@numbata](https://github.com/numbata).
119
* [#384](https://github.com/ruby-grape/grape-entity/pull/384): Fix `inspect` to correctly handle `nil` values - [@fcce](https://github.com/fcce).
12-
* Your contribution here.
1310

14-
### ### 1.0.1 (2024-04-10)
11+
### 1.0.1 (2024-04-10)
1512

1613
#### Fixes
1714

1815
* [#381](https://github.com/ruby-grape/grape-entity/pull/381): Fix `expose_nil: false` when using a block - [@magni-](https://github.com/magni-).
1916

2017

21-
### ### 1.0.0 (2023-02-16)
18+
### 1.0.0 (2023-02-16)
2219

2320
#### Fixes
2421

lib/grape_entity/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module GrapeEntity
4-
VERSION = '1.0.1'
4+
VERSION = '1.0.2'
55
end

0 commit comments

Comments
 (0)