license_finder-rubyzip3 7.2.1.1

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.
Files changed (196) hide show
  1. checksums.yaml +7 -0
  2. data/.force-build +0 -0
  3. data/.github/dependabot.yml +16 -0
  4. data/.gitignore +13 -0
  5. data/.pre-commit-hooks.yaml +10 -0
  6. data/.rspec +1 -0
  7. data/.rubocop.yml +84 -0
  8. data/CHANGELOG.md +1066 -0
  9. data/CONTRIBUTING.md +122 -0
  10. data/Dockerfile +275 -0
  11. data/Gemfile +2 -0
  12. data/LICENSE +22 -0
  13. data/README.md +597 -0
  14. data/Rakefile +77 -0
  15. data/TODO.md +12 -0
  16. data/VERSION +1 -0
  17. data/appveyor.yml +21 -0
  18. data/bin/license_finder +6 -0
  19. data/bin/license_finder_pip.py +43 -0
  20. data/ci/pipelines/pull-request.yml.erb +138 -0
  21. data/ci/pipelines/release.yml.erb +176 -0
  22. data/ci/scripts/containerize-tests.sh +14 -0
  23. data/ci/scripts/pushscript.sh +31 -0
  24. data/ci/scripts/run-rubocop.sh +15 -0
  25. data/ci/scripts/run-tests.sh +41 -0
  26. data/ci/scripts/test.ps1 +81 -0
  27. data/ci/scripts/updateChangelog.sh +84 -0
  28. data/ci/tasks/build-and-push-gem.yml +10 -0
  29. data/ci/tasks/build-windows.yml +6 -0
  30. data/ci/tasks/build.yml +16 -0
  31. data/ci/tasks/rubocop.yml +15 -0
  32. data/ci/tasks/run-tests.yml +10 -0
  33. data/ci/tasks/update-changelog.yml +18 -0
  34. data/dlf +21 -0
  35. data/examples/Gemfile +4 -0
  36. data/examples/custom_erb_template.rb +24 -0
  37. data/examples/extract_license_data.rb +63 -0
  38. data/examples/sample_template.erb +7 -0
  39. data/lib/license_finder/cli/approvals.rb +28 -0
  40. data/lib/license_finder/cli/base.rb +113 -0
  41. data/lib/license_finder/cli/dependencies.rb +44 -0
  42. data/lib/license_finder/cli/ignored_dependencies.rb +32 -0
  43. data/lib/license_finder/cli/ignored_groups.rb +32 -0
  44. data/lib/license_finder/cli/inherited_decisions.rb +50 -0
  45. data/lib/license_finder/cli/licenses.rb +31 -0
  46. data/lib/license_finder/cli/main.rb +229 -0
  47. data/lib/license_finder/cli/makes_decisions.rb +38 -0
  48. data/lib/license_finder/cli/patched_thor.rb +33 -0
  49. data/lib/license_finder/cli/permitted_licenses.rb +32 -0
  50. data/lib/license_finder/cli/project_name.rb +32 -0
  51. data/lib/license_finder/cli/restricted_licenses.rb +32 -0
  52. data/lib/license_finder/cli.rb +20 -0
  53. data/lib/license_finder/configuration.rb +197 -0
  54. data/lib/license_finder/core.rb +121 -0
  55. data/lib/license_finder/decision_applier.rb +70 -0
  56. data/lib/license_finder/decisions.rb +334 -0
  57. data/lib/license_finder/decisions_factory.rb +13 -0
  58. data/lib/license_finder/diff.rb +51 -0
  59. data/lib/license_finder/license/any_matcher.rb +15 -0
  60. data/lib/license_finder/license/definitions.rb +498 -0
  61. data/lib/license_finder/license/header_matcher.rb +17 -0
  62. data/lib/license_finder/license/matcher.rb +24 -0
  63. data/lib/license_finder/license/none_matcher.rb +11 -0
  64. data/lib/license_finder/license/template.rb +19 -0
  65. data/lib/license_finder/license/templates/0BSD.txt +10 -0
  66. data/lib/license_finder/license/templates/AGPL3.txt +661 -0
  67. data/lib/license_finder/license/templates/Apache1_1.txt +16 -0
  68. data/lib/license_finder/license/templates/Apache2.txt +170 -0
  69. data/lib/license_finder/license/templates/Artistic.txt +128 -0
  70. data/lib/license_finder/license/templates/BSD.txt +24 -0
  71. data/lib/license_finder/license/templates/CC01.txt +30 -0
  72. data/lib/license_finder/license/templates/CC01_alt.txt +31 -0
  73. data/lib/license_finder/license/templates/CDDL1.txt +131 -0
  74. data/lib/license_finder/license/templates/CDDL1_1.txt +123 -0
  75. data/lib/license_finder/license/templates/CPL1.txt +217 -0
  76. data/lib/license_finder/license/templates/EPL1.txt +86 -0
  77. data/lib/license_finder/license/templates/EPL2.txt +80 -0
  78. data/lib/license_finder/license/templates/GPLv2.txt +339 -0
  79. data/lib/license_finder/license/templates/GPLv3.txt +674 -0
  80. data/lib/license_finder/license/templates/ISC.txt +2 -0
  81. data/lib/license_finder/license/templates/LGPL.txt +165 -0
  82. data/lib/license_finder/license/templates/LGPL2_1.txt +169 -0
  83. data/lib/license_finder/license/templates/MIT.txt +9 -0
  84. data/lib/license_finder/license/templates/MPL1_1.txt +469 -0
  85. data/lib/license_finder/license/templates/MPL2.txt +373 -0
  86. data/lib/license_finder/license/templates/NewBSD.txt +21 -0
  87. data/lib/license_finder/license/templates/OFL.txt +91 -0
  88. data/lib/license_finder/license/templates/Python.txt +47 -0
  89. data/lib/license_finder/license/templates/Ruby.txt +52 -0
  90. data/lib/license_finder/license/templates/SimplifiedBSD.txt +19 -0
  91. data/lib/license_finder/license/templates/Unlicense.txt +24 -0
  92. data/lib/license_finder/license/templates/WTFPL.txt +14 -0
  93. data/lib/license_finder/license/templates/Zlib.txt +17 -0
  94. data/lib/license_finder/license/text.rb +49 -0
  95. data/lib/license_finder/license.rb +123 -0
  96. data/lib/license_finder/license_aggregator.rb +59 -0
  97. data/lib/license_finder/logger.rb +69 -0
  98. data/lib/license_finder/manual_licenses.rb +79 -0
  99. data/lib/license_finder/package.rb +195 -0
  100. data/lib/license_finder/package_delta.rb +61 -0
  101. data/lib/license_finder/package_manager.rb +183 -0
  102. data/lib/license_finder/package_managers/bower.rb +37 -0
  103. data/lib/license_finder/package_managers/bundler.rb +110 -0
  104. data/lib/license_finder/package_managers/cargo.rb +38 -0
  105. data/lib/license_finder/package_managers/carthage.rb +68 -0
  106. data/lib/license_finder/package_managers/cocoa_pods.rb +66 -0
  107. data/lib/license_finder/package_managers/composer.rb +63 -0
  108. data/lib/license_finder/package_managers/conan.rb +70 -0
  109. data/lib/license_finder/package_managers/conda.rb +131 -0
  110. data/lib/license_finder/package_managers/dep.rb +45 -0
  111. data/lib/license_finder/package_managers/dotnet.rb +86 -0
  112. data/lib/license_finder/package_managers/erlangmk.rb +50 -0
  113. data/lib/license_finder/package_managers/glide.rb +42 -0
  114. data/lib/license_finder/package_managers/go_15vendorexperiment.rb +87 -0
  115. data/lib/license_finder/package_managers/go_dep.rb +80 -0
  116. data/lib/license_finder/package_managers/go_modules.rb +93 -0
  117. data/lib/license_finder/package_managers/go_workspace.rb +117 -0
  118. data/lib/license_finder/package_managers/govendor.rb +73 -0
  119. data/lib/license_finder/package_managers/gradle.rb +99 -0
  120. data/lib/license_finder/package_managers/gvt.rb +69 -0
  121. data/lib/license_finder/package_managers/maven.rb +69 -0
  122. data/lib/license_finder/package_managers/mix.rb +131 -0
  123. data/lib/license_finder/package_managers/npm.rb +70 -0
  124. data/lib/license_finder/package_managers/nuget.rb +159 -0
  125. data/lib/license_finder/package_managers/pip.rb +70 -0
  126. data/lib/license_finder/package_managers/pipenv.rb +63 -0
  127. data/lib/license_finder/package_managers/pnpm.rb +126 -0
  128. data/lib/license_finder/package_managers/pub.rb +86 -0
  129. data/lib/license_finder/package_managers/rebar.rb +65 -0
  130. data/lib/license_finder/package_managers/sbt.rb +46 -0
  131. data/lib/license_finder/package_managers/spm.rb +93 -0
  132. data/lib/license_finder/package_managers/trash.rb +43 -0
  133. data/lib/license_finder/package_managers/yarn.rb +195 -0
  134. data/lib/license_finder/package_utils/activation.rb +40 -0
  135. data/lib/license_finder/package_utils/conan_info_parser.rb +77 -0
  136. data/lib/license_finder/package_utils/conan_info_parser_v2.rb +82 -0
  137. data/lib/license_finder/package_utils/gradle_dependency_finder.rb +15 -0
  138. data/lib/license_finder/package_utils/license_files.rb +51 -0
  139. data/lib/license_finder/package_utils/licensing.rb +40 -0
  140. data/lib/license_finder/package_utils/maven_dependency_finder.rb +57 -0
  141. data/lib/license_finder/package_utils/notice_files.rb +51 -0
  142. data/lib/license_finder/package_utils/possible_license_file.rb +33 -0
  143. data/lib/license_finder/package_utils/pypi.rb +43 -0
  144. data/lib/license_finder/package_utils/sbt_dependency_finder.rb +15 -0
  145. data/lib/license_finder/packages/bower_package.rb +45 -0
  146. data/lib/license_finder/packages/bundler_package.rb +33 -0
  147. data/lib/license_finder/packages/cargo_package.rb +28 -0
  148. data/lib/license_finder/packages/carthage_package.rb +18 -0
  149. data/lib/license_finder/packages/cocoa_pods_package.rb +22 -0
  150. data/lib/license_finder/packages/composer_package.rb +13 -0
  151. data/lib/license_finder/packages/conan_package.rb +23 -0
  152. data/lib/license_finder/packages/conda_package.rb +74 -0
  153. data/lib/license_finder/packages/erlangmk_package.rb +112 -0
  154. data/lib/license_finder/packages/go_package.rb +30 -0
  155. data/lib/license_finder/packages/gradle_package.rb +30 -0
  156. data/lib/license_finder/packages/manual_package.rb +27 -0
  157. data/lib/license_finder/packages/maven_package.rb +39 -0
  158. data/lib/license_finder/packages/merged_package.rb +44 -0
  159. data/lib/license_finder/packages/mix_package.rb +13 -0
  160. data/lib/license_finder/packages/npm_package.rb +219 -0
  161. data/lib/license_finder/packages/nuget_package.rb +13 -0
  162. data/lib/license_finder/packages/pip_package.rb +50 -0
  163. data/lib/license_finder/packages/pnpm_package.rb +13 -0
  164. data/lib/license_finder/packages/pubspec_package.rb +18 -0
  165. data/lib/license_finder/packages/rebar_package.rb +13 -0
  166. data/lib/license_finder/packages/sbt_package.rb +22 -0
  167. data/lib/license_finder/packages/spm_package.rb +18 -0
  168. data/lib/license_finder/packages/yarn_package.rb +13 -0
  169. data/lib/license_finder/platform.rb +15 -0
  170. data/lib/license_finder/printer.rb +39 -0
  171. data/lib/license_finder/project_finder.rb +62 -0
  172. data/lib/license_finder/report.rb +34 -0
  173. data/lib/license_finder/reports/csv_report.rb +108 -0
  174. data/lib/license_finder/reports/diff_report.rb +29 -0
  175. data/lib/license_finder/reports/erb_report.rb +62 -0
  176. data/lib/license_finder/reports/html_report.rb +13 -0
  177. data/lib/license_finder/reports/json_report.rb +31 -0
  178. data/lib/license_finder/reports/junit_report.rb +23 -0
  179. data/lib/license_finder/reports/markdown_report.rb +9 -0
  180. data/lib/license_finder/reports/merged_report.rb +16 -0
  181. data/lib/license_finder/reports/templates/bootstrap.css +9 -0
  182. data/lib/license_finder/reports/templates/html_report.erb +113 -0
  183. data/lib/license_finder/reports/templates/junit_report.erb +41 -0
  184. data/lib/license_finder/reports/templates/markdown_report.erb +49 -0
  185. data/lib/license_finder/reports/templates/xml_report.erb +19 -0
  186. data/lib/license_finder/reports/text_report.rb +12 -0
  187. data/lib/license_finder/reports/xml_report.rb +23 -0
  188. data/lib/license_finder/scanner.rb +83 -0
  189. data/lib/license_finder/shared_helpers/cmd.rb +13 -0
  190. data/lib/license_finder/shared_helpers/common_path.rb +29 -0
  191. data/lib/license_finder/version.rb +6 -0
  192. data/lib/license_finder.rb +14 -0
  193. data/license_finder.gemspec +79 -0
  194. data/release/instructions.md +8 -0
  195. data/swift-all-keys.asc +240 -0
  196. metadata +604 -0
