Skip to content

Commit d496f64

Browse files
authored
bump to v1.7.0 version (#2672)
1 parent bfc8ca2 commit d496f64

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

CHANGELOG.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,36 @@
22

33
## Gin v1.7.0
44

5+
### BUGFIXES
6+
7+
* fix compile error from [#2572](https://github.com/gin-gonic/gin/pull/2572) ([#2600](https://github.com/gin-gonic/gin/pull/2600))
8+
* fix: print headers without Authorization header on broken pipe ([#2528](https://github.com/gin-gonic/gin/pull/2528))
9+
* fix(tree): reassign fullpath when register new node ([#2366](https://github.com/gin-gonic/gin/pull/2366))
10+
511
### ENHANCEMENTS
612

7-
* Support params and exact routes without creating conflicts [#2663](https://github.com/gin-gonic/gin/pull/2663)
13+
* Support params and exact routes without creating conflicts ([#2663](https://github.com/gin-gonic/gin/pull/2663))
14+
* chore: improve render string performance ([#2365](https://github.com/gin-gonic/gin/pull/2365))
15+
* Sync route tree to httprouter latest code ([#2368](https://github.com/gin-gonic/gin/pull/2368))
16+
* chore: rename getQueryCache/getFormCache to initQueryCache/initFormCa ([#2375](https://github.com/gin-gonic/gin/pull/2375))
17+
* chore(performance): improve countParams ([#2378](https://github.com/gin-gonic/gin/pull/2378))
18+
* Remove some functions that have the same effect as the bytes package ([#2387](https://github.com/gin-gonic/gin/pull/2387))
19+
* update:SetMode function ([#2321](https://github.com/gin-gonic/gin/pull/2321))
20+
* remove a unused type SecureJSONPrefix ([#2391](https://github.com/gin-gonic/gin/pull/2391))
21+
* Add a redirect sample for POST method ([#2389](https://github.com/gin-gonic/gin/pull/2389))
22+
* Add CustomRecovery builtin middleware ([#2322](https://github.com/gin-gonic/gin/pull/2322))
23+
* binding: avoid 2038 problem on 32-bit architectures ([#2450](https://github.com/gin-gonic/gin/pull/2450))
24+
* Prevent panic in Context.GetQuery() when there is no Request ([#2412](https://github.com/gin-gonic/gin/pull/2412))
25+
* Add GetUint and GetUint64 method on gin.context ([#2487](https://github.com/gin-gonic/gin/pull/2487))
26+
* update content-disposition header to MIME-style ([#2512](https://github.com/gin-gonic/gin/pull/2512))
27+
* reduce allocs and improve the render `WriteString` ([#2508](https://github.com/gin-gonic/gin/pull/2508))
28+
* implement ".Unwrap() error" on Error type ([#2525](https://github.com/gin-gonic/gin/pull/2525)) ([#2526](https://github.com/gin-gonic/gin/pull/2526))
29+
* Allow bind with a map[string]string ([#2484](https://github.com/gin-gonic/gin/pull/2484))
30+
* chore: update tree ([#2371](https://github.com/gin-gonic/gin/pull/2371))
31+
* Support binding for slice/array obj [Rewrite] ([#2302](https://github.com/gin-gonic/gin/pull/2302))
32+
* basic auth: fix timing oracle ([#2609](https://github.com/gin-gonic/gin/pull/2609))
33+
* Add mixed param and non-param paths (port of httprouter[#329](https://github.com/gin-gonic/gin/pull/329)) ([#2663](https://github.com/gin-gonic/gin/pull/2663))
34+
* feat(engine): add trustedproxies and remoteIP ([#2632](https://github.com/gin-gonic/gin/pull/2632))
835

936
## Gin v1.6.3
1037

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
package gin
66

77
// Version is the current gin framework's version.
8-
const Version = "v1.6.3"
8+
const Version = "v1.7.0"

0 commit comments

Comments
 (0)