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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e25faa14f67e75cfaa712fcb9ab50d1dba583d3c219807a10c240009124b238e
4
- data.tar.gz: a3a5466560f69b008ee1f13755621865654dbccabd351b8acf1496c202f54295
3
+ metadata.gz: 61409ea3f26d196747aa80536ebbf59527f762f324b23a7f944e5cef37082f02
4
+ data.tar.gz: e5c99b3af2b504c2cb8ec673af9ef02a2213c53aa24f174012454ae919cb16ab
5
5
  SHA512:
6
- metadata.gz: 4d7c3d8427e50c0491a6073cbd06060fba9ac8ebe8013105511143de127758239dc7b4db4dbc5d38e8564327f840e3f85acd05f6ae562101ded3e4a6907919af
7
- data.tar.gz: 3061179186eea6f4f95d2ee7d667ee673454327264195116564cd355aa9dd21a258d7ea24b870af84efe325273b5e76b99647330b5c08831200b528072025452
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.0] - 2025-11-114
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.to_json if body.is_a?(Hash)
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ChangeHealth
4
- VERSION = '6.5.0'
4
+ VERSION = '6.5.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: change_health
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.5.0
4
+ version: 6.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Crockett