diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d6a5f76bd2..6db3039d0c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.8.0" + ".": "0.9.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 30d2098471..e8a8023a93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,36 @@ # Changelog +## [0.9.0](https://github.com/infrahq/infra/compare/v0.8.0...v0.9.0) (2022-04-06) + + +### ⚠ BREAKING CHANGES + +* change LoginResponse polymorphicId to polymorphicID +* **api:** replaces /v1/user and /v1/machines with /v1/identities + +### Features + +* add expiry to login response ([484021b](https://github.com/infrahq/infra/commit/484021b26c231c1aac0923cadc6ffb7cb2453239)) +* **cli:** check expiry for authenticated commands ([a9c23ef](https://github.com/infrahq/infra/commit/a9c23ef224c2577dd5be4c4ca9abb62672ad6d0e)) + + +### Bug Fixes + +* bump openapi to appropriate version ([c99fc3d](https://github.com/infrahq/infra/commit/c99fc3df8e309ab4aea131fda3ac6c5eeffc29ff)) +* **cli:** check min requirement for new password ([#1435](https://github.com/infrahq/infra/issues/1435)) ([4777b9e](https://github.com/infrahq/infra/commit/4777b9ed2de14e948c8fcacc010a118dcc3fbc85)) +* delete grants on user delete ([#1447](https://github.com/infrahq/infra/issues/1447)) ([26cb088](https://github.com/infrahq/infra/commit/26cb08898c69a3c4a5ef001d17cec9b6c63fa167)) +* do not allow users to delete themselves ([#1473](https://github.com/infrahq/infra/issues/1473)) ([4de92e4](https://github.com/infrahq/infra/commit/4de92e45fec7186ee8ba55820cb1324dbb955014)) + + +### improve + +* **api:** unify users and machine ([c76073d](https://github.com/infrahq/infra/commit/c76073dc6fced90595ffc86aaf85b3582eac657a)) + + +### maintain + +* use json tag for property names ([5fa6413](https://github.com/infrahq/infra/commit/5fa64136da43045b84a8593d24b927cdf588f1fd)) + ## [0.8.0](https://github.com/infrahq/infra/compare/v0.7.0...v0.8.0) (2022-03-30) diff --git a/docs/api/openapi3.json b/docs/api/openapi3.json index 5aeaa6fed3..1eed73c460 100644 --- a/docs/api/openapi3.json +++ b/docs/api/openapi3.json @@ -413,7 +413,7 @@ "url": "https://www.apache.org/licenses/LICENSE-2.0.html" }, "title": "Infra API", - "version": "0.8.0" + "version": "0.9.0" }, "paths": { "/v1/access-keys": { diff --git a/docs/operator-guides/upgrading-infra.md b/docs/operator-guides/upgrading-infra.md index 4d00356691..7cf2b3e069 100644 --- a/docs/operator-guides/upgrading-infra.md +++ b/docs/operator-guides/upgrading-infra.md @@ -114,8 +114,8 @@ Binary releases can be downloaded and installed directly from the repository. ```bash - curl -sSL https://github.com/infrahq/infra/releases/download/v0.7.0/infra_0.7.0_linux_x86_64.zip - unzip -d /usr/local/bin infra_0.7.0_linux_x86_64.zip + curl -sSL https://github.com/infrahq/infra/releases/download/v0.9.0/infra_0.7.0_linux_x86_64.zip + unzip -d /usr/local/bin infra_0.9.0_linux_x86_64.zip ``` @@ -125,8 +125,8 @@ Binary releases can be downloaded and installed directly from the repository. ```bash - curl -sSL https://github.com/infrahq/infra/releases/download/v0.7.0/infra_0.7.0_linux_arm64.zip - unzip -d /usr/local/bin infra_0.7.0_linux_arm64.zip + curl -sSL https://github.com/infrahq/infra/releases/download/v0.9.0/infra_0.7.0_linux_arm64.zip + unzip -d /usr/local/bin infra_0.9.0_linux_arm64.zip ``` diff --git a/helm/charts/infra/Chart.yaml b/helm/charts/infra/Chart.yaml index 876e3e0286..f043b5a919 100644 --- a/helm/charts/infra/Chart.yaml +++ b/helm/charts/infra/Chart.yaml @@ -3,6 +3,6 @@ name: infra description: A Helm chart for Infra type: application ## {x-release-please-start-version} -version: 0.8.0 -appVersion: 0.8.0 +version: 0.9.0 +appVersion: 0.9.0 ## {x-release-please-end} diff --git a/internal/version.go b/internal/version.go index da507ccdbe..8c885d365c 100644 --- a/internal/version.go +++ b/internal/version.go @@ -3,7 +3,7 @@ package internal var ( Branch = "main" // {x-release-please-start-version} - Version = "0.8.0" + Version = "0.9.0" // {x-release-please-end} Commit = "" Date = ""