Skip to content

Commit da2f835

Browse files
authored
DXE-4723 Merge pull request #89 from akamai/release/v2.1.0
Release/v2.1.0
2 parents 795a667 + 3929fb5 commit da2f835

File tree

159 files changed

+29251
-453
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

159 files changed

+29251
-453
lines changed

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
# RELEASE NOTES
22

3-
## 2.0.0 (Jan 5, 2025)
3+
## 2.1.0 (Apr 3, 2025)
4+
5+
### FEATURES/ENHANCEMENTS:
6+
7+
* General
8+
* Migrated to Go `1.23.6` and adopted a semver-compliant Go directive.
9+
10+
* PAPI
11+
* Added the `use_hostname_bucket` attribute to the exported `akamai_property` and `akamai_property_bootstrap` resources.
12+
* Updated an export for a property configuration to include the `akamai_property_hostname_bucket` resource.
13+
* Added support for the new rule format `v2025-02-18`.
14+
15+
### BUG FIXES:
16+
17+
* General
18+
* Fixed inserting escape sequences that do not use a backslash ([#83](https://github.com/akamai/cli-terraform/issues/83)).
19+
20+
## 2.0.0 (Feb 5, 2025)
421

522
### BREAKING CHANGES:
623

Makefile

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
GOIMPORTS_VERSION = v0.24.0
2+
GOCOV_VERSION = v1.1.0
3+
GO_JUNIT_REPORT_VERSION = v2.1.0
4+
GOCOVXML_VERSION = v1.1.0
5+
GOLANGCI_LINT_VERSION = v1.63.4
6+
17
BIN = $(CURDIR)/bin
28
GOCMD = go
39
GOTEST = $(GOCMD) test
@@ -6,7 +12,6 @@ M = $(shell echo ">")
612

713
# Until v0.25.0 is not fixed, we have to use previous version. To install it, we must enable module aware mode.
814
GOIMPORTS = $(BIN)/goimports
9-
GOIMPORTS_VERSION = v0.24.0
1015
# Rule to install goimports with version pinning
1116
$(GOIMPORTS): | $(BIN) ; $(info $(M) Installing goimports $(GOIMPORTS_VERSION)...)
1217
$Q env GO111MODULE=on GOBIN=$(BIN) $(GOCMD) install golang.org/x/tools/cmd/goimports@$(GOIMPORTS_VERSION)
@@ -17,21 +22,20 @@ $(BIN)/%: | $(BIN) ; $(info $(M) Installing $(PACKAGE)...)
1722
env GOBIN=$(BIN) $(GOCMD) install $(PACKAGE)
1823

1924
GOCOV = $(BIN)/gocov
20-
$(BIN)/gocov: PACKAGE=github.com/axw/gocov/gocov@v1.1.0
25+
$(BIN)/gocov: PACKAGE=github.com/axw/gocov/gocov@$(GOCOV_VERSION)
2126

2227
GOCOVXML = $(BIN)/gocov-xml
23-
$(BIN)/gocov-xml: PACKAGE=github.com/AlekSi/gocov-xml@v1.1.0
28+
$(BIN)/gocov-xml: PACKAGE=github.com/AlekSi/gocov-xml@$(GOCOVXML_VERSION)
2429

2530
GOJUNITREPORT = $(BIN)/go-junit-report
26-
$(BIN)/go-junit-report: PACKAGE=github.com/jstemmer/go-junit-report/v2@v2.1.0
31+
$(BIN)/go-junit-report: PACKAGE=github.com/jstemmer/go-junit-report/v2@$(GO_JUNIT_REPORT_VERSION)
2732

2833
TFLINT = $(BIN)/tflint
2934
$(BIN)/tflint: $(BIN) ; $(info $(M) Installing tflint...)
3035
@export TFLINT_INSTALL_PATH=$(BIN); \
3136
curl -sSfL https://raw.githubusercontent.com/terraform-linters/tflint/master/install_linux.sh | bash
3237

3338
GOLANGCILINT = $(BIN)/golangci-lint
34-
GOLANGCI_LINT_VERSION = v1.63.4
3539
$(BIN)/golangci-lint: ; $(info $(M) Installing golangci-lint...)
3640
@curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(BIN) $(GOLANGCI_LINT_VERSION)
3741

0 commit comments

Comments
 (0)