Skip to content

Commit

Permalink
Merge pull request #2 from Dgame/v0.3
Browse files Browse the repository at this point in the history
V0.3
  • Loading branch information
Dgame authored Aug 15, 2021
2 parents 6ef4b9b + 5316882 commit 88686fa
Show file tree
Hide file tree
Showing 51 changed files with 1,409 additions and 246 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Changelog

## v0.3.0 - 15.08.2021

### Added

- [Transformations](/README.md/#Transformations) (e.g. [Cast](/README.md/#Cast))
- [Optional](/README.md/#Optional)
- [Path](/README.md/#Path)
- [SelfValidation](/README.md/#SelfValidation)
- [ValidationStrategy](/README.md/#ValidationStrategy)

### Changed

- **Renamed** trait `From` to `DataTransfer`
- **Improved** [Type](/README.md/#Type) so that it can even detect generic arrays
- Validations can now be configured with a [ValidationStrategy](/README.md/#ValidationStrategy) to fail fast (default) or to collect **all** failures.
The non-fast failure collection and handling can be configured by either implementing your own [ValidationStrategy](/README.md/#ValidationStrategy) or by overriding `FailureCollection` and `FailureHandler`.

### Removed

- `Call`. [Cast](/README.md/#Cast) can be used for the most common tasks instead of `Call`.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ update-lock:
docker-compose exec $(DOCKER_SEARCH_SERVICE) composer update --lock
update:
docker-compose exec $(DOCKER_SEARCH_SERVICE) composer update
upgrade:
docker-compose exec $(DOCKER_SEARCH_SERVICE) composer upgrade
validate:
docker-compose exec $(DOCKER_SEARCH_SERVICE) composer validate

Expand Down
Loading

0 comments on commit 88686fa

Please sign in to comment.