Skip to content

Commit 849eaee

Browse files
committed
Merge remote-tracking branch 'origin/main' into 3.0.0
2 parents 2715fc5 + c3f6098 commit 849eaee

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919
- New `slic completion` command with subcommands to install bash/zsh/fish completions
2020
- Shell completion support for bash, zsh, and fish shells with dynamic completions for commands, targets, git branches, stack paths, and options
2121

22+
# [2.1.3] - 2025-11-26
23+
24+
- Change - Update MariadDB version from version `10.7.8` to version `11.8.3`.
25+
- Fixed - Error "Failed to get current SQL modes. Reason: ERROR 2026 (HY000)" due to lower MariaDB image.
26+
2227
# [2.1.2] - 2025-11-13
2328
- 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.
2429
- 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

0 commit comments

Comments
 (0)