Current Series Release Notes¶
3.9.0-17¶
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.
Deprecation Notes¶
The
remotable_classmethoddecorator has been deprecated. You can now useremoteablewithclassmethodinstead.