From 24d2e4b264bf03df98a64438ea90c383f299beb4 Mon Sep 17 00:00:00 2001 From: Vladimir Shushlin Date: Fri, 25 Dec 2020 12:11:08 +0300 Subject: Allow DELETE HTTP method For some reason I forgot it the last time --- CHANGELOG | 4 ++++ VERSION | 2 +- internal/rejectmethods/middleware.go | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index cf06a685..878d285f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +v 1.30.2 + +- Allow DELETE HTTP method + v 1.30.1 - Reject requests with unknown HTTP methods diff --git a/VERSION b/VERSION index 7f3c3aff..d1eaa3ba 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.30.1 +1.30.2 diff --git a/internal/rejectmethods/middleware.go b/internal/rejectmethods/middleware.go index e76fc383..e78a0ce5 100644 --- a/internal/rejectmethods/middleware.go +++ b/internal/rejectmethods/middleware.go @@ -12,6 +12,7 @@ var acceptedMethods = map[string]bool{ http.MethodPost: true, http.MethodPut: true, http.MethodPatch: true, + http.MethodDelete: true, http.MethodConnect: true, http.MethodOptions: true, http.MethodTrace: true, -- cgit v1.2.3