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

Commit df1682a

Browse files
committed
Merge branch 'hotfix/150'
Close #150
2 parents 85fb5aa + 0c4c3df commit df1682a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ All notable changes to this project will be documented in this file, in reverse
4545
EmailAddress validator applying IDNA conversion to local part
4646
- [#88](https://github.com/zendframework/zend-validator/pull/88) fixed NotEmpty
4747
validator incorrectly applying types bitmaps
48+
- [#150](https://github.com/zendframework/zend-validator/pull/150) fixed Hostname
49+
validator not allowiing some characters in .dk IDN
4850

4951

5052
## 2.8.2 - 2017-01-29

src/Hostname.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1676,7 +1676,7 @@ class Hostname extends AbstractValidator
16761676
'CN' => 'Hostname/Cn.php',
16771677
'COM' => 'Hostname/Com.php',
16781678
'DE' => [1 => '/^[\x{002d}0-9a-zà-öø-ÿăąāćĉčċďđĕěėęēğĝġģĥħĭĩįīıĵķĺľļłńňņŋŏőōœĸŕřŗśŝšşťţŧŭůűũųūŵŷźžż]{1,63}$/iu'],
1679-
'DK' => [1 => '/^[\x{002d}0-9a-zäéöü]{1,63}$/iu'],
1679+
'DK' => [1 => '/^[\x{002d}0-9a-zäåæéöøü]{1,63}$/iu'],
16801680
'EE' => [1 => '/^[\x{002d}0-9a-zäõöüšž]{1,63}$/iu'],
16811681
'ES' => [1 => '/^[\x{002d}0-9a-zàáçèéíïñòóúü·]{1,63}$/iu'],
16821682
'EU' => [1 => '/^[\x{002d}0-9a-zà-öø-ÿ]{1,63}$/iu',

0 commit comments

Comments
 (0)