Skip to content

Commit

Permalink
deps: bump jackson-databind from 2.13.3 to 2.14.0
Browse files Browse the repository at this point in the history
Plus some minor test dependency updates.

Cherry-picked from 5527101
  • Loading branch information
stklcode committed Nov 21, 2022
1 parent 30b151a commit c5f13f6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: java8

steps:
- name: test
image: maven:3-openjdk-8
image: maven:3-eclipse-temurin-8
commands:
- mvn -B clean test

Expand All @@ -15,7 +15,7 @@ name: java11

steps:
- name: test
image: maven:3-openjdk-11
image: maven:3-eclipse-temurin-11
commands:
- mvn -B clean test

Expand All @@ -26,6 +26,6 @@ name: java17

steps:
- name: test
image: maven:3-openjdk-17
image: maven:3-eclipse-temurin-17
commands:
- mvn -B clean test
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
All notable changes to this project will be documented in this file.

## unreleased
### Security
* Updated Jackson dependency to 2.14.0

### Fixed
* Querying trips and messages with limit directly from `Query` instance (#19)
Expand Down
9 changes: 5 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,13 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.3</version>
<version>2.14.0</version>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.9.0</version>
<version>5.9.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -66,7 +67,7 @@
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock-jre8</artifactId>
<version>2.33.2</version>
<version>2.35.0</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -95,7 +96,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.2</version>
<version>3.3.0</version>
<configuration>
<archive>
<manifest>
Expand Down

0 comments on commit c5f13f6

Please sign in to comment.