Skip to content

Commit f517c82

Browse files
author
Johnny Tordgeman
committed
Version 1.1.0
1 parent a8dfba5 commit f517c82

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [1.1.0] - 2020-09-02
9+
### Added
10+
- Support for `monitored_specific_routes`
11+
- Support for Regex patters in sensitive/whitelist/monitored/enforced routes
12+
813
## [1.0.1] - 2019-11-10
914
### Fixed
1015
- Using hashlib pbkdf2 implementation.

README.md

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

66
[PerimeterX](http://www.perimeterx.com) Python 3 Middleware
77
=============================================================
8-
> Latest stable version: [v1.0.1](https://pypi.org/project/perimeterx-python-3-wsgi/)
8+
> Latest stable version: [v1.1.0](https://pypi.org/project/perimeterx-python-3-wsgi/)
99
1010
Table of Contents
1111
-----------------

perimeterx/px_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
EMPTY_GIF_B64 = 'R0lGODlhAQABAPAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='
2828
COLLECTOR_HOST = 'collector.perimeterx.net'
2929
FIRST_PARTY_FORWARDED_FOR = 'X-FORWARDED-FOR'
30-
MODULE_VERSION = 'Python 3 WSGI Module v1.0.1'
30+
MODULE_VERSION = 'Python 3 WSGI Module v1.1.0'
3131
API_RISK = '/api/v3/risk'
3232
PAGE_REQUESTED_ACTIVITY = 'page_requested'
3333
BLOCK_ACTIVITY = 'block'

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 = 'v1.0.1'
5+
version = 'v1.1.0'
66
setup(name='perimeterx-python-3-wsgi',
77
version=version,
88
license='MIT',

0 commit comments

Comments
 (0)