Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 20 additions & 4 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ memcached or similar memory based storages for serialized data.</description>
<email>tandre@php.net</email>
<active>yes</active>
</lead>
<date>2022-11-06</date>
<date>2022-11-07</date>
<time>16:00:00</time>
<version>
<release>3.2.11</release>
<release>3.2.12</release>
<api>1.4.0</api>
</version>
<stability>
Expand All @@ -43,8 +43,7 @@ memcached or similar memory based storages for serialized data.</description>
</stability>
<license uri="https://github.com/igbinary/igbinary/blob/master/COPYING">BSD-3-Clause</license>
<notes>
* Fix a bug that could prevent objects/arrays with reference cycles from being properly garbage collected.
* Fix bugs in unserializing PHP references to values found in php 7.4 typed properties (#363)
* Fix symbol error seen in php 8.2.0 loading zend_class_unserialize_deny, due to failing to load a header defining a macro.
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -240,6 +239,23 @@ memcached or similar memory based storages for serialized data.</description>
<providesextension>igbinary</providesextension>
<extsrcrelease />
<changelog>
<release>
<date>2022-11-06</date>
<time>16:00:00</time>
<version>
<release>3.2.11</release>
<api>1.4.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://github.com/igbinary/igbinary/blob/master/COPYING">BSD-3-Clause</license>
<notes>
* Fix a bug that could prevent objects/arrays with reference cycles from being properly garbage collected.
* Fix bugs in unserializing PHP references to values found in php 7.4 typed properties (#363)
</notes>
</release>
<release>
<date>2022-11-06</date>
<time>16:00:00</time>
Expand Down
1 change: 1 addition & 0 deletions src/php7/igbinary.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include "Zend/zend_alloc.h"
#include "Zend/zend_exceptions.h"
#include "Zend/zend_interfaces.h"
#include "Zend/zend_compile.h" /* ZEND_ACC_NOT_SERIALIZABLE */
#include "ext/standard/info.h"
#include "ext/standard/php_var.h"

Expand Down
2 changes: 1 addition & 1 deletion src/php7/igbinary.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ struct zval;
/** Binary protocol version of igbinary. */
#define IGBINARY_FORMAT_VERSION 0x00000002

#define PHP_IGBINARY_VERSION "3.2.11"
#define PHP_IGBINARY_VERSION "3.2.12"

/* Macros */

Expand Down