forked from mirror/gin
Updates CHANGELOG
This commit is contained in:
parent
709fde85d1
commit
86824a640c
|
@ -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
2
gin.go
|
@ -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{} {
|
||||||
|
|
Loading…
Reference in New Issue