Skip to content

Commit

Permalink
Release 3.3.0
Browse files Browse the repository at this point in the history
- Ruby 3.3 support active-hash#298 @m-nakamura145
- Support `has_many :through` associations active-hash#296 @flavorjones
- Rails 7.1 support active-hash#291 @y-yagi

- Rails 7.1: fix sqlite3 issue active-hash#303 @flavorjones
- Rails 7.1.3: add missing `has_query_constraints?` active-hash#300 @flavorjones
- `Array#pluck` supports methods active-hash#299 @iberianpig
- Prefer `safe_constantize` over `constantize` active-hash#297 @flavorjones
- Treat `nil` and `blank?` as different values active-hash#295 @kbrock
- Fix `#where` for string keys active-hash#292 @usernam3
  • Loading branch information
kbrock committed Apr 29, 2024
1 parent 2d642c9 commit e4a1466
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 4 deletions.
24 changes: 21 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# active_hash Changelog

## Version [3.3.0] - <sub><sup>2024-04-30</sup></sub>

### Added

- Ruby 3.3 support [#298](https://github.com/active-hash/active_hash/pull/298) @m-nakamura145
- Support `has_many :through` associations [#296](https://github.com/active-hash/active_hash/pull/296) @flavorjones
- Rails 7.1 support [#291](https://github.com/active-hash/active_hash/pull/281) @y-yagi

### Fixed

- Rails 7.1: fix sqlite3 issue [#303](https://github.com/active-hash/active_hash/pull/303) @flavorjones
- Rails 7.1.3: add missing `has_query_constraints?` [#300](https://github.com/active-hash/active_hash/pull/300) @flavorjones
- `Array#pluck` supports methods [#299](https://github.com/active-hash/active_hash/pull/299) @iberianpig
- Prefer `safe_constantize` over `constantize` [#297](https://github.com/active-hash/active_hash/pull/297) @flavorjones
- Treat `nil` and `blank?` as different values [#295](https://github.com/active-hash/active_hash/pull/295) @kbrock
- Fix `#where` for string keys [#292](https://github.com/active-hash/active_hash/pull/292) @usernam3

## Version [3.2.1] - <sub><sup>2023-08-31</sup></sub>

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

[HEAD]: https://github.com/active-hash/active_hash/compare/v4.3.0...HEAD
[4.3.0]: https://github.com/active-hash/active_hash/compare/v3.2.0...v4.3.0
[4.2.0]: https://github.com/active-hash/active_hash/compare/v3.1.1...v4.2.0
[HEAD]: https://github.com/active-hash/active_hash/compare/v3.3.0...HEAD
[3.3.0]: https://github.com/active-hash/active_hash/compare/v3.2.1...v3.3.0
[3.2.1]: https://github.com/active-hash/active_hash/compare/v3.2.0...v3.2.1
[3.2.0]: https://github.com/active-hash/active_hash/compare/v3.1.1...v3.2.0
[3.1.1]: https://github.com/active-hash/active_hash/compare/v3.1.0...v3.1.1
[3.1.0]: https://github.com/active-hash/active_hash/compare/v3.0.0...v3.1.0
[3.0.0]: https://github.com/active-hash/active_hash/compare/v2.3.0...v3.0.0
Expand Down
2 changes: 1 addition & 1 deletion lib/active_hash/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module ActiveHash
module Gem
VERSION = "3.2.1"
VERSION = "3.3.0"
end
end

0 comments on commit e4a1466

Please sign in to comment.