diff options
author | Michael Lando <michael.lando@intl.att.com> | 2018-10-02 10:40:40 +0300 |
---|---|---|
committer | Michael Lando <michael.lando@intl.att.com> | 2018-10-02 10:40:40 +0300 |
commit | 40e64d0b8503333b8cf23cffad5137182fbd87be (patch) | |
tree | 2e6691a1b825e86a761982ce8b77170080f00817 /README.md | |
parent | c244e1a7ede9c936b81b48b9e6e00dff64461e1d (diff) |
update readme file
update changes from the last two releases
Change-Id: I8740d80cd5b021fca820b66c094c9da1657c2dcc
Issue-ID: SDC-1805
Signed-off-by: Michael Lando <michael.lando@intl.att.com>
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -83,3 +83,28 @@ to use add the folowing depandency to your POM file: ### Features: 1. **enable types validation** from this version all types in CSAR will be verified, all used types should be properly declared in "base" yml files e.g. node.yml , data.yml etc. +## 1.4.3 + +### Bug fix: +1. **validation fix** Maximum nodeTypes we allowed in CSAR file was increased from 10 to 20. + +## 1.4.4 + +### Features: +1. **list support for get input** until know the get input was only supported in the following format get_input \[ <list > , index ] this way was the only option for using a list typed property and retrieving its value for a use in a property , from this release you can use get input < list> to retrieve the whole list. + + example: + ``` + properties: + # the property type is list + related_networks: + #this is now supoorted you can retrive the whole list + get_input: port_vpg_private_0_port_related_networks + # the property type is string + network: + # this will retrive a value from the list + get_input: + - port_vpg_private_0_port_network + - index_value + ``` + |