Skip to content

Release 2.7.2

Release Notes


  • Handling migration of Old users to Oscilar.
  • Plaid APIs are now available for external partners to utilize.

Upgrade Notes

The sequence of steps to follow to upgrade are:

  1. Container images and configmaps
  2. Swagger APIs
  3. [DB update]

Container images and configmaps

All provided images, available in the Image List section should be downloaded and built to be LGPL compliant.

All new images tags will be used to update Kubernetes manifests.


Swagger APIs

Download Swagger APIs tarball file available in Assets, unpack/unzip it in order to perform remaining instructions.

Update API

omnumi
Upload file
  1. Navigate to the API Management service service.
  2. Expand APIs left blade menu and select APIs
  3. Select omnumi and expand the API option button (...) to select Import available option
  4. Select OpenAPI tile
    • Import method: Update
    • Select file: Omnumi-External.openapi+json.json
Update settings
  1. Select omnumi API again
  2. Open Settings tab and update Web service URL with ul-core microservice URL
  3. Save the changes
Update methods chain-core
  1. Select omnumi API again
  2. Open Design tab and enable Group by tag
  3. On the list expand ChainCore and update the Backend - HTTP(s) endpoint with ul-chain-core microservice URL
  4. Repeat operation for all listed API methods on the ChainCore

DB

This SQL query updates the valid_from and valid_till columns in the tenant_customer_documents table by converting timestamp values to date-only format (removing the time component) and setting any empty string values to NULL to ensure data consistency.

It applies this transformation to all records in the table by selecting each tenant_customer_document_id ordered by created_at.

This helps clean up the data and ensures the date fields are stored correctly without time values or invalid empty strings.

Execute update
UPDATE tenant_customer_documents
SET
  valid_from = CASE
                 WHEN TRIM(valid_from) = '' THEN NULL
                 ELSE valid_from::timestamp::date
               END,
  valid_till = CASE
                 WHEN TRIM(valid_till) = '' THEN NULL
                 ELSE valid_till::timestamp::date
               END
WHERE tenant_customer_document_id IN (
  SELECT tenant_customer_document_id
  FROM tenant_customer_documents
  ORDER BY created_at ASC
);

Image list

Microservice name Image tag
Core Microservice omnumisandbox.azurecr.io/core:2.7.2-deliverable
Auth Microservice omnumisandbox.azurecr.io/ul-auth:1.0.2-deliverable

Assets

Login into files portal