App, Runtime and Container Updates

There are a number of update mechanisms to be aware of. This document describes the different update mechanisms as well as differences between platforms.

Overview

To see a full changelog of changes with each update to the Runtime and Container, please visit whatsnew.journeyapps.com.

The following gives an overview of the concepts of "container", "runtime" and "app":

Description

The native application initially installed on the user's device. It is only a shell containing the sign in process, as well as native functionality for the specific platform, e.g. camera or GPS

Update Mechanism

Dependent on OS and specific container. Read more in Container updates section.

Update Frequency

A few times per year

Version Scheme

Year.Month.Version

App and runtime updates

The app and runtime are updated OTA ("over-the-air") as soon as a deploy is performed by a developer. Regular users will see a notification to update their app, after which the app may navigate back to the main view.

Developers, when using the Testing barcode to test their app, will see that updates are applied immediately, with no intervention required in the app. This makes it quick to make changes to the app and see the result of the changes.

To use functionality in newer JourneyApps versions (e.g. updates to UI Components), the runtime for the app must be updated to the newer version.

Container updates

Container updates are comparatively more complicated than app updates, in that the way in which updates can be applied depends on the platform on which the Container is running, as well as whether the standard JourneyApps Container, or a custom-branded container is installed.

The following table explains the differences between all the Container Update mechanisms:

Platform
JourneyApps-Branded Container
Custom-Branded Container

Android

Applied as per OS-level setting for installing updates automatically.

Need to be manually distributed and installed.

iOS

Applied as per OS-level setting for installing updates automatically.

Need to be manually distributed and installed.

Windows

N/A

Download initiated when user clicks on sync button. Applied when selected by the user, or application is restarted.

We recommend keeping users on the latest container at all times. Mobile device management (MDM) software is recommended to distribute and update applications for Android and iOS.

Runtime versioning in more detail

The Runtime uses Semantic Versioning. Breaking changes will either be behind feature flags, or be part of major version bumps (for example in version 5.0.0).

New features will be introduced in minor versions, e.g. in 4.71.0. It should generally be safe to update minor versions, but always make sure to test. There may be some visual or behavioral changes as part of minor versions.

Patch releases will only include bug fixes, and should always be a safe upgrade.

Runtime tracks

Tracks are used to classify runtime versions. The table below describes all the runtime tracks. Please note that some tracks may not be visible to all developers.

Track
Description

dev

These are highly experimental, often still under development. They are useful for quickly testing experimental features but have no guarantees regarding stability. These builds should not be deployed to production users.

beta

These have passed initial Quality Assurance (QA), and may include early-access features. This track is also not intended for production use.

rc

These have been through significant QA. It is considered production-ready but needs the opportunity to run in production environments before being considered completely stable.

stable

These are considered completely safe to use in production and should be the default track for most of apps to be on. Developers should still test their apps when selecting a new stable runtime, since there may have been changes in terms of functionality.

Last updated