Automation Framework version 0.38.0
·
4330 commits
to main
since this release
Fixed
- Correctly expose all information in the
planProgressAPI 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>