Verj.io V5.13.2 released

Check for important Verj.io announcements such as version, service packs and patch releases, event dates, etc

Moderators: Jon, Steve, Ian, civanderputt, Dave

Steve
Moderator
Moderator
Posts: 421
Joined: Fri Sep 07, 2007 3:44 pm
Location: Sandy, UK
Contact:

Verj.io V5.13.2 released

#1

Postby Steve » Tue Jun 25, 2024 10:54 am

Verj.io V5.13.2 is now available and can be downloaded using the links below.

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:
  1. 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.
    to:

    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;
    	}
    	
  2. 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.
  3. Bug Fixes

Release notes and installation instructions:
See the V5.13.2 Readme
0 x

Who is online

Users browsing this forum: No registered users and 3 guests