Skip to content

Commit

Permalink
Merge pull request #468 from cderici/update-changelog-rc0.12.0
Browse files Browse the repository at this point in the history
Update version and change log for 0.12.0 candidate release
  • Loading branch information
cderici authored Apr 23, 2024
2 parents 39e1769 + fa1d2d5 commit 833bcfe
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 7 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 0.12.0 (April 22, 2024)

NOTES:
* **This release requires juju controller version 2.9.49 or later juju.**
* This release uses juju client api code from the juju 3.5-beta1 candidate release.
* The added JAAS login enhancements requires Juju controller version 3.5.0 or higher.
* The added Juju secrets support requires Juju controller version 3.4.0 or higher.

ENHANCEMENTS:
* Support for user secret management is added. You can now use `juju_secret` and `juju_access_secret` resources to create and manage secrets, as well as grant/revoke access to the applications in your plan. You can also use `juju_secret` data source in your configuration to access a secret.
* Provider config is enhanced with support for Client ID and secret to enable logging in to JAAS using client credentials.

BUG FIXES:

* Channel for charms in an application resource requires both track and risk (e.g., `latest` vs `latest/stable`). A validation for channel in application resource is added by @Aflynn50 in https://github.com/juju/terraform-provider-juju/pull/447


## 0.11.0 (March 18, 2024)

NOTES:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ go-install:
GOOS=$(shell go env GOOS)
GOARCH=$(shell go env GOARCH)
GOPATH=$(shell go env GOPATH)
EDGEVERSION=0.11.0
EDGEVERSION=0.12.0
REGISTRY_DIR=~/.terraform.d/plugins/registry.terraform.io/juju/juju/${EDGEVERSION}/${GOOS}_${GOARCH}

.PHONY: install
Expand Down
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Work is ongoing to include support for more of the juju CLIs capabilities within

## Prerequisites

* [Juju][0] `2.9.33+`
* [Juju][0] `2.9.49+`

## Authentication

Expand Down Expand Up @@ -90,7 +90,7 @@ Terraform 0.13 and later:
terraform {
required_providers {
juju = {
version = "~> 0.11.0"
version = "~> 0.12.0"
source = "juju/juju"
}
}
Expand Down Expand Up @@ -149,7 +149,7 @@ resource "juju_integration" "wp_to_percona" {
Terraform 0.12 and earlier:
```terraform
provider "juju" {
version = "~> 0.11.0"
version = "~> 0.12.0"
controller_addresses = "10.225.205.241:17070,10.225.205.242:17070"
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
juju = {
version = "~> 0.11.0"
version = "~> 0.12.0"
source = "juju/juju"
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider_0.12.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
provider "juju" {
version = "~> 0.11.0"
version = "~> 0.12.0"

controller_addresses = "10.225.205.241:17070,10.225.205.242:17070"

Expand Down
2 changes: 1 addition & 1 deletion templates/index.md.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Work is ongoing to include support for more of the juju CLIs capabilities within

## Prerequisites

* [Juju][0] `2.9.33+`
* [Juju][0] `2.9.49+`

## Authentication

Expand Down

0 comments on commit 833bcfe

Please sign in to comment.