-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Comparing changes
Open a pull request
base repository: gin-gonic/gin
base: v1.5.0
head repository: gin-gonic/gin
compare: v1.7.3
Commits on Nov 24, 2019
-
fix comment in
mode.go
(#2129)EnableJsonDisallowUnknownFields => EnableJsonDecoderDisallowUnknownFields
Configuration menu - View commit details
-
Copy full SHA for 70ca31b - Browse repository at this point
Copy the full SHA 70ca31bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2ee0e96 - Browse repository at this point
Copy the full SHA 2ee0e96View commit details
Commits on Nov 25, 2019
-
Configuration menu - View commit details
-
Copy full SHA for b52a1a1 - Browse repository at this point
Copy the full SHA b52a1a1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3737520 - Browse repository at this point
Copy the full SHA 3737520View commit details -
upgrade go-validator to v10 (#2149)
* upgrade go-validator to v10 * fix fmt
Configuration menu - View commit details
-
Copy full SHA for e90e2ba - Browse repository at this point
Copy the full SHA e90e2baView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3c8e29b - Browse repository at this point
Copy the full SHA 3c8e29bView commit details
Commits on Nov 26, 2019
-
Refactor redirect request in gin.go (#1970)
* Refactor redirect request in gin.go * Update http status code
Configuration menu - View commit details
-
Copy full SHA for 231ff00 - Browse repository at this point
Copy the full SHA 231ff00View commit details
Commits on Nov 28, 2019
-
chore(performance): Improve performance for adding RemoveExtraS… (#2159)
* chore: Add RemoveExtraSlash flag * fix testing Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 352d69c - Browse repository at this point
Copy the full SHA 352d69cView commit details -
use http method constant (#2155)
* use http method constant * fix typo
Configuration menu - View commit details
-
Copy full SHA for d5f12ac - Browse repository at this point
Copy the full SHA d5f12acView commit details
Commits on Nov 29, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 3957f6b - Browse repository at this point
Copy the full SHA 3957f6bView commit details
Commits on Dec 1, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 3abc96e - Browse repository at this point
Copy the full SHA 3abc96eView commit details
Commits on Dec 2, 2019
-
Add Dkron as user of Gin in the README
Configuration menu - View commit details
-
Copy full SHA for 77b8344 - Browse repository at this point
Copy the full SHA 77b8344View commit details
Commits on Dec 3, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 7c21e04 - Browse repository at this point
Copy the full SHA 7c21e04View commit details
Commits on Dec 8, 2019
-
Configuration menu - View commit details
-
Copy full SHA for c654485 - Browse repository at this point
Copy the full SHA c654485View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6e16da8 - Browse repository at this point
Copy the full SHA 6e16da8View commit details
Commits on Dec 9, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 168fa94 - Browse repository at this point
Copy the full SHA 168fa94View commit details
Commits on Dec 18, 2019
-
Fix "Custom Validators" example (#2186)
* Update fixed error code from merged commit According to [this](gin-gonic/examples@874dcfa) merged commit. * Fixed incorrect testing date. Original testing date incompatible demo require, can't get expect result. check_in date need NOT AFTER check_out date.
Configuration menu - View commit details
-
Copy full SHA for aee83e0 - Browse repository at this point
Copy the full SHA aee83e0View commit details -
Configuration menu - View commit details
-
Copy full SHA for d6143d8 - Browse repository at this point
Copy the full SHA d6143d8View commit details -
Update to currently output (#2188)
Excuse me, I forgot change output in #2186
Configuration menu - View commit details
-
Copy full SHA for 1b480ed - Browse repository at this point
Copy the full SHA 1b480edView commit details
Commits on Dec 19, 2019
-
Configuration menu - View commit details
-
Copy full SHA for cc14a77 - Browse repository at this point
Copy the full SHA cc14a77View commit details
Commits on Dec 20, 2019
-
Update validator to v10 (#2190)
Passed my manual test, output nothing different.
Configuration menu - View commit details
-
Copy full SHA for 9b3477e - Browse repository at this point
Copy the full SHA 9b3477eView commit details
Commits on Dec 30, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 59ab588 - Browse repository at this point
Copy the full SHA 59ab588View commit details
Commits on Jan 7, 2020
-
Configuration menu - View commit details
-
Copy full SHA for b8a7b6d - Browse repository at this point
Copy the full SHA b8a7b6dView commit details -
Add build tag nomsgpack (#1852)
* add build tag nomsgpack * Update copyright * Update copyright
Configuration menu - View commit details
-
Copy full SHA for fd8a65b - Browse repository at this point
Copy the full SHA fd8a65bView commit details -
Reuse bytes when cleaning the URL paths (#2179)
* path: use stack buffer in CleanPath to avoid allocs in common case Sync from julienschmidt/httprouter@8222db1 * path: sync test code from httprouter * path: update path_test.go to the latest code Co-authored-by: Bo-Yi Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 025950a - Browse repository at this point
Copy the full SHA 025950aView commit details -
Update docs on Context.Done(), Context.Deadline() and Context.Err() (#…
…2196) Co-authored-by: Bo-Yi Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 424e968 - Browse repository at this point
Copy the full SHA 424e968View commit details
Commits on Jan 16, 2020
-
Configuration menu - View commit details
-
Copy full SHA for ace6e4c - Browse repository at this point
Copy the full SHA ace6e4cView commit details
Commits on Jan 17, 2020
-
Use zero-copy approach to convert types between string and byte… (#2206)
* Use zero-copy approach to convert types between string and byte slice * Rename argument to a eligible one Benchmark: BenchmarkBytesConvBytesToStrRaw-4 21003800 70.9 ns/op 96 B/op 1 allocs/op BenchmarkBytesConvBytesToStr-4 1000000000 0.333 ns/op 0 B/op 0 allocs/op BenchmarkBytesConvStrToBytesRaw-4 18478059 59.3 ns/op 96 B/op 1 allocs/op BenchmarkBytesConvStrToBytes-4 1000000000 0.373 ns/op 0 B/op 0 allocs/op Co-authored-by: Bo-Yi Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 982daeb - Browse repository at this point
Copy the full SHA 982daebView commit details
Commits on Jan 20, 2020
-
Added support for SameSite cookie flag (#1615)
* Added support for SameSite cookie flag * fixed tests. * Update context.go * Update context_test.go * Update context_test.go Co-authored-by: thinkerou <thinkerou@gmail.com> Co-authored-by: Bo-Yi Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for f94406a - Browse repository at this point
Copy the full SHA f94406aView commit details
Commits on Jan 21, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 69a202d - Browse repository at this point
Copy the full SHA 69a202dView commit details
Commits on Jan 22, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 07c0f05 - Browse repository at this point
Copy the full SHA 07c0f05View commit details
Commits on Jan 28, 2020
-
docs(path): improve comments (#2223)
* chore(path): improve comments copy from julienschmidt/httprouter@15782a7 * fix typo Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 64e6a76 - Browse repository at this point
Copy the full SHA 64e6a76View commit details -
tree: remove duplicate assignment (#2222)
copy from julienschmidt/httprouter@cfa3cb7 Co-authored-by: thinkerou <thinkerou@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 0e4d8ea - Browse repository at this point
Copy the full SHA 0e4d8eaView commit details
Commits on Feb 6, 2020
-
Co-authored-by: thinkerou <thinkerou@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 731c827 - Browse repository at this point
Copy the full SHA 731c827View commit details
Commits on Feb 9, 2020
-
Configuration menu - View commit details
-
Copy full SHA for acac7b1 - Browse repository at this point
Copy the full SHA acac7b1View commit details
Commits on Feb 13, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 0d12918 - Browse repository at this point
Copy the full SHA 0d12918View commit details
Commits on Feb 21, 2020
-
docs(badge): add todo badge (#2240)
fix #2236 Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 863ad2d - Browse repository at this point
Copy the full SHA 863ad2dView commit details -
Use json marshall in context json to fix breaking new line issue. Fixes
Configuration menu - View commit details
-
Copy full SHA for 5f56109 - Browse repository at this point
Copy the full SHA 5f56109View commit details
Commits on Feb 26, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 094b3fd - Browse repository at this point
Copy the full SHA 094b3fdView commit details
Commits on Mar 7, 2020
-
fix accept incoming network connections (#2216)
kebo authoredMar 7, 2020 Configuration menu - View commit details
-
Copy full SHA for 2ff2b19 - Browse repository at this point
Copy the full SHA 2ff2b19View commit details -
* Context.FileFromFS added * Context File and FileFromFS examples at README Co-authored-by: Bo-Yi Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 1d055af - Browse repository at this point
Copy the full SHA 1d055afView commit details -
removing log injection (#2277)
Co-authored-by: thinkerou <thinkerou@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for a71af9c - Browse repository at this point
Copy the full SHA a71af9cView commit details
Commits on Mar 16, 2020
-
* do not set unix socket permissions. Cleanup unix socket. * removed useless error checking
Configuration menu - View commit details
-
Copy full SHA for 67008be - Browse repository at this point
Copy the full SHA 67008beView commit details -
Add mutex for protect Context.Keys map (#1391)
* Add mutex for protect Context.Keys map * Fix tests Co-authored-by: Nikolay Tolkachov <nik.tolkachov@gmail.com> Co-authored-by: Bo-Yi Wu <appleboy.tw@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 73ccfea - Browse repository at this point
Copy the full SHA 73ccfeaView commit details
Commits on Mar 22, 2020
-
Configuration menu - View commit details
-
Copy full SHA for c4fd248 - Browse repository at this point
Copy the full SHA c4fd248View commit details -
Configuration menu - View commit details
-
Copy full SHA for a412209 - Browse repository at this point
Copy the full SHA a412209View commit details
Commits on Mar 23, 2020
-
Configuration menu - View commit details
-
Copy full SHA for ae88831 - Browse repository at this point
Copy the full SHA ae88831View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1bebd9a - Browse repository at this point
Copy the full SHA 1bebd9aView commit details -
bump to v1.6.1 version (#2295)
Co-authored-by: thinkerou <thinkerou@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 07a6818 - Browse repository at this point
Copy the full SHA 07a6818View commit details
Commits on Mar 24, 2020
-
* doc: add pr link * doc: add v1.6.1 release note
Configuration menu - View commit details
-
Copy full SHA for bd5ee1a - Browse repository at this point
Copy the full SHA bd5ee1aView commit details
There are no files selected for viewing