change_health 6.4.1 → 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: f3078cdf4fb2d282de47c8729d92580795f49d0683eba85889df51c96cca3040
4
- data.tar.gz: 4094c1b12885436f0b3a5f4031093eef429ffe502096195daee9a84d0ba73f75
3
+ metadata.gz: 61409ea3f26d196747aa80536ebbf59527f762f324b23a7f944e5cef37082f02
4
+ data.tar.gz: e5c99b3af2b504c2cb8ec673af9ef02a2213c53aa24f174012454ae919cb16ab
5
5
  SHA512:
6
- metadata.gz: '063177931fed5fb4a0dad4aaff49f29b830312062f62b6019026a72f7ec52c402c4b610c63513078dde6c756f3504d335f27c5b0c670888864f8bdb303ae5bd7'
7
- data.tar.gz: 2500bd2ed193c5904ef9ff241aa717028d022a5dd7de483aaddc6521c9fa5234a06af08fbc2f9e37810374d24015285a032fc34bf31e232011db870c653fe4a2
6
+ metadata.gz: 3c3e03a3096e06b11fe8b80ea4c98473752bb24c7dd10e6e2061d2cf77ec8062281c893a0fd23e3b938830ddb1c7e8b9e594febf8e6c5ddf8348b0fdb918a1ad
7
+ data.tar.gz: 78dea06cee1a457422bdeec1bc235586ca8a4bc71a66eeb24183957755669c705a7233bd5db578a40df3774e1426d304effc35c5b0f702b4a8bbfaaf71f01e8f
data/CHANGELOG.md CHANGED
@@ -5,6 +5,18 @@ 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.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
15
+
16
+ ### Added
17
+
18
+ * CI support for Ruby 3.3, 3.4
19
+
8
20
  # [6.4.1] - 2025-11-05
9
21
 
10
22
  ### Bug Fix
@@ -816,6 +828,8 @@ Added the ability to hit professional claim submission API. For more details, se
816
828
  * Authentication
817
829
  * Configuration
818
830
 
831
+ [6.5.1]: https://github.com/WeInfuse/change_health/compare/v6.5.0...v6.5.1
832
+ [6.5.0]: https://github.com/WeInfuse/change_health/compare/v6.4.1...v6.5.0
819
833
  [6.4.1]: https://github.com/WeInfuse/change_health/compare/v6.4.0...v6.4.1
820
834
  [6.4.0]: https://github.com/WeInfuse/change_health/compare/v6.3.0...v6.4.0
821
835
  [6.3.0]: https://github.com/WeInfuse/change_health/compare/v6.2.0...v6.3.0
@@ -33,6 +33,7 @@ Gem::Specification.new do |spec|
33
33
  spec.require_paths = ['lib']
34
34
  spec.licenses = ['MIT']
35
35
 
36
+ spec.add_dependency 'base64'
36
37
  spec.add_dependency 'hashie', '~> 3.5'
37
38
  spec.add_dependency 'httparty', '~> 0.21'
38
39
  end
@@ -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.4.1'
4
+ VERSION = '6.5.1'
5
5
  end
metadata CHANGED
@@ -1,15 +1,28 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: change_health
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.4.1
4
+ version: 6.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Crockett
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2025-11-05 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: base64
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '0'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: '0'
13
26
  - !ruby/object:Gem::Dependency
14
27
  name: hashie
15
28
  requirement: !ruby/object:Gem::Requirement
@@ -38,7 +51,6 @@ dependencies:
38
51
  - - "~>"
39
52
  - !ruby/object:Gem::Version
40
53
  version: '0.21'
41
- description:
42
54
  email:
43
55
  - mike.crockett@weinfuse.com
44
56
  executables: []
@@ -119,7 +131,6 @@ licenses:
119
131
  metadata:
120
132
  allowed_push_host: https://rubygems.org
121
133
  rubygems_mfa_required: 'true'
122
- post_install_message:
123
134
  rdoc_options: []
124
135
  require_paths:
125
136
  - lib
@@ -134,8 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
134
145
  - !ruby/object:Gem::Version
135
146
  version: '0'
136
147
  requirements: []
137
- rubygems_version: 3.3.27
138
- signing_key:
148
+ rubygems_version: 3.6.9
139
149
  specification_version: 4
140
150
  summary: Ruby wrapper for the ChangeHealth API
141
151
  test_files: []