Skip to content

Commit

Permalink
v0.4.16 (#498)
Browse files Browse the repository at this point in the history
* v0.4.16
* updated sanity pipeline

---------

Signed-off-by: Noam Gal <[email protected]>
  • Loading branch information
ATGardner authored Sep 14, 2023
1 parent 488cff7 commit 14232a6
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 11 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog:

# v0.4.16

- [fix] Fix gitea repo bootstrap failure [#495](https://github.com/argoproj-labs/argocd-autopilot/pull/495)
- [chore] updated image to `1.20.3` [#477](https://github.com/argoproj-labs/argocd-autopilot/pull/477)
- [chore] updated golangci-lint from `v1.50.1` to `v1.53.1` [#479](https://github.com/argoproj-labs/argocd-autopilot/pull/479)
- [chore] Bump github.com/spf13/viper from `1.10.1` to `1.16.0` [#475](https://github.com/argoproj-labs/argocd-autopilot/pull/475)
- [chore] Bump go.mongodb.org/mongo-driver from `1.1.2` to `1.5.1` [#433](https://github.com/argoproj-labs/argocd-autopilot/pull/433)
- [chore] Bump github.com/xanzy/go-gitlab from `0.71.0` to `0.86.0` [#487](https://github.com/argoproj-labs/argocd-autopilot/pull/487)
- [chore] Bump k8s.io/* from `0.24.2` to `0.24.15` [#489](https://github.com/argoproj-labs/argocd-autopilot/pull/489)
- [chore] Bump github.com/argoproj/argo-cd/v2 from `2.5.9` to `2.8.3` [#488](https://github.com/argoproj-labs/argocd-autopilot/pull/488)
- [chore] Bump github.com/go-git/go-billy/v5 `5.3.1` to `5.4.1` [#488](https://github.com/argoproj-labs/argocd-autopilot/pull/488)
- [chore] Bump github.com/go-git/go-git/v5 `5.4.2` to `5.7.0` [#488](https://github.com/argoproj-labs/argocd-autopilot/pull/488)
- [chore] Bump github.com/ktrysmt/go-bitbucket `0.9.55` to `0.9.60` [#488](https://github.com/argoproj-labs/argocd-autopilot/pull/488)
- [chore] Bump github.com/sirupsen/logrus `1.8.1` to `1.9.3` [#488](https://github.com/argoproj-labs/argocd-autopilot/pull/488)
- [chore] Bump github.com/spf13/cobra `1.5.0` to `1.7.0` [#488](https://github.com/argoproj-labs/argocd-autopilot/pull/488)
- [chore] Bump sigs.k8s.io/kustomize/api `0.11.4` to `0.11.5` [#488](https://github.com/argoproj-labs/argocd-autopilot/pull/488)
- [chore] Bump sigs.k8s.io/kustomize/kyaml `0.13.6` to `0.13.7` [#488](https://github.com/argoproj-labs/argocd-autopilot/pull/488)
- [chore] Bump github.com/go-git/go-billy/v5 from `5.4.1` to `5.5.0` [#497](https://github.com/argoproj-labs/argocd-autopilot/pull/497)
- [chore] Bump pygments from `2.7.4` to `2.15.0` in /docs [#493](https://github.com/argoproj-labs/argocd-autopilot/pull/493)
- [docs] add missing requirement in getting started docs [#459](https://github.com/argoproj-labs/argocd-autopilot/pull/459)
- [docs] fix a typo [#460](https://github.com/argoproj-labs/argocd-autopilot/pull/460)
- [docs] Quoting variable expansions [#391](https://github.com/argoproj-labs/argocd-autopilot/pull/391)

# v0.4.15

- [docs] fix small typo in Getting Started docs [#445](https://github.com/argoproj-labs/argocd-autopilot/pull/445)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=v0.4.15
VERSION=v0.4.16
OUT_DIR=dist

CLI_NAME?=argocd-autopilot
Expand Down
18 changes: 12 additions & 6 deletions build/sanity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ steps:
title: Clean old repo
image: 'codefresh/kube-helm'
commands:
- curl -H "Authorization:Bearer $GIT_TOKEN" -X DELETE "https://api.github.com/repos/${{GIT_REPO}}" || true
- curl -H "Authorization:Bearer $GITHUB_TOKEN" -X DELETE "https://api.github.com/repos/${{GIT_REPO}}" || true
when:
steps:
- name: prep
Expand Down Expand Up @@ -81,6 +81,7 @@ steps:
commands:
- git config --global user.email "[email protected]"
- git config --global user.name "cf-ci-bot"
- export GIT_TOKEN=${{GITHUB_TOKEN}}
- export GIT_REPO=https://github.com/${{GIT_REPO}}
- argocd-autopilot repo bootstrap -n $NAMESPACE
- argocd-autopilot project create e2e
Expand All @@ -96,10 +97,11 @@ steps:
title: "delete bootstrap & cleanup"
image: "codefresh/kube-helm"
commands:
- export GIT_TOKEN=${{GITHUB_TOKEN}}
- export GIT_REPO=https://github.com/${{GIT_REPO}}
- argocd-autopilot repo uninstall --request-timeout 5m
- kubectl delete namespace $NAMESPACE
- curl -H "Authorization:Bearer $GIT_TOKEN" -X DELETE "https://api.github.com/repos/${{GIT_REPO}}" || true
- curl -H "Authorization:Bearer $GITHUB_TOKEN" -X DELETE "https://api.github.com/repos/${{GIT_REPO}}" || true
when:
steps:
- name: run_bootstrap
Expand All @@ -113,9 +115,13 @@ steps:
commands:
- kubectl delete application autopilot-bootstrap -n $NAMESPACE --request-timeout ${{KUBECTL_TIMEOUT}} || true
- kubectl delete ns $NAMESPACE --request-timeout ${{KUBECTL_TIMEOUT}} || true
- curl -H "Authorization:Bearer $GIT_TOKEN" -X DELETE "https://api.github.com/repos/${{GIT_REPO}}" || true
- curl -H "Authorization:Bearer $GITHUB_TOKEN" -X DELETE "https://api.github.com/repos/${{GIT_REPO}}" || true
when:
steps:
- name: run_bootstrap
on:
- failure
any:
- name: run_bootstrap
on:
- failure
- name: delete_bootstrap
on:
- failure
28 changes: 24 additions & 4 deletions docs/releases/release_notes.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,32 @@
### Changes

- [docs] improved and organized official docs [#440](https://github.com/argoproj-labs/argocd-autopilot/pull/440)
- [fix] redundant validation of write permission when using `--recover` [#443](https://github.com/argoproj-labs/argocd-autopilot/issues/443)
- [fix] Fix gitea repo bootstrap failure [#495](https://github.com/argoproj-labs/argocd-autopilot/pull/495)
- [chore] updated image to `1.20.3` [#477](https://github.com/argoproj-labs/argocd-autopilot/pull/477)
- [chore] updated golangci-lint from `v1.50.1` to `v1.53.1` [#479](https://github.com/argoproj-labs/argocd-autopilot/pull/479)
- [chore] Bump github.com/spf13/viper from `1.10.1` to `1.16.0` [#475](https://github.com/argoproj-labs/argocd-autopilot/pull/475)
- [chore] Bump go.mongodb.org/mongo-driver from `1.1.2` to `1.5.1` [#433](https://github.com/argoproj-labs/argocd-autopilot/pull/433)
- [chore] Bump github.com/xanzy/go-gitlab from `0.71.0` to `0.86.0` [#487](https://github.com/argoproj-labs/argocd-autopilot/pull/487)
- [chore] Bump k8s.io/* from `0.24.2` to `0.24.15` [#489](https://github.com/argoproj-labs/argocd-autopilot/pull/489)
- [chore] Bump github.com/argoproj/argo-cd/v2 from `2.5.9` to `2.8.3` [#488](https://github.com/argoproj-labs/argocd-autopilot/pull/488)
- [chore] Bump github.com/go-git/go-billy/v5 `5.3.1` to `5.4.1` [#488](https://github.com/argoproj-labs/argocd-autopilot/pull/488)
- [chore] Bump github.com/go-git/go-git/v5 `5.4.2` to `5.7.0` [#488](https://github.com/argoproj-labs/argocd-autopilot/pull/488)
- [chore] Bump github.com/ktrysmt/go-bitbucket `0.9.55` to `0.9.60` [#488](https://github.com/argoproj-labs/argocd-autopilot/pull/488)
- [chore] Bump github.com/sirupsen/logrus `1.8.1` to `1.9.3` [#488](https://github.com/argoproj-labs/argocd-autopilot/pull/488)
- [chore] Bump github.com/spf13/cobra `1.5.0` to `1.7.0` [#488](https://github.com/argoproj-labs/argocd-autopilot/pull/488)
- [chore] Bump sigs.k8s.io/kustomize/api `0.11.4` to `0.11.5` [#488](https://github.com/argoproj-labs/argocd-autopilot/pull/488)
- [chore] Bump sigs.k8s.io/kustomize/kyaml `0.13.6` to `0.13.7` [#488](https://github.com/argoproj-labs/argocd-autopilot/pull/488)
- [chore] Bump github.com/go-git/go-billy/v5 from `5.4.1` to `5.5.0` [#497](https://github.com/argoproj-labs/argocd-autopilot/pull/497)
- [chore] Bump pygments from `2.7.4` to `2.15.0` in /docs [#493](https://github.com/argoproj-labs/argocd-autopilot/pull/493)
- [docs] add missing requirement in getting started docs [#459](https://github.com/argoproj-labs/argocd-autopilot/pull/459)
- [docs] fix a typo [#460](https://github.com/argoproj-labs/argocd-autopilot/pull/460)
- [docs] Quoting variable expansions [#391](https://github.com/argoproj-labs/argocd-autopilot/pull/391)

### Contributors:

- Daniel Maizel ([@danielm-codefresh](https://github.com/danielm-codefresh))
- Nahuel Pastorale ([@NPastorale](https://github.com/NPastorale))
- Wim Fournier ([@hsmade](https://github.com/hsmade))
- Noam Gal ([@noam-codefresh](https://github.com/noam-codefresh))
- gamerslouis ([@gamerslouis](https://github.com/gamerslouis))
- TomyLobo ([@TomyLobo](https://github.com/TomyLobo))

## Installation:

Expand Down

0 comments on commit 14232a6

Please sign in to comment.