Neptune DXP - Open Edition Patch 8

dxp22 10 8 patchimage

Download Patch here

Small maintenance release.

Fixes:

  • Mobile Client - Splashsceen not working in android.

  • App Editor - package.json was deleted when installing npm modules.

  • Deployment - When deploying APIs, and the API was included in a soft deleted app, the entire app definition would be included in the deployment data.

  • Server Script - When reloading all global server scripts each script would be reloaded in turn which would also reload all global script dependencies. This could reload a global script multiple times. Now each global script is only reloaded once.

  • Adaptive Designer - Adaptive Designer would fail to load on networks without public internet access.

  • App Designer - Minor fixes to the binding browser. Models would be displayed twice in some instances.

Feature:

  • Server Script - Stream data from an api server script. Set result.data to a readable stream and it will be piped to the client.

    INFO

    When you set result.data to a readable stream the data will be streamed to the client. When returning data to the client from an api server script you would set result.data to some object to return json, e.g. result.data = { prop: 1, etc. }, then all the data is returned to the client in one go. Now we also support streaming. You can set result.data to a readable stream, e.g. result.data = fileReaderStream and the data will be streamed to the client.