Skip to content

Commit 21b4a93

Browse files
committed
Prep for 5.2.0 release
1 parent e976fd4 commit 21b4a93

File tree

5 files changed

+15
-10
lines changed

5 files changed

+15
-10
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Changes from 5.1.0 to 5.2.0
2+
3+
* Update `dependency-check-core` from 12.1.3 to [12.1.6](https://github.com/dependency-check/DependencyCheck/blob/main/CHANGELOG.md#version-1216-2025-09-24).
4+
* Support [setting user & password for OSS Index analyzer](https://github.com/rm-hull/nvd-clojure/tree/v5.2.0#configuration-options), as OSS Index [now requires authentication](https://ossindex.sonatype.org/doc/auth-required)
5+
16
# Changes from 5.0.0 to 5.1.0
27

38
* Update `dependency-check-core` from 12.1.0 to [12.1.3](https://github.com/dependency-check/DependencyCheck/blob/main/CHANGELOG.md#version-1213-2025-06-10).

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Example usage:
44
# copy a one-off Clojars token to your clipboard
5-
# GIT_TAG=v5.1.0 CLOJARS_USERNAME=$USER CLOJARS_PASSWORD=$(pbpaste) make deploy
5+
# GIT_TAG=v5.2.0 CLOJARS_USERNAME=$USER CLOJARS_PASSWORD=$(pbpaste) make deploy
66

77
deploy: check-env
88
lein clean

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ will be checked for known security vulnerabilities. `nvd-clojure` passes them to
1818
1919
### Installation and basic usage
2020

21-
> _Please see also:_ [Avoiding classpath interference](https://github.com/rm-hull/nvd-clojure/blob/v5.1.0/FAQ.md#what-is-classpath-interference)
21+
> _Please see also:_ [Avoiding classpath interference](https://github.com/rm-hull/nvd-clojure/blob/v5.2.0/FAQ.md#what-is-classpath-interference)
2222
2323
#### Leiningen
2424

2525
<details>
2626

27-
Please create a separate project consisting of `[nvd-clojure/nvd-clojure "5.1.0"]`. Said project can be located inside the targeted repo's Git repository.
27+
Please create a separate project consisting of `[nvd-clojure/nvd-clojure "5.2.0"]`. Said project can be located inside the targeted repo's Git repository.
2828

2929
```clj
3030
(defproject nvd-helper "local"
3131
:description "nvd-clojure helper project"
32-
:dependencies [[nvd-clojure "5.1.0"]
33-
[org.clojure/clojure "1.12.0"]]
32+
:dependencies [[nvd-clojure "5.2.0"]
33+
[org.clojure/clojure "1.12.3"]]
3434
:jvm-opts ["-Dclojure.main.report=stderr"])
3535
```
3636

@@ -54,7 +54,7 @@ If you are using a multi-modules solution (e.g. `lein-monolith`), you should ens
5454

5555
<details>
5656

57-
Please create a separate project consisting exclusively of `nvd-clojure/nvd-clojure {:mvn/version "5.1.0"}`. Said project can be located inside the targeted repo's Git repository.
57+
Please create a separate project consisting exclusively of `nvd-clojure/nvd-clojure {:mvn/version "5.2.0"}`. Said project can be located inside the targeted repo's Git repository.
5858

5959
Please do not add nvd-clojure as a dependency in the deps.edn of the project to be analysed.
6060

@@ -155,7 +155,7 @@ dependency relationships are:
155155
dependencies, and suggest upgraded versions, and can optionally be configured
156156
to update the project file.
157157

158-
(Note that that is only one of the multiple ways of remediating a given vulnerability, please see [FAQ](https://github.com/rm-hull/nvd-clojure/blob/v5.1.0/FAQ.md#how-to-remediate-a-cve-is-it-a-good-idea-to-automate-remediation))
158+
(Note that that is only one of the multiple ways of remediating a given vulnerability, please see [FAQ](https://github.com/rm-hull/nvd-clojure/blob/v5.2.0/FAQ.md#how-to-remediate-a-cve-is-it-a-good-idea-to-automate-remediation))
159159

160160
## Configuration
161161

@@ -214,7 +214,7 @@ You can also set logging properties directly through Java system properties (the
214214
clojure -J-Dclojure.main.report=stderr -J-Dorg.slf4j.simpleLogger.log.org.apache.commons=error -Tnvd nvd.task/check # ...
215215
```
216216

217-
## [FAQ](https://github.com/rm-hull/nvd-clojure/blob/v5.1.0/FAQ.md)
217+
## [FAQ](https://github.com/rm-hull/nvd-clojure/blob/v5.2.0/FAQ.md)
218218

219219
## Attribution
220220

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject nvd-clojure "5.1.0"
1+
(defproject nvd-clojure "5.2.0"
22
:description "National Vulnerability Database dependency checker"
33
:url "https://github.com/rm-hull/nvd-clojure"
44
:license {:name "The MIT License (MIT)"

resources/nvd_clojure/default_config_content.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
;; Feel free to tweak it, version-control it and remove any comment.
88

9-
;; Configuration reference: https://github.com/rm-hull/nvd-clojure/tree/v5.1.0#configuration-options
9+
;; Configuration reference: https://github.com/rm-hull/nvd-clojure/tree/v5.2.0#configuration-options
1010

1111
{;; You can use the `:suppression-file` in order to silence false positives.
1212
;; This file will be automatically created, with whatever filename is specified here, if it didn't exist already.

0 commit comments

Comments
 (0)