Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Tasks

PriorityKeyAkioma Release Notes
High
SWAT-7091Fixed issue with jquery reference that was removed
Medium
SWAT-7070Added xenon/hdp  service to integrate Progress Hyper Data Pipeline  with Build.One.

It is introduced as separate micro-service runnable in isolation as docker container.

Added to src/xenon/hdp 

Callable from webui , through the http://Build.one backend where the request is routed through a gateway  micro-service under src/gateway .

Currently supports HTTP-method GET  to consume data from foreign APIs connected to hdp.buildone.live .

When configuring a Data Source Object (DSO)  set SUBTYPE Nestjs  and configure attribute resourceName  to resource/<connectorName>/<tableName> 

resourceName  must contain resource 

<connectorName>  represents the DataSource name configured in HDP 

<tableName>  represent the endpoint configured inside the data source in HDP 

Further plans include adding Hyper Data Pipeline to the [Build.One](http://Build.One) stack and not just consuming it as a foreign SaaS-service.
Medium
SWAT-6931Added dedicated tests to dynSelect control


Application settings have been re-arranged in src/backend/Akioma/Swat/.restapplicationsettings 

Previously

Code Block
languagejs
themeDJangoEclipse
"loginScreen": "data/repository-cache/loginGenericW.json", 
"desktopMenus": "StandaloneDevDesktops", 
"NodeUrl": "env.NODE_URL", 
"googleAPIKey": "", 
"elasticSearchBaseURL": "/elastic", 
"MruTableNames": "",


Now

Code Block
languagejs
themeDJangoEclipse
"internal": { 
   "nodeUrl": "env.NODE_URL" 
}, 
"application": { 
    "desktopMenus": "StandaloneDevDesktops", 
    "loginScreen": "data/repository-cache/loginGenericW.json" 
}, 
"integration": { 
    ... 
    "elasticSearchUrl": "/elastic", 
    "googleAPIKey": "", 
    "kinvey": { 
        "appKey": "", 
        "appSecret": "", 
        "instanceId": "" 
    }
}, 
"mostRecentlyUsed": { 
    "tableNames": "" 
}


Added

Code Block
languagejs
themeDJangoEclipse
"repositoryCache": { 
    "enabled": false, 
    "skipList": "" 
}, 
"uiStyle": { 
    ... 
    "browserPageTitle": "BUILD.ONE", 
    "messageBoxDefaultDisplayStyle": "notification" 
},



...