saml2 2.2.2 → 2.2.3

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
  SHA256:
3
- metadata.gz: 687990acd75a2e730688d419f75bccd0669558c0d78ea8ca6d87972fa224bf0c
4
- data.tar.gz: 92be713519d789f949283bbbc8bae83657fb2adec3003f9b429a2799633ff8e0
3
+ metadata.gz: 4738dcfc5520adfcf8de16d6bc1d5416fba979d3d98245846da68f08732db743
4
+ data.tar.gz: 93437ef60321d3f7ceef5927e6849df7853d9b905c73e0fe3c253ac5eccf6f80
5
5
  SHA512:
6
- metadata.gz: 20fccb0e981ea071a03db8e5d85fdfdb5d02aa83fe03981da1a158fcb844ca38d9faff6d674f4565e479fad56dfede6118e627fbd8e10706f4e09af045d1da16
7
- data.tar.gz: 58a6c4626c280b455aaaf8fb9a8e5991f4af25648c14980af91b6ea7cfc30cb852fef40cbf1c68578eec498d379501125e1811411de582429e2756350703b42e
6
+ metadata.gz: 771cd1a6c06c4246440b31efdeca1d65fce49e5d43809a65e74917b97e1543727deaa280d9bc3ba7f286fdbe9fe88fbdf566d9949988f1067e8be98c3adba0a5
7
+ data.tar.gz: 3a21a953e2f9d4141124e58b2680877acbcd93e1100cb7444f058a71b2a07ef9a54fed2ed84265b92d50e064ae5c9354c53a22b57aff5f0cfdaab826c63d8bfa
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SAML2
4
- VERSION = '2.2.2'
4
+ VERSION = '2.2.3'
5
5
  end
@@ -9,7 +9,7 @@ This document and the information contained herein is provided on an “AS IS”
9
9
  -->
10
10
  <xsd:schema targetNamespace="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" elementFormDefault="qualified" attributeFormDefault="unqualified" blockDefault="#all" version="0.2">
11
11
  <xsd:import namespace="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" schemaLocation="oasis-200401-wss-wssecurity-utility-1.0.xsd"/>
12
- <xsd:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="http://www.w3.org/2001/xml.xsd"/>
12
+ <xsd:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="xml.xsd"/>
13
13
  <xsd:import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="xmldsig-core-schema.xsd"/>
14
14
  <xsd:complexType name="AttributedString">
15
15
  <xsd:annotation>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: saml2
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.2
4
+ version: 2.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cody Cutrer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-24 00:00:00.000000000 Z
11
+ date: 2018-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -236,44 +236,44 @@ required_rubygems_version: !ruby/object:Gem::Requirement
236
236
  version: '0'
237
237
  requirements: []
238
238
  rubyforge_project:
239
- rubygems_version: 2.7.3
239
+ rubygems_version: 2.7.6
240
240
  signing_key:
241
241
  specification_version: 4
242
242
  summary: SAML 2.0 Library
243
243
  test_files:
244
- - spec/fixtures/authnrequest.xml
244
+ - spec/spec_helper.rb
245
+ - spec/lib/logout_response_spec.rb
246
+ - spec/lib/indexed_object_spec.rb
247
+ - spec/lib/attribute_spec.rb
248
+ - spec/lib/entity_spec.rb
249
+ - spec/lib/attribute_consuming_service_spec.rb
250
+ - spec/lib/message_spec.rb
251
+ - spec/lib/response_spec.rb
252
+ - spec/lib/logout_request_spec.rb
253
+ - spec/lib/conditions_spec.rb
254
+ - spec/lib/bindings/http_redirect_spec.rb
255
+ - spec/lib/service_provider_spec.rb
256
+ - spec/lib/identity_provider_spec.rb
257
+ - spec/lib/authn_request_spec.rb
258
+ - spec/fixtures/test3-response.xml
259
+ - spec/fixtures/service_provider.xml
260
+ - spec/fixtures/response_with_attribute_signed.xml
261
+ - spec/fixtures/response_signed.xml
262
+ - spec/fixtures/xml_signature_wrapping_attack_response_nameid.xml
263
+ - spec/fixtures/response_tampered_signature.xml
264
+ - spec/fixtures/xml_missigned_assertion.xml
245
265
  - spec/fixtures/certificate.pem
246
266
  - spec/fixtures/entities.xml
267
+ - spec/fixtures/xml_signature_wrapping_attack_duplicate_ids.xml
268
+ - spec/fixtures/othercertificate.pem
269
+ - spec/fixtures/xslt-transform-response.xml
270
+ - spec/fixtures/response_with_encrypted_assertion.xml
247
271
  - spec/fixtures/external-uri-reference-response.xml
272
+ - spec/fixtures/authnrequest.xml
273
+ - spec/fixtures/xml_signature_wrapping_attack_response_attributes.xml
248
274
  - spec/fixtures/FederationMetadata.xml
249
275
  - spec/fixtures/identity_provider.xml
250
- - spec/fixtures/othercertificate.pem
251
- - spec/fixtures/privatekey.key
252
- - spec/fixtures/response_signed.xml
253
276
  - spec/fixtures/response_tampered_certificate.xml
254
- - spec/fixtures/response_tampered_signature.xml
255
- - spec/fixtures/response_with_attribute_signed.xml
256
- - spec/fixtures/response_with_encrypted_assertion.xml
257
- - spec/fixtures/service_provider.xml
258
- - spec/fixtures/test3-response.xml
259
- - spec/fixtures/test6-response.xml
260
277
  - spec/fixtures/test7-response.xml
261
- - spec/fixtures/xml_missigned_assertion.xml
262
- - spec/fixtures/xml_signature_wrapping_attack_duplicate_ids.xml
263
- - spec/fixtures/xml_signature_wrapping_attack_response_attributes.xml
264
- - spec/fixtures/xml_signature_wrapping_attack_response_nameid.xml
265
- - spec/fixtures/xslt-transform-response.xml
266
- - spec/lib/attribute_consuming_service_spec.rb
267
- - spec/lib/attribute_spec.rb
268
- - spec/lib/authn_request_spec.rb
269
- - spec/lib/bindings/http_redirect_spec.rb
270
- - spec/lib/conditions_spec.rb
271
- - spec/lib/entity_spec.rb
272
- - spec/lib/identity_provider_spec.rb
273
- - spec/lib/indexed_object_spec.rb
274
- - spec/lib/logout_request_spec.rb
275
- - spec/lib/logout_response_spec.rb
276
- - spec/lib/message_spec.rb
277
- - spec/lib/response_spec.rb
278
- - spec/lib/service_provider_spec.rb
279
- - spec/spec_helper.rb
278
+ - spec/fixtures/test6-response.xml
279
+ - spec/fixtures/privatekey.key