Releases: samuelemusiani/sasso
v0.1.6
Full Changelog: v0.1.5...v0.1.6
Milestone: https://github.com/samuelemusiani/sasso/milestone/5?closed=1
Changelog:
fix: frontend LDAP form adding email attribute (a2ddfdb, #190)
fix: avoid sending an empty LDAP password when updating the realm if the password was not changed (50cc461, #193)
fix: create settings for admin user to avoid 500 status code (6feb102, #189)
fix: admin database ID can be different from 1 (838d1b4, #195)
add: toasts for feedback on LDAP realms (56ae6cc, #191)
fix: allow nested LDAP groups (48988f1, #194)
fix: allow same username from different realms (5e7ed8a, #192)
fix: removed alerts on fronted, but introduced duplicated toasts (fa44c71). We are planning to fix this in the next release (#198)
add: print realm after usernames for members and invitations on groups (8d4052b, #192)
Caution
BREAKING CHANGES: Before applying this version, if you were using the v0.1.5, you have to run the following SQL manually in the server database:
BEGIN;
ALTER TABLE ldap_realms DROP COLUMN group_base_dn;
ALTER TABLE ldap_realms RENAME COLUMN maintainer_filter TO maintainer_group_dn;
ALTER TABLE ldap_realms RENAME COLUMN admin_filter TO admin_group_dn;
UPDATE ldap_realms SET maintainer_group_dn = 'CHANGE-ME', admin_group_dn = 'CHANGE-ME';
DROP INDEX idx_users_email;
DROP INDEX idx_users_username;
COMMIT;After this, every LDAP realm previously added will have the Maintainer Group DN field and the Admin Group DN field set to 'CHANGE-ME'. You will have to change them to a proper value
v0.1.5
Full Changelog: v0.1.4...v0.1.5
Changelog:
bump: go-proxmox to v0.0.13 (speed up backups list)
fix: terminate gracefully if notifications are disabled
fix: arguments order for vpn number
v0.1.4
Full Changelog: v0.1.3...v0.1.4
Changelog:
- Updated frontend dependencies
- add: just command only for the server and frontend
- fix: uint parsing to avoid converting from a bigger size to a smaller size
- fix: token bucket limiter for notifications
- fix: prints admin password does not depend on logs level anymore
- fix: do not fill gateway on frontend if an interface with it is already present in the same VM
- fix: resolved multiple issues on the frontend backup page
- fix: longer context deadline for backups list to avoid 500 on slow proxmox servers
- fix: removed non-backups on backup list
- fix: multiple issues related to notifications and lifetime expiration
v0.1.3
Full Changelog: v0.1.2...v0.1.3
Changelog:
fix: logging errors when listing nets that have not gateway and broadcast yet
feat: added MTU option for linux gateway on router
feat: added MTU and firewall options for new interfaces on VMs when cloned by main server
v0.1.2
v0.1.0
First public release of sasso! 🎉