Skip to content

Commit

Permalink
Lots of dependency upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
johanhaleby committed May 10, 2024
1 parent 9efcdf1 commit 1cdd3c5
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 11 deletions.
9 changes: 9 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,15 @@
```java
subscriptionModel.subscribe("myId", StartAtTime.beginningOfTime(), System.out::println);
```
* Upgraded Spring Boot from 3.2.1 to 3.2.5
* Upgraded Mongo sync driver 4.11.1 to 4.11.2
* Upgraded jobrunr from 6.3.3 to 7.1.1
* Upgraded project reactor from 3.6.0 to 3.6.5
* Upgraded jackson from 2.15.3 to 2.15.4
* Upgraded Kotlin from 1.9.22 to 1.9.23
* Upgraded spring-data-mongodb from 4.2.0 to 4.2.5
* Upgraded cloudevents from 2.5.0 to 3.0.0
### 0.17.2 (2024-02-27)
* Fixed issue in CompetingConsumerSubscriptionModel in which it failed to reacquire consumption rights in some cases where MongoDB connection was lost.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void schedule(String id, String category, Deadline deadline, Object data)

@Override
public void cancel(String id) {
jobRequestScheduler.delete(id);
jobRequestScheduler.delete(generateUUIDFromString(id));
}

private static UUID generateUUIDFromString(String id) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public CloudEventContextWriter withContextAttribute(String name, OffsetDateTime
}

@Override
public CloudEventContextWriter withContextAttribute(String name, Number value) throws CloudEventRWException {
public CloudEventContextWriter withContextAttribute(String name, Integer value) throws CloudEventRWException {
document.append(name, value);
return this;
}
Expand Down
18 changes: 9 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,17 +70,17 @@
<maven.compiler.target>17</maven.compiler.target>
<junit.version>5.10.1</junit.version>
<test-containers.version>1.19.3</test-containers.version>
<kotlin.version>1.9.22</kotlin.version>
<jackson.version>2.15.3</jackson.version>
<cloudevents.version>2.5.0</cloudevents.version>
<reactor.version>3.6.0</reactor.version>
<kotlin.version>1.9.23</kotlin.version>
<jackson.version>2.15.4</jackson.version>
<cloudevents.version>3.0.0</cloudevents.version>
<reactor.version>3.6.5</reactor.version>
<spring-data-mongodb.version>4.2.0</spring-data-mongodb.version>
<spring-boot.version>3.2.1</spring-boot.version>
<mongo.version>4.11.1</mongo.version>
<dokka.version>1.9.10</dokka.version>
<spring-boot.version>3.2.5</spring-boot.version>
<mongo.version>4.11.2</mongo.version>
<dokka.version>1.9.20</dokka.version>
<sundrio.version>0.100.3</sundrio.version>
<awaitility.version>4.2.0</awaitility.version>
<jobrunr.version>6.3.3</jobrunr.version>
<awaitility.version>4.2.1</awaitility.version>
<jobrunr.version>7.1.1</jobrunr.version>
</properties>


Expand Down

0 comments on commit 1cdd3c5

Please sign in to comment.