diff --git a/docs/around_me/android/changelogs.md b/docs/around_me/android/changelogs.md
index 872f52afb..bbf17c9a2 100644
--- a/docs/around_me/android/changelogs.md
+++ b/docs/around_me/android/changelogs.md
@@ -4,6 +4,7 @@ title: Around Me Android - Changelogs - Navitia SDK Docs
# Around Me Android Changelogs
+* [v2.13.0](releases/2.13.0/index.md) (_02 Dec 2024_)
* [v2.12.1](releases/2.12.1/index.md) (_19 Nov 2024_)
* [v2.12.0](releases/2.12.0/index.md) (_31 Oct 2024_)
* [v2.11.0](releases/2.11.0/index.md) (_15 Oct 2024_)
diff --git a/docs/around_me/android/index.md b/docs/around_me/android/index.md
index 36ae37183..f7c09f689 100644
--- a/docs/around_me/android/index.md
+++ b/docs/around_me/android/index.md
@@ -10,7 +10,7 @@ Add the following dependencies in the `build.gradle` file of your application:
```kotlin
dependencies {
- implementation("com.kisio.navitia.sdk.ui:aroundme:2.12.1")
+ implementation("com.kisio.navitia.sdk.ui:aroundme:2.13.0")
}
```
diff --git a/docs/around_me/android/releases/2.13.0/index.md b/docs/around_me/android/releases/2.13.0/index.md
new file mode 100644
index 000000000..83cf2ec2e
--- /dev/null
+++ b/docs/around_me/android/releases/2.13.0/index.md
@@ -0,0 +1,26 @@
+---
+title: AroundMe Android 2.13.0 - Changelog - Navitia SDK Docs
+---
+
+# Around Me Android 2.13.0 Changelog
+
+
🗓 02 Dec 2024
+
+#### Features
+- Add `stations` for `bookmark_mode.display` in the configuration
+
+#### Tasks
+- Use a new icon for parking and BSS parking places
+
+#### Dependencies
+- `kotlin` > `1.9.25`
+- `com.android.tools.build:gradle` > `8.7.2`
+- `compileSdk` > `35`
+- `androidx.constraintlayout:constraintlayout` > `2.2.0`
+- `androidx.core:core-ktx` > `1.15.0`
+- `androidx.fragment:fragment-ktx` > `1.8.5`
+- `androidx.lifecycle:lifecycle-viewmodel-ktx` > `2.8.7`
+- `com.kisio.navitia.sdk.data:expert` > `3.5.2`
+- `com.kisio.navitia.sdk.engine:design` > `2.19.0`
+- `com.kisio.navitia.sdk.engine:router` > `2.6.2`
+- `com.kisio.navitia.sdk.engine:toolbox` > `1.19.0`
diff --git a/docs/around_me/ios/changelogs.md b/docs/around_me/ios/changelogs.md
index fb801b476..f0ecbdb25 100644
--- a/docs/around_me/ios/changelogs.md
+++ b/docs/around_me/ios/changelogs.md
@@ -4,6 +4,7 @@ title: Around Me iOS - Changelogs - Navitia SDK Docs
# Around Me iOS Changelogs
+* [v3.10.0](releases/3.10.0/index.md) (_02 Dec 2024_)
* [v3.9.2](releases/3.9.2/index.md) (_19 Nov 2024_)
* [v3.9.1](releases/3.9.1/index.md) (_07 Nov 2024_)
* [v3.9.0](releases/3.9.0/index.md) (_30 Oct 2024_)
diff --git a/docs/around_me/ios/index.md b/docs/around_me/ios/index.md
index 3a60dd02b..d1410d513 100644
--- a/docs/around_me/ios/index.md
+++ b/docs/around_me/ios/index.md
@@ -13,7 +13,7 @@ source 'https://github.com/CocoaPods/Specs.git' # Default Cocoapods URL
source 'https://github.com/hove-io/Podspecs.git' # Around Me podspec URL
target 'YOUR_PROJECT_SCHEME' do
- pod 'AroundMeSDK', '3.9.2' # Around Me Pod definition
+ pod 'AroundMeSDK', '3.10.0' # Around Me Pod definition
end
# Required for XCFramework
diff --git a/docs/around_me/ios/releases/3.10.0/index.md b/docs/around_me/ios/releases/3.10.0/index.md
new file mode 100644
index 000000000..e1c012dcd
--- /dev/null
+++ b/docs/around_me/ios/releases/3.10.0/index.md
@@ -0,0 +1,22 @@
+---
+title: AroundMe iOS 3.10.0 - Changelog - Navitia SDK Docs
+---
+
+# AroundMe iOS 3.10.0 Changelog
+
+🗓 02 Dec 2024
+
+#### Features
+- Add `stations` for `bookmark_mode.display` in the configuration
+
+#### Fix
+- Fix map annotation filtering
+- Fix station details list constraints
+
+#### Tasks
+- Use a new icon for parking and BSS parking places
+- Use single color background for bottomsheet
+
+#### Dependencies
+- `DesignEngine` -> `2.18.0`
+- `RouterEngine` -> `1.5.3`
\ No newline at end of file
diff --git a/docs/assets/file/config.json b/docs/assets/file/config.json
index 33ac28604..19185570b 100644
--- a/docs/assets/file/config.json
+++ b/docs/assets/file/config.json
@@ -589,7 +589,8 @@
{
"type_id": "",
"provider_id": "",
- "icon_res": ""
+ "icon_res": "",
+ "name_res": ""
}
],
"networks_resources": [
@@ -625,9 +626,10 @@
"booking": true,
"bookmark_mode": {
"enabled": true,
- "display" : {
- "bss": true,
- "journeys" : true
+ "display": {
+ "bss": true,
+ "journeys": true,
+ "stations": true
}
},
"default_location": {
@@ -658,7 +660,7 @@
"park_availability": {
"frequency": 30
},
- "see_all_schedules": true,
+ "schedule_mode": true,
"tabs": {
"transports": true,
"journeys": true,
diff --git a/docs/bookmark/android/changelogs.md b/docs/bookmark/android/changelogs.md
index a8c4131c8..976ca9ebf 100644
--- a/docs/bookmark/android/changelogs.md
+++ b/docs/bookmark/android/changelogs.md
@@ -4,6 +4,7 @@ title: Bookmark Android - Changelogs - Navitia SDK Docs
# Bookmark Android Changelogs
+* [v1.9.1](releases/1.9.1/index.md) (_02 Dec 2024_)
* [v1.9.0](releases/1.9.0/index.md) (_31 Oct 2024_)
* [v1.8.0](releases/1.8.0/index.md) (_15 Oct 2024_)
* [v1.7.0](releases/1.7.0/index.md) (_09 Sep 2024_)
diff --git a/docs/bookmark/android/index.md b/docs/bookmark/android/index.md
index ddd2aa659..aa7251088 100644
--- a/docs/bookmark/android/index.md
+++ b/docs/bookmark/android/index.md
@@ -10,7 +10,7 @@ Add the following dependencies in the `build.gradle` file of your application:
```kotlin
dependencies {
- implementation("com.kisio.navitia.sdk.ui:bookmark:1.8.0")
+ implementation("com.kisio.navitia.sdk.ui:bookmark:1.9.1")
}
```
diff --git a/docs/bookmark/android/releases/1.9.1/index.md b/docs/bookmark/android/releases/1.9.1/index.md
new file mode 100644
index 000000000..71da9a329
--- /dev/null
+++ b/docs/bookmark/android/releases/1.9.1/index.md
@@ -0,0 +1,23 @@
+---
+title: Bookmark Android 1.9.1 - Changelog - Navitia SDK Docs
+---
+
+# Bookmark Android 1.9.1 Changelog
+
+🗓 02 Dec 2024
+
+#### Tasks
+- Rename `see_all_schedules` to `schedule_mode` in configuration
+- Use a new icon for parking and BSS parking places
+
+#### Dependencies
+- `kotlin` > `1.9.25`
+- `com.android.tools.build:gradle` > `8.7.2`
+- `compileSdk` > `35`
+- `androidx.constraintlayout:constraintlayout` > `2.2.0`
+- `androidx.core:core-ktx` > `1.15.0`
+- `androidx.fragment:fragment-ktx` > `1.8.5`
+- `com.kisio.navitia.sdk.data:expert` > `3.5.2`
+- `com.kisio.navitia.sdk.engine:design` > `2.19.0`
+- `com.kisio.navitia.sdk.engine:router` > `2.6.2`
+- `com.kisio.navitia.sdk.engine:toolbox` > `1.19.0`
diff --git a/docs/bookmark/ios/changelogs.md b/docs/bookmark/ios/changelogs.md
index 5ef9d32e2..5e2c47303 100644
--- a/docs/bookmark/ios/changelogs.md
+++ b/docs/bookmark/ios/changelogs.md
@@ -4,6 +4,7 @@ title: Bookmark iOS - Changelogs - Navitia SDK Docs
# Bookmark iOS Changelogs
+* [v1.9.0](releases/1.9.0/index.md) (_02 Dec 2024_)
* [v1.8.0](releases/1.8.0/index.md) (_30 Oct 2024_)
* [v1.7.0](releases/1.7.0/index.md) (_24 Sep 2024_)
* [v1.6.0](releases/1.6.0/index.md) (_24 Jul 2024_)
diff --git a/docs/bookmark/ios/index.md b/docs/bookmark/ios/index.md
index dfa7cc4d7..a7f78e32f 100644
--- a/docs/bookmark/ios/index.md
+++ b/docs/bookmark/ios/index.md
@@ -13,7 +13,7 @@ source 'https://github.com/CocoaPods/Specs.git' # Default Cocoapods URL
source 'https://github.com/hove-io/Podspecs.git' # Bookmark podspec URL
target 'YOUR_PROJECT_SCHEME' do
- pod 'BookmarkSDK', '1.7.0' # Bookmark Pod definition
+ pod 'BookmarkSDK', '1.9.0' # Bookmark Pod definition
end
# Required for XCFramework
diff --git a/docs/bookmark/ios/releases/1.9.0/index.md b/docs/bookmark/ios/releases/1.9.0/index.md
new file mode 100644
index 000000000..5769a594e
--- /dev/null
+++ b/docs/bookmark/ios/releases/1.9.0/index.md
@@ -0,0 +1,14 @@
+---
+title: Bookmark iOS 1.9.0 - Changelog - Navitia SDK Docs
+---
+
+# Bookmark iOS 1.9.0 Changelog
+
+🗓 02 Dec 2024
+
+#### Tasks
+- Use a new icon for parking and BSS parking places
+
+#### Dependencies
+- `DesignEngine` -> `2.18.0`
+- `RouterEngine` -> `1.5.3`
\ No newline at end of file
diff --git a/docs/expert/android/changelogs.md b/docs/expert/android/changelogs.md
index 2d8197f21..1616c7356 100644
--- a/docs/expert/android/changelogs.md
+++ b/docs/expert/android/changelogs.md
@@ -4,6 +4,7 @@ title: Expert Android - Changelogs - Navitia SDK Docs
# Expert Android Changelogs
+* [v3.5.2](releases/3.5.2/index.md) (_02 Dec 2024_)
* [v3.5.1](releases/3.5.1/index.md) (_24 Jun 2024_)
* [v3.5.0](releases/3.5.0/index.md) (_30 Jan 2024_)
* [v3.4.1](releases/3.4.1/index.md) (_11 Jan 2024_)
diff --git a/docs/expert/android/index.md b/docs/expert/android/index.md
index b3fa27aa6..8df7c86bd 100644
--- a/docs/expert/android/index.md
+++ b/docs/expert/android/index.md
@@ -10,7 +10,7 @@ Add the following dependency in the `build.gradle` file of your application:
```kotlin
dependencies {
- implementation("com.kisio.navitia.sdk.data:expert:3.5.1")
+ implementation("com.kisio.navitia.sdk.data:expert:3.5.2")
}
```
diff --git a/docs/expert/android/releases/3.5.2/index.md b/docs/expert/android/releases/3.5.2/index.md
new file mode 100644
index 000000000..7edc46ac5
--- /dev/null
+++ b/docs/expert/android/releases/3.5.2/index.md
@@ -0,0 +1,14 @@
+---
+title: Expert Android 3.5.2 - Changelog - Navitia SDK Docs
+---
+
+# Expert Android 3.5.2 Changelog
+
+🗓 02 Dec 2024
+
+#### Dependencies
+- `kotlin` > `1.9.25`
+- `com.android.tools.build:gradle` > `8.7.2`
+- `compileSdk` > `35`
+- `org.jetbrains.kotlinx:kotlinx-coroutines-android` > `1.7.3`
+- `org.jetbrains.kotlinx:kotlinx-coroutines-core` > `1.7.3`
diff --git a/docs/getting_started.md b/docs/getting_started.md
index 81cec839c..d9b481d25 100644
--- a/docs/getting_started.md
+++ b/docs/getting_started.md
@@ -355,8 +355,9 @@ The following are the possible configuration parameters:
| Name | Required | Description | Type | Example |
| --- |:---:| --- | :---: | :---: |
-| `bss` | :material-close: | Display/hide favorite bss on bottomSheet tabs | `Boolean` | `true` |
-| `journeys` | :material-close: | Display/hide favorite journeys on BottomSheet tabs | `Boolean` | `true` |
+| `bss` | :material-close: | Display/hide favorite bss tab | `Boolean` | `true` |
+| `journeys` | :material-close: | Display/hide favorite journeys tab | `Boolean` | `true` |
+| `stations` | :material-close: | Display/hide favorite stations tab | `Boolean` | `true` |
##### Default location
@@ -372,7 +373,7 @@ The following are the possible configuration parameters:
| `go_from_go_to` | :material-close: | Show/hide the go from/go to buttons | `Boolean` | `true` |
| `next_departures` | :material-close: | Show/hide the next departures | [`Next departures`](#next-departures) | - |
| `park_availability`| :material-close: | Show/hide the bss and car parking availability | [`Park Availability`](#park-availability) |
-| `see_all_schedules` | :material-close: | Show/hide the "See all schedules" | `Boolean` | `true` |
+| `schedule_mode` | :material-close: | Show/hide the "See all schedules" button | `Boolean` | `true` |
| `tabs` | :material-close: | Enable/disable tabs | [`Bookmark tabs`](#bookmark-tabs) | - |
##### Bookmark tabs
@@ -560,9 +561,10 @@ The following are the possible configuration parameters:
| Name | Required | Description | Type | Example |
| --- |:---:| --- | :---: | :---: |
-| `type_id` | :material-check: | Navitia provider type id | `String` | `SCOOTER` |
+| `type_id` | :material-check: | Navitia provider type id | `String` | `provider:ridesharing:lime` |
| `provider_id` | :material-check: | Navitia provider id | `String` | `ridesharing_provider` |
| `icon_res` | :material-check: | Provider icon resource id | `String` | `ic_lime` |
+| `name_res` | :material-check: | Localized network name resource id | `String` | `lime` |
### Network resource
diff --git a/docs/journey/android/changelogs.md b/docs/journey/android/changelogs.md
index 3012d25f0..720668927 100644
--- a/docs/journey/android/changelogs.md
+++ b/docs/journey/android/changelogs.md
@@ -4,6 +4,7 @@ title: Journey Android - Changelogs - Navitia SDK Docs
# Journey Android Changelogs
+* [v5.17.0](releases/5.17.0/index.md) (_02 Dec 2024_)
* [v5.16.1](releases/5.16.1/index.md) (_19 Nov 2024_)
* [v5.16.0](releases/5.16.0/index.md) (_31 Oct 2024_)
* [v5.15.1](releases/5.15.1/index.md) (_11 Oct 2024_)
diff --git a/docs/journey/android/index.md b/docs/journey/android/index.md
index 626230ce3..50c98a52a 100644
--- a/docs/journey/android/index.md
+++ b/docs/journey/android/index.md
@@ -10,7 +10,7 @@ Add the following dependencies in the `build.gradle` file of your application:
```kotlin
dependencies {
- implementation("com.kisio.navitia.sdk.ui:journey:5.16.1")
+ implementation("com.kisio.navitia.sdk.ui:journey:5.17.0")
}
```
diff --git a/docs/journey/android/releases/5.17.0/index.md b/docs/journey/android/releases/5.17.0/index.md
new file mode 100644
index 000000000..f1ef4e6f1
--- /dev/null
+++ b/docs/journey/android/releases/5.17.0/index.md
@@ -0,0 +1,33 @@
+---
+title: Journey Android 5.17.0 - Changelog - Navitia SDK Docs
+---
+
+# Journey Android 5.17.0 Changelog
+
+🗓 02 Dec 2024
+
+#### Features
+- New ridesharing offer UI in the list of offers and in the roadmap
+- Enhance disruption UI in the roadmap and handle html titles
+- Upcoming departures on the roadmap screen align with the route search date and time
+
+#### Tasks
+- Elevation graph for a bike section in the roadmap is collapsible
+- Add `application_periods` in the configuration for toggling the display of disruptions
+- Empty state is displayed when there is no history or favorite journeys on the home screen
+
+#### Fixes
+- Fix the journey request using `car_no_park`
+
+#### Dependencies
+- `kotlin` > `1.9.25`
+- `com.android.tools.build:gradle` > `8.7.2`
+- `compileSdk` > `35`
+- `androidx.constraintlayout:constraintlayout` > `2.2.0`
+- `androidx.core:core-ktx` > `1.15.0`
+- `androidx.fragment:fragment-ktx` > `1.8.5`
+- `androidx.lifecycle:lifecycle-viewmodel-ktx` > `2.8.7`
+- `com.kisio.navitia.sdk.data:expert` > `3.5.2`
+- `com.kisio.navitia.sdk.engine:design` > `2.19.0`
+- `com.kisio.navitia.sdk.engine:router` > `2.6.2`
+- `com.kisio.navitia.sdk.engine:toolbox` > `1.19.0`
diff --git a/docs/journey/ios/changelogs.md b/docs/journey/ios/changelogs.md
index 60f67a172..51c320bf6 100644
--- a/docs/journey/ios/changelogs.md
+++ b/docs/journey/ios/changelogs.md
@@ -4,6 +4,7 @@ title: Journey iOS - Changelogs - Navitia SDK Docs
# Journey iOS Changelogs
+* [v5.17.0](releases/5.17.0/index.md) (_02 Dec 2024_)
* [v5.16.2](releases/5.16.2/index.md) (_19 Nov 2024_)
* [v5.16.1](releases/5.16.1/index.md) (_07 Nov 2024_)
* [v5.16.0](releases/5.16.0/index.md) (_30 Oct 2024_)
diff --git a/docs/journey/ios/index.md b/docs/journey/ios/index.md
index fbb32e3fb..615e78bca 100644
--- a/docs/journey/ios/index.md
+++ b/docs/journey/ios/index.md
@@ -13,7 +13,7 @@ source 'https://github.com/CocoaPods/Specs.git' # Default Cocoapods URL
source 'https://github.com/hove-io/Podspecs.git' # Journey podspec URL
target 'YOUR_PROJECT_SCHEME' do
- pod 'JourneySDK', '5.16.2' # Journey Pod definition
+ pod 'JourneySDK', '5.17.0' # Journey Pod definition
end
# Required for XCFramework
diff --git a/docs/journey/ios/releases/5.17.0/index.md b/docs/journey/ios/releases/5.17.0/index.md
new file mode 100644
index 000000000..1bf9cc5cc
--- /dev/null
+++ b/docs/journey/ios/releases/5.17.0/index.md
@@ -0,0 +1,26 @@
+---
+title: Journey iOS 5.17.0 - Changelog - Navitia SDK Docs
+---
+
+# Journey iOS 5.17.0 Changelog
+
+🗓 02 Dec 2024
+
+#### Features
+- New ridesharing offer UI in the list of offers and in the roadmap
+- Upcoming departures on the roadmap screen align with the route search date and time
+
+#### Tasks
+- Show placeholder when favorites journeys or history are empty
+- Make the elevation chart in bike roadmap foldable
+
+#### Fix
+- Fix car sections not showing in roadmap
+- Fix configurable number of favorite elements in autocomplete
+- Fix bottom sheet behavior in roadmap
+- Fix margins, fonts and icons
+
+#### Dependencies
+- `DesignEngine` -> `v2.18.0`
+- `RouterEngine` -> `v1.5.3`
+- `GraphEngine` -> `v1.0.8`
diff --git a/docs/schedule/android/changelogs.md b/docs/schedule/android/changelogs.md
index 7893c00c5..64afc93cc 100644
--- a/docs/schedule/android/changelogs.md
+++ b/docs/schedule/android/changelogs.md
@@ -4,6 +4,7 @@ title: Schedule Android - Changelogs - Navitia SDK Docs
# Schedule Android Changelogs
+* [v2.9.1](releases/2.9.1/index.md) (_02 Dec 2024_)
* [v2.9.0](releases/2.9.0/index.md) (_31 Oct 2024_)
* [v2.8.1](releases/2.8.1/index.md) (_24 Sept 2024_)
* [v2.8.0](releases/2.8.0/index.md) (_09 Sept 2024_)
diff --git a/docs/schedule/android/index.md b/docs/schedule/android/index.md
index 1cd09105b..2a5fce067 100644
--- a/docs/schedule/android/index.md
+++ b/docs/schedule/android/index.md
@@ -10,7 +10,7 @@ Add the following dependencies in the `build.gradle` file of your application:
```kotlin
dependencies {
- implementation("com.kisio.navitia.sdk.ui:schedule:2.8.1")
+ implementation("com.kisio.navitia.sdk.ui:schedule:2.9.1")
}
```
diff --git a/docs/schedule/android/releases/2.9.1/index.md b/docs/schedule/android/releases/2.9.1/index.md
new file mode 100644
index 000000000..8b128f0f2
--- /dev/null
+++ b/docs/schedule/android/releases/2.9.1/index.md
@@ -0,0 +1,20 @@
+---
+title: Schedule Android 2.9.1 - Changelog - Navitia SDK Docs
+---
+
+# Schedule Android 2.9.1 Changelog
+
+🗓 02 Dec 2024
+
+#### Dependencies
+- `kotlin` > `1.9.25`
+- `com.android.tools.build:gradle` > `8.7.2`
+- `compileSdk` > `35`
+- `androidx.constraintlayout:constraintlayout` > `2.2.0`
+- `androidx.core:core-ktx` > `1.15.0`
+- `androidx.fragment:fragment-ktx` > `1.8.5`
+- `androidx.lifecycle:lifecycle-viewmodel-ktx` > `2.8.7`
+- `com.kisio.navitia.sdk.data:expert` > `3.5.2`
+- `com.kisio.navitia.sdk.engine:design` > `2.19.0`
+- `com.kisio.navitia.sdk.engine:router` > `2.6.2`
+- `com.kisio.navitia.sdk.engine:toolbox` > `1.19.0`
diff --git a/docs/schedule/ios/changelogs.md b/docs/schedule/ios/changelogs.md
index 1949c6fdb..f42c7f43e 100644
--- a/docs/schedule/ios/changelogs.md
+++ b/docs/schedule/ios/changelogs.md
@@ -4,6 +4,7 @@ title: Schedule iOS - Changelogs - Navitia SDK Docs
# Schedule iOS Changelogs
+* [v3.10.0](releases/3.10.0/index.md) (_02 Dec 2024_)
* [v3.9.1](releases/3.9.1/index.md) (_07 Nov 2024_)
* [v3.9.0](releases/3.9.0/index.md) (_30 Oct 2024_)
* [v3.8.0](releases/3.8.0/index.md) (_24 Sep 2024_)
diff --git a/docs/schedule/ios/index.md b/docs/schedule/ios/index.md
index 905c8afed..c96edd052 100644
--- a/docs/schedule/ios/index.md
+++ b/docs/schedule/ios/index.md
@@ -13,7 +13,7 @@ source 'https://github.com/CocoaPods/Specs.git' # Default Cocoapods URL
source 'https://github.com/hove-io/Podspecs.git' # Schedule podspec URL
target 'YOUR_PROJECT_SCHEME' do
- pod 'ScheduleSDK', '3.7.0' # Schedule Pod definition
+ pod 'ScheduleSDK', '3.10.0' # Schedule Pod definition
end
# Required for XCFramework
diff --git a/docs/schedule/ios/releases/3.10.0/index.md b/docs/schedule/ios/releases/3.10.0/index.md
new file mode 100644
index 000000000..bebc62f6f
--- /dev/null
+++ b/docs/schedule/ios/releases/3.10.0/index.md
@@ -0,0 +1,14 @@
+---
+title: Schedule iOS 3.10.0 - Changelog - Navitia SDK Docs
+---
+
+# Schedule iOS 3.10.0 Changelog
+
+🗓 02 Dec 2024
+
+#### Tasks
+- Show/hide options in popup based on configuration
+
+#### Dependencies
+- `DesignEngine` -> `v2.18.0`
+- `RouterEngine` -> `v1.5.3`
\ No newline at end of file
diff --git a/docs/traffic/android/changelogs.md b/docs/traffic/android/changelogs.md
index 24528dde0..4f3b2aa14 100644
--- a/docs/traffic/android/changelogs.md
+++ b/docs/traffic/android/changelogs.md
@@ -4,6 +4,7 @@ title: Traffic Android - Changelogs - Navitia SDK Docs
# Traffic Android Changelogs
+* [v2.7.0](releases/2.7.0/index.md) (_02 Dec 2024_)
* [v2.6.1](releases/2.6.1/index.md) (_31 Oct 2024_)
* [v2.6.0](releases/2.6.0/index.md) (_15 Oct 2024_)
* [v2.5.6](releases/2.5.6/index.md) (_09 Sep 2024_)
diff --git a/docs/traffic/android/index.md b/docs/traffic/android/index.md
index 6bad3cf02..02e829f71 100644
--- a/docs/traffic/android/index.md
+++ b/docs/traffic/android/index.md
@@ -10,7 +10,7 @@ Add the following dependencies in the `build.gradle` file of your application:
```kotlin
dependencies {
- implementation("com.kisio.navitia.sdk.ui:traffic:2.6.0")
+ implementation("com.kisio.navitia.sdk.ui:traffic:2.7.0")
}
```
diff --git a/docs/traffic/android/releases/2.7.0/index.md b/docs/traffic/android/releases/2.7.0/index.md
new file mode 100644
index 000000000..69df8e250
--- /dev/null
+++ b/docs/traffic/android/releases/2.7.0/index.md
@@ -0,0 +1,27 @@
+---
+title: Traffic Android 2.7.0 - Changelog - Navitia SDK Docs
+---
+
+# Traffic Android 2.7.0 Changelog
+
+🗓 02 Dec 2024
+
+#### Features
+- Handle html titles for disruptions
+
+#### Fixes
+- Remove the display of disruptions not related to a line
+- Fix the display of a long network disruption
+
+#### Dependencies
+- `kotlin` > `1.9.25`
+- `com.android.tools.build:gradle` > `8.7.2`
+- `compileSdk` > `35`
+- `androidx.constraintlayout:constraintlayout` > `2.2.0`
+- `androidx.core:core-ktx` > `1.15.0`
+- `androidx.fragment:fragment-ktx` > `1.8.5`
+- `androidx.lifecycle:lifecycle-viewmodel-ktx` > `2.8.7`
+- `com.kisio.navitia.sdk.data:expert` > `3.5.2`
+- `com.kisio.navitia.sdk.engine:design` > `2.19.0`
+- `com.kisio.navitia.sdk.engine:router` > `2.6.2`
+- `com.kisio.navitia.sdk.engine:toolbox` > `1.19.0`
diff --git a/docs/traffic/ios/changelogs.md b/docs/traffic/ios/changelogs.md
index 0199d2793..2d5487b20 100644
--- a/docs/traffic/ios/changelogs.md
+++ b/docs/traffic/ios/changelogs.md
@@ -4,6 +4,7 @@ title: Traffic iOS - Changelogs - Navitia SDK Docs
# Traffic iOS Changelogs
+* [v3.7.0](releases/3.7.0/index.md) (_02 Dec 2024_)
* [v3.6.1](releases/3.6.1/index.md) (_30 Oct 2024_)
* [v3.6.0](releases/3.6.0/index.md) (_17 Oct 2024_)
* [v3.5.6](releases/3.5.6/index.md) (_24 Sep 2024_)
diff --git a/docs/traffic/ios/index.md b/docs/traffic/ios/index.md
index 1843132e8..67c8cae50 100644
--- a/docs/traffic/ios/index.md
+++ b/docs/traffic/ios/index.md
@@ -13,7 +13,7 @@ source 'https://github.com/CocoaPods/Specs.git' # Default Cocoapods URL
source 'https://github.com/hove-io/Podspecs.git' # Traffic podspec URL
target 'YOUR_PROJECT_SCHEME' do
- pod 'TrafficSDK', '3.5.6' # Traffic Pod definition
+ pod 'TrafficSDK', '3.7.0' # Traffic Pod definition
end
# Required for XCFramework
diff --git a/docs/traffic/ios/releases/3.7.0/index.md b/docs/traffic/ios/releases/3.7.0/index.md
new file mode 100644
index 000000000..9394a3f7a
--- /dev/null
+++ b/docs/traffic/ios/releases/3.7.0/index.md
@@ -0,0 +1,14 @@
+---
+title: Traffic iOS 3.7.0 - Changelog - Navitia SDK Docs
+---
+
+# Traffic iOS 3.7.0 Changelog
+
+🗓 02 Dec 2024
+
+#### Features
+- Handle html titles for disruptions
+
+#### Dependencies
+- `DesignEngine` -> `v2.18.0`
+- `RouterEngine` -> `v1.5.3`
\ No newline at end of file