Skip to content
This repository was archived by the owner on Jan 31, 2020. It is now read-only.

Commit b54acef

Browse files
committed
Merging develop to master in preparation for 2.13.0 release.
2 parents a51aaae + 13f1d29 commit b54acef

19 files changed

+1007
-275
lines changed

.travis.yml

Lines changed: 11 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -18,33 +18,14 @@ env:
1818

1919
matrix:
2020
include:
21-
- php: 5.6
22-
env:
23-
- DEPS=lowest
24-
- php: 5.6
25-
env:
26-
- DEPS=locked
27-
- EXECUTE_HOSTNAME_CHECK=true
28-
- TEST_COVERAGE=true
29-
- php: 5.6
30-
env:
31-
- DEPS=latest
32-
- php: 7
33-
env:
34-
- DEPS=lowest
35-
- php: 7
36-
env:
37-
- DEPS=locked
38-
- CS_CHECK=true
39-
- php: 7
40-
env:
41-
- DEPS=latest
4221
- php: 7.1
4322
env:
4423
- DEPS=lowest
4524
- php: 7.1
4625
env:
4726
- DEPS=locked
27+
- EXECUTE_HOSTNAME_CHECK=true
28+
- TEST_COVERAGE=true
4829
- php: 7.1
4930
env:
5031
- DEPS=latest
@@ -66,6 +47,15 @@ matrix:
6647
- php: 7.3
6748
env:
6849
- DEPS=latest
50+
- php: 7.4
51+
env:
52+
- DEPS=lowest
53+
- php: 7.4
54+
env:
55+
- DEPS=locked
56+
- php: 7.4
57+
env:
58+
- DEPS=latest
6959

7060
before_install:
7161
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi

CHANGELOG.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,29 @@
22

33
All notable changes to this project will be documented in this file, in reverse chronological order by release.
44

5-
## 2.12.3 - TBD
5+
## 2.13.0 - 2019-12-27
66

77
### Added
88

9-
- Nothing.
9+
- [#275](https://github.com/zendframework/zend-validator/pull/275) adds a new `strict` option to `Zend\Validator\Date`; when `true`, the value being validated must both be a date AND in the same format as provided via the `format` option.
10+
11+
- [#264](https://github.com/zendframework/zend-validator/pull/264) adds `Zend\Validator\UndisclosedPassword`, which can be used to determine if a password has been exposed in a known data breach as reported on the [Have I Been Pwned?](https://www.haveibeenpwned.com) website. [Documentation](https://docs.zendframework.com/zend-validator/validators/undisclosed-password/)
12+
13+
- [#266](https://github.com/zendframework/zend-validator/pull/266) adds a new option to the `File\Extension` and `File\ExcludeExtension` validators, `allowNonExistentFile`. When set to `true`, the validators will continue validating the extension of the filename given even if the file does not exist. The default is `false`, to preserve backwards compatibility with previous versions.
1014

1115
### Changed
1216

13-
- Nothing.
17+
- [#264](https://github.com/zendframework/zend-validator/pull/264) bumps the minimum supported PHP version to 7.1.0.
18+
19+
- [#279](https://github.com/zendframework/zend-validator/pull/279) updates the `magic.mime` file used for file validations.
1420

1521
### Deprecated
1622

1723
- Nothing.
1824

1925
### Removed
2026

21-
- Nothing.
27+
- [#264](https://github.com/zendframework/zend-validator/pull/264) removes support for PHP versions prior to 7.1.0.
2228

2329
### Fixed
2430

composer.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,15 @@
1616
"forum": "https://discourse.zendframework.com/c/questions/components"
1717
},
1818
"require": {
19-
"php": "^5.6 || ^7.0",
19+
"php": "^7.1",
2020
"zendframework/zend-stdlib": "^3.2.1",
2121
"container-interop/container-interop": "^1.1"
2222
},
2323
"require-dev": {
2424
"phpunit/phpunit": "^6.0.8 || ^5.7.15",
2525
"psr/http-message": "^1.0",
26+
"psr/http-client": "^1.0",
27+
"psr/http-factory": "^1.0",
2628
"zendframework/zend-cache": "^2.6.1",
2729
"zendframework/zend-coding-standard": "~1.0.0",
2830
"zendframework/zend-config": "^2.6",
@@ -61,8 +63,8 @@
6163
},
6264
"extra": {
6365
"branch-alias": {
64-
"dev-master": "2.12.x-dev",
65-
"dev-develop": "2.13.x-dev"
66+
"dev-master": "2.13.x-dev",
67+
"dev-develop": "2.14.x-dev"
6668
},
6769
"zf": {
6870
"component": "Zend\\Validator",

0 commit comments

Comments
 (0)