Weekly Upgrade Announcement 6/5/2023

Read-only forum. Used to announce new releases of EASYProcess.

Locked
JustinVanRegenmorter
Posts: 535
Joined: August 26th, 2021, 9:56 am
Contact:

Weekly Upgrade Announcement 6/5/2023

Unread post by JustinVanRegenmorter »

Platform Upgrade Schedule
On Monday June 12th, the IDE/DV/QA environments for Platform1, Platform2, Platform3, and Platform4 will be upgraded to DesignTime Revision 2624 and RunTime Revision 1229. Platform1, Platform2, and Platform4 will begin their upgrade at 10:00AM CST with an expected completion time of 10:30AM CST. Platform3 will begin its upgrade at 12:00PM CST with an expected completion time of 12:30PM CST.

On Wednesday June 14th, the PD environment for Platform1, Platform2, Platform3, and Platform4 will be upgraded to RunTime Revision 1229. Platform1, Platform2, and Platform4 will begin their upgrade at 3:00PM CST with an expected completion time of 3:30PM CST. Platform3 will begin its upgrade at 12:00PM with an expected completion time of 12:30PM CST.

NOTE: Please upgrade your tenant's ECC to revision 137 to utilize the new ECC changes.


DesignTime
Revision 2619: Process Lookup Text Fix
  • In the Process Lookup page, the service select's title should be 'Service' and not 'Select'. The 'Select' text has been replaced with 'Service'.
Revision 2620: Edit User Checkbox Hiding
  • The "Create in all environments." and "IDE Developer?" checkboxes are currently showing when editing a user. The two checkboxes have been changed to only show when a new user is being created.
Revision 2621: Connection Point Fixes
  • When a mouse click is registered near a service's connection point, a JavaScript error will popup. This has been changed to properly grab the connection point or if none are found on the click it will not try to create a connection from that point.
  • Swapping the Yes/No exit connections for a BinaryDecision throws an error. This has been changed to properly find the outgoing connections when swapping the Yes/No exits for a BinaryDecision.
Revision 2622: New Object List Spelling Fix
  • When adding a new object list on the ObjectLists page, the REST option says 'Rest API Verb' instead of 'REST API Verb'. The text has been changed to 'REST API Verb' to match the rest of the site.
Revision 2623 and RunTime revision 1226: Static Textbox Title
  • A new property has been added to the Textbox control called SlidingTitle. Setting it to "False" will always keep the title at the top of the Textbox. This property defaults to "True". In order to utilize this property, the style.css file in the application needs to be updated. Find this existing section

    Code: Select all

    .text-field-wrap.field-active input + .label-text,
    	.text-field-wrap input:focus + .label-text,
    	.text-field-wrap.field-active textarea + .label-text,
    	.text-field-wrap textarea:focus + .label-text,
    	.text-field-wrap.field-active select + .label-text,
    	.text-field-wrap select:focus + .label-text	{
    		top: -0.75em;
    		left: 16px;
    		display: block;
    		padding-left: 6px;
    		padding-right: 6px;
    		font-weight: bold;
    		font-size: 0.86em;
    		opacity: 1;
    		color: #175E8E;
    		background-color: #FFFFFF;
    	}
    This section needs to be updated with 3 additional selectors to look like this

    Code: Select all

    .text-field-wrap.field-active input + .label-text,
    	.text-field-wrap input:focus + .label-text,
    	.text-field-wrap.field-active textarea + .label-text,
    	.text-field-wrap textarea:focus + .label-text,
    	.text-field-wrap.field-active select + .label-text,
    	.text-field-wrap select:focus + .label-text,
    	.text-field-wrap.static-title input + .label-text,
    	.text-field-wrap.static-title textarea + .label-text,
    	.text-field-wrap.static-title select + .label-text	{
    		top: -0.75em;
    		left: 16px;
    		display: block;
    		padding-left: 6px;
    		padding-right: 6px;
    		font-weight: bold;
    		font-size: 0.86em;
    		opacity: 1;
    		color: #175E8E;
    		background-color: #FFFFFF;
    	}
    Once this is added the property will start working as expected.
Revision 2624 and RunTime revision 1228: New Service QueryInvoice
  • Implemented a new service called QueryInvoice. This service takes an InvoiceId and an array of queries and returns the desired result based on the Text, which is the question/phrase. It can also take a comma separated list of pages to search on.

RunTime
Revision 1227: Default Button in List
  • Setting the default button of a text box inside of a list does not work if that button is also in the same list. The default button configured for a text box in a list now starts in the same list index of the text box before looking outside of the list.
Revision 1229: Loop Global Variable Fix
  • LoopGlobalVariable's are failing to be passed in on all iterations of a loop under specific conditions. Reformatted how the variables are set for each loop.

ECC
Revision 137: IBM Connection Table Loading
  • Added a check for the ECC IBM connections for loading the tables. If the tables fail to load, then a specific query will be ran to grab the tables.
word count: 778

Tags:
Locked