data/CHANGELOG.md ADDED
@@ -0,0 +1,1066 @@
1
+ # [7.2.1] / 2024-05-08
2
+
3
+ # [7.2.0] / 2024-05-07
4
+
5
+ ### Added
6
+ * Support for Ruby 3.3.x - [3bbe12f7](https://github.com/pivotal/LicenseFinder/commit/3bbe12f76d5305879df89d856d90f0b9eaf967d4)
7
+ * Support of latest Conan v1.6 - [ef81af38](https://github.com/pivotal/LicenseFinder/commit/ef81af387fa8c6577d85387e354a491da93f5a47) - melter2m
8
+ * Support NPM 7 and up and include NodeJS 17 in the Docker image (NPM 8) - [420c5444](https://github.com/pivotal/LicenseFinder/commit/420c5444223443277e4301badd58ee0ba0a82ec4) - rhuitl
9
+ * Maven: extract LICENSE and NOTICE texts from JAR file and summary, description and URL from POM file - [0da6d30b](https://github.com/pivotal/LicenseFinder/commit/0da6d30b9a306cc8a7c88cc55f13acd0eb3f10b3) - rhuitl
10
+ * Add more license detection - [b3dde46e](https://github.com/pivotal/LicenseFinder/commit/b3dde46e2018aef9b6436a04777ec33d40a134e4) - Simon Warren
11
+ * Unlicense - [6fb571ca](https://github.com/pivotal/LicenseFinder/commit/6fb571cad9b5ee856c0984ca79aa7604afdd818b) - Jim Kane
12
+
13
+ ### Fixed
14
+ * Ensure licenses are recognised by `spdx_id` - [b263f500](https://github.com/pivotal/LicenseFinder/commit/b263f500eaaf802e90ee023c4a6c4b6aa068dd7e) - Simon Warren
15
+ * Ensure yarn runs in "current" project dir - [37d52f2b](https://github.com/pivotal/LicenseFinder/commit/37d52f2b4503d799a4c551b573848e9bbbce4848) - Simon Warren
16
+ * Fix CPL1 pretty name - [3ae49861](https://github.com/pivotal/LicenseFinder/commit/3ae49861dbfaf0bbd023d68dabad067f32775f48) - Simon Warren
17
+ * Fix 'unknown' Yarn 2 licenses - [f57745be](https://github.com/pivotal/LicenseFinder/commit/f57745be34bb7774577ea577671ea7b5c3246576) - Simon Warren
18
+ * Print subproject paths when logging - [add2f969](https://github.com/pivotal/LicenseFinder/commit/add2f9698a0f3c02d3148655a4b538e2f557d2be) - Simon Warren
19
+
20
+ ### Changed
21
+ * Use Ubuntu 22.04 (Jammy) for Docker image - [da637b83](https://github.com/pivotal/LicenseFinder/commit/da637b83877b4ec3f054d787d68b90c8fa7a8b41) - rhuitl
22
+ * Use Maven 3.6.3 instead of 3.6.0 which now throws an error. - [1d3326d3](https://github.com/pivotal/LicenseFinder/commit/1d3326d350bebdf575ef64af7436a9f043d88920) - rhuitl
23
+
24
+
25
+ ### Deprecated
26
+ * Remove Ruby 2.6 tests- [c48ddb74](https://github.com/pivotal/LicenseFinder/commit/c48ddb745bb85971fc14e21d2c3c308c849ef2a3)
27
+ * Remove Dep package manager for jammy release - [42bed10d](https://github.com/pivotal/LicenseFinder/commit/42bed10d80e4b0e6fac1c62dd5eca2097ffc3517)
28
+
29
+ # [7.1.0] / 2022-11-28
30
+
31
+ ### Added
32
+ * Missing New BSD alternative name - [64d425d9](https://github.com/pivotal/LicenseFinder/commit/64d425d9210794c6b45c60bf730931e459a1e959)
33
+ * pre-commit hook - [2fd5ac85](https://github.com/pivotal/LicenseFinder/commit/2fd5ac85fbd4ea03b6f274f2c977448a8a517c2c) - Kurt von Laven
34
+
35
+ ### Fixed
36
+ * - Apache 2 license being too restrictive on matching - [c7fd0399](https://github.com/pivotal/LicenseFinder/commit/c7fd03994592ca97408f5134dd9eac6566e51c48)
37
+ * - Erlang not installing properly with mix - [74af3885](https://github.com/pivotal/LicenseFinder/commit/74af388579dd2f26b1814ece39c869d684218cd9)
38
+ * Scan transitive Yarn v2+ dependencies - [0115445e](https://github.com/pivotal/LicenseFinder/commit/0115445eb26de3185518adfb257b0e1911cf2fbd) - Kurt von Laven
39
+
40
+ * Issue with chaining commands with dlf - [a6af8c3e](https://github.com/pivotal/LicenseFinder/commit/a6af8c3e0abb932ed8d3c0215175f23cf75b5fb2)
41
+ * Nuget and dotnet not returning proper licenses - [e3452336](https://github.com/pivotal/LicenseFinder/commit/e3452336aa980f26de9a7d44d725bddb0ddd67a0)
42
+ * Save help documentation for the default file name - [09a93762](https://github.com/pivotal/LicenseFinder/commit/09a93762dc3bd714fdcdebb4aa84af4c7dbefa04)
43
+ * - Yarn2 output parsing - [395a7f02](https://github.com/pivotal/LicenseFinder/commit/395a7f02b7729243aaf730b6ede71cae8f21cfeb)
44
+
45
+ ### Changed
46
+ * - Bump docker image golang version to 1.17.13 - [4f3df246](https://github.com/pivotal/LicenseFinder/commit/4f3df246d2f5245681a943a6fb6dee49e3ed3ed1)
47
+
48
+ # [7.0.1] / 2022-03-18
49
+ ### Fixed
50
+ * Maven Wrapper command path must be relative to working directory - [298a733a](https://github.com/pivotal/LicenseFinder/commit/298a733a67f34341ffabc7dfbf2ee5c27574b979) - jbmgrtn
51
+ * Support yarn license command for yarn v2+ - [ed3b319b](https://github.com/pivotal/LicenseFinder/commit/ed3b319b64bf9c72c12fd5a365952137cf7f33b6)
52
+
53
+
54
+ # [7.0.0] / 2022-03-04
55
+
56
+ ### Added
57
+ * Ruby 3.x Support - [02497dfb](https://github.com/pivotal/LicenseFinder/commit/02497dfb60d458e51a43ef26568389b5fcf302af)
58
+ * Provide Flutter project scanning support - [e739f281](https://github.com/pivotal/LicenseFinder/commit/e739f2180c88504152c0e19477489177012f5631) - etiennecadicidean
59
+ * Add a new option to use spdx identifier in reports - [a71763bb](https://github.com/pivotal/LicenseFinder/commit/a71763bb132ed39e57f8071e72cb2450733bf8db) - etiennecadicidean
60
+ * Allow to specify cocoadpods acknowledgment through ENV - [67bd3fb5](https://github.com/pivotal/LicenseFinder/commit/67bd3fb5569afa54abc16035fd7804bc2d65b7c0) - etiennecadicidean
61
+
62
+ ### Changed
63
+ * Updated code to support newest Thor gem - [b118772c](https://github.com/pivotal/LicenseFinder/commit/b118772c3f634dacc56795eebb7c3ba4c89ef639)
64
+ * Raise an error if the yarn licenses list command fails - [8f9ab6bd](https://github.com/pivotal/LicenseFinder/commit/8f9ab6bd681866aee888410672f3babab7aab383) - ajesler
65
+
66
+ ### Deprecated
67
+ * Remove support for Ruby 2.3 - [02497dfb](https://github.com/pivotal/LicenseFinder/commit/02497dfb60d458e51a43ef26568389b5fcf302af)
68
+
69
+ # [6.15.0] / 2021-12-17
70
+
71
+ ### Added
72
+ * Add Yarn2 support - [7f08790c](https://github.com/pivotal/LicenseFinder/commit/7f08790ce1d7cd12ccd0aa9de114ca3366ab408c)
73
+
74
+ ###Changed
75
+ * Upgrade conan and use https://center.conan.io instead of conan.bintray.com - [eea1292b](https://github.com/pivotal/LicenseFinder/commit/eea1292bf2613f603a8a0ae42747857acf77e361)
76
+
77
+ ### Fixed
78
+ * Fix docker Conan and swift - [66031df9](https://github.com/pivotal/LicenseFinder/commit/66031df912c2e1e21aa794a4b897fc61c9ec6b02)
79
+
80
+ # [6.14.2] / 2021-10-27
81
+
82
+ ### Added
83
+ * Zlib License - [0f004b52](https://github.com/pivotal/LicenseFinder/commit/0f004b528d436b4d53db8bd373ede0594c07d9e8) - blooper05
84
+
85
+ # [6.14.1] / 2021-06-25
86
+
87
+ First two commit were supposed to show up in v6.14.0, but GPG bug prevented a correct build. Therefore, a follow up patch build was made to include the GPG fix.
88
+
89
+ ### Changed
90
+ * Upgrade Docker image to use Ubuntu Bionic [#178471230] - [1c12588c](https://github.com/pivotal/LicenseFinder/commit/1c12588cceecb8b7350d090c85b519b24bcc6682)
91
+ * Update the default timezone to GMT [#178471230] - [9fcab84](https://github.com/pivotal/LicenseFinder/commit/9fcab84605cda81e7f276d3c567d14409e371333)
92
+ * Use local copy of Swift puglic GPG keys [#178674224] - [4db4b3e](https://github.com/pivotal/LicenseFinder/commit/4db4b3e5980ca52019549d74da574a2342a7846e)
93
+
94
+ ### Added
95
+ * Added --npm_options option to customize npm behavior - [b8457a62](https://github.com/pivotal/LicenseFinder/commit/b8457a62e7b531294934364d1e5f72cd78a7686a) - Alexander-Malott
96
+
97
+ ### Security
98
+ * Fix issue where commands could be injected running on Cocoapods projects - [b0a61a2d](https://github.com/pivotal/LicenseFinder/commit/b0a61a2d833921c714cc39cdda8ba80af3f33d04)
99
+
100
+ Thanks to Joern Schneeweisz Staff Security Engineer, Security Research | GitLab for raising the issue
101
+
102
+
103
+ # [6.13.0] / 2021-04-27
104
+
105
+ ### Fixed
106
+ * Ignore packages with nil modules - [4eca0ec1](https://github.com/pivotal/LicenseFinder/commit/4eca0ec15dc6266afa48b74b3742278351246eb8)
107
+
108
+ # [6.12.2] / 2021-04-14
109
+
110
+ ### Changed
111
+ * exit when go mod list command fails - [fcf1f707](https://github.com/pivotal/LicenseFinder/commit/fcf1f7076dee2ff730e3c8b608381aca22de0e92) - Jeff Jun
112
+
113
+ # [6.12.1] / 2021-04-12
114
+
115
+ # [6.12.0] / 2021-03-05
116
+
117
+ ### Added
118
+ * Provide homepage information for GoDep and Go15Vendor package managers - [bae1bda9](https://github.com/pivotal/LicenseFinder/commit/bae1bda9d76cb922405d7efca9c67e2583db70d4) - Jeff Jun
119
+
120
+ # [6.11.0] / 2021-03-04
121
+
122
+ ### Added
123
+ * Add homepage for go_modules package manager - [912394a8](https://github.com/pivotal/LicenseFinder/commit/912394a8a6ab4c31b6918a21da9f37d5b368ed6b)
124
+
125
+ # [6.10.1] / 2021-01-08
126
+
127
+ # [6.10.0] / 2020-11-27
128
+
129
+ # [6.9.0] / 2020-10-05
130
+
131
+ ### Changed
132
+ * to recognize permitted licenses with AND in the name [#173997648] - [eab14250](https://github.com/pivotal/LicenseFinder/commit/eab14250d188153f8c2b0b5c0191fec19bcddf55) - Raymond Lee
133
+
134
+ # [6.8.2] / 2020-09-08
135
+
136
+ # [6.8.1] / 2020-08-13
137
+
138
+ # [6.8.0] / 2020-08-06
139
+
140
+ # [6.7.0] / 2020-07-23
141
+
142
+ # [6.6.2] / 2020-07-09
143
+
144
+ ### Added
145
+ * support for rebar3 - [b20e7444](https://github.com/pivotal/LicenseFinder/commit/b20e7444c147d8dbfa46eb4e8e549e03be751e02) - Jeff Jun
146
+ * Support for Go modules projects outside of the current working directory - [56b3bec6](https://github.com/pivotal/LicenseFinder/commit/56b3bec632b3884ce4cad538742b4a13c55fd7c5)
147
+
148
+ ### Changed
149
+ * Change Go modules to only report imported packages (as with other Go package managers) - [34361fda](https://github.com/pivotal/LicenseFinder/commit/34361fdab2dc3f197f7aec6408175018dee3b453) and [dffae4ab](https://github.com/pivotal/LicenseFinder/commit/dffae4ab95e34115b6a54bf681fc0966a8611f01)
150
+ * Detect Go modules based on `go.mod` (instead of `go.sum`) - [667f6be7](https://github.com/pivotal/LicenseFinder/commit/667f6be716504a53ccc2824daae08af085566546)
151
+
152
+ ### Fixed
153
+ * handle empty case for mix dependencies [#173637843] - [fc34b281](https://github.com/pivotal/LicenseFinder/commit/fc34b2813925a709addde675849e199b05fc4a23) - Jeff Jun
154
+
155
+ ### Removed
156
+ * support for rebar2 [#173637980] - [b20e7444](https://github.com/pivotal/LicenseFinder/commit/b20e7444c147d8dbfa46eb4e8e549e03be751e02) - Jeff Jun
157
+ * Removed the unnecessary prepare command for Go modules - [284cc5c8](https://github.com/pivotal/LicenseFinder/commit/284cc5c821270a6e56275e32bac836a3e451f46b)
158
+
159
+ # [6.6.1] / 2020-06-30
160
+
161
+ ### Changed
162
+ * Handle multiple solution files for nuget [#173021333] - [040d9559](https://github.com/pivotal/LicenseFinder/commit/040d9559a4bda07490255cc34c1a7891081bc511)
163
+ * matches license names from pypi api call with known licenses to avoid returning misformatted licenses [#173421573] - [6b96d746](https://github.com/pivotal/LicenseFinder/commit/6b96d74600034abcacee6ed2b322aa3abfaa0992) - Jeff Jun
164
+ * Update Nuget Package Manager prepare command - [6ac07066](https://github.com/pivotal/LicenseFinder/commit/6ac070668955bc034da1647658440ce5bb0d9bd2) - Jason Smith
165
+
166
+ # [6.6.0] / 2020-06-22
167
+
168
+ # [6.5.0] / 2020-06-01
169
+
170
+ ### Added
171
+ * Support legacy nuget projects [#172950097] - [0cccbcf9](https://github.com/pivotal/LicenseFinder/commit/0cccbcf9aa92f4297ef0174242bdb19da1babc65)
172
+
173
+ ### Changed
174
+ * Upgrade to golang 1.14.3. Update dotnet-sdk to 3.1 - [0969e98f](https://github.com/pivotal/LicenseFinder/commit/0969e98fde4a82f8931601baa4dd96dc01300a14)
175
+
176
+ # [6.4.0] / 2020-05-22
177
+
178
+ Big shout out to @forelabs for introducing many new features and improvements for this release. Thanks again!!
179
+
180
+ ### Added
181
+ * Introducing new inherited_decisions command - [3453feb](https://github.com/pivotal/LicenseFinder/commit/3453feb659a6c3c6e5aa444e3755ddd5d32f3664) - Sven Dunemann
182
+ * Decision Applier: Merge manual and system packages - [c690532](https://github.com/pivotal/LicenseFinder/commit/c690532ec8addab16bef4edd390f05ceb353435f) - Sven Dunemann
183
+ * Introduce package_url to packages - [18972f7](https://github.com/pivotal/LicenseFinder/commit/18972f7b3a04340e1b7bb560780130b68696b8a2) - Sven Dunemann
184
+ * Add --write-headers option for csv exports - [18e01f8](https://github.com/pivotal/LicenseFinder/commit/18e01f8728a9dc525d7567292cc1e2f390ec854d) - Sven Dunemann
185
+ * Yarn: Add authors & install_path - [08a0f67](https://github.com/pivotal/LicenseFinder/commit/08a0f67837a218231217767561f2282c1b3a890a) - Sven Dunemann
186
+ * install path for nuget dependencies [#172251374] - [ad73c946](https://github.com/pivotal/LicenseFinder/commit/ad73c946113846f8f548adfc73542aebb3763175) - Jeff Jun
187
+ * new Rubocop cops - [c4cc6b8b](https://github.com/pivotal/LicenseFinder/commit/c4cc6b8b13273db17b65cecaf24c9053e4989ea1) - Jeff Jun
188
+
189
+ ### Fixed
190
+ * Separate lines in license text with LF when exported to JSON - [baddb976](https://github.com/pivotal/LicenseFinder/commit/baddb976e7a8683c5cc320eddc8c2712dfb16c15) - Robert Huitl
191
+
192
+ ### Changed
193
+ * Go15VendorExperiment: Detect go only if vendor includes go files - [0f8e609](https://github.com/pivotal/LicenseFinder/commit/0f8e609f0921937c6187deccd80e4bc4b7d67ee4) - Sven Dunemann
194
+ * Bump PHP version to 7.4 - [cbe45c5](https://github.com/pivotal/LicenseFinder/commit/cbe45c5cdb3ec200ea215086a3b3eb879e83222a) - Yivan
195
+ * Significantly improve the license text matching file to be more dynamic - [acf5705](https://github.com/pivotal/LicenseFinder/commit/acf570573b4a2414d9c43212dea5d4ecb157319e)
196
+ * Update Ruby version to 2.7.1 [#172295831] - [475e2948](https://github.com/pivotal/LicenseFinder/commit/475e2948ec1ad859aee59e77aa9ce2a51e1a5029)
197
+
198
+ # [6.3.0] / 2020-05-06
199
+
200
+ ### Added
201
+ * OFL License - [d475bbb1](https://github.com/pivotal/LicenseFinder/commit/d475bbb1380e217f154f262caaa73c12f5b9792b) - Sven Dunemann
202
+ * WTFPL License - [ec629170](https://github.com/pivotal/LicenseFinder/commit/ec6291702c28789a33478041dbf6524d603c12ff) - Sven Dunemann
203
+
204
+ * Find the install path for sbt, cargo and composer [#171649609] - [0d525cbf](https://github.com/pivotal/LicenseFinder/commit/0d525cbf5208db5a977f2f3d922d07b5ea6a8b16)
205
+
206
+ ### Changed
207
+ * Bump PHP version to 7.3 - [1c3c3271](https://github.com/pivotal/LicenseFinder/commit/1c3c3271b977a6c8d24e4159a6b8098a51086522)
208
+ * Remove +compatible in Go package versions [#171754392] - [5cba5801](https://github.com/pivotal/LicenseFinder/commit/5cba5801f4f276482f01bfeea46fde0dbbcce7b1)
209
+
210
+ ### Fixed
211
+ * Fixed Maven Package manager Groups check - [5058d90](https://github.com/pivotal/LicenseFinder/commit/5058d90246a25ca15c72e0eed8e19ebbf7e39998) - Ravi Soni
212
+ * GoModules: fix compute with vendor mod - [067eb19](https://github.com/pivotal/LicenseFinder/commit/067eb1916ce024039631bdbd4114ababa6c02c3a) - forelabs
213
+ * Do not set Bundle path. Bundler will figure it out. - [6319a7a](https://github.com/pivotal/LicenseFinder/commit/6319a7a281bd9cc997c08c903674ab51fcc6545e) - mvz
214
+
215
+ # [6.2.0] / 2020-04-07
216
+
217
+ ### Fixed
218
+ * Break dependency of specs on released license_finder gem - [ef69fa00](https://github.com/pivotal/LicenseFinder/commit/ef69fa00deb7a8f8ebd74312afa9f130be2d9fda) - Matijs van Zuijlen
219
+ * Replace toml parser with tomlrb - [8b9b34b4](https://github.com/pivotal/LicenseFinder/commit/8b9b34b48d5bdadc679c0d072117b092d080fb81) - Matijs van Zuijlen
220
+
221
+ ### Changed
222
+ * Run glide install in folder containing glide.lock - [cec3ff47](https://github.com/pivotal/LicenseFinder/commit/cec3ff4759f1c06df2cd0c39ac8004fcd156a6e6) - Jeff Jun
223
+ * specify path for bundle install [#168042947] - [431355dc](https://github.com/pivotal/LicenseFinder/commit/431355dc1d0172c65444d2f4bcb5b4416fc52af7)
224
+
225
+ # [6.1.2] / 2020-03-16
226
+
227
+ # [6.1.0] / 2020-02-21
228
+
229
+ ### Fixed
230
+ * Testing dsl now correctly creates gem project - [6158d767](https://github.com/pivotal/LicenseFinder/commit/6158d76758f4232f3efd652729a83aa632a67dee) - Jeff Jun
231
+
232
+ ### Changed
233
+ * Upgrade golang version to 1.13.3 - [51ecbcbc](https://github.com/pivotal/LicenseFinder/commit/51ecbcbc7992366c1baed2e8b805a7f820f70160)
234
+ * Uses correct package management command for pip based on options that are passed in - [3f4034ab](https://github.com/pivotal/LicenseFinder/commit/3f4034ab3479da23088174ad8cf56828b3cda9ad)
235
+
236
+ # [6.0.0] / 2020-01-22
237
+
238
+ ### Added
239
+ * License Finder now recognizes pip requirement markers - [99fbc184](https://github.com/pivotal/LicenseFinder/commit/99fbc18463ef45f920ad506a72dc0b3a93d0f5bf) - Jason Smith
240
+ * Add ruby 2.7.0 and update to latest patch levels - [65efe96](https://github.com/pivotal/LicenseFinder/commit/65efe96aeef600a398f1465c01ed28b51bda456a) - mokhan
241
+ * Add support for Pipfile.lock - [566fb39c](https://github.com/pivotal/LicenseFinder/commit/566fb39c4077fb5271707a94894998a585cde8dd) - mokhan
242
+
243
+ ### Fixed
244
+ * Bundler ignored groups failure - [bf2c03e3](https://github.com/pivotal/LicenseFinder/commit/bf2c03e375e91e8418967a593362313487f2f0d0)
245
+ * No longer crashes when python package requirement is missing - [80e4b360](https://github.com/pivotal/LicenseFinder/commit/80e4b360b95de126e7dc139c25de56c948a01f1e) - Jason Smith
246
+ * Longest common paths returning incorrect single directory [#169276334] - [f1d5423b](https://github.com/pivotal/LicenseFinder/commit/f1d5423b04f892d1d1e0595993c9bebb0a7c1b6d)
247
+ * python 2 projects using incorrect CLI command - [5655f60e](https://github.com/pivotal/LicenseFinder/commit/5655f60e671dc4c247bb05138ed35b05cda9cdc7)
248
+
249
+ ### Changed
250
+ * Bump jdk version to 13 - [74c9aca6](https://github.com/pivotal/LicenseFinder/commit/74c9aca6358c9dd9262790edbba2e42e84b58bd9) - Debbie Chen
251
+ * Bump sbt version to 1.3.3 with java 12 - [d825599a](https://github.com/pivotal/LicenseFinder/commit/d825599a9b1ac12d874eda66c17bc877bb9af555) - Debbie Chen
252
+ * Bump to openjdk 11 - [499f8ab3](https://github.com/pivotal/LicenseFinder/commit/499f8ab3af7cd8ca37e429f2ed78323ad796d123) - Debbie Chen
253
+ * Bump to openjdk 12 - [09c781a7](https://github.com/pivotal/LicenseFinder/commit/09c781a70787d9461722d5d03d1bc624b644311a) - Debbie Chen
254
+ * Bundler prepare commands with now exclude dependencies in the ignored groups [#169611326] - [e58b2870](https://github.com/pivotal/LicenseFinder/commit/e58b2870b64d2c88be7027b152a423fdb921baca)
255
+ * Change version to be required for dependency add and updated cli options [#168705017] - [b10383d3](https://github.com/pivotal/LicenseFinder/commit/b10383d3d1990b6ad0d608044511352f13924be3) - Debbie Chen
256
+ * Ensure composer always installs the packages - [70b5e7a](https://github.com/pivotal/LicenseFinder/commit/70b5e7a42943c85bbd1d2825b2ffe94eec89020f) - kaystrobach
257
+
258
+ * **BREAKING:** Replaced whitelist/blacklist terminology with permitted_licenses/restricted_licenses - [a40b22f](https://github.com/pivotal/LicenseFinder/commit/a40b22fda11b3a0efbb3c0a021381534bc998dd9) - grantbdev
259
+
260
+ ### Deprecated
261
+ * Remove support for jruby 9.1* [#169590215] - [81e75f8c](https://github.com/pivotal/LicenseFinder/commit/81e75f8cd61ca35e30562352dee2579b1b6c991e)
262
+
263
+ # [5.11.1] / 2019-11-05
264
+
265
+ ### Fixed
266
+ * Crash when gradle runs with project roots recursive [#169465210] - [08e0df85](https://github.com/pivotal/LicenseFinder/commit/08e0df857c7fa4273eb6e2e4a7c01bb46550a91f)
267
+
268
+ ### Changed
269
+ * Bump docker ruby version to 2.6.5 [#169539985] - [26b6d4b2](https://github.com/pivotal/LicenseFinder/commit/26b6d4b25133fa50dbf92265a20bed2350305245)
270
+ * Gradle version updated to 5.6.4 - [9e32228f](https://github.com/pivotal/LicenseFinder/commit/9e32228fae3dacae38e7827946a0e0412a20ccb0)
271
+
272
+ # [5.11.0] / 2019-10-24
273
+
274
+ ### Fixed
275
+ * Fix crash in LF for null deps in godep - [aec335e5](https://github.com/pivotal/LicenseFinder/commit/aec335e574b65c1e9927787e88fb95f1296cdd26)
276
+
277
+ ### Changed
278
+ * Exclude Gradle subprojects from project roots - [4efea4c8](https://github.com/pivotal/LicenseFinder/commit/4efea4c8892f48c24ed6ec46a4be85cb06dc6672) - Jason Smith
279
+ * project_roots will skip maven subprojects - [61b88513](https://github.com/pivotal/LicenseFinder/commit/61b885135bd02cf2b5c6be4bc1fba85020d42f6a) - Peter Tran
280
+
281
+ # [5.10.2] / 2019-09-03
282
+
283
+ ### Added
284
+ * Added bzr app to image - [8fd43f01](https://github.com/pivotal/LicenseFinder/commit/8fd43f01a5de575596c92bcfc38a5e9ba7bf6b3d)
285
+
286
+ # [5.10.1] / 2019-08-28
287
+
288
+ ### Fixed
289
+ * Mix bailing early when elixir is not installed - [13b120e](https://github.com/pivotal/LicenseFinder/commit/13b120ed7c121243be987f449cc29d00ec6e6450)
290
+
291
+ # [5.10.0] / 2019-08-26
292
+
293
+ ### Changed
294
+ * Dotnet projects only detected if csproj is at root level - [b9f810d](https://github.com/pivotal/LicenseFinder/commit/b9f810d96f92f458fcfe4855307fdddfb7f1082b)
295
+ * sha for composer-setup.php - [64b782a](https://github.com/pivotal/LicenseFinder/commit/64b782a137a287980a317fcb48f595b6e93f85d0) - Debbie Chen
296
+
297
+ # [5.9.2] / 2019-07-02
298
+
299
+ ### Changed
300
+ * Bump ruby version to 2.6.3 - [dcdcc1c](https://github.com/pivotal/LicenseFinder/commit/dcdcc1c3e4fd29ec4d180a54fb67b2aa07e932de)
301
+
302
+ # [5.9.1] / 2019-06-10
303
+
304
+ # [5.9.0] / 2019-06-10
305
+
306
+ ### Added
307
+ * composer PHP support - [c671309](https://github.com/pivotal/LicenseFinder/commit/c671309d89c54a4dfac3ac40aab1bf70e3c3f6a2)
308
+ * composer support - [13ecaab](https://github.com/pivotal/LicenseFinder/commit/13ecaab7ee55c95ca973b74950fb10c3daea0784) - Zachary Knight
309
+ * --homepage option to `dependencies add` - [b7f7ef8](https://github.com/pivotal/LicenseFinder/commit/b7f7ef8b81d193b5535cb3c48b9244ecd446057f)
310
+
311
+ ### Fixed
312
+ * 'dotnet restore' failing - [dee1045](https://github.com/pivotal/LicenseFinder/commit/dee104517e0cf8ce769405910f46607a66017f40)
313
+ * Reporting extra paths for gvt projects - [ba7d1bd](https://github.com/pivotal/LicenseFinder/commit/ba7d1bdd90282e7d127c3ddaf68b51f98b402000)
314
+
315
+ ### Changed
316
+ * Fix license definition tests - [15b524f](https://github.com/pivotal/LicenseFinder/commit/15b524fa52f63e04a82d160a7fc3d49c288d01e8)
317
+
318
+ # [5.8.0] / 2019-05-22
319
+
320
+ ### Added
321
+ * Trash Package Manager - [3a3d854](https://github.com/pivotal/LicenseFinder/commit/3a3d8541c4ea64607df6b120111aff324f93778d)
322
+
323
+ ### Fixed
324
+ * Prefer to use `origin` over `path` for govendor - [31c6041](https://github.com/pivotal/LicenseFinder/commit/31c6041926a27b61c35c05c6433a87d0af78c1e5)
325
+
326
+ # [5.7.1] / 2019-03-08
327
+
328
+ # [5.7.0] / 2019-03-01
329
+
330
+ ### Added
331
+ * Ruby 2.6.1 support - [8d60ed1](https://github.com/pivotal/LicenseFinder/commit/8d60ed13f99b830cc1352900f90e2b298105f518)
332
+
333
+ ### Changed
334
+ * Conan version is locked to 1.11.2 to avoid breaking changes - [72b766a](https://github.com/pivotal/LicenseFinder/commit/72b766a948be5b0f8eade75e716796f50ea9ebf3)
335
+
336
+ # [5.6.2] / 2019-01-28
337
+
338
+ # [5.6.1] / 2019-01-25
339
+
340
+ ### Changed
341
+ * Updated GOLANG to 1.11.4 in Docker image [#163424880] - [67e5e1f](https://github.com/pivotal/LicenseFinder/commit/67e5e1ffef19acf3a63cac55c5aa3626fb4c7491)
342
+
343
+ # [5.6.0] / 2018-12-19
344
+
345
+ ### Added
346
+ * Add support for JSON reports [#161595251] - [5a1f735](https://github.com/pivotal/LicenseFinder/commit/5a1f73515c83cbf8ce17275c4c9d1af43d0db772)
347
+ * Removed the removal of nested projects - [6e1941c](https://github.com/pivotal/LicenseFinder/commit/6e1941c4d06676988ff8bdad81bd83a4bb5c17e9)
348
+ * Show verbose errors from prepare commands [#161462746] - [2b14299](https://github.com/pivotal/LicenseFinder/commit/2b142995d06572f772104c39437d0b64f9569f79)
349
+
350
+ * Support to find gradle.kts files [#161629958] - [f7cb587](https://github.com/pivotal/LicenseFinder/commit/f7cb587787f4de282c34afe66c0a2d0c1c72a84f)
351
+
352
+ ### Fixed
353
+ * Go modules reports incorrect install paths - [9ab5aa9](https://github.com/pivotal/LicenseFinder/commit/9ab5aa9aadc9432c5359ed2af2cb32e28fac277a)
354
+ Revert "* Go modules reports incorrect install paths" - [fcead98](https://github.com/pivotal/LicenseFinder/commit/fcead980ae2cc24f7193a1f38944f4df60a8c3fc)
355
+
356
+ * Fix install_paths for go mod now accurately report dependency installation directories [#161943322 finish] - [ea28c06](https://github.com/pivotal/LicenseFinder/commit/ea28c06898964043f5849b64b4043bde81a2d7cd)
357
+ * Handle log file names created with whitespaces and slashes - [7d6f9da](https://github.com/pivotal/LicenseFinder/commit/7d6f9da5006e1e7bbb71f594188ab87ee76ddfbb)
358
+
359
+ ### Changed
360
+ * Updated go-lang to 1.11.2 in the Docker - [d720f9c](https://github.com/pivotal/LicenseFinder/commit/d720f9c16f82044b5024213bec41b8e9f34cf306)
361
+
362
+ # [5.5.2] / 2018-10-17
363
+
364
+ ### Fixed
365
+ * go mod prepare command being incorrect - [480c465](https://github.com/pivotal/LicenseFinder/commit/480c4654cde7342456318ed4e28b6cebd4a09e4b)
366
+
367
+ # [5.5.1] / 2018-10-16
368
+
369
+ ### Added
370
+ * Documentation for asterisks being added to license names [#158960018] - [154b727](https://github.com/pivotal/LicenseFinder/commit/154b7273b1c18e64afa48799b50588251f99e982)
371
+ * Document the prepare option on the command line - [c283a38](https://github.com/pivotal/LicenseFinder/commit/c283a38d9e8b9feefc5afe32f1df55b357a33333)
372
+
373
+ ### Fixed
374
+ * Go modules are forced to be enabled on go mod package managers - [cf9123d](https://github.com/pivotal/LicenseFinder/commit/cf9123d654b98cdef872d3b21631e69960abe365)
375
+
376
+ # [5.5.0] / 2018-10-11
377
+
378
+ ### Added
379
+ * Go Module support - [8a20210](https://github.com/pivotal/LicenseFinder/commit/8a202109e942316434978befd33854aa985dd872)
380
+
381
+ ### Changed
382
+ * Lowering gemspec ruby requirement to support jruby 9.1.x - [279bd25](https://github.com/pivotal/LicenseFinder/commit/279bd25bbebbd3851dcc0062c3c47f7c7063dad8)
383
+ * Bumps rubocop to 0.59.2 - [291d335](https://github.com/pivotal/LicenseFinder/commit/291d3358921dbb47bc612b77656353da07e71a2b)
384
+
385
+ ### Fixed
386
+ * 'dlf' with no-args should get a login shell - [2b019fb](https://github.com/pivotal/LicenseFinder/commit/2b019fb1126ec2fcb9cafa092cad6d27b875e5f9) - Kim Dykeman
387
+ * Do not include godep dependencies with common paths - [23e951f](https://github.com/pivotal/LicenseFinder/commit/23e951fae56a43abde52ecefa73e8a5ff73bb688)
388
+ * Remove uneeded bundle install in dlf [#160758436] - [f44c73f](https://github.com/pivotal/LicenseFinder/commit/f44c73f6c06838a29ff9a75932e08fb1445557ca)
389
+
390
+ * dlf gemfile directory issues [#160758436 finish] - [2db3972](https://github.com/pivotal/LicenseFinder/commit/2db397261654bca89771e85984b4ae6819274e55)
391
+ Revert "* dlf gemfile directory issues [#160758436 finish]" - [6b17ddc](https://github.com/pivotal/LicenseFinder/commit/6b17ddc4202518ffd167c8d38a2045a36eb00144)
392
+
393
+ # [5.4.1] / 2018-09-18
394
+
395
+ ### Fixed
396
+ * Extra dependencies showing up for some go projects [#160438065] - [dfb1367](https://github.com/pivotal/LicenseFinder/commit/dfb136724721843c1196e74a6b4c762538af62ba)
397
+ * remove workspace-aggregator as a yarn dependency [#159612717 finish] - [4e0afd0](https://github.com/pivotal/LicenseFinder/commit/4e0afd0ba79623f5bb4c055d42a76ba77ce1c785)
398
+
399
+ # [5.4.0] / 2018-08-20
400
+
401
+ ### Added
402
+ * NuGet + mono installation to Dockerfile
403
+ * Add An all caps version of the 'LICENCE' spelling as a candidate file
404
+
405
+ ### Changed
406
+ * Upgrades Dockerfile base to Xenial
407
+
408
+ # [5.3.0] / 2018-06-05
409
+
410
+ ### Added
411
+ * Experimental support for Rust dependencies with Cargo - [2ef3129](https://github.com/pivotal/LicenseFinder/commit/2ef31290f7abf51db5b7173302d1e535508bbd7a)
412
+ * Add project roots command to list paths to scan - [b7a22ea](https://github.com/pivotal/LicenseFinder/commit/b7a22eacfac0e1b9334998de606df69ec3156f77)
413
+
414
+ ### Removed
415
+ * Remove HTTParty dependency - [c52d014](https://github.com/pivotal/LicenseFinder/commit/c52d014df1ca9cd3838d03c60daa6fad954c5579)
416
+
417
+ # [5.2.3] / 2018-05-14
418
+
419
+ # [5.2.1] / 2018-05-14
420
+
421
+ ### Changed
422
+ * Updated go-lang to 1.10.2 in the Docker * Updated Maven to 3.5.3 in the Docker - [1decf6a](https://github.com/pivotal/LicenseFinder/commit/1decf6ad27c9edf96b4f5cccd9a7ca0955fed9f2) - Mark Fioravanti
423
+
424
+ # [5.2.0] / 2018-05-09
425
+
426
+ ### Fixed
427
+ * Support for pip 10.0.1 - [286f679](https://github.com/pivotal/LicenseFinder/commit/286f6790dc71c97c0e93ecdfe0c6fddad75165cc)
428
+
429
+ # [5.1.1] / 2018-05-08
430
+
431
+ ### Added
432
+ * CC License detection
433
+
434
+ ### Fixed
435
+ * Yarn package manager now handles non-ASCII characters
436
+ * in_umbrella: true dependencies for Mix
437
+ * Pivotal Repo Renamed to pivotal
438
+
439
+ # [5.1.0] / 2018-04-02
440
+
441
+ ### Added
442
+ * Support for Ruby 2.5.1 - [9c82a84](https://github.com/pivotal/LicenseFinder/commit/9c82a84a3cff0765a45fa28dc2b05ab32880fb00)
443
+ * Support for Scala build Tool (sbt ) - [2115ddf](https://github.com/pivotal/LicenseFinder/commit/2115ddfe9481d17e6b1d0ac63d6ae1c6143f370c) - Bradford D. Boyle
444
+ * Condense gvt paths with identical shas into their common path - [9e1071d](https://github.com/pivotal/LicenseFinder/commit/9e1071d3c92405a8605727ad1164d6581dc50533)
445
+
446
+ ### Fixed
447
+ * Added back the pip prepare commands [#156376451 finish] - [fdd63fb](https://github.com/pivotal/LicenseFinder/commit/fdd63fb38332230e0cce0ee1b47aa5ccd0eebc36)
448
+ * Govendor not consolidating common paths from the same SHA - [bdd23c9](https://github.com/pivotal/LicenseFinder/commit/bdd23c94ae6ff09a2466c8875e554de60db6603c)
449
+
450
+ ### Deprecated
451
+ * Support for Ruby 2.1
452
+ * Support for Ruby 2.2
453
+ * Support for jruby - [9c82a84](https://github.com/pivotal/LicenseFinder/commit/9c82a84a3cff0765a45fa28dc2b05ab32880fb00)
454
+
455
+ # [5.0.3] / 2018-02-13
456
+
457
+ ### Changed
458
+ * Add the -vendor-only flag to dep-ensure calls - [e305bd1](https://github.com/pivotal/LicenseFinder/commit/e305bd1d5b2d9653f828c3940b59a12903904699)
459
+ * Update detected paths for Nuget - [3fe8995](https://github.com/pivotal/LicenseFinder/commit/3fe89955d82c3467628abbd2ca9ba159bfeb7df6)
460
+
461
+ # [5.0.2] / 2018-02-06
462
+
463
+ ### Fixed
464
+ * Add conditional production flag to npm - [533f9b8](https://github.com/pivotal/LicenseFinder/commit/533f9b8fda250655f3613444da49fdce60215237)
465
+ * conan install & info commands - [322e64c](https://github.com/pivotal/LicenseFinder/commit/322e64c402f4e45d97c6f3bf67c3ffdaabbb359f)
466
+ * Duplicate approvals in decisions file - [a8e6141](https://github.com/pivotal/LicenseFinder/commit/a8e6141cd7ac7ed2aa10b35c55954a48bacf3523)
467
+ * log path issues - [9f1bae1](https://github.com/pivotal/LicenseFinder/commit/9f1bae12c88771229e0a919876f4de6bcad31677)
468
+
469
+ * Fix yarn not working with --project_path option - [c6ed08d](https://github.com/pivotal/LicenseFinder/commit/c6ed08dd8342dec9fcc3e6377f88d5ef01600928)
470
+
471
+ # [5.0.0] / 2018-01-15
472
+
473
+ ### Added
474
+ * NPM prepare - [e7a0d30](https://github.com/pivotal/LicenseFinder/commit/e7a0d30cb77e5503b5a934b26dbd3dc272dc5605)
475
+ * Specify log directory for prepare - [b9a5991](https://github.com/pivotal/LicenseFinder/commit/b9a599171f3fda2affa9381d998e2158a2bf7fac)
476
+
477
+ * Added prepare step for elixir projects - [38b08ea](https://github.com/pivotal/LicenseFinder/commit/38b08eae23b6b0c2bbaa3aea7845ab6a8d9b028b)
478
+
479
+ ### Fixed
480
+ * Action_items resolves decisions file path - [c2a92ab](https://github.com/pivotal/LicenseFinder/commit/c2a92ab62203efb890dfeb1798d377c8d835feb6)
481
+
482
+ * Bower prepare step - [bb11d7f](https://github.com/pivotal/LicenseFinder/commit/bb11d7f07cc5e436381f01245a46033af6bb2d3b)
483
+
484
+ ### Changed
485
+ * Package Manager will now log if prepare step fails. Instead of erroring out - [54da71e](https://github.com/pivotal/LicenseFinder/commit/54da71e98f14cd199c39dfd7b762030fcac60ccb)
486
+
487
+ # [4.0.2] / 2017-11-16
488
+
489
+ ### Fixed
490
+
491
+ * Fixed --quiet not being available on the report task
492
+ * Fixed --recursive not being available on the action_items task
493
+
494
+ # [4.0.1] / 2017-11-14
495
+
496
+ ### Fixed
497
+
498
+ * Add missing toml dependency to gemspec
499
+
500
+ # [4.0.0] / 2017-11-10
501
+
502
+ ### Changed
503
+
504
+ * CLI output has been altered to be clear about active states and installed states.
505
+ * option `--subprojects`have been renamed to `--aggregate_paths` in order to be clear about its functionality
506
+
507
+ ### Fixed
508
+
509
+ * Fixed issue where dangling symbolic link would cause License Finder to crash and not continue. Instead, License Finder will now warn about the issue and continue.
510
+
511
+ # [3.1.0] / 2017-11-10
512
+
513
+ ### Added
514
+
515
+ * Added support for [Carthage](https://github.com/Carthage/Carthage)
516
+ * Added support for [gvt](https://github.com/FiloSottile/gvt)
517
+ * Added support for [yarn](https://yarnpkg.com/en/)
518
+ * Added support for [glide](https://github.com/Masterminds/glide)
519
+ * Added support for [GoVendor](https://github.com/kardianos/govendor)
520
+ * Added support for [Dep](https://github.com/golang/dep)
521
+ * Added support for [Conan](https://conan.io/)
522
+ * Added `--prepare` option
523
+ * `--prepare`/`-p` is an option which can now be passed to the `action_items` or `report` task of `license_finder`
524
+ * `prepare` will indicate to License Finder that it should attempt to prepare the project before running in a License scan.
525
+
526
+ ### Changed
527
+
528
+ * Upgrade `Gradle` in Dockerfile
529
+ * Clean up some CLI interaction and documentation
530
+
531
+ ### Fixed
532
+
533
+ * `build-essential` was added back into the Dockerfile after accidentally being removed
534
+ * Ignore leading prefixes such as 'The' when looking for licenses
535
+
536
+ # [3.0.4] / 2017-09-14
537
+
538
+ ### Added
539
+ * Added concourse pipeline file for Docker image process (#335, #337)
540
+ * Add status checks to pull requests
541
+ * Allow Custom Pip Requirements File Path (#328, thanks @sam-10e)
542
+
543
+ ### Fixed
544
+ * Fixed NPM stack too deep issue (#327, #329)
545
+
546
+ # [3.0.3] / Skipped because of accidentally yanking gem
547
+
548
+ # [3.0.2] / 2017-07-27:
549
+
550
+ ### Added
551
+
552
+ * Add CI status checks to pull requests (#321)
553
+
554
+ ### Fixed
555
+
556
+ * Support NPM packages providing a string for the licenses key (#317)
557
+ * Use different env-var to indicate ruby version for tests (#303)
558
+ * Resolve NPM circular dependencies (#306, #307, #311, #313, #314, #319, #322)
559
+
560
+ # [3.0.1] / 2017-07-12:
561
+
562
+ ### Added
563
+
564
+ * Add --maven-options to allow options for maven scans (#305, thanks @jgielstra!)
565
+
566
+ ### Fixed:
567
+
568
+ * Restore the original GOPATH after modifying it (#287, thanks @sschuberth!)
569
+ * LF doesn't recognize .NET projects using 'packages' directory (#290, #292, thanks @bspeck!)
570
+ * Use glob for finding acknowledgements path for CocoaPods (#177, #288, thanks @aditya87!)
571
+ * Fix some failing tests on Windows (#294, thanks @sschuberth!)
572
+ * Add warning message if no dependencies are recognized (#293, thanks @bspeck!)
573
+ * Switch to YAJL for parsing the json output from npm using a tmp file rather than an in-memory string (#301, #304)
574
+ * Fix dockerfile by explicitly using rvm stable (#303)
575
+ * Report multiple versions of the same NPM dependency (#310)
576
+
577
+ # [3.0.0] / 2016-03-02
578
+
579
+ ### Added
580
+
581
+ * Changed dependencies to be unique based on name _and_ version (#241)
582
+ * Enable '--columns' option with text reports (#244, thanks @raimon49!)
583
+ * Flag maven-include-groups adds group to maven depenency information (#219, #258, thanks @dgodd!)
584
+ * Package managers determine their package management command (#250, Thanks @sschuberth!)
585
+ * Support --ignored_groups for maven
586
+ * Support `homepage` column for godeps dependencies, and dependencies from go workspaces using `.envrc`
587
+ * Support `license_links` column for csv option (#281, Thanks @lbalceda!)
588
+ * Added a Dockerfile for [licensefinder/license_finder](https://hub.docker.com/r/licensefinder/license_finder/)
589
+ * Switched from Travis to Concourse
590
+
591
+ ### Fixed
592
+
593
+ * Gradle works in CI containers where TERM is not set (revert and fix of c15bdb7, which broke older versions of gradle)
594
+ * Check for the correct Ruby Bundler command: `bundle` (#233. Thanks, @raimon49!)
595
+ * Uses settings.gradle to determine the build file name (#248)
596
+ * Fix detecting the Gradle wrapper if not scanning the current directory (#238, Thanks @sschuberth!)
597
+ * Use maven wrapper if available on maven projects
598
+ * Check golang package lists against standard packages instead of excluding short package paths (#243)
599
+ * Update the project_sha method to return the sha of the dependency, not the parent project
600
+ * Change Maven wrapper to call mvn.cmd and fall back on mvn.bat (#263, Thanks @sschuberth!)
601
+ * Allow bower to run as root
602
+ * Fix packaging errors scanning pip based projects
603
+ * Add JSON lib attribute to handle deeply nested JSON (#269. Thanks, @antongurov!)
604
+ * Use the fully qualified name of the license-maven-plugin (#284)
605
+
606
+ # 2.1.2 / 2016-06-10
607
+
608
+ Bugfixes:
609
+
610
+ * NuGet limits its recursive search for .nupkg packages to the `vendor` subdirectory. (#228)
611
+
612
+
613
+ # 2.1.1 / 2016-06-09
614
+
615
+ Features:
616
+
617
+ * GoWorkspace now detects some non-standard package names with only two path parts. (#226)
618
+
619
+ Bugfixes:
620
+
621
+ * NuGet now appropriately returns a Pathname from #package_path (previously was a String) (#227)
622
+ * NuGet now correctly chooses a directory with vendored .nupkg packages
623
+
624
+
625
+ # 2.1.0 / 2016-04-01
626
+
627
+ * Features
628
+ * support a `groups` in reports (#210) (Thanks, Jon Wolski!)
629
+ * GoVendor and GoWorkspace define a package management tool, so they won't try to run if you don't have `go` installed
630
+ * PackageManagers are not activated if the underlying package management tool isn't installed
631
+ * detect GO15VENDOREXPERIMENT as evidence of a go workspace project
632
+ * provide path-to-dependency in recursive mode (#193)
633
+ * dedup godep dependencies (#196)
634
+ * add support for MPL2 detection
635
+ * detect .envrc in a parent folder (go workspaces) (#199)
636
+ * miscellaneous nuget support improvements (#200, #201, #202)
637
+ * miscellaneous go support improvements (#203, #204)
638
+ * add support for Golang 1.5 vendoring convention (#207)
639
+ * return the package manager that detected the dependency (#206)
640
+ * Add support for including maven/gradle GroupIds with `--gradle-include-groups`
641
+ * Godep dependencies can display the full commit SHA with `--go-full-version`
642
+ * specific versions of a dependency can be approved (#183, #185). (Thanks, @ipsi!)
643
+ * improved "go workspace" support by looking at git submodules. (Thanks, @jvshahid and @aminjam!)
644
+ * added an "install path" field to the report output. (Thanks, @jvshahid and @aminjam!)
645
+ * Licenses can be blacklisted. Dependencies which only have licenses in the blacklist will not be approved, even if someone tries.
646
+ * Initial support for the Nuget package manager for .NET projects
647
+ * Experimental support for `godep` projects
648
+ * Experimental support for "golang workspace" projects (with .envrc)
649
+ * Improved support for multi-module `gradle` projects
650
+ * Gradle 2.x support (experimental)
651
+ * Experimental support for "composite" projects (multiple git submodules)
652
+ * Experimental support for "license diffs" between directories
653
+
654
+ * Bugfixes
655
+ * `rubyzip` is now correctly a runtime dependency
656
+ * deep npm dependency trees no longer result in some packages having no metadata (#211)
657
+ * columns fixed in "recursive mode" (#191)
658
+ * gradle's use of termcaps avoided (#194)
659
+
660
+
661
+ # 2.0.4 / 2015-04-16
662
+
663
+ * Features
664
+
665
+ * Allow project path to be set in a command line option (Thanks, @robertclancy!)
666
+
667
+
668
+ # 2.0.3 / 2015-03-18
669
+
670
+ * Bugfixes
671
+
672
+ * Ignoring subdirectories of a LICENSE directory. (#143) (Thanks, @pmeskers and @yuki24!)
673
+
674
+
675
+ # 2.0.2 / 2015-03-14
676
+
677
+ * Features
678
+
679
+ * Show requires/required-by relationships for pip projects
680
+ * Expose homepage in CSV reports
681
+ * Support GPLv3
682
+
683
+ * Bugfixes
684
+
685
+ * license_finder works with Python 3; #140
686
+ * For pip projects, limit output to the distributions mentioned in
687
+ requirements.txt, or their dependencies, instead of all installed
688
+ distributions, which may include distributions from other projects. #119
689
+
690
+
691
+ # 2.0.1 / 2015-03-02
692
+
693
+ * Features
694
+
695
+ * Support for rebar projects
696
+
697
+
698
+ # 2.0.0 / 2015-03-02
699
+
700
+ * Features
701
+
702
+ * Stores every decision that has been made about a project's dependencies,
703
+ even if a decision was later reverted. These decisions are kept in an
704
+ append-only YAML file which can be considered an audit log.
705
+ * Stores timestamps and other optional transactional metadata (who, why)
706
+ about every kind of decision.
707
+ * When needed, applies those decisions to the list of packages currently
708
+ reported by the package managers.
709
+ * Removed dependencies on sqlite and sequel.
710
+ * The CLI never writes HTML or CSV reports to the file system, only to
711
+ STDOUT. So, users have more choice over which reports to generate, when to
712
+ generate them, and where to put them. See `license_finder report`. If you
713
+ would like to update reports automatically (e.g., in a rake task or git
714
+ hook) see this gist: https://gist.github.com/mainej/1a4d61a92234c5cebeab.
715
+ * The configuration YAML file is no longer required, though it can still be
716
+ useful. Most of its functionality has been moved into the decisions
717
+ infrastructure, and the remaining bits can be passed as arguments to the
718
+ CLI. Most users will not need these arguments. If the file is present, the
719
+ CLI arguments can be omitted. The CLI no longer updates this file.
720
+ * Requires pip >= 6.0
721
+
722
+ * Bugfixes
723
+
724
+ * `license_finder` does not write anything to the file system, #94, #114, #117
725
+
726
+
727
+ # 1.2.1 / unreleased
728
+
729
+ * Features
730
+
731
+ * Can list dependencies that were added manually
732
+
733
+
734
+ # 1.2 / 2014-11-10
735
+
736
+ * Features
737
+
738
+ * Adding support for CocoaPods >= 0.34. (#118)
739
+ * For dependencies with multiple licenses, the name of each license is
740
+ listed, and if any are whitelisted, the dependency is whitelisted
741
+ * Added `--debug` option when scanning, to provide details on
742
+ packages, dependencies and where each license was discovered.
743
+
744
+
745
+ # 1.1.1 / 2014-07-29
746
+
747
+ * Bugfixes
748
+
749
+ * Process incorrectly-defined dependencies.
750
+ [Original issue.](https://github.com/pivotal/LicenseFinder/issues/108)
751
+ * Allow license_finder to process incorrectly-defined dependencies.
752
+
753
+
754
+ # 1.0.1 / 2014-05-28
755
+
756
+ * Features
757
+
758
+ * For dependencies with multiple licenses, the dependency is listed as
759
+ 'multiple licenses' along with the names of each license
760
+ * Added 'ignore_dependencies' config option to allow specific
761
+ dependencies to be excluded from reports.
762
+
763
+ * Bugfixes
764
+
765
+ * Dependency reports generate when license_finder.yml updates
766
+ * Dependency reports generate when config is changed through the command line
767
+
768
+
769
+ # 1.0.0.1 / 2014-05-23
770
+
771
+ * Bugfixes
772
+
773
+ * LicenseFinder detects its own license
774
+
775
+
776
+ # 1.0.0 / 2014-04-03
777
+
778
+ * Features
779
+
780
+ * When approving a license, can specify who is approving, and why.
781
+ * Remove `rake license_finder` task from Rails projects. Just include
782
+ 'license_finder' as a development dependency, and run `license_finder` in
783
+ the shell.
784
+
785
+
786
+ # 0.9.5.1 / 2014-01-30
787
+
788
+ * Features
789
+
790
+ * Adds homepage for Bower, NPM, and PIP packages
791
+
792
+
793
+ # 0.9.5 / 2014-01-30
794
+
795
+ * Features
796
+
797
+ * Add more aliases for known licenses
798
+ * Drop support for ruby 1.9.2
799
+ * Large refactoring to simply things, and make it easier to add new package managers
800
+
801
+ * Bugfixes
802
+
803
+ * Make node dependency json parsing more robust
804
+ * Clean up directories created during test runs
805
+
806
+
807
+ # 0.9.4 / 2014-01-05
808
+
809
+ * Features
810
+
811
+ * Add detailed csv report
812
+ * Add markdown report
813
+ * Add support for "licenses" => ["license"] (npn)
814
+ * Add basic bower support
815
+ * Allow adding/removing multiple licenses from whitelist
816
+
817
+ * Bugfixes
818
+
819
+ * Use all dependencies by default for npm as bundler does
820
+
821
+
822
+ # 0.9.3 / 2013-10-01
823
+
824
+ * Features
825
+
826
+ * New Apache 2.0 license alias
827
+
828
+ * Bugfixes
829
+
830
+ * Fix problem which prevented license finder from running in rails < 3.2
831
+
832
+
833
+ # 0.9.2 / 2013-08-17
834
+
835
+ * Features
836
+
837
+ * Support for python and node.js projects
838
+
839
+ * Bugfixes
840
+
841
+ * Fix HTML output in firefox
842
+
843
+
844
+ # 0.9.1 / 2013-07-30
845
+
846
+ * Features
847
+
848
+ * Projects now have a title which can be configured from CLI
849
+ * JRuby officially supported. Test suite works against jruby, removed
850
+ warnings
851
+ * Internal clean-up of database behavior
852
+ * Updated documentation with breakdown of HTML report
853
+
854
+ * Bugfixes
855
+
856
+ * dependencies.db is no longer modified after license_finder runs and finds
857
+ no changes
858
+ * Fix more CLI grammar/syntax errors
859
+ * HTML report now works when served over https (PR #36 - bwalding)
860
+ * dependencies.txt is now dependencies.csv (It was always a csv in spirit)
861
+
862
+
863
+ # 0.9.0 / 2013-07-16
864
+
865
+ * Features
866
+
867
+ * Clarify CLI options and commands in help output
868
+ * Can manage whitelisted licenses from command line
869
+ * Improved New BSD license detection
870
+
871
+ * Bugfixes
872
+
873
+ * Fix CLI grammar errors
874
+ * Using license_finder in a non-RVM environment now works (Issue #35)
875
+
876
+
877
+ # 0.8.2 / 2013-07-09
878
+
879
+ * Features
880
+
881
+ * Switch to thor for CLI, to support future additions to CLI
882
+ * Restore ability to manage (add/remove) dependencies that Bundler can't find
883
+ * Can maintain ignored bundler groups from command line
884
+
885
+ * Bugfixes
886
+
887
+ * Fix bug preventing manual approval of child dependencies (Issue #23)
888
+ * Fix issue with database URI when the absolute path to the database file
889
+ contains spaces.
890
+ * Upgrading from 0.7.2 no longer removes non-gem dependencies (Issue #20)
891
+
892
+
893
+ # 0.8.1 / 2013-04-14
894
+
895
+ * Features
896
+
897
+ * JRuby version of the gem.
898
+ * Official ruby 2.0 support.
899
+ * CLI interface for moving dependencies.* files to `doc/`.
900
+
901
+ * Bugfixes
902
+
903
+ * Fix ruby 1.9.2 support.
904
+
905
+
906
+ # 0.8.0 / 2013-04-03
907
+
908
+ * Features
909
+
910
+ * Add spinner to show that the binary is actually doing something.
911
+ * Add action items to dependencies.html.
912
+ * Add generation timestamp to dependencies.html.
913
+ * Default location for dependencies.* files is now `doc/`.
914
+ * Temporarily remove non-bundler (e.g. JavaScript) dependencies. This will
915
+ be readded in a more sustainable way soon.
916
+ * Use sqlite, not YAML, for dependencies.
917
+ * Officially deprecate rake tasks.
918
+
919
+ * Bugfixes
920
+
921
+ * Don't blow away manually set licenses when dependencies are rescanned.
922
+ * Ignore empty `readme_files` section in dependencies.yml.
923
+ * Clean up HTML generation for dependencies.html.
924
+ * Add an option to silence the binary's spinner so as not to fill up log
925
+ files.
926
+
927
+
928
+ # 0.7.2 / 2013-02-18
929
+
930
+ * Features
931
+
932
+ * Dependency cleanup.
933
+
934
+
935
+ # 0.7.1 / 2013-02-18
936
+
937
+ * Features
938
+
939
+ * Add variants to detectable licenses.
940
+ * Remove README files from data persistence.
941
+
942
+
943
+ # 0.7.0 / 2012-09-25
944
+
945
+ * Features
946
+
947
+ * Dependencies can be approved via CLI.
948
+ * Dependencies licenses can be set via CLI.
949
+
950
+
951
+ # 0.6.0 / 2012-09-15
952
+
953
+ * Features
954
+
955
+ * Create a dependencies.html containing a nicely formatted version of
956
+ dependencies.txt, with lots of extra information.
957
+ * All rake tasks, and the binary, run the init task automatically.
958
+ * Simplify dependencies.txt file since more detail can now go into
959
+ dependencies.html.
960
+ * Promote binary to be the default, take first steps to deprecate rake task.
961
+
962
+ * Bugfixes
963
+
964
+ * Fix formatting of `rake license:action_items` output.
965
+
966
+
967
+ # 0.5.0 / 2012-09-12
968
+
969
+ * Features
970
+
971
+ * `rake license:action_items` exits with a non-zero status if there are
972
+ non-approved dependencies.
973
+ * New binary, eventual replacement for rake tasks.
974
+ * Initial implementation of non-gem dependencies.
975
+ * Support BSD, New BSD, and Simplified BSD licenses.
976
+ * Improve ruby license detection.
977
+ * Add dependency's bundler group to dependencies.txt output.
978
+ * Add description and summary to dependencies.txt output.
979
+
980
+ * Bugfixes
981
+
982
+ * Create `config/` director if it doesn't exist, don't blow up.
983
+ * Better support for non-US word spellings.
984
+
985
+
986
+ # 0.4.5 / 2012-09-09
987
+
988
+ * Features
989
+
990
+ * Allow dependencies.* files to be written to a custom directory.
991
+ * Detect LGPL licenses
992
+ * Detect ISC licenses
993
+
994
+ * Bugfixes
995
+
996
+ * Fix blow up if there's not `ignore_groups` setting in the config file.
997
+
998
+
999
+ [Unreleased]: https://github.com/pivotal/LicenseFinder/compare/v4.0.2...HEAD
1000
+ [4.0.2]: https://github.com/pivotal/LicenseFinder/compare/v4.0.1...v4.0.2
1001
+ [4.0.1]: https://github.com/pivotal/LicenseFinder/compare/v4.0.0...v4.0.1
1002
+ [4.0.0]: https://github.com/pivotal/LicenseFinder/compare/v3.1.0...v4.0.0
1003
+ [3.1.0]: https://github.com/pivotal/LicenseFinder/compare/v3.0.4...v3.1.0
1004
+ [3.0.4]: https://github.com/pivotal/LicenseFinder/compare/v3.0.2...v3.0.4
1005
+ [3.0.2]: https://github.com/pivotal/LicenseFinder/compare/v3.0.1...v3.0.2
1006
+ [3.0.1]: https://github.com/pivotal/LicenseFinder/compare/v3.0.0...v3.0.1
1007
+ [3.0.0]: https://github.com/pivotal/LicenseFinder/compare/v2.1.2...v3.0.0
1008
+ [5.0.0]: https://github.com/pivotal/LicenseFinder/compare/v4.0.2...v5.0.0
1009
+ [5.0.2]: https://github.com/pivotal/LicenseFinder/compare/v5.0.0...v5.0.2
1010
+ [5.0.3]: https://github.com/pivotal/LicenseFinder/compare/v5.0.2...v5.0.3
1011
+ [5.1.0]: https://github.com/pivotal/LicenseFinder/compare/v5.0.3...v5.1.0
1012
+ [5.1.1]: https://github.com/pivotal/LicenseFinder/compare/v5.1.0...v5.1.1
1013
+ [5.1.1]: https://github.com/pivotal/LicenseFinder/compare/v5.1.0...v5.1.1
1014
+ [5.2.0]: https://github.com/pivotal/LicenseFinder/compare/v5.1.1...v5.2.0
1015
+ [5.2.1]: https://github.com/pivotal/LicenseFinder/compare/v5.2.0...v5.2.1
1016
+ [5.2.3]: https://github.com/pivotal/LicenseFinder/compare/v5.2.1...v5.2.3
1017
+ [5.3.0]: https://github.com/pivotal/LicenseFinder/compare/v5.2.3...v5.3.0
1018
+ [5.4.0]: https://github.com/pivotal/LicenseFinder/compare/v5.3.0...v5.4.0
1019
+ [5.4.1]: https://github.com/pivotal/LicenseFinder/compare/v5.4.0...v5.4.1
1020
+ [5.5.0]: https://github.com/pivotal/LicenseFinder/compare/v5.4.1...v5.5.0
1021
+ [5.5.1]: https://github.com/pivotal/LicenseFinder/compare/v5.5.0...v5.5.1
1022
+ [5.5.2]: https://github.com/pivotal/LicenseFinder/compare/v5.5.1...v5.5.2
1023
+ [5.6.0]: https://github.com/pivotal/LicenseFinder/compare/v5.5.2...v5.6.0
1024
+ [5.6.1]: https://github.com/pivotal/LicenseFinder/compare/v5.6.0...v5.6.1
1025
+ [5.6.2]: https://github.com/pivotal/LicenseFinder/compare/v5.6.1...v5.6.2
1026
+ [5.7.0]: https://github.com/pivotal/LicenseFinder/compare/v5.6.2...v5.7.0
1027
+ [5.7.1]: https://github.com/pivotal/LicenseFinder/compare/v5.7.0...v5.7.1
1028
+ [5.8.0]: https://github.com/pivotal/LicenseFinder/compare/v5.7.1...v5.8.0
1029
+ [5.9.0]: https://github.com/pivotal/LicenseFinder/compare/v5.8.0...v5.9.0
1030
+ [5.9.1]: https://github.com/pivotal/LicenseFinder/compare/v5.9.0...v5.9.1
1031
+ [5.9.2]: https://github.com/pivotal/LicenseFinder/compare/v5.9.1...v5.9.2
1032
+ [5.10.0]: https://github.com/pivotal/LicenseFinder/compare/v5.9.2...v5.10.0
1033
+ [5.10.1]: https://github.com/pivotal/LicenseFinder/compare/v5.10.0...v5.10.1
1034
+ [5.10.2]: https://github.com/pivotal/LicenseFinder/compare/v5.10.1...v5.10.2
1035
+ [5.11.0]: https://github.com/pivotal/LicenseFinder/compare/v5.10.2...v5.11.0
1036
+ [5.11.1]: https://github.com/pivotal/LicenseFinder/compare/v5.11.0...v5.11.1
1037
+ [6.0.0]: https://github.com/pivotal/LicenseFinder/compare/v5.11.1...v6.0.0
1038
+ [6.1.0]: https://github.com/pivotal/LicenseFinder/compare/v6.0.0...v6.1.0
1039
+ [6.1.2]: https://github.com/pivotal/LicenseFinder/compare/v6.1.0...v6.1.2
1040
+ [6.2.0]: https://github.com/pivotal/LicenseFinder/compare/v6.1.2...v6.2.0
1041
+ [6.3.0]: https://github.com/pivotal/LicenseFinder/compare/v6.2.0...v6.3.0
1042
+ [6.4.0]: https://github.com/pivotal/LicenseFinder/compare/v6.3.0...v6.4.0
1043
+ [6.5.0]: https://github.com/pivotal/LicenseFinder/compare/v6.4.0...v6.5.0
1044
+ [6.6.0]: https://github.com/pivotal/LicenseFinder/compare/v6.5.0...v6.6.0
1045
+ [6.6.1]: https://github.com/pivotal/LicenseFinder/compare/v6.6.0...v6.6.1
1046
+ [6.6.2]: https://github.com/pivotal/LicenseFinder/compare/v6.6.1...v6.6.2
1047
+ [6.7.0]: https://github.com/pivotal/LicenseFinder/compare/v6.6.2...v6.7.0
1048
+ [6.8.0]: https://github.com/pivotal/LicenseFinder/compare/v6.7.0...v6.8.0
1049
+ [6.8.1]: https://github.com/pivotal/LicenseFinder/compare/v6.8.0...v6.8.1
1050
+ [6.8.2]: https://github.com/pivotal/LicenseFinder/compare/v6.8.1...v6.8.2
1051
+ [6.9.0]: https://github.com/pivotal/LicenseFinder/compare/v6.8.2...v6.9.0
1052
+ [6.10.0]: https://github.com/pivotal/LicenseFinder/compare/v6.9.0...v6.10.0
1053
+ [6.10.1]: https://github.com/pivotal/LicenseFinder/compare/v6.10.0...v6.10.1
1054
+ [6.11.0]: https://github.com/pivotal/LicenseFinder/compare/v6.10.1...v6.11.0
1055
+ [6.12.0]: https://github.com/pivotal/LicenseFinder/compare/v6.11.0...v6.12.0
1056
+ [6.12.1]: https://github.com/pivotal/LicenseFinder/compare/v6.12.0...v6.12.1
1057
+ [6.12.2]: https://github.com/pivotal/LicenseFinder/compare/v6.12.1...v6.12.2
1058
+ [6.13.0]: https://github.com/pivotal/LicenseFinder/compare/v6.12.2...v6.13.0
1059
+ [6.14.1]: https://github.com/pivotal/LicenseFinder/compare/v6.13.0...v6.14.1
1060
+ [6.14.2]: https://github.com/pivotal/LicenseFinder/compare/v6.14.1...v6.14.2
1061
+ [6.15.0]: https://github.com/pivotal/LicenseFinder/compare/v6.14.2...v6.15.0
1062
+ [7.0.0]: https://github.com/pivotal/LicenseFinder/compare/v6.15.0...v7.0.0
1063
+ [7.0.1]: https://github.com/pivotal/LicenseFinder/compare/v7.0.0...v7.0.1
1064
+ [7.1.0]: https://github.com/pivotal/LicenseFinder/compare/v7.0.1...v7.1.0
1065
+ [7.2.0]: https://github.com/pivotal/LicenseFinder/compare/v7.1.0...v7.2.0
1066
+ [7.2.1]: https://github.com/pivotal/LicenseFinder/compare/v7.2.0...v7.2.1