6.0.9
[nepi.git] / CHANGELOG.md
1 # 6.0.9 - Mar 11, 2016
2
3 * register_resource also supports the `connectedTo` keyword,
4   that allows to call `register_connection` automatically
5 * linuxapplication's code, when specified as a string,
6   is uploaded as an executable file (for inline shell scripts)
7 * linuxapplication's command field can use ${CODE} to refer
8   to the path of the uploaded code (the one set by code=)
9
10 # 6.0.8 - Mar 8, 2016
11
12 * register_resource accepts special flag
13   autoDeploy = True
14   this way the subsequent call to deploy() is performed
15   automatically as part of register_resource
16
17 # 6.0.7 - Mar 4, 2016
18
19 * bugfix for python3 when running commands locally
20
21 # 6.0.6 - Feb 3, 2016
22
23 * bugfix for undefined variable 'nowait'  in util.execfuncs.lkill
24
25 # 6.0.5 - Feb 2, 2016
26
27 * make it possible to install in virtualenv (not using /etc/nepi anymore)
28
29 # 6.0.4 - Jan 8, 2016
30
31 * bugfix - `filter_existing_files` was looping over a changing dictionary
32
33 # 6.0.1 - November 5, 2015
34
35 * move the `src/nepi` directory in the git repo one step up
36   * so `ls nepi/util/`
37
38 * `import nepi; nepi.version`
39  
40
41 # 6.0.0 - November 5, 2015
42
43 * support for both python2 and python3
44 * additional dependency to `six`
45 * dependency to `ipaddr` only valid for python2, in python3 we use `ipaddress` from the standard library
46
47 * `register_resource` now accepts keyword args to set attributes in a single call
48
49 #
50     app = ec.register_resource("linux:Application", 
51                                hostname = hostname,
52                                username = username,
53                                identity = ssh_key)
54
55                                
56