-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
ccb9453
commit 7e89051
Showing
2 changed files
with
34 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,71 @@ | ||
# 0.90.0 | ||
# Changelog | ||
|
||
## [0.91.0](https://github.com/trailblazer/trailblazer-finder/compare/v0.90.0...v0.91.0) (2024-01-10) | ||
|
||
|
||
### Features | ||
|
||
* init minitest migration ([#39](https://github.com/trailblazer/trailblazer-finder/issues/39)) ([dc6fdb0](https://github.com/trailblazer/trailblazer-finder/commit/dc6fdb05cd492a8d60ed9c9e882537bacf3d3f1e)) | ||
* use dry-types for adapter and paginator ([#42](https://github.com/trailblazer/trailblazer-finder/issues/42)) ([8575e26](https://github.com/trailblazer/trailblazer-finder/commit/8575e266aa1ae069bfd023970a2e427a8124dec8)) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* remove deprecated usage of Trailblazer::Activity::TaskBuilder::Binary ([#41](https://github.com/trailblazer/trailblazer-finder/issues/41)) ([b8965ff](https://github.com/trailblazer/trailblazer-finder/commit/b8965ff9f0549f927409e90cc2d8a227267c13d9)) | ||
* update gemspec ([#37](https://github.com/trailblazer/trailblazer-finder/issues/37)) ([7cf064f](https://github.com/trailblazer/trailblazer-finder/commit/7cf064f8e6e33b863a169041e2ee59ebd5152fd1)) | ||
|
||
## 0.90.0 | ||
* Use inject dsl api | ||
|
||
# 0.80.1 | ||
## 0.80.1 | ||
* Fix release error of 0.80.0 | ||
|
||
# 0.80.0 | ||
## 0.80.0 | ||
* Lock trailblazer-activity to below 0.13 | ||
|
||
# 0.70.0 | ||
## 0.70.0 | ||
* Drop Support Legacy Dry-types | ||
|
||
# 0.60.0 | ||
## 0.60.0 | ||
* Support Ruby 3.0 | ||
|
||
# 0.50.0 | ||
## 0.50.0 | ||
* Breaking change: Use adapter and paginator configs instead of mixing them in adapters config. | ||
|
||
# 0.10.3 | ||
## 0.10.3 | ||
* Add support for strings in filters keys. | ||
|
||
# 0.10.2 | ||
## 0.10.2 | ||
* Add support for ActiveSupport::Hash as params | ||
|
||
# 0.10.1 | ||
## 0.10.1 | ||
* Move activities to Activities folder to avoid conflict with Activity Class. | ||
|
||
# 0.10.0 | ||
## 0.10.0 | ||
* Support Trailblazer 2.1.0 wiring api, drop old api | ||
|
||
# 0.3.0 | ||
## 0.3.0 | ||
* Change internal context argument to symbols to match trailblazer 2.1 convention. | ||
|
||
# 0.2.7 | ||
## 0.2.7 | ||
* Don't cast uuids to dates in the filters | ||
|
||
# 0.1.4 | ||
## 0.1.4 | ||
* Updated DataMapper Adapter to include sorting by multiple columns/directions and the predicate feature. | ||
|
||
# 0.1.3 | ||
## 0.1.3 | ||
* Added sorting by multiple columns/directions for Hash, ActiveRecord and Sequel. Temporarily disabled sorting for DataMapper Adapter until i can find the time this weekend to update that Adapter as well. | ||
* Due to the above, a big change in the way sorting works, and which methods are available for it | ||
|
||
# 0.1.2 | ||
## 0.1.2 | ||
|
||
* Predicate feature introduced, doesn't work for old datamapper adapter yet. Default predicates covered for now: eq, not_eq, blank, not_blank, lt, lte, gt, gte | ||
* Removed Hashie as dependency and introduced simple version of deep_locate | ||
|
||
# 0.1.1 | ||
## 0.1.1 | ||
|
||
* load options[:model] with result set otherwise loading contracts fails, have to find a nicer solution for this at some point | ||
|
||
# 0.1.0 | ||
## 0.1.0 | ||
|
||
* First stable release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
|
||
module Trailblazer | ||
class Finder | ||
VERSION = "0.90.0" | ||
VERSION = "0.91.0" | ||
end | ||
end |