-
Notifications
You must be signed in to change notification settings - Fork 47
Description
Is your feature request related to a problem? Please describe.
We have the MySQL version 8.4 repo
https://dev.mysql.com/get/mysql84-community-release-el9-1.noarch.rpm
installed on our Amazon Linux 2023 system
$ rpm -q system-release --qf "%{VERSION}\n"
2023.10.20260202
and have been installing both the mysql-community-client and mysql-shell packages for a while now with no issues right up to and including MySQL version 8.4.7.
However, I just tried to update the packages to MySQL version 8.4.8, and while the mysql-community-client was upgraded without issues, the mysql-shell upgrade failed.
$ sudo dnf upgrade mysql-shell
Last metadata expiration check: 4:13:07 ago on Mon Feb 9 12:24:50 2026.
Dependencies resolved.
Problem: cannot install the best update candidate for package mysql-shell-8.4.7-1.el9.aarch64
- nothing provides libssl.so.3(OPENSSL_3.3.0)(64bit) needed by mysql-shell-8.4.8-1.el9.aarch64 from mysql-tools-8.4-lts-community
- nothing provides libcrypto.so.3(OPENSSL_3.3.0)(64bit) needed by mysql-shell-8.4.8-1.el9.aarch64 from mysql-tools-8.4-lts-community
- nothing provides libcrypto.so.3(OPENSSL_3.4.0)(64bit) needed by mysql-shell-8.4.8-1.el9.aarch64 from mysql-tools-8.4-lts-community
============================================================================================================================================
Package Architecture Version Repository Size
============================================================================================================================================
Skipping packages with broken dependencies:
mysql-shell aarch64 8.4.8-1.el9 mysql-tools-8.4-lts-community 82 M
Transaction Summary
============================================================================================================================================
Skip 1 Package
Nothing to do.
Complete!
Describe the solution you'd like
/usr/lib64/libssl.so.3 currently appears to support multiple OpenSSL versions up to 3.2.0. We'd like version 3.3.0 support added.
Describe alternatives you've considered
We simply won't upgrade our mysql-shell client, but will stick with version 8.4.7.
Additional context
N/A