pubnub 5.3.4 → 5.3.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/commands-handler.yml +7 -6
- data/.github/workflows/release.yml +9 -8
- data/.github/workflows/run-tests.yml +13 -12
- data/.github/workflows/run-validations.yml +11 -9
- data/.pubnub.yml +9 -4
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +73 -70
- data/VERSION +1 -1
- data/lib/pubnub/version.rb +1 -1
- data/pubnub.gemspec +2 -2
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 86c7cc7a030addfbffc036f0aad24012009e7299a2dd7b64dcf6555db3967516
|
4
|
+
data.tar.gz: 527ccc89a82801ab418c32907fc4df3333f3605794b3124445aafa647864275a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fca94c169ea327386f48164e7806bac20233da3b8f51d5ff3fcad61acb34dde0c5bec7f074ea0bf9ed72cc33d38b4170e0ad48607d4954ab71981f70365e440a
|
7
|
+
data.tar.gz: f87ff02c1bca1d1b9cb82be21f159a0af5540237acebef2b36bf034e96f8f083568e262d81964cca5012c5b84f3c4d50aedabc18e997f0f42ebb5672fb5f1990
|
@@ -11,11 +11,12 @@ jobs:
|
|
11
11
|
process:
|
12
12
|
name: Process command
|
13
13
|
if: github.event.issue.pull_request && endsWith(github.repository, '-private') != true
|
14
|
-
runs-on:
|
14
|
+
runs-on:
|
15
|
+
group: Default
|
15
16
|
steps:
|
16
17
|
- name: Check referred user
|
17
18
|
id: user-check
|
18
|
-
env:
|
19
|
+
env:
|
19
20
|
CLEN_BOT: ${{ secrets.CLEN_BOT }}
|
20
21
|
run: echo "expected-user=${{ startsWith(github.event.comment.body, format('@{0} ', env.CLEN_BOT)) }}" >> $GITHUB_OUTPUT
|
21
22
|
- name: Regular comment
|
@@ -23,12 +24,12 @@ jobs:
|
|
23
24
|
run: echo -e "\033[38;2;19;181;255mThis is regular commit which should be ignored.\033[0m"
|
24
25
|
- name: Checkout repository
|
25
26
|
if: steps.user-check.outputs.expected-user == 'true'
|
26
|
-
uses: actions/checkout@
|
27
|
+
uses: actions/checkout@v4
|
27
28
|
with:
|
28
|
-
|
29
|
+
token: ${{ secrets.GH_TOKEN }}
|
29
30
|
- name: Checkout release actions
|
30
31
|
if: steps.user-check.outputs.expected-user == 'true'
|
31
|
-
uses: actions/checkout@
|
32
|
+
uses: actions/checkout@v4
|
32
33
|
with:
|
33
34
|
repository: pubnub/client-engineering-deployment-tools
|
34
35
|
ref: v1
|
@@ -40,4 +41,4 @@ jobs:
|
|
40
41
|
with:
|
41
42
|
token: ${{ secrets.GH_TOKEN }}
|
42
43
|
listener: ${{ secrets.CLEN_BOT }}
|
43
|
-
jira-api-key: ${{ secrets.JIRA_API_KEY }}
|
44
|
+
jira-api-key: ${{ secrets.JIRA_API_KEY }}
|
@@ -2,20 +2,20 @@ name: Automated product release
|
|
2
2
|
|
3
3
|
on:
|
4
4
|
pull_request:
|
5
|
-
branches: [
|
6
|
-
types: [
|
7
|
-
|
5
|
+
branches: [master]
|
6
|
+
types: [closed]
|
8
7
|
|
9
8
|
jobs:
|
10
9
|
check-release:
|
11
10
|
name: Check release required
|
12
|
-
runs-on: ubuntu-latest
|
13
11
|
if: ${{ github.event.pull_request.merged && endsWith(github.repository, '-private') != true }}
|
12
|
+
runs-on:
|
13
|
+
group: Default
|
14
14
|
outputs:
|
15
15
|
release: ${{ steps.check.outputs.ready }}
|
16
16
|
steps:
|
17
17
|
- name: Checkout actions
|
18
|
-
uses: actions/checkout@
|
18
|
+
uses: actions/checkout@v4
|
19
19
|
with:
|
20
20
|
repository: pubnub/client-engineering-deployment-tools
|
21
21
|
ref: v1
|
@@ -28,17 +28,18 @@ jobs:
|
|
28
28
|
token: ${{ secrets.GH_TOKEN }}
|
29
29
|
publish:
|
30
30
|
name: Publish package
|
31
|
-
runs-on: ubuntu-latest
|
32
31
|
needs: check-release
|
33
32
|
if: ${{ needs.check-release.outputs.release == 'true' }}
|
33
|
+
runs-on:
|
34
|
+
group: Default
|
34
35
|
steps:
|
35
36
|
- name: Checkout repository
|
36
|
-
uses: actions/checkout@
|
37
|
+
uses: actions/checkout@v4
|
37
38
|
with:
|
38
39
|
# This should be the same as the one specified for on.pull_request.branches
|
39
40
|
ref: master
|
40
41
|
- name: Checkout actions
|
41
|
-
uses: actions/checkout@
|
42
|
+
uses: actions/checkout@v4
|
42
43
|
with:
|
43
44
|
repository: pubnub/client-engineering-deployment-tools
|
44
45
|
ref: v1
|
@@ -16,25 +16,24 @@ env:
|
|
16
16
|
SDK_SUB_KEY: ${{ secrets.SDK_SUB_KEY }}
|
17
17
|
SDK_PUB_KEY: ${{ secrets.SDK_PUB_KEY }}
|
18
18
|
|
19
|
-
|
20
|
-
|
21
19
|
jobs:
|
22
20
|
tests:
|
23
21
|
name: Integration and Unit tests
|
24
|
-
runs-on:
|
22
|
+
runs-on:
|
23
|
+
group: Default
|
25
24
|
env:
|
26
25
|
NO_COVERAGE: true
|
27
26
|
strategy:
|
28
27
|
fail-fast: true
|
29
28
|
matrix:
|
30
|
-
ruby: [
|
29
|
+
ruby: [3.0.6, 3.1.4, 3.2.3]
|
31
30
|
steps:
|
32
31
|
- name: Checkout repository
|
33
|
-
uses: actions/checkout@
|
32
|
+
uses: actions/checkout@v4
|
34
33
|
with:
|
35
34
|
token: ${{ secrets.GH_TOKEN }}
|
36
35
|
- name: Checkout actions
|
37
|
-
uses: actions/checkout@
|
36
|
+
uses: actions/checkout@v4
|
38
37
|
with:
|
39
38
|
repository: pubnub/client-engineering-deployment-tools
|
40
39
|
ref: v1
|
@@ -52,12 +51,13 @@ jobs:
|
|
52
51
|
uses: ./.github/.release/actions/actions/utils/fast-jobs-failure
|
53
52
|
acceptance-tests:
|
54
53
|
name: Acceptance tests
|
55
|
-
runs-on:
|
54
|
+
runs-on:
|
55
|
+
group: Default
|
56
56
|
steps:
|
57
57
|
- name: Checkout project
|
58
|
-
uses: actions/checkout@
|
58
|
+
uses: actions/checkout@v4
|
59
59
|
- name: Checkout mock-server action
|
60
|
-
uses: actions/checkout@
|
60
|
+
uses: actions/checkout@v4
|
61
61
|
with:
|
62
62
|
repository: pubnub/client-engineering-deployment-tools
|
63
63
|
ref: v1
|
@@ -97,8 +97,9 @@ jobs:
|
|
97
97
|
uses: ./.github/.release/actions/actions/utils/fast-jobs-failure
|
98
98
|
all-tests:
|
99
99
|
name: Tests
|
100
|
-
|
101
|
-
|
100
|
+
needs: [tests, acceptance-tests]
|
101
|
+
runs-on:
|
102
|
+
group: Default
|
102
103
|
steps:
|
103
104
|
- name: Tests summary
|
104
|
-
run: echo -e "\033[38;2;95;215;0m\033[1mAll tests successfully passed"
|
105
|
+
run: echo -e "\033[38;2;95;215;0m\033[1mAll tests successfully passed"
|
@@ -5,12 +5,13 @@ on: [push]
|
|
5
5
|
jobs:
|
6
6
|
pubnub-yml:
|
7
7
|
name: "Validate .pubnub.yml"
|
8
|
-
runs-on:
|
8
|
+
runs-on:
|
9
|
+
group: Default
|
9
10
|
steps:
|
10
11
|
- name: Checkout project
|
11
|
-
uses: actions/checkout@
|
12
|
+
uses: actions/checkout@v4
|
12
13
|
- name: Checkout validator action
|
13
|
-
uses: actions/checkout@
|
14
|
+
uses: actions/checkout@v4
|
14
15
|
with:
|
15
16
|
repository: pubnub/client-engineering-deployment-tools
|
16
17
|
ref: v1
|
@@ -24,9 +25,10 @@ jobs:
|
|
24
25
|
if: failure()
|
25
26
|
uses: ./.github/.release/actions/actions/utils/fast-jobs-failure
|
26
27
|
all-validations:
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
28
|
+
name: Validations
|
29
|
+
needs: [pubnub-yml]
|
30
|
+
runs-on:
|
31
|
+
group: Default
|
32
|
+
steps:
|
33
|
+
- name: Validations summary
|
34
|
+
run: echo -e "\033[38;2;95;215;0m\033[1mAll validations passed"
|
data/.pubnub.yml
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
---
|
2
|
-
version: "5.3.
|
2
|
+
version: "5.3.5"
|
3
3
|
changelog:
|
4
|
+
- date: 2024-10-09
|
5
|
+
version: v5.3.5
|
6
|
+
changes:
|
7
|
+
- type: improvement
|
8
|
+
text: "Updated direct and transient dependency versions."
|
4
9
|
- date: 2024-04-29
|
5
10
|
version: v5.3.4
|
6
11
|
changes:
|
@@ -576,7 +581,7 @@ sdks:
|
|
576
581
|
- x86-64
|
577
582
|
- distribution-type: package
|
578
583
|
distribution-repository: RubyGems
|
579
|
-
package-name: pubnub-5.3.
|
584
|
+
package-name: pubnub-5.3.5.gem
|
580
585
|
location: https://rubygems.org/gems/pubnub
|
581
586
|
requires:
|
582
587
|
- name: addressable
|
@@ -681,8 +686,8 @@ sdks:
|
|
681
686
|
- x86-64
|
682
687
|
- distribution-type: library
|
683
688
|
distribution-repository: GitHub release
|
684
|
-
package-name: pubnub-5.3.
|
685
|
-
location: https://github.com/pubnub/ruby/releases/download/v5.3.
|
689
|
+
package-name: pubnub-5.3.5.gem
|
690
|
+
location: https://github.com/pubnub/ruby/releases/download/v5.3.5/pubnub-5.3.5.gem
|
686
691
|
requires:
|
687
692
|
- name: addressable
|
688
693
|
min-version: 2.0.0
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
pubnub (5.3.
|
4
|
+
pubnub (5.3.5)
|
5
5
|
addressable (>= 2.0.0)
|
6
|
-
concurrent-ruby (~> 1.
|
7
|
-
concurrent-ruby-edge (~> 0.
|
6
|
+
concurrent-ruby (~> 1.3.4)
|
7
|
+
concurrent-ruby-edge (~> 0.7.1)
|
8
8
|
dry-validation (~> 1.0)
|
9
9
|
httpclient (~> 2.8, >= 2.8.3)
|
10
10
|
json (>= 2.2.0, < 3)
|
@@ -13,62 +13,65 @@ PATH
|
|
13
13
|
GEM
|
14
14
|
remote: https://rubygems.org/
|
15
15
|
specs:
|
16
|
-
addressable (2.8.
|
17
|
-
public_suffix (>= 2.0.2, <
|
16
|
+
addressable (2.8.7)
|
17
|
+
public_suffix (>= 2.0.2, < 7.0)
|
18
18
|
ast (2.4.2)
|
19
19
|
awesome_print (1.9.2)
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
20
|
+
base64 (0.2.0)
|
21
|
+
bigdecimal (3.1.8)
|
22
|
+
binding_of_caller (1.0.1)
|
23
|
+
debug_inspector (>= 1.2.0)
|
24
|
+
builder (3.3.0)
|
24
25
|
codacy-coverage (2.2.1)
|
25
26
|
simplecov
|
26
27
|
coderay (1.1.3)
|
27
|
-
concurrent-ruby (1.
|
28
|
-
concurrent-ruby-edge (0.
|
29
|
-
concurrent-ruby (~> 1.
|
30
|
-
crack (0.
|
28
|
+
concurrent-ruby (1.3.4)
|
29
|
+
concurrent-ruby-edge (0.7.1)
|
30
|
+
concurrent-ruby (~> 1.3)
|
31
|
+
crack (1.0.0)
|
32
|
+
bigdecimal
|
31
33
|
rexml
|
32
|
-
cucumber (9.
|
33
|
-
builder (~> 3.2
|
34
|
-
cucumber-ci-environment (
|
35
|
-
cucumber-core (
|
34
|
+
cucumber (9.2.0)
|
35
|
+
builder (~> 3.2)
|
36
|
+
cucumber-ci-environment (> 9, < 11)
|
37
|
+
cucumber-core (> 13, < 14)
|
36
38
|
cucumber-cucumber-expressions (~> 17.0)
|
37
|
-
cucumber-gherkin (> 24, <
|
39
|
+
cucumber-gherkin (> 24, < 28)
|
38
40
|
cucumber-html-formatter (> 20.3, < 22)
|
39
41
|
cucumber-messages (> 19, < 25)
|
40
42
|
diff-lcs (~> 1.5)
|
41
|
-
mini_mime (~> 1.1
|
42
|
-
multi_test (~> 1.1
|
43
|
-
sys-uname (~> 1.2
|
44
|
-
cucumber-ci-environment (
|
45
|
-
cucumber-core (
|
46
|
-
cucumber-gherkin (>=
|
43
|
+
mini_mime (~> 1.1)
|
44
|
+
multi_test (~> 1.1)
|
45
|
+
sys-uname (~> 1.2)
|
46
|
+
cucumber-ci-environment (10.0.1)
|
47
|
+
cucumber-core (13.0.3)
|
48
|
+
cucumber-gherkin (>= 27, < 28)
|
47
49
|
cucumber-messages (>= 20, < 23)
|
48
|
-
cucumber-tag-expressions (
|
49
|
-
cucumber-cucumber-expressions (17.0
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
50
|
+
cucumber-tag-expressions (> 5, < 7)
|
51
|
+
cucumber-cucumber-expressions (17.1.0)
|
52
|
+
bigdecimal
|
53
|
+
cucumber-gherkin (27.0.0)
|
54
|
+
cucumber-messages (>= 19.1.4, < 23)
|
55
|
+
cucumber-html-formatter (21.7.0)
|
56
|
+
cucumber-messages (> 19, < 27)
|
54
57
|
cucumber-messages (22.0.0)
|
55
|
-
cucumber-tag-expressions (
|
58
|
+
cucumber-tag-expressions (6.1.0)
|
56
59
|
debug_inspector (1.2.0)
|
57
|
-
diff-lcs (1.5.
|
58
|
-
docile (1.4.
|
59
|
-
dry-configurable (1.
|
60
|
+
diff-lcs (1.5.1)
|
61
|
+
docile (1.4.1)
|
62
|
+
dry-configurable (1.2.0)
|
60
63
|
dry-core (~> 1.0, < 2)
|
61
64
|
zeitwerk (~> 2.6)
|
62
65
|
dry-core (1.0.1)
|
63
66
|
concurrent-ruby (~> 1.0)
|
64
67
|
zeitwerk (~> 2.6)
|
65
|
-
dry-inflector (1.
|
68
|
+
dry-inflector (1.1.0)
|
66
69
|
dry-initializer (3.1.1)
|
67
70
|
dry-logic (1.5.0)
|
68
71
|
concurrent-ruby (~> 1.0)
|
69
72
|
dry-core (~> 1.0, < 2)
|
70
73
|
zeitwerk (~> 2.6)
|
71
|
-
dry-schema (1.13.
|
74
|
+
dry-schema (1.13.4)
|
72
75
|
concurrent-ruby (~> 1.0)
|
73
76
|
dry-configurable (~> 1.0, >= 1.0.1)
|
74
77
|
dry-core (~> 1.0, < 2)
|
@@ -89,17 +92,17 @@ GEM
|
|
89
92
|
dry-initializer (~> 3.0)
|
90
93
|
dry-schema (>= 1.12, < 2)
|
91
94
|
zeitwerk (~> 2.6)
|
92
|
-
ffi (1.
|
93
|
-
hashdiff (1.1.
|
95
|
+
ffi (1.17.0)
|
96
|
+
hashdiff (1.1.1)
|
94
97
|
httpclient (2.8.3)
|
95
98
|
interception (0.5)
|
96
|
-
json (2.7.
|
99
|
+
json (2.7.2)
|
97
100
|
language_server-protocol (3.17.0.3)
|
98
|
-
method_source (1.
|
101
|
+
method_source (1.1.0)
|
99
102
|
mini_mime (1.1.5)
|
100
103
|
multi_test (1.1.0)
|
101
|
-
parallel (1.
|
102
|
-
parser (3.3.0
|
104
|
+
parallel (1.26.3)
|
105
|
+
parser (3.3.5.0)
|
103
106
|
ast (~> 2.4.1)
|
104
107
|
racc
|
105
108
|
pry (0.14.2)
|
@@ -111,57 +114,57 @@ GEM
|
|
111
114
|
pry-stack_explorer (0.6.1)
|
112
115
|
binding_of_caller (~> 1.0)
|
113
116
|
pry (~> 0.13)
|
114
|
-
public_suffix (
|
115
|
-
racc (1.
|
117
|
+
public_suffix (6.0.1)
|
118
|
+
racc (1.8.1)
|
116
119
|
rainbow (3.1.1)
|
117
|
-
regexp_parser (2.9.
|
118
|
-
rexml (3.
|
119
|
-
rr (3.1.
|
120
|
-
rspec (3.
|
121
|
-
rspec-core (~> 3.
|
122
|
-
rspec-expectations (~> 3.
|
123
|
-
rspec-mocks (~> 3.
|
124
|
-
rspec-core (3.
|
125
|
-
rspec-support (~> 3.
|
126
|
-
rspec-expectations (3.
|
120
|
+
regexp_parser (2.9.2)
|
121
|
+
rexml (3.3.8)
|
122
|
+
rr (3.1.1)
|
123
|
+
rspec (3.13.0)
|
124
|
+
rspec-core (~> 3.13.0)
|
125
|
+
rspec-expectations (~> 3.13.0)
|
126
|
+
rspec-mocks (~> 3.13.0)
|
127
|
+
rspec-core (3.13.1)
|
128
|
+
rspec-support (~> 3.13.0)
|
129
|
+
rspec-expectations (3.13.3)
|
127
130
|
diff-lcs (>= 1.2.0, < 2.0)
|
128
|
-
rspec-support (~> 3.
|
129
|
-
rspec-mocks (3.
|
131
|
+
rspec-support (~> 3.13.0)
|
132
|
+
rspec-mocks (3.13.2)
|
130
133
|
diff-lcs (>= 1.2.0, < 2.0)
|
131
|
-
rspec-support (~> 3.
|
134
|
+
rspec-support (~> 3.13.0)
|
132
135
|
rspec-retry (0.6.2)
|
133
136
|
rspec-core (> 3.3)
|
134
|
-
rspec-support (3.
|
135
|
-
rubocop (1.
|
137
|
+
rspec-support (3.13.1)
|
138
|
+
rubocop (1.66.1)
|
136
139
|
json (~> 2.3)
|
137
140
|
language_server-protocol (>= 3.17.0)
|
138
141
|
parallel (~> 1.10)
|
139
142
|
parser (>= 3.3.0.2)
|
140
143
|
rainbow (>= 2.2.2, < 4.0)
|
141
|
-
regexp_parser (>=
|
142
|
-
|
143
|
-
rubocop-ast (>= 1.30.0, < 2.0)
|
144
|
+
regexp_parser (>= 2.4, < 3.0)
|
145
|
+
rubocop-ast (>= 1.32.2, < 2.0)
|
144
146
|
ruby-progressbar (~> 1.7)
|
145
147
|
unicode-display_width (>= 2.4.0, < 3.0)
|
146
|
-
rubocop-ast (1.
|
147
|
-
parser (>= 3.
|
148
|
+
rubocop-ast (1.32.3)
|
149
|
+
parser (>= 3.3.1.0)
|
148
150
|
ruby-progressbar (1.13.0)
|
149
151
|
simplecov (0.22.0)
|
150
152
|
docile (~> 1.1)
|
151
153
|
simplecov-html (~> 0.11)
|
152
154
|
simplecov_json_formatter (~> 0.1)
|
153
|
-
simplecov-html (0.
|
155
|
+
simplecov-html (0.13.1)
|
154
156
|
simplecov_json_formatter (0.1.4)
|
155
|
-
sys-uname (1.
|
157
|
+
sys-uname (1.3.0)
|
156
158
|
ffi (~> 1.1)
|
157
159
|
timers (4.3.5)
|
158
|
-
unicode-display_width (2.
|
159
|
-
vcr (6.
|
160
|
-
|
160
|
+
unicode-display_width (2.6.0)
|
161
|
+
vcr (6.3.1)
|
162
|
+
base64
|
163
|
+
webmock (3.24.0)
|
161
164
|
addressable (>= 2.8.0)
|
162
165
|
crack (>= 0.3.2)
|
163
166
|
hashdiff (>= 0.4.0, < 2.0.0)
|
164
|
-
zeitwerk (2.6.
|
167
|
+
zeitwerk (2.6.18)
|
165
168
|
|
166
169
|
PLATFORMS
|
167
170
|
ruby
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
5.3.
|
1
|
+
5.3.5
|
data/lib/pubnub/version.rb
CHANGED
data/pubnub.gemspec
CHANGED
@@ -19,8 +19,8 @@ Gem::Specification.new do |spec|
|
|
19
19
|
spec.required_ruby_version = '>= 3.0.0'
|
20
20
|
|
21
21
|
spec.add_dependency 'addressable', '>= 2.0.0'
|
22
|
-
spec.add_dependency 'concurrent-ruby', '~> 1.
|
23
|
-
spec.add_dependency 'concurrent-ruby-edge', '~> 0.
|
22
|
+
spec.add_dependency 'concurrent-ruby', '~> 1.3.4'
|
23
|
+
spec.add_dependency 'concurrent-ruby-edge', '~> 0.7.1'
|
24
24
|
spec.add_dependency 'dry-validation', '~> 1.0'
|
25
25
|
spec.add_dependency 'httpclient', '~> 2.8', '>= 2.8.3'
|
26
26
|
spec.add_dependency 'json', '>= 2.2.0', '< 3'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pubnub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.3.
|
4
|
+
version: 5.3.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- PubNub
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|
@@ -30,28 +30,28 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 1.
|
33
|
+
version: 1.3.4
|
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: 1.
|
40
|
+
version: 1.3.4
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: concurrent-ruby-edge
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 0.
|
47
|
+
version: 0.7.1
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 0.
|
54
|
+
version: 0.7.1
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: dry-validation
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|