Skip to content

Commit 0c5c308

Browse files
committed
chore: add support for librdkafka 2.6.1
1 parent c379aa6 commit 0c5c308

File tree

12 files changed

+1604
-517
lines changed

12 files changed

+1604
-517
lines changed

.github/workflows/test-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- '8.3'
1818
- '8.4'
1919
librdkafka:
20-
- '2.6.0'
20+
- '2.6.1'
2121
defaults:
2222
run:
2323
shell: bash

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
matrix:
1414
include:
1515
- php: '8.1'
16-
librdkafka: 'v2.6.0'
16+
librdkafka: 'v2.6.1'
1717
publish: true
1818
exclude:
1919
- php: '8.1'
20-
librdkafka: 'v2.6.0'
20+
librdkafka: 'v2.6.1'
2121
publish: false
2222
php:
2323
- '7.4'
@@ -27,7 +27,7 @@ jobs:
2727
- '8.3'
2828
- '8.4'
2929
librdkafka:
30-
- 'v2.6.0'
30+
- 'v2.6.1'
3131
- 'v2.5.3'
3232
- 'v2.4.0'
3333
- 'v2.3.0'

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This pre-release improves compatible with the [PHP RdKafka extension](https://gi
1212
### Added
1313

1414
- Add support for PHP 8.3 and 8.4
15-
- Add support for librdkafka 2.1.0, 2.1.1, 2.2.0, 2.3.0, 2.4.0, 2.5.0, 2.5.3, 2.6.0
15+
- Add support for librdkafka 2.1.0, 2.1.1, 2.2.0, 2.3.0, 2.4.0, 2.5.0, 2.5.3, 2.6.0, 2.6.1
1616

1717
### Fixed
1818

resources/docker/php74-librdkafka-ffi/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM php:7.4-cli
22

33
# enable ffi and install librdkafka
4-
ARG LIBRDKAFKA_VERSION=v2.6.0
4+
ARG LIBRDKAFKA_VERSION=v2.6.1
55
ENV LIBRDKAFKA_VERSION=$LIBRDKAFKA_VERSION
66
RUN set -e; \
77
apt-get update; \

resources/docker/php80-librdkafka-ffi/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM php:8.0-cli
22

33
# enable ffi and install librdkafka
4-
ARG LIBRDKAFKA_VERSION=v2.6.0
4+
ARG LIBRDKAFKA_VERSION=v2.6.1
55
ENV LIBRDKAFKA_VERSION=$LIBRDKAFKA_VERSION
66
RUN set -e; \
77
apt-get update; \

resources/docker/php81-librdkafka-ffi/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM php:8.1-cli
22

33
# enable ffi and install librdkafka
4-
ARG LIBRDKAFKA_VERSION=v2.6.0
4+
ARG LIBRDKAFKA_VERSION=v2.6.1
55
ENV LIBRDKAFKA_VERSION=$LIBRDKAFKA_VERSION
66
RUN set -e; \
77
apt-get update; \

resources/docker/php82-librdkafka-ffi/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM php:8.2-cli
22

33
# enable ffi and install librdkafka
4-
ARG LIBRDKAFKA_VERSION=v2.6.0
4+
ARG LIBRDKAFKA_VERSION=v2.6.1
55
ENV LIBRDKAFKA_VERSION=$LIBRDKAFKA_VERSION
66
RUN set -e; \
77
apt-get update; \

resources/docker/php83-librdkafka-ffi/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM php:8.3-cli
22

33
# enable ffi and install librdkafka
4-
ARG LIBRDKAFKA_VERSION=v2.6.0
4+
ARG LIBRDKAFKA_VERSION=v2.6.1
55
ENV LIBRDKAFKA_VERSION=$LIBRDKAFKA_VERSION
66
RUN set -e; \
77
apt-get update; \

resources/docker/php84-librdkafka-ffi/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM php:8.4-cli
22

33
# enable ffi and install librdkafka
4-
ARG LIBRDKAFKA_VERSION=v2.6.0
4+
ARG LIBRDKAFKA_VERSION=v2.6.1
55
ENV LIBRDKAFKA_VERSION=$LIBRDKAFKA_VERSION
66
RUN set -e; \
77
apt-get update; \

src/RdKafka/FFI/Library.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class Library
2727
use Methods;
2828

2929
public const VERSION_AUTODETECT = '';
30-
public const VERSION_LATEST = '2.6.0';
30+
public const VERSION_LATEST = '2.6.1';
3131
public const PHP_LIBRARY_VERSION = '0.6.0';
3232

3333
private static FFI $ffi;

0 commit comments

Comments
 (0)