aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md25
-rw-r--r--pom.xml2
-rw-r--r--version.properties2
3 files changed, 27 insertions, 2 deletions
diff --git a/README.md b/README.md
index 7eb522e..982c3b5 100644
--- a/README.md
+++ b/README.md
@@ -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
+ ```
+
diff --git a/pom.xml b/pom.xml
index f661555..09866b1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
<artifactId>sdc-tosca</artifactId>
<name>sdc-sdc-tosca</name>
<description>SDC Tosca Parser JAR file for use by consumers</description>
- <version>1.4.5-SNAPSHOT</version>
+ <version>1.4.6-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
diff --git a/version.properties b/version.properties
index d1722d6..ed1cd82 100644
--- a/version.properties
+++ b/version.properties
@@ -5,7 +5,7 @@
major=1
minor=4
-patch=5
+patch=6
base_version=${major}.${minor}.${patch}