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
12 changes: 6 additions & 6 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,22 +36,22 @@ environment:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
ARCH: x86
VC: vs16
PHP_VER: 8.1.0RC6
PHP_VER: 8.1.1
TS: 1
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
ARCH: x64
VC: vs16
PHP_VER: 8.1.0RC6
PHP_VER: 8.1.1
TS: 0
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
ARCH: x86
VC: vs16
PHP_VER: 8.0.12
PHP_VER: 8.0.14
TS: 1
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
ARCH: x64
VC: vs16
PHP_VER: 8.0.12
PHP_VER: 8.0.14
TS: 0
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
ARCH: x64
Expand Down Expand Up @@ -106,12 +106,12 @@ environment:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
ARCH: x64
VC: vc15
PHP_VER: 7.4.25
PHP_VER: 7.4.27
TS: 1
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
ARCH: x86
VC: vc15
PHP_VER: 7.4.25
PHP_VER: 7.4.27
TS: 0

build_script:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ jobs:
- PHP_VERSION: '7.3'
PHP_VERSION_FULL: 7.3.32
- PHP_VERSION: '7.4'
PHP_VERSION_FULL: 7.4.25
PHP_VERSION_FULL: 7.4.27
- PHP_VERSION: '8.0'
PHP_VERSION_FULL: 8.0.12
- PHP_VERSION: '8.1.0RC6'
PHP_VERSION_FULL: 8.1.0
PHP_VERSION_FULL: 8.0.14
- PHP_VERSION: '8.1'
PHP_VERSION_FULL: 8.1.1

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down
9 changes: 7 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
3.2.7 2021-??-??
3.2.7 2022-01-12
=======

* Update test expectation for php 8.2.0-dev.
* Update test expectations for php 8.2.0-dev. Add `#[AllowDynamicProperties]` Attribute to some tests to avoid notices.
* In php 8.1+, make igbinary_unserialize check to see if an equivalent interned string already exists when unserializing object property names, array keys, and class names
and use that instead of creating a brand new string.
(This deliberately doesn't create a new interned string if one doesn't already exist.)
(Before this change, igbinary would deduplicate strings when serializing, but would not check if strings were interned by PHP itself when unserializing)
* Avoid debug build assertion failure for `HT_ASSERT_RC1` the same way as PHP's unserialize - this is a case where ostensibly there are no other references to the array being unserialized.

3.2.6 2021-08-11
=======
Expand Down
4 changes: 2 additions & 2 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>2021-08-11</date>
<date>2022-01-12</date>
<time>16:00:00</time>
<version>
<release>3.2.7dev</release>
<release>3.2.7</release>
<api>1.3.1</api>
</version>
<stability>
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.7dev"
#define PHP_IGBINARY_VERSION "3.2.7"

/* Macros */

Expand Down