StackStorm v2.0.1 Release Notes

Release Date: 2016-09-30 // over 7 years ago
  • โž• Added

    
    * ๐Ÿ‘ Allow users to specify sort order when listing traces using the API endpoint by specifying
      ``?sort_desc=True|False`` query parameters and by passing ``--sort=asc|desc`` parameter to
      the ``st2 trace list`` CLI command. (improvement)
    * Retry connecting to RabbitMQ on services start-up if connecting fails because
      of an intermediate network error or similar. (improvements)
    * ๐Ÿ‘ Allow jinja expressions ``{{st2kv.system.foo}}`` and ``{{st2kv.user.foo}}`` to access
      datastore items from workflows, actions and rules. This is in addition to supporting
      expressions ``{{system.foo}}`` and ``{{user.foo}}``.
    
    ๐Ÿ”„ Changed
    
    • โšก๏ธ Update traces list API endpoint and st2 trace list so the traces are sorted by start_timestamp in descending order by default. This way it's consistent with executions list and -n CLI parameter works as expected. (improvement)

    ๐Ÿ—„ Deprecated

    
    * ๐Ÿš€ In subsequent releases, the expressions ``{{system.}}`` and ``{{user.}}`` for accessing
      datastore items will be deprecated. It is recommended to switch to using
      ``{{st2kv.system.}}`` and ``{{st2kv.user.}}`` for your content. (improvement)
    
    ๐Ÿ›  Fixed
    ~~~~~
    
    * ๐Ÿ›  Fix ``st2 execution get`` command so now ``--attr`` argument correctly works with child
      properties of the ``result`` and ``trigger_instance`` dictionary (e.g. ``--attr
      result.stdout result.stderr``). (bug fix)
    * ๐Ÿ›  Fix a bug with action default parameter values not supporting Jinja template
      notation for parameters of type ``object``. (bug fix, improvement)
    * ๐Ÿ›  Fix ``--user`` / ``-u`` argument in the ``st2 key delete`` CLI command.