Skip to content

Commit 34a8b73

Browse files
authored
Merge pull request #241 from stellarwp/2.1.8
2.1.8" Add `igbinary` and `redis` PHP extensions
2 parents 78cb6b0 + b82d8e2 commit 34a8b73

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
# [2.1.8] - 2026-03-11
8+
- Fixed - Add missing `igbinary` and `redis` PHP extensions to the slic and WordPress Dockerfiles.
9+
710
# [2.1.7] - 2026-02-02
811
- 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.
912

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)

slic.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
] );
5555

5656
$cli_name = 'slic';
57-
const CLI_VERSION = '2.1.7';
57+
const CLI_VERSION = '2.1.8';
5858

5959
// If the run-time option `-q`, for "quiet", is specified, then do not print the header.
6060
if ( in_array( '-q', $argv, true ) || ( in_array( 'exec', $argv, true ) && ! in_array( 'help', $argv, true ) ) ) {

0 commit comments

Comments
 (0)