Skip to content

Changelog

User-Facing Features Added in FRED 12.1

  • The abort() action can now optionally contain a message. E.g.) abort("Hello world")
  • Limited output block support has been added. The syntax looks like this:
    output {
        filename = custom_out.csv
        trigger {
            type = interval
            value = 5
        }
        executor = 0
        columns {
            TIME = now()
            MY_VAR = my_var + 1
            ID = id()
            MY_LIST = list(1, 2, 3)
        }
    }
    
  • spawn_agent() has additional checks in place to prevent agent ID collissions.