Skip to content

Commit 88882e3

Browse files
committed
Prepare release 1.15.0
1 parent ced6595 commit 88882e3

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
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

LICENSE

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
Copyright (c) 2010-2016 OneLogin, Inc.
1+
Copyright (c) 2010-2022 OneLogin, Inc.
2+
Copyright (c) 2023 IAM Digital Services, SL.
23

34
Permission is hereby granted, free of charge, to any person
45
obtaining a copy of this software and associated documentation

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,13 @@ gem install ruby-saml
9898
You may require the entire Ruby SAML gem:
9999

100100
```ruby
101-
require 'saml-toolkit/ruby-saml'
101+
require 'onelogin/ruby-saml'
102102
```
103103

104104
or 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

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

ruby-saml.gemspec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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+
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",

0 commit comments

Comments
 (0)