2026.22 Infrastructure Changes
1 min read
Changes on Application environment
Change | Environment Variable Name | Application Default Value | Example | Required | Applications | Short Description |
|---|---|---|---|---|---|---|
Added |
|
|
| false |
| Enables page-batch figure extraction for Image Content Extraction. When enabled and Image Content Extraction is active for the document, the ingestion worker sends the full page image and all detected figure regions to |
Added |
|
|
| false |
| Keeps extracted |
Added |
|
|
| false |
| Enable the extraction of hyperlinks in chunks. |
Added |
|
|
| false |
| Enable inline comments on cells in the Agentic Table with threaded replies, @mentions, resolve/re-open and a dedicated side panel for triage. |
Removed |
| - | - | - |
| Removed since it is GA. |
Removed |
| - | - | - |
| Removed since it is GA. |
Removed |
| - | - | - |
| Removed since it is GA. |
Migration Hook Command Update
The Prisma migration step in the migration hook now runs from the service root instead of the prisma/ subdirectory, and the --config path is no longer relative to prisma/. The migration command in the migration hook in the default values of the affected services needs to be adjusted.
Affected services:
backend-service-app-repository
backend-service-chat
backend-service-configuration
backend-service-ingestion
backend-service-scope-management
For each service, in your override values:
# search for
cd /home/node/app/services/<service>/prisma; pnpm exec prisma migrate deploy --config ../prisma.config.ts;
# replace with
cd /home/node/app/services/<service> && pnpm exec prisma migrate deploy --config prisma.config.ts;Replace <service> with the actual service directory name (e.g. node-ingestion, node-chat, gatekeeper, configuration-backend, node-app-repository, node-scope-management).
Example final result for backend-service-ingestion:
hooks:
migration:
enabled: true
command: |
cd /home/node/app/services/node-ingestion && pnpm exec prisma migrate deploy --config prisma.config.ts; cd /home/node/app/services/node-ingestion/dist;