Skip to content

Commit f425d41

Browse files
authored
Merge pull request #41 from olksdr/chore/add-changelog
Add CHANGELOG.md file
2 parents ed9adbd + c98bf87 commit f425d41

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

CHANGELOG.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1-
## 0.1.0 (Unreleased)
1+
## [Unreleased]
2+
### Added
3+
- New resource to manage Elasticsearch indices ([#38](https://github.com/elastic/terraform-provider-elasticstack/pull/38))
4+
- The `insecure` option to the Elasticsearch provider configuration to ignore certificate verification ([#36](https://github.com/elastic/terraform-provider-elasticstack/pull/36))
5+
- The `ca_file` option to the Elasticsearch provider configuration to provide path to the custom root certificate file ([#35](https://github.com/elastic/terraform-provider-elasticstack/pull/35))
6+
- Documentation templates for all the exisiting resources ([#32](https://github.com/elastic/terraform-provider-elasticstack/pull/32))
27

3-
BACKWARDS INCOMPATIBILITIES / NOTES:
8+
### Fixed
9+
- Identify missing or deleted resources in the Elasticsearch cluster and make sure Terraform can re-create them ([#40](https://github.com/elastic/terraform-provider-elasticstack/pull/40))
10+
11+
### Changed
12+
- **[Breaking]** Rename `aliases` configuration option in
13+
`elasticstack_elasticsearch_index_template` resource to singular `alias`
14+
15+
## [0.1.0] - 2021-12-20
16+
### Added
17+
- Initial set of the resources to gather feedback from the community
18+
- Initial set of docs
19+
- CI integration
20+
21+
[Unreleased]: https://github.com/elastic/terraform-provider-elasticstack/compare/v0.1.0...HEAD
22+
[0.1.0]: https://github.com/elastic/terraform-provider-elasticstack/releases/tag/v0.1.0

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,11 @@ ifndef GITHUB_TOKEN
111111
endif
112112

113113

114+
.PHONY: release-notes
115+
release-notes: ## greps UNRELEASED notes from the CHANGELOG
116+
@ awk '/## \[Unreleased\]/{flag=1;next}/## \[.*\] - /{flag=0}flag' CHANGELOG.md
117+
118+
114119
.PHONY: help
115120
help: ## this help
116121
@ awk 'BEGIN {FS = ":.*##"; printf "Usage: make \033[36m<target>\033[0m\n\nTargets:\n"} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m%-10s\033[0m\t%s\n", $$1, $$2 }' $(MAKEFILE_LIST) | column -s$$'\t' -t

0 commit comments

Comments
 (0)