Updates CHANGELOG

This commit is contained in:
Manu Mtz-Almeida 2015-05-31 04:33:47 +02:00
parent 709fde85d1
commit 86824a640c
2 changed files with 9 additions and 1 deletions

View File

@ -3,6 +3,14 @@
###Gin 1.0rc2 (...) ###Gin 1.0rc2 (...)
- [PERFORMANCE] Fast path for writting Content-Type. - [PERFORMANCE] Fast path for writting Content-Type.
- [PERFORMANCE] Much faster 404 routing
- [PERFORMANCE] Allocation optimizations
- [PERFORMANCE] Faster root tree lookup
- [NEW] Benchmarks suite
- [FIX] Binding multipart form
- [FIX] Crash when binding non struct object in Context.
- [FIX] RunTLS() implementation
- [FIX] Logger() unit tests
- [FIX] Better approach to avoid directory listing in StaticFS() - [FIX] Better approach to avoid directory listing in StaticFS()
- [FIX] Context.ClientIP() always returns the IP with trimmed spaces. - [FIX] Context.ClientIP() always returns the IP with trimmed spaces.
- [FIX] Better warning when running in debug mode. - [FIX] Better warning when running in debug mode.

2
gin.go
View File

@ -74,7 +74,7 @@ func New() *Engine {
RedirectTrailingSlash: true, RedirectTrailingSlash: true,
RedirectFixedPath: false, RedirectFixedPath: false,
HandleMethodNotAllowed: false, HandleMethodNotAllowed: false,
trees: make(methodTrees, 0, 6), trees: make(methodTrees, 0, 5),
} }
engine.RouterGroup.engine = engine engine.RouterGroup.engine = engine
engine.pool.New = func() interface{} { engine.pool.New = func() interface{} {