From e2448c6da8f1cab5ef8aa521e0e11ad89b1276a9 Mon Sep 17 00:00:00 2001 From: Michael Quigley Date: Wed, 12 Feb 2025 11:11:43 -0500 Subject: [PATCH] changelog (#866) --- CHANGELOG.md | 2 ++ etc/ctrl.yml | 1 + 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e46918b4..e10727f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## v0.4.48 +FEATURE: The controller configuration now supports a `disable_auto_migration` boolean in the `store` stanza. When set to `true`, the controller will not attempt to auto-migrate (or otherwise validate the migration state) of the underlying database. Leaving `disable_auto_migration` out, or setting it to false will retain the default behavior of auto-migrating when starting the zrok controller. The `zrok admin migrate` command will still perform a migration regardless of how this setting is configured in the controller configuration (https://github.com/openziti/zrok/issues/866) + FIX: the Python SDK erroneously assumed the enabled zrok environment contained a config.json file, and was changed to only load it if the file was present (https://github.com/openziti/zrok/pull/853/). ## v0.4.47 diff --git a/etc/ctrl.yml b/etc/ctrl.yml index d9b0efd0..23f66b15 100644 --- a/etc/ctrl.yml +++ b/etc/ctrl.yml @@ -158,6 +158,7 @@ reset_password: #store: # path: "host=127.0.0.1 user=zrok password=zrok dbname=zrok" # type: "postgres" +# disable_auto_migration: true # store: path: zrok.db