gitlab-secret_detection 0.16.0 → 0.18.0

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: 36083ef31398f72f632661f6326bca13edce7e706a0560f210132f034da20cae
4
- data.tar.gz: ea6dbea000adb81ba4887136e37f7924229f8eb273a27bfce8c929ad33e9e9d4
3
+ metadata.gz: 42440db9db11a739e80d2ca1d50fa29d5cb3570d7fe803b8d4598eca8c3eac86
4
+ data.tar.gz: 7a329f9a814fe10a694876d835510e118cca91a7abc6d3787ef7b975c2105bda
5
5
  SHA512:
6
- metadata.gz: cdf7121d680b65f8e80b384d261fa10169e70e263eb1ce4cd16b5bcbb5364f91b2fcab1f22cdfe9bf134c1cdc37c634b490e2165baf7adf8409770171096a99e
7
- data.tar.gz: 90722f1ab2e8abbc788d926268c054cb49c92fc59f118b164d6da673aba7f24f4b0a5fc7fba4413f276c276066e9621efeadc32b0b3997a11aba1e344456bb5d
6
+ metadata.gz: 873cb85a55a82e2561dfce6f8a8ba5fa4e36977542096a693c6585f713d5d56038872af97f461c7e8bd52196ebaf98159db92ab7ed09a6590677c75ab45fe31a
7
+ data.tar.gz: 266e4ff452bcee7968bf9da72f6260146b6278c419c28c7aee30306c97682603c1dfa544fc34d276aaa6ea25b52e6fb986746931adcbc081858e3794253fdc7f
data/README.md CHANGED
@@ -7,7 +7,7 @@ Reference Issue: https://gitlab.com/groups/gitlab-org/-/epics/13792
7
7
 
8
8
  #### Tools and Framework
9
9
 
10
- - Ruby `3.2.5`
10
+ - Ruby `3.2.X`
11
11
  - gRPC framework for serving RPC requests
12
12
 
13
13
  ## Feature Distribution
@@ -3,23 +3,12 @@
3
3
  module Gitlab
4
4
  module SecretDetection
5
5
  class Gem
6
- DEFAULT_VERSION = "0.0.1"
7
-
8
- SEMVER_REGEX = /^\d+\.\d+\.\d+(?:-[a-zA-Z0-9\-\.]+)?(?:\+[a-zA-Z0-9\-\.]+)?$/
9
-
10
- def self.get_release_version
11
- release_version = ENV.fetch("SD_GEM_RELEASE_VERSION", "")
12
-
13
- if release_version.empty?
14
- raise LoadError("Missing SD_GEM_RELEASE_VERSION environment variable.") unless local_env?
15
-
16
- "#{DEFAULT_VERSION}-debug"
17
- elsif release_version.match?(SEMVER_REGEX)
18
- release_version
19
- else
20
- "#{DEFAULT_VERSION}-#{release_version}"
21
- end
22
- end
6
+ # TODO: This is a temporary fix to avoid runtime issues
7
+ # More details are available here:
8
+ # https://gitlab.com/gitlab-org/gitlab/-/issues/514015
9
+ #
10
+ # Ensure to maintain the same version in CHANGELOG file.
11
+ VERSION = "0.18.0"
23
12
 
24
13
  # SD_ENV env var is used to determine which environment the
25
14
  # server is running. This var is defined in `.runway/env-<env>.yml` files.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitlab-secret_detection
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.18.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - group::secret detection
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2025-01-17 00:00:00.000000000 Z
13
+ date: 2025-01-20 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: grpc