Releases: GoAdminGroup/go-admin
Releases · GoAdminGroup/go-admin
v1.0.7
BUG Fixes
- form radio display error, default value can not be displayed in the form
- error when save form empty value
- tree component display url error, missing url prefix
- chartjs error
- showTables method of sqlite
Improvement
- add xss filter helper function
- add unit tests for modules
- improve adm, recognize the id primary key and add limit
v1.0.6
v1.0.5
Improvement
- fixed dependencies
Notice
GoAdmin has moved the database drivers dependencies away. So you should import the drivers in the main.go yourself.
GoAdmin wrapped some drivers to make it easier to remember the import path.
import (
_ "github.com/GoAdminGroup/go-admin/modules/db/drivers/mysql"
_ "github.com/GoAdminGroup/go-admin/modules/db/drivers/postgres"
_ "github.com/GoAdminGroup/go-admin/modules/db/drivers/sqlite"
)
v1.0.4
v1.0.3
v1.0.2
v1.0.1
v1.0.0
v1.0.0 is now released!!!!!🍺🍺
After few days of debugging, we decide to release the v1.0.0.
Production tests maybe will bring us more bugs and challenge, however, the apis are now more and more stable, and bugs fixed. Have confidence to make it better. Keep working hard.
BUG Fixes
- mysql decimal scan error
Improvement
- make login component clear
v1.0.0-beta.1
important‼️
GoAdmin is now transfered to here. Follow the steps to adapt to this version:
Step 1: rename your import path
from
github.com/chenhg5/go-admin
to
github.com/GoAdminGroup/go-admin
Step 2: import the theme in your main.go
package main
import (
....
_ "github.com/GoAdminGroup/themes/adminlte"
....
)
It will automatically add to the template. Otherwise it will panic.
BUG Fixes
- roles display error
Improvement
- make theme flexible from the template
v1.0.0-beta
BUG Fixes
- set form field default value
Improvement
- modify some api names, make them more clear
- add some helper functions of table/form field operation