Skip to content

Commit c671631

Browse files
authored
Merge pull request #214 from hove-io/release/07-05-2025
release/07 05 2025
2 parents 9426b62 + eaf385c commit c671631

File tree

34 files changed

+231
-11
lines changed

34 files changed

+231
-11
lines changed

docs/around_me/android/changelogs.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ title: Around Me Android - Changelogs - Navitia SDK Docs
44

55
# Around Me Android Changelogs
66

7+
* [v2.16.0](releases/2.16.0/index.md) (_23 Apr 2025_)
78
* [v2.15.0](releases/2.15.0/index.md) (_24 Mar 2025_)
89
* [v2.14.0](releases/2.14.0/index.md) (_25 Feb 2025_)
910
* [v2.13.4](releases/2.13.4/index.md) (_03 Feb 2025_)

docs/around_me/android/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Add the following dependencies in the `build.gradle` file of your application:
1010

1111
```kotlin
1212
dependencies {
13-
implementation("com.kisio.navitia.sdk.ui:aroundme:2.15.0")
13+
implementation("com.kisio.navitia.sdk.ui:aroundme:2.16.0")
1414
}
1515
```
1616

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
title: AroundMe Android 2.16.0 - Changelog - Navitia SDK Docs
3+
---
4+
5+
# Around Me Android 2.16.0 Changelog
6+
7+
<h2>🗓 23 Apr 2025</h2>
8+
9+
#### Features
10+
- Added an alert on the map when an item selected in autocompletion is not included in the filters.
11+
12+
#### Tasks
13+
- Optimized Map and BottomSheet behavior
14+
15+
#### Dependencies
16+
- `gradle` > `8.11.1`
17+
- `com.android.tools.build:gradle` > `8.9.1`
18+
- `com.kisio.navitia.sdk.data:expert` > `3.7.1`
19+
- `com.kisio.navitia.sdk.engine:design` > `2.22.0`
20+
- `com.kisio.navitia.sdk.engine:router` > `2.6.5`
21+
- `com.kisio.navitia.sdk.engine:toolbox` > `1.21.0`
22+
- `androidx.room:room-compiler` > `2.7.0`
23+
- `androidx.room:room-ktx` > `2.7.0`
24+
- `androidx.room:room-runtime` > `2.7.0`
25+
- `androidx.core:core-ktx`> `1.16.0`

docs/around_me/ios/changelogs.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ title: Around Me iOS - Changelogs - Navitia SDK Docs
44

55
# Around Me iOS Changelogs
66

7+
* [v4.2.0](releases/4.2.0/index.md) (_22 Apr 2025_)
78
* [v4.1.0](releases/4.1.0/index.md) (_24 Mar 2025_)
89
* [v4.0.0](releases/4.0.0/index.md) (_24 Feb 2025_)
910
* [v3.10.2](releases/3.10.2/index.md) (_12 Feb 2025_)

docs/around_me/ios/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ source 'https://github.com/CocoaPods/Specs.git' # Default Cocoapods URL
1313
source 'https://github.com/hove-io/Podspecs.git' # Around Me podspec URL
1414

1515
target 'YOUR_PROJECT_SCHEME' do
16-
pod 'AroundMeSDK', '4.1.0' # Around Me Pod definition
16+
pod 'AroundMeSDK', '4.2.0' # Around Me Pod definition
1717
end
1818

1919
# Required for XCFramework
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
title: AroundMe iOS 4.2.0 - Changelog - Navitia SDK Docs
3+
---
4+
5+
# AroundMe iOS 4.2.0 Changelog
6+
7+
<h2>🗓 22 Apr 2025</h2>
8+
9+
#### Features
10+
- Added an alert on the map when an item selected in autocompletion is not included in the filters.
11+
12+
#### Tasks
13+
- Improved transitions between different states of the map and the bottom sheet.
14+
- Added `WrappedContentTableView` view to UIKit for improved dynamic content handling
15+
16+
#### Fixes
17+
- Fix address marker not showing everytime.
18+
19+
#### Dependencies
20+
- `DesignEngine` -> `3.2.0`

docs/bookmark/android/changelogs.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ title: Bookmark Android - Changelogs - Navitia SDK Docs
44

55
# Bookmark Android Changelogs
66

7+
* [v1.11.1](releases/1.11.1/index.md) (_23 Apr 2025_)
78
* [v1.11.0](releases/1.11.0/index.md) (_24 Mar 2025_)
89
* [v1.10.0](releases/1.10.0/index.md) (_13 Feb 2025_)
910
* [v1.9.4](releases/1.9.4/index.md) (_03 Feb 2025_)

docs/bookmark/android/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Add the following dependencies in the `build.gradle` file of your application:
1010

