saml-kit 1.0.30 → 1.0.31

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: '08c9447b2a5b078540115082a8226ce5e8f12dd8'
4
- data.tar.gz: 4eb5fb45beab693ff98a2a7a791b81bdbe03976c
3
+ metadata.gz: 7b715995b6b91d7666c906d6d7e0c280ba3b6c83
4
+ data.tar.gz: 293b70ea861c807cc5324fbcb6f47b5a3d78e117
5
5
  SHA512:
6
- metadata.gz: cdd24fc54b69e18c2e3740843821ab33842daef7bd96088fa8ef2936864e159e61bfb1bb9a90dce9290d171c1ee31f2f42a418b50a99468f13cf765cb126946c
7
- data.tar.gz: 8dcd9feddfd42abd013add5a9df3a7cf87e91c69c02ef17454b8e61b47dbe12f22f716b642d982e8fad15eb8fd0c79ff61811368f39adae9185714cdcf70cb9c
6
+ metadata.gz: d4e61a1b4d67b00379b5d2c6add15d5ea61062873196207a53a49fbe842af7d77127c370763daece236791f9d595b0356acee7654c1c2b8c9243ecf31ae1e90a
7
+ data.tar.gz: 42e2a80ffdf050f1a4f449d0d6bea8dfabd5b98c81b2bd3653e5abafcd790e8d80d09929f9f012171e7b62cce4d28cfa35fb26bc6c4dfa573b2410f538ec8e84
data/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
- Version 1.0.30
1
+ Version 1.0.31
2
2
  # Changelog
3
3
  All notable changes to this project will be documented in this file.
4
4
 
@@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
  ## [Unreleased]
9
9
  - nil
10
10
 
11
+ ## [1.0.31] - 2019-04-17
12
+ ### Changed
13
+ - Rescue from all decryption errors
14
+
11
15
  ## [1.0.30] - 2019-04-07
12
16
  ### Changed
13
17
  - change xml-kit dependency to minimum 0.3.0
@@ -65,7 +69,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
65
69
  ### Removed
66
70
  - Removed optional SessionNotOnOrAfter attribute from AuthnStatement.
67
71
 
68
- [Unreleased]: https://github.com/saml-kit/saml-kit/compare/v1.0.30...HEAD
72
+ [Unreleased]: https://github.com/saml-kit/saml-kit/compare/v1.0.31...HEAD
73
+ [1.0.31]: https://github.com/saml-kit/saml-kit/compare/v1.0.30...v1.0.31
69
74
  [1.0.30]: https://github.com/saml-kit/saml-kit/compare/v1.0.29...v1.0.30
70
75
  [1.0.29]: https://github.com/saml-kit/saml-kit/compare/v1.0.28...v1.0.29
71
76
  [1.0.28]: https://github.com/saml-kit/saml-kit/compare/v1.0.27...v1.0.28
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- saml-kit (1.0.30)
4
+ saml-kit (1.0.31)
5
5
  activemodel (>= 4.2.0)
6
6
  net-hippie (~> 0.1)
7
7
  xml-kit (>= 0.3.0, < 1.0.0)
@@ -106,7 +106,7 @@ module Saml
106
106
  return unless @encrypted
107
107
 
108
108
  @to_nokogiri = decryptor.decrypt_node(encrypted_assertion)
109
- rescue Xml::Kit::DecryptionError => error
109
+ rescue StandardError => error
110
110
  @cannot_decrypt = true
111
111
  Saml::Kit.logger.error(error)
112
112
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Saml
4
4
  module Kit
5
- VERSION = '1.0.30'.freeze
5
+ VERSION = '1.0.31'.freeze
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: saml-kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.30
4
+ version: 1.0.31
5
5
  platform: ruby
6
6
  authors:
7
7
  - mo khan
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-04-08 00:00:00.000000000 Z
11
+ date: 2019-04-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel
@@ -344,7 +344,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
344
344
  version: '0'
345
345
  requirements: []
346
346
  rubyforge_project:
347
- rubygems_version: 2.4.5.5
347
+ rubygems_version: 2.4.5.1
348
348
  signing_key:
349
349
  specification_version: 4
350
350
  summary: A simple toolkit for working with SAML.