Skip to content

Commit

Permalink
maintain(main): release 0.9.0 (#1444)
Browse files Browse the repository at this point in the history
  • Loading branch information
infrahq-ci authored Apr 6, 2022
1 parent 4de92e4 commit 823de10
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.8.0"
".": "0.9.0"
}
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion docs/api/openapi3.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
8 changes: 4 additions & 4 deletions docs/operator-guides/upgrading-infra.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ Binary releases can be downloaded and installed directly from the repository.

<!-- {x-release-please-start-version} -->
```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
```
<!-- {x-release-please-end} -->
</details>
Expand All @@ -125,8 +125,8 @@ Binary releases can be downloaded and installed directly from the repository.

<!-- {x-release-please-start-version} -->
```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
```
<!-- {x-release-please-end} -->
</details>
Expand Down
4 changes: 2 additions & 2 deletions helm/charts/infra/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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}
2 changes: 1 addition & 1 deletion internal/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ""
Expand Down

0 comments on commit 823de10

Please sign in to comment.