Skip to content

Commit 518fb34

Browse files
authored
Merge pull request #8 from ProjectLibertyLabs/chore/upgrade_frequency_1_15_3
Chore/upgrade frequency 1 15 3
2 parents 6ebd8e9 + 97ec42c commit 518fb34

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

api/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ dependencies {
1414

1515
testImplementation project(':tests')
1616

17-
testImplementation 'org.testcontainers:testcontainers:1.17.3'
18-
testImplementation 'org.testcontainers:junit-jupiter:1.17.3'
17+
testImplementation 'org.testcontainers:testcontainers:1.20.1'
18+
testImplementation 'org.testcontainers:junit-jupiter:1.20.1'
1919
testImplementation 'org.awaitility:awaitility:4.2.0'
2020
testImplementation 'org.hamcrest:hamcrest:2.2'
2121

pallet/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ dependencies {
1010

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

13-
testImplementation 'org.testcontainers:testcontainers:1.17.3'
14-
testImplementation 'org.testcontainers:junit-jupiter:1.17.3'
13+
testImplementation 'org.testcontainers:testcontainers:1.20.1'
14+
testImplementation 'org.testcontainers:junit-jupiter:1.20.1'
1515
testImplementation 'org.awaitility:awaitility:4.2.0'
1616
testImplementation 'org.hamcrest:hamcrest:2.2'
1717
}

rpc/rpc-api/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ dependencies {
1212

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

15-
testImplementation 'org.testcontainers:testcontainers:1.17.3'
16-
testImplementation 'org.testcontainers:junit-jupiter:1.17.3'
15+
testImplementation 'org.testcontainers:testcontainers:1.20.1'
16+
testImplementation 'org.testcontainers:junit-jupiter:1.20.1'
1717
testImplementation 'org.awaitility:awaitility:4.2.0'
1818
testImplementation 'org.hamcrest:hamcrest:2.2'
1919
}

rpc/rpc-api/src/test/java/com/strategyobject/substrateclient/rpc/api/SignedExtraTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ void testSignedExtra(boolean includeMetadataHash, String expectedHash) throws Ex
6969
@ParameterizedTest
7070
@CsvSource(
7171
{
72-
"false,0x830000000100000077000000000000000000000000000000000000000000000000000000000000777700000000000000000000000000000000000000000000000000000000000077",
73-
"true,0x83000000010000007700000000000000000000000000000000000000000000000000000000000077770000000000000000000000000000000000000000000000000000000000007700",
72+
"false,0x8d0000000100000077000000000000000000000000000000000000000000000000000000000000777700000000000000000000000000000000000000000000000000000000000077",
73+
"true,0x8d000000010000007700000000000000000000000000000000000000000000000000000000000077770000000000000000000000000000000000000000000000000000000000007700",
7474
}
7575
)
7676
void testSignedExtraAdditional(boolean includeMetadataHash, String expectedHash) throws Exception {

tests/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
dependencies {
2-
implementation 'org.testcontainers:testcontainers:1.17.3'
2+
implementation 'org.testcontainers:testcontainers:1.20.1'
33
implementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
44
}

tests/src/main/java/com/strategyobject/substrateclient/tests/containers/FrequencyVersion.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package com.strategyobject.substrateclient.tests.containers;
22

33
public class FrequencyVersion {
4-
public static final String CURRENT_VERSION = "v1.15.0";
5-
public static final Long SPEC = 131L;
4+
public static final String CURRENT_VERSION = "v1.15.3";
5+
public static final Long SPEC = 141L;
66

77
private FrequencyVersion() {
88
}

transport/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ dependencies {
77

88
annotationProcessor project(':scale:scale-codegen')
99
testImplementation project(':tests')
10-
testImplementation 'org.testcontainers:testcontainers:1.17.3'
11-
testImplementation 'org.testcontainers:junit-jupiter:1.17.3'
12-
testImplementation 'org.testcontainers:toxiproxy:1.17.3'
10+
testImplementation 'org.testcontainers:testcontainers:1.20.1'
11+
testImplementation 'org.testcontainers:junit-jupiter:1.20.1'
12+
testImplementation 'org.testcontainers:toxiproxy:1.20.1'
1313
testImplementation 'org.awaitility:awaitility:4.2.0'
1414
}

0 commit comments

Comments
 (0)