v0.6.1-rc1
iguazio-deploy
released this
16 Feb 22:09
·
2190 commits
to master
since this release
Features / Enhancements
- Projects: Added max length of 63 to “Name” field in “Create project” pop-up
- Project Overview: Trimmed project name that is prepended to Nuclio function names, in case it is the current project, and added the full name in a tooltip on hover
Before:
After:
- Create Job: Added “int”, “float”, & “bool” options to and remove “number” option from parameter type list, and added conversion of the values in accordance to the parameter type:
- For type “bool”:
- if value is "True" or "False" (case insensitive) — assign
true
orfalse
respectively - otherwise stringify the given value
- if value is "True" or "False" (case insensitive) — assign
- For types “int” & “float”:
- if value could be converted to a finite number — assign the number value
- otherwise stringify the given value
- For any other type — stringify the given value
- For type “bool”:
- Create Job: Data Inputs: added auto-completion when editing, not only when creating.
Bug Fixes
- Create Job:
null
values were wrongly sent for non-numeric parameter values on job submission - Create Job: could not change an existing parameter type, it reverted to its previous value
Full changelog
- 26df328 Fix [Create Job] Parameters: null values are wrongly sent (#390)
- d2efb99 Impl [Create Job] Data Inputs: Add auto-completion on edit (#389)
- 2afbfb4 Impl [Project Overview]Trim project name from Nuclio function name(#380)
- f5bd83a Impl [Projects] Create project: limit length of Name to 63 (#388)