1111
```kotlin
1212
dependencies {
13-
implementation("com.kisio.navitia.sdk.ui:bookmark:1.11.0")
13+
implementation("com.kisio.navitia.sdk.ui:bookmark:1.11.1")
1414
}
1515
```
1616

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: Bookmark Android 1.11.1 - Changelog - Navitia SDK Docs
3+
---
4+
5+
# Bookmark Android 1.11.1 Changelog
6+
7+
<h2>🗓 23 Apr 2025</h2>
8+
9+
#### Dependencies
10+
- `gradle` > `8.11.1`
11+
- `com.android.tools.build:gradle` > `8.9.1`
12+
- `com.kisio.navitia.sdk.data:expert` > `3.7.1`
13+
- `com.kisio.navitia.sdk.engine:design` > `2.22.0`
14+
- `com.kisio.navitia.sdk.engine:router` > `2.6.5`
15+
- `com.kisio.navitia.sdk.engine:toolbox` > `1.21.0`
16+
- `androidx.room:room-compiler` > `2.7.0`
17+
- `androidx.room:room-ktx` > `2.7.0`
18+
- `androidx.room:room-runtime` > `2.7.0`
19+
- `androidx.core:core-ktx`> `1.16.0`

docs/bookmark/ios/changelogs.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ title: Bookmark iOS - Changelogs - Navitia SDK Docs
44

55
# Bookmark iOS Changelogs
66

7+
* [v4.2.0](releases/2.2.0/index.md) (_22 Apr 2025_)
78
* [v2.1.0](releases/2.1.0/index.md) (_24 Mar 2025_)
89
* [v2.0.0](releases/2.0.0/index.md) (_24 Feb 2025_)
910
* [v1.9.3](releases/1.9.3/index.md) (_12 Feb 2025_)

docs/bookmark/ios/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ source 'https://github.com/CocoaPods/Specs.git' # Default Cocoapods URL
1313
source 'https://github.com/hove-io/Podspecs.git' # Bookmark podspec URL
1414

1515
target 'YOUR_PROJECT_SCHEME' do
16-
pod 'BookmarkSDK', '2.1.0' # Bookmark Pod definition
16+
pod 'BookmarkSDK', '2.2.0' # Bookmark Pod definition
1717
end
1818

1919
# Required for XCFramework
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: Bookmark iOS 2.2.0 - Changelog - Navitia SDK Docs
3+
---
4+
5+
# Bookmark iOS 2.2.0 Changelog
6+
7+
<h2>🗓 22 Apr 2025</h2>
8+
9+
#### Fixes
10+
- Rename configuration param seeAllSchedules to scheduleMode
11+
12+
#### Dependencies
13+
- `DesignEngine` -> `3.2.0`

docs/expert/android/changelogs.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ title: Expert Android - Changelogs - Navitia SDK Docs
44

55
# Expert Android Changelogs
66

7+
* [v3.7.1](releases/3.7.1/index.md) (_23 Apr 2024_)
78
* [v3.7.0](releases/3.7.0/index.md) (_24 Mar 2024_)
89
* [v3.6.0](releases/3.6.0/index.md) (_13 Feb 2024_)
910
* [v3.5.2](releases/3.5.2/index.md) (_02 Dec 2024_)

docs/expert/android/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Add the following dependency in the `build.gradle` file of your application:
1010

1111
```kotlin
1212
dependencies {
13-
implementation("com.kisio.navitia.sdk.data:expert:3.7.0")
13+
implementation("com.kisio.navitia.sdk.data:expert:3.7.1")
1414
}
1515
```
1616

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: Expert Android 3.7.1 - Changelog - Navitia SDK Docs
3+
---
4+
5+
# Expert Android 3.7.1 Changelog
6+
7+
<h2>🗓 23 Apr 2025</h2>
8+
9+
#### Dependencies
10+
- `gradle` > `8.11.1`
11+
- `com.android.tools.build:gradle` > `8.9.1`

docs/journey/android/changelogs.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ title: Journey Android - Changelogs - Navitia SDK Docs
44

55
# Journey Android Changelogs
66

7+
* [v5.20.0](releases/5.20.0/index.md) (_23 Apr 2025_)
8+
* [v5.19.1](releases/5.19.1/index.md) (_07 Apr 2025_)
79
* [v5.19.0](releases/5.19.0/index.md) (_24 Mar 2025_)
810
* [v5.18.1](releases/5.18.1/index.md) (_07 Mar 2025_)
911
* [v5.18.0](releases/5.18.0/index.md) (_25 Feb 2025_)

docs/journey/android/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Add the following dependencies in the `build.gradle` file of your application:
1010

