Skip to content

v0.7.0

Latest
Compare
Choose a tag to compare
@pjhartzell pjhartzell released this 17 Sep 16:25
· 1 commit to main since this release

⚠️ Breaking Change

  • (#176) Removed support for Python 3.9.

Added

  • (#176) Adds a collection_matchers array to the payload process block to support deterministic order when collection matching.
  • (#176) Adds a collection_options object to the payload process block to support collection-specific options such as upload options.
  • (#176) Adds direct access to the payload dictionary through self.payload on the Task class.
  • (#176) Adds access to payload properties through self.payload.<property> on the Task class.

Changed

  • (#176) Separated the payload data model from the Task class.

Deprecated

  • (#176) Direct access to the payload dictionary through self._payload is deprecated in favor of self.payload.
  • (#176) Direct access to payload properties through self.<property> is deprecated in favor of self.payload.<property>.
  • (#167) The collection mapping in the collections field in upload_options is deprecated in favor of collection_matchers.