Skip to content

Commit

Permalink
chore(deps): bump software.amazon.awssdk:s3 from 2.20.89 to 2.20.91 (#…
Browse files Browse the repository at this point in the history
…522)

* chore(deps): bump software.amazon.awssdk:s3 from 2.20.89 to 2.20.91

Bumps software.amazon.awssdk:s3 from 2.20.89 to 2.20.91.

---
updated-dependencies:
- dependency-name: software.amazon.awssdk:s3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix: reinstantiate MockWebServer every time

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Paul Latzelsperger <[email protected]>
  • Loading branch information
dependabot[bot] and paullatzelsperger authored Jun 23, 2023
1 parent 13a5fc9 commit 7be1012
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,17 @@ public class SsiHttpConsumerPullWithProxyInMemoryTest extends AbstractHttpConsum
PLATO_BPN,
platoSsiConfiguration()
);
MockWebServer miwSokratesServer = new MockWebServer();

MockWebServer miwPlatoServer = new MockWebServer();

MockWebServer oauthServer = new MockWebServer();

private MockWebServer oauthServer;
private MockWebServer miwPlatoServer;
private MockWebServer miwSokratesServer;

@BeforeEach
void setup() throws IOException {
miwSokratesServer = new MockWebServer();
miwPlatoServer = new MockWebServer();
oauthServer = new MockWebServer();

miwSokratesServer.start(MIW_SOKRATES_PORT);
miwSokratesServer.setDispatcher(new MiwDispatcher(SOKRATES_BPN, SUMMARY_VC_TEMPLATE, PLATO_DSP_CALLBACK));

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ mockito = "5.2.0"
restAssured = "5.3.1"
apache-sshd = "2.10.0"
testcontainers = "1.18.3"
aws = "2.20.89"
aws = "2.20.91"
rsApi = "3.1.0"
jupiter = "5.9.3"
assertj = "3.24.2"
Expand Down

0 comments on commit 7be1012

Please sign in to comment.