Skip to content

Commit 4aa714d

Browse files
committed
0.21.0
1 parent a95fe2d commit 4aa714d

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed

HISTORY.rst

+39
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,45 @@
11
Release History
22
===============
33

4+
0.21.0 (2023-01-13)
5+
-------------------
6+
7+
- pan.wfapi: Add C2 verdict.
8+
9+
- pan.wfapi, pan.rc: Add agent argument to constructor. Agent is used
10+
to specify the API key type for Prisma API keys. Can be specified
11+
in .panrc; no command line argument at this time.
12+
13+
- pan.wfapi: Remove handling for no ssl.CertificateError.
14+
15+
- pan.wfapi: Remove handling of Python 2.7 HTTP reason.
16+
17+
- pan.wfapi: Remove checks for Python version around ssl module.
18+
19+
- pan.wfapi, panwfapi.py: Add support for url parameter to report()
20+
and verdict().
21+
22+
- pan.wfapi: Remove old check for ssl.SSLContext().
23+
24+
- Fix some pycodestyle issues.
25+
26+
- pan.wfapi, panwfapi.py: Add support for the get URL web artifacts
27+
API request.
28+
29+
- Add unit tests for the WildFire API.
30+
31+
- Use 11.0 documentation links.
32+
33+
- pan.xapi: Modified version of
34+
https://github.com/kevinsteves/pan-python/pull/47
35+
from Justin Bradfield.
36+
37+
1. Use urlopen() as a context manager
38+
2. Immediately read() response
39+
3. Set object 'pan_body' attribute to read() result
40+
41+
- panxapi.py: IOError merged into OSError as of Python 3.3.
42+
443
0.20.0 (2022-08-31)
544
-------------------
645

lib/pan/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
import logging
1818

19-
__version__ = '0.20.0'
19+
__version__ = '0.21.0'
2020

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

0 commit comments

Comments
 (0)