Skip to content

Commit

Permalink
chore(dependencies): Autobump fiatVersion (#5655)
Browse files Browse the repository at this point in the history
* chore(dependencies): Autobump fiatVersion

* fix(test): keep up with Permissions changes from spinnaker/fiat#854

Co-authored-by: root <root@69a0efe35201>
Co-authored-by: David Byron <dbyron@salesforce.com>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
4 people committed Mar 11, 2022
1 parent cb445c8 commit 90c8a99
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import com.netflix.spinnaker.credentials.definition.CredentialsDefinition;
import com.netflix.spinnaker.fiat.model.Authorization;
import io.spinnaker.test.security.TestAccount;
import java.util.List;
import java.util.Set;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.ImportAutoConfiguration;
Expand All @@ -47,7 +47,7 @@ class AccountDefinitionMapperTest {
void canConvertAdditionalAccountTypes() throws JsonProcessingException {
var account = new TestAccount();
account.setData("name", "foo");
account.getPermissions().add(Authorization.READ, List.of("dev", "sre"));
account.getPermissions().add(Authorization.READ, Set.of("dev", "sre"));
account.getPermissions().add(Authorization.WRITE, "sre");
account.setData("password", "hunter2");
assertEquals(account, mapper.convertFromString(mapper.convertToString(account), "test"));
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
fiatVersion=1.27.1
fiatVersion=1.30.0
korkVersion=7.131.0
org.gradle.parallel=true
spinnakerGradleVersion=8.22.0
Expand Down

0 comments on commit 90c8a99

Please sign in to comment.