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