Skip to content

Commit

Permalink
0.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsteves committed Jan 13, 2023
1 parent a95fe2d commit 4aa714d
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
39 changes: 39 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,45 @@
Release History
===============

0.21.0 (2023-01-13)
-------------------

- pan.wfapi: Add C2 verdict.

- pan.wfapi, pan.rc: Add agent argument to constructor. Agent is used
to specify the API key type for Prisma API keys. Can be specified
in .panrc; no command line argument at this time.

- pan.wfapi: Remove handling for no ssl.CertificateError.

- pan.wfapi: Remove handling of Python 2.7 HTTP reason.

- pan.wfapi: Remove checks for Python version around ssl module.

- pan.wfapi, panwfapi.py: Add support for url parameter to report()
and verdict().

- pan.wfapi: Remove old check for ssl.SSLContext().

- Fix some pycodestyle issues.

- pan.wfapi, panwfapi.py: Add support for the get URL web artifacts
API request.

- Add unit tests for the WildFire API.

- Use 11.0 documentation links.

- pan.xapi: Modified version of
https://github.com/kevinsteves/pan-python/pull/47
from Justin Bradfield.

1. Use urlopen() as a context manager
2. Immediately read() response
3. Set object 'pan_body' attribute to read() result

- panxapi.py: IOError merged into OSError as of Python 3.3.

0.20.0 (2022-08-31)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion lib/pan/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import logging

__version__ = '0.20.0'
__version__ = '0.21.0'

DEBUG1 = logging.DEBUG
DEBUG2 = DEBUG1 - 1
Expand Down

0 comments on commit 4aa714d

Please sign in to comment.