Downloads:
Verj.io Studio Links:
Windows 64 bit: https://downloads.verj.io/verjio/v5.13. ... _win64.exe
Linux 64 bit: https://downloads.verj.io/verjio/v5.13. ... x64.tar.gz
Mac: https://downloads.verj.io/verjio/v5.13. ... _2_mac.dmg
On-premise Server Links
Windows 64 bit: https://downloads.verj.io/verjio/v5.13. ... _win64.exe
Linux 64 bit: https://downloads.verj.io/verjio/v5.13. ... x64.tar.gz
Changes introduced in Version 5.13.2:
- Change Data Connectors API error handling.
The errors thrown by the Data Connectors API have been changed to use generic HTTP errors as follows:
v5.13.0 Error- connectors.errors.NotFoundError.
- connectors.errors.RequestError.
- connectors.errors.AuthorisationError.
- connectors.errors.ServerError.
- connectors.errors.UnknownError.
v5.13.2 Error- HttpNotFoundError.
- HttpRequestError.
- HttpAuthorisationError.
- HttpServerError.
- HttpUnknownError.
Error handling example:
Code: Select all
function checkMOTValid() { var valid; try { var resp = connectors.verjio.dvla.getVehicleInfo('HA58 TAG'); valid = resp.motStatus; } catch (e) { if (e instanceof HttpNotFoundError) { // Registration number was not found valid = null; } } return valid; }
- connectors.errors.NotFoundError.
- Addition: Deployment Wizard – Project Properties selection:
The Deployment Wizard includes Project Properties items in the Selections trees.
Each Project Properties item represents its owning Project's properties, for example, its Theme and Linked Projects.
These properties are deployed to a target environment if the:- Entire Project is selected.
- Its Project Properties item has been selected.
- Project doesn't currently exist in the target environment.
- Entire Project is selected.
- Bug Fixes
Release notes and installation instructions:
See the V5.13.2 Readme