Skip to content

Commit 12c9f9c

Browse files
committed
1.1.0 release
1 parent 46c221f commit 12c9f9c

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
# Ruby SAML [![Build Status](https://secure.travis-ci.org/onelogin/ruby-saml.png)](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

33

4+
## Updating from 1.0.x to 1.1.X
5+
6+
Version `1.1` adds some improvements on signature validation and solves some namespace conflicts.
7+
8+
For more details, please review [the changelog](changelog.md).
9+
410
## Updating from 0.9.x to 1.0.X
511

612
Version `1.0` is a recommended update for all Ruby SAML users as it includes security fixes.
713

814
Version `1.0` adds security improvements like entity expansion limitation, more SAML message validations, and other important improvements like decrypt support.
915

10-
For more details, please review [the changelog](changelog.md).
11-
1216
### Important Changes
1317
Please note the `get_idp_metadata` method raises an exception when it is not able to fetch the idp metadata, so review your integration if you are using this functionality.
1418

changelog.md

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

3+
### 1.1.0 (October 27, 2015)
4+
* [#273](https://github.com/onelogin/ruby-saml/pull/273) Support SAMLResponse without ds:x509certificate
5+
* [#270](https://github.com/onelogin/ruby-saml/pull/270) Allow SAML elements to come from any namespace (at decryption process)
6+
* [#261](https://github.com/onelogin/ruby-saml/pull/261) Allow validate_subject_confirmation Response validation to be skipped
7+
* [258](https://github.com/onelogin/ruby-saml/pull/258) Fix allowed_clock_drift on the validate_session_expiration test
8+
* [#256](https://github.com/onelogin/ruby-saml/pull/256) Separate the create_authentication_xml_doc in two methods.
9+
* [#255](https://github.com/onelogin/ruby-saml/pull/255) Refactor validate signature.
10+
* [#254](https://github.com/onelogin/ruby-saml/pull/254) Handle empty URI references
11+
* [#251](https://github.com/onelogin/ruby-saml/pull/251) Support qualified and unqualified NameID in attributes
12+
* [#234](https://github.com/onelogin/ruby-saml/pull/234) Add explicit support for JRuby
13+
314
### 1.0.0 (June 30, 2015)
415
* [#247](https://github.com/onelogin/ruby-saml/pull/247) Avoid entity expansion (XEE attacks)
516
* [#246](https://github.com/onelogin/ruby-saml/pull/246) Fix bug generating Logout Response (issuer was at wrong order)

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

ruby-saml.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
1313
s.license = 'MIT'
1414
s.extra_rdoc_files = [
1515
"LICENSE",
16-
"README.md"
16+
"README.md"
1717
]
1818
s.files = `git ls-files`.split("\n")
1919
s.homepage = %q{http://github.com/onelogin/ruby-saml}

0 commit comments

Comments
 (0)