Skip to content

Commit cc32860

Browse files
committed
Update PHP versions
1 parent 47ad34f commit cc32860

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ temp_data/
55
compile.log
66
/*.zip
77
/*.exe
8+
bin-debug/
9+
download_cache/

compile.sh

Lines changed: 3 additions & 3 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.27" "8.4.14" "8.5.0RC4")
2+
PHP_VERSIONS=("8.1.33" "8.2.29" "8.3.28" "8.4.15" "8.5.0")
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.
@@ -21,7 +21,7 @@ OPENSSL_VERSION="3.6.0"
2121
LIBZIP_VERSION="1.11.4"
2222
SQLITE3_VERSION="3500400" #3.50.4
2323
LIBDEFLATE_VERSION="96836d7d9d10e3e0d53e6edb54eb908514e336c4" #1.24 - see above note about "v" prefixes
24-
LIBRDKAFKA_VER="2.1.1"
24+
LIBRDKAFKA_VER="2.12.1"
2525
LIBZSTD_VER="1.5.7"
2626
LIBGRPC_VER="1.76.0"
2727
LIBSNAPPY_VER="1.2.2"
@@ -41,7 +41,7 @@ EXT_MORTON_VERSION="0.1.2"
4141
EXT_XXHASH_VERSION="0.2.0"
4242
EXT_ARRAYDEBUG_VERSION="0.2.1"
4343
EXT_ENCODING_VERSION="1.0.0"
44-
EXT_RDKAFKA_VERSION="6.0.3"
44+
EXT_RDKAFKA_VERSION="6.0.4"
4545
EXT_ZSTD_VERSION="0.15.2"
4646
EXT_GRPC_VERSION="1.76.0"
4747
EXT_VANILLAGENERATOR_VERSION="abd059fd2ca79888aab3b9c5070d83ceea55fada"

windows-compile-vs.ps1

Lines changed: 3 additions & 3 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.27", "8.4.14", "8.5.0RC4")
4+
$PHP_VERSIONS=@("8.1.33", "8.2.29", "8.3.28", "8.4.15", "8.5.0")
55

66
$PHP_SDK_VER="2.4.0"
77
$ARCH="x64"
@@ -13,7 +13,7 @@ $LIBYAML_VER="0.2.5"
1313
$PTHREAD_W32_VER="3.0.0"
1414
$LEVELDB_MCPE_VER="1c7564468b41610da4f498430e795ca4de0931ff" #release not tagged
1515
$LIBDEFLATE_VER="96836d7d9d10e3e0d53e6edb54eb908514e336c4" #1.24 - see above note about "v" prefixes
16-
$LIBRDKAFKA_VER="2.1.1"
16+
$LIBRDKAFKA_VER="2.12.1"
1717
$LIBZSTD_VER="1.5.7"
1818
$LIBGRPC_VER="1.76.0"
1919
$LIBSNAPPY_VER="1.2.2"
@@ -33,7 +33,7 @@ $PHP_XDEBUG_VER="3.4.7"
3333
$PHP_ARRAYDEBUG_VER="0.2.1"
3434
$PHP_ENCODING_VER="1.0.0"
3535
$PHP_VANILLAGENERATOR_VER="2.1.7"
36-
$PHP_LIBKAFKA_VER="6.0.3"
36+
$PHP_LIBKAFKA_VER="6.0.4"
3737
$PHP_ZSTD_VER="0.15.2"
3838
$PHP_GRPC_VER="1.76.0"
3939

0 commit comments

Comments
 (0)