-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCHANGELOG
More file actions
53 lines (40 loc) · 1.24 KB
/
CHANGELOG
File metadata and controls
53 lines (40 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.3.2] - 2022-11-28
### Added
- Allowed using the package on PHP 8.0 & 8.1
- Github Actions CI tests on all supported PHP versions
## [1.3.1] - 2020-07-22
### Changed
- Fix behaviour on passing `null` values
## [1.3.0] - 2020-07-22
### Added
- `PropTypes::equals()` checker.
## [1.2.0] - 2020-07-22
### Changed
- PropTypes class is not final anymore.
This is helpful when you want to extend core prop-types checkers in your project.
## [1.1.0] - 2020-07-17
### Added
- Checker for any `callable` value: `PropTypes::callable()`.
## [1.0.0] - 2020-07-17
## Changed
- Minimum stability is now "stable"
## [0.4.0] - 2020-07-06
### Added
- `isOptional()` method
## Changed
- Any prop is now required by default (cannot be omitted). Unless `isOptional()` is called.
### Removed
- `isRequired()` method
## [0.3.0] - 2020-07-06
### Added
- PHP 7.4 support
## [0.2.0] - 2019-12-28
### Removed
- Drop `code` property from PropTypeException
## [0.1.0] - 2019-12-28
### Added
- Initial `PropTypes` implementation