From c3981ac07a01d986388dd7a2a2cdcd051a1082ab Mon Sep 17 00:00:00 2001 From: Noam Gal Date: Tue, 15 Jun 2021 18:46:49 +0300 Subject: [PATCH] v0.2.2 --- CHANGELOG.md | 13 +++++++++++++ Makefile | 6 +++--- docs/releases/release_notes.md | 13 +++++++------ 3 files changed, 23 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 882b8d4f..8e29e09c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog: +# v0.2.2 + +### Bug fixes: +* App type infer fails when --app value references a tag [#97](https://github.com/argoproj-labs/argocd-autopilot/issues/97) +* Deleting the bootstrap app hangs while deleting the entire hierarchy [#99](https://github.com/argoproj-labs/argocd-autopilot/issues/99) + +### Breaking Changes: +* when sending `--app` flag value, use either `?sha=`, `?tag=` or `?ref=` to specificy sha|tag|branch to clone from [#98](https://github.com/argoproj-labs/argocd-autopilot/pull/98) + +### Additional changes: +* update docs about secrets not yet supported [#93](https://github.com/argoproj-labs/argocd-autopilot/pull/93) +* Support using 2 repos for Kustomize apps [#97](https://github.com/argoproj-labs/argocd-autopilot/issues/97) + # v0.2.1 ### Bug fixes: diff --git a/Makefile b/Makefile index 6f4e271b..2345cc8d 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,12 @@ -VERSION=v0.2.1 +VERSION=v0.2.2 OUT_DIR=dist CLI_NAME?=argocd-autopilot IMAGE_REPOSITORY?=quay.io IMAGE_NAMESPACE?=argoprojlabs -INSTALLATION_MANIFESTS_URL="github.com/argoproj-labs/argocd-autopilot/manifests?ref=$(VERSION)" -INSTALLATION_MANIFESTS_NAMESPACED_URL="github.com/argoproj-labs/argocd-autopilot/manifests/namespace-install?ref=$(VERSION)" +INSTALLATION_MANIFESTS_URL="github.com/argoproj-labs/argocd-autopilot/manifests?tag=$(VERSION)" +INSTALLATION_MANIFESTS_NAMESPACED_URL="github.com/argoproj-labs/argocd-autopilot/manifests/namespace-install?tag=$(VERSION)" DEV_INSTALLATION_MANIFESTS_URL="manifests/" DEV_INSTALLATION_MANIFESTS_NAMESPACED_URL="manifests/namespace-install" diff --git a/docs/releases/release_notes.md b/docs/releases/release_notes.md index 982ef04c..60136e04 100644 --- a/docs/releases/release_notes.md +++ b/docs/releases/release_notes.md @@ -1,12 +1,13 @@ ### Bug fixes: -* app create does not work with local path (tries to infer application type by cloning) [#87](https://github.com/argoproj-labs/argocd-autopilot/issues/87) -* Clone logs not displaying correct values -* Debug logs not showing +* App type infer fails when --app value references a tag (#97)[https://github.com/argoproj-labs/argocd-autopilot/issues/97] +* Deleting the bootstrap app hangs while deleting the entire hierarchy (#99)[https://github.com/argoproj-labs/argocd-autopilot/issues/99] + +### Breaking Changes: +* when sending `--app` flag value, use either `?sha=`, `?tag=` or `?ref=` to specificy sha|tag|branch to clone from (#98)[https://github.com/argoproj-labs/argocd-autopilot/pull/98] ### Additional changes: -* Updated k8s dependencies from v0.20.4 to v0.21.1 -* Added `--progress` flag to redirect the git operations -* `CloneOptions.FS` is now `fs.FS` instead of `billy.Filesystem` +* update docs about secrets not yet supported [#93](https://github.com/argoproj-labs/argocd-autopilot/pull/93) +* Support using 2 repos for Kustomize apps [#97](https://github.com/argoproj-labs/argocd-autopilot/issues/97) ### Contributors: - Roi Kramer ([@roi-codefresh](https://github.com/roi-codefresh))