Skip to content

Commit 7f45b70

Browse files
committed
Update versions
1 parent 2714034 commit 7f45b70

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ This script doesn't accept parameters, but the following environment variables a
113113
| [morton](https://github.com/pmmp/ext-morton) | Packing X/Z and X/Y/Z coordinates into ints in a format suitable for PHP array keys | Needed for performance |
114114
| [xxhash](https://github.com/pmmp/ext-xxhash/releases) | Not currently used | Could be replaced by `hash()` in recent versions of PHP but this extension has much better performance |
115115
| [arraydebug](https://github.com/pmmp/ext-arraydebug/tags) | Debugging array hash collisions | |
116-
| [encoding](https://github.com/pmmp/ext-encoding/releases) | Not currently used | Experimental, intended to replace `BinaryUtils` but never finished |
116+
| [encoding](https://github.com/pmmp/ext-encoding/releases) | Disk & network data encoding & decoding | Significantly faster alternative to [BinaryUtils](https://github.com/pmmp/BinaryUtils) |
117117

118118
### Misc
119119

compile.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
PHP_VERSIONS=("8.1.33" "8.2.29" "8.3.26" "8.4.13" "8.5.0RC1")
2+
PHP_VERSIONS=("8.1.33" "8.2.29" "8.3.27" "8.4.14" "8.5.0RC3")
33

44
#### NOTE: Tags with "v" prefixes behave weirdly in the GitHub API. They'll be stripped in some places but not others.
55
#### Use commit hashes to avoid this.
@@ -15,30 +15,30 @@ CURL_VERSION="curl-8_13_0"
1515

1616
YAML_VERSION="0.2.5"
1717
LEVELDB_VERSION="1c7564468b41610da4f498430e795ca4de0931ff" #release not tagged
18-
LIBXML_VERSION="2.14.5"
18+
LIBXML_VERSION="2.15.1"
1919
LIBPNG_VERSION="1.6.50"
2020
LIBJPEG_VERSION="9f"
21-
OPENSSL_VERSION="3.5.2"
21+
OPENSSL_VERSION="3.6.0"
2222
LIBZIP_VERSION="1.11.4"
2323
SQLITE3_VERSION="3500400" #3.50.4
2424
LIBDEFLATE_VERSION="96836d7d9d10e3e0d53e6edb54eb908514e336c4" #1.24 - see above note about "v" prefixes
2525

2626
EXT_PMMPTHREAD_VERSION="6.2.0"
2727
EXT_YAML_VERSION="2.2.5"
2828
EXT_LEVELDB_VERSION="88071eb1b1eae96af043229104b9d813f7cbe40c" #release not tagged
29-
EXT_CHUNKUTILS2_VERSION="0.3.5"
30-
EXT_XDEBUG_VERSION="3.4.5"
29+
EXT_CHUNKUTILS2_VERSION="0.4.0"
30+
EXT_XDEBUG_VERSION="3.4.7"
3131
EXT_IGBINARY_VERSION="3.2.16"
3232
EXT_CRYPTO_VERSION="999b3c7edbc7f8ca4fdeb0bb4bbae488ad0daf07" #release not tagged
3333
EXT_RECURSIONGUARD_VERSION="0.1.0"
3434
EXT_LIBDEFLATE_VERSION="0.2.1"
3535
EXT_MORTON_VERSION="0.1.2"
3636
EXT_XXHASH_VERSION="0.2.0"
37-
EXT_ARRAYDEBUG_VERSION="0.2.0"
37+
EXT_ARRAYDEBUG_VERSION="0.2.1"
3838
EXT_ENCODING_VERSION="1.0.0"
3939

4040
EXT_PMMPTHREAD_VERSION_PHP85="4aa34a27feaa43adba5f1e93939828d1d7afdefc"
41-
EXT_XDEBUG_VERSION_PHP85="86727b0b05b5d0a9c4fb85021f05d7931e2c3a35"
41+
EXT_XDEBUG_VERSION_PHP85="3.5.0alpha2"
4242
EXT_IGBINARY_VERSION_PHP85="8f8b7175c7859f1845bcdee6f7d0baeea7d07cb8"
4343

4444
function write_out {

windows-compile-vs.ps1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
$ErrorActionPreference="Stop"
22
$ProgressPreference="SilentlyContinue"
33

4-
$PHP_VERSIONS=@("8.1.33", "8.2.29", "8.3.26", "8.4.13", "8.5.0RC1")
4+
$PHP_VERSIONS=@("8.1.33", "8.2.29", "8.3.27", "8.4.14", "8.5.0RC3")
55

66
$PHP_SDK_VER="2.4.0"
77
$ARCH="x64"
@@ -16,21 +16,21 @@ $LIBDEFLATE_VER="96836d7d9d10e3e0d53e6edb54eb908514e336c4" #1.24 - see above not
1616

1717
$PHP_PMMPTHREAD_VER="6.2.0"
1818
$PHP_YAML_VER="2.2.5"
19-
$PHP_CHUNKUTILS2_VER="0.3.5"
19+
$PHP_CHUNKUTILS2_VER="0.4.0"
2020
$PHP_IGBINARY_VER="3.2.16"
2121
$PHP_LEVELDB_VER="88071eb1b1eae96af043229104b9d813f7cbe40c" #release not tagged
2222
$PHP_CRYPTO_VER="999b3c7edbc7f8ca4fdeb0bb4bbae488ad0daf07" #release not tagged
2323
$PHP_RECURSIONGUARD_VER="0.1.0"
2424
$PHP_MORTON_VER="0.1.2"
2525
$PHP_LIBDEFLATE_VER="0.2.1"
2626
$PHP_XXHASH_VER="0.2.0"
27-
$PHP_XDEBUG_VER="3.4.5"
28-
$PHP_ARRAYDEBUG_VER="0.2.0"
27+
$PHP_XDEBUG_VER="3.4.7"
28+
$PHP_ARRAYDEBUG_VER="0.2.1"
2929
$PHP_ENCODING_VER="1.0.0"
3030

3131
$PHP_PMMPTHREAD_VER_PHP85="4aa34a27feaa43adba5f1e93939828d1d7afdefc"
3232
$PHP_IGBINARY_VER_PHP85="8f8b7175c7859f1845bcdee6f7d0baeea7d07cb8"
33-
$PHP_XDEBUG_VER_PHP85="86727b0b05b5d0a9c4fb85021f05d7931e2c3a35"
33+
$PHP_XDEBUG_VER_PHP85="3.5.0alpha2"
3434

3535
function pm-echo {
3636
param ([string] $message)

0 commit comments

Comments
 (0)