Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If no version is specified, by default the latest available version is used, which is the highest available version of each commandnumber of an command. Lets assume you have a command log available in versions v1, v2 and v3. Using the keyword latest here would pick-up the version v3 and use it:

Code Block
languageyaml
pipeline:
  - log:
      message: "Hello World!"   

...

Code Block
languageyaml
headers:
  version: latest
pipeline:
  - log:
      message: "Hello World!"  

Is the same as:

Code Block
languageyaml
pipeline:
  - log:v3:
      message: "Hello World!"