license_finder 6.4.0 → 6.5.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 +19 -2
- data/Dockerfile +4 -4
- data/VERSION +1 -1
- data/ci/pipelines/release.yml.erb +1 -1
- data/lib/license_finder/package_managers/bundler.rb +1 -1
- data/lib/license_finder/package_managers/go_modules.rb +4 -2
- data/lib/license_finder/package_managers/nuget.rb +12 -2
- data/lib/license_finder/package_utils/license_files.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6cb023a2297b083354287a99cd5fb5cb5640fb6fe8e4c449f9407f9198f14dfe
|
|
4
|
+
data.tar.gz: 7af5d367b73cb9447a78d83e49db2ca810a2d7a6315b313941acb99251bc11ed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c6530566a1e99b1a8b5bdf36d7b9486c2cb95c112e856e7d69525ce139d0d14a1eab1d2ea538009338ce94a822cbe5faf99ae1d4ff5674f417abd25ba0845497
|
|
7
|
+
data.tar.gz: b6fdc169ec59d8b84ae96a8ab5bbb25a7ce8ee2cc7de6d96acfc63347d00bfc5009a24cf743d39add5de78e21b3c56c52856baa76d05ba6a81996c974ad8074d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,21 @@
|
|
|
1
|
+
# [6.5.0] / 2020-06-01
|
|
2
|
+
|
|
3
|
+
### Added
|
|
4
|
+
* Support legacy nuget projects [#172950097] - [0cccbcf9](https://github.com/pivotal/LicenseFinder/commit/0cccbcf9aa92f4297ef0174242bdb19da1babc65)
|
|
5
|
+
|
|
6
|
+
### Changed
|
|
7
|
+
* Upgrade to golang 1.14.3. Update dotnet-sdk to 3.1 - [0969e98f](https://github.com/pivotal/LicenseFinder/commit/0969e98fde4a82f8931601baa4dd96dc01300a14)
|
|
8
|
+
|
|
1
9
|
# [6.4.0] / 2020-05-22
|
|
2
10
|
|
|
11
|
+
Big shout out to @forelabs for introducing many new features and improvements for this release. Thanks again!!
|
|
12
|
+
|
|
3
13
|
### Added
|
|
14
|
+
* Introducing new inherited_decisions command - [3453feb](https://github.com/pivotal/LicenseFinder/commit/3453feb659a6c3c6e5aa444e3755ddd5d32f3664) - Sven Dunemann
|
|
15
|
+
* Decision Applier: Merge manual and system packages - [c690532](https://github.com/pivotal/LicenseFinder/commit/c690532ec8addab16bef4edd390f05ceb353435f) - Sven Dunemann
|
|
16
|
+
* Introduce package_url to packages - [18972f7](https://github.com/pivotal/LicenseFinder/commit/18972f7b3a04340e1b7bb560780130b68696b8a2) - Sven Dunemann
|
|
17
|
+
* Add --write-headers option for csv exports - [18e01f8](https://github.com/pivotal/LicenseFinder/commit/18e01f8728a9dc525d7567292cc1e2f390ec854d) - Sven Dunemann
|
|
18
|
+
* Yarn: Add authors & install_path - [08a0f67](https://github.com/pivotal/LicenseFinder/commit/08a0f67837a218231217767561f2282c1b3a890a) - Sven Dunemann
|
|
4
19
|
* install path for nuget dependencies [#172251374] - [ad73c946](https://github.com/pivotal/LicenseFinder/commit/ad73c946113846f8f548adfc73542aebb3763175) - Jeff Jun
|
|
5
20
|
* new Rubocop cops - [c4cc6b8b](https://github.com/pivotal/LicenseFinder/commit/c4cc6b8b13273db17b65cecaf24c9053e4989ea1) - Jeff Jun
|
|
6
21
|
|
|
@@ -8,8 +23,9 @@
|
|
|
8
23
|
* Separate lines in license text with LF when exported to JSON - [baddb976](https://github.com/pivotal/LicenseFinder/commit/baddb976e7a8683c5cc320eddc8c2712dfb16c15) - Robert Huitl
|
|
9
24
|
|
|
10
25
|
### Changed
|
|
11
|
-
*
|
|
12
|
-
|
|
26
|
+
* Go15VendorExperiment: Detect go only if vendor includes go files - [0f8e609](https://github.com/pivotal/LicenseFinder/commit/0f8e609f0921937c6187deccd80e4bc4b7d67ee4) - Sven Dunemann
|
|
27
|
+
* Bump PHP version to 7.4 - [cbe45c5](https://github.com/pivotal/LicenseFinder/commit/cbe45c5cdb3ec200ea215086a3b3eb879e83222a) - Yivan
|
|
28
|
+
* Significantly improve the license text matching file to be more dynamic - [acf5705](https://github.com/pivotal/LicenseFinder/commit/acf570573b4a2414d9c43212dea5d4ecb157319e)
|
|
13
29
|
* Update Ruby version to 2.7.1 [#172295831] - [475e2948](https://github.com/pivotal/LicenseFinder/commit/475e2948ec1ad859aee59e77aa9ce2a51e1a5029)
|
|
14
30
|
|
|
15
31
|
# [6.3.0] / 2020-05-06
|
|
@@ -857,3 +873,4 @@ Bugfixes:
|
|
|
857
873
|
[6.2.0]: https://github.com/pivotal/LicenseFinder/compare/v6.1.2...v6.2.0
|
|
858
874
|
[6.3.0]: https://github.com/pivotal/LicenseFinder/compare/v6.2.0...v6.3.0
|
|
859
875
|
[6.4.0]: https://github.com/pivotal/LicenseFinder/compare/v6.3.0...v6.4.0
|
|
876
|
+
[6.5.0]: https://github.com/pivotal/LicenseFinder/compare/v6.4.0...v6.5.0
|
data/Dockerfile
CHANGED
|
@@ -3,7 +3,7 @@ FROM ubuntu:xenial
|
|
|
3
3
|
# Versioning
|
|
4
4
|
ENV PIP_INSTALL_VERSION 19.0.2
|
|
5
5
|
ENV PIP3_INSTALL_VERSION 8.1.1
|
|
6
|
-
ENV GO_LANG_VERSION 1.
|
|
6
|
+
ENV GO_LANG_VERSION 1.14.3
|
|
7
7
|
ENV MAVEN_VERSION 3.6.0
|
|
8
8
|
ENV SBT_VERSION 1.3.3
|
|
9
9
|
ENV GRADLE_VERSION 5.6.4
|
|
@@ -141,8 +141,8 @@ RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E03280
|
|
|
141
141
|
echo "deb https://download.mono-project.com/repo/ubuntu stable-xenial main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list &&\
|
|
142
142
|
apt-get update &&\
|
|
143
143
|
apt-get install -y mono-complete &&\
|
|
144
|
-
curl -o /usr/local/bin/nuget.exe https://dist.nuget.org/win-x86-commandline/latest/nuget.exe &&\
|
|
145
|
-
|
|
144
|
+
curl -o "/usr/local/bin/nuget.exe" "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe" &&\
|
|
145
|
+
curl -o "/usr/local/bin/nugetv3.5.0.exe" "https://dist.nuget.org/win-x86-commandline/v3.5.0/nuget.exe"
|
|
146
146
|
|
|
147
147
|
# install dotnet core
|
|
148
148
|
WORKDIR /tmp
|
|
@@ -150,7 +150,7 @@ RUN wget -q https://packages.microsoft.com/config/ubuntu/16.04/packages-microsof
|
|
|
150
150
|
sudo dpkg -i packages-microsoft-prod.deb &&\
|
|
151
151
|
rm packages-microsoft-prod.deb &&\
|
|
152
152
|
sudo apt-get update &&\
|
|
153
|
-
sudo apt-get install -y dotnet-runtime-2.1 dotnet-sdk-2.1 dotnet-sdk-2.2 dotnet-sdk-3.0
|
|
153
|
+
sudo apt-get install -y dotnet-runtime-2.1 dotnet-sdk-2.1 dotnet-sdk-2.2 dotnet-sdk-3.0 dotnet-sdk-3.1
|
|
154
154
|
|
|
155
155
|
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 4F4EA0AAE5267A6C &&\
|
|
156
156
|
echo "deb http://ppa.launchpad.net/ondrej/php/ubuntu xenial main" | sudo tee /etc/apt/sources.list.d/php.list &&\
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.
|
|
1
|
+
6.5.0
|
|
@@ -27,7 +27,7 @@ module LicenseFinder
|
|
|
27
27
|
def prepare_command
|
|
28
28
|
ignored_groups_argument = !ignored_groups.empty? ? "--without #{ignored_groups.to_a.join(' ')}" : ''
|
|
29
29
|
|
|
30
|
-
gem_path = SecureRandom.uuid
|
|
30
|
+
gem_path = "lf-bundler-gems-#{SecureRandom.uuid}"
|
|
31
31
|
logger.info self.class, "Running bundle install for #{Dir.pwd} with path #{gem_path}", color: :blue
|
|
32
32
|
|
|
33
33
|
"bundle install #{ignored_groups_argument} --path #{gem_path}".strip
|
|
@@ -33,8 +33,10 @@ module LicenseFinder
|
|
|
33
33
|
private
|
|
34
34
|
|
|
35
35
|
def packages_info
|
|
36
|
-
info_output, stderr, _status = Cmd.run("GO111MODULE=on go list -m -
|
|
37
|
-
|
|
36
|
+
info_output, stderr, _status = Cmd.run("GO111MODULE=on go list -m -f '{{.Path}},{{.Version}},{{.Dir}}' all")
|
|
37
|
+
if stderr =~ Regexp.compile("can't compute 'all' using the vendor directory")
|
|
38
|
+
info_output, _stderr, _status = Cmd.run("GO111MODULE=on go list -m -mod=mod -f '{{.Path}},{{.Version}},{{.Dir}}' all")
|
|
39
|
+
end
|
|
38
40
|
|
|
39
41
|
info_output.split("\n")
|
|
40
42
|
end
|
|
@@ -73,10 +73,20 @@ module LicenseFinder
|
|
|
73
73
|
assemblies.flat_map(&:dependencies)
|
|
74
74
|
end
|
|
75
75
|
|
|
76
|
+
def nuget_binary
|
|
77
|
+
legacy_vcproj = Dir['**/*.vcproj'].any?
|
|
78
|
+
|
|
79
|
+
if legacy_vcproj
|
|
80
|
+
'/usr/local/bin/nugetv3.5.0.exe'
|
|
81
|
+
else
|
|
82
|
+
'/usr/local/bin/nuget.exe'
|
|
83
|
+
end
|
|
84
|
+
end
|
|
85
|
+
|
|
76
86
|
def package_management_command
|
|
77
87
|
return 'nuget' if LicenseFinder::Platform.windows?
|
|
78
88
|
|
|
79
|
-
|
|
89
|
+
"mono #{nuget_binary}"
|
|
80
90
|
end
|
|
81
91
|
|
|
82
92
|
def prepare_command
|
|
@@ -96,7 +106,7 @@ module LicenseFinder
|
|
|
96
106
|
def nuget_check
|
|
97
107
|
return 'where nuget' if LicenseFinder::Platform.windows?
|
|
98
108
|
|
|
99
|
-
|
|
109
|
+
"which mono && ls #{nuget_binary}"
|
|
100
110
|
end
|
|
101
111
|
|
|
102
112
|
def self.nuspec_license_urls(specfile_content)
|
|
@@ -4,7 +4,7 @@ require 'license_finder/package_utils/possible_license_file'
|
|
|
4
4
|
|
|
5
5
|
module LicenseFinder
|
|
6
6
|
class LicenseFiles
|
|
7
|
-
CANDIDATE_FILE_NAMES = %w[
|
|
7
|
+
CANDIDATE_FILE_NAMES = %w[License Licence COPYING README].freeze
|
|
8
8
|
CANDIDATE_PATH_WILDCARD = "*{#{CANDIDATE_FILE_NAMES.join(',')}}*"
|
|
9
9
|
|
|
10
10
|
def self.find(install_path, options = {})
|
|
@@ -35,7 +35,7 @@ module LicenseFinder
|
|
|
35
35
|
def candidate_files_and_dirs
|
|
36
36
|
return [] if install_path.nil?
|
|
37
37
|
|
|
38
|
-
Pathname.glob(install_path.join('**', CANDIDATE_PATH_WILDCARD))
|
|
38
|
+
Pathname.glob(install_path.join('**', CANDIDATE_PATH_WILDCARD), File::FNM_CASEFOLD)
|
|
39
39
|
end
|
|
40
40
|
end
|
|
41
41
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: license_finder
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.
|
|
4
|
+
version: 6.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryan Collins
|
|
@@ -27,7 +27,7 @@ authors:
|
|
|
27
27
|
autorequire:
|
|
28
28
|
bindir: bin
|
|
29
29
|
cert_chain: []
|
|
30
|
-
date: 2020-
|
|
30
|
+
date: 2020-06-01 00:00:00.000000000 Z
|
|
31
31
|
dependencies:
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: bundler
|