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

Commit 7b4b789

Browse files
committed
Merge branch 'hotfix/195'
Close #195
2 parents 86f62c0 + fadbb8d commit 7b4b789

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

CHANGELOG.md

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

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

5+
## 2.10.2 - TBD
6+
7+
### Added
8+
9+
- Nothing.
10+
11+
### Changed
12+
13+
- Nothing.
14+
15+
### Deprecated
16+
17+
- Nothing.
18+
19+
### Removed
20+
21+
- Nothing.
22+
23+
### Fixed
24+
25+
- [#195](https://github.com/zendframework/zend-validator/pull/195) adds
26+
missing `GpsPoint` validator entries to the `ValidatorPluginManager`, ensuring
27+
they may be retrieved from it correctly.
28+
529
## 2.10.1 - 2017-08-22
630

731
### Added

src/ValidatorPluginManager.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,9 @@ class ValidatorPluginManager extends AbstractPluginManager
120120
'FileWordCount' => File\WordCount::class,
121121
'float' => I18nValidator\IsFloat::class,
122122
'Float' => I18nValidator\IsFloat::class,
123+
'gpspoint' => GpsPoint::class,
124+
'gpsPoint' => GpsPoint::class,
125+
'GpsPoint' => GpsPoint::class,
123126
'greaterthan' => GreaterThan::class,
124127
'greaterThan' => GreaterThan::class,
125128
'GreaterThan' => GreaterThan::class,
@@ -230,6 +233,7 @@ class ValidatorPluginManager extends AbstractPluginManager
230233
File\UploadFile::class => InvokableFactory::class,
231234
File\WordCount::class => InvokableFactory::class,
232235
I18nValidator\IsFloat::class => InvokableFactory::class,
236+
GpsPoint::class => InvokableFactory::class,
233237
GreaterThan::class => InvokableFactory::class,
234238
Hex::class => InvokableFactory::class,
235239
Hostname::class => InvokableFactory::class,
@@ -318,6 +322,7 @@ class ValidatorPluginManager extends AbstractPluginManager
318322
'zendvalidatorfileupload' => InvokableFactory::class,
319323
'zendvalidatorfileuploadfile' => InvokableFactory::class,
320324
'zendvalidatorfilewordcount' => InvokableFactory::class,
325+
'zendvalidatorgpspoint' => InvokableFactory::class,
321326
'zendvalidatorgreaterthan' => InvokableFactory::class,
322327
'zendvalidatorhex' => InvokableFactory::class,
323328
'zendvalidatorhostname' => InvokableFactory::class,

0 commit comments

Comments
 (0)