From 5118ac57e1d92781e64eb28e87f163798f0dbbe0 Mon Sep 17 00:00:00 2001 From: Noam Gal Date: Tue, 8 Jun 2021 12:03:10 +0300 Subject: [PATCH] v0.2.1 --- CHANGELOG.md | 12 ++++++++++++ Makefile | 2 +- docs/releases/release_notes.md | 16 ++++++---------- 3 files changed, 19 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0ca1961..882b8d4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog: +# v0.2.1 + +### 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 + +### 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` + # v0.2.0 ### Breaking Changes: diff --git a/Makefile b/Makefile index f7d2417d..6f4e271b 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=v0.2.0 +VERSION=v0.2.1 OUT_DIR=dist CLI_NAME?=argocd-autopilot diff --git a/docs/releases/release_notes.md b/docs/releases/release_notes.md index 48d401c3..982ef04c 100644 --- a/docs/releases/release_notes.md +++ b/docs/releases/release_notes.md @@ -1,16 +1,12 @@ -### Breaking Changes: -* Combined `--repo`, `--installation-path` and `--revision` into a single url, set by `--repo` with the following syntax: -``` -argocd-autopilot --repo https://github.com/owner/name/path/to/installation_path?ref=branch -``` -The `REPO_URL` environment variable also uses the new syntax - ### Bug fixes: -* failed to build bootstrap manifests [#82](https://github.com/argoproj-labs/argocd-autopilot/issues/82) -* Adding two applications with the same ns causes sync ping-pong [#23](https://github.com/argoproj-labs/argocd-autopilot/issues/23) +* 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 ### Additional changes: -* The `RunRepoCreate` func now returns `(*git.CloneOptions, error)` dependency on `packr` for compiling source with additional assets required by argo-cd dependency. +* 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` ### Contributors: - Roi Kramer ([@roi-codefresh](https://github.com/roi-codefresh))