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

Commit c713a12

Browse files
committed
Merging develop to master in preparation for 2.13.0 release.
2 parents 7267e20 + b377a29 commit c713a12

47 files changed

Lines changed: 1817 additions & 701 deletions

Some content is hidden

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

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ matrix:
2727
- php: 5.6
2828
env:
2929
- DEPS=locked
30-
- LEGACY_DEPS="phpunit/phpunit doctrine/annotations zendframework/zend-code"
30+
- LEGACY_DEPS="phpunit/phpunit doctrine/annotations zendframework/zend-code zendframework/zend-hydrator zendframework/zend-captcha"
3131
- php: 5.6
3232
env:
3333
- DEPS=latest
@@ -37,7 +37,7 @@ matrix:
3737
- php: 7
3838
env:
3939
- DEPS=locked
40-
- LEGACY_DEPS="phpunit/phpunit doctrine/annotations zendframework/zend-code"
40+
- LEGACY_DEPS="phpunit/phpunit doctrine/annotations zendframework/zend-code zendframework/zend-hydrator"
4141
- php: 7
4242
env:
4343
- DEPS=latest
@@ -47,6 +47,7 @@ matrix:
4747
- php: 7.1
4848
env:
4949
- DEPS=locked
50+
- LEGACY_DEPS="zendframework/zend-hydrator"
5051
- CS_CHECK=true
5152
- TEST_COVERAGE=true
5253
- php: 7.1

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,37 @@
22

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

5+
## 2.13.0 - 2018-12-11
6+
7+
### Added
8+
9+
- [#224](https://github.com/zendframework/zend-form/pull/224) adds support for zend-hydrator v3 releases, while keeping support for
10+
versions 1 and 2.
11+
12+
- [#211](https://github.com/zendframework/zend-form/pull/211) adds support for the HTML5 `minlength` attribute in all form elements
13+
that support it.
14+
15+
- [#217](https://github.com/zendframework/zend-form/pull/217) adds `Zend\Form\View\HelperTrait`, which can be used to provide IDE
16+
autocompletion for view helpers provided by zend-form. See
17+
https://docs.zendframework.com/zend-form/view-helpers/#ide-auto-completion-in-templates
18+
for more information.
19+
20+
### Changed
21+
22+
- Nothing.
23+
24+
### Deprecated
25+
26+
- Nothing.
27+
28+
### Removed
29+
30+
- Nothing.
31+
32+
### Fixed
33+
34+
- Nothing.
35+
536
## 2.12.1 - 2018-12-11
637

738
### Added

composer.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"require": {
1919
"php": "^5.6 || ^7.0",
2020
"zendframework/zend-inputfilter": "^2.8",
21-
"zendframework/zend-hydrator": "^1.1 || ^2.1",
21+
"zendframework/zend-hydrator": "^1.1 || ^2.1 || ^3.0",
2222
"zendframework/zend-stdlib": "^2.7 || ^3.0"
2323
},
2424
"require-dev": {
@@ -57,6 +57,9 @@
5757
]
5858
},
5959
"autoload-dev": {
60+
"files": [
61+
"test/_autoload.php"
62+
],
6063
"psr-4": {
6164
"ZendTest\\Form\\": "test/"
6265
}
@@ -66,8 +69,8 @@
6669
},
6770
"extra": {
6871
"branch-alias": {
69-
"dev-master": "2.12.x-dev",
70-
"dev-develop": "2.13.x-dev"
72+
"dev-master": "2.13.x-dev",
73+
"dev-develop": "2.14.x-dev"
7174
},
7275
"zf": {
7376
"component": "Zend\\Form",

0 commit comments

Comments
 (0)