Skip to content

Releases: create-go-app/fiber-go-template

v1.2.0

27 Mar 10:16
e56b4e1
Compare
Choose a tag to compare

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

23 Mar 13:46
a3057c6
Compare
Choose a tag to compare
  • Merged PRs from @hasahmad (thanks!)
  • Update README

TODO:

I would be very happy to have your help on the following tasks:

  • Add tests to cover all functions.

PRs are welcome 👍

v.1.1.0

05 Mar 08:37
11d5613
Compare
Choose a tag to compare
  • 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

26 Feb 05:54
4fdd655
Compare
Choose a tag to compare

v1.0.7

08 Feb 12:28
7b668c1
Compare
Choose a tag to compare
  • Upgrade Fiber v2.5.0

v1.0.6

04 Dec 06:28
Compare
Choose a tag to compare
  • Upgrade Fiber v2.2.3

v1.0.5

18 Aug 10:47
Compare
Choose a tag to compare

v1.0.4

22 Jul 08:11
Compare
Choose a tag to compare
  • Bump Fiber v1.13.3

Deprecated

// 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

v1.0.3

19 Jul 12:16
da0783c
Compare
Choose a tag to compare
  • Bump Fiber v1.13.1

v1.0.2

18 Jul 15:08
Compare
Choose a tag to compare
  • Fix tests
  • Bump Fiber v1.13.0