Skip to content

Commit 88686fa

Browse files
authored
Merge pull request #2 from Dgame/v0.3
V0.3
2 parents 6ef4b9b + 5316882 commit 88686fa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1409
-246
lines changed

Diff for: CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Changelog
2+
3+
## v0.3.0 - 15.08.2021
4+
5+
### Added
6+
7+
- [Transformations](/README.md/#Transformations) (e.g. [Cast](/README.md/#Cast))
8+
- [Optional](/README.md/#Optional)
9+
- [Path](/README.md/#Path)
10+
- [SelfValidation](/README.md/#SelfValidation)
11+
- [ValidationStrategy](/README.md/#ValidationStrategy)
12+
13+
### Changed
14+
15+
- **Renamed** trait `From` to `DataTransfer`
16+
- **Improved** [Type](/README.md/#Type) so that it can even detect generic arrays
17+
- Validations can now be configured with a [ValidationStrategy](/README.md/#ValidationStrategy) to fail fast (default) or to collect **all** failures.
18+
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`.
19+
20+
### Removed
21+
22+
- `Call`. [Cast](/README.md/#Cast) can be used for the most common tasks instead of `Call`.

Diff for: Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ update-lock:
3838
docker-compose exec $(DOCKER_SEARCH_SERVICE) composer update --lock
3939
update:
4040
docker-compose exec $(DOCKER_SEARCH_SERVICE) composer update
41+
upgrade:
42+
docker-compose exec $(DOCKER_SEARCH_SERVICE) composer upgrade
4143
validate:
4244
docker-compose exec $(DOCKER_SEARCH_SERVICE) composer validate
4345

0 commit comments

Comments
 (0)