Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simplesamlphp
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Perun
Perun ProxyIdP
v1
simplesamlphp
Commits
d8af8152
Commit
d8af8152
authored
5 years ago
by
Tim van Dijen
Browse files
Options
Downloads
Patches
Plain Diff
Add deprecation notice
parent
f19535c5
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
docs/simplesamlphp-changelog.md
+4
-0
4 additions, 0 deletions
docs/simplesamlphp-changelog.md
docs/simplesamlphp-upgrade-notes-1.18.md
+7
-0
7 additions, 0 deletions
docs/simplesamlphp-upgrade-notes-1.18.md
lib/SimpleSAML/Memcache.php
+2
-0
2 additions, 0 deletions
lib/SimpleSAML/Memcache.php
with
13 additions
and
0 deletions
docs/simplesamlphp-changelog.md
+
4
−
0
View file @
d8af8152
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
docs/simplesamlphp-upgrade-notes-1.18.md
0 → 100644
+
7
−
0
View file @
d8af8152
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.
This diff is collapsed.
Click to expand it.
lib/SimpleSAML/Memcache.php
+
2
−
0
View file @
d8af8152
...
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment