File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 11# RubySaml Changelog
22
3+ ### 1.12.1 (Apr 05, 2022)
4+ * Fix XPath typo incompatible with Rexml 3.2.5
5+ * Refactor GCM support
6+
37### 1.12.0 (Feb 18, 2021)
48* Support AES-128-GCM, AES-192-GCM, and AES-256-GCM encryptions
59* Parse & return SLO ResponseLocation in IDPMetadataParser & Settings
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ def ==(other)
124124 def fetch ( name )
125125 attributes . each_key do |attribute_key |
126126 if name . is_a? ( Regexp )
127- if name . method_exists ? :match?
127+ if name . respond_to ? :match?
128128 return self [ attribute_key ] if name . match? ( attribute_key )
129129 else
130130 return self [ attribute_key ] if name . match ( attribute_key )
Original file line number Diff line number Diff line change 11module OneLogin
22 module RubySaml
3- VERSION = '1.12.0 '
3+ VERSION = '1.12.1 '
44 end
55end
You can’t perform that action at this time.
0 commit comments