File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed
Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 22All notable changes to this project will be documented in this file.
33This project follows [ Semantic Versioning] ( http://semver.org/ ) .
44
5+ ## [ 1.2.9] - 2019-05-11
6+ ### Fixed
7+ - Segfault when iterating an implicit instance of Stack, Queue or PriorityQueue
8+
59## [ 1.2.8] - 2019-01-24
610### Fixed
711- Fixed buffer outflow during deserialization of map objects. #132 @rado-h
Original file line number Diff line number Diff line change 22
33[ ![ Build Status] ( https://travis-ci.org/php-ds/ext-ds.svg?branch=master )] ( https://travis-ci.org/php-ds/ext-ds )
44[ ![ 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.8 -blue.svg )] ( https://pecl.php.net/package/ds )
5+ [ ![ PECL] ( https://img.shields.io/badge/PECL-1.2.9 -blue.svg )] ( https://pecl.php.net/package/ds )
66
77An extension providing specialized data structures as efficient alternatives to the PHP array.
88You 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 16161717 <active >yes</active >
1818 </lead >
19- <date >2019-01-24 </date >
19+ <date >2019-05-11 </date >
2020 <time >16:47:19</time >
2121 <version >
22- <release >1.2.8 </release >
22+ <release >1.2.9 </release >
2323 <api >1.1.0</api >
2424 </version >
2525 <stability >
2828 </stability >
2929 <license uri =" https://opensource.org/licenses/MIT" >MIT License</license >
3030 <notes >
31- - Fixed buffer outflow during deserialization of map objects. @rado-h
31+ - Segfault when iterating an implicit instance of Stack, Queue or PriorityQueue
3232 </notes >
3333 <contents >
3434 <dir name =" /" >
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ extern zend_module_entry ds_module_entry;
2020#define phpext_ds_ptr &ds_module_entry
2121
2222/* Replace with version number for your extension */
23- #define PHP_DS_VERSION "1.2.8 "
23+ #define PHP_DS_VERSION "1.2.9 "
2424
2525#ifdef PHP_WIN32
2626# define PHP_API __declspec(dllexport)
You can’t perform that action at this time.
0 commit comments