Skip to content

Commit

Permalink
Merged PR 36371: Update all non-major dependencies
Browse files Browse the repository at this point in the history
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [nu.ndw.nls:routing-map-matcher-spring-boot](https://spring.io/projects/spring-boot) ([source](https://github.com/spring-projects/spring-boot)) | compile | patch | `7.7.1` -> `7.7.2` |
| [nu.ndw.nls.springboot:openapi](https://spring.io/projects/spring-boot) ([source](https://github.com/spring-projects/spring-boot)) | build | minor | `3.1.0` -> `3.2.1` |
| [nu.ndw.nls.springboot:oauth2-client-credentials](https://spring.io/projects/spring-boot) ([source](https://github.com/spring-projects/spring-boot)) | compile | minor | `3.1.0` -> `3.2.1` |
| [nu.ndw.nls.springboot:test](https://spring.io/projects/spring-boot) ([source](https://github.com/spring-projects/spring-boot)) | test | minor | `3.1.0` -> `3.2.1` |
| [nu.ndw.nls.springboot:security](https://spring.io/projects/spring-boot) ([source](https://github.com/spring-projects/spring-boot)) | compile | minor | `3.1.0` -> `3.2.1` |
| [nu.ndw.nls.springboot:messaging](https://spring.io/projects/spring-boot) ([source](https://github.com/spring-projects/spring-boot)) | compile | minor | `3.1.0` -> `3.2.1` |
| [nu.ndw.nls.springboot:datadog](https://spring.io/projects/spring-boot) ([source](https://github.com/spring-projects/spring-boot)) | compile | minor | `3.1.0` -> `3.2.1` |
| [nu.ndw:nls-nwb-data-access-jooq](https://spring.io/projects/spring-boot) ([source](https://github.com/spring-projects/spring-boot)) | compile | patch | `4.2.1` -> `4.2.2` |
| nu.ndw:nls-events | compile | patch | `3.3.2` -> `3.3.5` |
| [org.springdoc:springdoc-openapi-starter-webmvc-ui](https://springdoc.org/) ([source](https://github.com/springdoc/springdoc-openapi)) | compile | minor | `2.2.0` -> `2.3.0` |
| [org.codehaus.mojo:exec-maven-plugin](https://www.mojohaus.org/exec-maven-plugin) ([source](https://github.com/mojohaus/exec-maven-plugin)) | build | patch | `3.1.0` -> `3.1.1` |
| [org.springframework.boot:spring-boot-starter-parent](https://spring.io/projects/spring-boot) ([source](https://github.com/spring-projects/spring-boot)) | parent | minor | `3.1.5` -> `3.2.0` |

---

### Release Notes

<details>
<summary>spring-projects/spring-boot (nu.ndw.nls.springboot:openapi)</summary>

### [`v3.2.0`](https://github.com/spring-projects/spring-boot/releases/tag/v3.2.0)

[Compare Source](spring-projects/spring-boot@v3.1.0...v3.2.0)

##### ⭐ New Features

-   Auto-configure observations for RestClients [#&#8203;38500](spring-projects/spring-boot#38500)
-   Add support for Oracle Free, the replacement for Oracle XE, with Testcontainers and Docker Compose [#&#8203;38476](spring-projects/spring-boot#38476)
-   Provide dependency management for org.crac:crac [#&#8203;38378](spring-projects/spring-boot#38378)
-   Add new properties for Liquibase 4.24.0 [#&#8203;38274](spring-projects/spring-boot#38274)
...
  • Loading branch information
ndwlocatieservices committed Dec 12, 2023
2 parents 51006ea + 7420a5b commit 49d1eea
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion docker/nls-accessibility-map-api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ COPY --chown=java:java logback-deploy.xml logback-deploy.xml

USER 1000

ENTRYPOINT java org.springframework.boot.loader.JarLauncher
ENTRYPOINT java org.springframework.boot.loader.launch.JarLauncher
2 changes: 1 addition & 1 deletion docker/nls-accessibility-map-jobs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ COPY --chown=java:java logback-deploy.xml ./
RUN mkdir ./graphhopper && chmod -R 755 ./graphhopper && chown -R java ./graphhopper
USER 1000

ENTRYPOINT java org.springframework.boot.loader.JarLauncher $COMMAND
ENTRYPOINT java org.springframework.boot.loader.launch.JarLauncher $COMMAND
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package nu.ndw.nls.accessibilitymap.jobs.nwb.mappers;

import org.geotools.api.referencing.FactoryException;
import org.geotools.api.referencing.crs.CoordinateReferenceSystem;
import org.geotools.api.referencing.operation.MathTransform;
import org.geotools.api.referencing.operation.TransformException;
import org.geotools.geometry.jts.JTS;
import org.geotools.referencing.CRS;
import org.locationtech.jts.geom.LineString;
import org.opengis.referencing.FactoryException;
import org.opengis.referencing.crs.CoordinateReferenceSystem;
import org.opengis.referencing.operation.MathTransform;
import org.opengis.referencing.operation.TransformException;
import org.springframework.stereotype.Component;

@Component
Expand Down
18 changes: 9 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.5</version>
<version>3.2.0</version>
</parent>

<groupId>nu.ndw.nls.accessibilitymap</groupId>
Expand All @@ -23,26 +23,26 @@

<properties>
<java.version>17</java.version>
<exec-maven-plugin.version>3.1.0</exec-maven-plugin.version>
<exec-maven-plugin.version>3.1.1</exec-maven-plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<jackson-databind-nullable.version>0.2.6</jackson-databind-nullable.version>
<jacoco-maven-plugin.version>0.8.11</jacoco-maven-plugin.version>
<karate.version>1.4.1</karate.version>
<keycloak-authz-client.version>22.0.5</keycloak-authz-client.version>
<keycloak-authz-client.version>23.0.1</keycloak-authz-client.version>
<logstash-encoder.version>7.4</logstash-encoder.version>
<mapstruct.version>1.5.5.Final</mapstruct.version>
<openapi-generator-maven-plugin.version>7.1.0</openapi-generator-maven-plugin.version>
<picocli.version>4.7.5</picocli.version>
<spring-cloud.version>2022.0.4</spring-cloud.version>
<springdoc.version>2.2.0</springdoc.version>
<spring-cloud.version>2023.0.0</spring-cloud.version>
<springdoc.version>2.3.0</springdoc.version>
<stream-utils.version>1.3.1</stream-utils.version>
<swagger-annotations.version>2.2.19</swagger-annotations.version>

<nls-events.version>3.3.2</nls-events.version>
<nls-nwb-data-access.version>4.2.1</nls-nwb-data-access.version>
<nls-springboot.version>3.1.0</nls-springboot.version>
<routing-map-matcher.version>7.7.1</routing-map-matcher.version>
<nls-events.version>3.3.6</nls-events.version>
<nls-nwb-data-access.version>4.2.2</nls-nwb-data-access.version>
<nls-springboot.version>3.2.2</nls-springboot.version>
<routing-map-matcher.version>7.7.2</routing-map-matcher.version>
</properties>

<distributionManagement>
Expand Down

0 comments on commit 49d1eea

Please sign in to comment.