Skip to content

Commit 6d488a3

Browse files
authored
Bump hoverfly version to 1.5.3 (#285)
1 parent 765b2c2 commit 6d488a3

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
version=0.14.5-SNAPSHOT
22
title=Hoverfly Java
33
description=Hoverfly for Java. Capture and simulate HTTP(S) services in JUnit tests.
4-
hoverfly_binary_version=v1.4.0
4+
hoverfly_binary_version=v1.5.3

src/main/java/io/specto/hoverfly/junit/core/model/HoverflyMetaData.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class HoverflyMetaData {
3131
private String timeExported;
3232

3333
public HoverflyMetaData() {
34-
schemaVersion = "v5.1";
34+
schemaVersion = "v5.2";
3535
}
3636

3737
@JsonCreator

src/test/java/io/specto/hoverfly/junit/api/OkHttpHoverflyClientTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,6 @@ private void assertSimulationIsSetAndUpgraded(String resourcePath) throws IOExce
296296

297297
Simulation exportedSimulation = hoverfly.getSimulation();
298298
assertThat(exportedSimulation.getHoverflyData().getPairs()).hasSize(1);
299-
assertThat(exportedSimulation.getHoverflyMetaData().getSchemaVersion()).isEqualTo("v5.1");
299+
assertThat(exportedSimulation.getHoverflyMetaData().getSchemaVersion()).isEqualTo("v5.2");
300300
}
301301
}

src/test/java/io/specto/hoverfly/junit/core/SimulationSourceTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ public void shouldCreateSimulationFromSimulationObject() throws Exception {
141141
public void shouldCreateEmptySimulation() throws JSONException {
142142
JSONAssert.assertEquals(
143143
SimulationSource.empty().getSimulation(),
144-
"{\"data\":{\"pairs\":[],\"globalActions\":{\"delays\":[]}},\"meta\":{\"schemaVersion\":\"v5.1\"}}",
144+
"{\"data\":{\"pairs\":[],\"globalActions\":{\"delays\":[]}},\"meta\":{\"schemaVersion\":\"v5.2\"}}",
145145
false);
146146
}
147147

src/test/resources/expected-simulation-other.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@
5555
}
5656
},
5757
"meta": {
58-
"schemaVersion": "v5.1"
58+
"schemaVersion": "v5.2"
5959
}
6060
}

src/test/resources/expected-simulation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@
5555
}
5656
},
5757
"meta": {
58-
"schemaVersion": "v5.1"
58+
"schemaVersion": "v5.2"
5959
}
6060
}

src/test/resources/simulations/v5-simulation-with-mixed-case-matcher-type.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,6 @@
8585
}
8686
},
8787
"meta": {
88-
"schemaVersion": "v5.1"
88+
"schemaVersion": "v5.2"
8989
}
9090
}

src/test/resources/simulations/v5-simulation-with-unknown-fields.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,6 @@
8585
}
8686
},
8787
"meta": {
88-
"schemaVersion": "v5.1"
88+
"schemaVersion": "v5.2"
8989
}
9090
}

src/test/resources/simulations/v5-simulation-without-global-actions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,6 @@
7474
]
7575
},
7676
"meta": {
77-
"schemaVersion": "v5.1"
77+
"schemaVersion": "v5.2"
7878
}
7979
}

src/test/resources/simulations/v5-simulation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@
8484
}
8585
},
8686
"meta": {
87-
"schemaVersion": "v5.1"
87+
"schemaVersion": "v5.2"
8888
}
8989
}

0 commit comments

Comments
 (0)