Skip to content

Commit e92df36

Browse files
committed
0.5.0
1 parent a1c770e commit e92df36

File tree

2 files changed

+38
-1
lines changed

2 files changed

+38
-1
lines changed

HISTORY.rst

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,43 @@
11
Release History
22
===============
33

4+
0.5.0 (2014-10-22)
5+
------------------
6+
7+
- Change debug messages in modules from print to stderr to log using
8+
the logging module. See the section 'Debugging and Logging' in
9+
pan.wfapi.rst and pan.xapi.rst for an example of configuring the
10+
logging module to enable debug output.
11+
12+
IMPORTANT NOTE: the debug argument has been removed from the
13+
constructors, so programs using them must be modified.
14+
15+
- Add platform ID for Windows 7 64-bit sandbox to WildFire
16+
documentaton.
17+
18+
- Fix bug in panconf.py: positional arguments not initialized to none
19+
in conf_set()
20+
21+
- Remove undocumented xml_python() method from pan.xapi and pan.wfapi.
22+
Use pan.config if you need this.
23+
24+
- Add 'serial' varname to .panrc. Allows you to have tags which
25+
reference a Panorama managed device via redirection. Suggested by
26+
Jonathan Kaplan.
27+
28+
- Add example to panxapi.rst: Print operational command variable using
29+
shell pipeline.
30+
31+
- Document --sync, --interval, --timeout for panxapi.py
32+
33+
- Add --validate to panxapy.py which runs commit with a cmd argument
34+
of <commit><validate></validate></commit> to validate the
35+
configuration. This is a new feature in PAN-OS 6.0.
36+
37+
- Fix keygen() to return api_key as documented.
38+
39+
- Add support for type=config&action=override. From btorres-gil
40+
441
0.4.0 (2014-09-14)
542
------------------
643

lib/pan/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
import logging
1818

19-
__version__ = '0.4.0-current'
19+
__version__ = '0.5.0'
2020

2121
DEBUG1 = logging.DEBUG
2222
DEBUG2 = DEBUG1 - 1

0 commit comments

Comments
 (0)