libsaml 2.18.0 → 2.18.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 73a0241659419df0fec12c8812aac9f42c7b82f9
4
- data.tar.gz: 36dbc7b1e49ead6ec16029060b1025aadb2ee23d
3
+ metadata.gz: 0a7d5e9cb4851e47323b178b9b7b86eab512657c
4
+ data.tar.gz: 9f10c4a7b73c0d83acdca24bf1782945793da11a
5
5
  SHA512:
6
- metadata.gz: 93715c9835434ee25ba4df7da290041b142fa379e0a68a3e197e36974f36fb78aedacb75d52d81637623f0447b19dd8109d02be9c28ce2b2d0af8c4b716fe068
7
- data.tar.gz: 5ef0339348b56368adb47c585a0d74b62cf641bc9fb170be7c4171aebae6e2cf4eed45e22c1acf8745af07915528de4a0c62e8ba26046461f906b6b0abb1baed
6
+ metadata.gz: 966b8d7146c8d6c1b5b26565be447e2d3ca9bdd5e7890323b9e0705f45c608a5214bf34279dda826643e631e6f3d9a365a9a64e1530dbb13bfae2398a9267aa0
7
+ data.tar.gz: 43a3170322fb2bd5e5ff4e210f352f688a8a38dfa59ec26daa25cceebaaedec2c4ffe48dfc4ac9535cd6e058e30fa23379d336266fdf1a35698544dd8b123c96
@@ -125,6 +125,7 @@ module Saml
125
125
  require 'saml/elements/encrypted_attribute'
126
126
  require 'saml/elements/name_id'
127
127
  require 'saml/elements/name_id_format'
128
+ require 'saml/elements/session_index'
128
129
  require 'saml/elements/encrypted_id'
129
130
  require 'saml/elements/attribute_value'
130
131
  require 'saml/elements/attribute'
@@ -0,0 +1,13 @@
1
+ module Saml
2
+ module Elements
3
+ class SessionIndex
4
+ include Saml::Base
5
+
6
+ tag 'SessionIndex'
7
+ register_namespace 'samlp', Saml::SAMLP_NAMESPACE
8
+ namespace 'samlp'
9
+
10
+ content :value, String
11
+ end
12
+ end
13
+ end
@@ -9,6 +9,7 @@ module Saml
9
9
  attribute :not_on_or_after, Time, :tag => "NotOnOrAfter", :on_save => lambda { |val| val.utc.xmlschema if val.present? }
10
10
 
11
11
  element :name_id, String, :tag => "NameID", :namespace => 'saml'
12
+ element :session_index, String, :tag => "SessionIndex", :namespace => 'samlp'
12
13
 
13
14
  validates :name_id, :presence => true
14
15
  end
@@ -1,3 +1,3 @@
1
1
  module Saml
2
- VERSION = "2.18.0"
2
+ VERSION = "2.18.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libsaml
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.18.0
4
+ version: 2.18.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benoist Claassen
@@ -187,6 +187,7 @@ files:
187
187
  - lib/saml/elements/samlp_extensions.rb
188
188
  - lib/saml/elements/service_description.rb
189
189
  - lib/saml/elements/service_name.rb
190
+ - lib/saml/elements/session_index.rb
190
191
  - lib/saml/elements/signature.rb
191
192
  - lib/saml/elements/signature/canonicalization_method.rb
192
193
  - lib/saml/elements/signature/digest_method.rb