Skip to content

Commit c3f6098

Browse files
authored
Merge pull request #229 from stellarwp/2.1.3
Version 2.1.3
2 parents db954f4 + d83d6cc commit c3f6098

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ 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.3] - 2025-11-26
8+
9+
- Change - Update MariadDB version from version `10.7.8` to version `11.8.3`.
10+
- Fixed - Error "Failed to get current SQL modes. Reason: ERROR 2026 (HY000)" due to lower MariaDB image.
11+
712
# [2.1.2] - 2025-11-13
813
- Change - GitHub Actions workflows now use native ARM64 runners (`ubuntu-24.04-arm`) instead of QEMU emulation for multi-platform builds, to reduce build times.
914
- Change - Optimized Dockerfile layer ordering to improve cache hit rates - local config files moved to end to prevent invalidating heavy system installation layers.

slic-stack.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ volumes:
99
services:
1010

1111
db:
12-
image: ${SLIC_DB_IMAGE:-mariadb:10.7.8}
12+
image: ${SLIC_DB_IMAGE:-mariadb:11.8.3}
1313
# Not specifying a platform will ignore the setting and use the current platform.
1414
platform: ${SLIC_DB_PLATFORM:-}
1515
networks:
@@ -19,8 +19,8 @@ services:
1919
environment:
2020
MYSQL_DATABASE: test
2121
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD:-root}
22-
healthcheck: # The `test` db should exist.
23-
test: mysqlshow -u root -p${MYSQL_ROOT_PASSWORD:-root} test
22+
healthcheck:
23+
test: ["CMD", "healthcheck.sh", "--connect", "--innodb_initialized"]
2424
start_period: 5s
2525
interval: 1s
2626
timeout: 3s

slic.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
] );
3535

3636
$cli_name = 'slic';
37-
const CLI_VERSION = '2.1.2';
37+
const CLI_VERSION = '2.1.3';
3838

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

0 commit comments

Comments
 (0)