Use this checklist whenever you bump the GL AIP or deploy a new version of the AIP backend.
When to use this guide: Plan upgrades, communicate timelines, or document migrations between AIP releases.
Who benefits: Release managers, platform engineers, and PMs coordinating customer rollouts.
ℹ️ Current versionsAIP SDK: 0.0.5AIP Platform backend: 0.1.53
ℹ️ Current versions
AIP SDK: 0.0.5
0.0.5
AIP Platform backend: 0.1.53
0.1.53
Latest platform release notes live at https://github.com/GDP-ADMIN/ai-agent-platform/releasesarrow-up-right. SDK release notes are tracked in the Changelogarrow-up-right.
Capture breaking changes or behavioural updates.
Back up agents, tools, and MCP configs as JSON/YAML if you manage them manually.
On each machine or runner execute:
aip update # Use flags as needed: # aip update --check-only # verify availability # aip update --force # reinstall
Run the following checks:
aip status
representative CLI commands such as aip agents run or aip tools get
aip agents run
aip tools get
client.ping() from a Python shell
client.ping()
Example Python check:
from aip import Client client = Client() print(client.ping())
Pull the corresponding AIP release and restart services for the platform backend.
Run one workflow that exercises each connector you depend on.
Note the versions installed and any follow-up tasks (e.g., feature flag toggles, configuration updates).
Keep a copy of exported agent/tool JSON in version control; it simplifies rollback and lets you diff changes across upgrades.
Automate aip update via CI jobs so runners stay in sync with PyPI releases.
aip update
When the REST API introduces new endpoints or payloads, the REST API Referencearrow-up-right is updated automatically and should be consulted for schema details.
Future breaking changes will re-use this page—add concise “Before / After” code snippets when they land so the checklist stays actionable.
Configuration management guidearrow-up-right — Export/import workflows for pre- and post-upgrade backups.
Automation & scriptingarrow-up-right — Schedule aip update checks and regression runs.
Agents guidearrow-up-right — Validate run history and streaming behaviour after upgrades.
Security & privacyarrow-up-right — Confirm PII mappings and token scopes did not regress.
Last updated 3 months ago