Skip to content

Automation Framework version 0.38.0

Choose a tag to compare

@zapbot zapbot released this 11 Apr 09:00
· 4330 commits to main since this release
0e6dd18

Fixed

  • Correctly expose all information in the planProgress API view (Issue 8433). This might break existing clients as the format has changed.
    • JSON changed to, e.g.:
    {
      "warn" : [ ],
      "planId" : 0,
      "started" : "2024-04-08T00:00:00.615Z",
      "finished" : "2024-04-08T00:00:00.702Z",
      "error" : [ ],
      "info" : [ "Job requestor started", "Job requestor finished, time taken: 00:00:00" ]
    }
    • XML changed to, e.g.:
     <planProgress type="set">
       <planId>0</planId>
       <started>2024-04-08T00:00:00.615Z</started>
       <finished>2024-04-08T00:00:00.702Z</finished>
       <info type="list">
         <message>Job requestor started</message>
         <message>Job requestor finished, time taken: 00:00:00</message>
       </info>
       <warn type="list"/>
       <error type="list"/>
     </planProgress>