Advanced Reports Changelog
3.3.0 (March 2026)
[IMPORTANT] Migration from Legacy Version
This release completes the migration from the legacy Connect architecture (PostgreSQL) to the new Forge platform (Forge SQL). If you are upgrading from the old version, your saved queries, reports, and configuration data require an explicit one-time migration. This migration must be performed by our team — please contact us at [email protected] to request it.
What's New
- ✅ Parent Field Support: The parent field is now a supported database field. When included in your schema, it stores the Jira issue ID of the parent work item directly on the work_items table. You can join parent and child issues to build hierarchical queries — for example, to show each work item alongside its parent's summary:
SELECT
child_wi.key AS work_item_key,
child_wi.summary AS work_item_summary,
parent_wi.summary AS parent_summary
FROM work_items AS child_wi
LEFT JOIN work_items AS parent_wi
ON child_wi.parent = parent_wi.id
WHERE
child_wi.parent IS NOT NULL;-
✅ Issue Links & issue_links Table: The issuelinks field is now supported. Link data (blocks, is blocked by, clones, duplicates, etc.) is stored in a new issue_links relationship table with the following columns:
- id — unique link identifier
- source_issue_id — the originating work item ID
- target_issue_id — the linked work item ID
- link_type_id — Jira link type identifier
- link_type_name — human-readable link type (e.g. "Blocks", "Clones")
- link_direction — inward or outward
You can join issue_links with work_items to query relationships between issues, such as finding all blocked items or tracing dependency chains.
Both parent and issuelinks must be added to your database schema in Database Settings → Fields before they appear in your data.
2.1.0 (January 2026)
What's New
- Report Canvas Layout Options: We've introduced a Narrow/Wide mode toggle for the report canvas, giving you more control over your workspace and allowing for wider report layouts when needed.
- Enhanced Table Control: You can now resize report tables and individual columns.
- Improved Multiline Support: We've added proper handling for multiline results (results containing newline characters - \n or \r\n) across the board — including in insights, report tables, and value displays.
1.0.0-AC (April 2025)
This is the first release of Advanced Reports for Jira Cloud.