Releases: create-go-app/fiber-go-template
Releases · create-go-app/fiber-go-template
v1.2.0
New
- Add user controllers and queries
- Add JWT token controllers, queries and utils
- Add in-memory cache database Redis for store Refresh tokens
- Add repository folder with app const and global vars
- Update README
- ...and more!
TODO:
I would be very happy to have your help on the following tasks:
- Add tests to cover all functions.
PRs are welcome 👍
v1.1.1
v.1.1.0
- New (and awesome) template structure by my own "Philosophy of Golang project architecture".
- Re-think API methods for more understandable points.
- Switch to
.env
config file from YML. - Add more useful middleware and packages (JWT, Swagger, etc.).
- Add example func for DB connection (by default, PostgreSQL).
- Add folder with migration files for init DB.
- Add many comments in code.
TODO:
I would be very happy to have your help on the following tasks:
- Add tests to cover all functions.
PRs are welcome 👍
v1.0.8
- Switch from Taskfile.yml to simple
Makefile
v1.0.7
v1.0.6
v1.0.5
- Bump Fiber
v1.14.2
- Fix
gosec
issue securego/gosec/issues/512
v1.0.4
- Bump Fiber
v1.13.3
⚠ Deprecated
- Both app & group route registers will finally return the long-promised Router interface to enable chaining and passing groups to separate functions. -- gofiber/fiber#641 @ReneWerner87 @kiyonlin @Fenny @thomasvvugt @koddr
// Old signature
func (app *App) Get(path string, handlers ...Handler) *Route {}
// New signature
func (app *App) Get(path string, handlers ...Handler) Router {}
app.Routes()
will no longer be supported, to access routes from the stack, please use app.Stack()Name
is removed from the Route struct, did had no more purpose after we decided to compress our router stack in gofiber/fiber#651