-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathKissChangeLog.txt
More file actions
42 lines (27 loc) · 1.34 KB
/
KissChangeLog.txt
File metadata and controls
42 lines (27 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Kiss Framework Change Log
This file is designed to serve two purposes:
1. Provide a more detailed description of changes to the system than
just the git log.
2. Provide details you may need to upgrade the system beyond what is documented in the manual under
Kiss Framework Updates (2.12).
----------------------------------------------------------------------
2025-07-11
Changed how you configure the system. In the past,
configuration was done in the file named
src/main/backend/KissInit.groovy. That process has been moved
to a file named src/main/backend/application.ini. When
upgrading the system, you will need to manually reconcile
those two files between the virgin clone and your application.
Added the ability to support one-way hash Sha256 encrypted
passwords. The system is backward compatible with
non-encrypted passwords. Both are supported simultaniously.
However, you must extend the length of the password column in
the database to 64 characters.
Since there is no code in Kiss to add users, you will need to
encrypt the passwords before you write it to the SQL column.
You can do this from Groovy with password.sha256().
Updated ag-grid library. No user changes should be required.
2025-07-12
Updated the upgrade procedure and associated docs to make the
upgrade process easier.
Upgraded to commons-lang3-3.18.0.jar