Skip to content

Commit 6c8a903

Browse files
author
pxjohnny
committed
Version 3.2.0
1 parent 0ff9c85 commit 6c8a903

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.2.0](https://github.com/PerimeterX/perimeterx-python-wsgi) (2019-03-17)
4+
- Added support for enforced_specific_routes
5+
- Added .json to the list of whitelisted extensions
6+
37
## [v3.1.0](https://github.com/PerimeterX/perimeterx-python-wsgi) (2019-02-26)
48
- Refactor of px_logger to use native python logger
59
- Added support for bypass monitor mode header

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.1.0](https://pypi.org/project/perimeterx-python-wsgi/)
7+
> Latest stable version: [v3.2.0](https://pypi.org/project/perimeterx-python-wsgi/)
88
9-
> Latest GAE stable version: [v3.1.0](https://pypi.org/project/perimeterx-python-wsgi-gae/)
9+
> Latest GAE stable version: [v3.2.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.1.0'
33+
MODULE_VERSION = 'Python WSGI Module{} v3.2.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.1.0'
5+
version = 'v3.2.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.1.0'
5+
version = 'v3.2.0'
66
setup(name='perimeterx-python-wsgi',
77
version=version,
88
license='MIT',

0 commit comments

Comments
 (0)