Skip to content

Commit 693e473

Browse files
committed
Equilize some more docs with v2.5
1 parent 2797eb3 commit 693e473

6 files changed

Lines changed: 23 additions & 13 deletions

docs/simplesamlphp-install.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,13 @@ Here is an example of the configuration option:
279279

280280
You can see [a list of Supported Timezones at php.net](http://php.net/manual/en/timezones.php).
281281

282+
You might consider setting showerrors to `false` to hide error
283+
descriptions and backtraces from the browser.
284+
285+
```php
286+
'showerrors' => false,
287+
```
288+
282289
## Configuring PHP
283290

284291
### Sending e-mails from PHP

docs/simplesamlphp-metadata-endpoints.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ Endpoint | Indexed | Default binding
1212
`SingleLogoutService` | N | HTTP-Redirect
1313
`SingleSignOnService` | N | HTTP-Redirect
1414

15+
Note that `isDefault` is only available for indexed endpoints.
16+
1517
The various endpoints can be specified in the following format:
1618

1719
'AssertionConsumerService' => [

docs/simplesamlphp-reference-idp-hosted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ in the advanced features page.
6363
'ContactType' => 'support',
6464
'EmailAddress' => 'support@example.org',
6565
'GivenName' => 'John',
66-
'surName' => 'Doe',
66+
'SurName' => 'Doe',
6767
'TelephoneNumber' => '+31(0)12345678',
6868
'Company' => 'Example Inc.',
6969
],

docs/simplesamlphp-upgrade-notes-2.3.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,9 @@ The following properties were marked `deprecated` and will be removed in a next
2525

2626
- SimpleSAML\Locale\Language::$language_names - Use \Symfony\Component\Intl\Languages::getNames() instead
2727

28-
## BC break
28+
The use of plain-text admin-passwords has been deprecated. Generate a secure hash using the `bin/pwgen.php` script instead.
2929

30-
- Plain-text admin-passwords are no longer allowed.
31-
Please use the `bin/pwgen.php` script to generate a secure password hash.
30+
## BC break
3231

3332
- The language codes `pt-br` and `zh-tw` have been renamed to `pt_BR` and `zh_TW`.
3433
Please update your configuration to match the new names.

docs/simplesamlphp-upgrade-notes-2.4.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,5 @@ The following changes are relevant for installers and/or developers.
77
This means that endpoints such as SingleSignOnService values will be taken from the
88
entityId block in saml20-idp-hosted.php. See (<https://github.com/simplesamlphp/simplesamlphp/pull/2270>) for details.
99

10-
## Deprecations
11-
12-
The following classes were marked `deprecated` and will be removed in a next major release.
13-
14-
- fixme
15-
16-
## BC break
17-
18-
- fixme
10+
- The `statistics` module has been removed from the release, because the Charts API it depends on has been discontinued
11+
by Google, rendering the module useless.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Upgrade notes for SimpleSAMLphp 2.5
2+
3+
SimpleSAMLphp 2.5 is a minor new release which introduces a few new features.
4+
The following changes are relevant for installers and/or developers.
5+
6+
## Software requirements
7+
8+
- The minimum PHP version required is now PHP 8.2.
9+
- Symfony was upgraded to 7.4 (LTS).

0 commit comments

Comments
 (0)