Skip to content

Commit

Permalink
chore: release 5.0.0 (#107)
Browse files Browse the repository at this point in the history
* chore: release 5.0.0

* docs: update CHANGELOG.md with info about breaking changes

* docs(terraform-docs): generate docs and write to README.adoc

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Gonçalo Heleno <[email protected]>
Co-authored-by: lentidas <[email protected]>
  • Loading branch information
3 people authored Jun 11, 2024
1 parent 19e9f28 commit 7126b0e
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 9 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Changelog

## [5.0.0](https://github.com/camptocamp/devops-stack-module-argocd/compare/v4.5.0...v5.0.0) (2024-06-11)


### ⚠ BREAKING CHANGES

* **chart:** major update of dependencies on argocd chart:
* The upstream chart has removed multiple configurations that should not affect you unless you overload any of the following attributes using the `helm_values` variable:
* deprecated component options `logLevel` and `logFormat`
* deprecated component arguments `<components>.args.<feature>` that were replaced with `configs.params`
* deprecated configuration `server.config` that was replaced with `configs.cm`
* deprecated configuration `server.rbacConfig` that was replaced with `configs.rbac`


### Features

* **chart:** major update of dependencies on argocd chart ([52543df](https://github.com/camptocamp/devops-stack-module-argocd/commit/52543df692e21fee2cd772ca47282d166f0fdfae))
* modify the Helm values to support new chart version ([a2127c9](https://github.com/camptocamp/devops-stack-module-argocd/commit/a2127c94e84282b8138282b6c365ab6b37a0a6b0))


### Bug Fixes

* add domain value ([fae7776](https://github.com/camptocamp/devops-stack-module-argocd/commit/fae7776f1b85e7bac9424840d2ad2234e2599dc9))
* fix typo that prevented OIDC configuration apply ([e5bec3f](https://github.com/camptocamp/devops-stack-module-argocd/commit/e5bec3f9a97ecc650f7ddd491990ad4182d79c60))

## [4.5.0](https://github.com/camptocamp/devops-stack-module-argocd/compare/v4.4.1...v4.5.0) (2024-05-29)


Expand Down
12 changes: 6 additions & 6 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,6 @@ The following requirements are needed by this module:

The following providers are used by this module:

- [[provider_null]] <<provider_null,null>> (>= 3)

- [[provider_jwt]] <<provider_jwt,jwt>> (>= 1.1)

- [[provider_time]] <<provider_time,time>> (>= 0.9)
Expand All @@ -235,6 +233,8 @@ The following providers are used by this module:

- [[provider_utils]] <<provider_utils,utils>> (>= 1.6)

- [[provider_null]] <<provider_null,null>> (>= 3)

=== Resources

The following resources are used by this module:
Expand Down Expand Up @@ -310,7 +310,7 @@ Description: Override of target revision of the application chart.

Type: `string`

Default: `"v4.5.0"`
Default: `"v5.0.0"`

==== [[input_cluster_issuer]] <<input_cluster_issuer,cluster_issuer>>

Expand Down Expand Up @@ -692,12 +692,12 @@ Description: Map of extra accounts that were created and their tokens.
[cols="a,a",options="header,autowidth"]
|===
|Name |Version
|[[provider_null]] <<provider_null,null>> |>= 3
|[[provider_jwt]] <<provider_jwt,jwt>> |>= 1.1
|[[provider_time]] <<provider_time,time>> |>= 0.9
|[[provider_random]] <<provider_random,random>> |>= 3
|[[provider_utils]] <<provider_utils,utils>> |>= 1.6
|[[provider_argocd]] <<provider_argocd,argocd>> |>= 5
|[[provider_null]] <<provider_null,null>> |>= 3
|[[provider_utils]] <<provider_utils,utils>> |>= 1.6
|===
= Resources
Expand Down Expand Up @@ -753,7 +753,7 @@ Description: Map of extra accounts that were created and their tokens.
|[[input_target_revision]] <<input_target_revision,target_revision>>
|Override of target revision of the application chart.
|`string`
|`"v4.5.0"`
|`"v5.0.0"`
|no
|[[input_cluster_issuer]] <<input_cluster_issuer,cluster_issuer>>
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,9 @@ Description: The Argo CD accounts pipeline tokens.
[cols="a,a",options="header,autowidth"]
|===
|Name |Version
|[[provider_random]] <<provider_random,random>> |>= 3
|[[provider_jwt]] <<provider_jwt,jwt>> |>= 1.1
|[[provider_time]] <<provider_time,time>> |>= 0.9
|[[provider_random]] <<provider_random,random>> |>= 3
|[[provider_helm]] <<provider_helm,helm>> |>= 2
|[[provider_argocd]] <<provider_argocd,argocd>> |>= 6
|[[provider_utils]] <<provider_utils,utils>> |>= 1.6
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ variable "argocd_labels" {
variable "target_revision" {
description = "Override of target revision of the application chart."
type = string
default = "v4.5.0" # x-release-please-version
default = "v5.0.0" # x-release-please-version
}

variable "cluster_issuer" {
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.5.0
5.0.0

0 comments on commit 7126b0e

Please sign in to comment.