Skip to content

Releases: GoAdminGroup/go-admin

v1.0.7

03 Nov 15:06
Compare
Choose a tag to compare

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

29 Oct 15:56
Compare
Choose a tag to compare

BUG Fixes

  • cli tool adm run error

Improvement

  • move some component methods away from Template.
  • make chartjs be a independent component.

v1.0.5

26 Oct 11:55
Compare
Choose a tag to compare

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

24 Oct 16:52
Compare
Choose a tag to compare

BUG Fixes

  • fixed edit manager password error

v1.0.3

23 Oct 15:59
Compare
Choose a tag to compare

BUG Fixes

  • edit manager permission error

Improvement

  • add method to component interface
  • support loading template from golang plugin
  • process database operation error better

v1.0.2

18 Oct 03:48
Compare
Choose a tag to compare

BUG Fixes

  • change a new theme

Improvement

  • modify apis of InfoPanel, make them more clear(Functions: Hide*)
  • cli tool name change: admincli => adm
  • cli options and commands more clear, doc here

v1.0.1

16 Oct 07:09
Compare
Choose a tag to compare

BUG Fixes

  • login page flash bug
  • add missing form panel api: FieldDefault

Improvement

  • cli tool more clear

v1.0.0

13 Oct 13:43
Compare
Choose a tag to compare

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

13 Oct 00:55
Compare
Choose a tag to compare
v1.0.0-beta.1 Pre-release
Pre-release

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

12 Oct 02:18
Compare
Choose a tag to compare
v1.0.0-beta Pre-release
Pre-release

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