We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97a47e2 commit b67e359Copy full SHA for b67e359
changelog.md
@@ -1,5 +1,14 @@
1
# RubySaml Changelog
2
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
+
12
### 1.4.1 (October 19, 2016)
13
* [#357](https://github.com/onelogin/ruby-saml/pull/357) Add EncryptedAttribute support. Improve decrypt method
14
* Allow multiple authn_context_decl_ref in settings
lib/onelogin/ruby-saml/settings.rb
@@ -151,15 +151,16 @@ def get_sp_key
151
:compress_response => true,
152
:soft => true,
153
: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
+ :authn_requests_signed => false,
+ :logout_requests_signed => false,
+ :logout_responses_signed => false,
+ :want_assertions_signed => false,
+ :want_assertions_encrypted => false,
+ :want_name_id => false,
+ :metadata_signed => false,
+ :embed_sign => false,
+ :digest_method => XMLSecurity::Document::SHA1,
163
+ :signature_method => XMLSecurity::Document::RSA_SHA1
164
}.freeze,
165
:double_quote_xml_attribute_values => false,
166
}.freeze
lib/onelogin/ruby-saml/version.rb
@@ -1,5 +1,5 @@
module OneLogin
module RubySaml
- VERSION = '1.4.1'
+ VERSION = '1.4.2'
end
0 commit comments