From 2e1635102ec045f56241fcd6696d4d6c18f1feba Mon Sep 17 00:00:00 2001 From: Keenan Brock Date: Thu, 13 Apr 2023 21:19:59 -0400 Subject: [PATCH] Add changelog and bump version --- CHANGELOG.md | 22 ++++++++++++++++++++++ lib/active_hash/version.rb | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6926db35..d15889f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # active_hash Changelog +## Version [3.2.0] - 2022-07-14 + +- Add Ruby 3.2 to the CI matrix [#275](https://github.com/active-hash/active_hash/pull/275) @petergoldstein +- Handle default value of `false` [#274](https://github.com/active-hash/active_hash/pull/274) @ihollander +- Run CI only one time per commit [#273](https://github.com/active-hash/active_hash/pull/273) @flavorjones +- Rails 7 support [#272](https://github.com/active-hash/active_hash/pull/272) @flavorjones +- Avoid interfere with AR's belongs_to arguments. [#270](https://github.com/active-hash/active_hash/pull/270) @koyo-miyamura +- Fix broken #pluck method with 3+ attrs specified [#269](https://github.com/active-hash/active_hash/pull/269) @h6ah4i +- Fix relations for Rails 7 support, and not modifying conditions [#268](https://github.com/active-hash/active_hash/pull/268) @pfeiffer +- docs: Remove the string 'F' [#264](https://github.com/active-hash/active_hash/pull/264) @tbotaq +- Show example using regex in where query [#263](https://github.com/active-hash/active_hash/pull/263) @scottharvey +- Improve performance of exists? [#262](https://github.com/active-hash/active_hash/pull/262) @ise-tang +- Remove redundant ActiveRecord version check [#260](https://github.com/active-hash/active_hash/pull/260) @yujideveloper +- Fix deprecation warnings [#259](https://github.com/active-hash/active_hash/pull/259) @yujideveloper +- Fix rspec config when SKIP_ACTIVE_RECORD enabled [#258](https://github.com/active-hash/active_hash/pull/258) @yujideveloper +- isolate tests with temporary classes [#256](https://github.com/active-hash/active_hash/pull/256) @machisuke +- Avoid ActiveRecordExtensions affects AR's belongs_to method. [#255](https://github.com/active-hash/active_hash/pull/255) machisuke +- add option to disable erb parsing [#202](https://github.com/active-hash/active_hash/pull/202) @reedlaw +- add collection singular ids for associations [#237](https://github.com/active-hash/active_hash/pull/237) @1160054 +- Fix the thread-safe spec for the updated cities fixture +- Add thread-safety to ActiveFile [#229](https://github.com/active-hash/active_hash/pull/229) @dmitriy-kiriyenko + ## Version [3.1.1] - 2022-07-14 - Make scopes chainable [#248](https://github.com/active-hash/active_hash/pull/248) @andreynering diff --git a/lib/active_hash/version.rb b/lib/active_hash/version.rb index ca957c09..bba238e9 100644 --- a/lib/active_hash/version.rb +++ b/lib/active_hash/version.rb @@ -1,5 +1,5 @@ module ActiveHash module Gem - VERSION = "3.1.1" + VERSION = "3.2.0" end end