File: simplesamlphp-upgrade-notes-1.18.md

package info (click to toggle)
simplesamlphp 1.19.7-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 42,920 kB
  • sloc: php: 202,044; javascript: 14,867; xml: 2,700; sh: 225; perl: 82; makefile: 70; python: 5
file content (26 lines) | stat: -rw-r--r-- 1,503 bytes parent folder | download | duplicates (3)
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
Upgrade notes for SimpleSAMLphp 1.18
====================================

The minimum PHP version required is now PHP 5.6.

### Deprecations

* The use of the PHP `memcache` extension was deprecated in favour of `memcached`.
In order to keep using memcache functionality you have to move to the PHP `memcached` extension,
which is available from PECL; see https://pecl.php.net/package/memcached. The former is considered abandoned
and it's safe use can no longer be guaranteed.

  There are a few options here:
   - Depending on your distribution, the package may just be available for you to install
   - You could use the package from the REMI repository if you're on RHEL; https://rpms.remirepo.net/
   - Download the source from https://pecl.php.net/package/memcached and compile the source as a PHP-extension manually;
     https://www.php.net/manual/en/install.pecl.phpize.php
 
* Support for SAML1.1 / Shibboleth 1.3 will be discontinued in a future release.
* 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.