redox 1.10.0 → 1.12.0
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 +10 -0
- data/lib/redox/connection.rb +1 -0
- data/lib/redox/models/transaction.rb +1 -1
- data/lib/redox/version.rb +1 -1
- data/redox.gemspec +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: 77b0a18acb6cc68b5d6bd5457571fac0a3dbf6daf793ff71316066180f9ca8b4
|
|
4
|
+
data.tar.gz: 41f49d0c3030c99633cd68eb978e8e7011cb9b786d963423e13b02e91c364e36
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 107eee32465a4a4893fcad10c25013a7c3429e2323a196bb41e4accb2d16293cf756d2d5b45b08019d09e660d723775eff98bc1fcda2125dd93e3151cb5c86d6
|
|
7
|
+
data.tar.gz: a52ccb6e8c3f7c8569b1dddcb28a6679650423c3c2fc630e9f2f9967d1c37cf4e274005576c11efbd615c6afd8ecd698d0d9f8e06bd45a77ccdb723511add46c
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [1.12.0] - 2026-03-11
|
|
8
|
+
### Changed
|
|
9
|
+
- Updated httparty gemspec dependency
|
|
10
|
+
|
|
11
|
+
## [1.11.0] - 2025-12-30
|
|
12
|
+
### Added
|
|
13
|
+
- JSON compatibility with Rails 7.1's ActiveSupport
|
|
14
|
+
|
|
7
15
|
## [1.10.0] - 2025-11-14
|
|
8
16
|
### Added
|
|
9
17
|
- GitHub Actions CI support for Ruby 3.3 and 3.4
|
|
@@ -226,6 +234,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
226
234
|
### Added
|
|
227
235
|
- Initial Release
|
|
228
236
|
|
|
237
|
+
[1.12.0]: https://github.com/WeInfuse/redox/compare/v1.11.0...v1.12.0
|
|
238
|
+
[1.11.0]: https://github.com/WeInfuse/redox/compare/v1.10.0...v1.11.0
|
|
229
239
|
[1.10.0]: https://github.com/WeInfuse/redox/compare/v1.9.0...v1.10.0
|
|
230
240
|
[1.9.0]: https://github.com/WeInfuse/redox/compare/v1.8.7...v1.9.0
|
|
231
241
|
[1.8.7]: https://github.com/WeInfuse/redox/compare/v1.8.6...v1.8.7
|
data/lib/redox/connection.rb
CHANGED
|
@@ -13,6 +13,7 @@ module Redox
|
|
|
13
13
|
format :json
|
|
14
14
|
|
|
15
15
|
def request(endpoint: DEFAULT_ENDPOINT, body: nil, headers: {}, auth: true)
|
|
16
|
+
body = body.as_json if body.is_a?(Hash) && body.respond_to?(:as_json) # compatibility with Rails 7.1+
|
|
16
17
|
body = body.to_json if body.is_a?(Hash)
|
|
17
18
|
headers = auth_header.merge(headers) if auth
|
|
18
19
|
|
data/lib/redox/version.rb
CHANGED
data/redox.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: redox
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.12.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexander Clark
|
|
@@ -43,16 +43,16 @@ dependencies:
|
|
|
43
43
|
name: httparty
|
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
|
45
45
|
requirements:
|
|
46
|
-
- - "
|
|
46
|
+
- - ">="
|
|
47
47
|
- !ruby/object:Gem::Version
|
|
48
|
-
version:
|
|
48
|
+
version: 0.24.2
|
|
49
49
|
type: :runtime
|
|
50
50
|
prerelease: false
|
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
|
52
52
|
requirements:
|
|
53
|
-
- - "
|
|
53
|
+
- - ">="
|
|
54
54
|
- !ruby/object:Gem::Version
|
|
55
|
-
version:
|
|
55
|
+
version: 0.24.2
|
|
56
56
|
email:
|
|
57
57
|
- alexander.clark@weinfuse.com
|
|
58
58
|
- mike.crockett@weinfuse.com
|