Skip to content

Commit a74b355

Browse files
committed
Merge remote-tracking branch 'origin/main' into 3.0.0
2 parents cda4b24 + 34a8b73 commit a74b355

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2020
- Shell completion support for bash, zsh, and fish shells with dynamic completions for commands, targets, git branches, stack paths, and options
2121
- CLI PHPUnit test suite in the `tests/Cli` directory
2222

23+
# [2.1.8] - 2026-03-11
24+
- Fixed - Add missing `igbinary` and `redis` PHP extensions to the slic and WordPress Dockerfiles.
25+
2326
# [2.1.7] - 2026-02-02
2427
- Fixed - Preserve staged PHP versions (from `slic php-version set X.Y --skip-rebuild`) when a project's `.env.slic.local` file would otherwise override them. Staged versions now correctly take precedence over project-specific PHP version overrides.
2528

containers/slic/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ RUN chmod a+rx /usr/local/bin/wp /usr/local/bin/install-php-extensions
3434
# PHP extensions (heavy compilation step with cache mount)
3535
# -------------------------------
3636
RUN --mount=type=cache,target=/tmp/ipe-cache,sharing=locked \
37-
install-php-extensions xdebug pdo pdo_mysql mysqli zip uopz pcntl sockets intl exif gd
37+
install-php-extensions xdebug pdo pdo_mysql mysqli zip uopz pcntl sockets intl exif gd igbinary redis
3838

3939
# -------------------------------
4040
# System dependencies (with cache mount for speed)

containers/wordpress/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ADD https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar /u
2121
RUN --mount=type=cache,target=/tmp/ipe-cache,sharing=locked \
2222
chmod a+x /usr/local/bin/install-php-extensions && \
2323
chmod a+rx /usr/local/bin/wp && \
24-
install-php-extensions xdebug
24+
install-php-extensions xdebug igbinary redis
2525

2626
# -------------------------------
2727
# WordPress version update (PHP 7.4)

0 commit comments

Comments
 (0)