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

Add deprecation notice

parent f19535c5
Branches
Tags
No related merge requests found
......@@ -16,6 +16,8 @@ Released TBD
* 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
* Most modules have been externalized. They will not be included in our future releases by default,
but will be easily installable using Composer.
### metarefresh
* The algorithm to compute the fingerprint of the certificate that signed
......@@ -40,6 +42,8 @@ Released TBD
* 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.
* The use of the PHP memcache-extension was deprecated in favour of memcached-extension.
The former is considered abandoned and it's safe use can no longer be guaranteed.
## Version 1.17.5
......
Upgrade notes for SimpleSAMLphp 1.18
====================================
The minimum PHP version required is now PHP 5.6.
The use of the PHP Memcache-extension was deprecated in favour of the Memcached-extension.
......@@ -315,6 +315,8 @@ class Memcache
throw new \Exception(
'Missing Memcached implementation. You must install either the Memcache or Memcached extension.'
);
} elseif (strtolower($class) === '\memcache') {
Logger::warning("The use of PHP-extension memcache is deprecated. Please migrate to the memcached extension.");
}
self::$extension = strtolower($class);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment