Skip to content

Commit b67e359

Browse files
committed
Release 1.4.2
1 parent 97a47e2 commit b67e359

File tree

3 files changed

+20
-10
lines changed

3 files changed

+20
-10
lines changed

changelog.md

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

3+
### 1.4.2 (January 11, 2017)
4+
* Improve tests format
5+
* Fix nokogiri requirements based on ruby version
6+
* Only publish KeyDescriptor[use="encryption"] at SP metadata if security[:want_assertions_encrypted] is true
7+
* Be able to skip destination validation
8+
* Improved inResponse validation on SAMLResponses and LogoutResponses
9+
* [#354] Allow scheme and domain to match ignoring case
10+
* [#363] Add support for multiple requested attributes
11+
312
### 1.4.1 (October 19, 2016)
413
* [#357](https://github.com/onelogin/ruby-saml/pull/357) Add EncryptedAttribute support. Improve decrypt method
514
* Allow multiple authn_context_decl_ref in settings

lib/onelogin/ruby-saml/settings.rb

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -151,15 +151,16 @@ def get_sp_key
151151
:compress_response => true,
152152
:soft => true,
153153
:security => {
154-
:authn_requests_signed => false,
155-
:logout_requests_signed => false,
156-
:logout_responses_signed => false,
157-
:want_assertions_signed => false,
158-
:want_name_id => false,
159-
:metadata_signed => false,
160-
:embed_sign => false,
161-
:digest_method => XMLSecurity::Document::SHA1,
162-
:signature_method => XMLSecurity::Document::RSA_SHA1
154+
:authn_requests_signed => false,
155+
:logout_requests_signed => false,
156+
:logout_responses_signed => false,
157+
:want_assertions_signed => false,
158+
:want_assertions_encrypted => false,
159+
:want_name_id => false,
160+
:metadata_signed => false,
161+
:embed_sign => false,
162+
:digest_method => XMLSecurity::Document::SHA1,
163+
:signature_method => XMLSecurity::Document::RSA_SHA1
163164
}.freeze,
164165
:double_quote_xml_attribute_values => false,
165166
}.freeze

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.4.1'
3+
VERSION = '1.4.2'
44
end
55
end

0 commit comments

Comments
 (0)