change_health 6.1.2 → 6.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5b3aeaa4ef2ca260c28862838a67cfb270d8350725af6aed958c519ba9371c3e
4
- data.tar.gz: 0f27cc0e7f26fdb1a1fca6099dfcb06d903d202c725bd1c1ac3cebe3e3315d40
3
+ metadata.gz: 2d63bd61580653bb0b97d7dd39222813f3a278b42a3eaf51e63684f024988f66
4
+ data.tar.gz: 5745339680f9c90c7000cc6fc0459b6c84eee5bf58ad953ec86449a8ee6699be
5
5
  SHA512:
6
- metadata.gz: 49d4bbcf780a360836f34792728be99048f1c65988909793c5a0d01ab399aa6e28a044a913f9c813c903d1df5d9e487907b2a09f5f663a56246df262d334185d
7
- data.tar.gz: 83af98e96baa90258668886c8ca92417670e43d629a2731af7de1223d19830a2d1a43e58aa862bacac97d667a70f98149b020539c9544ac7cf674a51f296b73a
6
+ metadata.gz: 01a2c53bf4907772f4b63801baa8d5285a143a31553befeb08217a3bc225a1db07fbbb5ef0d224c1e7b98205430d68655ea5fd7ef69fd6e82a0ccc3834559b8c
7
+ data.tar.gz: 5af5944118860c43f62a4a2ea97961fec64727a4a4d994d115cba4c5fca5719f092662d3a9758588cc7d700ee176badb8619ec715855850f4b7349cad719c301
data/CHANGELOG.md CHANGED
@@ -5,6 +5,16 @@ 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.2.0] - 2025-08-13
9
+
10
+ ### Added
11
+
12
+ * CI support for Ruby 3.0
13
+
14
+ ### Changed
15
+
16
+ * Gem dependency httparty version update
17
+
8
18
  # [6.1.2] - 2025-07-02
9
19
 
10
20
  Updates ChangeHealth Response error message to return description if field is not found instead of previous behaviour returning nil.
@@ -784,6 +794,7 @@ Added the ability to hit professional claim submission API. For more details, se
784
794
  * Authentication
785
795
  * Configuration
786
796
 
797
+ [6.2.0]: https://github.com/WeInfuse/change_health/compare/v6.1.2...v6.2.0
787
798
  [6.1.2]: https://github.com/WeInfuse/change_health/compare/v6.1.1...v6.1.2
788
799
  [6.1.1]: https://github.com/WeInfuse/change_health/compare/v6.1.0...v6.1.1
789
800
  [6.1.0]: https://github.com/WeInfuse/change_health/compare/v6.0.0...v6.1.0
@@ -34,5 +34,5 @@ Gem::Specification.new do |spec|
34
34
  spec.licenses = ['MIT']
35
35
 
36
36
  spec.add_dependency 'hashie', '~> 3.5'
37
- spec.add_dependency 'httparty', '~> 0.17'
37
+ spec.add_dependency 'httparty', '~> 0.21'
38
38
  end
@@ -10,7 +10,9 @@ module ChangeHealth
10
10
  property :endDateOfService, from: :end_date_of_service, required: false
11
11
  property :serviceTypeCodes, from: :service_type_codes, required: false
12
12
 
13
+ # rubocop:disable Naming/MethodName
13
14
  alias dateRange? dateRange
15
+ # rubocop:enable Naming/MethodName
14
16
  alias date_range? dateRange
15
17
  alias service_type_codes serviceTypeCodes
16
18
 
@@ -18,7 +18,9 @@ module ChangeHealth
18
18
  property :tradingPartnerId, from: :trading_partner_id, required: false
19
19
  property :tradingPartnerServiceId, from: :trading_partner_service_id, required: false
20
20
 
21
+ # rubocop:disable Naming/MethodName
21
22
  alias partnerId? partnerId
23
+ # rubocop:enable Naming/MethodName
22
24
  alias partner_id? partnerId
23
25
 
24
26
  def add_dependent(dependent)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ChangeHealth
4
- VERSION = '6.1.2'
4
+ VERSION = '6.2.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: change_health
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.1.2
4
+ version: 6.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Crockett
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-07-09 00:00:00.000000000 Z
11
+ date: 2025-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: hashie
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '0.17'
33
+ version: '0.21'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '0.17'
40
+ version: '0.21'
41
41
  description:
42
42
  email:
43
43
  - mike.crockett@weinfuse.com
@@ -133,7 +133,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
133
133
  - !ruby/object:Gem::Version
134
134
  version: '0'
135
135
  requirements: []
136
- rubygems_version: 3.1.6
136
+ rubygems_version: 3.2.33
137
137
  signing_key:
138
138
  specification_version: 4
139
139
  summary: Ruby wrapper for the ChangeHealth API