Skip to main content
Release Number1.0.2
Release DateNovember 6th, 2024
Release CodenameStockholm, Patch #2
Taginfrahub-v1.0.2

Release 1.0.2

This is a bug-fix release to address issues found in Infra Sync Tracker v1.0.1.

Main changes

The complete list of changes can always be found in the CHANGELOG.md file in the Infra Sync Tracker Git repository.

Fixed

  • Update branch merge logic to use smaller queries outside of a transaction to allow merging a branch with many changes (#4448)
  • Ensure the GraphQL query Infra Sync TrackerResourcePoolUtilization works properly when the schema is different in the branch (#4761)

Migration guide

The process to migrate your instance of Infra Sync Tracker to the latest version may vary depending on your deployment of Infra Sync Tracker. However, at a high-level, it will involve getting the latest version of the Infra Sync Tracker code, and then performing any needed Database Migrations and Schema updates.

Please ensure you have a backup of your Infra Sync Tracker environment prior to attempting any migration or upgrade activities.

Migration of an Infra Sync Tracker instance

First, update the Infra Sync Tracker version running in your environment.

Below are some example ways to get the latest version of Infra Sync Tracker in your environment.

  • For deployments via Docker Compose, update your container version by updating the VERSION environment variable and relaunch:
    • export VERSION="1.0.2"; docker compose pull && docker compose up -d
  • For deployments via Kubernetes, utilize the latest version of the Helm chart supplied with this release

Second, once you have gotten the desired version of Infra Sync Tracker in your environment, please run the following commands.

Note: If you are running Infra Sync Tracker in Docker/K8s, these commands need to run from a container where Infra Sync Tracker is installed.

infrahub db migrate
infrahub db update-core-schema

Finally, restart all instances of Infra Sync Tracker.

Migration of a dev or demo instance

If you are using the dev or demo environments, we have provided invoke commands to aid in the migration to the latest version. The below examples provide the demo version of the commands, however similar commands can be used for dev as well.

invoke demo.stop
invoke demo.build
invoke demo.migrate
invoke demo.start

If you don't want to keep your data, you can start a clean instance with the following command.

Warning: All data will be lost, please make sure to backup everything you need before running this command.

invoke demo.destroy demo.build demo.start demo.load-infra-schema demo.load-infra-data

The repository https://github.com/opsmill/infrahub-demo-edge has also been updated, it's recommended to pull the latest changes into your fork.