All Versions
11
Latest Version
Avg Release Cycle
86 days
Latest Release
1089 days ago

Changelog History
Page 1

  • v0.6.1 Changes

    April 27, 2021

    โž• Added

    • Support for getting static files when runnung uadmin prepare from modules instead of source folder
    • uadmin prepare now accepts a new parameter --src that allows to overide the default behavior and get the static files from source instead of module
    • uadmin prepare takes go.mod into consideration to decide where to get the static files from. This allows developers to develop multiple applications that uses different version of uAdmin. If you use replace directive inside go.mod, the prepare tool will copy the files from the local folder as instructed in the replace directive.
    • Two new settings "Logo" and "FavIcon" to customize your application even further. ### ๐Ÿ”„ Changed
    • Added .DS_Store and .vscode to .gitignore ### ๐Ÿ—„ Deprecated ### โœ‚ Removed
    • uadmin pubnlish is removed. It used to be an internal development tool and was cool to have it runnig publicly for a while ### ๐Ÿ›  Fixed
    • dAPI didn't have docs for method and fixed some typos
    • Linting (So much linting) ### ๐Ÿ”’ Security
    • The system reads two envirnment variables UADMIN_USER and UADMIN_PASS for new deployments to create admin username and password. If these environment variables do not exist, uAdmin will user "admin" and "admin" for username and password.
  • v0.5.3 Changes

    April 08, 2021

    โž• Added

    • ### ๐Ÿ”„ Changed
    • Drop support for GO version 1.11 and 1.12 ### ๐Ÿ—„ Deprecated ### โœ‚ Removed ### ๐Ÿ›  Fixed
    • Fixed adding more than 10 items in dAPI
    • Fixed saving of language not removing the previous default language ### ๐Ÿ”’ Security
  • v0.5.2 Changes

    August 20, 2020

    โž• Added

    • ### ๐Ÿ”„ Changed ### ๐Ÿ—„ Deprecated ### โœ‚ Removed ### ๐Ÿ›  Fixed
    • Fixed CSRF token to inlines form for deleting
    • Fixed User was overwritten with old user on logout when using cache sessions ### ๐Ÿ”’ Security
  • v0.5.1 Changes

    August 07, 2020

    [0.5.1] Atlas Moth - 2020-08-07

    โž• Added

    ๐Ÿ”„ Changed

    • dAPI function method can return a value if the method called has a return. Note: if you have a return, you cannot use $next to redirect.

    ๐Ÿ—„ Deprecated

    โœ‚ Removed

    ๐Ÿ›  Fixed

    • ๐Ÿ›  Fixed false possitive SQL Injection in dAPI join.
    • ๐Ÿ›  Fixed false detection in customGet for private fields of type []struct as an M2M field.
    • ๐Ÿ’ป Typo in uadmin command line tool.

    ๐Ÿ”’ Security

    • CSRF protection in dAPI in functions: add, edit, delete and method.
    • Tamplate function CSRF implemented in uadmin.RenderHTML and uadmin.RenderHTMLMulti. It returns anti CSRF token.
    • uadmin.IsAuthenticated recognizes nouser sessions. These sessions are for users who are not authenticated in the system. To set a session cookie, user SetSessionCookie
    • uadmin.SetSessionCookie receives a pointer to a session and sets the session cookie in a secure way. If you pass a nil to the session, the session will be created as a nouser session which is still a session but gives the user to access as an authenticated user. These sssions can be used to protect against CSRF attacks in case you have a public API.
  • v0.5.0 Changes

    August 02, 2020

    ๐Ÿš€ We are happy to announce the release of version 0.5.0 under the code name "Atlas Moth"

    ๐Ÿ”„ Change Log

    [0.5.0] Atlas Moth - 2020-08-02

    โž• Added

    • PreQuery and PostQuery handler for dAPI
    • method command in dAPI to run model's methods
    • ๐Ÿ Windows support for syslog
    • $preload in dAPI
    • RenderHTMLMulti to render nested templates
    • $choices in schema command in dAPI to preload FK and M2M choices
    • ๐Ÿ‘Œ Support for golang Modules
    • โž• Added search in dAPI using $q
    • โœ… Reset button for ABTest
    • โž• Added delete functionality for file and image from UI and dAPI
    • dAPI schema now translates the model based on your language cookie
    • ๐Ÿ‘ dAPI now supports M2M in add and delete functions

    - $distinct in dAPI read function

    ๐Ÿ”„ Changed

    • โฌ‡๏ธ Droping support for Golang 1.10
    • ๐Ÿ”„ Changed Excel export library to excelize
    • 0๏ธโƒฃ GetDefaultLanguage and GetActiveLanguages are public now
    • TranslateSchema is public now
    • Model method GetImageSize() (int, int) to customize image size

    ๐Ÿ—„ Deprecated

    โœ‚ Removed

    ๐Ÿ›  Fixed

    • Fixed bug with dAPI __ filters
    • ๐Ÿ›  Fixed last insert ID in MySQL
    • ๐Ÿ›  Fixed dAPI clearing file and image fields
    • ๐Ÿ›  Fixed a bug with Aggregate column
    • HideInDashboard works for existing models
    • DashboardMenu changes icon size to 128X128 pixels

    ๐Ÿ”’ Security

    • PasswordAttempts and PasswordTimeout settings to protect limit invalid password attempts
    • CheckRateLimit limits whole IP instead of IP and port combination
    • ๐Ÿ’ป CSRF protection in UI and dAPI and public function CheckCSRF
    • SQL injection checking in dAPI, export and public function SQLInjection
    • โž• Added AllowedHosts setting to limit the domains/IPs for password reset
    • ๐Ÿ”— Link fields get x-scrf-token added automatically in UI
    • โœ… session cookie uses SameSite=SameSiteStrictMode
    • Prevent navigation attacks in Theme setting and file upload
  • v0.4.0 Changes

    July 02, 2019

    โž• Added

    • Implemented request rate limits to protect from DDoS
    • Implemented AB/Testing system
    • Implemented dAPI which is an API to access model data
    • Implemented CacheSessions and CachePermissions for direct in memory access to sessions and permissions
    • Implemented a Metrics system using the following function: SetMetric, IncrementMetric, TimeMetric and NewMetric
    • Trail can log to syslog
    • HTTP requests can be logged to syslog
    • Added uadmin.Handler(func(http.ResponseWriter, *http.Request)) func(http.ResponseWriter, *http.Request) to enable syslog for HTTP requests
    • Add OptimizeSQLQuery mode
    • Handle ctrl+F in Home and List view to focus on the search field instead of the native search
    • Added stringer meta tag
    • Added two API end points /api/get_models and /api/get_fields?m={MODEL_NAME} ### ๐Ÿ”„ Changed
    • Changed Login(*http.Request, string, string) (*User, bool) to Login(*http.Request, string, string) (*Session, bool)
    • Changed Login2FA(*http.Request, string, string, string) *User to Login2FA(*http.Request, string, string, string) *Session
    • Changed HTMLContext to RenderHTML that has support for templates functions
    • URL filter place holders are capital letters {USERNAME}, {USERID} and {NOW}
    • Search is allowed for list_exclude fields.
    • Changed the search API path to /api/search/
    • Make static handler a public function uadmin.StaticHandler(http.ResponseWriter, *http.Request)
    • Added three new level to Trail for compatibility with syslog which are Critical, Alert and Emergency
    • If database doesn't exist for mysql, uAdmin will try to create a new database. ### ๐Ÿ—„ Deprecated
    • User.HasPermission will be private starting 0.6.0
    • UserGroup.HasPermission will be private starting 0.6.0 ### โœ‚ Removed ### ๐Ÿ›  Fixed
    • Fixed image crop modal conflict in list view with delete modal and add it to form and inlines
    • Fixed FK in approvals
    • Remove required from fields with pending approval
    • Support filtering/searching by NULL value for time.Time pointer
    • Fixed filtering by FK ### ๐Ÿ”’ Security
    • Restrict access to inlines based on user model permissions
    • Search API escapes HTML results
  • v0.3.0 Changes

    July 02, 2019

    โž• Added

    - Approval System: By adding `approval` tag to any field, the field will required a special permission to edit. If the user does not have this permission, the edit will generate an Approval record that can be approved by a user with access to the new Approval model.
    - Upload files using drag and drop into the field.
    - Image and File fields now allow a new tag called `webcam` which adds web can access directly from the field.
    - Model specific themes: You can use `ModelSchema.FormTheme` and `ModelSchema.ListTheme` to choose a theme for a model.
    - Settings automatically adds all uAdmin global variables as settings.
    - Added .gitignore which should have been there all along!!
    

    ๐Ÿ”„ Changed

    - cropImageHandler now returns JSON with a status letting the for success and failure.
    - Improved performance for saving settings page.
    

    ๐Ÿ—„ Deprecated

    โœ‚ Removed

    ๐Ÿ›  Fixed

    - Fixed filters for list view. Now you can apply multiple filters. Also now you can filter by foreign key.
    - Removed all `fmt.Println` and `log.Println` for printing errors and replaced it with `Trail`.
    - Export to excel date time type now takes time zone into account.
    - Fixed bug with method fields names rendering with missing letters.
    - Settings URL takes into account `RootURL`
    - Edit logs will only be saved if the form didn't have errors.
    - Fixed bug with `required` file and image fields where you had to choose a file everytime you save even if there was a files saved in the record.
    - Fixed bug with `required` foreign key and list type where it was not working before.
    

    ๐Ÿ”’ Security

    - revertLogHandler required the requires to be authenticated and the user to have access to edit the model and have read access to logs.
    
  • v0.2.0 Changes

    June 20, 2019

    [0.2.0] - 2019-06-20

    โž• Added

    - Global Variable:
        - Settings model which can be used system wide to keep application settings.
        - GetSetting function to read settings from the settings model.
        - User.GetAccess function can evaluate the user's permission to a model using user level and group level and return a UserPermission instance.
        - ErrorHandleFunc: A function that can be passed for handling errors system wide that gets called when Trail is called.
        - AllowedIPs: is a list of allowed IPs to access uAdmin interfrace
        - BlockedIPs: is a list of blocked IPs from accessing uAdmin interfrace
        - RestrictSessionIP: restricts access to the system if the IP of the user changes after login
        - RetainMediaVersions: is to allow the system to keep files uploaded even after they are changed
    

    ๐Ÿ”„ Changed

    - Forgot password now sends HTML emails.
    - GetString function can return the name of a static list item.
    

    ๐Ÿ—„ Deprecated

    โœ‚ Removed

    ๐Ÿ›  Fixed

    • ๐Ÿ› Bug fix for read only fields for new and edit.
      • Model names in dashboard are generated using proper plural function instead of just adding "s"

    ๐Ÿ”’ Security

  • v0.1.1 Changes

    May 11, 2019

    โž• Added

    -   Global Variable:
        - DefaultMediaPermission [0644]: The default permission for files uploaded through uAdmin
    

    ๐Ÿ”„ Changed

    ๐Ÿ—„ Deprecated

    โœ‚ Removed

    ๐Ÿ›  Fixed

    - Delete(): Checks for ID == 0 where it doesn't delete all records when ID = 0 is passed
    

    ๐Ÿ”’ Security

  • v0.1.0 Changes

    April 27, 2019

    ๐Ÿ› Bug Fixes
    ๐Ÿ“š More Documentation & Sample Projects
    โž• Added Quizzes to Docs
    ๐ŸŒ Translation Files Preloading
    โž• Added global variable: CacheTranslation