Skip to content
Snippets Groups Projects
Commit fd166016 authored by Tim van Dijen's avatar Tim van Dijen
Browse files

Add deprecation notices

parent 276160e4
Branches
Tags
No related merge requests found
...@@ -14,6 +14,8 @@ Released TBD ...@@ -14,6 +14,8 @@ Released TBD
* Allow to log to STDERR in the logging.handler option. * Allow to log to STDERR in the logging.handler option.
* Allow use of stream wrappers (e.g. s3://) in paths. * Allow use of stream wrappers (e.g. s3://) in paths.
* Improve 'update or insert' handling for different SQL drivers * Improve 'update or insert' handling for different SQL drivers
* The default algorithm within the TimeLimitedToken-class has been bumped from SHA-1 to SHA-256
as announced by deprecation notice in 1.15-RC1
### metarefresh ### metarefresh
* The algorithm to compute the fingerprint of the certificate that signed * The algorithm to compute the fingerprint of the certificate that signed
...@@ -30,6 +32,14 @@ Released TBD ...@@ -30,6 +32,14 @@ Released TBD
### Interoperability ### Interoperability
* The minimum PHP version required is now 5.6. * The minimum PHP version required is now 5.6.
### Deprecation
* The class SimpleSAML\Auth\TimeLimitedToken is now deprecated and will be removed in a future release
If your custom module relies on this class, be sure to make a copy into your repository and
make sure to also copy the unit tests that come along.
* Setting 'privacypolicy' in metadata-files will be removed in a future release. It was only used
by the consent-module, which supports UIInfo's PrivacyStatementURL.
See https://simplesamlphp.org/docs/stable/simplesamlphp-metadata-extensions-ui on how to configure this.
## Version 1.17.5 ## Version 1.17.5
Released 2019-08-02 Released 2019-08-02
......
...@@ -123,6 +123,8 @@ Common options ...@@ -123,6 +123,8 @@ Common options
any value in the SP-remote metadata overrides the one configured any value in the SP-remote metadata overrides the one configured
in the IdP metadata. in the IdP metadata.
: *Note*: **deprecated** Will be removed in a future release; use the MDUI-extension instead
`privatekey` `privatekey`
: Name of private key file for this IdP, in PEM format. The filename : Name of private key file for this IdP, in PEM format. The filename
is relative to the `cert/`-directory. is relative to the `cert/`-directory.
......
...@@ -98,6 +98,8 @@ and Shibboleth 1.3 protocol: ...@@ -98,6 +98,8 @@ and Shibboleth 1.3 protocol:
entry in the SP-remote metadata overrides the option in the entry in the SP-remote metadata overrides the option in the
IdP-hosted metadata. IdP-hosted metadata.
: *Note*: **deprecated** Will be removed in a future release; use the MDUI-extension instead
`userid.attribute` `userid.attribute`
: The attribute name of an attribute which uniquely identifies : The attribute name of an attribute which uniquely identifies
the user. This attribute is used if SimpleSAMLphp needs to generate the user. This attribute is used if SimpleSAMLphp needs to generate
......
...@@ -6,6 +6,8 @@ use SimpleSAML\Utils; ...@@ -6,6 +6,8 @@ use SimpleSAML\Utils;
/** /**
* A class that generates and verifies time-limited tokens. * A class that generates and verifies time-limited tokens.
*
* @deprecated This class was deprecated in 1.18 and will be removed in a future release
*/ */
class TimeLimitedToken class TimeLimitedToken
......
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
<!-- Ignore deprecated classes --> <!-- Ignore deprecated classes -->
<ignoreFiles> <ignoreFiles>
<file name="lib/SimpleSAML/Auth/DefaultAuth.php" /> <file name="lib/SimpleSAML/Auth/DefaultAuth.php" />
<file name="lib/SimpleSAML/Auth/TimeLimitedToken.php" />
<file name="lib/SimpleSAML/Utilities.php" /> <file name="lib/SimpleSAML/Utilities.php" />
<!-- Ignore deprecated PHP-templates - Remove for 2.0 --> <!-- Ignore deprecated PHP-templates - Remove for 2.0 -->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment