fix: HTTP method missed "CONNECT", "TRACE"

This commit is contained in:
debugtalk
2020-01-06 14:27:03 +08:00
parent b898d62608
commit 0137294a2c
4 changed files with 11 additions and 3 deletions
+6
View File
@@ -1,5 +1,11 @@
# Release History # Release History
## 2.5.5 (2020-01-06)
**Fixed**
- fix: HTTP method missed "CONNECT", "TRACE"
## 2.5.4 (2020-01-03) ## 2.5.4 (2020-01-03)
**Added** **Added**
+1 -1
View File
@@ -1,4 +1,4 @@
__version__ = "2.5.4" __version__ = "2.5.5"
__description__ = "One-stop solution for HTTP(S) testing." __description__ = "One-stop solution for HTTP(S) testing."
__all__ = ["__version__", "__description__"] __all__ = ["__version__", "__description__"]
+3 -1
View File
@@ -136,7 +136,9 @@
"HEAD", "HEAD",
"PUT", "PUT",
"PATCH", "PATCH",
"DELETE" "DELETE",
"CONNECT",
"TRACE"
] ]
}, },
"url": { "url": {
+1 -1
View File
@@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "httprunner" name = "httprunner"
version = "2.5.4" version = "2.5.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"