Newton Series Release Notes¶
4.12.0¶
Bug Fixes¶
Decorator
oslo_db.api.wrap_db_retry
now defaults to 10 retries. Previously the number of attempts was 0, and users had to explicitly passmax_retry_interval
value greater than 0 to actually enable retries on errors.
4.9.0¶
Upgrade Notes¶
The allowed values for the
connection_debug
option are now restricted to the range between 0 and 100 (inclusive). Previously a number lower than 0 or higher than 100 could be given without error. But now, aConfigFileValueError
will be raised when the option value is outside this range.
4.8.0¶
New Features¶
enginefacade decorators can now be used for class and instance methods, which implicitly receive the first positional argument. Previously, it was required that all decorated functions receive a context value as the first argument.
Deprecation Notes¶
The configuration option
sqlite_db
is now deprecated and will be removed in the future. Please use configuration optionconnection
orslave_connection
to connect to the database.