Skip to content

Commit 590ddec

Browse files
authored
Merge pull request #304 from kbrock/notes-3.3.0
Release 3.3.0
2 parents 2d642c9 + e4a1466 commit 590ddec

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
lines changed

CHANGELOG.md

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# active_hash Changelog
22

3+
## Version [3.3.0] - <sub><sup>2024-04-30</sup></sub>
4+
5+
### Added
6+
7+
- Ruby 3.3 support [#298](https://github.com/active-hash/active_hash/pull/298) @m-nakamura145
8+
- Support `has_many :through` associations [#296](https://github.com/active-hash/active_hash/pull/296) @flavorjones
9+
- Rails 7.1 support [#291](https://github.com/active-hash/active_hash/pull/281) @y-yagi
10+
11+
### Fixed
12+
13+
- Rails 7.1: fix sqlite3 issue [#303](https://github.com/active-hash/active_hash/pull/303) @flavorjones
14+
- Rails 7.1.3: add missing `has_query_constraints?` [#300](https://github.com/active-hash/active_hash/pull/300) @flavorjones
15+
- `Array#pluck` supports methods [#299](https://github.com/active-hash/active_hash/pull/299) @iberianpig
16+
- Prefer `safe_constantize` over `constantize` [#297](https://github.com/active-hash/active_hash/pull/297) @flavorjones
17+
- Treat `nil` and `blank?` as different values [#295](https://github.com/active-hash/active_hash/pull/295) @kbrock
18+
- Fix `#where` for string keys [#292](https://github.com/active-hash/active_hash/pull/292) @usernam3
19+
320
## Version [3.2.1] - <sub><sup>2023-08-31</sup></sub>
421

522
### Added
@@ -305,9 +322,10 @@
305322
- Setting data to nil correctly causes .all to return an empty array
306323
- Added reload(force) method, so that you can force a reload from files in ActiveFile, useful for tests
307324

308-
[HEAD]: https://github.com/active-hash/active_hash/compare/v4.3.0...HEAD
309-
[4.3.0]: https://github.com/active-hash/active_hash/compare/v3.2.0...v4.3.0
310-
[4.2.0]: https://github.com/active-hash/active_hash/compare/v3.1.1...v4.2.0
325+
[HEAD]: https://github.com/active-hash/active_hash/compare/v3.3.0...HEAD
326+
[3.3.0]: https://github.com/active-hash/active_hash/compare/v3.2.1...v3.3.0
327+
[3.2.1]: https://github.com/active-hash/active_hash/compare/v3.2.0...v3.2.1
328+
[3.2.0]: https://github.com/active-hash/active_hash/compare/v3.1.1...v3.2.0
311329
[3.1.1]: https://github.com/active-hash/active_hash/compare/v3.1.0...v3.1.1
312330
[3.1.0]: https://github.com/active-hash/active_hash/compare/v3.0.0...v3.1.0
313331
[3.0.0]: https://github.com/active-hash/active_hash/compare/v2.3.0...v3.0.0

lib/active_hash/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module ActiveHash
22
module Gem
3-
VERSION = "3.2.1"
3+
VERSION = "3.3.0"
44
end
55
end

0 commit comments

Comments
 (0)