savon 2.14.0 → 2.15.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -1
- data/README.md +10 -4
- data/lib/savon/version.rb +1 -1
- metadata +24 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df435a9b3a37060f3dbbfe5ba2f8b36c33ad66b6474afa08771396b6812fb4b3
|
4
|
+
data.tar.gz: ac8cccabad1588894528b1d2ad073e576224a6b4a5b25d10a0437fb5a807e538
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 79a1dd54bd1d171afc117927c9b5419f7c6d2e2a5e2b1cfad0072397e786f5932bb3180b40f7ea9d55a08194c1554afddf3efe558959157cdcc7e8b13243beb9
|
7
|
+
data.tar.gz: 9e9f944a60f6f655da4abfed31020befb23a9823bb3437ccb46e527b1b8e091fac81c776fc3057f88985a80bbae3c8bb9746bf8c1e9c3966ac8992bc0ee7f936
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,16 @@
|
|
3
3
|
## Unreleased
|
4
4
|
* Add your PR changelog line here
|
5
5
|
|
6
|
+
## 2.15.1 (2024-07-08)
|
7
|
+
|
8
|
+
* Ruby 3.0+ is required in the gemspec.
|
9
|
+
* Require httpi 4.x - older versions rely on `Rack::Utils::HeaderHash` which is removed in Rack 3.0.
|
10
|
+
|
11
|
+
## 2.15.0 (2024-02-10)
|
12
|
+
|
13
|
+
* Drop support for ruby 2.7 and below. Added Ruby 3.2 and 3.3 to test matrix.
|
14
|
+
* Allows wasabi v5.x, which now supports faraday
|
15
|
+
|
6
16
|
## 2.14.0 (2022-12-16)
|
7
17
|
|
8
18
|
* BC BREAKING Fix: [#985](https://github.com/savonrb/savon/pull/985) Renamed `Savon::Response#hash` to `Savon::Response#full_hash`
|
@@ -12,6 +22,7 @@
|
|
12
22
|
## 2.13.1 (2022-09-04)
|
13
23
|
|
14
24
|
* Fix: [#977](https://github.com/savonrb/savon/pull/977) Prevent "xmlns:xmlns" namespace but allow "xmlns" namespace.
|
25
|
+
* Change: Require Ruby 2.7.0+ in the gemspec. [0e0d695f](https://github.com/savonrb/savon/commit/0e0d695f463b719fa0fef0f58a0404b1228957f0)
|
15
26
|
|
16
27
|
## 2.13.0 (2022-08-03)
|
17
28
|
|
@@ -531,7 +542,7 @@ Combined release ticket: [#481](https://github.com/savonrb/savon/issues/481)
|
|
531
542
|
|
532
543
|
* `Hash#map_soap_response` and some of its helpers are moved to [Nori v1.0.0](http://rubygems.org/gems/nori/versions/1.0.0).
|
533
544
|
Along with replacing core extensions with a proper implementation, Nori now contains a number of methods
|
534
|
-
for [configuring its default behavior](https://github.com/savonrb/nori/blob/
|
545
|
+
for [configuring its default behavior](https://github.com/savonrb/nori/blob/main/CHANGELOG.md):
|
535
546
|
|
536
547
|
* The option whether to strip namespaces was moved to Nori.strip_namespaces
|
537
548
|
* You can disable "advanced typecasting" for SOAP response values
|
data/README.md
CHANGED
@@ -11,9 +11,9 @@ Heavy metal SOAP client
|
|
11
11
|
[![Coverage Status](https://coveralls.io/repos/savonrb/savon/badge.svg)](https://coveralls.io/r/savonrb/savon)
|
12
12
|
|
13
13
|
|
14
|
-
##
|
14
|
+
## Installation
|
15
15
|
|
16
|
-
Savon
|
16
|
+
Savon is available through [Rubygems](http://rubygems.org/gems/savon) and can be installed via:
|
17
17
|
|
18
18
|
```
|
19
19
|
$ gem install savon
|
@@ -22,7 +22,7 @@ $ gem install savon
|
|
22
22
|
or add it to your Gemfile like this:
|
23
23
|
|
24
24
|
```
|
25
|
-
gem 'savon', '~> 2.
|
25
|
+
gem 'savon', '~> 2.15.0'
|
26
26
|
```
|
27
27
|
|
28
28
|
## Usage example
|
@@ -54,12 +54,18 @@ For more examples, you should check out the
|
|
54
54
|
|
55
55
|
## Ruby version support
|
56
56
|
|
57
|
-
|
57
|
+
Every savon release is tested with contemporary supported versions of ruby. Historical compatibility information:
|
58
|
+
|
59
|
+
* `main` - same support as Ruby
|
60
|
+
* 2.15.x - MRI 3.0, 3.1, 3.2, 3.3
|
61
|
+
* 2.13.x, 2.14.x - MRI 2.7, 3.0, 3.1
|
58
62
|
* 2.12.x - MRI 2.2, 2.3, 2.4, 2.5
|
59
63
|
* 2.11.x - MRI 2.0, 2.1, 2.2, and 2.3
|
60
64
|
|
61
65
|
If you are running MRI 1.8.7, try a 2.6.x release.
|
62
66
|
|
67
|
+
Most changes are not backported to older versions of savon, or unsupported ruby versions.
|
68
|
+
|
63
69
|
## Running tests
|
64
70
|
|
65
71
|
```bash
|
data/lib/savon/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: savon
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.15.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Harrington
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-07-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nori
|
@@ -30,28 +30,40 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: '4'
|
34
|
+
- - "<"
|
35
|
+
- !ruby/object:Gem::Version
|
36
|
+
version: '5'
|
34
37
|
type: :runtime
|
35
38
|
prerelease: false
|
36
39
|
version_requirements: !ruby/object:Gem::Requirement
|
37
40
|
requirements:
|
38
41
|
- - ">="
|
39
42
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
43
|
+
version: '4'
|
44
|
+
- - "<"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '5'
|
41
47
|
- !ruby/object:Gem::Dependency
|
42
48
|
name: wasabi
|
43
49
|
requirement: !ruby/object:Gem::Requirement
|
44
50
|
requirements:
|
45
|
-
- - "
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '3.7'
|
54
|
+
- - "<"
|
46
55
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
56
|
+
version: '6'
|
48
57
|
type: :runtime
|
49
58
|
prerelease: false
|
50
59
|
version_requirements: !ruby/object:Gem::Requirement
|
51
60
|
requirements:
|
52
|
-
- - "
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '3.7'
|
64
|
+
- - "<"
|
53
65
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
66
|
+
version: '6'
|
55
67
|
- !ruby/object:Gem::Dependency
|
56
68
|
name: akami
|
57
69
|
requirement: !ruby/object:Gem::Requirement
|
@@ -260,7 +272,8 @@ files:
|
|
260
272
|
homepage: http://savonrb.com
|
261
273
|
licenses:
|
262
274
|
- MIT
|
263
|
-
metadata:
|
275
|
+
metadata:
|
276
|
+
rubygems_mfa_required: 'true'
|
264
277
|
post_install_message:
|
265
278
|
rdoc_options: []
|
266
279
|
require_paths:
|
@@ -269,14 +282,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
269
282
|
requirements:
|
270
283
|
- - ">="
|
271
284
|
- !ruby/object:Gem::Version
|
272
|
-
version:
|
285
|
+
version: 3.0.0
|
273
286
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
274
287
|
requirements:
|
275
288
|
- - ">="
|
276
289
|
- !ruby/object:Gem::Version
|
277
290
|
version: '0'
|
278
291
|
requirements: []
|
279
|
-
rubygems_version: 3.
|
292
|
+
rubygems_version: 3.5.6
|
280
293
|
signing_key:
|
281
294
|
specification_version: 4
|
282
295
|
summary: Heavy metal SOAP client
|