barkibu-kb 0.31.0 → 0.32.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 +4 -4
- data/.github/workflows/release.yaml +1 -1
- data/.gitignore +2 -0
- data/CHANGELOG.md +6 -1
- data/Gemfile +2 -0
- data/Gemfile.lock +38 -14
- data/barkibu-kb-fake.gemspec +1 -1
- data/barkibu-kb.gemspec +3 -1
- data/lib/kb/version.rb +1 -1
- metadata +32 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b53777b2236e073a8943960012027f45b5dcb853c068e1f09a2fbf093d863791
|
|
4
|
+
data.tar.gz: d02bbd5e466a2c0dd0fe58d6a5221851c76edfdc15887786d26088cf3691c731
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aae274ead93d952cd495e8f88c6c7a437011e83a5074f2b05c297d3c573a8f2593584e4a3fd30750589eb2d32c186ea112a138a1560b6cd161b41a71e1d90131
|
|
7
|
+
data.tar.gz: 06bb84dfd34a396755856ba5e5d17438a40bcc4189b5b6c7e22c69f43daccc431dda6ecbbefa40c4d420615200ef60f7d97a5db0d8948baf6b6425933c2942c0
|
|
@@ -15,7 +15,7 @@ jobs:
|
|
|
15
15
|
git config user.name 'Barkibot'
|
|
16
16
|
git config user.email 'dev+bot@barkibu.com'
|
|
17
17
|
- name: Release Gem
|
|
18
|
-
uses: discourse/publish-rubygems-action@
|
|
18
|
+
uses: discourse/publish-rubygems-action@v3
|
|
19
19
|
env:
|
|
20
20
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
|
21
21
|
RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,12 @@ 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
8
|
## [unreleased]
|
|
9
|
-
- See diff: https://github.com/barkibu/kb-ruby/compare/v0.
|
|
9
|
+
- See diff: https://github.com/barkibu/kb-ruby/compare/v0.32.0...HEAD
|
|
10
|
+
|
|
11
|
+
## [0.32.0]
|
|
12
|
+
- Allow Ruby 3.3/3.4: raise `required_ruby_version` ceiling to `< 3.6` (floor stays `>= 2.6`)
|
|
13
|
+
- No runtime dependency changes — safe to take with a scoped conservative update (`bundle lock --update barkibu-kb barkibu-kb-fake --conservative`)
|
|
14
|
+
- Test-env only: add `base64`/`bigdecimal` dev dependencies and an `activesupport >= 7.1` floor (suite now also validated against ActiveSupport 8). Runtime constraints for consumers unchanged.
|
|
10
15
|
|
|
11
16
|
## [0.31.0]
|
|
12
17
|
- Add `KB::Pet#pet_parent`, a memoized lookup via `PetParent.find`
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
barkibu-kb (0.
|
|
4
|
+
barkibu-kb (0.32.0)
|
|
5
5
|
activemodel (>= 4.0.2)
|
|
6
6
|
activerecord
|
|
7
7
|
activesupport (>= 3.0.0)
|
|
@@ -10,8 +10,8 @@ PATH
|
|
|
10
10
|
faraday-http
|
|
11
11
|
faraday_middleware
|
|
12
12
|
i18n
|
|
13
|
-
barkibu-kb-fake (0.
|
|
14
|
-
barkibu-kb (= 0.
|
|
13
|
+
barkibu-kb-fake (0.32.0)
|
|
14
|
+
barkibu-kb (= 0.32.0)
|
|
15
15
|
countries
|
|
16
16
|
sinatra
|
|
17
17
|
webmock
|
|
@@ -19,21 +19,33 @@ PATH
|
|
|
19
19
|
GEM
|
|
20
20
|
remote: https://rubygems.org/
|
|
21
21
|
specs:
|
|
22
|
-
activemodel (
|
|
23
|
-
activesupport (=
|
|
24
|
-
activerecord (
|
|
25
|
-
activemodel (=
|
|
26
|
-
activesupport (=
|
|
27
|
-
|
|
28
|
-
|
|
22
|
+
activemodel (8.1.3)
|
|
23
|
+
activesupport (= 8.1.3)
|
|
24
|
+
activerecord (8.1.3)
|
|
25
|
+
activemodel (= 8.1.3)
|
|
26
|
+
activesupport (= 8.1.3)
|
|
27
|
+
timeout (>= 0.4.0)
|
|
28
|
+
activesupport (8.1.3)
|
|
29
|
+
base64
|
|
30
|
+
bigdecimal
|
|
31
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
32
|
+
connection_pool (>= 2.2.5)
|
|
33
|
+
drb
|
|
29
34
|
i18n (>= 1.6, < 2)
|
|
35
|
+
json
|
|
36
|
+
logger (>= 1.4.2)
|
|
30
37
|
minitest (>= 5.1)
|
|
31
|
-
|
|
38
|
+
securerandom (>= 0.3)
|
|
39
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
|
40
|
+
uri (>= 0.13.1)
|
|
32
41
|
addressable (2.8.0)
|
|
33
42
|
public_suffix (>= 2.0.2, < 5.0)
|
|
34
43
|
ast (2.4.2)
|
|
44
|
+
base64 (0.3.0)
|
|
45
|
+
bigdecimal (4.1.2)
|
|
35
46
|
byebug (11.1.3)
|
|
36
|
-
concurrent-ruby (1.
|
|
47
|
+
concurrent-ruby (1.3.7)
|
|
48
|
+
connection_pool (3.0.2)
|
|
37
49
|
countries (5.3.1)
|
|
38
50
|
unaccent (~> 0.3)
|
|
39
51
|
crack (0.4.5)
|
|
@@ -42,6 +54,7 @@ GEM
|
|
|
42
54
|
docile (1.4.0)
|
|
43
55
|
domain_name (0.5.20190701)
|
|
44
56
|
unf (>= 0.0.5, < 1.0.0)
|
|
57
|
+
drb (2.2.3)
|
|
45
58
|
dry-configurable (0.16.1)
|
|
46
59
|
dry-core (~> 0.6)
|
|
47
60
|
zeitwerk (~> 2.6)
|
|
@@ -89,12 +102,16 @@ GEM
|
|
|
89
102
|
http-cookie (1.0.5)
|
|
90
103
|
domain_name (~> 0.5)
|
|
91
104
|
http-form_data (2.3.0)
|
|
92
|
-
i18n (1.
|
|
105
|
+
i18n (1.15.2)
|
|
93
106
|
concurrent-ruby (~> 1.0)
|
|
107
|
+
json (2.20.0)
|
|
94
108
|
llhttp-ffi (0.4.0)
|
|
95
109
|
ffi-compiler (~> 1.0)
|
|
96
110
|
rake (~> 13.0)
|
|
97
|
-
|
|
111
|
+
logger (1.7.0)
|
|
112
|
+
minitest (6.0.6)
|
|
113
|
+
drb (~> 2.0)
|
|
114
|
+
prism (~> 1.5)
|
|
98
115
|
multipart-post (2.3.0)
|
|
99
116
|
mustermann (3.0.0)
|
|
100
117
|
ruby2_keywords (~> 0.0.1)
|
|
@@ -102,6 +119,7 @@ GEM
|
|
|
102
119
|
parser (3.3.0.5)
|
|
103
120
|
ast (~> 2.4.1)
|
|
104
121
|
racc
|
|
122
|
+
prism (1.9.0)
|
|
105
123
|
public_suffix (4.0.7)
|
|
106
124
|
racc (1.7.3)
|
|
107
125
|
rack (2.2.6.3)
|
|
@@ -139,6 +157,7 @@ GEM
|
|
|
139
157
|
rubocop (~> 1.19)
|
|
140
158
|
ruby-progressbar (1.13.0)
|
|
141
159
|
ruby2_keywords (0.0.5)
|
|
160
|
+
securerandom (0.4.1)
|
|
142
161
|
simplecov (0.21.2)
|
|
143
162
|
docile (~> 1.1)
|
|
144
163
|
simplecov-html (~> 0.11)
|
|
@@ -151,6 +170,7 @@ GEM
|
|
|
151
170
|
rack-protection (= 3.0.5)
|
|
152
171
|
tilt (~> 2.0)
|
|
153
172
|
tilt (2.1.0)
|
|
173
|
+
timeout (0.6.1)
|
|
154
174
|
tzinfo (2.0.6)
|
|
155
175
|
concurrent-ruby (~> 1.0)
|
|
156
176
|
unaccent (0.4.0)
|
|
@@ -158,6 +178,7 @@ GEM
|
|
|
158
178
|
unf_ext
|
|
159
179
|
unf_ext (0.0.8.2)
|
|
160
180
|
unicode-display_width (2.5.0)
|
|
181
|
+
uri (1.1.1)
|
|
161
182
|
webmock (3.14.0)
|
|
162
183
|
addressable (>= 2.8.0)
|
|
163
184
|
crack (>= 0.3.2)
|
|
@@ -168,8 +189,11 @@ PLATFORMS
|
|
|
168
189
|
ruby
|
|
169
190
|
|
|
170
191
|
DEPENDENCIES
|
|
192
|
+
activesupport (>= 7.1)
|
|
171
193
|
barkibu-kb!
|
|
172
194
|
barkibu-kb-fake!
|
|
195
|
+
base64
|
|
196
|
+
bigdecimal
|
|
173
197
|
bundler
|
|
174
198
|
byebug
|
|
175
199
|
rake (>= 12.3.3)
|
data/barkibu-kb-fake.gemspec
CHANGED
|
@@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
|
|
|
32
32
|
spec.bindir = 'exe'
|
|
33
33
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
34
34
|
spec.require_paths = ['lib']
|
|
35
|
-
spec.required_ruby_version = '>= 2.6', '< 3.
|
|
35
|
+
spec.required_ruby_version = '>= 2.6', '< 3.6'
|
|
36
36
|
|
|
37
37
|
spec.add_runtime_dependency 'barkibu-kb', KB::VERSION
|
|
38
38
|
spec.add_runtime_dependency 'countries'
|
data/barkibu-kb.gemspec
CHANGED
|
@@ -34,7 +34,7 @@ Gem::Specification.new do |spec|
|
|
|
34
34
|
spec.bindir = 'exe'
|
|
35
35
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
36
36
|
spec.require_paths = ['lib']
|
|
37
|
-
spec.required_ruby_version = '>= 2.6', '< 3.
|
|
37
|
+
spec.required_ruby_version = '>= 2.6', '< 3.6'
|
|
38
38
|
|
|
39
39
|
spec.add_dependency 'dry-configurable', '~> 0.9'
|
|
40
40
|
spec.add_development_dependency 'bundler'
|
|
@@ -44,6 +44,8 @@ Gem::Specification.new do |spec|
|
|
|
44
44
|
spec.add_development_dependency 'rubocop'
|
|
45
45
|
spec.add_development_dependency 'rubocop-rspec'
|
|
46
46
|
spec.add_development_dependency 'simplecov'
|
|
47
|
+
spec.add_development_dependency 'base64'
|
|
48
|
+
spec.add_development_dependency 'bigdecimal'
|
|
47
49
|
spec.add_development_dependency 'webmock'
|
|
48
50
|
spec.add_runtime_dependency 'activemodel', '>= 4.0.2'
|
|
49
51
|
spec.add_runtime_dependency 'activerecord'
|
data/lib/kb/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: barkibu-kb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.32.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Léo Figea
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: dry-configurable
|
|
@@ -122,6 +121,34 @@ dependencies:
|
|
|
122
121
|
- - ">="
|
|
123
122
|
- !ruby/object:Gem::Version
|
|
124
123
|
version: '0'
|
|
124
|
+
- !ruby/object:Gem::Dependency
|
|
125
|
+
name: base64
|
|
126
|
+
requirement: !ruby/object:Gem::Requirement
|
|
127
|
+
requirements:
|
|
128
|
+
- - ">="
|
|
129
|
+
- !ruby/object:Gem::Version
|
|
130
|
+
version: '0'
|
|
131
|
+
type: :development
|
|
132
|
+
prerelease: false
|
|
133
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
134
|
+
requirements:
|
|
135
|
+
- - ">="
|
|
136
|
+
- !ruby/object:Gem::Version
|
|
137
|
+
version: '0'
|
|
138
|
+
- !ruby/object:Gem::Dependency
|
|
139
|
+
name: bigdecimal
|
|
140
|
+
requirement: !ruby/object:Gem::Requirement
|
|
141
|
+
requirements:
|
|
142
|
+
- - ">="
|
|
143
|
+
- !ruby/object:Gem::Version
|
|
144
|
+
version: '0'
|
|
145
|
+
type: :development
|
|
146
|
+
prerelease: false
|
|
147
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
148
|
+
requirements:
|
|
149
|
+
- - ">="
|
|
150
|
+
- !ruby/object:Gem::Version
|
|
151
|
+
version: '0'
|
|
125
152
|
- !ruby/object:Gem::Dependency
|
|
126
153
|
name: webmock
|
|
127
154
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -321,7 +348,6 @@ licenses:
|
|
|
321
348
|
- MIT
|
|
322
349
|
metadata:
|
|
323
350
|
homepage_uri: https://app.barkibu.com
|
|
324
|
-
post_install_message:
|
|
325
351
|
rdoc_options: []
|
|
326
352
|
require_paths:
|
|
327
353
|
- lib
|
|
@@ -332,15 +358,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
332
358
|
version: '2.6'
|
|
333
359
|
- - "<"
|
|
334
360
|
- !ruby/object:Gem::Version
|
|
335
|
-
version: '3.
|
|
361
|
+
version: '3.6'
|
|
336
362
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
337
363
|
requirements:
|
|
338
364
|
- - ">="
|
|
339
365
|
- !ruby/object:Gem::Version
|
|
340
366
|
version: '0'
|
|
341
367
|
requirements: []
|
|
342
|
-
rubygems_version: 3.
|
|
343
|
-
signing_key:
|
|
368
|
+
rubygems_version: 3.6.9
|
|
344
369
|
specification_version: 4
|
|
345
370
|
summary: Barkibu's Knowledge Base API sdk
|
|
346
371
|
test_files: []
|