Current Series Release Notes¶
3.9.0-26¶
Upgrade Notes¶
The
remoteabledecorator can now be applied to class methods. For example:class MyObj(VersionedObject): @classmethod @remoteable def query(cls, context): ...
This replaces the
remotable_classmethoddecorator previously required for this.
The methods of the
FieldandFieldTypeclasses and their various subclasses are now consistently instance methods. Previously, they were an inconsistent mix of static methods and instance methods.
The following helpers from the
oslo_versionedobjects.testmodule were unused internally and did not appear to have any external used have been removed:skipIfTestCase.assertPublicAPISignaturesAPICoverageBaseHookTestCase
Deprecation Notes¶
The
remotable_classmethoddecorator has been deprecated. You can now useremoteablewithclassmethodinstead.