Skip to content

Commit e69a33f

Browse files
committed
Merge pull request #2002 from nathanjrobertson/remove_StatisticsWithAttribute
Document and remove configuration for StatisticsWithAttribute module The changelog is updated with more recent versions from the cherry pick.
1 parent 8639799 commit e69a33f

File tree

2 files changed

+74
-6
lines changed

2 files changed

+74
-6
lines changed

config/config.php.dist

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -987,12 +987,6 @@ $config = [
987987
// Adopts language from attribute to use in UI
988988
30 => 'core:LanguageAdaptor',
989989

990-
45 => [
991-
'class' => 'core:StatisticsWithAttribute',
992-
'attributename' => 'realm',
993-
'type' => 'saml20-idp-SSO',
994-
],
995-
996990
/* When called without parameters, it will fallback to filter attributes 'the old way'
997991
* by checking the 'attributes' parameter in metadata on IdP hosted and SP remote.
998992
*/

docs/simplesamlphp-changelog.md

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,80 @@
55
This document lists the changes between versions of SimpleSAMLphp.
66
See the upgrade notes for specific information about upgrading.
77

8+
## Version 2.2.0
9+
10+
Released 2024-03-08
11+
12+
* Make error codes easier to extend (#1870)
13+
* Updated eduPerson attributes in attribute maps (#1948)
14+
* Add regex support for attribute names in AttributeLimit authproc filter (#1971)
15+
* Reverted the .mo files change introduced in 2.1.x
16+
* NOTE: 'core:StatisticsWithAttribute' filter was removed from SimpleSAMLphp, but is still
17+
available from the [statistics](https://github.com/simplesamlphp/simplesamlphp-module-statistics)-module.
18+
It was previously enabled in the default configuration file (config/config.php.dist), so
19+
many lightly configured installations will have it enabled by default. Please check your
20+
config/config.php (and anywhere else you have authprocs configured) that you've either
21+
disabled "core:StatisticsWithAttribute" or migrated to "statistics:StatisticsWithAttribute"
22+
before upgrading to SimpleSAMLphp 2.2.0.
23+
24+
## Version 2.1.4
25+
26+
Released 2024-02-29
27+
28+
* Fix static call for non-static method in bin/importPdoMetadata.php (#1969)
29+
* Validate AuthState before processing it (#1706)
30+
* Fix possible incompatible dependency-set (#1981)
31+
32+
## Version 2.1.3
33+
34+
Released 2024-02-12
35+
36+
* Fix backwards compatibility for mandatory cachedir-setting introduced in 2.1.2
37+
38+
Deprecations:
39+
40+
* The core:StatisticsWithAttribute authproc-filter has been deprecated. It is now available
41+
in the 'statistics' module (v1.2+) as 'statistics:StatisticsWithAttribute', while only the
42+
'core:StatisticsWithAttribute' filter will be removed from SimpleSAMLphp in a future release.
43+
44+
## Version 2.1.2
45+
46+
Released 2024-02-05
47+
48+
* Restore possibility to use HTTP-Artifact on AuthnRequests (regression from 2.0.4)
49+
* Fixed undefined variable exception when using MS SQL store (#1917 + #1918)
50+
* Fix legacy-endpoints to not send responses twice
51+
* Fix exception when using iframe-logout (#1936)
52+
* Look for the schema files in the right place (#1929)
53+
* Fixed file logging handler to not fail on the first write after file-creation (#1877)
54+
* Fixed a warning in the RequestedAuthnContextSelector
55+
56+
`adfs`
57+
58+
* Fixed incorrect use of StreamedResponse (v2.1.3)
59+
60+
`core`
61+
62+
* Fixed a broken template for the WarnShortSSOInterval authproc-filter (#1920)
63+
* Fixed the order of the routes so that the least specific error-controller is hit last (#1923)
64+
65+
`ldap`
66+
67+
* Restored 1.x functionality to be able to fetch operational attributes (v2.3.0)
68+
* Fixed undesirable side-effect introduced in v2.3.0 (v2.3.1)
69+
* Restore the ability to read attributes using a privileged account (v2.3.2)
70+
71+
`saml`
72+
73+
* Disable caching for metadata-endpoint when protect.metadata is true (#1926)
74+
75+
`saml2 library`
76+
77+
* Fix serialization for the NameID element
78+
* Fix inheritance - There is no relation between BaseID and NameID
79+
80+
NOTE: Clear your session store after updating, because old serialized sessions can no longer be unserialized
81+
882
## Version 2.1.1
983

1084
Released 2023-11-28

0 commit comments

Comments
 (0)