From dfe15dd9b74c9e54a3c91cf27d919e5d881f3ec9 Mon Sep 17 00:00:00 2001 From: Michael Quigley Date: Wed, 19 Feb 2025 14:08:22 -0500 Subject: [PATCH] changelog (#771) --- CHANGELOG.md | 2 ++ cmd/zrok/main.go | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1275e346..783d7a76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,8 @@ FEATURE `zrok access private` supports a new `--auto` mode, which can automatica FEATURE `zrok rebase` command allows "rebasing" an enabled environment onto a different API endpoint. This is useful for migrating already-enabled environments between endpoints supporting different zrok versions (https://github.com/openziti/zrok/issues/869) +FEATURE `zrok test canary` CLI tree replaces the old `zrok test loop` tree; new `zrok test canary public-proxy` and `zrok test canary private-proxy` provide modernized, updated versions of what the `zrok test loop` commands used to do. This new approach will serve as the foundation for all future zrok testing infrastructure (https://github.com/openziti/zrok/issues/771) + CHANGE: Refactored API implementation. Cleanup, lint removal, additional data elements added, unused data removed (https://github.com/openziti/zrok/issues/834) CHANGE: Deprecated the `passwords` configuration stanza. The zrok controller and API console now use a hard-coded set of (what we believe to be) reasonable assumptions about password quality (https://github.com/openziti/zrok/issues/834) diff --git a/cmd/zrok/main.go b/cmd/zrok/main.go index c21eef07..32a46f42 100644 --- a/cmd/zrok/main.go +++ b/cmd/zrok/main.go @@ -28,7 +28,6 @@ func init() { agentCmd.AddCommand(agentAccessCmd) agentCmd.AddCommand(agentShareCmd) agentCmd.AddCommand(agentReleaseCmd) - testCmd.AddCommand(loopCmd) rootCmd.AddCommand(adminCmd) rootCmd.AddCommand(configCmd) rootCmd.AddCommand(modifyCmd)