Skip to content

Commit

Permalink
Upgrading Frequency
Browse files Browse the repository at this point in the history
Also updating testcontainers as it's not playing nice with the latest verswion of Docker Desktop (or more likely Docker itself)

As it was not playing nice with the Docker Desktop
  • Loading branch information
pfrank13 committed Jan 7, 2025
1 parent 6ebd8e9 commit 97ec42c
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ dependencies {

testImplementation project(':tests')

testImplementation 'org.testcontainers:testcontainers:1.17.3'
testImplementation 'org.testcontainers:junit-jupiter:1.17.3'
testImplementation 'org.testcontainers:testcontainers:1.20.1'
testImplementation 'org.testcontainers:junit-jupiter:1.20.1'
testImplementation 'org.awaitility:awaitility:4.2.0'
testImplementation 'org.hamcrest:hamcrest:2.2'

Expand Down
4 changes: 2 additions & 2 deletions pallet/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ dependencies {

testAnnotationProcessor project(':rpc:rpc-codegen')

testImplementation 'org.testcontainers:testcontainers:1.17.3'
testImplementation 'org.testcontainers:junit-jupiter:1.17.3'
testImplementation 'org.testcontainers:testcontainers:1.20.1'
testImplementation 'org.testcontainers:junit-jupiter:1.20.1'
testImplementation 'org.awaitility:awaitility:4.2.0'
testImplementation 'org.hamcrest:hamcrest:2.2'
}
4 changes: 2 additions & 2 deletions rpc/rpc-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ dependencies {

testAnnotationProcessor project(':scale:scale-codegen')

testImplementation 'org.testcontainers:testcontainers:1.17.3'
testImplementation 'org.testcontainers:junit-jupiter:1.17.3'
testImplementation 'org.testcontainers:testcontainers:1.20.1'
testImplementation 'org.testcontainers:junit-jupiter:1.20.1'
testImplementation 'org.awaitility:awaitility:4.2.0'
testImplementation 'org.hamcrest:hamcrest:2.2'
}
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ void testSignedExtra(boolean includeMetadataHash, String expectedHash) throws Ex
@ParameterizedTest
@CsvSource(
{
"false,0x830000000100000077000000000000000000000000000000000000000000000000000000000000777700000000000000000000000000000000000000000000000000000000000077",
"true,0x83000000010000007700000000000000000000000000000000000000000000000000000000000077770000000000000000000000000000000000000000000000000000000000007700",
"false,0x8d0000000100000077000000000000000000000000000000000000000000000000000000000000777700000000000000000000000000000000000000000000000000000000000077",
"true,0x8d000000010000007700000000000000000000000000000000000000000000000000000000000077770000000000000000000000000000000000000000000000000000000000007700",
}
)
void testSignedExtraAdditional(boolean includeMetadataHash, String expectedHash) throws Exception {
Expand Down
2 changes: 1 addition & 1 deletion tests/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dependencies {
implementation 'org.testcontainers:testcontainers:1.17.3'
implementation 'org.testcontainers:testcontainers:1.20.1'
implementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.strategyobject.substrateclient.tests.containers;

public class FrequencyVersion {
public static final String CURRENT_VERSION = "v1.15.0";
public static final Long SPEC = 131L;
public static final String CURRENT_VERSION = "v1.15.3";
public static final Long SPEC = 141L;

private FrequencyVersion() {
}
Expand Down
6 changes: 3 additions & 3 deletions transport/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ dependencies {

annotationProcessor project(':scale:scale-codegen')
testImplementation project(':tests')
testImplementation 'org.testcontainers:testcontainers:1.17.3'
testImplementation 'org.testcontainers:junit-jupiter:1.17.3'
testImplementation 'org.testcontainers:toxiproxy:1.17.3'
testImplementation 'org.testcontainers:testcontainers:1.20.1'
testImplementation 'org.testcontainers:junit-jupiter:1.20.1'
testImplementation 'org.testcontainers:toxiproxy:1.20.1'
testImplementation 'org.awaitility:awaitility:4.2.0'
}

0 comments on commit 97ec42c

Please sign in to comment.