From 0137294a2c7cc10465935e39d5232119d47f6c77 Mon Sep 17 00:00:00 2001 From: debugtalk Date: Mon, 6 Jan 2020 14:27:03 +0800 Subject: [PATCH] fix: HTTP method missed "CONNECT", "TRACE" --- docs/CHANGELOG.md | 6 ++++++ httprunner/__init__.py | 2 +- httprunner/loader/schemas/common.schema.json | 4 +++- pyproject.toml | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 995fc35a..7c3cfe82 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,11 @@ # Release History +## 2.5.5 (2020-01-06) + +**Fixed** + +- fix: HTTP method missed "CONNECT", "TRACE" + ## 2.5.4 (2020-01-03) **Added** diff --git a/httprunner/__init__.py b/httprunner/__init__.py index 748f3812..97bfb536 100644 --- a/httprunner/__init__.py +++ b/httprunner/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.5.4" +__version__ = "2.5.5" __description__ = "One-stop solution for HTTP(S) testing." __all__ = ["__version__", "__description__"] diff --git a/httprunner/loader/schemas/common.schema.json b/httprunner/loader/schemas/common.schema.json index 67a33961..8986240c 100644 --- a/httprunner/loader/schemas/common.schema.json +++ b/httprunner/loader/schemas/common.schema.json @@ -136,7 +136,9 @@ "HEAD", "PUT", "PATCH", - "DELETE" + "DELETE", + "CONNECT", + "TRACE" ] }, "url": { diff --git a/pyproject.toml b/pyproject.toml index 2b8d9212..bdcec61b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "httprunner" -version = "2.5.4" +version = "2.5.5" description = "One-stop solution for HTTP(S) testing." license = "Apache-2.0" readme = "README.md"