Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

# [2.1.8] - 2026-03-11
- Fixed - Add missing `igbinary` and `redis` PHP extensions to the slic and WordPress Dockerfiles.

# [2.1.7] - 2026-02-02
- 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.

Expand Down
2 changes: 1 addition & 1 deletion containers/slic/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN chmod a+rx /usr/local/bin/wp /usr/local/bin/install-php-extensions
# PHP extensions (heavy compilation step with cache mount)
# -------------------------------
RUN --mount=type=cache,target=/tmp/ipe-cache,sharing=locked \
install-php-extensions xdebug pdo pdo_mysql mysqli zip uopz pcntl sockets intl exif gd
install-php-extensions xdebug pdo pdo_mysql mysqli zip uopz pcntl sockets intl exif gd igbinary redis

# -------------------------------
# System dependencies (with cache mount for speed)
Expand Down
2 changes: 1 addition & 1 deletion containers/wordpress/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ADD https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar /u
RUN --mount=type=cache,target=/tmp/ipe-cache,sharing=locked \
chmod a+x /usr/local/bin/install-php-extensions && \
chmod a+rx /usr/local/bin/wp && \
install-php-extensions xdebug
install-php-extensions xdebug igbinary redis

# -------------------------------
# WordPress version update (PHP 7.4)
Expand Down
2 changes: 1 addition & 1 deletion slic.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
] );

$cli_name = 'slic';
const CLI_VERSION = '2.1.7';
const CLI_VERSION = '2.1.8';

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