Skip to content

1.5.0

Compare
Choose a tag to compare
@awsbuild awsbuild released this 06 Feb 16:05

Docker Images

coreoasis/model_worker:1.5.0
coreoasis/api_server:1.5.0
coreoasis/model_worker:1.5.0-slim
coreoasis/api_server:1.5.0-slim

Components

oasislmf 1.5.0
ktools 3.2.2

Update to the Model Settings schema

For more details see the pull request notes

Under model_settings

  • numeric_parameters, for unbound floats and integers
  • dropdown_parameters, same format as 'events' or 'occurrence' but under a generic 'name'
  • parameter_groups, for grouping related parameters of different types

New section data_settings

Added for datafile_selectors which is used to connect an uploaded file under /v1/data_files/ to an analyses

{
   "model_settings":{ 
        ...
   },
   "lookup_settings": {
       ...
   }
   "data_settings":{
      "datafile_selectors":[
          { ... }
      ]
   }
}

Changelog

  • #304 - Slim image builds (optional)
  • #303 - model settings schema Update
  • #302 - Add Maven Swagger API build test
  • #297 - Remove previous output results on run error
  • #297 - Fix Log and traceback storage
  • #222 - Update to model settings schema
  • #275 - Fixed delete operations with multi-part as content type in swagger
  • #274 - Fixed reverting behaviour for complex models (custom gulcalc)
  • #281 - Added Task Queued state
  • #268 - Store run trace on success
  • #287 - Store ktools log directory in an Analyses
  • #283 - Fixed Worker not releasing memory from Python process

New Features