gitlab-releases 2.1.0 → 2.1.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 +4 -4
- data/.rubocop.yml +1 -1
- data/.ruby-version +1 -1
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +264 -212
- data/lib/gitlab_releases/version.rb +1 -1
- metadata +12 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fdd6ca3891ddce39fd65096220287c7eac8d3c344f0660b7741b49131ec71b88
|
|
4
|
+
data.tar.gz: f1d5ce0a726fd809f19a5eb2dc3032da8b0fdf2421256cbea70bf2dff5ca9bfb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 949f9a6390771de916a7da3b91cae120a08937f0cee2a4f7188f15374be825867e4dcefe7a65e5557c35bfb32c8a13adaf63efc00527d7aed9b09731071f3079
|
|
7
|
+
data.tar.gz: f3894af6c3f77437f287025800edb4c0c72fa15d27efed318a9dd3e78bfee8bce671bc011887f4dfeebd0f9d1cade3698f260aa548fdeba5c419ba916b7a7277
|
data/.rubocop.yml
CHANGED
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.
|
|
1
|
+
3.4.10
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [2.1.1] - 2026-08-10
|
|
4
|
+
|
|
5
|
+
- Bump Ruby version to 3.4.10 in preparation for a Ruby 4.0 upgrade
|
|
6
|
+
- Adds support for Rails 8.1 by increasing the allowed versions for gitlab-labkit (`>= 1.5.1` and `< 5.0`)
|
|
7
|
+
- Ruby 3.3 is still supported
|
|
8
|
+
|
|
3
9
|
## [2.1.0] - 2026-07-30
|
|
4
10
|
|
|
5
11
|
- `RELEASES_GITLAB_READ_TOKEN` is now optional instead of required. The version.gitlab.com API and the `releases.yml` file are both public, so no credential is needed. When the variable is set it is still sent as a `Private-Token` header; when it is unset the header is omitted rather than raising.
|
data/Gemfile.lock
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
gitlab-releases (2.1.
|
|
4
|
+
gitlab-releases (2.1.1)
|
|
5
5
|
activesupport (~> 8.0)
|
|
6
6
|
gitlab (>= 5.1, < 7.x)
|
|
7
|
-
gitlab-labkit (
|
|
7
|
+
gitlab-labkit (>= 1.5.1, < 5.0)
|
|
8
8
|
http (~> 5.2.0, ~> 5.2)
|
|
9
9
|
retriable (~> 3.1.2)
|
|
10
10
|
version_sorter (~> 2.3.0)
|
|
@@ -12,9 +12,9 @@ PATH
|
|
|
12
12
|
GEM
|
|
13
13
|
remote: https://rubygems.org/
|
|
14
14
|
specs:
|
|
15
|
-
actionpack (8.
|
|
16
|
-
actionview (= 8.
|
|
17
|
-
activesupport (= 8.
|
|
15
|
+
actionpack (8.1.3.1)
|
|
16
|
+
actionview (= 8.1.3.1)
|
|
17
|
+
activesupport (= 8.1.3.1)
|
|
18
18
|
nokogiri (>= 1.8.5)
|
|
19
19
|
rack (>= 2.2.4)
|
|
20
20
|
rack-session (>= 1.0.1)
|
|
@@ -22,154 +22,184 @@ GEM
|
|
|
22
22
|
rails-dom-testing (~> 2.2)
|
|
23
23
|
rails-html-sanitizer (~> 1.6)
|
|
24
24
|
useragent (~> 0.16)
|
|
25
|
-
actionview (8.
|
|
26
|
-
activesupport (= 8.
|
|
25
|
+
actionview (8.1.3.1)
|
|
26
|
+
activesupport (= 8.1.3.1)
|
|
27
27
|
builder (~> 3.1)
|
|
28
28
|
erubi (~> 1.11)
|
|
29
29
|
rails-dom-testing (~> 2.2)
|
|
30
30
|
rails-html-sanitizer (~> 1.6)
|
|
31
|
-
activesupport (8.
|
|
31
|
+
activesupport (8.1.3.1)
|
|
32
32
|
base64
|
|
33
|
-
benchmark (>= 0.3)
|
|
34
33
|
bigdecimal
|
|
35
34
|
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
36
35
|
connection_pool (>= 2.2.5)
|
|
37
36
|
drb
|
|
38
37
|
i18n (>= 1.6, < 2)
|
|
38
|
+
json
|
|
39
39
|
logger (>= 1.4.2)
|
|
40
40
|
minitest (>= 5.1)
|
|
41
41
|
securerandom (>= 0.3)
|
|
42
42
|
tzinfo (~> 2.0, >= 2.0.5)
|
|
43
43
|
uri (>= 0.13.1)
|
|
44
|
-
addressable (2.
|
|
45
|
-
public_suffix (>= 2.0.2, <
|
|
46
|
-
ast (2.4.
|
|
44
|
+
addressable (2.9.0)
|
|
45
|
+
public_suffix (>= 2.0.2, < 8.0)
|
|
46
|
+
ast (2.4.3)
|
|
47
47
|
base64 (0.2.0)
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
binding_of_caller (1.0.1)
|
|
48
|
+
bigdecimal (4.1.2)
|
|
49
|
+
binding_of_caller (2.0.0)
|
|
51
50
|
debug_inspector (>= 1.2.0)
|
|
52
51
|
builder (3.3.0)
|
|
53
52
|
coderay (1.1.3)
|
|
54
|
-
concurrent-ruby (1.3.
|
|
55
|
-
connection_pool (
|
|
56
|
-
crack (1.0.
|
|
53
|
+
concurrent-ruby (1.3.8)
|
|
54
|
+
connection_pool (3.0.2)
|
|
55
|
+
crack (1.0.1)
|
|
57
56
|
bigdecimal
|
|
58
57
|
rexml
|
|
59
|
-
crass (1.0.
|
|
60
|
-
csv (3.3.
|
|
58
|
+
crass (1.0.7)
|
|
59
|
+
csv (3.3.6)
|
|
61
60
|
debug_inspector (1.2.0)
|
|
62
|
-
diff-lcs (1.
|
|
61
|
+
diff-lcs (1.6.2)
|
|
63
62
|
domain_name (0.6.20240107)
|
|
64
|
-
drb (2.2.
|
|
63
|
+
drb (2.2.3)
|
|
65
64
|
erubi (1.13.1)
|
|
66
|
-
ffi (1.17.4)
|
|
65
|
+
ffi (1.17.4-aarch64-linux-gnu)
|
|
66
|
+
ffi (1.17.4-aarch64-linux-musl)
|
|
67
|
+
ffi (1.17.4-arm-linux-gnu)
|
|
68
|
+
ffi (1.17.4-arm-linux-musl)
|
|
67
69
|
ffi (1.17.4-arm64-darwin)
|
|
68
70
|
ffi (1.17.4-x86_64-darwin)
|
|
69
71
|
ffi (1.17.4-x86_64-linux-gnu)
|
|
70
|
-
ffi
|
|
72
|
+
ffi (1.17.4-x86_64-linux-musl)
|
|
73
|
+
ffi-compiler (1.4.2)
|
|
71
74
|
ffi (>= 1.15.5)
|
|
72
75
|
rake
|
|
73
76
|
gitlab (5.1.0)
|
|
74
77
|
base64 (~> 0.2.0)
|
|
75
78
|
httparty (~> 0.20)
|
|
76
79
|
terminal-table (>= 1.5.1)
|
|
77
|
-
gitlab-labkit (
|
|
78
|
-
actionpack (>= 5.0.0, < 8.
|
|
79
|
-
activesupport (>= 5.0.0, < 8.
|
|
80
|
+
gitlab-labkit (4.0.0)
|
|
81
|
+
actionpack (>= 5.0.0, < 8.2.0)
|
|
82
|
+
activesupport (>= 5.0.0, < 8.2.0)
|
|
80
83
|
google-protobuf (>= 3.25, < 5.0)
|
|
81
84
|
grpc (>= 1.75)
|
|
82
85
|
jaeger-client (~> 1.1.0)
|
|
83
86
|
json_schemer (>= 2.3.0, < 3.0)
|
|
84
87
|
openssl (~> 3.3.2)
|
|
85
|
-
opentelemetry-exporter-otlp (
|
|
86
|
-
opentelemetry-instrumentation-all (
|
|
87
|
-
opentelemetry-sdk (
|
|
88
|
-
opentracing (
|
|
88
|
+
opentelemetry-exporter-otlp (>= 0.31, < 1)
|
|
89
|
+
opentelemetry-instrumentation-all (>= 0.89, < 1)
|
|
90
|
+
opentelemetry-sdk (>= 1.10, < 2)
|
|
91
|
+
opentracing (>= 0.4, < 1)
|
|
89
92
|
pg_query (>= 6.1.0, < 7.0)
|
|
90
93
|
prometheus-client-mmap (>= 1.2, < 2.0)
|
|
91
94
|
redis (> 3.0.0, < 6.0.0)
|
|
92
|
-
google-protobuf (4.
|
|
95
|
+
google-protobuf (4.35.1)
|
|
96
|
+
bigdecimal
|
|
97
|
+
rake (~> 13.3)
|
|
98
|
+
google-protobuf (4.35.1-aarch64-linux-gnu)
|
|
99
|
+
bigdecimal
|
|
100
|
+
rake (~> 13.3)
|
|
101
|
+
google-protobuf (4.35.1-aarch64-linux-musl)
|
|
93
102
|
bigdecimal
|
|
94
|
-
rake (
|
|
95
|
-
google-protobuf (4.
|
|
103
|
+
rake (~> 13.3)
|
|
104
|
+
google-protobuf (4.35.1-arm64-darwin)
|
|
96
105
|
bigdecimal
|
|
97
|
-
rake (
|
|
98
|
-
google-protobuf (4.
|
|
106
|
+
rake (~> 13.3)
|
|
107
|
+
google-protobuf (4.35.1-x86_64-darwin)
|
|
99
108
|
bigdecimal
|
|
100
|
-
rake (
|
|
101
|
-
google-protobuf (4.
|
|
109
|
+
rake (~> 13.3)
|
|
110
|
+
google-protobuf (4.35.1-x86_64-linux-gnu)
|
|
102
111
|
bigdecimal
|
|
103
|
-
rake (
|
|
112
|
+
rake (~> 13.3)
|
|
113
|
+
google-protobuf (4.35.1-x86_64-linux-musl)
|
|
114
|
+
bigdecimal
|
|
115
|
+
rake (~> 13.3)
|
|
104
116
|
googleapis-common-protos-types (1.23.0)
|
|
105
117
|
google-protobuf (~> 4.26)
|
|
106
|
-
grpc (1.
|
|
118
|
+
grpc (1.83.0)
|
|
119
|
+
google-protobuf (>= 3.25, < 5.0)
|
|
120
|
+
googleapis-common-protos-types (~> 1.0)
|
|
121
|
+
grpc (1.83.0-aarch64-linux-gnu)
|
|
107
122
|
google-protobuf (>= 3.25, < 5.0)
|
|
108
123
|
googleapis-common-protos-types (~> 1.0)
|
|
109
|
-
grpc (1.
|
|
124
|
+
grpc (1.83.0-aarch64-linux-musl)
|
|
110
125
|
google-protobuf (>= 3.25, < 5.0)
|
|
111
126
|
googleapis-common-protos-types (~> 1.0)
|
|
112
|
-
grpc (1.
|
|
127
|
+
grpc (1.83.0-arm64-darwin)
|
|
113
128
|
google-protobuf (>= 3.25, < 5.0)
|
|
114
129
|
googleapis-common-protos-types (~> 1.0)
|
|
115
|
-
grpc (1.
|
|
130
|
+
grpc (1.83.0-x86_64-darwin)
|
|
131
|
+
google-protobuf (>= 3.25, < 5.0)
|
|
132
|
+
googleapis-common-protos-types (~> 1.0)
|
|
133
|
+
grpc (1.83.0-x86_64-linux-gnu)
|
|
134
|
+
google-protobuf (>= 3.25, < 5.0)
|
|
135
|
+
googleapis-common-protos-types (~> 1.0)
|
|
136
|
+
grpc (1.83.0-x86_64-linux-musl)
|
|
116
137
|
google-protobuf (>= 3.25, < 5.0)
|
|
117
138
|
googleapis-common-protos-types (~> 1.0)
|
|
118
139
|
hana (1.3.7)
|
|
119
|
-
hashdiff (1.1
|
|
140
|
+
hashdiff (1.2.1)
|
|
120
141
|
http (5.2.0)
|
|
121
142
|
addressable (~> 2.8)
|
|
122
143
|
base64 (~> 0.1)
|
|
123
144
|
http-cookie (~> 1.0)
|
|
124
145
|
http-form_data (~> 2.2)
|
|
125
146
|
llhttp-ffi (~> 0.5.0)
|
|
126
|
-
http-cookie (1.
|
|
147
|
+
http-cookie (1.1.6)
|
|
127
148
|
domain_name (~> 0.5)
|
|
128
149
|
http-form_data (2.3.0)
|
|
129
|
-
httparty (0.
|
|
150
|
+
httparty (0.24.2)
|
|
130
151
|
csv
|
|
131
152
|
mini_mime (>= 1.0.0)
|
|
132
153
|
multi_xml (>= 0.5.2)
|
|
133
|
-
i18n (1.
|
|
154
|
+
i18n (1.15.2)
|
|
134
155
|
concurrent-ruby (~> 1.0)
|
|
135
156
|
jaeger-client (1.1.0)
|
|
136
157
|
opentracing (~> 0.3)
|
|
137
158
|
thrift
|
|
138
|
-
json (2.
|
|
159
|
+
json (2.21.2)
|
|
139
160
|
json_schemer (2.5.0)
|
|
140
161
|
bigdecimal
|
|
141
162
|
hana (~> 1.3)
|
|
142
163
|
regexp_parser (~> 2.0)
|
|
143
164
|
simpleidn (~> 0.2)
|
|
144
|
-
language_server-protocol (3.17.0.
|
|
145
|
-
|
|
165
|
+
language_server-protocol (3.17.0.6)
|
|
166
|
+
lint_roller (1.1.0)
|
|
167
|
+
llhttp-ffi (0.5.1)
|
|
146
168
|
ffi-compiler (~> 1.0)
|
|
147
169
|
rake (~> 13.0)
|
|
148
|
-
logger (1.
|
|
149
|
-
loofah (2.25.
|
|
170
|
+
logger (1.7.0)
|
|
171
|
+
loofah (2.25.2)
|
|
150
172
|
crass (~> 1.0.2)
|
|
151
173
|
nokogiri (>= 1.12.0)
|
|
152
174
|
method_source (1.1.0)
|
|
153
175
|
mini_mime (1.1.5)
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
176
|
+
minitest (6.0.6)
|
|
177
|
+
drb (~> 2.0)
|
|
178
|
+
prism (~> 1.5)
|
|
179
|
+
multi_xml (0.9.1)
|
|
180
|
+
bigdecimal (>= 3.1, < 5)
|
|
181
|
+
nokogiri (1.19.4-aarch64-linux-gnu)
|
|
182
|
+
racc (~> 1.4)
|
|
183
|
+
nokogiri (1.19.4-aarch64-linux-musl)
|
|
184
|
+
racc (~> 1.4)
|
|
185
|
+
nokogiri (1.19.4-arm-linux-gnu)
|
|
160
186
|
racc (~> 1.4)
|
|
161
|
-
nokogiri (1.19.
|
|
187
|
+
nokogiri (1.19.4-arm-linux-musl)
|
|
162
188
|
racc (~> 1.4)
|
|
163
|
-
nokogiri (1.19.
|
|
189
|
+
nokogiri (1.19.4-arm64-darwin)
|
|
164
190
|
racc (~> 1.4)
|
|
165
|
-
nokogiri (1.19.
|
|
191
|
+
nokogiri (1.19.4-x86_64-darwin)
|
|
192
|
+
racc (~> 1.4)
|
|
193
|
+
nokogiri (1.19.4-x86_64-linux-gnu)
|
|
194
|
+
racc (~> 1.4)
|
|
195
|
+
nokogiri (1.19.4-x86_64-linux-musl)
|
|
166
196
|
racc (~> 1.4)
|
|
167
197
|
openssl (3.3.3)
|
|
168
|
-
opentelemetry-api (1.
|
|
198
|
+
opentelemetry-api (1.11.0)
|
|
169
199
|
logger
|
|
170
|
-
opentelemetry-common (0.25.
|
|
200
|
+
opentelemetry-common (0.25.1)
|
|
171
201
|
opentelemetry-api (~> 1.0)
|
|
172
|
-
opentelemetry-exporter-otlp (0.
|
|
202
|
+
opentelemetry-exporter-otlp (0.34.1)
|
|
173
203
|
google-protobuf (>= 3.18)
|
|
174
204
|
googleapis-common-protos-types (~> 1.3)
|
|
175
205
|
opentelemetry-api (~> 1.1)
|
|
@@ -190,192 +220,208 @@ GEM
|
|
|
190
220
|
opentelemetry-instrumentation-rack (~> 0.29)
|
|
191
221
|
opentelemetry-instrumentation-action_view (0.13.0)
|
|
192
222
|
opentelemetry-instrumentation-active_support (~> 0.10)
|
|
193
|
-
opentelemetry-instrumentation-active_job (0.
|
|
223
|
+
opentelemetry-instrumentation-active_job (0.13.0)
|
|
194
224
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
195
|
-
opentelemetry-instrumentation-active_model_serializers (0.
|
|
225
|
+
opentelemetry-instrumentation-active_model_serializers (0.25.0)
|
|
196
226
|
opentelemetry-instrumentation-active_support (>= 0.7.0)
|
|
197
227
|
opentelemetry-instrumentation-active_record (0.13.0)
|
|
198
228
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
199
229
|
opentelemetry-instrumentation-active_storage (0.5.1)
|
|
200
230
|
opentelemetry-instrumentation-active_support (~> 0.10)
|
|
201
|
-
opentelemetry-instrumentation-active_support (0.12.
|
|
202
|
-
opentelemetry-instrumentation-base (~> 0.25)
|
|
203
|
-
opentelemetry-instrumentation-all (0.
|
|
204
|
-
opentelemetry-instrumentation-active_model_serializers (~> 0.
|
|
205
|
-
opentelemetry-instrumentation-anthropic (~> 0.
|
|
206
|
-
opentelemetry-instrumentation-aws_lambda (~> 0.
|
|
207
|
-
opentelemetry-instrumentation-aws_sdk (~> 0.
|
|
208
|
-
opentelemetry-instrumentation-bunny (~> 0.
|
|
209
|
-
opentelemetry-instrumentation-concurrent_ruby (~> 0.
|
|
210
|
-
opentelemetry-instrumentation-dalli (~> 0.
|
|
211
|
-
opentelemetry-instrumentation-delayed_job (~> 0.
|
|
212
|
-
opentelemetry-instrumentation-ethon (~> 0.
|
|
213
|
-
opentelemetry-instrumentation-excon (~> 0.
|
|
214
|
-
opentelemetry-instrumentation-faraday (~> 0.
|
|
215
|
-
opentelemetry-instrumentation-grape (~> 0.
|
|
216
|
-
opentelemetry-instrumentation-graphql (~> 0.
|
|
217
|
-
opentelemetry-instrumentation-grpc (~> 0.
|
|
218
|
-
opentelemetry-instrumentation-gruf (~> 0.
|
|
219
|
-
opentelemetry-instrumentation-http (~> 0.
|
|
220
|
-
opentelemetry-instrumentation-http_client (~> 0.
|
|
221
|
-
opentelemetry-instrumentation-httpx (~> 0.
|
|
222
|
-
opentelemetry-instrumentation-koala (~> 0.
|
|
223
|
-
opentelemetry-instrumentation-lmdb (~> 0.
|
|
224
|
-
opentelemetry-instrumentation-mongo (~> 0.
|
|
225
|
-
opentelemetry-instrumentation-mysql2 (~> 0.
|
|
226
|
-
opentelemetry-instrumentation-net_http (~> 0.
|
|
227
|
-
opentelemetry-instrumentation-pg (~> 0.
|
|
228
|
-
opentelemetry-instrumentation-que (~> 0.
|
|
229
|
-
opentelemetry-instrumentation-racecar (~> 0.
|
|
230
|
-
opentelemetry-instrumentation-rack (~> 0.
|
|
231
|
-
opentelemetry-instrumentation-rails (~> 0.
|
|
232
|
-
opentelemetry-instrumentation-rake (~> 0.
|
|
233
|
-
opentelemetry-instrumentation-rdkafka (~> 0.
|
|
234
|
-
opentelemetry-instrumentation-redis (~> 0.
|
|
235
|
-
opentelemetry-instrumentation-resque (~> 0.
|
|
236
|
-
opentelemetry-instrumentation-restclient (~> 0.
|
|
237
|
-
opentelemetry-instrumentation-ruby_kafka (~> 0.
|
|
238
|
-
opentelemetry-instrumentation-sidekiq (~> 0.
|
|
239
|
-
opentelemetry-instrumentation-sinatra (~> 0.
|
|
240
|
-
opentelemetry-instrumentation-trilogy (~> 0.
|
|
241
|
-
opentelemetry-instrumentation-anthropic (0.
|
|
242
|
-
opentelemetry-instrumentation-base (~> 0.25)
|
|
243
|
-
opentelemetry-instrumentation-aws_lambda (0.
|
|
244
|
-
opentelemetry-instrumentation-base (~> 0.25)
|
|
245
|
-
opentelemetry-instrumentation-aws_sdk (0.
|
|
231
|
+
opentelemetry-instrumentation-active_support (0.12.1)
|
|
232
|
+
opentelemetry-instrumentation-base (~> 0.25)
|
|
233
|
+
opentelemetry-instrumentation-all (0.94.0)
|
|
234
|
+
opentelemetry-instrumentation-active_model_serializers (~> 0.25.0)
|
|
235
|
+
opentelemetry-instrumentation-anthropic (~> 0.5.0)
|
|
236
|
+
opentelemetry-instrumentation-aws_lambda (~> 0.7.0)
|
|
237
|
+
opentelemetry-instrumentation-aws_sdk (~> 0.12.0)
|
|
238
|
+
opentelemetry-instrumentation-bunny (~> 0.25.0)
|
|
239
|
+
opentelemetry-instrumentation-concurrent_ruby (~> 0.25.0)
|
|
240
|
+
opentelemetry-instrumentation-dalli (~> 0.30.0)
|
|
241
|
+
opentelemetry-instrumentation-delayed_job (~> 0.26.0)
|
|
242
|
+
opentelemetry-instrumentation-ethon (~> 0.29.0)
|
|
243
|
+
opentelemetry-instrumentation-excon (~> 0.29.0)
|
|
244
|
+
opentelemetry-instrumentation-faraday (~> 0.33.0)
|
|
245
|
+
opentelemetry-instrumentation-grape (~> 0.7.0)
|
|
246
|
+
opentelemetry-instrumentation-graphql (~> 0.32.0)
|
|
247
|
+
opentelemetry-instrumentation-grpc (~> 0.5.0)
|
|
248
|
+
opentelemetry-instrumentation-gruf (~> 0.6.0)
|
|
249
|
+
opentelemetry-instrumentation-http (~> 0.30.0)
|
|
250
|
+
opentelemetry-instrumentation-http_client (~> 0.29.0)
|
|
251
|
+
opentelemetry-instrumentation-httpx (~> 0.8.0)
|
|
252
|
+
opentelemetry-instrumentation-koala (~> 0.24.0)
|
|
253
|
+
opentelemetry-instrumentation-lmdb (~> 0.26.0)
|
|
254
|
+
opentelemetry-instrumentation-mongo (~> 0.26.0)
|
|
255
|
+
opentelemetry-instrumentation-mysql2 (~> 0.34.0)
|
|
256
|
+
opentelemetry-instrumentation-net_http (~> 0.29.0)
|
|
257
|
+
opentelemetry-instrumentation-pg (~> 0.36.0)
|
|
258
|
+
opentelemetry-instrumentation-que (~> 0.13.0)
|
|
259
|
+
opentelemetry-instrumentation-racecar (~> 0.7.0)
|
|
260
|
+
opentelemetry-instrumentation-rack (~> 0.31.0)
|
|
261
|
+
opentelemetry-instrumentation-rails (~> 0.42.0)
|
|
262
|
+
opentelemetry-instrumentation-rake (~> 0.6.0)
|
|
263
|
+
opentelemetry-instrumentation-rdkafka (~> 0.10.0)
|
|
264
|
+
opentelemetry-instrumentation-redis (~> 0.29.0)
|
|
265
|
+
opentelemetry-instrumentation-resque (~> 0.9.0)
|
|
266
|
+
opentelemetry-instrumentation-restclient (~> 0.28.0)
|
|
267
|
+
opentelemetry-instrumentation-ruby_kafka (~> 0.25.0)
|
|
268
|
+
opentelemetry-instrumentation-sidekiq (~> 0.29.0)
|
|
269
|
+
opentelemetry-instrumentation-sinatra (~> 0.30.0)
|
|
270
|
+
opentelemetry-instrumentation-trilogy (~> 0.69.0)
|
|
271
|
+
opentelemetry-instrumentation-anthropic (0.5.0)
|
|
272
|
+
opentelemetry-instrumentation-base (~> 0.25)
|
|
273
|
+
opentelemetry-instrumentation-aws_lambda (0.7.0)
|
|
274
|
+
opentelemetry-instrumentation-base (~> 0.25)
|
|
275
|
+
opentelemetry-instrumentation-aws_sdk (0.12.0)
|
|
246
276
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
247
277
|
opentelemetry-instrumentation-base (0.26.1)
|
|
248
278
|
opentelemetry-api (~> 1.7)
|
|
249
279
|
opentelemetry-common (~> 0.21)
|
|
250
280
|
opentelemetry-registry (~> 0.1)
|
|
251
|
-
opentelemetry-instrumentation-bunny (0.
|
|
281
|
+
opentelemetry-instrumentation-bunny (0.25.0)
|
|
252
282
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
253
|
-
opentelemetry-instrumentation-concurrent_ruby (0.
|
|
283
|
+
opentelemetry-instrumentation-concurrent_ruby (0.25.0)
|
|
254
284
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
255
|
-
opentelemetry-instrumentation-dalli (0.
|
|
285
|
+
opentelemetry-instrumentation-dalli (0.30.0)
|
|
256
286
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
257
|
-
opentelemetry-instrumentation-delayed_job (0.
|
|
287
|
+
opentelemetry-instrumentation-delayed_job (0.26.0)
|
|
258
288
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
259
|
-
opentelemetry-instrumentation-ethon (0.
|
|
289
|
+
opentelemetry-instrumentation-ethon (0.29.0)
|
|
260
290
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
261
|
-
opentelemetry-instrumentation-excon (0.
|
|
291
|
+
opentelemetry-instrumentation-excon (0.29.1)
|
|
262
292
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
263
|
-
opentelemetry-instrumentation-faraday (0.
|
|
293
|
+
opentelemetry-instrumentation-faraday (0.33.0)
|
|
264
294
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
265
|
-
opentelemetry-instrumentation-grape (0.
|
|
295
|
+
opentelemetry-instrumentation-grape (0.7.1)
|
|
266
296
|
opentelemetry-instrumentation-rack (~> 0.29)
|
|
267
|
-
opentelemetry-instrumentation-graphql (0.
|
|
297
|
+
opentelemetry-instrumentation-graphql (0.32.0)
|
|
268
298
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
269
|
-
opentelemetry-instrumentation-grpc (0.
|
|
299
|
+
opentelemetry-instrumentation-grpc (0.5.2)
|
|
270
300
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
271
|
-
opentelemetry-instrumentation-gruf (0.
|
|
301
|
+
opentelemetry-instrumentation-gruf (0.6.2)
|
|
272
302
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
273
|
-
opentelemetry-instrumentation-http (0.
|
|
303
|
+
opentelemetry-instrumentation-http (0.30.0)
|
|
274
304
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
275
|
-
opentelemetry-instrumentation-http_client (0.
|
|
305
|
+
opentelemetry-instrumentation-http_client (0.29.0)
|
|
276
306
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
277
|
-
opentelemetry-instrumentation-httpx (0.
|
|
307
|
+
opentelemetry-instrumentation-httpx (0.8.0)
|
|
278
308
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
279
|
-
opentelemetry-instrumentation-koala (0.
|
|
309
|
+
opentelemetry-instrumentation-koala (0.24.0)
|
|
280
310
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
281
|
-
opentelemetry-instrumentation-lmdb (0.
|
|
311
|
+
opentelemetry-instrumentation-lmdb (0.26.0)
|
|
282
312
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
283
|
-
opentelemetry-instrumentation-mongo (0.
|
|
313
|
+
opentelemetry-instrumentation-mongo (0.26.0)
|
|
284
314
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
285
|
-
opentelemetry-instrumentation-mysql2 (0.
|
|
315
|
+
opentelemetry-instrumentation-mysql2 (0.34.0)
|
|
286
316
|
opentelemetry-helpers-mysql
|
|
287
317
|
opentelemetry-helpers-sql
|
|
288
318
|
opentelemetry-helpers-sql-processor
|
|
289
319
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
290
|
-
opentelemetry-instrumentation-net_http (0.
|
|
320
|
+
opentelemetry-instrumentation-net_http (0.29.0)
|
|
291
321
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
292
|
-
opentelemetry-instrumentation-pg (0.
|
|
322
|
+
opentelemetry-instrumentation-pg (0.36.0)
|
|
293
323
|
opentelemetry-helpers-sql
|
|
294
324
|
opentelemetry-helpers-sql-processor
|
|
295
325
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
296
|
-
opentelemetry-instrumentation-que (0.
|
|
326
|
+
opentelemetry-instrumentation-que (0.13.0)
|
|
297
327
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
298
|
-
opentelemetry-instrumentation-racecar (0.
|
|
328
|
+
opentelemetry-instrumentation-racecar (0.7.0)
|
|
299
329
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
300
|
-
opentelemetry-instrumentation-rack (0.
|
|
330
|
+
opentelemetry-instrumentation-rack (0.31.1)
|
|
301
331
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
302
|
-
opentelemetry-instrumentation-rails (0.
|
|
303
|
-
opentelemetry-instrumentation-action_mailer (~> 0.
|
|
304
|
-
opentelemetry-instrumentation-action_pack (~> 0.
|
|
305
|
-
opentelemetry-instrumentation-action_view (~> 0.
|
|
306
|
-
opentelemetry-instrumentation-active_job (~> 0.
|
|
307
|
-
opentelemetry-instrumentation-active_record (~> 0.
|
|
308
|
-
opentelemetry-instrumentation-active_storage (~> 0.
|
|
309
|
-
opentelemetry-instrumentation-active_support (~> 0.
|
|
310
|
-
opentelemetry-instrumentation-concurrent_ruby (~> 0.
|
|
311
|
-
opentelemetry-instrumentation-rake (0.
|
|
332
|
+
opentelemetry-instrumentation-rails (0.42.0)
|
|
333
|
+
opentelemetry-instrumentation-action_mailer (~> 0.7)
|
|
334
|
+
opentelemetry-instrumentation-action_pack (~> 0.17)
|
|
335
|
+
opentelemetry-instrumentation-action_view (~> 0.12)
|
|
336
|
+
opentelemetry-instrumentation-active_job (~> 0.11)
|
|
337
|
+
opentelemetry-instrumentation-active_record (~> 0.12)
|
|
338
|
+
opentelemetry-instrumentation-active_storage (~> 0.4)
|
|
339
|
+
opentelemetry-instrumentation-active_support (~> 0.11)
|
|
340
|
+
opentelemetry-instrumentation-concurrent_ruby (~> 0.25)
|
|
341
|
+
opentelemetry-instrumentation-rake (0.6.0)
|
|
312
342
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
313
|
-
opentelemetry-instrumentation-rdkafka (0.
|
|
343
|
+
opentelemetry-instrumentation-rdkafka (0.10.0)
|
|
314
344
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
315
|
-
opentelemetry-instrumentation-redis (0.
|
|
345
|
+
opentelemetry-instrumentation-redis (0.29.0)
|
|
316
346
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
317
|
-
opentelemetry-instrumentation-resque (0.
|
|
347
|
+
opentelemetry-instrumentation-resque (0.9.0)
|
|
318
348
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
319
|
-
opentelemetry-instrumentation-restclient (0.
|
|
349
|
+
opentelemetry-instrumentation-restclient (0.28.0)
|
|
320
350
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
321
|
-
opentelemetry-instrumentation-ruby_kafka (0.
|
|
351
|
+
opentelemetry-instrumentation-ruby_kafka (0.25.0)
|
|
322
352
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
323
|
-
opentelemetry-instrumentation-sidekiq (0.
|
|
353
|
+
opentelemetry-instrumentation-sidekiq (0.29.0)
|
|
324
354
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
325
|
-
opentelemetry-instrumentation-sinatra (0.
|
|
355
|
+
opentelemetry-instrumentation-sinatra (0.30.0)
|
|
326
356
|
opentelemetry-instrumentation-rack (~> 0.29)
|
|
327
|
-
opentelemetry-instrumentation-trilogy (0.
|
|
357
|
+
opentelemetry-instrumentation-trilogy (0.69.0)
|
|
328
358
|
opentelemetry-helpers-mysql
|
|
329
359
|
opentelemetry-helpers-sql
|
|
330
360
|
opentelemetry-helpers-sql-processor
|
|
331
361
|
opentelemetry-instrumentation-base (~> 0.25)
|
|
332
362
|
opentelemetry-semantic_conventions (>= 1.8.0)
|
|
333
|
-
opentelemetry-registry (0.6.
|
|
363
|
+
opentelemetry-registry (0.6.3)
|
|
334
364
|
opentelemetry-api (~> 1.1)
|
|
335
|
-
opentelemetry-sdk (1.
|
|
365
|
+
opentelemetry-sdk (1.13.0)
|
|
336
366
|
logger
|
|
337
367
|
opentelemetry-api (~> 1.1)
|
|
338
368
|
opentelemetry-common (~> 0.20)
|
|
339
369
|
opentelemetry-registry (~> 0.2)
|
|
340
370
|
opentelemetry-semantic_conventions
|
|
341
|
-
opentelemetry-semantic_conventions (1.
|
|
371
|
+
opentelemetry-semantic_conventions (1.43.0)
|
|
342
372
|
opentelemetry-api (~> 1.0)
|
|
343
373
|
opentracing (0.5.0)
|
|
344
|
-
parallel (1.
|
|
345
|
-
parser (3.3.
|
|
374
|
+
parallel (2.1.0)
|
|
375
|
+
parser (3.3.12.0)
|
|
346
376
|
ast (~> 2.4.1)
|
|
347
377
|
racc
|
|
348
378
|
pg_query (6.2.2)
|
|
349
379
|
google-protobuf (>= 3.25.3)
|
|
380
|
+
prism (1.9.0)
|
|
350
381
|
proc_to_ast (0.2.0)
|
|
351
382
|
parser
|
|
352
383
|
rouge
|
|
353
384
|
unparser
|
|
354
|
-
prometheus-client-mmap (1.
|
|
385
|
+
prometheus-client-mmap (1.6.0)
|
|
386
|
+
base64
|
|
387
|
+
bigdecimal
|
|
388
|
+
logger
|
|
389
|
+
rb_sys (~> 0.9.128)
|
|
390
|
+
prometheus-client-mmap (1.6.0-aarch64-linux-gnu)
|
|
391
|
+
base64
|
|
392
|
+
bigdecimal
|
|
393
|
+
logger
|
|
394
|
+
rb_sys (~> 0.9.128)
|
|
395
|
+
prometheus-client-mmap (1.6.0-aarch64-linux-musl)
|
|
396
|
+
base64
|
|
397
|
+
bigdecimal
|
|
398
|
+
logger
|
|
399
|
+
rb_sys (~> 0.9.128)
|
|
400
|
+
prometheus-client-mmap (1.6.0-arm64-darwin)
|
|
355
401
|
base64
|
|
356
402
|
bigdecimal
|
|
357
403
|
logger
|
|
358
|
-
rb_sys (~> 0.9.
|
|
359
|
-
prometheus-client-mmap (1.
|
|
404
|
+
rb_sys (~> 0.9.128)
|
|
405
|
+
prometheus-client-mmap (1.6.0-x86_64-darwin)
|
|
360
406
|
base64
|
|
361
407
|
bigdecimal
|
|
362
408
|
logger
|
|
363
|
-
rb_sys (~> 0.9.
|
|
364
|
-
prometheus-client-mmap (1.
|
|
409
|
+
rb_sys (~> 0.9.128)
|
|
410
|
+
prometheus-client-mmap (1.6.0-x86_64-linux-gnu)
|
|
365
411
|
base64
|
|
366
412
|
bigdecimal
|
|
367
413
|
logger
|
|
368
|
-
rb_sys (~> 0.9.
|
|
369
|
-
prometheus-client-mmap (1.
|
|
414
|
+
rb_sys (~> 0.9.128)
|
|
415
|
+
prometheus-client-mmap (1.6.0-x86_64-linux-musl)
|
|
370
416
|
base64
|
|
371
417
|
bigdecimal
|
|
372
418
|
logger
|
|
373
|
-
rb_sys (~> 0.9.
|
|
419
|
+
rb_sys (~> 0.9.128)
|
|
374
420
|
pry (0.14.2)
|
|
375
421
|
coderay (~> 1.1)
|
|
376
422
|
method_source (~> 1.0)
|
|
377
|
-
public_suffix (
|
|
378
|
-
racc (1.8.
|
|
423
|
+
public_suffix (7.0.5)
|
|
424
|
+
racc (1.8.1)
|
|
379
425
|
rack (3.2.6)
|
|
380
426
|
rack-session (2.1.2)
|
|
381
427
|
base64 (>= 0.1.0)
|
|
@@ -386,76 +432,81 @@ GEM
|
|
|
386
432
|
activesupport (>= 5.0.0)
|
|
387
433
|
minitest
|
|
388
434
|
nokogiri (>= 1.6)
|
|
389
|
-
rails-html-sanitizer (1.7.
|
|
390
|
-
loofah (~> 2.25)
|
|
435
|
+
rails-html-sanitizer (1.7.1)
|
|
436
|
+
loofah (~> 2.25, >= 2.25.2)
|
|
391
437
|
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
|
392
438
|
rainbow (3.1.1)
|
|
393
|
-
rake (13.2
|
|
439
|
+
rake (13.4.2)
|
|
394
440
|
rake-compiler-dock (1.12.0)
|
|
395
441
|
rb_sys (0.9.128)
|
|
396
442
|
rake-compiler-dock (= 1.12.0)
|
|
397
443
|
redis (5.4.1)
|
|
398
444
|
redis-client (>= 0.22.0)
|
|
399
|
-
redis-client (0.
|
|
445
|
+
redis-client (0.30.1)
|
|
400
446
|
connection_pool
|
|
401
|
-
regexp_parser (2.
|
|
447
|
+
regexp_parser (2.12.0)
|
|
402
448
|
retriable (3.1.2)
|
|
403
|
-
rexml (3.
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
rspec (3.13.
|
|
449
|
+
rexml (3.4.4)
|
|
450
|
+
rouge (5.0.0)
|
|
451
|
+
strscan (~> 3.1)
|
|
452
|
+
rspec (3.13.2)
|
|
407
453
|
rspec-core (~> 3.13.0)
|
|
408
454
|
rspec-expectations (~> 3.13.0)
|
|
409
455
|
rspec-mocks (~> 3.13.0)
|
|
410
|
-
rspec-core (3.13.
|
|
456
|
+
rspec-core (3.13.6)
|
|
411
457
|
rspec-support (~> 3.13.0)
|
|
412
|
-
rspec-expectations (3.13.
|
|
458
|
+
rspec-expectations (3.13.5)
|
|
413
459
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
414
460
|
rspec-support (~> 3.13.0)
|
|
415
|
-
rspec-mocks (3.13.
|
|
461
|
+
rspec-mocks (3.13.8)
|
|
416
462
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
417
463
|
rspec-support (~> 3.13.0)
|
|
418
|
-
rspec-parameterized (
|
|
419
|
-
rspec-parameterized-core (<
|
|
420
|
-
rspec-parameterized-table_syntax (<
|
|
421
|
-
rspec-parameterized-core (
|
|
464
|
+
rspec-parameterized (2.0.1)
|
|
465
|
+
rspec-parameterized-core (>= 2, < 3)
|
|
466
|
+
rspec-parameterized-table_syntax (>= 2, < 3)
|
|
467
|
+
rspec-parameterized-core (2.0.2)
|
|
422
468
|
parser
|
|
469
|
+
prism
|
|
423
470
|
proc_to_ast (>= 0.2.0)
|
|
424
471
|
rspec (>= 2.13, < 4)
|
|
425
472
|
unparser
|
|
426
|
-
rspec-parameterized-table_syntax (1.
|
|
427
|
-
binding_of_caller
|
|
428
|
-
rspec-parameterized-core (<
|
|
429
|
-
rspec-support (3.13.
|
|
430
|
-
rubocop (1.
|
|
473
|
+
rspec-parameterized-table_syntax (2.1.1)
|
|
474
|
+
binding_of_caller (>= 2)
|
|
475
|
+
rspec-parameterized-core (>= 2, < 3)
|
|
476
|
+
rspec-support (3.13.7)
|
|
477
|
+
rubocop (1.89.0)
|
|
431
478
|
json (~> 2.3)
|
|
432
|
-
language_server-protocol (
|
|
433
|
-
|
|
479
|
+
language_server-protocol (~> 3.17.0.2)
|
|
480
|
+
lint_roller (~> 1.1.0)
|
|
481
|
+
parallel (>= 1.10)
|
|
434
482
|
parser (>= 3.3.0.2)
|
|
435
483
|
rainbow (>= 2.2.2, < 4.0)
|
|
436
|
-
regexp_parser (>=
|
|
437
|
-
|
|
438
|
-
rubocop-ast (>= 1.31.1, < 2.0)
|
|
484
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
|
485
|
+
rubocop-ast (>= 1.49.0, < 2.0)
|
|
439
486
|
ruby-progressbar (~> 1.7)
|
|
440
|
-
unicode-display_width (>= 2.4.0, <
|
|
441
|
-
rubocop-ast (1.
|
|
442
|
-
parser (>= 3.3.
|
|
487
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
|
488
|
+
rubocop-ast (1.50.0)
|
|
489
|
+
parser (>= 3.3.7.2)
|
|
490
|
+
prism (~> 1.7)
|
|
443
491
|
ruby-progressbar (1.13.0)
|
|
444
|
-
securerandom (0.
|
|
492
|
+
securerandom (0.4.1)
|
|
445
493
|
simpleidn (0.2.3)
|
|
446
|
-
strscan (3.1.
|
|
494
|
+
strscan (3.1.8)
|
|
447
495
|
terminal-table (4.0.0)
|
|
448
496
|
unicode-display_width (>= 1.1.1, < 4)
|
|
449
|
-
thrift (0.
|
|
497
|
+
thrift (0.24.0)
|
|
450
498
|
logger
|
|
451
|
-
timecop (0.9.
|
|
499
|
+
timecop (0.9.11)
|
|
452
500
|
tzinfo (2.0.6)
|
|
453
501
|
concurrent-ruby (~> 1.0)
|
|
454
|
-
unicode-display_width (2.
|
|
455
|
-
|
|
456
|
-
|
|
502
|
+
unicode-display_width (3.2.0)
|
|
503
|
+
unicode-emoji (~> 4.1)
|
|
504
|
+
unicode-emoji (4.2.0)
|
|
505
|
+
unparser (0.9.0)
|
|
506
|
+
diff-lcs (>= 1.6, < 3)
|
|
457
507
|
parser (>= 3.3.0)
|
|
458
|
-
|
|
508
|
+
prism (>= 1.5.1)
|
|
509
|
+
uri (1.1.1)
|
|
459
510
|
useragent (0.16.11)
|
|
460
511
|
vcr (6.2.0)
|
|
461
512
|
version_sorter (2.3.0)
|
|
@@ -465,13 +516,14 @@ GEM
|
|
|
465
516
|
hashdiff (>= 0.4.0, < 2.0.0)
|
|
466
517
|
|
|
467
518
|
PLATFORMS
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
x86_64-darwin
|
|
474
|
-
x86_64-linux
|
|
519
|
+
aarch64-linux-gnu
|
|
520
|
+
aarch64-linux-musl
|
|
521
|
+
arm-linux-gnu
|
|
522
|
+
arm-linux-musl
|
|
523
|
+
arm64-darwin
|
|
524
|
+
x86_64-darwin
|
|
525
|
+
x86_64-linux-gnu
|
|
526
|
+
x86_64-linux-musl
|
|
475
527
|
|
|
476
528
|
DEPENDENCIES
|
|
477
529
|
activesupport (~> 8.0)
|
|
@@ -490,4 +542,4 @@ DEPENDENCIES
|
|
|
490
542
|
webmock (~> 3.18.0)
|
|
491
543
|
|
|
492
544
|
BUNDLED WITH
|
|
493
|
-
|
|
545
|
+
4.0.17
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gitlab-releases
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mayra Cabrera
|
|
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: activesupport
|
|
@@ -48,16 +47,22 @@ dependencies:
|
|
|
48
47
|
name: gitlab-labkit
|
|
49
48
|
requirement: !ruby/object:Gem::Requirement
|
|
50
49
|
requirements:
|
|
51
|
-
- - "
|
|
50
|
+
- - ">="
|
|
52
51
|
- !ruby/object:Gem::Version
|
|
53
52
|
version: 1.5.1
|
|
53
|
+
- - "<"
|
|
54
|
+
- !ruby/object:Gem::Version
|
|
55
|
+
version: '5.0'
|
|
54
56
|
type: :runtime
|
|
55
57
|
prerelease: false
|
|
56
58
|
version_requirements: !ruby/object:Gem::Requirement
|
|
57
59
|
requirements:
|
|
58
|
-
- - "
|
|
60
|
+
- - ">="
|
|
59
61
|
- !ruby/object:Gem::Version
|
|
60
62
|
version: 1.5.1
|
|
63
|
+
- - "<"
|
|
64
|
+
- !ruby/object:Gem::Version
|
|
65
|
+
version: '5.0'
|
|
61
66
|
- !ruby/object:Gem::Dependency
|
|
62
67
|
name: http
|
|
63
68
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -106,7 +111,6 @@ dependencies:
|
|
|
106
111
|
- - "~>"
|
|
107
112
|
- !ruby/object:Gem::Version
|
|
108
113
|
version: 2.3.0
|
|
109
|
-
description:
|
|
110
114
|
email:
|
|
111
115
|
- mcabrera@gitlab.com
|
|
112
116
|
executables: []
|
|
@@ -143,7 +147,6 @@ metadata:
|
|
|
143
147
|
homepage_uri: https://gitlab.com/gitlab-org/ruby/gems/gitlab-releases
|
|
144
148
|
source_code_uri: https://gitlab.com/gitlab-org/ruby/gems/gitlab-releases
|
|
145
149
|
changelog_uri: https://gitlab.com/gitlab-org/ruby/gems/gitlab-releases/-/blob/main/CHANGELOG.md
|
|
146
|
-
post_install_message:
|
|
147
150
|
rdoc_options: []
|
|
148
151
|
require_paths:
|
|
149
152
|
- lib
|
|
@@ -151,15 +154,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
151
154
|
requirements:
|
|
152
155
|
- - ">="
|
|
153
156
|
- !ruby/object:Gem::Version
|
|
154
|
-
version: 3.3
|
|
157
|
+
version: '3.3'
|
|
155
158
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
156
159
|
requirements:
|
|
157
160
|
- - ">="
|
|
158
161
|
- !ruby/object:Gem::Version
|
|
159
162
|
version: '0'
|
|
160
163
|
requirements: []
|
|
161
|
-
rubygems_version: 3.
|
|
162
|
-
signing_key:
|
|
164
|
+
rubygems_version: 3.6.9
|
|
163
165
|
specification_version: 4
|
|
164
166
|
summary: Utilities for GitLab releases and versions
|
|
165
167
|
test_files: []
|