Skip to content
Merged

v1.1 #60

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@

### Removed

### Added

### Changed

### Fixed

### Security

## [1.1] - 2026-05-25
### Added
- Added a new conditional piece of logic for filtering whilst using `#find_by`. This allows you to filter using "AND" logic or "OR" logic
- Filters using "AND" logic will require all attributes to match the criteria specified in order for an entity to be returned
Expand All @@ -22,8 +31,6 @@ filtering on email addresses
### Fixed
- Hyphenated keys are not permitted for the `primary_key` setting as this will cause issues with ruby

### Security

## [1.0.1] - 2026-05-05
### Fixed
- Stopped an issue of primary_key detection failing due to invalid attribute types being passed in (`.to_sym` occurs earlier)
Expand Down Expand Up @@ -132,7 +139,8 @@ add all helpers to all attributes on a model
### Added
- Initial gem creation

[Unreleased]: https://github.com/site-prism/testingrecord/compare/v1.0.1...HEAD
[Unreleased]: https://github.com/site-prism/testingrecord/compare/v1.1...HEAD
[1.1]: https://github.com/site-prism/testingrecord/compare/v1.0.1...v1.1
[1.0.1]: https://github.com/site-prism/testingrecord/compare/v1.0...v1.0.1
[1.0]: https://github.com/site-prism/testingrecord/compare/v0.8...v1.0
[0.8]: https://github.com/site-prism/testingrecord/compare/v0.7...v0.8
Expand Down
2 changes: 1 addition & 1 deletion lib/testing_record/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module TestingRecord
VERSION = '1.0.1'
VERSION = '1.1'
end