File tree Expand file tree Collapse file tree 5 files changed +16
-6
lines changed
Expand file tree Collapse file tree 5 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 11# Ruby SAML Changelog
2+ ### 1.15.0 (Jan 03, 2023)
3+ * [ #650 ] ( https://github.com/SAML-Toolkits/ruby-saml/pull/650 ) Replace strip! by strip on compute_digest method
4+ * [ #638 ] ( https://github.com/SAML-Toolkits/ruby-saml/pull/638 ) Fix dateTime format for the validUntil attribute of the generated metadata
5+ * [ #576 ] ( https://github.com/SAML-Toolkits/ruby-saml/pull/576 ) Support idp cert multi with string keys
6+ * [ #567 ] ( https://github.com/SAML-Toolkits/ruby-saml/pull/567 ) Improve Code quality
7+ * Add info about new repo, new maintainer, new security contact
8+ * Fix tests, Fix dependencies, Add ruby 3.2 test to the CI. Add coveralls support
9+
210### 1.14.0 (Feb 01, 2022)
311* [ #627 ] ( https://github.com/onelogin/ruby-saml/pull/627 ) Support escape downcasing for validating SLO Signatures of ADFS/Azure
412* [ #633 ] ( https://github.com/onelogin/ruby-saml/pull/633 ) Support ability to change ID prefix
Original file line number Diff line number Diff line change 1- Copyright (c) 2010-2016 OneLogin, Inc.
1+ Copyright (c) 2010-2022 OneLogin, Inc.
2+ Copyright (c) 2023 IAM Digital Services, SL.
23
34Permission is hereby granted, free of charge, to any person
45obtaining a copy of this software and associated documentation
Original file line number Diff line number Diff line change @@ -98,13 +98,13 @@ gem install ruby-saml
9898You may require the entire Ruby SAML gem:
9999
100100``` ruby
101- require ' saml-toolkit /ruby-saml'
101+ require ' onelogin /ruby-saml'
102102```
103103
104104or just the required components individually:
105105
106106``` ruby
107- require ' saml-toolkit /ruby-saml/authrequest'
107+ require ' onelogin /ruby-saml/authrequest'
108108```
109109
110110### Installation on Ruby 1.8.7
Original file line number Diff line number Diff line change 11module OneLogin
22 module RubySaml
3- VERSION = '1.14 .0'
3+ VERSION = '1.15 .0'
44 end
55end
Original file line number Diff line number Diff line change @@ -6,9 +6,10 @@ Gem::Specification.new do |s|
66 s . version = OneLogin ::RubySaml ::VERSION
77
88 s . required_rubygems_version = Gem ::Requirement . new ( ">= 0" ) if s . respond_to? :required_rubygems_version=
9- s . authors = [ "SAML Toolkit" ]
9+ s . authors = [ "SAML Toolkit" , "Sixto Martin" ]
10+ s . emais = [ 'contact@iamdigitalservices.com' , 'sixto.martin.garcia@gmail.com' ]
1011 s . date = Time . now . strftime ( "%Y-%m-%d" )
11- s . description = %q{SAML toolkit for Ruby on Rails }
12+ s . description = %q{SAML Ruby toolkit. Add SAML support to your Ruby software using this library }
1213 s . license = 'MIT'
1314 s . extra_rdoc_files = [
1415 "LICENSE" ,
You can’t perform that action at this time.
0 commit comments