diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b5ddef8d1a..d8e73c39bd 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.11.0" + ".": "0.11.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 321f7ff976..c441bd8df3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +### [0.11.1](https://github.com/infrahq/infra/compare/v0.11.0...v0.11.1) (2022-04-27) + + +### Features + +* import identities through config ([8990200](https://github.com/infrahq/infra/commit/899020095ab0100cade1a6565149dea1d8703662)) +* remove admin access key config ([d72ee95](https://github.com/infrahq/infra/commit/d72ee957eac6b0c0fc5fe2e12147518dedd07015)) +* User interface refresh ([#1704](https://github.com/infrahq/infra/issues/1704)) ([4826baf](https://github.com/infrahq/infra/commit/4826bafedb1d8db140d72c500d80da454a503015)) + + +### Bug Fixes + +* add back local users to quickstart ([#1748](https://github.com/infrahq/infra/issues/1748)) ([5278f2f](https://github.com/infrahq/infra/commit/5278f2f01c4e1f5692df62779811b6667c5ef226)) +* connector access key not found when connector is disabled ([51609b7](https://github.com/infrahq/infra/commit/51609b747bb7c6c440ad61cf31be08c7079330c6)) +* do not look up k8s name when provided ([#1702](https://github.com/infrahq/infra/issues/1702)) ([95c8eff](https://github.com/infrahq/infra/commit/95c8effd7532e2f0d6bf3527d1bae2b09c989ccd)) +* helm chart values.yaml for ui ([#1712](https://github.com/infrahq/infra/issues/1712)) ([1c63c03](https://github.com/infrahq/infra/commit/1c63c039713207297930443a322a85b513f2c0b4)) +* only use color logging with a terminal ([d8d9a4d](https://github.com/infrahq/infra/commit/d8d9a4d58b4263befd6e9b53f7a32d156668cc71)) +* use common ca instead of sni to generate connector certificates ([#1687](https://github.com/infrahq/infra/issues/1687)) ([43d4c3f](https://github.com/infrahq/infra/commit/43d4c3f710a8e6a3f2190d15bee2521d82da01bf)) + ## [0.11.0](https://github.com/infrahq/infra/compare/v0.10.3...v0.11.0) (2022-04-22) diff --git a/docs/api/openapi3.json b/docs/api/openapi3.json index 9a72aa2e6d..bed3d77c93 100644 --- a/docs/api/openapi3.json +++ b/docs/api/openapi3.json @@ -413,7 +413,7 @@ "url": "https://www.elastic.co/licensing/elastic-license" }, "title": "Infra API", - "version": "0.11.0" + "version": "0.11.1" }, "paths": { "/v1/access-keys": { diff --git a/docs/install/upgrading.md b/docs/install/upgrading.md index 75987679b6..7e7bb9cf28 100644 --- a/docs/install/upgrading.md +++ b/docs/install/upgrading.md @@ -110,7 +110,7 @@ Binary releases can be downloaded and installed directly from the repository. ```bash - LATEST=0.11.0 + LATEST=0.11.1 curl -sSL https://github.com/infrahq/infra/releases/download/v$LATEST/infra_${LATEST}_linux_x86_64.zip unzip -d /usr/local/bin infra_${LATEST}_linux_x86_64.zip ``` @@ -122,7 +122,7 @@ Binary releases can be downloaded and installed directly from the repository. ```bash - LATEST=0.11.0 + LATEST=0.11.1 curl -sSL https://github.com/infrahq/infra/releases/download/v$LATEST/infra_${LATEST}_linux_arm64.zip unzip -d /usr/local/bin infra_${LATEST}_linux_arm64.zip ``` diff --git a/helm/charts/infra/Chart.yaml b/helm/charts/infra/Chart.yaml index a3048f63d7..37cc000583 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.11.0 -appVersion: 0.11.0 +version: 0.11.1 +appVersion: 0.11.1 ## {x-release-please-end} diff --git a/internal/version.go b/internal/version.go index c19da20b68..ebe21ef8c4 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.11.0" + Version = "0.11.1" // {x-release-please-end} Commit = "" Date = ""