This repository was archived by the owner on May 5, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +24
-6
lines changed Expand file tree Collapse file tree 4 files changed +24
-6
lines changed Original file line number Diff line number Diff line change 2
2
History
3
3
=======
4
4
5
+ 1.1.0 (2018-05-08)
6
+ ------------------
7
+
8
+ * Updated logging `xpoll() ` to reflect behavior of current API.
9
+ * Added `credentials.py ` module to support OAuth2 operations.
10
+ * Added `auto_refresh ` and `auto_retry ` support to `HTTPClient() `.
11
+ * Added `PartialCredentialsError ` exception to handle cases where incomplete credentials are passed to `Credentials `.
12
+ * Removed extraneous dependencies, e.g. pyopenssl.
13
+ * Cleaned up requirements.txt and PipLock files.
14
+ * Added `TinyDB ` package for reading/writing `credentials.json ` file.
15
+ * Now raising `PanCloudError ` for `enforce_json ` errors.
16
+ * Removed logging `poll_all() ` method and example script.
17
+ * Now checking if `sequence_no ` is `None ` before incrementing in logging `iter_poll() ` method.
18
+ * Added event `xpoll() ` method to support iterating through events.
19
+ * Introducing `summit.py `, a command-line interface for `pancloud `.
20
+ * Added `credentials ` support to `summit.py ` to enable writing `credentials.json ` file and passing `Credentials ` with requests.
21
+ * Updated example scripts library to incorporate new credentials feature.
22
+
5
23
1.0.3 (2018-04-26)
6
24
------------------
7
25
8
26
* Overhauled and updated RTDs
9
27
* Updated `__init__.py ` to allow package-level imports
10
28
* Fixed issue where starrifying authorization token in `__repr__ ` overrode value in request header.
11
29
12
-
13
30
1.0.2 (2018-03-20)
14
31
------------------
15
32
@@ -32,5 +49,3 @@ History
32
49
------------------
33
50
34
51
* First release.
35
-
36
-
Original file line number Diff line number Diff line change 11
11
from .credentials import Credentials
12
12
13
13
__author__ = 'Palo Alto Networks'
14
- __version__ = '1.0.3 '
14
+ __version__ = '1.1.0 '
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 1.0.3
2
+ current_version = 1.1.0
3
3
commit = True
4
4
tag = True
5
5
Original file line number Diff line number Diff line change 38
38
39
39
setup (
40
40
name = 'pancloud' ,
41
- version = '1.0.3 ' ,
41
+ version = '1.1.0 ' ,
42
42
description = "Python idiomatic SDK for the Palo Alto Networks Application Framework." ,
43
43
long_description = readme + '\n \n ' + history ,
44
44
author = "Steven Serrata" ,
64
64
test_suite = 'tests' ,
65
65
tests_require = test_requirements ,
66
66
setup_requires = setup_requirements ,
67
+ scripts = [
68
+ 'bin/summit.py'
69
+ ]
67
70
)
You can’t perform that action at this time.
0 commit comments