diffend-monitor 0.2.50 → 0.2.51

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: 8948cc582de22d5cc5f46c413dc5af5933f2ad0e12bdfad0574adf106ae20418
4
- data.tar.gz: 5415a72a297294a5a5606e0edb8928e635505cf031a2d482d4ed5ee3276c7437
3
+ metadata.gz: 5b6bf6709bc22ef240c6c1d49c05582da2b76b6f6e2906aa34fb31140c001b2a
4
+ data.tar.gz: 749ec381873f1f8ff49795887ae7609bd344b8a98a50da05805986f0fc7e611d
5
5
  SHA512:
6
- metadata.gz: b5fed570b71187fe8012461f407d84eb0f34aa9521296d4a39b9479cc231113800b4fa87f76ea01255087f76d51aa0026643aae4b518276d964591d5640e5332
7
- data.tar.gz: e1eb4cd0ad24e655ce4832a752e39f57a6789ff095898938b133a19fc1d994e631e6b7f63aa70d7d2e09159006f393ac7163903fb8166c7794b4703df478fb24
6
+ metadata.gz: '00589108430c94fea832377badc604b0d48bfc5dd6e72b57e380353390e0a5ec797bfd7d68332a5a94db65755cc2e3786c5449cffdd94071e0c4ecdcc958ce13'
7
+ data.tar.gz: c2680fd00e8f79f84d9f79c6950f61d7297709087772351e1b2036cf8dd9419d4fb04ff623b8bf5030a06295403968fb29dfa8f129745c1dd3dc9cafb830dde8
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -1,8 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.51] (2021-09-09)
4
+ - Fix #172 - `bundle secure` not working without `.diffend.yml`
5
+
3
6
  ## [0.2.50] (2021-08-19)
4
7
  - Fix #132 - `bundle` without command name fails to recognize that first argument is an option
5
8
  - Bundler 2.2.26 specs support
9
+ - Bundler 2.2.27 specs support
6
10
 
7
11
  ## [0.2.49] (2021-08-11)
8
12
  - Bundler 2.2.20 specs support
@@ -17,7 +17,32 @@ module Diffend
17
17
 
18
18
  Diffend::LatestVersion.call(config)
19
19
 
20
+ return unless config.execute?
21
+
22
+ unless config.valid?
23
+ config.print_errors
24
+
25
+ exit 255
26
+ end
27
+
20
28
  Diffend::Execute.call(config)
29
+ rescue Diffend::Errors::HandledException
30
+ # config will not be initialized when configuration file is missing
31
+ return if config&.ignore_errors?
32
+
33
+ exit 255
34
+ rescue StandardError => e
35
+ Diffend::HandleErrors::Report.call(
36
+ exception: e,
37
+ config: config,
38
+ message: :unhandled_exception,
39
+ report: true,
40
+ raise_exception: false
41
+ )
42
+
43
+ return if config.ignore_errors?
44
+
45
+ exit 255
21
46
  end
22
47
  end
23
48
  end
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Diffend
4
4
  # Current version
5
- VERSION = '0.2.50'
5
+ VERSION = '0.2.51'
6
6
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: diffend-monitor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.50
4
+ version: 0.2.51
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tomasz Pajor
@@ -35,7 +35,7 @@ cert_chain:
35
35
  R2P11bWoCtr70BsccVrN8jEhzwXngMyI2gVt750Y+dbTu1KgRqZKp/ECe7ZzPzXj
36
36
  pIy9vHxTANKYVyI4qj8OrFdEM5BQNu8oQpL0iQ==
37
37
  -----END CERTIFICATE-----
38
- date: 2021-08-19 00:00:00.000000000 Z
38
+ date: 2021-09-09 00:00:00.000000000 Z
39
39
  dependencies:
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: bundler
@@ -130,7 +130,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
130
130
  - !ruby/object:Gem::Version
131
131
  version: '0'
132
132
  requirements: []
133
- rubygems_version: 3.2.22
133
+ rubygems_version: 3.2.27
134
134
  signing_key:
135
135
  specification_version: 4
136
136
  summary: OSS supply chain security and management platform
metadata.gz.sig CHANGED
Binary file