Update next release changelog and news

This commit is contained in:
Benjamin Renard 2020-05-25 11:52:27 +02:00
parent 47d9b907af
commit 534295d4f3
2 changed files with 26 additions and 11 deletions

30
debian/changelog vendored
View file

@ -1,7 +1,7 @@
ldapsaisie (3.0.0-1) UNRELEASED; urgency=medium ldapsaisie (3.0.0-1) UNRELEASED; urgency=medium
* A lot of code cleaning and PHP notices fixes * A lot of code cleaning and PHP notices fixes
* Introduce LSurl, a new URL routing manager for LdapSaisie : all pages * Introduce LSurl, a new URL routing manager for LdapSaisie: all pages
and files served by the application is now outside the web root directory. and files served by the application is now outside the web root directory.
* Define base URL in page templates by using public_root_url parameter * Define base URL in page templates by using public_root_url parameter
* Add a CLI commands manager and the ldapsaisie CLI tool that currently * Add a CLI commands manager and the ldapsaisie CLI tool that currently
@ -12,39 +12,49 @@ ldapsaisie (3.0.0-1) UNRELEASED; urgency=medium
* Replace generate_lang_file.php and generate_ldapsaisie.pot.sh script by * Replace generate_lang_file.php and generate_ldapsaisie.pot.sh script by
CLI commands generate_lang_file and generate_ldapsaisie_pot CLI commands generate_lang_file and generate_ldapsaisie_pot
* LSsession: * LSsession:
* includeFile() : allow inclusion of external file with include path search * includeFile(): allow inclusion of external file with include path search
support (see $external parameter). support (see $external parameter).
* deprecate redirect() method in favor of LSurl :: redirect() * deprecate redirect() method in favor of LSurl :: redirect()
* move lang stuff to a dedicated LSlang class * move lang stuff to a dedicated LSlang class
* keep trace of already loaded addon to avoid loading it more than once
* add default LSprofiles with the name of authenticable object types
* LSsearch: * LSsearch:
* fix handling approx parameter * fix handling approx parameter
* fix possibility to specify a filter and a pattern (in the same time) * fix possibility to specify a filter and a pattern (in the same time)
* fix sorting by extraDisplayedColumns (on one setParams() call) * fix sorting by extraDisplayedColumns (on one setParams() call)
* fix search customActions JS validation * fix search customActions JS validation
* add option to disable cache on customInfos
* LdapObject: * LdapObject:
* add __toString() method to fix password recovery bug * add __toString() method to fix password recovery bug
(report by Adrien Malgoyre <adrien.malgoyre@osupytheas.fr>) (report by Adrien Malgoyre <adrien.malgoyre@osupytheas.fr>)
* change getDisplayName $spe parameter default value from empty string to * change getDisplayName $spe parameter default value from empty string to
null null
* LSlog : * specify object type filter on loading data
* LSrelation: globally rework and improve it
* LSlog:
- fix handling non-string message - fix handling non-string message
- add loggers, filters and format message by handlers - add loggers, filters and format message by handlers
* LSauth : * LSauth:
- Add possibility to configure more than one LSobject type as user - Add possibility to configure more than one LSobject type as user
- Add possibility to handle duplicated identifier - Add possibility to handle duplicated identifier
* LSauthMethod::CAS : Remove deprecated LSAUTH_CAS_SERVER_SSL_CERT parameter * LSauthMethod::CAS: Remove deprecated LSAUTH_CAS_SERVER_SSL_CERT parameter
(since corresponding bogus setCasServerCert() method has been remove in (since corresponding bogus setCasServerCert() method has been remove in
phpCAS) phpCAS)
* LSaddon :: mail: Improve mail forging method by using PEAR Mail_mime lib * LSaddon :: mail: Improve mail forging method by using PEAR Mail_mime lib
* LSattr_html :: mail : add autocomplete feature * LSaddon :: LSaccessRigthsMatrixView: fix handling subDn LDAP servers
* LSformRile :: imagesize : fix parameters handling problem configuration
* LSformRule :: filesize : improve by avoiding to create a temporary file * LSattr_html :: mail: add autocomplete feature
* LSattr_html :: select_object: Allow multiple type of objects selection
* LSformRile :: imagesize: fix parameters handling problem
* LSformRule :: filesize: improve by avoiding to create a temporary file
* LSformRule :: email: fix handling domain parameter if its an array
* Add ___() function to allow declaration of messages that will be translated * Add ___() function to allow declaration of messages that will be translated
at display time at display time
* LSimport: fix data removing on LSobject import * LSimport: fix data removing on LSobject import
* Templates : * LSselect: Allow multiple type of objects selection
* Templates:
* Globally rework on templates files to use blocks. Common basic templates * Globally rework on templates files to use blocks. Common basic templates
files are now deprecated in favor to base.tpl and base_connected.tpl : files are now deprecated in favor to base.tpl and base_connected.tpl:
accueil.tpl, blank.tpl, empty.tpl, top.tpl, bottom.tpl accueil.tpl, blank.tpl, empty.tpl, top.tpl, bottom.tpl
* Add var_dump template function helper * Add var_dump template function helper

View file

@ -43,7 +43,12 @@ ldapsaisie (3.0.0-1) unstable; urgency=medium
deprioritized in favor of using LSlog :: debug(). deprioritized in favor of using LSlog :: debug().
- It's now possible to configure more than one LSobject type that can connect on - It's now possible to configure more than one LSobject type that can connect on
application as user. Consequently, if your LDAP directory contains more than one application as user. Consequently, if your LDAP directory contains more than one
type of users, LdapSaisie can now handle it. type of users, LdapSaisie can now handle it. Furthermore, a new default LSprofile
is added for each authenticable object type to easily allow all users of one type
to do something.
- LSselect and select_object attributes permit to selection of multiple object types.
Consequently and for instance, its now possible to have group of multiple object
types (group of users & groups, group of multiple user object types, ...).
Please see /usr/share/doc/ldapsaisie/changelog.Debian.gz for complete list of Please see /usr/share/doc/ldapsaisie/changelog.Debian.gz for complete list of
changes. changes.