Skip to content

Commit adbd8ad

Browse files
authored
Prepare release 0.11.14 (#1061)
* Prepare release 0.11.14 * Fix CHANGELOG.md
1 parent 3729993 commit adbd8ad

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
## [Unreleased]
22

3+
## [0.11.14] - 2025-03-17
4+
35
- 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))
46
- Add `max_primary_shard_docs` condition to ILM rollover ([#845](https://github.com/elastic/terraform-provider-elasticstack/pull/845))
57
- Add missing entries to `data_view.field_formats.params` ([#1001](https://github.com/elastic/terraform-provider-elasticstack/pull/1001))
68
- Fix namespaces inconsistency when creating elasticstack_kibana_data_view resources ([#1011](https://github.com/elastic/terraform-provider-elasticstack/pull/1011))
79
- Update rule ID documentation. ([#1047](https://github.com/elastic/terraform-provider-elasticstack/pull/1047))
8-
- Mark `elasticstack_kibana_action_connector.secrets` as sensitive. ([#1045](https://github.com/elastic/terraform-provider-elasticstack/pull/1045)
10+
- Mark `elasticstack_kibana_action_connector.secrets` as sensitive. ([#1045](https://github.com/elastic/terraform-provider-elasticstack/pull/1045))
911

1012
## [0.11.13] - 2025-01-09
1113

@@ -14,6 +16,7 @@
1416
- Support 8.17.0 in acc tests ([#969](https://github.com/elastic/terraform-provider-elasticstack/pull/969)).
1517
- Support 9.0.0 in acc tests ([#954](https://github.com/elastic/terraform-provider-elasticstack/pull/954)).
1618
- Support several ssl fields in `elasticstack_kibana_synthetics_monitor` ([#967](https://github.com/elastic/terraform-provider-elasticstack/pull/967)).
19+
- HTTP 400 Bad Request When Creating elasticstack_kibana_security_role ([933](https://github.com/elastic/terraform-provider-elasticstack/issues/933)).
1720

1821
## [0.11.12] - 2024-12-16
1922

@@ -413,7 +416,8 @@
413416
- Initial set of docs
414417
- CI integration
415418
416-
[Unreleased]: https://github.com/elastic/terraform-provider-elasticstack/compare/v0.11.13...HEAD
419+
[Unreleased]: https://github.com/elastic/terraform-provider-elasticstack/compare/v0.11.14...HEAD
420+
[0.11.14]: https://github.com/elastic/terraform-provider-elasticstack/compare/v0.11.13...v0.11.14
417421
[0.11.13]: https://github.com/elastic/terraform-provider-elasticstack/compare/v0.11.12...v0.11.13
418422
[0.11.12]: https://github.com/elastic/terraform-provider-elasticstack/compare/v0.11.11...v0.11.12
419423
[0.11.11]: https://github.com/elastic/terraform-provider-elasticstack/compare/v0.11.10...v0.11.11

CONTRIBUTING.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,17 @@ Create a PR and check acceptance test matrix is green.
4747

4848
## Run provider with local terraform
4949

50-
TBD
50+
TBD
51+
52+
## Releasing
53+
54+
Releasing is implemented in CI pipeline.
55+
56+
To release a new provider version:
57+
58+
* Create PR which
59+
- updates Makefile with the new provider VERSION (e.g. `VERSION ?= 0.11.13`);
60+
- updates CHANGELOG.md with the list of changes being released.
61+
[Example](https://github.com/elastic/terraform-provider-elasticstack/commit/be866ebc918184e843dc1dd2f6e2e1b963da386d).
62+
63+
* Once the PR merged, the release CI pipeline can be started by pushing a new release tag to `main` branch.

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
.DEFAULT_GOAL = help
22
SHELL := /bin/bash
33

4-
5-
VERSION ?= 0.11.13
4+
VERSION ?= 0.11.14
65

76
NAME = elasticstack
87
BINARY = terraform-provider-${NAME}

0 commit comments

Comments
 (0)