Skip to content

Commit

Permalink
fix(fiat-api): fiatVersion 1.7.1 (#4120)
Browse files Browse the repository at this point in the history
Fixes serialization issue in fiat-api version mismatch with new values in Authorizations enum
  • Loading branch information
cfieber committed Oct 24, 2019
1 parent 55f0961 commit ecb95c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class CredentialsControllerSpec extends Specification {

List<Map> parsedResponse = new JsonSlurper().parseText(result.response.contentAsString) as List

parsedResponse == [[name: "test", environment: "env", accountType: "acctType", cloudProvider: "testProvider", type: "testProvider", requiredGroupMembership: ["test"], permissions: [READ:["test"], WRITE:["test"], EXECUTE:[], CREATE:[]], challengeDestructiveActions: false, primaryAccount: false, providerVersion: "v1", skin: "v1"]]
parsedResponse == [[name: "test", environment: "env", accountType: "acctType", cloudProvider: "testProvider", type: "testProvider", requiredGroupMembership: ["test"], permissions: [READ:["test"], WRITE:["test"]], challengeDestructiveActions: false, primaryAccount: false, providerVersion: "v1", skin: "v1"]]
}

static class TestNamedAccountCredentials implements AccountCredentials<Map> {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Oct 23 19:56:17 UTC 2019
includeCloudProviders=all
fiatVersion=1.7.0
fiatVersion=1.7.1
enablePublishing=false
korkVersion=6.14.3
spinnakerGradleVersion=7.0.2
Expand Down

0 comments on commit ecb95c2

Please sign in to comment.