APPLICATION_STATE view : New columns in output (Preview)

Attention

This behavior change is in the 2025_06 bundle.

For the current status of the bundle, refer to Bundle History.

When this behavior change bundle is enabled, the APPLICATION_STATE view in the DATA_SHARING_USAGE schema includes the following new columns:

Column name

Data type

Description

UPGRADE_AFTER

TIMESTAMP

Timestamp when the application will be upgraded.

UPGRADE_IN_MAINTENANCE_WINDOW

BOOLEAN

TRUE if the application upgrade is scheduled to happen during the Snowpark Container Services maintenance window, otherwise FALSE.

UPCOMING_VERSION

VARCHAR

Information about the state of the upcoming version for the application in JSON format.

The holds field reflects application state. Other fields describe incoming version information.

A hold value of PENDING_REPLICATION indicates that this specific version and release directive has not yet been replicated.

For example:

 {
   "holds": [
     "PENDING_REPLICATION"
    ],
    "upcomingPatchId": 2,
    "upcomingReleaseDirectiveName": "CUSTOM_RD" ,
    "upcomingVersion": "V1",
    "upcomingVersionEffectiveOn": "Thu, 19 Jun 2025 21:52:37 Z"
}
Copy

For more information on application upgrade see Upgrade an app.

Ref: 2071