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