gitlab-exporter 11.17.1 → 11.18.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.gitlab-ci.yml +2 -1
- data/Gemfile.lock +7 -7
- data/lib/gitlab_exporter/database/row_count.rb +3 -3
- data/lib/gitlab_exporter/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 885bd06ee8dbcc064e6f1f05fb13d2b216d8f371f2781d4fb6118ac1ab073236
|
4
|
+
data.tar.gz: 2257a1c7eaf0caecd81adc4f7db1b66f2d4176fe3d594969be15add4fb190ce9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3c7683f8f49f4d600bff7612eb1a7608b994ab19a5e8c220ebc78115ffd05ac8f778d2d57a2036a444570254eae1d0278f3bfcc5716ea79134ac9b87e6bde417
|
7
|
+
data.tar.gz: 336f305f91b21446789b8152d255929419bf494ed6f1c74faf03e7c4b89e4b117b02e584170ec5d64efddd64c4ad6f0adc1a8037b00f7c26fcb2835ddc9a49ff
|
data/.gitignore
CHANGED
data/.gitlab-ci.yml
CHANGED
@@ -25,7 +25,8 @@ default:
|
|
25
25
|
.before_scripts: &before_scripts
|
26
26
|
- git config --global user.email "bot@gitlab.com"
|
27
27
|
- git config --global user.name "Bot User"
|
28
|
-
- bundle
|
28
|
+
- bundle config set --local deployment true
|
29
|
+
- bundle install -j $(nproc)
|
29
30
|
|
30
31
|
workflow:
|
31
32
|
rules: &workflow_rules
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
gitlab-exporter (11.
|
4
|
+
gitlab-exporter (11.18.0)
|
5
5
|
connection_pool (= 2.2.5)
|
6
6
|
faraday (~> 1.8.0)
|
7
7
|
pg (= 1.2.3)
|
@@ -38,7 +38,7 @@ GEM
|
|
38
38
|
faraday-patron (1.0.0)
|
39
39
|
faraday-rack (1.0.0)
|
40
40
|
multipart-post (2.2.3)
|
41
|
-
mustermann (
|
41
|
+
mustermann (2.0.2)
|
42
42
|
ruby2_keywords (~> 0.0.1)
|
43
43
|
nio4r (2.5.8)
|
44
44
|
parallel (1.20.1)
|
@@ -49,7 +49,7 @@ GEM
|
|
49
49
|
nio4r (~> 2.0)
|
50
50
|
quantile (0.2.1)
|
51
51
|
rack (2.2.4)
|
52
|
-
rack-protection (2.2.
|
52
|
+
rack-protection (2.2.2)
|
53
53
|
rack
|
54
54
|
rainbow (3.0.0)
|
55
55
|
redis (4.4.0)
|
@@ -87,12 +87,12 @@ GEM
|
|
87
87
|
connection_pool (>= 2.2.2)
|
88
88
|
rack (~> 2.0)
|
89
89
|
redis (>= 4.2.0)
|
90
|
-
sinatra (2.2.
|
91
|
-
mustermann (~>
|
90
|
+
sinatra (2.2.2)
|
91
|
+
mustermann (~> 2.0)
|
92
92
|
rack (~> 2.2)
|
93
|
-
rack-protection (= 2.2.
|
93
|
+
rack-protection (= 2.2.2)
|
94
94
|
tilt (~> 2.0)
|
95
|
-
tilt (2.0.
|
95
|
+
tilt (2.0.11)
|
96
96
|
unicode-display_width (1.7.0)
|
97
97
|
webrick (1.7.0)
|
98
98
|
|
@@ -136,7 +136,7 @@ module GitLab
|
|
136
136
|
select: :container_repositories,
|
137
137
|
where: <<~SQL
|
138
138
|
migration_state <> 'import_done'
|
139
|
-
AND created_at < '2022-
|
139
|
+
AND created_at < '2022-08-17 00:00:00'
|
140
140
|
SQL
|
141
141
|
},
|
142
142
|
container_repositories_pre_importing: {
|
@@ -174,7 +174,7 @@ module GitLab
|
|
174
174
|
select: :container_repositories,
|
175
175
|
where: <<~SQL
|
176
176
|
migration_state <> 'import_done'
|
177
|
-
AND created_at < '2022-
|
177
|
+
AND created_at < '2022-08-17 00:00:00'
|
178
178
|
AND (migration_plan IN ('free', 'early_adopter')
|
179
179
|
OR migration_plan IS NULL)
|
180
180
|
SQL
|
@@ -182,7 +182,7 @@ module GitLab
|
|
182
182
|
container_repositories_import_done_free: {
|
183
183
|
select: :container_repositories,
|
184
184
|
where: <<~SQL
|
185
|
-
(migration_state = 'import_done' OR created_at >= '2022-
|
185
|
+
(migration_state = 'import_done' OR created_at >= '2022-08-17 00:00:00')
|
186
186
|
AND (migration_plan IN ('free', 'early_adopter')
|
187
187
|
OR migration_plan IS NULL)
|
188
188
|
SQL
|