gitlab-exporter 13.4.0 → 13.4.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: ef90bbddd738fecc23deb3342a8c24461289d1286c46c1d5d1879da07f32991d
4
- data.tar.gz: 94e6b7eea624ee7a07aa435f3985e03006a8d8ab042d7958f2d1150b71a64d3a
3
+ metadata.gz: 5841c9c02dc87806b53fd5bb4087dfcc63f1a249f9b47f178bb765401d02e6e4
4
+ data.tar.gz: f4ef520597e0c4feb314f6579639da75fd0c61d641048a60c4facb1db6441fc4
5
5
  SHA512:
6
- metadata.gz: 67c47e28e6685067027922a2e12ec106b6eb4f14e1475dccb8a6430ae53e7a4e0bb111f0d2e83c4559ac38b49cb69aac6ead4308ee1534763cb9434761573085
7
- data.tar.gz: 2066407a7735b144e4c84179b8b585d8ea4dddee4d74592a2538bd3ccd1d8c69610efa3d9a7fa9cb4a6d2aa26cc61578cb564015305f56f60627ea48f56a7f7c
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
- - publish
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gitlab-exporter (13.4.0)
4
+ gitlab-exporter (13.4.1)
5
5
  connection_pool (= 2.2.5)
6
6
  faraday (~> 1.8.0)
7
7
  pg (= 1.5.3)
@@ -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 = "http://gitlab.com"
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"
@@ -1,5 +1,5 @@
1
1
  module GitLab
2
2
  module Exporter
3
- VERSION = "13.4.0".freeze
3
+ VERSION = "13.4.1".freeze
4
4
  end
5
5
  end
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.0
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: http://gitlab.com
242
+ homepage: https://gitlab.com/gitlab-org/ruby/gems/gitlab-exporter
242
243
  licenses:
243
244
  - MIT
244
245
  metadata: {}