Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
# Change Log
Breaking changes and additions to Onfleet SDK will be documented in this file.

## [0.14.0]

Breaking changes to API

### Added Features

- Driver roles and hub assignments (driver profile now carries its role and hubs)
- On-duty geofence enforcement configuration
- Camera attachment requirement on pick-up / drop-off task failure

### Added

- Role enum added (`Role`: `DRIVER`, `ORGANIZER`, `ALL`)
- Hub model added (`Hub`: id, name, location)
- Driver now exposes `role` (Role) and `hubs` (List<Hub>)
- OnDutyGeofenceConfig model added (`OnDutyGeofenceConfig`: requirementLevel, radiusMeters)
- Organization now exposes `onDutyGeofence` (OnDutyGeofenceConfig) settings
- Organization now exposes `cameraAttachmentOnPickUpFailure` and `cameraAttachmentOnDropOffFailure` (OrganizationRequirement) failure requirements

### Changed

- Driver/Organization public constructor signatures expanded with the fields above (callers passing positional args must update)

## [0.13.0]

Breaking changes to API
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ android {
minSdk = 26
targetSdk = 36
versionCode = 1
versionName = "0.13.0"
versionName = "0.14.0"
}
buildTypes {
release {
Expand All @@ -36,7 +36,7 @@ android {
}

dependencies {
implementation("com.onfleet:driver:0.13.0")
implementation("com.onfleet:driver:0.14.0")
implementation("androidx.appcompat:appcompat:1.7.1")
implementation("org.jetbrains.kotlin:kotlin-stdlib:2.4.0")
implementation("androidx.exifinterface:exifinterface:1.4.2")
Expand Down
Loading