Skip to content

Commit

Permalink
misc: upgrade aws-crt-java version (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
lauzadis authored Oct 15, 2024
1 parent 117246f commit db6a44a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changes/963ddb76-2622-44d7-bb41-3439a5f033a5.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"id": "963ddb76-2622-44d7-bb41-3439a5f033a5",
"type": "misc",
"description": "Upgrade aws-crt-java to 0.31.3"
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class ProfileCredentialsProviderTest {

@Test
fun `it should create a provider for a valid profile`() = runBlocking {
val configPath = Files.createTempFile("ProfileCredentialsProviderTest_config", "")
val credsPath = Files.createTempFile("ProfileCredentialsProviderTest_creds", "")
credsPath.toFile().writeText(
"""
Expand All @@ -30,6 +31,7 @@ class ProfileCredentialsProviderTest {

try {
val provider = ProfileCredentialsProvider.build {
configFileName = configPath.toString()
credentialsFileName = credsPath.toString()
}
val actual = provider.getCredentials()
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ kotlin-version = "2.0.21"
aws-kotlin-repo-tools-version = "0.4.12"

# libs
crt-java-version = "0.30.5"
crt-java-version = "0.31.3"
coroutines-version = "1.9.0"

# testing
Expand Down

0 comments on commit db6a44a

Please sign in to comment.