mirror of
https://github.com/httprunner/httprunner.git
synced 2026-09-04 23:16:57 +08:00
Merge pull request #1091 from httprunner/feat-add-brotli
fix: decode brotli encoding
This commit is contained in:
@@ -1,5 +1,11 @@
|
|||||||
# Release History
|
# Release History
|
||||||
|
|
||||||
|
## 3.1.5 (2021-06-27)
|
||||||
|
|
||||||
|
**Fixed**
|
||||||
|
|
||||||
|
- fix: decode brotli encoding
|
||||||
|
|
||||||
## 3.1.4 (2020-07-30)
|
## 3.1.4 (2020-07-30)
|
||||||
|
|
||||||
**Changed**
|
**Changed**
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
__version__ = "3.1.4"
|
__version__ = "3.1.5"
|
||||||
__description__ = "One-stop solution for HTTP(S) testing."
|
__description__ = "One-stop solution for HTTP(S) testing."
|
||||||
|
|
||||||
# import firstly for monkey patch if needed
|
# import firstly for monkey patch if needed
|
||||||
|
|||||||
Generated
+270
-260
File diff suppressed because it is too large
Load Diff
+2
-1
@@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "httprunner"
|
name = "httprunner"
|
||||||
version = "3.1.4"
|
version = "3.1.5"
|
||||||
description = "One-stop solution for HTTP(S) testing."
|
description = "One-stop solution for HTTP(S) testing."
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
@@ -43,6 +43,7 @@ allure-pytest = {version = "^2.8.16", optional = true}
|
|||||||
requests-toolbelt = {version = "^0.9.1", optional = true}
|
requests-toolbelt = {version = "^0.9.1", optional = true}
|
||||||
filetype = {version = "^1.0.7", optional = true}
|
filetype = {version = "^1.0.7", optional = true}
|
||||||
locust = {version = "^1.0.3", optional = true}
|
locust = {version = "^1.0.3", optional = true}
|
||||||
|
Brotli = "^1.0.9"
|
||||||
|
|
||||||
[tool.poetry.extras]
|
[tool.poetry.extras]
|
||||||
allure = ["allure-pytest"] # pip install "httprunner[allure]", poetry install -E allure
|
allure = ["allure-pytest"] # pip install "httprunner[allure]", poetry install -E allure
|
||||||
|
|||||||
Reference in New Issue
Block a user