File tree Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 2
2
All notable changes to this project will be documented in this file.
3
3
This project follows [ Semantic Versioning] ( http://semver.org/ ) .
4
4
5
+ ## [ 1.2.8] - 2019-01-24
6
+ ### Fixed
7
+ - Fixed buffer outflow during deserialization of map objects. #132 @rado-h
8
+
5
9
## [ 1.2.7] - 2018-11-18
6
10
### Fixed
7
11
- Fixed pair reflection bugs. #119
Original file line number Diff line number Diff line change 2
2
3
3
[ ![ Build Status] ( https://travis-ci.org/php-ds/ext-ds.svg?branch=master )] ( https://travis-ci.org/php-ds/ext-ds )
4
4
[ ![ Build status] ( https://ci.appveyor.com/api/projects/status/9w0xitp3q04hdu1d?svg=true )] ( https://ci.appveyor.com/project/rtheunissen/ext-ds )
5
- [ ![ PECL] ( https://img.shields.io/badge/PECL-1.2.7 -blue.svg )] ( https://pecl.php.net/package/ds )
5
+ [ ![ PECL] ( https://img.shields.io/badge/PECL-1.2.8 -blue.svg )] ( https://pecl.php.net/package/ds )
6
6
7
7
An extension providing specialized data structures as efficient alternatives to the PHP array.
8
8
You can read about it in more detail [ in this blog post] ( https://medium.com/p/9dda7af674cd ) which highlights the API, performance and other benefits of using the extension.
Original file line number Diff line number Diff line change 16
16
<email >krakjoe@php.net</email >
17
17
<active >yes</active >
18
18
</lead >
19
- <date >2018-11-18 </date >
20
- <time >12:31 :19</time >
19
+ <date >2019-01-24 </date >
20
+ <time >16:47 :19</time >
21
21
<version >
22
- <release >1.2.7 </release >
22
+ <release >1.2.8 </release >
23
23
<api >1.1.0</api >
24
24
</version >
25
25
<stability >
28
28
</stability >
29
29
<license uri =" https://opensource.org/licenses/MIT" >MIT License</license >
30
30
<notes >
31
- - Fixed pair reflection bugs. #119
31
+ - Fixed buffer outflow during deserialization of map objects. @rado-h
32
32
</notes >
33
33
<contents >
34
34
<dir name =" /" >
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ extern zend_module_entry ds_module_entry;
20
20
#define phpext_ds_ptr &ds_module_entry
21
21
22
22
/* Replace with version number for your extension */
23
- #define PHP_DS_VERSION "1.2.7 "
23
+ #define PHP_DS_VERSION "1.2.8 "
24
24
25
25
#ifdef PHP_WIN32
26
26
# define PHP_API __declspec(dllexport)
You can’t perform that action at this time.
0 commit comments