gitlab-exporter 13.4.0 → 13.4.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/.gitlab/merge_request_templates/Release.md +13 -0
- data/.gitlab-ci.yml +4 -14
- data/Gemfile.lock +1 -1
- data/gitlab-exporter.gemspec +1 -1
- data/lib/gitlab_exporter/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5841c9c02dc87806b53fd5bb4087dfcc63f1a249f9b47f178bb765401d02e6e4
|
|
4
|
+
data.tar.gz: f4ef520597e0c4feb314f6579639da75fd0c61d641048a60c4facb1db6441fc4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8631a32ce6cbf2c2d74ac46cf5646635bc3e3fb4dbc8a1556b6e47a00e128bd12e248c29eaafb9719e171a1c1dc6e6b4f62ccdcb3bf1478216e5a5a5dadf0b40
|
|
7
|
+
data.tar.gz: ebe1e65ff91911c749650fa59e0e84229740d3fe251bd448a571cb8ce0e23ee6bf6a788656b91e6de870f0e6b2ef58dd349e7fe0e0db49728d2f1531408804e1
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!-- Replace `<PREVIOUS_VERSION>` with the previous version number here, `<COMMIT_UPDATING_VERSION>` with the latest
|
|
2
|
+
commit from this merge request, and `<NEW_VERSION>` with the upcoming version number. -->
|
|
3
|
+
## Diff
|
|
4
|
+
|
|
5
|
+
https://gitlab.com/gitlab-org/ruby/gems/gitlab-exporter/-/compare/v<PREVIOUS_VERSION>...<COMMIT_UPDATING_VERSION>
|
|
6
|
+
|
|
7
|
+
## Checklist
|
|
8
|
+
|
|
9
|
+
- [ ] Diff link is up-to-date.
|
|
10
|
+
- [ ] Check the release notes: https://gitlab.com/api/v4/projects/gitlab-org%2Fruby%2Fgems%2Fgitlab-exporter/repository/changelog?version=<NEW_VERSION>
|
|
11
|
+
- [ ] Based on the diff and the release notes, `version.rb` is updated, according to [SemVer](https://semver.org).
|
|
12
|
+
|
|
13
|
+
/label ~"type::maintenance" ~"static code analysis"
|
data/.gitlab-ci.yml
CHANGED
|
@@ -5,6 +5,9 @@ include:
|
|
|
5
5
|
- template: Security/License-Scanning.gitlab-ci.yml # https://gitlab.com/gitlab-org/gitlab-foss/blob/master/lib/gitlab/ci/templates/Security/License-Scanning.gitlab-ci.yml
|
|
6
6
|
- template: Security/SAST.gitlab-ci.yml # https://gitlab.com/gitlab-org/gitlab-foss/blob/master/lib/gitlab/ci/templates/Security/SAST.gitlab-ci.yml
|
|
7
7
|
- template: Security/Secret-Detection.gitlab-ci.yml # https://gitlab.com/gitlab-org/gitlab-foss/-/blob/master/lib/gitlab/ci/templates/Security/Secret-Detection.gitlab-ci.yml
|
|
8
|
+
- project: 'gitlab-org/quality/pipeline-common'
|
|
9
|
+
file:
|
|
10
|
+
- '/ci/gem-release.yml'
|
|
8
11
|
|
|
9
12
|
variables:
|
|
10
13
|
RUBY_VERSION: "2.7"
|
|
@@ -12,7 +15,7 @@ variables:
|
|
|
12
15
|
stages:
|
|
13
16
|
- test
|
|
14
17
|
- dast
|
|
15
|
-
-
|
|
18
|
+
- deploy
|
|
16
19
|
|
|
17
20
|
default:
|
|
18
21
|
image: ruby:${RUBY_VERSION}
|
|
@@ -70,16 +73,3 @@ gemnasium-dependency_scanning:
|
|
|
70
73
|
|
|
71
74
|
secret_detection:
|
|
72
75
|
rules: *workflow_rules
|
|
73
|
-
|
|
74
|
-
publish_to_rubygems:
|
|
75
|
-
stage: publish
|
|
76
|
-
script:
|
|
77
|
-
- mkdir -p ~/.gem
|
|
78
|
-
- 'echo ":rubygems_api_key: ${RUBYGEMS_API_KEY}" > ~/.gem/credentials'
|
|
79
|
-
- chmod 0600 ~/.gem/credentials
|
|
80
|
-
- gem build gitlab-exporter.gemspec --output=gitlab-exporter.gem
|
|
81
|
-
- gem push gitlab-exporter.gem
|
|
82
|
-
before_script: *before_scripts
|
|
83
|
-
rules:
|
|
84
|
-
# Only push to RubyGems.org when we tag a new version
|
|
85
|
-
- if: '$CI_COMMIT_TAG'
|
data/Gemfile.lock
CHANGED
data/gitlab-exporter.gemspec
CHANGED
|
@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
|
|
|
17
17
|
s.test_files = s.files.grep(%r{^(spec)/})
|
|
18
18
|
|
|
19
19
|
s.require_paths = ["lib"]
|
|
20
|
-
s.homepage = "
|
|
20
|
+
s.homepage = "https://gitlab.com/gitlab-org/ruby/gems/gitlab-exporter"
|
|
21
21
|
s.license = "MIT"
|
|
22
22
|
|
|
23
23
|
s.add_runtime_dependency "connection_pool", "2.2.5"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gitlab-exporter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 13.4.
|
|
4
|
+
version: 13.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pablo Carranza
|
|
@@ -187,6 +187,7 @@ extra_rdoc_files: []
|
|
|
187
187
|
files:
|
|
188
188
|
- ".gitignore"
|
|
189
189
|
- ".gitlab-ci.yml"
|
|
190
|
+
- ".gitlab/merge_request_templates/Release.md"
|
|
190
191
|
- ".rubocop.yml"
|
|
191
192
|
- ".rubocop_todo.yml"
|
|
192
193
|
- ".ruby-version"
|
|
@@ -238,7 +239,7 @@ files:
|
|
|
238
239
|
- spec/sidekiq_spec.rb
|
|
239
240
|
- spec/spec_helper.rb
|
|
240
241
|
- spec/util_spec.rb
|
|
241
|
-
homepage:
|
|
242
|
+
homepage: https://gitlab.com/gitlab-org/ruby/gems/gitlab-exporter
|
|
242
243
|
licenses:
|
|
243
244
|
- MIT
|
|
244
245
|
metadata: {}
|