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
4 changes: 2 additions & 2 deletions .github/workflows/build_dlls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
shell: cmd
strategy:
matrix:
version: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"]
version: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3", "8.4"]
arch: [x64]
ts: [nts, ts]
runs-on: windows-latest
Expand All @@ -25,7 +25,7 @@ jobs:
uses: actions/checkout@v2
- name: Setup PHP
id: setup-php
uses: php/setup-php-sdk@v0.8
uses: php/setup-php-sdk@v0.9
with:
version: ${{matrix.version}}
arch: ${{matrix.arch}}
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,16 @@ jobs:
PHP_VERSION_FULL: 8.0.30
DOCKER_ARCHITECTURE: i386
- PHP_VERSION: '8.1'
PHP_VERSION_FULL: 8.1.26
PHP_VERSION_FULL: 8.1.29
- PHP_VERSION: '8.2'
PHP_VERSION_FULL: 8.2.13
PHP_VERSION_FULL: 8.2.22
- PHP_VERSION: '8.2'
PHP_VERSION_FULL: 8.2.13
PHP_VERSION_FULL: 8.2.22
DOCKER_ARCHITECTURE: i386
- PHP_VERSION: '8.3.0'
PHP_VERSION_FULL: 8.3.0
- PHP_VERSION: '8.3.10'
PHP_VERSION_FULL: 8.3.10
- PHP_VERSION: '8.4.0alpha4'
PHP_VERSION_FULL: 8.4.0alpha4

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down
6 changes: 3 additions & 3 deletions ci/install_php_custom.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ if [ "x${TRAVIS:-0}" != "x" ]; then
fi

# Otherwise, put a minimal installation inside of the cache.
if [ "$PHP_CUSTOM_NORMAL_VERSION" == "8.3.0" ] ; then
PHP_CUSTOM_VERSION=8.3.0beta1
if [ "$PHP_CUSTOM_NORMAL_VERSION" == "8.4.0" ] ; then
PHP_CUSTOM_VERSION=8.4.0alpha4
PHP_FOLDER="php-$PHP_CUSTOM_VERSION"

PHP_TAR_FILE="$PHP_FOLDER.tar.bz2"
PHP_TAR_URL=https://downloads.php.net/~eric/$PHP_TAR_FILE
PHP_TAR_URL=https://downloads.php.net/~saki/$PHP_TAR_FILE
else
PHP_FOLDER="php-$PHP_CUSTOM_VERSION"

Expand Down
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>2023-12-02</date>
<date>2024-08-10</date>
<time>16:00:00</time>
<version>
<release>3.2.15</release>
<release>3.2.16</release>
<api>1.4.0</api>
</version>
<stability>
Expand All @@ -43,7 +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 crash in igbinary_unserialize_object_enum_case with opcache protected memory and non-constant value.
* Fix test failures in php 8.4.0alpha1 due to tests calling deprecated functions (#390)
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -241,6 +241,22 @@ memcached or similar memory based storages for serialized data.</description>
<providesextension>igbinary</providesextension>
<extsrcrelease />
<changelog>
<release>
<date>2023-12-02</date>
<time>16:00:00</time>
<version>
<release>3.2.15</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 crash in igbinary_unserialize_object_enum_case with opcache protected memory and non-constant value.
</notes>
</release>
<release>
<date>2023-02-26</date>
<time>16:00:00</time>
Expand All @@ -256,7 +272,7 @@ memcached or similar memory based storages for serialized data.</description>
<notes>
* Fix build error in PHP 8.3-dev
* Fix test expectation errors in php 8.3-dev due to change to php's TypeErrors.
</notes>
</notes>
</release>
<release>
<date>2023-02-02</date>
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.15"
#define PHP_IGBINARY_VERSION "3.2.16"

/* Macros */

Expand Down