|
1 |
| -# v1.14.0 |
| 1 | +# 1.14.0 |
2 | 2 |
|
3 | 3 | * added PHP 8.0 polyfill
|
4 | 4 |
|
5 |
| -# v1.13.2 |
| 5 | +# 1.13.2 |
6 | 6 |
|
7 | 7 | * use correct block size for SHA1 in `hash_pbkdf2()` polyfill
|
8 | 8 | * fixed `mb_str_split()` ignoring new-line characters
|
9 | 9 | * updated Unicode maps
|
10 | 10 |
|
11 |
| -# v1.13.1 |
| 11 | +# 1.13.1 |
12 | 12 |
|
13 | 13 | * fixed issues with the uuid polyfill
|
14 | 14 |
|
15 |
| -# v1.13.0 |
| 15 | +# 1.13.0 |
16 | 16 |
|
17 | 17 | * added polyfills for `uuid_*` functions
|
18 | 18 | * optimized `mb_str_split()`
|
19 | 19 | * fixed handling negative offsets for grapheme and mbstring functions
|
20 | 20 |
|
21 |
| -# v1.12.0 |
| 21 | +# 1.12.0 |
22 | 22 |
|
23 | 23 | * added PHP 7.4 polyfill
|
24 | 24 |
|
25 |
| -# v1.11.0 |
| 25 | +# 1.11.0 |
26 | 26 |
|
27 | 27 | * fixed support for IDN with trailing dot
|
28 | 28 | * added missing polyfill for `JsonException`
|
29 | 29 |
|
30 |
| -# v1.10.0 |
| 30 | +# 1.10.0 |
31 | 31 |
|
32 | 32 | * added polyfill for `idn_to_ascii()` and `idn_to_utf8()`
|
33 | 33 | * added polyfill for intl's `MessageFormatter`
|
34 | 34 | * prevented DoS via long passwords when using `hash_pbkdf2()` polyfill
|
35 | 35 | * duplicated `mb_ord()`, `mb_chr()` and `mb_scrub()` polyfills in the `php72` one
|
36 | 36 |
|
37 |
| -# v1.9.0 |
| 37 | +# 1.9.0 |
38 | 38 |
|
39 | 39 | * added polyfill for `hrtime()`
|
40 | 40 | * added polyfills for `array_key_first()` and `array_key_last()`
|
41 | 41 | * fixed infinite loop in `iconv()` polyfill when using translit mode
|
42 | 42 | * fixed converting to title case with mbstring polyfill
|
43 | 43 |
|
44 |
| -# v1.8.0 |
| 44 | +# 1.8.0 |
45 | 45 |
|
46 | 46 | * added PHP 7.3 polyfill
|
47 | 47 | * added polyfills for `ctype_*` functions
|
48 | 48 |
|
49 |
| -# v1.7.0 |
| 49 | +# 1.7.0 |
50 | 50 |
|
51 | 51 | * added logic to new stream functions on Windows (sapi_windows_vt100_support)
|
52 | 52 | * added polyfills for mb_*_numericentity
|
53 | 53 | * made translit/ignore flags order-insensitive
|
54 | 54 |
|
55 |
| -# v1.6.0 |
| 55 | +# 1.6.0 |
56 | 56 |
|
57 | 57 | * add `SessionUpdateTimestampHandlerInterface` in PHP 7.0 polyfill
|
58 | 58 | * fixed loading of Apcu polyfill when Zend Server's Data Cache is used
|
59 | 59 |
|
60 |
| -# v1.5.0 |
| 60 | +# 1.5.0 |
61 | 61 |
|
62 | 62 | * added polyfill for spl_object_id()
|
63 | 63 | * fixed apcu function when apc ones are polyfilled with Zend Server's Data Cache
|
64 | 64 | * added `PHP_OS_FAMILY` polyfill
|
65 | 65 |
|
66 |
| -# v1.4.0 |
| 66 | +# 1.4.0 |
67 | 67 |
|
68 | 68 | * added PHP 7.2 polyfill
|
69 | 69 |
|
70 |
| -# v1.3.1 |
| 70 | +# 1.3.1 |
71 | 71 |
|
72 | 72 | * added missing validation to mb_convert_case()
|
73 | 73 | * added missing PHP_INT_MIN constant
|
74 | 74 | * fixed iconv_substr(): Detected an illegal character in input string
|
75 | 75 | * provided APCUIterator for APCu 4.x users
|
76 | 76 |
|
77 |
| -# v1.3.0 |
| 77 | +# 1.3.0 |
78 | 78 |
|
79 | 79 | * added polyfill for `is_iterable()`
|
80 | 80 | * added polyfills for `mb_chr()`, `mb_ord()` and `mb_scrub()`
|
|
83 | 83 | * bypassed iconv for some charsets in mb_strlen
|
84 | 84 | * fixed `mb_convert_variables()` poylfill
|
85 | 85 |
|
86 |
| -# v1.2.0 |
| 86 | +# 1.2.0 |
87 | 87 |
|
88 | 88 | * bug #61 Normalizer::decompose() should reorder "recursive" combining chars (nicolas-grekas)
|
89 | 89 | * bug #59 Normalizer::recompose() should reset the last combining class on ASCII (nicolas-grekas)
|
|
93 | 93 | * feature #51 Use plain PHP for data maps to benefit from OPcache on PHP 5.6+ (nicolas-grekas)
|
94 | 94 | * bug #49 Fix hex2bin return null (fuhry, binwiederhier)
|
95 | 95 |
|
96 |
| -# v1.1.1 |
| 96 | +# 1.1.1 |
97 | 97 |
|
98 | 98 | * bug #40 [Apcu] Load APCUIterator only when APCIterator exists (nicolas-grekas)
|
99 | 99 | * bug #37 [Iconv] Fix wrong use in bootstrap.php (tucksaun)
|
100 | 100 | * bug #31 Fix class_uses polyfill (WouterJ)
|
101 | 101 |
|
102 |
| -# v1.1.0 |
| 102 | +# 1.1.0 |
103 | 103 |
|
104 | 104 | * feature #22 [APCu] A new polyfill for the legacy APC users (nicolas-grekas)
|
105 | 105 | * bug #28 [Php70] Workaround https://bugs.php.net/63206 (nicolas-grekas)
|
106 | 106 |
|
107 |
| -# v1.0.1 |
| 107 | +# 1.0.1 |
108 | 108 |
|
109 | 109 | * bug #14 ldap_escape does not encode leading/trailing spaces. (ChadSikorra)
|
110 | 110 | * bug #17 Fix #16 - gzopen() / gzopen64() - 32 bit builds of Ubuntu 14.04 (fisharebest)
|
111 | 111 |
|
112 |
| -# v1.0.0 |
| 112 | +# 1.0.0 |
113 | 113 |
|
114 | 114 | * Hello symfony/polyfill
|
0 commit comments