Release Date: September 22, 2025
Bug Fixes
-
Process Instance ID (PIID) Order Bug Fix
Fixed a critical functional bug where filtering operations were changing the order of process instance IDs (PIID) in case listings. This was causing inconsistent case ordering and potential data integrity issues. -
Case Service Sort Configuration
Ensure that cases and tasks are listed in the correct order (old behavior) whenCASE_FETCH_ALL_SORT_COLUMNandCASE_FETCH_ALL_SORT_ORDERenvironment variables are not configured.
Images
| Service Name | Image Name | Image Version |
|---|---|---|
| alpha-admin-service | neutrinos.azurecr.io/alpha/admin | 25.9.1.0.31-3919bd12d-lts |
| alpha-admin-ui | neutrinos.azurecr.io/alpha/alpha-admin-ui | 25.9.1.0.31-3919bd12d-lts |
| alpha-auth-service | neutrinos.azurecr.io/alpha/alpha-auth-service | 25.9.1.0.31-3919bd12d-lts |
| alpha-case-manager-ui | neutrinos.azurecr.io/alpha/alpha-case-manager-ui | 25.9.1.0.32-3919bd12d-lts |
| alpha-config-service | neutrinos.azurecr.io/alpha/alpha-config-service | 25.9.1.0.32-3919bd12d-lts |
| alpha-enquiry-service | neutrinos.azurecr.io/alpha/alpha-enquiry-service | 25.3.0.0.25-42e3424c4-prod |
| alpha-workflow-studio | neutrinos.azurecr.io/alpha/alpha-workflow-studio | 25.9.1.0.30-3919bd12d-lts |
| alpha-modules-service | neutrinos.azurecr.io/alpha/alpha-module-service | 25.9.1.0.31-3919bd12d-lts |
| alpha-task-distributor | neutrinos.azurecr.io/alpha/alpha-task-distributor | 25.9.1.0.33-3919bd12d-lts |
| alpha-bpmservice | neutrinos.azurecr.io/alpha/alpha-jbpm-service | 25.9.1.0.31-3919bd12d-lts |
| alpha-caseservice | neutrinos.azurecr.io/alpha/alpha-case-service | 25.9.1.0.36-1ceb10a1f-lts |
Migrations
Configuration Migrations
-
Case Service Configuration Update
The case service configuration has been updated to support custom sort behavior. To maintain backward compatibility, the default sort configuration has been commented out in the values files.Before:
CASE_FETCH_ALL_SORT_COLUMN: 'created_at' CASE_FETCH_ALL_SORT_ORDER: 'DESC'After:
# For custom sort behavior, set these variables. TO preserve the old sort order, keep this commented # CASE_FETCH_ALL_SORT_COLUMN: 'created_at' # created_at | updated_at # CASE_FETCH_ALL_SORT_ORDER: 'DESC' # DESC | ASC
Breaking Changes
- Case Service Sort Behavior: The default sort configuration for case fetching has been modified. If you rely on the previous default sorting behavior, you may need to explicitly configure the sort parameters in your deployment values.
Environment Variables
Modified Environment Variables
alpha-caseservice
| Env Variable Name | Description | Example |
|---|---|---|
CASE_FETCH_ALL_SORT_COLUMN |
Sort column for case fetching - createad_at or updated_at |
'created_at' (commented out in default config) |
CASE_FETCH_ALL_SORT_ORDER |
Sort order for case fetching - ASC or DESC |
'DESC' (commented out in default config) |
Note: These variables are now commented out by default to preserve old sorting behavior. Uncomment and configure as needed for your specific requirements.