Skip to content

Commit 96e6613

Browse files
author
pxjohnny
committed
Version 3.1.0
1 parent dea5604 commit 96e6613

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## [v3.1.0](https://github.com/PerimeterX/perimeterx-python-wsgi) (2019-02-26)
4+
- Refactor of px_logger to use native python logger
5+
- Added support for bypass monitor mode header
6+
37
## [v3.0.2](https://github.com/PerimeterX/perimeterx-python-wsgi) (2019-02-13)
48
- page requested pass_reason alignment
59
- better error handling for http errors

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
[PerimeterX](http://www.perimeterx.com) Python Middleware
66
=============================================================
7-
> Latest stable version: [v3.0.2](https://pypi.org/project/perimeterx-python-wsgi/)
7+
> Latest stable version: [v3.1.0](https://pypi.org/project/perimeterx-python-wsgi/)
88
9-
> Latest GAE stable version: [v3.0.2](https://pypi.org/project/perimeterx-python-wsgi-gae/)
9+
> Latest GAE stable version: [v3.1.0](https://pypi.org/project/perimeterx-python-wsgi-gae/)
1010
1111
Table of Contents
1212
-----------------

perimeterx/px_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
EMPTY_GIF_B64 = 'R0lGODlhAQABAPAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='
3131
COLLECTOR_HOST = 'collector.perimeterx.net'
3232
FIRST_PARTY_FORWARDED_FOR = 'X-FORWARDED-FOR'
33-
MODULE_VERSION = 'Python WSGI Module{} v3.0.2'
33+
MODULE_VERSION = 'Python WSGI Module{} v3.1.0'
3434
API_RISK = '/api/v3/risk'
3535
PAGE_REQUESTED_ACTIVITY = 'page_requested'
3636
BLOCK_ACTIVITY = 'block'

setup-gae.py

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

33
from setuptools import setup, find_packages
44

5-
version = 'v3.0.2'
5+
version = 'v3.1.0'
66
setup(name='perimeterx-python-wsgi-gae',
77
version=version,
88
license='MIT',

setup.py

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

33
from setuptools import setup, find_packages
44

5-
version = 'v3.0.2'
5+
version = 'v3.1.0'
66
setup(name='perimeterx-python-wsgi',
77
version=version,
88
license='MIT',

0 commit comments

Comments
 (0)