Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit cf5d238

Browse files
authored
Release 1.3.0 (#91)
* Bump version: 1.2.3 → 1.3.0 * Update HISTORY.rst
1 parent 5ecdda3 commit cf5d238

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

HISTORY.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,26 @@
22
History
33
=======
44

5+
1.3.0 (2018-08-04)
6+
------------------
7+
8+
* Added support for custom read/write credentials path.
9+
* `TinyDBStore` `fetch_credential()` now returns `None` instead of empty `str`.
10+
* Fixed bug that caused `_resolve_credential()` to be executed an inefficient number of times.
11+
* Now updating `HTTPClient` headers instead of overriding them which previously broke HTTP persistence.
12+
* Added JMESPath `isotime()` function to `summit.py` which prints epoch.
13+
* Added argument to `EventService` `xpoll()` method to support sleeping between polls.
14+
* Added `PAN_` prefix to envars to avoid name collisions.
15+
* Fixed bug when `R['R1_obj']['LoggingService.query']` is None and allow json=None case with special case of --end -1 which will not set a default end of now.
16+
* Fixed bug that nulled out credentials if an error occurred during a `fetch_tokens()` or `refresh()` operation.
17+
* Now enforcing strict credential resolution. Previous behavior allowed for merging credentials from different providers.
18+
* Added support for caching `refresh_token` to support rolling.
19+
* Added support for writing logs to `summit.py`.
20+
* Switch from using `data` param to `json` param in client/service methods.
21+
* Now defaulting `R1` to `None` so don't send body unless specified.
22+
* Now printing request headers and body at debug level 3 in `summit.py`.
23+
* Added enhancements to `summit.py` for specifying `startTime` and `endTime`.
24+
525
1.2.3 (2018-06-21)
626
------------------
727

pancloud/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""Main package for pancloud."""
44

55
__author__ = 'Palo Alto Networks'
6-
__version__ = '1.2.3'
6+
__version__ = '1.3.0'
77

88
from .directorysync import DirectorySyncService
99
from .event import EventService

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.2.3
2+
current_version = 1.3.0
33
commit = True
44
tag = True
55

setup.py

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

2525
setup(
2626
name='pancloud',
27-
version='1.2.3',
27+
version='1.3.0',
2828
description="Python idiomatic SDK for the Palo Alto Networks Application Framework.",
2929
long_description=readme + '\n\n' + history,
3030
author="Steven Serrata",

0 commit comments

Comments
 (0)