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

security: [Snyk] Fix for 2 vulnerabilities #52

Merged
merged 5 commits into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from 4 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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,6 @@ buildNumber.properties
# Ignore all local history of files
.history

### mac
.DS_Store
# End of https://www.gitignore.io/api/java,maven,visualstudiocode
3 changes: 2 additions & 1 deletion .trunk/trunk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ plugins:
ref: v0.0.5
uri: https://github.com/trunk-io/plugins
lint:
disabled:
- semgrep
enabled:
- semgrep@0.118.0
- shellcheck@0.8.0
- shfmt@3.5.0
- yamllint@1.28.0
Expand Down
12 changes: 7 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8" ?>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.12</version>
<relativePath />
<version>3.2.3</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>

Expand Down Expand Up @@ -51,8 +51,8 @@

<properties>
<java.version>8</java.version>
<jackson.version>2.14.2</jackson.version>
<spring.version>6.0.19</spring.version>
<jackson.version>2.15.0</jackson.version>
<spring.version>6.0.23</spring.version>
<pmd.version>6.55.0</pmd.version>
</properties>

Expand Down Expand Up @@ -92,11 +92,13 @@
<version>${jackson.version}</version>
</dependency>

<!--
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.30</version>
</dependency>
-->

<dependency>
<groupId>com.squareup.okhttp3</groupId>
Expand Down
Loading