This repository was archived by the owner on Jan 29, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +11
-7
lines changed Expand file tree Collapse file tree 4 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file, in reverse chronological order by release.
4
4
5
- ## 2.6.0 - TBD
5
+ ## 2.6.0 - 2015-09-22
6
6
7
7
### Added
8
8
9
- - Nothing.
9
+ - [ #30 ] ( https://github.com/zendframework/zend-mvc/pull/30 ) updates the component
10
+ to use zend-hydrator for hydrator functionality; this provides forward
11
+ compatibility with zend-hydrator, and backwards compatibility with
12
+ hydrators from older versions of zend-stdlib.
10
13
11
14
### Deprecated
12
15
Original file line number Diff line number Diff line change 16
16
"php" : " >=5.5" ,
17
17
"zendframework/zend-eventmanager" : " ~2.5" ,
18
18
"zendframework/zend-servicemanager" : " ~2.5" ,
19
- "zendframework/zend-form" : " ~2.5" ,
20
- "zendframework/zend-stdlib" : " >=2.5.0,<2.7.0"
19
+ "zendframework/zend-hydrator" : " ~1.0" ,
20
+ "zendframework/zend-form" : " ~2.6" ,
21
+ "zendframework/zend-stdlib" : " ~2.7"
21
22
},
22
23
"require-dev" : {
23
24
"zendframework/zend-authentication" : " ~2.5" ,
30
31
"zendframework/zend-inputfilter" : " ~2.5" ,
31
32
"zendframework/zend-json" : " ~2.5" ,
32
33
"zendframework/zend-log" : " ~2.5" ,
33
- "zendframework/zend-modulemanager" : " ~2.5 " ,
34
+ "zendframework/zend-modulemanager" : " ~2.6 " ,
34
35
"zendframework/zend-session" : " ~2.5" ,
35
36
"zendframework/zend-serializer" : " ~2.5" ,
36
37
"zendframework/zend-text" : " ~2.5" ,
Original file line number Diff line number Diff line change 11
11
12
12
class HydratorManagerFactory extends AbstractPluginManagerFactory
13
13
{
14
- const PLUGIN_MANAGER_CLASS = 'Zend\Stdlib\ Hydrator\HydratorPluginManager ' ;
14
+ const PLUGIN_MANAGER_CLASS = 'Zend\Hydrator\HydratorPluginManager ' ;
15
15
}
Original file line number Diff line number Diff line change 10
10
namespace ZendTest \Mvc \Service \TestAsset ;
11
11
12
12
use Zend \Form \Form ;
13
- use Zend \Stdlib \ Hydrator \ClassMethods as ClassMethodsHydrator ;
13
+ use Zend \Hydrator \ClassMethods as ClassMethodsHydrator ;
14
14
15
15
class CustomForm extends Form
16
16
{
You can’t perform that action at this time.
0 commit comments