Skip to content

Commit

Permalink
DXE-1225 Merge pull request #157 from akamai/release/v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lkowalsk-akamai-com authored Jul 4, 2022
2 parents 8183bd0 + d415486 commit 7f6c610
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# EDGEGRID GOLANG RELEASE NOTES

## 1.2.0 (Jul 04, 2022)

#### FEATURES/ENHANCEMENTS:
* Added GTM API v1.5 support

## 1.1.1 (May 11, 2021)

#### BUG FIXES
Expand Down
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.PHONY: all
all: test

.PHONY: test
test: ; $(info > Running tests...) @
go test -v ./...
4 changes: 2 additions & 2 deletions configgtm-v1_5/property_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ func TestCreateProperty(t *testing.T) {
testProperty.HandoutMode = "normal"
testProperty.FailoverDelay = 0
testProperty.FailbackDelay = 0
testProperty.TrafficTargets = []*TrafficTarget{&TrafficTarget{DatacenterId: 3131, Enabled: true, Servers: []string{"1.2.3.4"}, Weight: 100.0}}
testProperty.TrafficTargets = []*TrafficTarget{{DatacenterId: 3131, Enabled: true, Servers: []string{"1.2.3.4"}, Weight: 100.0}}

statresp, err := testProperty.Create(gtmTestDomain)
assert.NoError(t, err)
Expand Down Expand Up @@ -380,7 +380,7 @@ func TestUpdateProperty(t *testing.T) {
"healthMultiplier" : null,
"healthThreshold" : null,
"lastModified" : "2019-06-14T19:46:17.818+00:00",
livenessTests" : [ {
"livenessTests" : [ {
"name": "liveness-1",
"peerCertificateVerification": false,
"testInterval": 30,
Expand Down
1 change: 1 addition & 0 deletions scripts/semtag
Original file line number Diff line number Diff line change
Expand Up @@ -589,6 +589,7 @@ case $ACTION in
if [ "$forcetag" == "false" ]; then
if [ -n "$diff_dev" ] && [ -n "$diff" ] && [ -n "$diff_v2" ]; then
echo "ERROR: Branch must be updated with develop, master, or v2 for final versions"
fi
if [ -n "$diff" ]; then
echo "ERROR: Branch must be updated with master for final versions"
exit 1
Expand Down

0 comments on commit 7f6c610

Please sign in to comment.