2025.1 Series Release Notes¶
8.1.0¶
New Features¶
Adds a utility CLI module for checking images against the format inspector in oslo_utils.imageutils. After installing oslo.utils, simply run
python -m oslo_utils.imageutils -hfor full usage for the new CLI helper.
Deprecation Notes¶
Eventlet usages are deprecated and the removal of Eventlet from OpenStack is planned, for this reason the
eventletutilsmodule is deprecated. Please start considering removing your internal Eventlet usages and migrating your stack.
The
exception_to_unicodefunction from theoslo_utils.encodeutilsmodule has been deprecated. Usestr(exc)instead.
8.0.0¶
New Features¶
The following utility functions have been added to the
oslo_utils.secretutilsmodule. These can be used to replace the built-incryptmodule which was removed in Python 3.13.crypt_passwordcrypt_mksalt
Upgrade Notes¶
The
netutils.is_valid_ipv4method now enables the strict check by default. To preserve the previous behavior, set thestrictargument toFalse.
7.4.0¶
New Features¶
The new
VersionPredicateclass has been added to theversionutilsmodule, which parses version predicate and check if the given version meets the described requirements.
Upgrade Notes¶
Support for Python 3.8 has been removed. Now the minimum python version supported is 3.9 .
Deprecation Notes¶
The
oslo_utils.secretutils.constant_time_comparefunction has been deprecated. Use thecompare_digestfunction from the built-inhmacmodule.
The
md5method fromoslo_utils.secretutilsmodule has been deprecated becausehashlib.md5can be used instead in all supported python versions.