unwrappr 0.6.0 → 0.7.0
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/CHANGELOG.md +13 -1
- data/lib/unwrappr/ruby_gems.rb +1 -1
- data/lib/unwrappr/version.rb +1 -1
- data/lib/unwrappr/writers/project_links.rb +20 -3
- data/lib/unwrappr/writers/security_vulnerabilities.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 716600410b7247858c17de5f15be9934b38014a8d4726e362381db3cc97e1bc5
|
|
4
|
+
data.tar.gz: a7856db5a3f7c3b968f5ed9999c569aab80b3498e429950a1543f745d5febd98
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 29c64e12848728098873c2267c75a8ec6c5d2b04b0efa82305a1774f3c2a0aac14c3aa8089ae5c61e6e8cf4ee8302a86d6fd4d2710d38508ce864f4bdb6a7b43
|
|
7
|
+
data.tar.gz: 8bfaf10e97b15b062208187e91f4b9647bd9a0836245b20e7aa20c7d91c045bd0ba04ee2ab8fb15a9ebe50646333c880e07151e82ef037e4fdc9c0815d541590
|
data/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
-
[Unreleased]: https://github.com/envato/unwrappr/compare/v0.
|
|
9
|
+
[Unreleased]: https://github.com/envato/unwrappr/compare/v0.7.0...HEAD
|
|
10
|
+
|
|
11
|
+
## [0.7.0] 2021-07-15
|
|
12
|
+
|
|
13
|
+
### Add
|
|
14
|
+
- Include link to gem contents diff in gem change annotation ([#88]).
|
|
15
|
+
|
|
16
|
+
### Fix
|
|
17
|
+
- Fix Rubocop issues ([#89]).
|
|
18
|
+
|
|
19
|
+
[0.7.0]: https://github.com/envato/unwrappr/compare/v0.6.0...v0.7.0
|
|
20
|
+
[#88]: https://github.com/envato/unwrappr/pull/88
|
|
21
|
+
[#89]: https://github.com/envato/unwrappr/pull/89
|
|
10
22
|
|
|
11
23
|
## [0.6.0] 2021-05-12
|
|
12
24
|
|
data/lib/unwrappr/ruby_gems.rb
CHANGED
data/lib/unwrappr/version.rb
CHANGED
|
@@ -18,19 +18,36 @@ module Unwrappr
|
|
|
18
18
|
end
|
|
19
19
|
|
|
20
20
|
def write
|
|
21
|
-
"[_#{change_log}, #{source_code}_]\n"
|
|
21
|
+
"[_#{change_log}, #{source_code}, #{gem_diff}_]\n"
|
|
22
22
|
end
|
|
23
23
|
|
|
24
24
|
private
|
|
25
25
|
|
|
26
26
|
def change_log
|
|
27
27
|
link_or_strikethrough('change-log',
|
|
28
|
-
|
|
28
|
+
ruby_gems_info&.changelog_uri)
|
|
29
29
|
end
|
|
30
30
|
|
|
31
31
|
def source_code
|
|
32
32
|
link_or_strikethrough('source-code',
|
|
33
|
-
|
|
33
|
+
ruby_gems_info&.source_code_uri)
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
GEM_DIFF_URL_TEMPLATE = 'https://my.diffend.io/gems/%s/%s/%s'
|
|
37
|
+
private_constant :GEM_DIFF_URL_TEMPLATE
|
|
38
|
+
|
|
39
|
+
def gem_diff
|
|
40
|
+
if !ruby_gems_info.nil? && !@gem_change.added? && !@gem_change.removed?
|
|
41
|
+
gem_diff_url = format(GEM_DIFF_URL_TEMPLATE,
|
|
42
|
+
@gem_change.name,
|
|
43
|
+
@gem_change.base_version.to_s,
|
|
44
|
+
@gem_change.head_version.to_s)
|
|
45
|
+
end
|
|
46
|
+
link_or_strikethrough('gem-diff', gem_diff_url)
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
def ruby_gems_info
|
|
50
|
+
@gem_change_info[:ruby_gems]
|
|
34
51
|
end
|
|
35
52
|
|
|
36
53
|
def link_or_strikethrough(text, url)
|
|
@@ -88,7 +88,7 @@ module Unwrappr
|
|
|
88
88
|
# rubocop:disable Style/GuardClause
|
|
89
89
|
if advisory.cvss_v2
|
|
90
90
|
"CVSS V2: [#{advisory.cvss_v2} #{advisory.criticality}]"\
|
|
91
|
-
|
|
91
|
+
"(#{cvss_v2_url(advisory.cve_id)})"
|
|
92
92
|
end
|
|
93
93
|
# rubocop:enable Style/GuardClause
|
|
94
94
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: unwrappr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Emilyn Escabarte
|
|
@@ -12,7 +12,7 @@ authors:
|
|
|
12
12
|
autorequire:
|
|
13
13
|
bindir: exe
|
|
14
14
|
cert_chain: []
|
|
15
|
-
date: 2021-
|
|
15
|
+
date: 2021-07-15 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: bundler
|
|
@@ -292,7 +292,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
292
292
|
- !ruby/object:Gem::Version
|
|
293
293
|
version: '2.7'
|
|
294
294
|
requirements: []
|
|
295
|
-
rubygems_version: 3.2.
|
|
295
|
+
rubygems_version: 3.2.23
|
|
296
296
|
signing_key:
|
|
297
297
|
specification_version: 4
|
|
298
298
|
summary: A tool to unwrap your gems and see what's changed easily
|