change_health 6.5.0 → 6.5.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/lib/change_health/connection.rb +1 -1
- data/lib/change_health/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 61409ea3f26d196747aa80536ebbf59527f762f324b23a7f944e5cef37082f02
|
|
4
|
+
data.tar.gz: e5c99b3af2b504c2cb8ec673af9ef02a2213c53aa24f174012454ae919cb16ab
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c3e03a3096e06b11fe8b80ea4c98473752bb24c7dd10e6e2061d2cf77ec8062281c893a0fd23e3b938830ddb1c7e8b9e594febf8e6c5ddf8348b0fdb918a1ad
|
|
7
|
+
data.tar.gz: 78dea06cee1a457422bdeec1bc235586ca8a4bc71a66eeb24183957755669c705a7233bd5db578a40df3774e1426d304effc35c5b0f702b4a8bbfaaf71f01e8f
|
data/CHANGELOG.md
CHANGED
|
@@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
# [6.5.
|
|
8
|
+
# [6.5.1] - 2026-01-09
|
|
9
|
+
|
|
10
|
+
### Bug Fix
|
|
11
|
+
|
|
12
|
+
* Fix bug to stop Rails's JSON serialization being able to be used over Ruby's
|
|
13
|
+
|
|
14
|
+
# [6.5.0] - 2025-11-14
|
|
9
15
|
|
|
10
16
|
### Added
|
|
11
17
|
|
|
@@ -822,6 +828,7 @@ Added the ability to hit professional claim submission API. For more details, se
|
|
|
822
828
|
* Authentication
|
|
823
829
|
* Configuration
|
|
824
830
|
|
|
831
|
+
[6.5.1]: https://github.com/WeInfuse/change_health/compare/v6.5.0...v6.5.1
|
|
825
832
|
[6.5.0]: https://github.com/WeInfuse/change_health/compare/v6.4.1...v6.5.0
|
|
826
833
|
[6.4.1]: https://github.com/WeInfuse/change_health/compare/v6.4.0...v6.4.1
|
|
827
834
|
[6.4.0]: https://github.com/WeInfuse/change_health/compare/v6.3.0...v6.4.0
|
|
@@ -27,7 +27,7 @@ module ChangeHealth
|
|
|
27
27
|
auth_headers: nil
|
|
28
28
|
)
|
|
29
29
|
base_uri ||= Connection.base_uri
|
|
30
|
-
body = body
|
|
30
|
+
body = JSON.dump(body) if body.is_a?(Hash)
|
|
31
31
|
headers = {} if headers.nil?
|
|
32
32
|
headers = auth_header(base_uri: base_uri, auth_headers: auth_headers).merge(headers) if auth
|
|
33
33
|
|