gitlab-qa 13.2.0 → 13.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ec2a37c6f98ab78ae2f344370d529f82b569ead6d88845e50226356617a9ebee
4
- data.tar.gz: 8c8e21d9b39bd995e9e3e0d9c631f1c11ce711d107209bcea4f88038c679830b
3
+ metadata.gz: 9c623075f415ee608143ece59eaf3427ade2a7a0da0fd6c265c7429c841d8cad
4
+ data.tar.gz: d8a0a4923e127e1b289780a318a2a3f9479f4fa9b96c3651bb9fd54a095b06e6
5
5
  SHA512:
6
- metadata.gz: feff60020a43876bfee3ec151d2baa2026275d9c931cbd49c0a74b0c6af53ebacd54e3e8a77324a30eafbec72d7e3eb39f5d0e259b42d7e9279837cf85bf02ad
7
- data.tar.gz: c2f96db542d246fddcf610414644f4c05768f14e901fade00e0f754253504de7fc38394e0a51f86f24ffea00635090d54e16c523dca7a589cb7de69b6d337216
6
+ metadata.gz: 69d9bd5a8d29af6d7d9d4dd0be074da1052b518211a95f248abe9ad45f78bd2485ec6fb7a94ad659479ad705f6b7053ac896ee4c68c709dea8df9e2e45436bdb
7
+ data.tar.gz: e350f3fe1df2ad7dbb76c0beddfc021f7071e003fffdfe468f46d79a7ed0045b6b1e373da7f24f22af45b8c4c1c4b572f356b9bd08c3a608fa8ce33e8ab384ac
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gitlab-qa (13.2.0)
4
+ gitlab-qa (13.2.1)
5
5
  activesupport (>= 6.1, < 7.2)
6
6
  gitlab (~> 4.19)
7
7
  http (~> 5.0)
@@ -14,16 +14,23 @@ PATH
14
14
  GEM
15
15
  remote: https://rubygems.org/
16
16
  specs:
17
- activesupport (7.0.5.1)
17
+ activesupport (7.1.2)
18
+ base64
19
+ bigdecimal
18
20
  concurrent-ruby (~> 1.0, >= 1.0.2)
21
+ connection_pool (>= 2.2.5)
22
+ drb
19
23
  i18n (>= 1.6, < 2)
20
24
  minitest (>= 5.1)
25
+ mutex_m
21
26
  tzinfo (~> 2.0)
22
27
  addressable (2.8.1)
23
28
  public_suffix (>= 2.0.2, < 6.0)
24
29
  ast (2.4.2)
25
30
  backport (1.2.0)
31
+ base64 (0.2.0)
26
32
  benchmark (0.2.0)
33
+ bigdecimal (3.1.5)
27
34
  byebug (11.1.3)
28
35
  claide (1.1.0)
29
36
  claide-plugins (0.9.2)
@@ -33,7 +40,8 @@ GEM
33
40
  climate_control (1.0.1)
34
41
  coderay (1.1.3)
35
42
  colored2 (3.1.2)
36
- concurrent-ruby (1.1.10)
43
+ concurrent-ruby (1.2.2)
44
+ connection_pool (2.4.1)
37
45
  cork (0.3.0)
38
46
  colored2 (~> 3.1)
39
47
  crack (0.4.5)
@@ -58,6 +66,8 @@ GEM
58
66
  docile (1.4.0)
59
67
  domain_name (0.5.20190701)
60
68
  unf (>= 0.0.5, < 1.0.0)
69
+ drb (2.2.0)
70
+ ruby2_keywords
61
71
  e2mmap (0.1.0)
62
72
  faraday (1.10.2)
63
73
  faraday-em_http (~> 1.0)
@@ -115,7 +125,7 @@ GEM
115
125
  httparty (0.20.0)
116
126
  mime-types (~> 3.0)
117
127
  multi_xml (>= 0.5.2)
118
- i18n (1.12.0)
128
+ i18n (1.14.1)
119
129
  concurrent-ruby (~> 1.0)
120
130
  jaro_winkler (1.5.4)
121
131
  json (2.6.3)
@@ -132,9 +142,10 @@ GEM
132
142
  mime-types-data (~> 3.2015)
133
143
  mime-types-data (3.2022.0105)
134
144
  mini_portile2 (2.8.0)
135
- minitest (5.16.3)
145
+ minitest (5.21.1)
136
146
  multi_xml (0.6.0)
137
147
  multipart-post (2.2.3)
148
+ mutex_m (0.2.0)
138
149
  nap (1.1.0)
139
150
  no_proxy_fix (0.1.2)
140
151
  nokogiri (1.13.9)
@@ -242,7 +253,7 @@ GEM
242
253
  thor (1.2.1)
243
254
  tilt (2.0.11)
244
255
  timecop (0.9.6)
245
- tzinfo (2.0.5)
256
+ tzinfo (2.0.6)
246
257
  concurrent-ruby (~> 1.0)
247
258
  unf (0.1.4)
248
259
  unf_ext
@@ -29,7 +29,7 @@ module Gitlab
29
29
  console_log = console_logger(level: level, source: source)
30
30
  file_log = file_logger(source: source, path: path)
31
31
 
32
- console_log.extend(ActiveSupport::Logger.broadcast(file_log))
32
+ ActiveSupport::BroadcastLogger.new(console_log, file_log)
33
33
  end
34
34
 
35
35
  private
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Gitlab
4
4
  module QA
5
- VERSION = '13.2.0'
5
+ VERSION = '13.2.1'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitlab-qa
3
3
  version: !ruby/object:Gem::Version
4
- version: 13.2.0
4
+ version: 13.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - GitLab Quality
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-01-15 00:00:00.000000000 Z
11
+ date: 2024-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: climate_control