savon 2.15.0 → 2.15.1
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 +4 -4
- data/CHANGELOG.md +8 -1
- data/README.md +10 -4
- data/lib/savon/version.rb +1 -1
- metadata +5 -5
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,9 +3,15 @@
|
|
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
|
+
|
6
11
|
## 2.15.0 (2024-02-10)
|
7
12
|
|
8
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
|
9
15
|
|
10
16
|
## 2.14.0 (2022-12-16)
|
11
17
|
|
@@ -16,6 +22,7 @@
|
|
16
22
|
## 2.13.1 (2022-09-04)
|
17
23
|
|
18
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)
|
19
26
|
|
20
27
|
## 2.13.0 (2022-08-03)
|
21
28
|
|
@@ -535,7 +542,7 @@ Combined release ticket: [#481](https://github.com/savonrb/savon/issues/481)
|
|
535
542
|
|
536
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).
|
537
544
|
Along with replacing core extensions with a proper implementation, Nori now contains a number of methods
|
538
|
-
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):
|
539
546
|
|
540
547
|
* The option whether to strip namespaces was moved to Nori.strip_namespaces
|
541
548
|
* You can disable "advanced typecasting" for SOAP response values
|
data/README.md
CHANGED
@@ -11,9 +11,9 @@ Heavy metal SOAP client
|
|
11
11
|
[](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.15.
|
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: 2024-
|
11
|
+
date: 2024-07-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nori
|
@@ -30,7 +30,7 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: '4'
|
34
34
|
- - "<"
|
35
35
|
- !ruby/object:Gem::Version
|
36
36
|
version: '5'
|
@@ -40,7 +40,7 @@ dependencies:
|
|
40
40
|
requirements:
|
41
41
|
- - ">="
|
42
42
|
- !ruby/object:Gem::Version
|
43
|
-
version:
|
43
|
+
version: '4'
|
44
44
|
- - "<"
|
45
45
|
- !ruby/object:Gem::Version
|
46
46
|
version: '5'
|
@@ -282,7 +282,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
282
282
|
requirements:
|
283
283
|
- - ">="
|
284
284
|
- !ruby/object:Gem::Version
|
285
|
-
version:
|
285
|
+
version: 3.0.0
|
286
286
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
287
287
|
requirements:
|
288
288
|
- - ">="
|