Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
gf_windows_amd64.exe | 2024-12-11 | 41.3 MB | |
gf_openbsd_amd64 | 2024-12-11 | 40.3 MB | |
gf_netbsd_amd64 | 2024-12-11 | 40.3 MB | |
gf_linux_ppc64le | 2024-12-11 | 39.8 MB | |
gf_linux_arm64 | 2024-12-11 | 39.0 MB | |
gf_linux_arm | 2024-12-11 | 35.5 MB | |
gf_linux_amd64 | 2024-12-11 | 40.4 MB | |
gf_linux_386 | 2024-12-11 | 35.9 MB | |
gf_freebsd_arm | 2024-12-11 | 35.5 MB | |
gf_freebsd_amd64 | 2024-12-11 | 40.3 MB | |
gf_freebsd_386 | 2024-12-11 | 35.6 MB | |
gf_darwin_arm64 | 2024-12-11 | 39.4 MB | |
gf_darwin_amd64 | 2024-12-11 | 40.7 MB | |
GoFrame Release v2.8.2 source code.tar.gz | 2024-12-11 | 2.1 MB | |
GoFrame Release v2.8.2 source code.zip | 2024-12-11 | 3.3 MB | |
README.md | 2024-12-11 | 4.8 kB | |
Totals: 16 Items | 509.3 MB | 0 |
What's Changed
Feature
- feat(cmd/gf): add
typeMapping
andfieldMapping
feature support for commandgf gen genpbentity
by @zishang520 in https://github.com/gogf/gf/pull/3970 - feat(cmd/gf): add interface functions generating for embedded struct of logic struct in command
gen service
by @joy999 in https://github.com/gogf/gf/pull/3802 - feat(contrib/drivers/pgsql): add array type
varchar[]
andtext[]
converting to Go[]string
support by @ninjashixuan in https://github.com/gogf/gf/pull/4000 - feat(contrib/registry/consul): add consul registry support by @gqcn in https://github.com/gogf/gf/pull/4016
- feat(database/gdb): add
WhereExists/WhereNotExists
by @gqcn in https://github.com/gogf/gf/pull/4015 - feat(database/gdb): add sharding feature for schema and table by @gqcn in https://github.com/gogf/gf/pull/4014
- feat(database/gdb): add transaction propagation&isolation level&readonly features by @gqcn in https://github.com/gogf/gf/pull/4013
- feat(errors/gerror): add
As
support by @gqcn in https://github.com/gogf/gf/pull/4002 - feat(net/ghttp): add middleware
MiddlewareGzip
for compressing response content using gzip by @gqcn in https://github.com/gogf/gf/pull/4008 - feat(os/gsession): add
RegenerateId/MustRegenerateId
support by @gqcn in https://github.com/gogf/gf/pull/4012
Enhancement
- feat(gctx): rename and remove gctx functions to prevent ambiguity by @mingzaily in https://github.com/gogf/gf/pull/3892
- feat(net/gipv4): add enhanced the conversion between uint32 and string by @oldme-git in https://github.com/gogf/gf/pull/3988
- feat(net/goai): support OpenAPIv3.1 in description field for schema object by @wlynxg in https://github.com/gogf/gf/pull/3978
- refactor(cmd/gf): change default src value to
api
, path tointernal/packed/packed_enums.go
for commandgen enums
by @gqcn in https://github.com/gogf/gf/pull/3996
BugFix
- fix(cmd/gf): custom tags repeatedly added using command
gf gen pb
with-a
option by @wangle201210 in https://github.com/gogf/gf/pull/3966 - fix(contrib/drivers/pgsql): add unix socket connection support by @gqcn in https://github.com/gogf/gf/pull/4028
- fix(contrib/registry/consul): update dependence of gf to v2.8.2 with relative path specified by @gqcn in https://github.com/gogf/gf/pull/4029
- fix(contrib/registry/etcd): remove default configuration of
AutoSyncInterval
by @gqcn in https://github.com/gogf/gf/pull/4027 - fix(database/gdb): CRUD typos by @huty1998 in https://github.com/gogf/gf/pull/4017
- fix(database/gdb): issue where the
Count/Value/Array
query logic was incompatible with the old version when users extended the returned result fields using theSelect
Hook by @gqcn in https://github.com/gogf/gf/pull/3995 - fix(database/gdb): move
Raw
parameter from args to sql statement before committed to db driver by @gqcn in https://github.com/gogf/gf/pull/3997 - fix(database/gdb): orm tag from embedded struct is missing in
with
feature by @gqcn in https://github.com/gogf/gf/pull/4011 - fix(net/ghttp): invalid CORS AllowOrigin parsing from referer by @yzy613 in https://github.com/gogf/gf/pull/3990
- fix(net/ghttp): occasional ci failed by unit testing cases using
gctp.GetFreePort
by @gqcn in https://github.com/gogf/gf/pull/3982 - fix(util/gpage): code scanning alert no. 9: Potentially unsafe quoting by @houseme in https://github.com/gogf/gf/pull/3992
- fix(util/gutil): code scanning alert no. 17: Potentially unsafe quoting by @houseme in https://github.com/gogf/gf/pull/3993
- fix(utils/gvalid): missing pkg path for enums pointer by @0x7a7a in https://github.com/gogf/gf/pull/3983
Chore
- feat: README updates by @gqcn in https://github.com/gogf/gf/pull/3974
- chore: add example for openapi/swagger authentication by @wangle201210 in https://github.com/gogf/gf/pull/4004
- chore: fix some function names in comment by @longxiangqiao in https://github.com/gogf/gf/pull/3967
- chore: improve golangci-lint.yml, upgrade dependencies, and optimize code and comments by @houseme in https://github.com/gogf/gf/pull/4025
- ci(gci/import): improve golangci.yml and add gci linter by @houseme in https://github.com/gogf/gf/pull/4010
- docs(cmd/gen): improve comments for command
gen dao
by @houseme in https://github.com/gogf/gf/pull/4007 - test(drivers/mssql): add unit testing cases of transaction by @oldme-git in https://github.com/gogf/gf/pull/3818
New Contributors
- @0x7a7a made their first contribution in https://github.com/gogf/gf/pull/3983
- @longxiangqiao made their first contribution in https://github.com/gogf/gf/pull/3967
- @huty1998 made their first contribution in https://github.com/gogf/gf/pull/4017
Full Changelog: https://github.com/gogf/gf/compare/v2.8.1...v2.8.2