Skip to content

Commit 27b5253

Browse files
alexaandruvishr
authored andcommitted
Release 3.3.0:
Enhancements: Implemented Response#After() Dynamically add/remove proxy targets Rewrite rules for proxy middleware Add ability to extract key from a form field Implemented rewrite middleware Adds a separate flag for the 'http/https server started on' message (#1043) Applied a little DRY to the redirect middleware (#1053) and tests (#1055) Simplify dep fetching (#1062) Add custom time stamp format #1046 (#1066) Update property name & default value & comment about custom logger Add X-Requested-With header constant Return error of context.File in c.contentDisposition Updated deps Updated README.md Fixes: Fixed Response#Before() Fixed #990 Fix href url from armor to echo (#1051) Fixed #1054 Fixed #1052, dropped param alias feature Avoid redirect loop in HTTPSRedirect middleware (#1058) Fix deferring body close in middleware/compress test (#1063) Cleanup code (#1061) FIX - We must close gzip.Reader, only if no error (#1069) Fix formatting (#1071) Can be a fix for auto TLS
1 parent f5491fd commit 27b5253

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,7 @@ test:
1111
go test -race -coverprofile=profile.out -covermode=atomic $$d || exit 1; \
1212
[ -f profile.out ] && cat profile.out >> coverage.txt && rm profile.out; \
1313
done
14+
15+
tag:
16+
@git tag `grep -P '^\tversion = ' echo.go|cut -f2 -d'"'`
17+
@git tag|grep -v ^v

echo.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ const (
215215
)
216216

217217
const (
218-
version = "3.2.6"
218+
version = "3.3.0"
219219
website = "https://echo.labstack.com"
220220
// http://patorjk.com/software/taag/#p=display&f=Small%20Slant&t=Echo
221221
banner = `

0 commit comments

Comments
 (0)