Skip to content

Commit 39ed8c7

Browse files
committed
upgraded to MockServer 5.15.0
1 parent d7fa553 commit 39ed8c7

File tree

25 files changed

+368
-348
lines changed

25 files changed

+368
-348
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Description of the issue
1414
Description of what you are trying to do so we can understand the context of the problem
1515

1616
**MockServer version**
17-
The version you are using (i.e. 5.14.0)
17+
The version you are using (i.e. 5.15.0)
1818

1919
**To Reproduce**
2020
Steps to reproduce the issue:

Gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module.exports = function (grunt) {
3535
'-Dmockserver.corsAllowHeaders="Allow, Content-Encoding, Content-Length, Content-Type, ETag, Expires, Last-Modified, Location, Server, Vary, Authorization"',
3636
'-Dmockserver.corsAllowCredentials=true -Dmockserver.corsMaxAgeInSeconds=300'
3737
],
38-
mockServerVersion: "5.14.0"
38+
mockServerVersion: "5.15.0"
3939
}
4040
},
4141
stop_mockserver: {
@@ -72,7 +72,7 @@ module.exports = function (grunt) {
7272
var done = this.async();
7373
var artifactoryHost = 'oss.sonatype.org';
7474
var artifactoryPath = '/content/repositories/releases/org/mock-server/mockserver-netty/';
75-
require('./downloadJar').downloadJar('5.14.0', artifactoryHost, artifactoryPath).then(function () {
75+
require('./downloadJar').downloadJar('5.15.0', artifactoryHost, artifactoryPath).then(function () {
7676
done(true);
7777
}, function () {
7878
done(false);

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ This value specifies the path to the artifactory leading to the mockserver-netty
112112

113113
#### options.mockServerVersion
114114
Type: `String`
115-
Default value: `5.14.0`
115+
Default value: `5.15.0`
116116

117117
This value specifies the artifact version of MockServer to download.
118118

examples/add_array_of_expectations/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"author": "James D Bloom",
77
"license": "Apache-2.0",
88
"dependencies": {
9-
"mockserver-client": "5.14.0"
9+
"mockserver-client": "5.15.0"
1010
}
1111
}

examples/bug/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"dependencies": {
3-
"mockserver-node": "^5.14.0"
3+
"mockserver-node": "^5.15.0"
44
}
55
}

examples/callback_action_examples/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"author": "James D Bloom",
77
"license": "Apache-2.0",
88
"dependencies": {
9-
"mockserver-client": "5.14.0"
9+
"mockserver-client": "5.15.0"
1010
}
1111
}

examples/client_examples/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"author": "James D Bloom",
77
"license": "Apache-2.0",
88
"dependencies": {
9-
"mockserver-client": "5.14.0"
9+
"mockserver-client": "5.15.0"
1010
}
1111
}

examples/client_examples/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ function runMockServer() {
1010
'-Dmockserver.corsAllowHeaders="Allow, Content-Encoding, Content-Length, Content-Type, ETag, Expires, Last-Modified, Location, Server, Vary, Authorization"',
1111
'-Dmockserver.corsAllowCredentials=true -Dmockserver.corsMaxAgeInSeconds=300'
1212
],
13-
mockServerVersion: "5.14.0",
13+
mockServerVersion: "5.15.0",
1414
verbose: true
1515
})
1616
.then(

examples/error_action_examples/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"author": "James D Bloom",
77
"license": "Apache-2.0",
88
"dependencies": {
9-
"mockserver-client": "5.14.0"
9+
"mockserver-client": "5.15.0"
1010
}
1111
}

examples/forward_action_examples/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"author": "James D Bloom",
77
"license": "Apache-2.0",
88
"dependencies": {
9-
"mockserver-client": "5.14.0"
9+
"mockserver-client": "5.15.0"
1010
}
1111
}

0 commit comments

Comments
 (0)