25 January 2021 Release Notes¶
Version 1.1.200
Feature Highlights¶
Stay tuned for new DataKitchen features in coming releases!
Other Fixes & Enhancements¶
Schedule Object Renamed in JSON Files: Because the Automation platform now uses the Kubernetes scheduler for order scheduling, the underlying JSON objects that record schedule settings needed to be updated from the original "mesos-setting" references. This release replaces the legacy objects with the schedule-setting and schedule-setting-list objects in variations.json. The platform still recognizes any legacy objects in use, but they will be replaced automatically when a user updates a file containing them. [DEV-6612, DEV-7572]
{
"variation-list": {
"variation-test": {
"schedule-setting": "daily_6_am_schedule",
"graph-setting": "graph"
}
},
"schedule-setting-list": {
"daily_6_am_schedule": {
"schedule": "0 6 * * *",
"scheduleTimeZone": "America/New_York",
}
}
}
Scheduling objects are renamed in variations.json files.
Orders Page Filter Corrected: When a user filters the Orders page by a specific recipe, the system populates the variation filter with the list of variations in that recipe. Users who cleared their filter selections, or selected All Recipes from the recipe filter, found that the variation filter was retaining the original list. This issue has been resolved, and the variation filter properly reflects the filters selected or not selected by users. [DEV-7307]