diff --git a/CHANGELOG.md b/CHANGELOG.md index 81eab2e95..2d160259c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,13 @@ ## [Unreleased] +## [0.11.14] - 2025-03-17 + - Fix a provider crash when interacting with elasticstack_kibana_data_view resources created with 0.11.0. ([#979](https://github.com/elastic/terraform-provider-elasticstack/pull/979)) - Add `max_primary_shard_docs` condition to ILM rollover ([#845](https://github.com/elastic/terraform-provider-elasticstack/pull/845)) - Add missing entries to `data_view.field_formats.params` ([#1001](https://github.com/elastic/terraform-provider-elasticstack/pull/1001)) - Fix namespaces inconsistency when creating elasticstack_kibana_data_view resources ([#1011](https://github.com/elastic/terraform-provider-elasticstack/pull/1011)) - Update rule ID documentation. ([#1047](https://github.com/elastic/terraform-provider-elasticstack/pull/1047)) -- Mark `elasticstack_kibana_action_connector.secrets` as sensitive. ([#1045](https://github.com/elastic/terraform-provider-elasticstack/pull/1045) +- Mark `elasticstack_kibana_action_connector.secrets` as sensitive. ([#1045](https://github.com/elastic/terraform-provider-elasticstack/pull/1045)) ## [0.11.13] - 2025-01-09 @@ -14,6 +16,7 @@ - Support 8.17.0 in acc tests ([#969](https://github.com/elastic/terraform-provider-elasticstack/pull/969)). - Support 9.0.0 in acc tests ([#954](https://github.com/elastic/terraform-provider-elasticstack/pull/954)). - Support several ssl fields in `elasticstack_kibana_synthetics_monitor` ([#967](https://github.com/elastic/terraform-provider-elasticstack/pull/967)). +- HTTP 400 Bad Request When Creating elasticstack_kibana_security_role ([933](https://github.com/elastic/terraform-provider-elasticstack/issues/933)). ## [0.11.12] - 2024-12-16 @@ -413,7 +416,8 @@ - Initial set of docs - CI integration -[Unreleased]: https://github.com/elastic/terraform-provider-elasticstack/compare/v0.11.13...HEAD +[Unreleased]: https://github.com/elastic/terraform-provider-elasticstack/compare/v0.11.14...HEAD +[0.11.14]: https://github.com/elastic/terraform-provider-elasticstack/compare/v0.11.13...v0.11.14 [0.11.13]: https://github.com/elastic/terraform-provider-elasticstack/compare/v0.11.12...v0.11.13 [0.11.12]: https://github.com/elastic/terraform-provider-elasticstack/compare/v0.11.11...v0.11.12 [0.11.11]: https://github.com/elastic/terraform-provider-elasticstack/compare/v0.11.10...v0.11.11 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9c69b9d6d..8e1adf50c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -47,4 +47,17 @@ Create a PR and check acceptance test matrix is green. ## Run provider with local terraform -TBD \ No newline at end of file +TBD + +## Releasing + +Releasing is implemented in CI pipeline. + +To release a new provider version: + +* Create PR which +- updates Makefile with the new provider VERSION (e.g. `VERSION ?= 0.11.13`); +- updates CHANGELOG.md with the list of changes being released. +[Example](https://github.com/elastic/terraform-provider-elasticstack/commit/be866ebc918184e843dc1dd2f6e2e1b963da386d). + +* Once the PR merged, the release CI pipeline can be started by pushing a new release tag to `main` branch. \ No newline at end of file diff --git a/Makefile b/Makefile index 5a765ac6f..dc345ccc0 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,7 @@ .DEFAULT_GOAL = help SHELL := /bin/bash - -VERSION ?= 0.11.13 +VERSION ?= 0.11.14 NAME = elasticstack BINARY = terraform-provider-${NAME}