valvat 1.1.1 → 1.1.2

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: a46ea169067e8ad3077440f355850677b7da8d8a2ce4cf64f66f6ab00f53094d
4
- data.tar.gz: e3e3155fc732de64002519b5b542f4f9d663f0d8fa868c4233aa03ad90e1cb65
3
+ metadata.gz: c16a7d36925ce61bf367e4770331dff3e41b76b5cfe21699f04379086e73d55b
4
+ data.tar.gz: bd011d1f238122ffe21ebfc882707e54de6e56a9fb97c90a2836d4e5d20ee189
5
5
  SHA512:
6
- metadata.gz: 4ddb01f926a6d1c6e05e653aff20e81eaaa9249e70ea63fbd6a06f0519863ae410e6873a1948947c90bf4ad64787478a0f8c3ff74ffb0f16fe08705a1e5d5c3b
7
- data.tar.gz: 9a1dd08067a21ce1f0b1663a4cdc8e92cc91a2edc9bf959c294674f5a97dc1bd87375ca27c0f88330bedaf628886cc2cfc27ae3ec71c74e2077068d3db7e1052
6
+ metadata.gz: 45c3632f628083f4113e90eef117cef893cc4a9742fbbfaacdffa2106c6585964949143af2591d0ad13c81a7657222d591a67119a3b4a1cc3c9e61a17765607a
7
+ data.tar.gz: 2ef6fe227f4726abbd3952befeabb82abffad26ce8f70e30da394956d14818208e45bd05a42870c68fc9d17b716c112fa304a16fbec12f9cf53fc7331d29c05d
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGES.md CHANGED
@@ -1,7 +1,13 @@
1
1
 
2
2
  ### dev
3
3
 
4
- [full changelog](http://github.com/yolk/valvat/compare/v1.1.1...master)
4
+ [full changelog](http://github.com/yolk/valvat/compare/v1.1.2...master)
5
+
6
+ ### 1.1.0 / 2021-10-29
7
+
8
+ [full changelog](http://github.com/yolk/valvat/compare/v1.1.1...v1.1.2)
9
+
10
+ * Fixed SOAPAction error (#105) (by [Ľubo ](https://github.com/lubosch))
5
11
 
6
12
  ### 1.1.0 / 2021-07-15
7
13
 
@@ -15,7 +15,7 @@ class Valvat
15
15
 
16
16
  def perform
17
17
  Response.new(
18
- client.call(action, message: message, message_tag: message_tag)
18
+ client.call(action, message: message, message_tag: message_tag, soap_action: nil)
19
19
  )
20
20
  rescue Savon::SOAPFault => e
21
21
  Fault.new(e)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class Valvat
4
- VERSION = '1.1.1'
4
+ VERSION = '1.1.2'
5
5
  end
@@ -55,7 +55,9 @@ describe Valvat::Utils do
55
55
 
56
56
  it 'removes special chars' do
57
57
  expect(described_class.normalize('DE.345-889_00:3,;')).to eql('DE345889003')
58
- expect(described_class.normalize("→ DE·Ö34588 9003\0 ☺")).to eql('→DEÖ345889003☺')
58
+ expect(described_class.normalize("→ DE·Ö34588 9003\0 ☺")).to eql(
59
+ RUBY_ENGINE == 'truffleruby' ? 'DEÖ345889003' : '→DEÖ345889003☺'
60
+ )
59
61
  end
60
62
  end
61
63
 
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: valvat
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sebastian Munz
@@ -34,7 +34,7 @@ cert_chain:
34
34
  KzzULF0bF9oNpXwBEamlH2myNb19u1W8ijobQ7Y19ca8UFHr5LI32ZW5Zlmep8je
35
35
  vb+o07oLRx3t2T/EO4DZ1w==
36
36
  -----END CERTIFICATE-----
37
- date: 2021-07-15 00:00:00.000000000 Z
37
+ date: 2021-10-29 00:00:00.000000000 Z
38
38
  dependencies:
39
39
  - !ruby/object:Gem::Dependency
40
40
  name: savon
metadata.gz.sig CHANGED
Binary file