Skip to content

What's New in Version 2026.7.3-57280fc

July 8, 2026 10:00 PM UTC

Version 2026.7.3-57280fc of the RelationalAI Native App is now available!

Note that RelationalAI Native App upgrades are applied automatically and require no action on your part, unless you have opted-in to manual upgrades.

  • App activation now checks for Snowflake account-level settings that prevent the application from functioning correctly. If an incompatible setting is detected — for example, PREVENT_UNLOAD_TO_INTERNAL_STAGES = TRUE, which blocks the app from writing to its own internal stage — relationalai.app.activate() blocks activation and explains how to resolve the conflict. You can run the following to skip these checks and proceed anyway:

    CALL relationalai.app.activate(ERROR_ON_UNSUPPORTED_ACCOUNT_FLAG => FALSE);
  • The application now cleans up unused references in the application’s internal records of which Snowflake tables and views are configured as data stream sources. When a data stream is removed or reconfigured, its records can be left behind as orphans, causing them to accumulate over time and eventually prevent new data streams from being configured. New procedures are also available to inspect and remove these unused references manually:

  • Fixed an issue where reasoner setup could report a failure even though the reasoner was successfully provisioned due to errors in cleanup steps that occur after provisioning completes. These cleanup errors are now logged and ignored, so setup completes as expected.
  • Removed the previously deprecated app.finalize_upgrade() procedure. Upgrade finalization is now handled automatically, so there is no replacement. If you call app.finalize_upgrade() in custom automation, remove those calls to avoid errors.