Skip to content

Commit

Permalink
Version 6.1.2 notes
Browse files Browse the repository at this point in the history
* * Fix bind variables for joins with static strings #124
* Add `virtual_total` for `habtm` #123
* Fix: `:uses` clause now works with an array and nested hashes. #120
* Uses symbols in the `includes()` clause. defined by `virtual_attribute :uses` and virtual_delegate. #128
  • Loading branch information
kbrock committed Oct 25, 2023
1 parent a5ace12 commit f761a52
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ The versioning of this gem follows ActiveRecord versioning, and does not follow

## [Unreleased]

## [6.1.2] - 2023-10-26

* Fix bind variables for joins with static strings [#124](https://github.com/ManageIQ/activerecord-virtual_attributes/pull/124)
* Add `virtual_total` for `habtm` [#123](https://github.com/ManageIQ/activerecord-virtual_attributes/pull/123)
* Fix: `:uses` clause now works with an array and nested hashes. [#120](https://github.com/ManageIQ/activerecord-virtual_attributes/pull/120)
* Uses symbols in the `includes()` clause. defined by `virtual_attribute :uses` and virtual_delegate. [#128](https://github.com/ManageIQ/activerecord-virtual_attributes/pull/128)

## [6.1.1] - 2022-08-09

* fix HomogeneousIn clauses [#111](https://github.com/ManageIQ/activerecord-virtual_attributes/pull/111)
Expand Down Expand Up @@ -86,7 +93,8 @@ The versioning of this gem follows ActiveRecord versioning, and does not follow
* Initial Release
* Extracted from ManageIQ/manageiq

[Unreleased]: https://github.com/ManageIQ/activerecord-virtual_attributes/compare/v6.1.1...HEAD
[Unreleased]: https://github.com/ManageIQ/activerecord-virtual_attributes/compare/v6.1.2...HEAD
[6.1.2]: https://github.com/ManageIQ/activerecord-virtual_attributes/compare/v6.1.1...v6.1.2
[6.1.1]: https://github.com/ManageIQ/activerecord-virtual_attributes/compare/v6.1.0...v6.1.1
[6.1.0]: https://github.com/ManageIQ/activerecord-virtual_attributes/compare/v3.0.0...v6.1.0
[3.0.0]: https://github.com/ManageIQ/activerecord-virtual_attributes/compare/v2.0.0...v3.0.0
Expand Down
2 changes: 1 addition & 1 deletion lib/active_record/virtual_attributes/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module ActiveRecord
module VirtualAttributes
VERSION = "6.1.1".freeze
VERSION = "6.1.2".freeze
end
end

0 comments on commit f761a52

Please sign in to comment.