Skip to content

Commit

Permalink
Merged PR 68632: 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.geometry:nls-geometry](https://spring.io/projects/spring-boot) ([source](https://github.com/spring-projects/spring-boot)) | compile | patch | `3.2.0` -> `3.2.4` |
| [commons-io:commons-io](https://commons.apache.org/proper/commons-io/) ([source](https://gitbox.apache.org/repos/asf?p=commons-io.git)) | compile | minor | `2.17.0` -> `2.18.0` |
| [org.springframework.boot:spring-boot-starter-parent](https://spring.io/projects/spring-boot) ([source](https://github.com/spring-projects/spring-boot)) | parent | minor | `3.3.5` -> `3.4.0` |

---

### Release Notes

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

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

[Compare Source](spring-projects/spring-boot@v3.2.3...v3.2.4)

#### ⭐ New Features

-   Add TWENTY_TWO to JavaVersion enum [#&#8203;39825](spring-projects/spring-boot#39825)

#### 🐞 Bug Fixes

-   Thread name prefix is not always set when using virtual threads [#&#8203;39958](spring-projects/spring-boot#39958)
-   spring-boot-maven-plugin doesn't work with Java 22 [#&#8203;39927](spring-projects/spring-boot#39927)
-   Resolving a BuildpackReference created from a URL-like String can fail on Windows [#&#8203;39793](spring-projects/spring-boot#39793)
-   SpringProfile arbiter fails without a Spring's environment [#&#8203;39786](spring-projects/spring-boot#39786)
-   bootStartScripts tasks should be an instance of org.gradle.api.tasks.application.CreateStartScripts rather than its superclass org.gradle.jvm.application.tasks.CreateStartScripts [#&#8203;39764](spring-projects/spring-boot#39764)
-   When using Logback, log messages appear in a single line when application name contains brackets [#&#8203;39564](spring-projects/spring-boot#39564)

#### 📔 Documentation

-   Document support for Java 22 [#&#8203;40046](spring-projects/spring-boot#40046)
-   Fix web session javadoc typo [#&#8203;39821](spring-projects/spring-boot#39821)
-   Fix typo in Custom HTTP Exchange Recording section [#&#8203;39784](spring-projects/spring-boot#39784)
-   Make description of virtual threads and JVM exit easier to understand by removing "no-non" double-negative [#&#8203;39732](spring-projects/spring-boot#39732)

#### 🔨 Dependency Upgrades

-   Upgrade to Angus Mail 2.0.3 [#&#8203;39973](spring-projects/spring-boot#39973)
-   Upgrade to Glassfish JAXB 4.0.5 [#&#8203;39975](spring-projects/spring-boot#39975)
-   Upgrade to Graph...
  • Loading branch information
ndwlocatieservices committed Nov 28, 2024
2 parents 18704a5 + 1b9a5da commit ad302c7
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 15 deletions.
11 changes: 5 additions & 6 deletions map-matcher-library/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@
<groupId>com.conductor</groupId>
<artifactId>stream-utils</artifactId>
</dependency>

<!-- Graphhopper -->
<dependency>
<groupId>com.graphhopper</groupId>
<artifactId>graphhopper-core</artifactId>
Expand All @@ -39,17 +37,19 @@
<artifactId>routing-map-matcher-geometry</artifactId>
<version>${project.version}</version>
</dependency>
<!-- JTS GEO-->
<dependency>
<groupId>nu.ndw.nls.geometry</groupId>
<artifactId>nls-geometry</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.wololo</groupId>
<artifactId>jts2geojson</artifactId>
</dependency>

<!-- Utilities -->
<dependency>
<groupId>com.esotericsoftware.kryo</groupId>
<artifactId>kryo5</artifactId>
Expand All @@ -62,7 +62,6 @@
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<!-- Logging -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ private Point snapPointToNode(String profile, Point point) {
Snap snap = networkGraphHopper.getLocationIndex().findClosest(point.getY(), point.getX(), finiteWeightFilter);
if (!snap.isValid()) {
throw new RoutingRequestException(
"Invalid routing request: Cannot snap point %f,%f to node".formatted(point.getY(), point.getX())
"Invalid routing request: Cannot snap point %s,%s to node".formatted(point.getY(), point.getX())
);
}
double snappedLat = networkGraphHopper.getBaseGraph().getNodeAccess().getLat(snap.getClosestNode());
Expand Down
18 changes: 10 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.5</version>
<version>3.4.0</version>
<relativePath/>
</parent>

Expand Down Expand Up @@ -36,11 +36,12 @@
<jacoco.version>0.8.12</jacoco.version>
<geotools.version>30.2</geotools.version>
<jts2geojson.version>0.18.1</jts2geojson.version>
<commons-io.version>2.17.0</commons-io.version>
<commons-io.version>2.18.0</commons-io.version>
<sonar-maven-plugin.version>3.9.1.2184</sonar-maven-plugin.version>
<sonar.projectName>nls-routing-map-matcher</sonar.projectName>
<nls-geometry.version>3.2.0</nls-geometry.version>
<nls-geometry.version>3.2.4</nls-geometry.version>
<kryo5.version>5.6.2</kryo5.version>
<lombok.version>1.18.36</lombok.version>
<stream-utils.version>1.3.1</stream-utils.version>
</properties>
<repositories>
Expand All @@ -62,7 +63,6 @@
</repository>
</distributionManagement>
<dependencyManagement>

<dependencies>
<dependency>
<groupId>com.conductor</groupId>
Expand All @@ -79,13 +79,18 @@
<artifactId>kryo5</artifactId>
<version>${kryo5.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.wololo</groupId>
<artifactId>jts2geojson</artifactId>
<version>${jts2geojson.version}</version>
<scope>compile</scope>
</dependency>
<!-- Graphhopper -->
<dependency>
<groupId>com.graphhopper</groupId>
<artifactId>graphhopper-core</artifactId>
Expand All @@ -111,8 +116,6 @@
<artifactId>graphhopper-map-matching</artifactId>
<version>${graphhopper.version}</version>
</dependency>

<!-- Utilities -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
Expand All @@ -131,7 +134,6 @@
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>

</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit ad302c7

Please sign in to comment.