Skip to content

Commit

Permalink
security: update clojure to version 1.11.2
Browse files Browse the repository at this point in the history
The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-JAVA-ORGCLOJURE-6346485

Update Clojure to version 1.11.2 and ensure each template is using `{{clojure-version}}` template variable
  • Loading branch information
snyk-bot authored and practicalli-johnny committed Apr 18, 2024
1 parent 1714275 commit 4e79c97
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).

# [Unreleased]
## Changed
- security: update to clojure 1.11.2

# 2024-04-08

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.11.1</version>
<version>1.11.2</version>
</dependency>
</dependencies>
<build>
Expand Down
2 changes: 1 addition & 1 deletion resources/practicalli/application/template.edn
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
;; ---------------------------------------------------------
;; Version substitutions

:clojure-version "1.11.1"
:clojure-version "1.11.2"
;; ---------------------------------------------------------

;; ---------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion resources/practicalli/landing_page/build/deps.edn.template
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{:paths ["src" "resources"]

;; ---------------------------------------------------------
:deps {org.clojure/clojure {:mvn/version "1.11.0"}
:deps {org.clojure/clojure {:mvn/version "{{clojure-version}}"}
org.clojure/clojurescript {:mvn/version "1.11.60"}
cljsjs/react {:mvn/version "18.2.0-1"}
cljsjs/react-dom {:mvn/version "18.2.0-1"}
Expand Down
2 changes: 1 addition & 1 deletion resources/practicalli/minimal/template.edn
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
;; ---------------------------------------------------------
;; Version substitutions

:clojure-version "1.11.1"
:clojure-version "1.11.2"
;; ---------------------------------------------------------

;; ---------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion resources/practicalli/service/root/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.11.1</version>
<version>{{clojure-version}}</version>
</dependency>
</dependencies>
<build>
Expand Down
2 changes: 1 addition & 1 deletion resources/practicalli/service/template.edn
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
;; ---------------------------------------------------------
;; Version substitutions

:clojure-version "1.11.1"
:clojure-version "1.11.2"

;; ---------------------------------------------------------

Expand Down

0 comments on commit 4e79c97

Please sign in to comment.