Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pedestal CVE updates #134

Merged
merged 3 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [0.4.2] - 2024-02-29
- Update Pedestal dependency to 0.6.3.
- Update Jetty http2-server dependency to 9.4.54 to address CVEs.

## [0.4.1] - 2024-01-25
- Fix a number of bugs associated with Statement generation:
- Fix places where `:definition` was used when `:activityDefinition` was supposed to be used in the code, causing Activities not to be associated with their respective Activity Types.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

GROUP_ID ?= com.yetanalytics
ARTIFACT_ID ?= datasim
VERSION ?= 0.4.1
VERSION ?= 0.4.2

clean:
rm -rf target
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ DATASIM is funded by the Advanced Distributed Learning Initiative at US DoD.
To use the core DATASIM library in your project, use the following dependency in your `deps.edn` file:

```clojure
com.yetanalytics/datasim {:mvn/version "0.4.1"}
com.yetanalytics/datasim {:mvn/version "0.4.2"}
```

If you wish to install DATASIM as an application with features such as CLI or the webserver, perform the following steps:
Expand Down
6 changes: 4 additions & 2 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,10 @@
:run-cli {:main-opts ["-m" "com.yetanalytics.datasim.cli"]}
:server {:extra-paths ["src/server"]
:extra-deps
{io.pedestal/pedestal.jetty {:mvn/version "0.6.2"}
io.pedestal/pedestal.service {:mvn/version "0.6.2"}
{io.pedestal/pedestal.jetty {:mvn/version "0.6.3"
:exclusions [org.eclipse.jetty.http2/http2-server]}
io.pedestal/pedestal.service {:mvn/version "0.6.3"}
org.eclipse.jetty.http2/http2-server {:mvn/version "9.4.54.v20240208"}
org.slf4j/slf4j-simple {:mvn/version "1.7.28"}
clj-http/clj-http {:mvn/version "3.12.3"}
environ/environ {:mvn/version "1.1.0"}
Expand Down
Loading