-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
167 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,89 @@ | ||
ltb-project-service-desk (0.6.0-1) unstable; urgency=low | ||
|
||
* gh#52: LTB Service Desk Active Directory Support | ||
* gh#53: Display pwdPolicySubentry | ||
* gh#57: Add new password policy items from Behera draft 10 | ||
* gh#74: Avoid browsers prompting for storing new password | ||
* gh#83: Set autocomplete properties for password fields | ||
* gh#91: Add service-desk dependencies in documentation | ||
* gh#97: update authTimestamp to pwdLastSuccess | ||
* gh#103: Configure last auth attribute | ||
* gh#104: Enable phpunit in CI | ||
* gh#106: Constant FILTER_SANITIZE_STRING is deprecated | ||
* gh#107: Replace deprecated FILTER_SANITIZE_STRING constant | ||
* gh#109: fix Error while searching for multiple entries with smarty 4.3.4 (#108) | ||
* gh#110: Display localized time | ||
* gh#111: add an option for defining the timezone (#110) | ||
* gh#115: Update doc to be consistent with main LTB project doc | ||
* gh#116: Document required installation step for smarty3 | ||
* gh#117: Displayed message if wrong a password is tested is not really explicit | ||
* gh#118: use new ltb-ldap v0.2 | ||
* gh#119: Display password policy when changing password | ||
* gh#123: Configure which colums should not be sorted | ||
* gh#124: Add allowed_lang configuration parameter | ||
* gh#125: Possibility to block an account (different that locking) | ||
* gh#126: Check password in history of old passwords | ||
* gh#127: Add a comment on an action in audit log | ||
* gh#128: Display audit log | ||
* gh#129: Update bootstrap library | ||
* gh#130: Update bootstrap library | ||
* gh#132: Print buttons | ||
* gh#133: Add options to hide lock panel and expired panel | ||
* gh#134: Display pwdpolicysubentry | ||
* gh#135: Options to show/hide lock and expire panels | ||
* gh#136: Use LTB LDAP v0.2 | ||
* gh#137: #124: Adding allowed_lang configuration. | ||
* gh#138: Remove duplicate detectLanguage code | ||
* gh#139: Strategy for composer dependencies | ||
* gh#140: Added modal functionality to insert comment to audit logs when un/locking account. | ||
* gh#141: RPM spec file cleanup | ||
* gh#142: deb cleanup | ||
|
||
-- Clement Oudot <[email protected]> Wed, 31 Jul 2024 12:00:00 +0200 | ||
* gh#143: add .gitignore in conf directory | ||
* gh#144: make all search functions to use a scope | ||
* gh#145: use new method get_first_value from ltb-ldap project | ||
* gh#146: use new method get_first_value from ltb-ldap project (#145) | ||
* gh#147: update ltb-ldap library name to ltb-common | ||
* gh#148: update ltb-ldap library name to ltb-common (#147) | ||
* gh#149: make all search functions to use a scope (#144) | ||
* gh#150: Update ltb-common version to v0.4.0 | ||
* gh#151: #112: Fixing deprecated error messages by upgrading to smarty4. | ||
* gh#153: add .gitignore in conf directory (#143) | ||
* gh#154: Manage composer.lock and composer update (#139) | ||
* gh#155: 141 rpm spec file cleanup | ||
* gh#156: Active Directory support | ||
* gh#157: Added functionality to display audit logs | ||
* gh#158: Update to smarty4 | ||
* gh#159: remove verbose smarty messages | ||
* gh#160: remove verbose smarty logs, unless smarty_debug == true (#159) | ||
* gh#161: deb cleanup (#142) | ||
* gh#162: Password reset checks pwdHistory | ||
* gh#163: Update doc for Nginx | ||
* gh#164: use local password policy feature from ltb-common (#119) | ||
* gh#165: use new page_size parameter from ltb-common | ||
* gh#166: Use page size parameter from ltb-common (#165) | ||
* gh#167: Check target entry DN against LDAP configured filter | ||
* gh#168: Add hooks for other actions than password modification | ||
* gh#169: Block account | ||
* gh#170: Remove obsolete code | ||
* gh#171: Append option to sort login history in descending order | ||
* gh#172: Possibility to edit account/password validity dates | ||
* gh#173: Add new password policy items from behera draft 10 | ||
* gh#174: Check DN is matching configured search parameters before allowing any action on it | ||
* gh#175: Hooks for other actions than password modification | ||
* gh#176: Use ltb-common for detect language functionnality | ||
* gh#177: add comments in all menus (#127) | ||
* gh#179: remove numerous warnings | ||
* gh#180: remove multiple warnings (#179) | ||
* gh#181: add "sort" param for sorting LDAP multivalued attributes (#171) | ||
* gh#183: Restore print buttons | ||
* gh#184: Fatal error when wrong base DN configured | ||
* gh#185: Missing message for pwdlastsuccess attribute | ||
* gh#186: Use correct last auth attribute | ||
* gh#187: Error when enabling/disabling/locking/unlocking account is not shown | ||
* gh#189: 187 show error when disabling account | ||
* gh#190: Possibility to edit account validity dates | ||
|
||
-- Clement Oudot <[email protected]> Mon, 02 Dec 2024 12:00:00 +0200 | ||
|
||
ltb-project-service-desk (0.5.1-1) unstable; urgency=low | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -168,6 +168,90 @@ rm -rf %{sd_cachedir}/{cache,templates_c}/* | |
|
||
|
||
%changelog | ||
* Mon Dec 02 2024 Clement Oudot <[email protected]> - 0.6.0-1 | ||
- gh#52: LTB Service Desk Active Directory Support | ||
- gh#53: Display pwdPolicySubentry | ||
- gh#57: Add new password policy items from Behera draft 10 | ||
- gh#74: Avoid browsers prompting for storing new password | ||
- gh#83: Set autocomplete properties for password fields | ||
- gh#91: Add service-desk dependencies in documentation | ||
- gh#97: update authTimestamp to pwdLastSuccess | ||
- gh#103: Configure last auth attribute | ||
- gh#104: Enable phpunit in CI | ||
- gh#106: Constant FILTER_SANITIZE_STRING is deprecated | ||
- gh#107: Replace deprecated FILTER_SANITIZE_STRING constant | ||
- gh#109: fix Error while searching for multiple entries with smarty 4.3.4 (#108) | ||
- gh#110: Display localized time | ||
- gh#111: add an option for defining the timezone (#110) | ||
- gh#115: Update doc to be consistent with main LTB project doc | ||
- gh#116: Document required installation step for smarty3 | ||
- gh#117: Displayed message if wrong a password is tested is not really explicit | ||
- gh#118: use new ltb-ldap v0.2 | ||
- gh#119: Display password policy when changing password | ||
- gh#123: Configure which colums should not be sorted | ||
- gh#124: Add allowed_lang configuration parameter | ||
- gh#125: Possibility to block an account (different that locking) | ||
- gh#126: Check password in history of old passwords | ||
- gh#127: Add a comment on an action in audit log | ||
- gh#128: Display audit log | ||
- gh#129: Update bootstrap library | ||
- gh#130: Update bootstrap library | ||
- gh#132: Print buttons | ||
- gh#133: Add options to hide lock panel and expired panel | ||
- gh#134: Display pwdpolicysubentry | ||
- gh#135: Options to show/hide lock and expire panels | ||
- gh#136: Use LTB LDAP v0.2 | ||
- gh#137: #124: Adding allowed_lang configuration. | ||
- gh#138: Remove duplicate detectLanguage code | ||
- gh#139: Strategy for composer dependencies | ||
- gh#140: Added modal functionality to insert comment to audit logs when un/locking account. | ||
- gh#141: RPM spec file cleanup | ||
- gh#142: deb cleanup | ||
- gh#143: add .gitignore in conf directory | ||
- gh#144: make all search functions to use a scope | ||
- gh#145: use new method get_first_value from ltb-ldap project | ||
- gh#146: use new method get_first_value from ltb-ldap project (#145) | ||
- gh#147: update ltb-ldap library name to ltb-common | ||
- gh#148: update ltb-ldap library name to ltb-common (#147) | ||
- gh#149: make all search functions to use a scope (#144) | ||
- gh#150: Update ltb-common version to v0.4.0 | ||
- gh#151: #112: Fixing deprecated error messages by upgrading to smarty4. | ||
- gh#153: add .gitignore in conf directory (#143) | ||
- gh#154: Manage composer.lock and composer update (#139) | ||
- gh#155: 141 rpm spec file cleanup | ||
- gh#156: Active Directory support | ||
- gh#157: Added functionality to display audit logs | ||
- gh#158: Update to smarty4 | ||
- gh#159: remove verbose smarty messages | ||
- gh#160: remove verbose smarty logs, unless smarty_debug == true (#159) | ||
- gh#161: deb cleanup (#142) | ||
- gh#162: Password reset checks pwdHistory | ||
- gh#163: Update doc for Nginx | ||
- gh#164: use local password policy feature from ltb-common (#119) | ||
- gh#165: use new page_size parameter from ltb-common | ||
- gh#166: Use page size parameter from ltb-common (#165) | ||
- gh#167: Check target entry DN against LDAP configured filter | ||
- gh#168: Add hooks for other actions than password modification | ||
- gh#169: Block account | ||
- gh#170: Remove obsolete code | ||
- gh#171: Append option to sort login history in descending order | ||
- gh#172: Possibility to edit account/password validity dates | ||
- gh#173: Add new password policy items from behera draft 10 | ||
- gh#174: Check DN is matching configured search parameters before allowing any action on it | ||
- gh#175: Hooks for other actions than password modification | ||
- gh#176: Use ltb-common for detect language functionnality | ||
- gh#177: add comments in all menus (#127) | ||
- gh#179: remove numerous warnings | ||
- gh#180: remove multiple warnings (#179) | ||
- gh#181: add "sort" param for sorting LDAP multivalued attributes (#171) | ||
- gh#183: Restore print buttons | ||
- gh#184: Fatal error when wrong base DN configured | ||
- gh#185: Missing message for pwdlastsuccess attribute | ||
- gh#186: Use correct last auth attribute | ||
- gh#187: Error when enabling/disabling/locking/unlocking account is not shown | ||
- gh#189: 187 show error when disabling account | ||
- gh#190: Possibility to edit account validity dates | ||
|
||
* Wed May 17 2023 Clement Oudot <[email protected]> - 0.5.1-1 | ||
- gh#92: Message override broken in 0.5 | ||
- gh#94: Missing replacement for lang value (issue #92) | ||
|