Skip to content

Commit

Permalink
Merge branch 'development' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
tmberthold committed Jan 31, 2022
2 parents 30be4c1 + 2f2588c commit 4b8a7c0
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@
# Changelog
All notable changes to this project will be documented in this file.

## Version [6.0.1] 2022-01-31

### Patch Change: Dependency Maintenance
- Upgrade: com.puppycrawl.tools:checkstyle 9.2.1 -> 9.3 ([PR 425](https://github.com/International-Data-Spaces-Association/IDS-Messaging-Services/pull/425))
- Upgrade: org.springframework.boot:spring-boot-starter-test 2.6.2 -> 2.6.3 ([PR 423](https://github.com/International-Data-Spaces-Association/IDS-Messaging-Services/pull/423))
- Upgrade: org.springframework.boot:spring-boot-starter 2.6.2 -> 2.6.3 ([PR 423](https://github.com/International-Data-Spaces-Association/IDS-Messaging-Services/pull/423))
- Upgrade: transitive com.fasterxml.jackson.core:jackson-databind to v2.9.10.8

## Version [6.0.0] 2022-01-19

### Major Change: dat issuer and public key kid are read from the received token
Expand Down
15 changes: 15 additions & 0 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,23 @@
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<version>0.9.1</version>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
<!-- License: Apache License, Version 2.0 -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.10.8</version>
</dependency>


<!-- https://mvnrepository.com/artifact/org.bouncycastle/bcmail-jdk15on -->
<!-- License: Bouncy Castle Licence -->
<dependency>
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
</modules>

<properties>
<revision>6.0.0</revision>
<revision>6.0.1</revision>

<java.version>11</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
Expand Down Expand Up @@ -125,7 +125,7 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>2.6.2</version>
<version>2.6.3</version>
</dependency>

<!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
Expand Down Expand Up @@ -181,7 +181,7 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>2.6.2</version>
<version>2.6.3</version>
<scope>test</scope>
<exclusions>
<exclusion>
Expand Down Expand Up @@ -341,7 +341,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>9.2.1</version>
<version>9.3</version>
</dependency>
</dependencies>
<configuration>
Expand Down

0 comments on commit 4b8a7c0

Please sign in to comment.