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:
- Container images and configmaps
- Swagger APIs
- [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
- Navigate to the API Management service service.
- Expand
APIsleft blade menu and selectAPIs - Select
omnumiand expand the API option button (...) to selectImportavailable option - Select
OpenAPItile- Import method:
Update - Select file:
Omnumi-External.openapi+json.json
- Import method:
Update settings
- Select
omnumiAPI again - Open
Settingstab and updateWeb service URLwithul-coremicroservice URL - Save the changes
Update methods chain-core
- Select
omnumiAPI again - Open
Designtab and enableGroup by tag - On the list expand
ChainCoreand update theBackend - HTTP(s) endpointwithul-chain-coremicroservice URL - 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.
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 |