ka-ching-client 0.4.0 → 0.4.2

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: b266d888ac648db0b7ba10d543b48b7e5a8873195a6982f838c6c0df698b3f10
4
- data.tar.gz: '091be55267371bb203f35badd476240281758ab3a165edafefe97d9acbfd9c71'
3
+ metadata.gz: 3b1be8f4aa3acffb1f8c7bca75283dd77e0c0325a00920fcafd5638ffc8c4b95
4
+ data.tar.gz: 524fb9b00f13bea9e02c22492c07530359ca54a297d86c4dce07e22324a4d16e
5
5
  SHA512:
6
- metadata.gz: 8a575168a652675ec36b46793b079f661957cc5b3906260c54bc0d6e3628f8f1c6a0e117c5df0c6bd3132c88e878ddd0aad0b72afe02a29387709311a4fce9a5
7
- data.tar.gz: 6ed57b703f09d68b3ddf529cc0db13f3fb672ee6296aafdea99eb180f3906abbc4cf243565bec8eb330c938372c4bbdfdf12688dd182b2dfee0b0d1d0d058820
6
+ metadata.gz: ab5652749c57c079be814bffb2aa7b0e379adf699865a96ace02efe74f7c2e0052fabb89ed009bd5ff8c10e2820ef1d5676528c576bbd14d830d2148d739f3f3
7
+ data.tar.gz: 22bf100961c0f92dbf9129370c42af4cbf622d00655f0bce83fcb95a152601968ba4965f1564f094d85674df1705668144c2b31a7a4219df20c8c90c2bc29cb3
data/CHANGELOG.md CHANGED
@@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.4.2] - 2023-10-09
9
+
10
+ - [#41](https://github.com/simonneutert/ka-ching-client/pull/41) Update httpx requirement from >= 0.22.4, < 0.25.0 to >= 0.22.4, < 1.1.0.
11
+ - [#40](https://github.com/simonneutert/ka-ching-client/pull/40) Bump rubocop from 1.56.3 to 1.56.4.
12
+ - [#39](https://github.com/simonneutert/ka-ching-client/pull/39) Bump httpx from 0.24.5 to 0.24.6.
13
+ - [#38](https://github.com/simonneutert/ka-ching-client/pull/38) Bump rubocop-minitest from 0.32.1 to 0.32.2.
14
+ - [#37](https://github.com/simonneutert/ka-ching-client/pull/37) Bump rubocop-minitest from 0.31.1 to 0.32.1.
15
+ - [#36](https://github.com/simonneutert/ka-ching-client/pull/36) Bump rubocop-performance from 1.19.0 to 1.19.1.
16
+ - [#35](https://github.com/simonneutert/ka-ching-client/pull/35) Bump httpx from 0.24.4 to 0.24.5.
17
+
18
+ ## [0.4.1] - 2023-09-16
19
+
20
+ - [#19](https://github.com/simonneutert/ka-ching-client/pull/19) upgrades dependencies - [@simonneutert](https://github.com/simonneutert).
21
+ - [#23](https://github.com/simonneutert/ka-ching-client/pull/23) drops minitest-vcr dependency - [@simonneutert](https://github.com/simonneutert).
22
+
8
23
  ## [0.4.0] - 2023-07-11
9
24
 
10
25
  - [#18](https://github.com/simonneutert/ka-ching-client/pull/18) implements a much simpler json interaction all the way for every endpoint - [@simonneutert](https://github.com/simonneutert).
data/Gemfile CHANGED
@@ -5,15 +5,14 @@ source 'https://rubygems.org'
5
5
  gemspec
6
6
 
7
7
  group :development, :test do
8
- gem 'minitest', '~> 5.18'
9
- gem 'minitest-vcr', '~> 1.4'
8
+ gem 'minitest', '~> 5.20'
10
9
  gem 'pry', '~> 0.14.2'
11
10
  gem 'rake', '~> 13.0'
12
- gem 'rubocop', '~> 1.54'
13
- gem 'rubocop-minitest', '~> 0.31.0'
14
- gem 'rubocop-performance', '~> 1.18'
11
+ gem 'rubocop', '~> 1.56'
12
+ gem 'rubocop-minitest', '~> 0.32.2'
13
+ gem 'rubocop-performance', '~> 1.19'
15
14
  gem 'solargraph', '~> 0.49.0'
16
15
  gem 'vcr', '~> 6.2'
17
- gem 'webmock', '~> 3.18'
16
+ gem 'webmock', '~> 3.19'
18
17
  gem 'yard', '~> 0.9.34'
19
18
  end
data/Gemfile.lock CHANGED
@@ -1,31 +1,33 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ka-ching-client (0.4.0)
5
- faraday (~> 2.7.4)
6
- httpx (>= 0.22.4, < 0.25.0)
4
+ ka-ching-client (0.4.2)
5
+ faraday (~> 2.7.10)
6
+ httpx (>= 0.22.4, < 1.1.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- addressable (2.8.4)
11
+ addressable (2.8.5)
12
12
  public_suffix (>= 2.0.2, < 6.0)
13
13
  ast (2.4.2)
14
14
  backport (1.2.0)
15
+ base64 (0.1.1)
15
16
  benchmark (0.2.1)
16
17
  coderay (1.1.3)
17
18
  crack (0.4.5)
18
19
  rexml
19
20
  diff-lcs (1.5.0)
20
21
  e2mmap (0.1.0)
21
- faraday (2.7.10)
22
+ faraday (2.7.11)
23
+ base64
22
24
  faraday-net_http (>= 2.0, < 3.1)
23
25
  ruby2_keywords (>= 0.0.4)
24
26
  faraday-net_http (3.0.2)
25
27
  hashdiff (1.0.1)
26
- http-2-next (0.5.1)
27
- httpx (0.24.1)
28
- http-2-next (>= 0.4.1)
28
+ http-2-next (1.0.0)
29
+ httpx (1.0.1)
30
+ http-2-next (>= 1.0.0)
29
31
  jaro_winkler (1.5.6)
30
32
  json (2.6.3)
31
33
  kramdown (2.4.0)
@@ -34,20 +36,14 @@ GEM
34
36
  kramdown (~> 2.0)
35
37
  language_server-protocol (3.17.0.3)
36
38
  method_source (1.0.0)
37
- mini_portile2 (2.8.2)
38
- minispec-metadata (2.0.0)
39
- minitest
40
- minitest (5.18.1)
41
- minitest-vcr (1.4.0)
42
- minispec-metadata (~> 2.0)
43
- minitest (>= 4.7.5)
44
- vcr (>= 2.9)
45
- nokogiri (1.15.2)
39
+ mini_portile2 (2.8.4)
40
+ minitest (5.20.0)
41
+ nokogiri (1.15.4)
46
42
  mini_portile2 (~> 2.8.2)
47
43
  racc (~> 1.4)
48
- nokogiri (1.15.2-arm64-darwin)
44
+ nokogiri (1.15.4-arm64-darwin)
49
45
  racc (~> 1.4)
50
- nokogiri (1.15.2-x86_64-linux)
46
+ nokogiri (1.15.4-x86_64-linux)
51
47
  racc (~> 1.4)
52
48
  parallel (1.23.0)
53
49
  parser (3.2.2.3)
@@ -56,7 +52,7 @@ GEM
56
52
  pry (0.14.2)
57
53
  coderay (~> 1.1)
58
54
  method_source (~> 1.0)
59
- public_suffix (5.0.1)
55
+ public_suffix (5.0.3)
60
56
  racc (1.7.1)
61
57
  rainbow (3.1.1)
62
58
  rake (13.0.6)
@@ -64,8 +60,9 @@ GEM
64
60
  regexp_parser (2.8.1)
65
61
  reverse_markdown (2.1.1)
66
62
  nokogiri
67
- rexml (3.2.5)
68
- rubocop (1.54.1)
63
+ rexml (3.2.6)
64
+ rubocop (1.56.4)
65
+ base64 (~> 0.1.1)
69
66
  json (~> 2.3)
70
67
  language_server-protocol (>= 3.17.0)
71
68
  parallel (~> 1.10)
@@ -73,14 +70,14 @@ GEM
73
70
  rainbow (>= 2.2.2, < 4.0)
74
71
  regexp_parser (>= 1.8, < 3.0)
75
72
  rexml (>= 3.2.5, < 4.0)
76
- rubocop-ast (>= 1.28.0, < 2.0)
73
+ rubocop-ast (>= 1.28.1, < 2.0)
77
74
  ruby-progressbar (~> 1.7)
78
75
  unicode-display_width (>= 2.4.0, < 3.0)
79
76
  rubocop-ast (1.29.0)
80
77
  parser (>= 3.2.1.0)
81
- rubocop-minitest (0.31.0)
78
+ rubocop-minitest (0.32.2)
82
79
  rubocop (>= 1.39, < 2.0)
83
- rubocop-performance (1.18.0)
80
+ rubocop-performance (1.19.1)
84
81
  rubocop (>= 1.7.0, < 2.0)
85
82
  rubocop-ast (>= 0.4.0)
86
83
  ruby-progressbar (1.13.0)
@@ -102,10 +99,10 @@ GEM
102
99
  tilt (~> 2.0)
103
100
  yard (~> 0.9, >= 0.9.24)
104
101
  thor (1.2.2)
105
- tilt (2.2.0)
106
- unicode-display_width (2.4.2)
102
+ tilt (2.3.0)
103
+ unicode-display_width (2.5.0)
107
104
  vcr (6.2.0)
108
- webmock (3.18.1)
105
+ webmock (3.19.1)
109
106
  addressable (>= 2.8.0)
110
107
  crack (>= 0.3.2)
111
108
  hashdiff (>= 0.4.0, < 2.0.0)
@@ -118,17 +115,16 @@ PLATFORMS
118
115
 
119
116
  DEPENDENCIES
120
117
  ka-ching-client!
121
- minitest (~> 5.18)
122
- minitest-vcr (~> 1.4)
118
+ minitest (~> 5.20)
123
119
  pry (~> 0.14.2)
124
120
  rake (~> 13.0)
125
- rubocop (~> 1.54)
126
- rubocop-minitest (~> 0.31.0)
127
- rubocop-performance (~> 1.18)
121
+ rubocop (~> 1.56)
122
+ rubocop-minitest (~> 0.32.2)
123
+ rubocop-performance (~> 1.19)
128
124
  solargraph (~> 0.49.0)
129
125
  vcr (~> 6.2)
130
- webmock (~> 3.18)
126
+ webmock (~> 3.19)
131
127
  yard (~> 0.9.34)
132
128
 
133
129
  BUNDLED WITH
134
- 2.4.14
130
+ 2.4.19
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module KaChing
4
- VERSION = '0.4.0'
4
+ VERSION = '0.4.2'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ka-ching-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simon Neutert
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-07-11 00:00:00.000000000 Z
11
+ date: 2023-10-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 2.7.4
19
+ version: 2.7.10
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 2.7.4
26
+ version: 2.7.10
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: httpx
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -33,7 +33,7 @@ dependencies:
33
33
  version: 0.22.4
34
34
  - - "<"
35
35
  - !ruby/object:Gem::Version
36
- version: 0.25.0
36
+ version: 1.1.0
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: 0.22.4
44
44
  - - "<"
45
45
  - !ruby/object:Gem::Version
46
- version: 0.25.0
46
+ version: 1.1.0
47
47
  description: This gem is a client for the ka-ching API.
48
48
  email:
49
49
  - simonneutert@users.noreply.github.com
@@ -95,7 +95,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
97
  requirements: []
98
- rubygems_version: 3.4.13
98
+ rubygems_version: 3.4.14
99
99
  signing_key:
100
100
  specification_version: 4
101
101
  summary: This gem is a client for the ka-ching API.