v0.1.4
April 9, 2025What's Changed
- Improves status updates for failed flows by @merschformann in #11
Full Changelog: v0.1.3...v0.1.4
Share view and other actions
April 8, 2025
You can now share a run URL with someone on your team and it will preserve the particular view that was shared. Before, if you were, say, on the Result view of a run and copied the URL to share with someone on your team, when they opened that URL they would land on the Details view. This produced a confusing experience when trying to share views.
Now, when you click the share view button, your current run view is copied as part of the URL and will open the run on the same view from which it was shared. Further, the URL will preserve the specific data and layout selections for that view if applicable. For instance, if you are viewing the result of a routing run with a split table and run visual, when you copy the link to share the URL, it will open on the Result view with the same split table and run visualization displayed.
In addition to this new share action, the create new and clone existing run action has been given a small makeover, and download input and output have been consolidated into a single download menu.
Create/clone new run
The ability to create a new run and clone an existing one was already in place, but it has been revamped with a universal +
action button that opens the menu of create options. This will also serve as a place for any future create new actions for runs and other entities.
Download input and output
The ability to download a run’s input and output file existed prior as well, but the UI to do so was only available on the Input and Result view respectively. And depending on the type of application or the run size, the UI to download the input or output could vary slightly. This update consolidates the download actions into a single menu that is always accessed from the same place and from any view.
Tabular data view for runs
April 3, 2025
All JSON-based application runs now have an automatic tabular view into the data. For a run result, the solution is extracted and presented in a tabular view; for the input view the full input data is used for the tabular view.
How the data is presented (code and table) can be toggled with a new control at the bottom of the page as well, so you can easily switch between JSON and tabular views of the data. The code view displays the input or output for a run like it did before, there is no change there, so at any point you can view the exact input or output for the run.
This update has been applied to new and past runs. Also, the view control will remember your last selection for the app, so each app can have its own default view into the data for each individual user.
v0.1.2
April 2, 2025What's Changed
- Improves foreach example by @merschformann in #8
- Aligns flow status uplink with platform by @merschformann in #9
Full Changelog: v0.1.1...v0.1.2
nextmv-v0.20.0
April 2, 2025What's Changed
- Change to is workflow by @sebastian-quintero in #75
v0.1.1
March 26, 2025What's Changed
- Fixes error handling, adds jitter to app run wait by @merschformann in #7
Full Changelog: v0.1.0...v0.1.1
v0.1.0
March 24, 2025What's Changed
- Introduces fanout, rework execution model, further additions by @merschformann in #1
- Adds support for step based logging by @merschformann in #6
Full Changelog: v0.1.0.dev8...v0.1.0
Updated routing visuals
March 13, 2025
The routing run visualization in Console has been updated to use vector-based tiles, render more efficiently, and offer more display flexibility.
Vector tiles
The map on which routes and stops are displayed is now rendered with vector tiles rather than raster tiles. This reduces the amount of processing needed to display the map and offers a crisp, clear background for your routing visuals.
Efficient rendering
A number of improvements were made to the code that prepares and processes the data for the routing visuals. And, when possible, items on the map are now rendered with the canvas
element rather than rendered as SVGs. In addition to these enhancements, a clustering engine (supercluster
) was added to be able to handle efficiently rendering many points on a map.
The size limit for rendering runs in Console with the routing visual has now been increased to 4.5 MB (prior the limit was 350 kb).
Example rendering of 1000s of stops and multiple routes
Display flexibility
If you click on a feature (point or route) in the map a popup appears that displays extra information for that feature. Before, the routing visualization would extract a few specific metrics for display in the popup, but you had no control over which items were displayed.
This has been changed to where now the popup will display any information that is included in a feature’s metadata
property. So now you’re in control of the information displayed in the feature popups.
More
The routing visual is available to any app that meets the minimum schema requirements. You can view this minimum schema and learn more about the routing visual in the routing run visualization section.
Custom run visuals
February 27, 2025
You can now add custom visuals to your application runs. Add custom charts using the Plotly or Chart.js rendering library, or add custom interactive maps based on GeoJSON data. Visuals can be added to any custom application by following the required schema outlined in the Custom visualizations documentation.
Sample of a Chart.js render for an application run.
Run ID added to scenario test pivot table
December 4, 2024
The run ID is now included as an analysis option in the scenario test pivot table (id
). This is useful if your want to categorize data by runs, or further segment scenario analysis with a per run delineation.
Input file trimming in Nextmv Console
December 4, 2024
When viewing a run in Nextmv Console, there is a size limit for rendering the input and output for the run. If an input or output file is above this threshold, rather than rendering a visual or the contents of the JSON file, an interface for downloading the file is displayed.
However, sometimes an input’s large file size is because of “machine” data included in the file, and the amount of information that is of interest to an operator or developer is within Console’s file display threshold.
To accommodate this scenario, a new feature has been added to Nextmv Console that trims machine-oriented properties from the input file when viewing a run. After the properties have been trimmed, if the run’s updated input file size is within the display thresholds then the input will be re-rendered with the appropriate display (e.g. a mapping visual if it’s a routing app).
At the moment there are two properties that are trimmed from the input file:
If these input properties do not exist no action is taken. Also, if one or more of these properties are trimmed, but the input file size still remains above the rendering threshold, the download input interface will remain as is.
Note that the input is modified in the browser session on the front-end only. The backend data remains as is and cannot be modified. Also, you can always download the input file via the download interface to see its full contents.
Updated analysis view for runs
December 4, 2024
App’s that use the Statistics convention in their run output can record time series data with the series_data
property and then view this collected data in the Analysis tab of the run details view in Console.
The ability to view the series data used to be only available if your run output file size was below 300kb. Now this feature is available for run outputs of any size as long as the format is JSON. However, do note that if your files are very large it may take a moment for the series data to be extracted and displayed.
Also, the charts that display the progression values of the series_data
sets have been updated to be more performant. And if the dataset is larger than 50, a sample of the points are extracted for inspection using the Largest-Triangle-Three-Buckets (LTTB) algorithm.