Skip to content

Commit d49fde6

Browse files
committed
Release 1.12.0
1 parent 59b9ade commit d49fde6

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
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)](https://coveralls.io/r/onelogin/ruby-saml?branch=master) [![Gem Version](https://badge.fury.io/rb/ruby-saml.svg)](http://badge.fury.io/rb/ruby-saml)
22

3+
## Updating from 1.11.x to 1.12.0
4+
Version `1.12.0` adds support for gcm algorithm and
5+
change/adds specific error messages for signature validations
6+
37
## Updating from 1.10.x to 1.11.0
48
Version `1.11.0` deprecates the use of `settings.issuer` in favour of `settings.sp_entity_id`.
59
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.

changelog.md

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

3+
### 1.12.0 (Feb 18, 2021)
4+
* Support AES-128-GCM, AES-192-GCM, and AES-256-GCM encryptions
5+
* Parse & return SLO ResponseLocation in IDPMetadataParser & Settings
6+
* Adding idp_sso_service_url and idp_slo_service_url settings
7+
* [#536](https://github.com/onelogin/ruby-saml/pull/536) Adding feth method to be able retrieve attributes based on regex
8+
* Reduce size of built gem by excluding the test folder
9+
* Improve protection on Zlib deflate decompression bomb attack.
10+
* Add ValidUntil and cacheDuration support on Metadata generator
11+
* Add support for cacheDuration at the IdpMetadataParser
12+
* Support customizable statusCode on generated LogoutResponse
13+
* [#545](https://github.com/onelogin/ruby-saml/pull/545) More specific error messages for signature validation
14+
* Support Process Transform
15+
* Raise SettingError if invoking an action with no endpoint defined on the settings
16+
* Made IdpMetadataParser more extensible for subclasses
17+
*[#548](https://github.com/onelogin/ruby-saml/pull/548) Add :skip_audience option
18+
* [#555](https://github.com/onelogin/ruby-saml/pull/555) Define 'soft' variable to prevent exception when doc cert is invalid
19+
* Improve documentation
20+
321
### 1.11.0 (Jul 24, 2019)
422

523
* Deprecate settings.issuer in favor of settings.sp_entity_id

lib/onelogin/ruby-saml/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module OneLogin
22
module RubySaml
3-
VERSION = '1.11.0'
3+
VERSION = '1.12.0'
44
end
55
end

0 commit comments

Comments
 (0)