Skip to content

Commit ade75b5

Browse files
authored
Merge pull request #222 from naviqore/release-please--branches--main
chore(main): release 2.1.0
2 parents 4b012c0 + 2d0fe63 commit ade75b5

10 files changed

Lines changed: 43 additions & 27 deletions

File tree

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Changelog
22

3+
## [2.1.0](https://github.com/naviqore/public-transit-service/compare/v2.0.0...v2.1.0) (2025-05-08)
4+
5+
6+
### Features
7+
8+
* add repository to config directly instead of gtfs uri ([8b57cbb](https://github.com/naviqore/public-transit-service/commit/8b57cbbdd39cccb3045a1fa088916e3a22a22881))
9+
* **app:** add support for loading GTFS feed from S3 URI ([284941b](https://github.com/naviqore/public-transit-service/commit/284941b7d26b3d632d6fd2c68bffefba15404139))
10+
* fully automate release pipeline ([4b012c0](https://github.com/naviqore/public-transit-service/commit/4b012c042b84f7255a6db7c2fe61b587fe9f6037))
11+
* introduce a builder pattern for connection query config ([0bf1a1b](https://github.com/naviqore/public-transit-service/commit/0bf1a1b9452a368c2777660575dd1da7a5c8f9e2))
12+
* introduce a builder pattern for service config ([aa1bba5](https://github.com/naviqore/public-transit-service/commit/aa1bba5755994a9a558620b31f980701dd125774))
13+
* move error handling from library to app layer ([a07e9f0](https://github.com/naviqore/public-transit-service/commit/a07e9f0bb3c068085efd0ac6fbb08686751ef843))
14+
15+
16+
### Bug Fixes
17+
18+
* add spring-boot-starter-validation to resolve Bean Validation provider issue ([eb2f930](https://github.com/naviqore/public-transit-service/commit/eb2f930f63000129b498c60a22f70257c1853866))
19+
* correct folder path org.naviqore.app ([207c6f5](https://github.com/naviqore/public-transit-service/commit/207c6f587f474d8f823a2755851d092a53fe9433))
20+
21+
22+
### Documentation
23+
24+
* add a hint to maven central in README ([57a1b54](https://github.com/naviqore/public-transit-service/commit/57a1b543c0cbb9572cf3abb39b38754cb9c95fe4))
25+
* refer to RAPTOR in upper case ([577abff](https://github.com/naviqore/public-transit-service/commit/577abff53bac8e9fa7ba4483177b01f1cc2c2ddf))
26+
* update public transit service example ([8925ddd](https://github.com/naviqore/public-transit-service/commit/8925dddf630f078a777c6787dbd160d16597bdef))
27+
328
## [2.0.0](https://github.com/naviqore/public-transit-service/compare/v1.2.0...v2.0.0) (2025-04-27)
429

530

app/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<parent>
65
<groupId>org.naviqore</groupId>
76
<artifactId>naviqore</artifactId>
8-
<version>2.0.1-SNAPSHOT</version>
7+
<version>2.1.0</version>
98
</parent>
109

1110
<artifactId>naviqore-app</artifactId>

benchmark/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<parent>
65
<groupId>org.naviqore</groupId>
76
<artifactId>naviqore</artifactId>
8-
<version>2.0.1-SNAPSHOT</version>
7+
<version>2.1.0</version>
98
</parent>
109

1110
<artifactId>naviqore-benchmark</artifactId>

libs/gtfs-sample/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<parent>
65
<groupId>org.naviqore</groupId>
76
<artifactId>naviqore-libs</artifactId>
8-
<version>2.0.1-SNAPSHOT</version>
7+
<version>2.1.0</version>
98
<relativePath>../pom.xml</relativePath>
109
</parent>
1110

libs/gtfs/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<parent>
65
<groupId>org.naviqore</groupId>
76
<artifactId>naviqore-libs</artifactId>
8-
<version>2.0.1-SNAPSHOT</version>
7+
<version>2.1.0</version>
98
<relativePath>../pom.xml</relativePath>
109
</parent>
1110

libs/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<parent>
65
<groupId>org.naviqore</groupId>
76
<artifactId>naviqore</artifactId>
8-
<version>2.0.1-SNAPSHOT</version>
7+
<version>2.1.0</version>
98
</parent>
109

1110
<artifactId>naviqore-libs</artifactId>

libs/public-transit-service/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<parent>
65
<groupId>org.naviqore</groupId>
76
<artifactId>naviqore-libs</artifactId>
8-
<version>2.0.1-SNAPSHOT</version>
7+
<version>2.1.0</version>
98
<relativePath>../pom.xml</relativePath>
109
</parent>
1110

libs/raptor/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<parent>
65
<groupId>org.naviqore</groupId>
76
<artifactId>naviqore-libs</artifactId>
8-
<version>2.0.1-SNAPSHOT</version>
7+
<version>2.1.0</version>
98
<relativePath>../pom.xml</relativePath>
109
</parent>
1110

libs/utils/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<parent>
65
<groupId>org.naviqore</groupId>
76
<artifactId>naviqore-libs</artifactId>
8-
<version>2.0.1-SNAPSHOT</version>
7+
<version>2.1.0</version>
98
<relativePath>../pom.xml</relativePath>
109
</parent>
1110

pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54

65
<groupId>org.naviqore</groupId>
76
<artifactId>naviqore</artifactId>
8-
<version>2.0.1-SNAPSHOT</version>
7+
<version>2.1.0</version>
98
<packaging>pom</packaging>
109

1110
<name>Naviqore</name>

0 commit comments

Comments
 (0)