Releases Β· fleetbase/fleetbase
v0.7.31
"The Ledger & The Navigator"
β¨ Highlights
This landmark release introduces two major, transformative features to the Fleetbase ecosystem: the first official version of the Ledger accounting extension and the brand new Smart Navigator header menu. Additionally, this release includes a powerful new Template Builder system and a completely redesigned Installation Wizard.
π° Ledger: Accounting, Invoicing & Payments
After months of development, the Ledger extension (v0.0.1) makes its official debut. This is a full-featured accounting and payments module deeply integrated into Fleetbase, providing a comprehensive suite of tools to manage your organization's finances.
Key features include:
- Invoicing: Create, send, and manage professional invoices with customizable templates.
- Payment Gateways: Seamlessly integrate with Stripe to accept online payments. The system includes robust webhook handling to automatically update invoice statuses.
- Revenue & Expense Tracking: Automatically track revenue from FleetOps orders and Storefront purchases. Manually record expenses to get a complete financial picture.
- Accounts Receivable: Keep track of outstanding invoices with an AR aging report.
- Digital Wallets: Provide drivers and customers with digital wallets to manage balances and transactions.
- Financial Reporting: Generate essential financial reports to monitor your business's health.
- RBAC Permissions: A complete set of permissions for controlling access to all Ledger resources.
π§ Smart Navigator: A New Way to Navigate
The main console header has been completely redesigned with the new Smart Navigator menu. This intelligent and responsive navigation system streamlines access to all your extensions and most-used features.
Key features include:
- Intelligent & Responsive: The menu automatically collapses items into a "More" dropdown as your screen width changes, ensuring a clean and uncluttered interface.
- Searchable Dropdown: A powerful, multi-column dropdown allows you to instantly search and access any menu item.
- Shortcuts: Extensions can now register "Shortcuts" β prominent, card-style links in the main dropdown that provide one-click access to critical actions like creating a new order or invoice.
- Pinning & Customization: Pin your most frequently used extensions and shortcuts to the main header for immediate access.
β¨ New Features
π¨ Template Builder System
- [core-api, ember-ui] A new visual template builder has been introduced for creating and managing document templates (e.g., for invoices, reports, packing slips).
- [ember-ui] The builder features a drag-and-drop canvas, a properties panel for customizing elements, and support for dynamic data via queries.
- [core-api] Backend support includes new
TemplateandTemplateQuerymodels and a preview endpoint for unsaved templates.
πͺ Interactive Installation Wizard
- [fleetbase, fleetbase-cli] The
docker-install.shscript and theflb install-fleetbasecommand are now full-fledged interactive wizards. - [fleetbase, fleetbase-cli] The wizard guides users through configuring core settings, database connections (bundled MySQL or external), mail services (SMTP, Mailgun, SES, etc.), file storage (local, S3, GCS), and other third-party services.
π§ Ember Core & UI Enhancements
- [ember-core] The
universeservice now correctly forwards sub-services to the host application, resolving cross-engine service isolation issues. - [ember-core] Implemented more robust session lifecycle events for login/logout handling.
- [ember-ui] Added a comprehensive set of status badges for invoices and transactions.
π Bug Fixes
FleetOps
- [fleetops] Suppressed a false-positive
ember/no-shadow-route-definitionlint error for the top-levelvirtualroute using aneslint-disablecomment. [1]
Ledger
- [ledger] Resolved numerous bugs during the stabilization process, including fixes for invoice number generation, line item calculations, webhook processing, currency handling, and cross-engine service dependencies.
Ember UI
- [ember-ui] Fixed numerous styling, rendering, and interactivity bugs in the new Smart Navigator and Template Builder components.
β οΈ Breaking Changes
- [fleetbase] The primary console virtual route has been moved from
/:slugto/~/:slugto avoid conflicts with extension routes.
π§ Upgrade Steps
# Pull latest version git pull origin main --no-rebase # Update docker docker compose pull docker compose down && docker compose up -d # Run deploy script docker compose exec application bash -c "./deploy.sh"
π¦ Component Versions
- fleetbase: v0.7.31
- core-api: v1.6.38
- fleetops: v0.6.38
- storefront: v0.4.14
- ledger: v0.0.1
- ember-core: v0.3.18
- ember-ui: v0.3.25
- fleetbase-cli: v0.0.6
References
[1] fleetbase/fleetops - PR #210: feature/header-menu-shortcuts
Need help?
Join the discussion on GitHub Discussions or drop by #fleetbase on Discord
v0.7.30
π Fleetbase v0.7.30 β 2026-02-28
"Extension discovery, driver vehicle validation, and CLI search"
β¨ Highlights
This release includes two bug fixes and one new feature: a corrected public extension discovery endpoint in the Registry Bridge, a driver vehicle validation patch in FleetOps, and a new flb search command in the Fleetbase CLI.
π Registry Bridge β Public Extension Discovery
The public extensions listing endpoint (~registry/v1/extensions) has been corrected and hardened. A dedicated PublicRegistryExtension API resource now sanitizes the response, stripping all sensitive fields before they leave the server. The install_count aggregation has been fixed to use withCount('installs') and the incorrect author relationship has been replaced with the proper company relationship. The endpoint returns a clean, flat array.
π FleetOps β Driver Vehicle Validation
A TypeError that occurred when creating a driver with a vehicle object sent from the frontend has been resolved. A new ResolvableVehicle validation rule accepts a public_id string (e.g., vehicle_abc123), a UUID string, or an object/array containing an id, public_id, or uuid key. Vehicle normalization has been added to both createRecord() and updateRecord() in DriverController so the correct vehicle UUID is always resolved before persistence.
π Fleetbase CLI β Extension Search Command
A new flb search [query] command (alias: flb list-extensions) lets developers and administrators browse all available extensions directly from the terminal. Results are displayed in a formatted, colour-coded table showing the extension name, category, publisher, version, price, and supported install formats. Filtering options include --category, --free, --json, --simple, and --host.
β¨ New Features
- [fleetbase-cli] Added
flb search [query]command (alias:flb list-extensions) for browsing available extensions - [fleetbase-cli]
--categoryfilter to narrow results by extension category - [fleetbase-cli]
--freeflag to list only free extensions - [fleetbase-cli]
--jsonflag for machine-readable JSON output - [fleetbase-cli]
--simpleflag for plain-text terminal output - [fleetbase-cli]
--hostoption to target self-hosted registry instances
π Bug Fixes
FleetOps
- [fleetops] Fixed
TypeErrorwhen creating a driver with a vehicle object sent from the frontend - [fleetops] Added
ResolvableVehiclevalidation rule acceptingpublic_id, UUID, or object withid/public_id/uuid - [fleetops] Added vehicle normalization in
DriverController::createRecord()andupdateRecord()
Registry Bridge
- [registry-bridge] Fixed
install_countcolumn error by switching towithCount('installs')eager load - [registry-bridge] Removed incorrect
authorrelationship; replaced with correctcompanyrelationship - [registry-bridge] Removed sensitive data (internal UUIDs, Stripe IDs, private relationships) from public endpoint response
- [registry-bridge] Public extensions endpoint now returns a plain array without a wrapping key
π§ Improvements
- [fleetbase-cli] Price display correctly converts cents to dollars in search results
- [fleetbase-cli] Search results show both install formats:
flb install fleetbase/<slug>andflb install <extension_id> - [registry-bridge] Extension listing response is a clean, flat array for easier consumption by CLI and third-party tools
β οΈ Breaking Changes
- None π
π§ Upgrade Steps
# Pull latest version git pull origin main --no-rebase # Update docker docker compose pull docker compose down && docker compose up -d # Run deploy script docker compose exec application bash -c "./deploy.sh"
π¦ Component Versions
- fleetops: v0.6.37
- registry-bridge: v0.1.7
- fleetbase-cli: v0.0.5
Need help?
Join the discussion on GitHub Discussions or drop by #fleetbase on Discord
v0.7.29
π Fleetbase v0.7.29 β 2026-02-27
"Major security enhancements, analytics tracking, developer tools, and UX improvements"
β¨ Highlights
This release brings critical security patches, comprehensive analytics event tracking across the platform, enhanced developer account management for the extension marketplace, and several user experience improvements including accurate geolocation detection.
π Security Enhancements
Fleetbase v0.7.29 includes critical security fixes that strengthen tenant isolation and prevent unauthorized access. The core-api has been patched to address a systemic tenant isolation vulnerability (GHSA-3wj9-hh56-7fw7) with the introduction of a CompanyScope global scope that enforces proper tenant boundaries. Additional security improvements include removal of hardcoded authentication bypasses, enforcement of strong password policies across all validators, and prevention of user enumeration in login flows. Cross-tenant IDOR vulnerabilities have been resolved with company-scoped authorization checks throughout the API.
π Analytics & Event Tracking
A comprehensive events service has been added to ember-core, providing centralized analytics tracking across all core services. The system emits both generic events (e.g., resource.created) and specific events (e.g., order.created) using a standardized dot notation naming convention. Event tracking has been integrated into CRUD operations (create, update, delete, bulk actions, import, export) and resource actions across the platform. In FleetOps, 30 controllers now emit analytics events, and import operations return accurate counts of imported records. The dual event system fires on both the events service and universe service, enabling cross-engine communication for analytics integrations like PostHog.
π οΈ Developer Tools & Marketplace
The registry-bridge now supports Registry Developer Accounts for self-hosted instances, enabling developers to publish and monetize extensions through a centralized marketplace. The Universal Extension Marketplace backend provides a public extension listing endpoint with 15-minute caching for performance. Stripe Connect account management has been added, allowing developers to update bank account details after initial onboarding. The fleetbase-cli has been significantly enhanced with new commands including flb register for developer account registration, flb verify for email verification, flb resend-verification for expired codes, and flb install-fleetbase for Docker-based installation with automatic repository cloning.
π Geolocation & UX Improvements
A critical bug affecting user onboarding has been fixed where the system was displaying the server's location instead of the user's actual location. The ember-core now implements frontend IP lookup using multiple geolocation APIs (geoiplookup.io and ipapi.co) with automatic fallback support and localStorage caching. The phone-input component in ember-ui has been updated to use this frontend IP lookup, ensuring accurate country code detection for phone number formatting. The IAM engine now features tabbed user type sections in the users management interface for better organization.
π Reporting & Data Access
FleetOps now exposes the meta column and Transaction relationships in the Orders report schema, enabling users to query and report on order metadata, custom fields, and financial data including transaction amounts, line items, and aggregates. This resolves a significant limitation where critical financial data was previously inaccessible in reports.
π Internationalization
Support for KZT (Kazakhstani Tenge) currency has been added across both core-api and ember-ui, expanding Fleetbase's international capabilities.
π Security Fixes
- [core-api] Patched critical tenant isolation vulnerability (GHSA-3wj9-hh56-7fw7) with CompanyScope global scope
- [core-api] Removed hardcoded SMS auth bypass code, replaced with environment-driven bypass for non-production
- [core-api] Fixed cross-tenant IDOR vulnerabilities with company-scoped authorization
- [core-api] Enforced strong password policy across all validators
- [core-api] Prevented user enumeration in login flow
- [core-api] Restored authToken re-authentication with identity verification
β¨ New Features
Analytics & Tracking
- [ember-core] Added centralized events service for analytics tracking across all core services
- [ember-core] Event tracking in CRUD service (create, update, delete, bulk actions, import, export)
- [ember-core] Dual event system (fires on both events service and universe service)
- [fleetops] Added event tracking to 30 FleetOps controllers for event tracking
- [fleetops] Import operations now return count of imported records in response
Developer Tools
- [registry-bridge] Registry Developer Account support for self-hosted instances
- [registry-bridge] Universal Extension Marketplace backend with public extension listing endpoint
- [registry-bridge] Stripe Connect account management for bank account updates
- [registry-bridge] Email verification for developer accounts using VerificationCode model
- [registry-bridge] Automatic registry token generation upon email verification
- [fleetbase-cli] Added
flb registercommand for Registry Developer Account registration - [fleetbase-cli] Added
flb verifycommand for email verification - [fleetbase-cli] Added
flb resend-verificationcommand to request new verification codes - [fleetbase-cli] Added
flb install-fleetbasecommand for Docker-based installation - [fleetbase-cli] Auto-clone Fleetbase repository if not present during installation
- [fleetbase-cli] Support for
--hostparameter to work with self-hosted instances
Reporting & Data
- [fleetops] Exposed meta column and Transaction relationships in Orders report schema for financial reporting
- [core-api] User cache now includes updated_at timestamp for automatic cache busting
UI/UX
- [iam-engine] Added tabbed user type sections to users management interface
- [iam-engine] Enhanced edit user interface with better validation and error handling
Internationalization
- [core-api] Added KZT (Kazakhstani Tenge) currency support
- [ember-ui] Added support for KZT currency
π Bug Fixes
Geolocation
- [ember-core] Implemented frontend IP lookup to get accurate user location (fixes onboarding showing server location)
- [ember-core] Added lookup-user-ip utility with multi-API fallback support (geoiplookup.io and ipapi.co)
- [ember-core] localStorage caching for IP lookup results (1 hour TTL)
- [ember-core] Graceful fallback to browser timezone when geolocation APIs fail
- [ember-ui] Updated phone-input component to use frontend IP lookup (fixes incorrect country code detection)
- [ember-ui] Phone input now always initializes with US fallback if geolocation fails
Core Fixes
- [core-api] Verification codes now default to 'pending' status
- [core-api] Fixed verification email HTML rendering (button component)
- [core-api] Prevented empty email/phone on user update
- [core-api] Resolved camelCase expansion methods from snake_case query params in Filter
- [fleetops] Prevented duplicate driver creation when user_uuid already has a driver profile
- [registry-bridge] Made developer account registration routes public (no auth required)
- [registry-bridge] Polymorphic purchaser relationship for extension purchases (supports both Company and RegistryDeveloperAccount)
π§ Improvements
- [fleetops] Moved avatar management to FleetOps settings
- [ember-ui] Faster phone input lookup (1 network hop vs 2, no backend dependency)
- [fleetbase-cli] Better error handling and debugging for all commands
- [fleetbase-cli] Skip interactive prompts when command-line options are provided
- [ember-core] Standardized event naming with dot notation (e.g., resource.created, order.created)
β οΈ Breaking Changes
- None π
π§ Upgrade Steps
# Pull latest version git pull origin main --no-rebase # Update docker docker compose pull docker compose down && docker compose up -d # Run deploy script docker compose exec application bash -c "./deploy.sh"
π¦ Component Versions
- core-api: v1.6.36
- fleetops: v0.6.36
- registry-bridge: v0.1.6
- iam-engine: v0.1.7
- ember-core: v0.3.11, v0.3.12
- ember-ui: v0.3.20, v0.3.21
- fleetbase-cli: v0.0.4
Need help?
Join the discussion on GitHub Discussions or drop by #fleetbase on Discord
v0.7.28
π Fleetbase v0.7.28 β 2026-02-05
"Critical patch: eager load driver and vehicle in consumable orders query API"
β¨ Highlights
- Critical patch which fixes eager loading relationship when querying orders via the consumable API, this is done to handle the new
whenLoadedresource conditional methods. fleetbase/fleetops#203
β οΈ Breaking Changes
- None π
π§ Upgrade Steps
# Pull latest version git pull origin main --no-rebase # Update docker docker compose pull docker compose down && docker compose up -d # Run deploy script docker compose exec application bash -c "./deploy.sh"
Need help?
Join the discussion on GitHub Discussions or drop by #fleetbase on Discord
v0.7.27
π Fleetbase v0.7.27 β 2026-02-05
"Improvements and patches"
β¨ Highlights
- Core now supports disabling cache in runtime for
HasApiModelCachexHasApiModelBehavior - Added new
FileResolverServiceto support file resolution from file resources, URL's, base64, and file uploads 190c03d VerificationCodemodel in core always throws SMS exceptions- FleetOps: Patched proof of delivery component in order details
- FleetOps: Improved and patched service rate
getServicableForPlaceswhich improved service quote performance - FleetOps: Fix location GeoJSON Point casting for
locationproperties - using the newUtils::castPointutility 208151f - Storefront: Critical patch for QPay checkout workflow storefront#66
- Storefront: Added new phone number verification endpoints for customers (
request-phone-verificationandverify-phone-number) - Storefront: Fixed cart based service quotes
β οΈ Breaking Changes
- None π
π§ Upgrade Steps
# Pull latest version git pull origin main --no-rebase # Update docker docker compose pull docker compose down && docker compose up -d # Run deploy script docker compose exec application bash -c "./deploy.sh"
Need help?
Join the discussion on GitHub Discussions or drop by #fleetbase on Discord
v0.7.26
π Fleetbase v0.7.26 β 2025-01-16
"Improved Driver Validation + API improvements"
β¨ Highlights
- Improved driver creation validation for internal API
- Vehicle and Driver API use explicit
::createmethod now - Improved onboarding orchestrator framework and services for history and resume capability
- Upgraded Stripe SDK to v17
β οΈ Breaking Changes
- None π
π§ Upgrade Steps
# Pull latest version git pull origin main --no-rebase # Update docker docker compose pull docker compose down && docker compose up -d # Run deploy script docker compose exec application bash -c "./deploy.sh"
Need help?
Join the discussion on GitHub Discussions or drop by #fleetbase on Discord
v0.7.25
π Fleetbase v0.7.25 β 2025-12-29
"New SMS service to support multiple SMS providers + framework improvements"
β¨ Highlights
- Removed
window.Fleetbasefor improved frontend security - Improved query optimizations
- Added new SMS service to support multiple SMS providers
β οΈ Breaking Changes
- None π
π§ Upgrade Steps
# Pull latest version git pull origin main --no-rebase # Update docker docker compose pull docker compose down && docker compose up -d # Run deploy script docker compose exec application bash -c "./deploy.sh"
Need help?
Join the discussion on GitHub Discussions or drop by #fleetbase on Discord
v0.7.24
π Fleetbase v0.7.24 β 2025-12-21
"Critical core-api patches for cache key generation"
β¨ Highlights
Bug Fixes
- Fixed cache key collision bug - Different filter parameters (e.g.,
type=customervstype=contact) now generate unique cache keys instead of returning wrong cached results - Fixed BadMethodCallException - Models without soft deletes (like Permission) no longer crash when calling
getDeletedAtColumn()
Improvements
- Added caching to Permission model - Permission queries now benefit from Redis caching for improved performance
β οΈ Breaking Changes
- None π
π§ Upgrade Steps
# Pull latest version git pull origin main --no-rebase # Update docker docker compose pull docker compose down && docker compose up -d # Run deploy script docker compose exec application bash -c "./deploy.sh"
Need help?
Join the discussion on GitHub Discussions or drop by #fleetbase on Discord
v0.7.23
π Fleetbase v0.7.23 β 2025-12-19
"π€― Insane optimization and performance upgrades + horizontal scaling support π"
β¨ Highlights
- Major performance and optimization improvements which support horizontal scaling
- Ability to resize images on upload using resize parameters
- Several patches in FleetOps - fixed service rates and missing translations, improvements and patch to scheduler
- Added a new
LanguageServiceavailable in ember-core - Minor
@fleetbase/ember-uiimprovements
New Features
- Improved API performance with two-layer caching system (Redis + ETag validation) for user and organization data
- Reduced bandwidth usage with automatic HTTP 304 Not Modified responses via new ValidateETag middleware
- Faster page loads with intelligent cache invalidation that updates immediately when data changes
- New UserCacheService class for centralized cache management across the application
- Image resizing support for dynamic image dimensions via URL parameters
- Added
ApiModelCacheclass - Provides intelligent Redis-based caching for API query results with automatic invalidation - Added
HasApiModelCachetrait - Enables models to cache query results with a single method call
Performance Improvements
- Optimized form data syncing to eliminate N+1 query problems, reducing database queries from N to 2 for relationship syncing
- Implemented cache stampede prevention to handle high concurrent load efficiently
- Added cache versioning system for automatic invalidation when data changes
Developer Experience
- Added
X-Cache-Statusheader to API responses for easy cache debugging (HIT/MISS visibility) - Automatic multi-tenant cache key generation for company-scoped data isolation
- Graceful fallback to direct queries when cache is unavailable
β οΈ Breaking Changes
- None π
π§ Upgrade Steps
# Pull latest version git pull origin main --no-rebase # Update docker docker compose pull docker compose down && docker compose up -d # Run deploy script docker compose exec application bash -c "./deploy.sh"
Need help?
Join the discussion on GitHub Discussions or drop by #fleetbase on Discord
v0.7.22
π Fleetbase v0.7.22 β 2025-12-07
"Organizations can now set their own alpha-numeric sender ID for SMS"
β¨ Highlights
- Custom Alphanumeric Sender ID for SMS:
Organizations can now configure their own Alphanumeric Sender ID used when sending verification codes and other SMS notifications.
This feature improves brand recognition, enhances trust, and aligns outbound communication with each organizationβs identity.
Supported in regions/carriers where alphanumeric senders are allowed (e.g., Mongolia and others).
β οΈ Breaking Changes
- None π
π§ Upgrade Steps
# Pull latest version git pull origin main --no-rebase # Update docker docker compose pull docker compose down && docker compose up -d # Run deploy script docker compose exec application bash -c "./deploy.sh"
Need help?
Join the discussion on GitHub Discussions or drop by #fleetbase on Discord