1111
```kotlin
1212
dependencies {
13-
implementation("com.kisio.navitia.sdk.ui:journey:5.19.0")
13+
implementation("com.kisio.navitia.sdk.ui:journey:5.20.0")
1414
}
1515
```
1616

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: Journey Android 5.19.1 - Changelog - Navitia SDK Docs
3+
---
4+
5+
# Journey Android 5.19.1 Changelog
6+
7+
<h2>🗓 7 Apr 2025</h2>
8+
9+
#### Fixes
10+
- Fix the computed percentage of the bike section in a specific bike journey
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
title: Journey Android 5.20.0 - Changelog - Navitia SDK Docs
3+
---
4+
5+
# Journey Android 5.20.0 Changelog
6+
7+
<h2>🗓 23 Apr 2025</h2>
8+
9+
#### Features
10+
- Show notes of public transport sections in roadmap
11+
12+
#### Fixes
13+
- Fixed truncated journey duration
14+
15+
#### Dependencies
16+
- `gradle` > `8.11.1`
17+
- `com.android.tools.build:gradle` > `8.9.1`
18+
- `com.kisio.navitia.sdk.data:expert` > `3.7.1`
19+
- `com.kisio.navitia.sdk.engine:design` > `2.22.0`
20+
- `com.kisio.navitia.sdk.engine:router` > `2.6.5`
21+
- `com.kisio.navitia.sdk.engine:toolbox` > `1.21.0`
22+
- `androidx.room:room-compiler` > `2.7.0`
23+
- `androidx.room:room-testing` > `2.7.0`
24+
- `androidx.room:room-ktx` > `2.7.0`
25+
- `androidx.room:room-runtime` > `2.7.0`
26+
- `androidx.core:core-ktx`> `1.16.0`

docs/journey/ios/changelogs.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ title: Journey iOS - Changelogs - Navitia SDK Docs
44

55
# Journey iOS Changelogs
66

7+
* [v6.2.0](releases/6.2.0/index.md) (_22 Apr 2025_)
78
* [v6.1.0](releases/6.1.0/index.md) (_24 Mar 2025_)
89
* [v6.0.0](releases/6.0.0/index.md) (_24 Feb 2025_)
910
* [v5.17.4](releases/5.17.4/index.md) (_12 Feb 2025_)

docs/journey/ios/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ source 'https://github.com/CocoaPods/Specs.git' # Default Cocoapods URL
1313
source 'https://github.com/hove-io/Podspecs.git' # Journey podspec URL
1414

1515
target 'YOUR_PROJECT_SCHEME' do
16-
pod 'JourneySDK', '6.1.0' # Journey Pod definition
16+
pod 'JourneySDK', '6.2.0' # Journey Pod definition
1717
end
1818

1919
# Required for XCFramework
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
title: Journey iOS 6.2.0 - Changelog - Navitia SDK Docs
3+
---
4+
5+
# Journey iOS 6.2.0 Changelog
6+
7+
<h2>🗓 22 Apr 2025</h2>
8+
9+
#### Features
10+
- Show notes of public transport sections in roadmap
11+
12+
#### Tasks
13+
- Convert long walking duration in hours on freeze
14+
15+
#### Fixes
16+
- Fix error message on bike journeys when PRM is enabled
17+
- Fix request journeys when departure/arrival field is empty
18+
19+
#### Dependencies
20+
- `DesignEngine` -> `3.2.0`

docs/schedule/android/changelogs.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ title: Schedule Android - Changelogs - Navitia SDK Docs
44

55
# Schedule Android Changelogs
66

7+
* [v2.9.7](releases/2.9.7/index.md) (_23 Apr 2025_)
78
* [v2.9.6](releases/2.9.6/index.md) (_24 Mar 2025_)
89
* [v2.9.5](releases/2.9.5/index.md) (_05 Mar 2025_)
910
* [v2.9.4](releases/2.9.4/index.md) (_25 Feb 2025_)

docs/schedule/android/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Add the following dependencies in the `build.gradle` file of your application:
1010

1111
```kotlin
1212
dependencies {
13-
implementation("com.kisio.navitia.sdk.ui:schedule:2.9.6")
13+
implementation("com.kisio.navitia.sdk.ui:schedule:2.9.7")
1414
}
1515
```
1616

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: Schedule Android 2.9.7 - Changelog - Navitia SDK Docs
3+
---
4+
5+
# Schedule Android 2.9.7 Changelog
6+
7+
<h2>🗓 23 Apr 2025</h2>
8+
9+
#### Dependencies
10+
- `gradle` > `8.11.1`
11+
- `com.android.tools.build:gradle` > `8.9.1`
12+
- `com.kisio.navitia.sdk.data:expert` > `3.7.1`
13+
- `com.kisio.navitia.sdk.engine:design` > `2.22.0`
14+
- `com.kisio.navitia.sdk.engine:router` > `2.6.5`
15+
- `com.kisio.navitia.sdk.engine:toolbox` > `1.21.0`
16+
- `androidx.room:room-compiler` > `2.7.0`
17+
- `androidx.room:room-ktx` > `2.7.0`
18+
- `androidx.room:room-runtime` > `2.7.0`
19+
- `androidx.core:core-ktx`> `1.16.0`

