From 65827d3df4dd63a3f1a7979bcbba0fd4d5f9b007 Mon Sep 17 00:00:00 2001 From: Sixto Martin Date: Thu, 21 Mar 2019 14:43:35 +0100 Subject: [PATCH] Release 1.10.0 --- README.md | 5 ++++- changelog.md | 5 +++++ lib/onelogin/ruby-saml/version.rb | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a3630d036..c05ae166c 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,10 @@ # 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) +# Updating from 1.9.0 to 1.10.0 +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/ + ## Updating from 1.8.0 to 1.9.0 -Version `1.8.0` better supports Ruby 2.4+ and JRuby 9.2.0.0. `Settings` initialization now has a second parameter, `keep_security_settings` (default: false), which saves security settings attributes that are not explicitly overridden, if set to true. +Version `1.9.0` better supports Ruby 2.4+ and JRuby 9.2.0.0. `Settings` initialization now has a second parameter, `keep_security_settings` (default: false), which saves security settings attributes that are not explicitly overridden, if set to true. ## Updating from 1.7.X to 1.8.0 On Version `1.8.0`, creating AuthRequests/LogoutRequests/LogoutResponses with nil RelayState param will not generate a URL with an empty RelayState parameter anymore. It also changes the invalid audience error message. diff --git a/changelog.md b/changelog.md index 3eca00e3e..c24ceb914 100644 --- a/changelog.md +++ b/changelog.md @@ -1,4 +1,9 @@ # RubySaml Changelog +### 1.10.0 (Mar 21, 2019) +* Add Subject support on AuthNRequest to allow SPs provide info to the IdP about the user to be authenticated +* Improves IdpMetadataParser to allow parse multiple IDPSSODescriptors +* Improves format_cert method to accept certs with /\x0d/ +* Forces nokogiri >= 1.8.2 when possible ### 1.9.0 (Sept 03, 2018) * [#458](https://github.com/onelogin/ruby-saml/pull/458) Remove ruby 2.4+ warnings diff --git a/lib/onelogin/ruby-saml/version.rb b/lib/onelogin/ruby-saml/version.rb index 849f2bfe6..8c0b21e92 100644 --- a/lib/onelogin/ruby-saml/version.rb +++ b/lib/onelogin/ruby-saml/version.rb @@ -1,5 +1,5 @@ module OneLogin module RubySaml - VERSION = '1.9.0' + VERSION = '1.10.0' end end