Skip to content

Commit caca395

Browse files
committed
Add changelog for version 1.11.0
1 parent 41efb02 commit caca395

2 files changed

Lines changed: 15 additions & 2 deletions

File tree

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Ruby SAML [![Build Status](https://secure.travis-ci.org/onelogin/ruby-saml.svg)](http://travis-ci.org/onelogin/ruby-saml) [![Coverage Status](https://coveralls.io/repos/onelogin/ruby-saml/badge.svg?branch=master%0A)](https://coveralls.io/r/onelogin/ruby-saml?branch=master%0A) [![Gem Version](https://badge.fury.io/rb/ruby-saml.svg)](http://badge.fury.io/rb/ruby-saml)
22

3-
# Updating from 1.9.0 to 1.10.0
3+
## Updating from 1.10.x to 1.11.0
4+
Version `1.11.0` deprecates the use of `settings.issuer` in favour of `settings.sp_entity_id`.
5+
There are two new security settings: `settings.security[:check_idp_cert_expiration]` and `settings.security[:check_sp_cert_expiration]` (both false by default) that check if the IdP or SP X.509 certificate has expired, respectively.
6+
7+
Version `1.10.2` includes the `valid_until` attribute in parsed IdP metadata.
8+
9+
Version `1.10.1` improves Ruby 1.8.7 support.
10+
11+
## Updating from 1.9.0 to 1.10.0
412
Version `1.10.0` improves IdpMetadataParser to allow parse multiple IDPSSODescriptor, Add Subject support on AuthNRequest to allow SPs provide info to the IdP about the user to be authenticated and updates the format_cert method to accept certs with /\x0d/
513

614
## Updating from 1.8.0 to 1.9.0
@@ -273,7 +281,7 @@ def saml_settings
273281
end
274282
```
275283
276-
The use of settings.issuer is deprecated in favour of settings.sp_entity_id
284+
The use of settings.issuer is deprecated in favour of settings.sp_entity_id since version 1.11.0
277285
278286
Some assertion validations can be skipped by passing parameters to `OneLogin::RubySaml::Response.new()`. For example, you can skip the `AuthnStatement`, `Conditions`, `Recipient`, or the `SubjectConfirmation` validations by initializing the response with different options:
279287

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# RubySaml Changelog
22

3+
### 1.11.0 (Jul 24, 2019)
4+
5+
* Deprecate settings.issuer in favor of settings.sp_entity_id
6+
* Add support for certification expiration
7+
38
### 1.10.2 (Apr 29, 2019)
49

510
* Add valid until, accessor

0 commit comments

Comments
 (0)