docs/schedule/ios/changelogs.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ title: Schedule iOS - Changelogs - Navitia SDK Docs
44

55
# Schedule iOS Changelogs
66

7+
* [v4.1.1](releases/4.1.1/index.md) (_22 Apr 2025_)
78
* [v4.1.0](releases/4.1.0/index.md) (_24 Mar 2025_)
89
* [v4.0.0](releases/4.0.0/index.md) (_24 Feb 2025_)
910
* [v3.10.2](releases/3.10.2/index.md) (_12 Feb 2025_)

docs/schedule/ios/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ source 'https://github.com/CocoaPods/Specs.git' # Default Cocoapods URL
1313
source 'https://github.com/hove-io/Podspecs.git' # Schedule podspec URL
1414

1515
target 'YOUR_PROJECT_SCHEME' do
16-
pod 'ScheduleSDK', '4.1.0' # Schedule Pod definition
16+
pod 'ScheduleSDK', '4.2.0' # Schedule Pod definition
1717
end
1818

1919
# Required for XCFramework
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: Schedule iOS 4.1.1 - Changelog - Navitia SDK Docs
3+
---
4+
5+
# Schedule iOS 4.1.1 Changelog
6+
7+
<h2>🗓 22 Apr 2025</h2>
8+
9+
#### Dependencies
10+
- `DesignEngine` -> `3.2.0`

docs/traffic/android/changelogs.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ title: Traffic Android - Changelogs - Navitia SDK Docs
44

55
# Traffic Android Changelogs
66

7+
* [v3.1.1](releases/3.1.1/index.md) (_23 Apr 2025_)
78
* [v3.1.0](releases/3.1.0/index.md) (_24 Feb 2025_)
89
* [v3.0.0](releases/3.0.0/index.md) (_25 Feb 2025_)
910
* [v2.7.2](releases/2.7.2/index.md) (_03 Feb 2025_)

docs/traffic/android/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Add the following dependencies in the `build.gradle` file of your application:
1010

1111
```kotlin
1212
dependencies {
13-
implementation("com.kisio.navitia.sdk.ui:traffic:3.1.0")
13+
implementation("com.kisio.navitia.sdk.ui:traffic:3.1.1")
1414
}
1515
```
1616

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: Traffic Android 3.1.1 - Changelog - Navitia SDK Docs
3+
---
4+
5+
# Traffic Android 3.1.1 Changelog
6+
7+
<h2>🗓 23 Apr 2025</h2>
8+
9+
#### Dependencies
10+
- `gradle` > `8.11.1`
11+
- `com.android.tools.build:gradle` > `8.9.1`
12+
- `com.kisio.navitia.sdk.data:expert` > `3.7.1`
13+
- `com.kisio.navitia.sdk.engine:design` > `2.22.0`
14+
- `com.kisio.navitia.sdk.engine:router` > `2.6.5`
15+
- `com.kisio.navitia.sdk.engine:toolbox` > `1.21.0`
16+
- `androidx.room:room-compiler` > `2.7.0`
17+
- `androidx.room:room-ktx` > `2.7.0`
18+
- `androidx.room:room-runtime` > `2.7.0`
19+
- `androidx.core:core-ktx`> `1.16.0`

docs/traffic/ios/changelogs.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ title: Traffic iOS - Changelogs - Navitia SDK Docs
44

55
# Traffic iOS Changelogs
66

7+
* [v4.2.0](releases/4.2.0/index.md) (_22 Apr 2025_)
78
* [v4.1.0](releases/4.1.0/index.md) (_24 Mar 2025_)
89
* [v4.0.0](releases/4.0.0/index.md) (_24 Feb 2025_)
910
* [v3.7.2](releases/3.7.2/index.md) (_12 Feb 2025_)

docs/traffic/ios/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ source 'https://github.com/CocoaPods/Specs.git' # Default Cocoapods URL
1313
source 'https://github.com/hove-io/Podspecs.git' # Traffic podspec URL
1414

1515
target 'YOUR_PROJECT_SCHEME' do
16-
pod 'TrafficSDK', '4.1.0' # Traffic Pod definition
16+
pod 'TrafficSDK', '4.2.0' # Traffic Pod definition
1717
end
1818

1919
# Required for XCFramework

0 commit comments

Comments
 (0)