author
int64
658
755k
date
stringdate
2012-06-12 08:34:29
2024-07-22 14:51:21
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
listlengths
1
16
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
686,936
04.01.2019 20:12:15
0
fea7cde3c3a6f05b323579ee950ff435069c242f
Added to the response headers doc example to show how to send multi-valued response headers
[ { "change_type": "MODIFY", "old_path": "docs-v2/_docs/stubbing.md", "new_path": "docs-v2/_docs/stubbing.md", "diff": "@@ -180,17 +180,22 @@ Priority is set via the `priority` attribute in JSON:\n## Sending response headers\n-In addition to matching on request headers, it's also possible to send resp...
Java
Apache License 2.0
tomakehurst/wiremock
Added to the response headers doc example to show how to send multi-valued response headers
686,936
04.01.2019 22:02:44
0
68be697fce8caeafc958a529b6de93f71885bf3b
Fixed a build deprecation warning by removing << from task defs
[ { "change_type": "MODIFY", "old_path": "build.gradle", "new_path": "build.gradle", "diff": "@@ -331,7 +331,8 @@ publishing {\n}\n}\n-task checkReleasePreconditions << {\n+task checkReleasePreconditions {\n+ doLast {\ndef REQUIRED_GIT_BRANCH = 'master'\nprintln \"Using Java version: ${System.getPrope...
Java
Apache License 2.0
tomakehurst/wiremock
Fixed a build deprecation warning by removing << from task defs
686,962
13.01.2019 22:30:24
-3,600
076244bb07717e7863db0cd3d886c91c2a72bf3b
Don't try to parse non XML value in XPath matcher For better performance, don't try to parse non-XML values in the XPath matcher
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/matching/MatchesJsonPathPattern.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/matching/MatchesJsonPathPattern.java", "diff": "@@ -42,7 +42,7 @@ public class MatchesJsonPathPattern extends PathPa...
Java
Apache License 2.0
tomakehurst/wiremock
Don't try to parse non XML value in XPath matcher (#1049) For better performance, don't try to parse non-XML values in the XPath matcher
686,962
15.01.2019 03:18:32
-3,600
564c45c0509e0a81519382db2edab7a13f93b4b8
Fix high CPU load Replace *.toLowerCase().equals(*.toLowerCase()) by *.equalsIgnoreCase(*) detect if we are in Jetty only once optimize JettyUtils.getUri() method
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/http/CaseInsensitiveKey.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/http/CaseInsensitiveKey.java", "diff": "@@ -35,7 +35,7 @@ public class CaseInsensitiveKey {\nCaseInsensitiveKey that = (Case...
Java
Apache License 2.0
tomakehurst/wiremock
Fix high CPU load - Replace *.toLowerCase().equals(*.toLowerCase()) by *.equalsIgnoreCase(*) - detect if we are in Jetty only once - optimize JettyUtils.getUri() method
686,962
17.01.2019 02:02:09
-3,600
e07b0ceeac24c55ba716740757cafb6324b3b206
Fix CaseInsensitiveKey.hashCode() performance Cache the hash code don't use String.hashCode() which create new String
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/http/CaseInsensitiveKey.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/http/CaseInsensitiveKey.java", "diff": "@@ -20,6 +20,10 @@ import com.google.common.base.Function;\npublic class CaseInsensi...
Java
Apache License 2.0
tomakehurst/wiremock
Fix CaseInsensitiveKey.hashCode() performance - Cache the hash code - don't use String.hashCode() which create new String
686,936
30.01.2019 20:45:34
0
c21e66752996e5652b0b248aa7c73a49a4bff89c
Fixed shadow JAR problems caused by asm upgrade
[ { "change_type": "MODIFY", "old_path": "build.gradle", "new_path": "build.gradle", "diff": "-plugins {\n- id 'com.github.johnrengelman.shadow' version '1.2.3'\n+buildscript {\n+ repositories {\n+ jcenter()\n+ }\n+ dependencies {\n+ classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.4'\n+ }\n}...
Java
Apache License 2.0
tomakehurst/wiremock
Fixed shadow JAR problems caused by asm upgrade
686,974
09.01.2019 21:52:26
-28,800
7f92d26039398ef22697443a2a059244ac61b41a
Support XMLUnit placeholders in EqualToXmlPattern
[ { "change_type": "MODIFY", "old_path": "build.gradle", "new_path": "build.gradle", "diff": "@@ -40,7 +40,7 @@ allprojects {\njackson : '2.9.8',\njacksonDatabind: '2.9.8',\njetty : '9.2.26.v20180806', // Please don't raise PRs upgrading this to the latest version as it drops Java 7 support. See https...
Java
Apache License 2.0
tomakehurst/wiremock
Support XMLUnit placeholders in EqualToXmlPattern
686,936
11.02.2019 18:42:54
0
d345731a7b7af2b55b4969ec1c63c7e6b24e7af3
Tweaked some XML placeholder tests, mainly for style. Tweaked some doc wording.
[ { "change_type": "MODIFY", "old_path": "build.gradle", "new_path": "build.gradle", "diff": "@@ -65,6 +65,7 @@ allprojects {\ncompile \"org.apache.httpcomponents:httpclient:4.5.6\"\ncompile \"org.xmlunit:xmlunit-core:$versions.xmlUnit\"\ncompile \"org.xmlunit:xmlunit-legacy:$versions.xmlUnit\"\n+ com...
Java
Apache License 2.0
tomakehurst/wiremock
Tweaked some XML placeholder tests, mainly for style. Tweaked some doc wording.
686,936
11.02.2019 19:01:07
0
615a621d350174fb5c1c6f146c0834cf415e4b89
Made JettyUtils work with both Java 7 and Java 8
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/jetty9/JettyUtils.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/jetty9/JettyUtils.java", "diff": "@@ -70,7 +70,7 @@ public class JettyUtils {\n}\npublic static Socket getTlsSocket(Response respo...
Java
Apache License 2.0
tomakehurst/wiremock
Made JettyUtils work with both Java 7 and Java 8
686,962
11.02.2019 20:02:31
-3,600
3cf0074d11f985d72114f590f1e73d5c8c9a7b11
For performance reason, don't try to parse XML value in MatchesJsonPathPattern
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/matching/MatchesJsonPathPattern.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/matching/MatchesJsonPathPattern.java", "diff": "@@ -43,6 +43,13 @@ public class MatchesJsonPathPattern extends PathP...
Java
Apache License 2.0
tomakehurst/wiremock
For performance reason, don't try to parse XML value in MatchesJsonPathPattern (#1065)
686,936
11.02.2019 19:17:25
0
1a43624e867896fd08ab410c5e37aa14c4002aa6
Enabling info logging in Travis config
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -9,5 +9,5 @@ install:\n- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install 6.3.0\n...
Java
Apache License 2.0
tomakehurst/wiremock
Enabling info logging in Travis config
686,936
13.02.2019 10:52:21
0
6ecb765ed9a67b3db3ee20c5fe80a60180869a91
Fixed build issue - moved API doc generation to allprojects block so that build doesn't fail due to missing Swagger spec
[ { "change_type": "MODIFY", "old_path": "build.gradle", "new_path": "build.gradle", "diff": "@@ -123,6 +123,29 @@ allprojects {\nexceptionFormat \"full\"\n}\n}\n+\n+ final DOCS_DIR = project(':').rootDir.getAbsolutePath() + '/docs-v2'\n+\n+ task npmInstall(type: Exec) {\n+ workingDir DOCS_DIR\n+ if (...
Java
Apache License 2.0
tomakehurst/wiremock
Fixed build issue - moved API doc generation to allprojects block so that build doesn't fail due to missing Swagger spec
686,936
13.02.2019 19:58:16
0
1851b61cef869286b6902638ee51551360f5aa62
Added support for importing multiple stubs in one request
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/WireMockServer.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/WireMockServer.java", "diff": "@@ -463,4 +463,9 @@ public class WireMockServer implements Container, Stubbing, Admin {\npublic void r...
Java
Apache License 2.0
tomakehurst/wiremock
Added support for importing multiple stubs in one request
686,936
14.02.2019 19:15:45
0
162c7efe61ee1f8ff8c1790fd8636692373e37e9
Switched to a more DSL style for stub imports
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/WireMockServer.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/WireMockServer.java", "diff": "@@ -42,6 +42,7 @@ import com.github.tomakehurst.wiremock.recording.RecordSpec;\nimport com.github.toma...
Java
Apache License 2.0
tomakehurst/wiremock
Switched to a more DSL style for stub imports
686,936
14.02.2019 19:29:50
0
51905fa3273fd912fe00ccd54812ff08d9737b14
Added an admin API test case for importing
[ { "change_type": "MODIFY", "old_path": "src/test/java/com/github/tomakehurst/wiremock/AdminApiTest.java", "new_path": "src/test/java/com/github/tomakehurst/wiremock/AdminApiTest.java", "diff": "@@ -664,4 +664,45 @@ public class AdminApiTest extends AcceptanceTestBase {\nassertThat(data, not(hasKey(\...
Java
Apache License 2.0
tomakehurst/wiremock
Added an admin API test case for importing
686,936
14.02.2019 19:35:12
0
4622c474fad8557cdf19c1f0427ef8fcf662e817
Updated stub import test cases to use builder overload of import methods
[ { "change_type": "MODIFY", "old_path": "src/test/java/com/github/tomakehurst/wiremock/StubImportAcceptanceTest.java", "new_path": "src/test/java/com/github/tomakehurst/wiremock/StubImportAcceptanceTest.java", "diff": "@@ -89,8 +89,7 @@ public class StubImportAcceptanceTest extends AcceptanceTestBase...
Java
Apache License 2.0
tomakehurst/wiremock
Updated stub import test cases to use builder overload of import methods
686,936
15.02.2019 10:43:58
0
5608342f1ef244ec409554ba1c7ec3e4b3f06921
Documented multi stub file and import features
[ { "change_type": "MODIFY", "old_path": "docs-v2/_docs/running-standalone.md", "new_path": "docs-v2/_docs/running-standalone.md", "diff": "@@ -190,6 +190,40 @@ More content\nSee [stubbing](/docs/stubbing/) and [verifying](/docs/verifying/) for more on the JSON API.\n+### Multi-stub JSON files\n+\n+JS...
Java
Apache License 2.0
tomakehurst/wiremock
Documented multi stub file and import features
686,936
19.02.2019 19:46:31
0
dc9e534337195c3b491ffea958b6f2efa5227ade
Enhanced multithreaded test case to include a verify call
[ { "change_type": "MODIFY", "old_path": "src/test/java/com/github/tomakehurst/wiremock/MultithreadConfigurationInheritanceTest.java", "new_path": "src/test/java/com/github/tomakehurst/wiremock/MultithreadConfigurationInheritanceTest.java", "diff": "package com.github.tomakehurst.wiremock;\nimport com...
Java
Apache License 2.0
tomakehurst/wiremock
Enhanced multithreaded test case to include a verify call
686,936
21.02.2019 19:16:32
0
981881404784286b26a3e06439a1b3f7c8219640
Upgraded to latest redoc
[ { "change_type": "MODIFY", "old_path": "docs-v2/package-lock.json", "new_path": "docs-v2/package-lock.json", "diff": "\"requires\": true,\n\"dependencies\": {\n\"@babel/runtime\": {\n- \"version\": \"7.1.5\",\n- \"resolved\": \"https://registry.npmjs.org/@babel/runtime/-/runtime-7.1.5.tgz\",\n- \"in...
Java
Apache License 2.0
tomakehurst/wiremock
Upgraded to latest redoc
686,936
21.02.2019 19:18:12
0
a24e3cd7f38b73398caff927b9cb72f33da689b7
Tweaked Swagger doc tag names
[ { "change_type": "MODIFY", "old_path": "src/main/resources/swagger/wiremock-admin-api.yaml", "new_path": "src/main/resources/swagger/wiremock-admin-api.yaml", "diff": "@@ -12,12 +12,12 @@ servers:\n- url: /\ntags:\n- - name: Mappings\n+ - name: Stub Mappings\ndescription: Operations on stub mappings...
Java
Apache License 2.0
tomakehurst/wiremock
Tweaked Swagger doc tag names
686,936
21.02.2019 19:23:27
0
4f83a6dc4e147c19282de0ad666b0eeb755a97b6
Fixed ./serve.sh so that API docs are built first
[ { "change_type": "MODIFY", "old_path": "docs-v2/package.json", "new_path": "docs-v2/package.json", "diff": "\"watch:css\": \"onchange \\\"assets/_scss/**/*.scss\\\" -- npm run build:css\",\n\"watch:js\": \"onchange \\\"assets/js/**/*.js\\\" -e \\\"assets/js/main.min.js\\\" -- npm run build:js\",\n\"...
Java
Apache License 2.0
tomakehurst/wiremock
Fixed ./serve.sh so that API docs are built first
686,962
22.02.2019 00:39:31
-3,600
b46b4454a9dfbf5d4f756346442479754b4a798e
Only template datas between first '{{' and last '}}'
[ { "change_type": "ADD", "old_path": null, "new_path": "src/main/java/com/github/tomakehurst/wiremock/extension/responsetemplating/HandlebarsOptimizedTemplate.java", "diff": "+package com.github.tomakehurst.wiremock.extension.responsetemplating;\n+\n+import java.io.IOException;\n+import java.io.Write...
Java
Apache License 2.0
tomakehurst/wiremock
Only template datas between first '{{' and last '}}'
686,962
22.02.2019 23:25:22
-3,600
d3c296133301986be3cfcf56d1c82531793db849
Remove implementing Template
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/extension/responsetemplating/HandlebarsOptimizedTemplate.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/extension/responsetemplating/HandlebarsOptimizedTemplate.java", "diff": "package com.github...
Java
Apache License 2.0
tomakehurst/wiremock
Remove implementing Template
686,936
10.03.2019 15:18:17
0
e8f929b34fe659fb96c89a35cfaad493681475ed
Fixed - jre8 pom contained both Java 7 and 8 depedencies
[ { "change_type": "MODIFY", "old_path": "build.gradle", "new_path": "build.gradle", "diff": "@@ -35,23 +35,29 @@ allprojects {\nmavenCentral()\n}\n- def versions = [\n+ def versionSets = [\n+ java7: [\nhandlebars : '4.0.7',\n+ jetty : '9.2.26.v20180806', // Please don't raise PRs upgrading this to th...
Java
Apache License 2.0
tomakehurst/wiremock
Fixed #1089 - jre8 pom contained both Java 7 and 8 depedencies
686,936
12.03.2019 11:32:58
0
e68f0c6463b14f68e0bf8ee60aa9e5ddba23138e
Upgraded the jre8 build to Jetty 9.4.15.v20190215
[ { "change_type": "MODIFY", "old_path": ".gitignore", "new_path": ".gitignore", "diff": "@@ -55,3 +55,5 @@ tmp*\nsrc/main/resources/swagger/wiremock-admin-api.json\nsrc/main/resources/assets/swagger-ui/swagger-ui-dist\n+\n+scripts/client-cert.*\n" }, { "change_type": "MODIFY", "old_path":...
Java
Apache License 2.0
tomakehurst/wiremock
Upgraded the jre8 build to Jetty 9.4.15.v20190215
686,936
12.03.2019 11:38:42
0
b27187e0434d8174e728aecc458f7350d60fa5e8
Fixed some minor issues with the example client cert/truststore creation script
[ { "change_type": "MODIFY", "old_path": "scripts/create-client-cert.sh", "new_path": "scripts/create-client-cert.sh", "diff": "#!/usr/bin/env bash\nopenssl req -x509 -newkey rsa:2048 -utf8 -days 3650 -nodes -config client-cert.conf -keyout client-cert.key -out client-cert.crt\n-openssl pkcs12 -export...
Java
Apache License 2.0
tomakehurst/wiremock
Fixed some minor issues with the example client cert/truststore creation script
686,936
12.03.2019 18:13:37
0
b9eb5cc56c9d7ff130b89b3d8343a999d8250c94
Added a doc note about building client certificates with SANs
[ { "change_type": "MODIFY", "old_path": "docs-v2/_docs/https.md", "new_path": "docs-v2/_docs/https.md", "diff": "@@ -61,6 +61,13 @@ public WireMockRule wireMockRule = new WireMockRule(wireMockConfig()\nIf you using WireMock as a proxy onto another system which requires client certificate authenticati...
Java
Apache License 2.0
tomakehurst/wiremock
Added a doc note about building client certificates with SANs
686,936
14.03.2019 11:21:19
0
2de7889415b6a450ea7e868a46d19e393d039eda
Added support for specifying a policy determining whether responses should be chunk encoded or returned with a Content-Length header
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/core/Options.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/core/Options.java", "diff": "@@ -36,6 +36,8 @@ import java.util.Map;\npublic interface Options {\n+ enum ChunkedEncodingPolicy { ALWAYS...
Java
Apache License 2.0
tomakehurst/wiremock
Added support for specifying a policy determining whether responses should be chunk encoded or returned with a Content-Length header
686,936
16.03.2019 09:37:59
0
7a63912921777a1bf93ec4bae02a3d1296058697
Documented transfer encoding configuration settings
[ { "change_type": "MODIFY", "old_path": "docs-v2/_docs/configuration.md", "new_path": "docs-v2/_docs/configuration.md", "diff": "@@ -147,3 +147,20 @@ For details see [Extending WireMock](/docs/extending-wiremock/).\n// Add extensions\n.extensions(\"com.mycorp.ExtensionOne\", \"com.mycorp.ExtensionTwo...
Java
Apache License 2.0
tomakehurst/wiremock
Documented transfer encoding configuration settings
686,936
16.03.2019 18:17:31
0
88bbe7fb2160bbcae02a7d42af423b68c116fbf1
Try multiple times to start on a random port during WAR test as this sometimes fails on Travis due to BindExceptions
[ { "change_type": "MODIFY", "old_path": "src/test/java/com/github/tomakehurst/wiremock/WarDeploymentAcceptanceTest.java", "new_path": "src/test/java/com/github/tomakehurst/wiremock/WarDeploymentAcceptanceTest.java", "diff": "@@ -49,17 +49,38 @@ public class WarDeploymentAcceptanceTest {\n@Before\npub...
Java
Apache License 2.0
tomakehurst/wiremock
Try multiple times to start on a random port during WAR test as this sometimes fails on Travis due to BindExceptions
686,936
16.03.2019 18:30:34
0
fec9ecd4cefde98e0342abbcf814366677d7532e
Slightly raised a timeout in a test to reduce build flakeyness
[ { "change_type": "MODIFY", "old_path": "src/test/java/com/github/tomakehurst/wiremock/ResponseDelaySynchronousFailureAcceptanceTest.java", "new_path": "src/test/java/com/github/tomakehurst/wiremock/ResponseDelaySynchronousFailureAcceptanceTest.java", "diff": "@@ -44,7 +44,7 @@ import static org.juni...
Java
Apache License 2.0
tomakehurst/wiremock
Slightly raised a timeout in a test to reduce build flakeyness
686,936
16.03.2019 18:45:24
0
79d878845ba818188c751d5422c49799edf35e17
Deleted flakey and not terribly useful test
[ { "change_type": "DELETE", "old_path": "src/test/java/com/github/tomakehurst/wiremock/ResponseDelaySynchronousFailureAcceptanceTest.java", "new_path": null, "diff": "-/*\n- * Copyright (C) 2011 Thomas Akehurst\n- *\n- * Licensed under the Apache License, Version 2.0 (the \"License\");\n- * you may n...
Java
Apache License 2.0
tomakehurst/wiremock
Deleted flakey and not terribly useful test
686,936
16.03.2019 19:11:47
0
681833e5a0723cbef67bd7f50fac670dc109768e
Added some diagnostic info to the Travis config
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -9,5 +9,8 @@ install:\n- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install 6.3.0\n...
Java
Apache License 2.0
tomakehurst/wiremock
Added some diagnostic info to the Travis config
686,936
16.03.2019 19:44:13
0
85760b7ee65d57aee752fb3ce8ad5c093e0305ae
Attempt at upgrading openjdk7 in Travis to avoid build failures due to keystore type
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -6,11 +6,10 @@ jdk:\n- openjdk8\ninstall:\n- - rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh ...
Java
Apache License 2.0
tomakehurst/wiremock
Attempt at upgrading openjdk7 in Travis to avoid build failures due to keystore type
686,936
16.03.2019 19:47:23
0
36c9e1c4b99464fb884b6d6ed5db151c71f715e6
Added missing sudo to package upgrade command in the Travis config
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -8,7 +8,7 @@ jdk:\ninstall:\n- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install 8...
Java
Apache License 2.0
tomakehurst/wiremock
Added missing sudo to package upgrade command in the Travis config
686,936
16.03.2019 19:53:37
0
1cbfcab5c80ec120ae56c5433d6d36e8fe5684ca
2nd attempt at upgrading openjdk7 in Travis to avoid build failures due to keystore type
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -8,7 +8,7 @@ jdk:\ninstall:\n- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install 8...
Java
Apache License 2.0
tomakehurst/wiremock
2nd attempt at upgrading openjdk7 in Travis to avoid build failures due to keystore type
686,936
16.03.2019 19:59:55
0
8f413ba6179c57b144f4c2d1102c612a5e825a34
Added some debug output to the travis config
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -8,7 +8,7 @@ jdk:\ninstall:\n- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install 8...
Java
Apache License 2.0
tomakehurst/wiremock
Added some debug output to the travis config
686,936
16.03.2019 20:08:26
0
bad5c7f8da2c9ea8ee1afc78330b17b2433b8f4a
3rd attempt at upgrading openjdk7 in Travis to avoid build failures due to keystore type
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -6,9 +6,9 @@ jdk:\n- openjdk8\ninstall:\n+ - sudo apt-get upgrade -y openjdk-7-jdk\n- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abb...
Java
Apache License 2.0
tomakehurst/wiremock
3rd attempt at upgrading openjdk7 in Travis to avoid build failures due to keystore type
686,936
16.03.2019 20:24:59
0
739999f470c29e16d6cdefb1a179ba56f7e7f0c5
Attempt to fix Travis build failures by switching test truststore based on JVM version
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -6,7 +6,6 @@ jdk:\n- openjdk8\ninstall:\n- - sudo apt-get upgrade -y openjdk-7-jdk\n- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abb...
Java
Apache License 2.0
tomakehurst/wiremock
Attempt to fix Travis build failures by switching test truststore based on JVM version
687,031
17.03.2019 21:51:41
-3,600
54f500acbfa6d2ed25895b35e02d4b3880a6201d
Replace usage of internal java.xml class with public abstraction This commit fixes problem of using DocumentBuilderFactoryImpl from com.sun.org.apache.xerces.internal.jaxp package. Problem arises as this package is not public (not exported) since JDK 9. Solution is to replace use of this class with DocumentBuilderFactory from exported package java.xml.parsers.
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/common/Xml.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/common/Xml.java", "diff": "*/\npackage com.github.tomakehurst.wiremock.common;\n-import com.sun.org.apache.xerces.internal.jaxp.DocumentB...
Java
Apache License 2.0
tomakehurst/wiremock
Replace usage of internal java.xml class with public abstraction (#1098) This commit fixes problem of using DocumentBuilderFactoryImpl from com.sun.org.apache.xerces.internal.jaxp package. Problem arises as this package is not public (not exported) since JDK 9. Solution is to replace use of this class with DocumentBuilderFactory from exported package java.xml.parsers.
686,936
17.03.2019 21:21:36
0
a2586ae762cc3868b85c685d670993961a9716ba
Added a template method to ResponseTemplateTransformer allowing a subclass to supply extra model elements
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/extension/responsetemplating/ResponseTemplateTransformer.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/extension/responsetemplating/ResponseTemplateTransformer.java", "diff": "@@ -108,9 +108,12 ...
Java
Apache License 2.0
tomakehurst/wiremock
Added a template method to ResponseTemplateTransformer allowing a subclass to supply extra model elements
686,936
09.04.2019 09:19:32
-3,600
b7ef9b7f7697c13c21ed84beda1c5dea85851884
Added regex extract, form, base64, URL encoding, string trim and size handlebars helpers
[ { "change_type": "ADD", "old_path": null, "new_path": "src/main/java/com/github/tomakehurst/wiremock/extension/responsetemplating/helpers/Base64Helper.java", "diff": "+package com.github.tomakehurst.wiremock.extension.responsetemplating.helpers;\n+\n+import com.github.jknack.handlebars.Helper;\n+imp...
Java
Apache License 2.0
tomakehurst/wiremock
Added regex extract, form, base64, URL encoding, string trim and size handlebars helpers
686,936
09.04.2019 19:53:37
-3,600
70b962fdfac8a153ae690a0ea53cb035145bb4ef
Reworked formField helper into formdata - now extracts form data as a map rather than just returning one field, and supports multiple values for the same key
[ { "change_type": "RENAME", "old_path": "src/main/java/com/github/tomakehurst/wiremock/extension/responsetemplating/helpers/FormFieldHelper.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/extension/responsetemplating/helpers/FormDataHelper.java", "diff": "package com.github.tomakehu...
Java
Apache License 2.0
tomakehurst/wiremock
Reworked formField helper into formdata - now extracts form data as a map rather than just returning one field, and supports multiple values for the same key
686,936
09.04.2019 20:02:38
-3,600
3ecb4c16fa74217d7649e1a400ecb54b4724c70e
Added first, last and end offset accessors to ListOrSingle to be used in templates
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/common/ListOrSingle.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/common/ListOrSingle.java", "diff": "@@ -49,10 +49,23 @@ public class ListOrSingle<T> extends ArrayList<T> {\nreturn new ListOrSi...
Java
Apache License 2.0
tomakehurst/wiremock
Added first, last and end offset accessors to ListOrSingle to be used in templates
686,936
10.04.2019 18:56:45
-3,600
fe235613a85c47f1690214e5953a12f4d09817b4
Added a stub lifecycle event listener extension point
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/core/WireMockApp.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/core/WireMockApp.java", "diff": "@@ -37,11 +37,11 @@ import com.google.common.base.Optional;\nimport com.google.common.base.Predica...
Java
Apache License 2.0
tomakehurst/wiremock
Added a stub lifecycle event listener extension point
686,936
10.04.2019 19:26:39
-3,600
79a7cb6ac79cac2d4bdc003d159cd3f0b9d3434b
Added ability to get global settings, update them all at the same time via Java and update them via a PUT to the admin API. Added extended configuration to global settings.
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/WireMockServer.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/WireMockServer.java", "diff": "@@ -469,4 +469,9 @@ public class WireMockServer implements Container, Stubbing, Admin {\npublic void i...
Java
Apache License 2.0
tomakehurst/wiremock
Added ability to get global settings, update them all at the same time via Java and update them via a PUT to the admin API. Added extended configuration to global settings.
686,936
12.04.2019 09:53:24
-3,600
ae3507166bb05ffa43215d772368fe6a8d0853d8
Made the handlebars JSONPath helper support objects in addition to strings
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/extension/responsetemplating/helpers/HandlebarsJsonPathHelper.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/extension/responsetemplating/helpers/HandlebarsJsonPathHelper.java", "diff": "@@ -24,1...
Java
Apache License 2.0
tomakehurst/wiremock
Made the handlebars JSONPath helper support objects in addition to strings
686,936
12.04.2019 17:30:35
-3,600
9b3a1ecc8cab937e626f386c78f5a1731c4a885b
Added a test case in support of template performance optimisation (only templating between first and last delimters)
[ { "change_type": "MODIFY", "old_path": "src/test/java/com/github/tomakehurst/wiremock/extension/responsetemplating/ResponseTemplateTransformerTest.java", "new_path": "src/test/java/com/github/tomakehurst/wiremock/extension/responsetemplating/ResponseTemplateTransformerTest.java", "diff": "@@ -691,6 ...
Java
Apache License 2.0
tomakehurst/wiremock
Added a test case in support of template performance optimisation (only templating between first and last delimters)
686,936
13.04.2019 15:02:05
-3,600
c9cd2482a500899122b9664c6313b613d714ba17
Removed stub lifecycle listener callback for resetToDefaults and added old stub mapping to the parameters passed to the edit callback
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/core/WireMockApp.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/core/WireMockApp.java", "diff": "@@ -66,7 +66,6 @@ public class WireMockApp implements StubServer, Admin {\nprivate final NearMissC...
Java
Apache License 2.0
tomakehurst/wiremock
Removed stub lifecycle listener callback for resetToDefaults and added old stub mapping to the parameters passed to the edit callback
686,936
13.04.2019 17:55:08
-3,600
2e92e590920a39ab1ba030dffbb8eb197752f1cd
Added response template caching for improved performance under load
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/extension/responsetemplating/HandlebarsOptimizedTemplate.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/extension/responsetemplating/HandlebarsOptimizedTemplate.java", "diff": "@@ -19,6 +19,7 @@ ...
Java
Apache License 2.0
tomakehurst/wiremock
Added response template caching for improved performance under load
686,936
13.04.2019 18:48:40
-3,600
98e1cd5027e4e612c16ff05a7dd5bedd51556e74
Added ability to limit the template cache size
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/extension/responsetemplating/ResponseTemplateTransformer.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/extension/responsetemplating/ResponseTemplateTransformer.java", "diff": "@@ -44,6 +44,7 @@ ...
Java
Apache License 2.0
tomakehurst/wiremock
Added ability to limit the template cache size
686,936
13.04.2019 19:00:58
-3,600
6f791e4c83dfe6022f4e48661ad1b4ae9577750b
Made max template cache entries configurable via the command line
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/extension/responsetemplating/ResponseTemplateTransformer.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/extension/responsetemplating/ResponseTemplateTransformer.java", "diff": "@@ -232,6 +232,10 ...
Java
Apache License 2.0
tomakehurst/wiremock
Made max template cache entries configurable via the command line
686,936
13.04.2019 19:49:16
-3,600
3bea8e51df377f38c46b0aa0a8af96b1bcbb5e29
Added the ability to disable templating of body files when templating is enabled for other fields
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/common/Metadata.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/common/Metadata.java", "diff": "@@ -34,19 +34,31 @@ public class Metadata extends LinkedHashMap<String, Object> {\n}\npublic Integer...
Java
Apache License 2.0
tomakehurst/wiremock
Added the ability to disable templating of body files when templating is enabled for other fields
686,962
13.04.2019 20:54:03
-7,200
46d3faa917b600f2d3ffe0e0513592d79c6b8263
Put DocumentBuilderFactory and DocumentBuilder in ThreadLocal cache
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/common/Xml.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/common/Xml.java", "diff": "@@ -43,6 +43,9 @@ import static javax.xml.transform.OutputKeys.OMIT_XML_DECLARATION;\npublic class Xml {\n+ pr...
Java
Apache License 2.0
tomakehurst/wiremock
Put DocumentBuilderFactory and DocumentBuilder in ThreadLocal cache (#1096)
686,962
13.04.2019 21:02:24
-7,200
70b72b28c36004fe4e57c2a88527ed2f318f1bfd
Fail-safe behavior if json mapping file is not valid Fix
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/common/Json.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/common/Json.java", "diff": "*/\npackage com.github.tomakehurst.wiremock.common;\n-import com.fasterxml.jackson.annotation.JsonInclude;\n...
Java
Apache License 2.0
tomakehurst/wiremock
Fail-safe behavior if json mapping file is not valid (#1093) Fix #1025
686,936
14.04.2019 17:29:19
-3,600
55dd5f2a34b78500d6e948df0399ff08a22f5b31
Added documentation for new handlebars helpers
[ { "change_type": "MODIFY", "old_path": "docs-v2/_docs/response-templating.md", "new_path": "docs-v2/_docs/response-templating.md", "diff": "@@ -319,6 +319,115 @@ Random strings of various kinds can be generated:\n{% endraw %}\n+## String trim helper\n+Use the `trim` helper to remove whitespace from ...
Java
Apache License 2.0
tomakehurst/wiremock
Added documentation for new handlebars helpers
686,936
14.04.2019 17:43:32
-3,600
ae591bd772de564c25075e1e88147f3291154c08
Documented template cache settings
[ { "change_type": "MODIFY", "old_path": "docs-v2/_docs/response-templating.md", "new_path": "docs-v2/_docs/response-templating.md", "diff": "@@ -54,6 +54,26 @@ wm.stubFor(get(urlPathEqualTo(\"/templated\"))\nCommand line parameters can be used to enable templating when running WireMock [standalone](/...
Java
Apache License 2.0
tomakehurst/wiremock
Documented template cache settings
686,936
14.04.2019 17:48:13
-3,600
eabd3d2ee53b8446f97dea3bb5d5be2b992e2fca
Added doc note to response templating article about eq helper with one-or-many values
[ { "change_type": "MODIFY", "old_path": "docs-v2/_docs/response-templating.md", "new_path": "docs-v2/_docs/response-templating.md", "diff": "@@ -67,7 +67,7 @@ public WireMockRule wm = new WireMockRule(options()\n.extensions(ResponseTemplateTransformer.builder()\n.global(false)\n.maxCacheEntries(3L)\n...
Java
Apache License 2.0
tomakehurst/wiremock
Added doc note to response templating article about eq helper with one-or-many values
686,936
14.04.2019 17:56:22
-3,600
47eea2832b871427b6f99691cd594e7e2f333412
Fixed - NPE thrown when attempting to import multiple stubs via the API with no import options
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/core/WireMockApp.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/core/WireMockApp.java", "diff": "@@ -33,6 +33,7 @@ import com.github.tomakehurst.wiremock.stubbing.*;\nimport com.github.tomakehurs...
Java
Apache License 2.0
tomakehurst/wiremock
Fixed #1113 - NPE thrown when attempting to import multiple stubs via the API with no import options
686,936
14.04.2019 18:17:57
-3,600
43debd2d906db6c112c4461cc594390275833380
Fixed - multi stub import fails when unknown JSON elements are present
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/stubbing/StubImport.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/stubbing/StubImport.java", "diff": "*/\npackage com.github.tomakehurst.wiremock.stubbing;\n+import com.fasterxml.jackson.annotat...
Java
Apache License 2.0
tomakehurst/wiremock
Fixed #1114 - multi stub import fails when unknown JSON elements are present
687,007
19.04.2019 17:07:54
-3,600
7c5923afc657056ec334cd0187db3bb2e688db94
Apply disableBodyFileTemplating only to body content
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/extension/responsetemplating/ResponseTemplateTransformer.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/extension/responsetemplating/ResponseTemplateTransformer.java", "diff": "@@ -142,10 +142,12...
Java
Apache License 2.0
tomakehurst/wiremock
Apply disableBodyFileTemplating only to body content (#1116)
686,936
13.05.2019 18:35:28
-3,600
202f85e068fcb56677fda7da6558f322bbb8a22d
Extended StubLifecycleListener to support callbacks before, in addition to after lifecycle events
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/extension/StubLifecycleListener.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/extension/StubLifecycleListener.java", "diff": "@@ -19,8 +19,15 @@ import com.github.tomakehurst.wiremock.stubbing.S...
Java
Apache License 2.0
tomakehurst/wiremock
Extended StubLifecycleListener to support callbacks before, in addition to after lifecycle events
686,936
15.05.2019 19:21:12
-3,600
bb098e09a806874bf575a91fe7243ec8caf32214
Added ability to throw an exception from a stub lifecycle listener causing the action to be vetoed and a sensible error returned to the caller
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/common/ClientError.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/common/ClientError.java", "diff": "@@ -33,6 +33,8 @@ public class ClientError extends RuntimeException {\nreturn new InvalidInput...
Java
Apache License 2.0
tomakehurst/wiremock
Added ability to throw an exception from a stub lifecycle listener causing the action to be vetoed and a sensible error returned to the caller
686,936
03.06.2019 22:51:04
-3,600
7926c5d7ddf5ac8e5abf6e5e2ed7750923b89114
Added a request filter extension point, currently only supporting filtering of stub requests (not admin)
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/core/WireMockApp.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/core/WireMockApp.java", "diff": "@@ -21,6 +21,7 @@ import com.github.tomakehurst.wiremock.admin.model.*;\nimport com.github.tomakeh...
Java
Apache License 2.0
tomakehurst/wiremock
Added a request filter extension point, currently only supporting filtering of stub requests (not admin)
686,936
04.06.2019 17:49:12
-3,600
5accd88d6f776278b4700e90993272da4b1a5565
Added support for applying request filters to admin (in addition to stubs)
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/core/WireMockApp.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/core/WireMockApp.java", "diff": "@@ -34,9 +34,9 @@ import com.github.tomakehurst.wiremock.stubbing.*;\nimport com.github.tomakehurs...
Java
Apache License 2.0
tomakehurst/wiremock
Added support for applying request filters to admin (in addition to stubs)
686,936
06.06.2019 20:13:01
-3,600
96f118ee96f07fb1ceab4da70269e02a5c4402d7
Added a builder to RequestWrapper to facilite common transformations
[ { "change_type": "ADD", "old_path": null, "new_path": "src/main/java/com/github/tomakehurst/wiremock/extension/requestfilter/FieldTransformer.java", "diff": "+package com.github.tomakehurst.wiremock.extension.requestfilter;\n+\n+public interface FieldTransformer<T> {\n+\n+ T transform(T source);\n+}...
Java
Apache License 2.0
tomakehurst/wiremock
Added a builder to RequestWrapper to facilite common transformations
686,936
06.06.2019 20:19:52
-3,600
28a6ec549a8da767130191d7cf99252121a9bfbe
Added cookie removal builder method to RequestWrapper
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/extension/requestfilter/RequestWrapper.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/extension/requestfilter/RequestWrapper.java", "diff": "@@ -26,6 +26,7 @@ public class RequestWrapper implemen...
Java
Apache License 2.0
tomakehurst/wiremock
Added cookie removal builder method to RequestWrapper
686,936
06.06.2019 20:50:27
-3,600
5fac15f7fb527da2db14b0ab5adc4e45ae73b3fa
Empty or null stub IDs in JSON are now treated as absent, so that an ID is generated
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/core/WireMockApp.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/core/WireMockApp.java", "diff": "@@ -228,6 +228,10 @@ public class WireMockApp implements StubServer, Admin {\n@Override\npublic vo...
Java
Apache License 2.0
tomakehurst/wiremock
Empty or null stub IDs in JSON are now treated as absent, so that an ID is generated
686,936
09.06.2019 17:30:04
-3,600
d4db4466697f62999e0a5e175c447cdde8b9e219
Fixed - diff line rendering throws an exception when path is /
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/verification/diff/DiffLine.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/verification/diff/DiffLine.java", "diff": "@@ -80,6 +80,10 @@ class DiffLine<V> {\nreturn true;\n}\n+ if (index < 2) {\n+...
Java
Apache License 2.0
tomakehurst/wiremock
Fixed #1136 - diff line rendering throws an exception when path is /
686,936
09.06.2019 20:07:26
-3,600
9b248e384167b8e434516ab91cb8728ca77d29f0
Fixed - 500 response returned when query parameter contains spaces and no stub is matched
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/common/Encoding.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/common/Encoding.java", "diff": "*/\npackage com.github.tomakehurst.wiremock.common;\n+import java.io.UnsupportedEncodingException;\n...
Java
Apache License 2.0
tomakehurst/wiremock
Fixed #1128 - 500 response returned when query parameter contains spaces and no stub is matched
687,055
12.06.2019 04:28:42
-33,480
f236dec94fb1425b8704cec26cdbfea3686104bd
Update README with gradlew invocation required to build standalone jar
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -49,7 +49,8 @@ To run all of WireMock's tests:\nTo build both JARs (thin and standalone):\n```bash\n-./gradlew jar shadowJar\n+./gradlew -c release-settings.gradle :java8:shadowJar\n```\n-The built JARs will be ...
Java
Apache License 2.0
tomakehurst/wiremock
Update README with gradlew invocation required to build standalone jar (#1135)
686,942
11.06.2019 22:41:17
-7,200
5275c37967ed9270db04f641942058669ec52907
Fixed some documentation issues.
[ { "change_type": "MODIFY", "old_path": "docs-v2/_docs/request-matching.md", "new_path": "docs-v2/_docs/request-matching.md", "diff": "@@ -33,7 +33,7 @@ stubFor(any(urlPathEqualTo(\"/everything\"))\naMultipart()\n.withName(\"info\")\n.withHeader(\"Content-Type\", containing(\"charset\"))\n- .withMult...
Java
Apache License 2.0
tomakehurst/wiremock
Fixed some documentation issues. (#1076)
686,936
13.06.2019 19:32:53
-3,600
b23d54a1be5a1a92b34cb51de8f4a5801c80ca9d
Added methods to Metadata for conversion to and from an arbitrary object
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/common/Metadata.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/common/Metadata.java", "diff": "@@ -88,10 +88,18 @@ public class Metadata extends LinkedHashMap<String, Object> {\ncheckArgument(con...
Java
Apache License 2.0
tomakehurst/wiremock
Added methods to Metadata for conversion to and from an arbitrary object
686,936
13.06.2019 19:53:56
-3,600
ba4ec4dd0ad2e42e04341a901972504c2eae25a6
Added the ability to PUT global settings in a wrapper JSON object
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/admin/AdminRoutes.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/admin/AdminRoutes.java", "diff": "@@ -102,6 +102,7 @@ public class AdminRoutes {\nrouter.add(GET, \"/settings\", GetGlobalSettings...
Java
Apache License 2.0
tomakehurst/wiremock
Added the ability to PUT global settings in a wrapper JSON object
686,936
13.06.2019 20:28:25
-3,600
828af52f6ed2a2b5151aefe35ff3942269511099
Added ability to patch extended global settings
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/admin/AdminRoutes.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/admin/AdminRoutes.java", "diff": "@@ -102,6 +102,7 @@ public class AdminRoutes {\nrouter.add(GET, \"/settings\", GetGlobalSettings...
Java
Apache License 2.0
tomakehurst/wiremock
Added ability to patch extended global settings
686,936
16.06.2019 20:16:38
-3,600
89c747faefa2c6fbed9b176b7d8a3eb5173429c6
Added a test case for Content-Length being correctly returned for gzipped responses
[ { "change_type": "MODIFY", "old_path": "src/test/java/com/github/tomakehurst/wiremock/GzipAcceptanceTest.java", "new_path": "src/test/java/com/github/tomakehurst/wiremock/GzipAcceptanceTest.java", "diff": "*/\npackage com.github.tomakehurst.wiremock;\n+import com.github.tomakehurst.wiremock.common.G...
Java
Apache License 2.0
tomakehurst/wiremock
Added a test case for Content-Length being correctly returned for gzipped responses
686,936
16.06.2019 20:46:14
-3,600
87af1c9bcf0287f1545931d931da8c9203d2c3e6
Fixed a bug causing a 500 to be returned when a plus is present in a query parameter and running in Java 8/Jetty 9.4+
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/jetty9/JettyUtils.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/jetty9/JettyUtils.java", "diff": "@@ -17,6 +17,7 @@ package com.github.tomakehurst.wiremock.jetty9;\nimport static com.github.toma...
Java
Apache License 2.0
tomakehurst/wiremock
Fixed a bug causing a 500 to be returned when a plus is present in a query parameter and running in Java 8/Jetty 9.4+
686,936
16.06.2019 20:49:37
-3,600
29cf401d0238f2fa9bf5d6a398d591f1b3f60a83
Bumped up minor version
[ { "change_type": "MODIFY", "old_path": "build.gradle", "new_path": "build.gradle", "diff": "@@ -26,7 +26,7 @@ allprojects {\napply plugin: 'project-report'\ngroup = 'com.github.tomakehurst'\n- version = '2.23.2'\n+ version = '2.24.0'\nsourceCompatibility = 1.7\ntargetCompatibility = 1.7\n" }, { ...
Java
Apache License 2.0
tomakehurst/wiremock
Bumped up minor version
686,983
24.06.2019 11:23:25
-7,200
1ba634bdb676e8acc27ed2be4d07e1d2813c46ab
Upgrade jackson to avoid CVEs
[ { "change_type": "MODIFY", "old_path": "build.gradle", "new_path": "build.gradle", "diff": "@@ -40,8 +40,8 @@ allprojects {\nhandlebars : '4.0.7',\njetty : '9.2.26.v20180806', // Please don't raise PRs upgrading this to the latest version as it drops Java 7 support. See https://github.com/tomakehurs...
Java
Apache License 2.0
tomakehurst/wiremock
Upgrade jackson to avoid CVEs (#1140)
686,936
30.06.2019 17:42:50
-3,600
eac0bfa811d36124397dd03470930fad4ff1d0ba
Fixed - NPE thrown from the diff renderer when verifying an absent body
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/matching/AbsentPattern.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/matching/AbsentPattern.java", "diff": "@@ -27,4 +27,9 @@ public class AbsentPattern extends StringValuePattern {\npublic Matc...
Java
Apache License 2.0
tomakehurst/wiremock
Fixed #1144 - NPE thrown from the diff renderer when verifying an absent body
686,936
02.07.2019 09:28:28
-3,600
d9cfd040ac86f48ce40b48e479cc46374dd057e8
Added a before listener method for global settings, allowing changes to be vetoed
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/core/WireMockApp.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/core/WireMockApp.java", "diff": "@@ -392,10 +392,15 @@ public class WireMockApp implements StubServer, Admin {\n@Override\npublic v...
Java
Apache License 2.0
tomakehurst/wiremock
Added a before listener method for global settings, allowing changes to be vetoed
686,936
17.07.2019 17:06:38
-3,600
3b46b0bcef963e675d7ea32a8bb968625c206486
Fixed - Added ability to disable gzip
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/core/Options.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/core/Options.java", "diff": "@@ -68,4 +68,5 @@ public interface Options {\nNotMatchedRenderer getNotMatchedRenderer();\nAsynchronousRes...
Java
Apache License 2.0
tomakehurst/wiremock
Fixed #1104 - Added ability to disable gzip
687,055
17.07.2019 16:23:12
0
a58680b11a0707c2f5c9f2119cc9aff4eab54046
Add scenario index on record: differentiates per RequestPattern group Without this playback gets confused when the same url is hit (such as is typical with a SOAP API) but groups differently based on payload or headers.
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/recording/ScenarioProcessor.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/recording/ScenarioProcessor.java", "diff": "@@ -45,14 +45,16 @@ public class ScenarioProcessor {\n}\n});\n+ int scenario...
Java
Apache License 2.0
tomakehurst/wiremock
Add scenario index on record: differentiates per RequestPattern group (#1134) Without this playback gets confused when the same url is hit (such as is typical with a SOAP API) but groups differently based on payload or headers.
686,936
18.07.2019 08:46:10
-3,600
07bbb44562c6b1ce6356abebc9f9f03552c0f3b8
Added docs for request filtering
[ { "change_type": "MODIFY", "old_path": "docs-v2/_docs/extending-wiremock.md", "new_path": "docs-v2/_docs/extending-wiremock.md", "diff": "@@ -384,3 +384,73 @@ new WireMockServer(wireMockConfig()\nIf you would like to collect the traffic\nand for example add it to your acceptance test's output,\nyou ...
Java
Apache License 2.0
tomakehurst/wiremock
Added docs for request filtering
686,936
18.07.2019 10:20:02
-3,600
463196bd708410cc64473a04f44af84811e60146
Added disable gzip docs
[ { "change_type": "MODIFY", "old_path": "docs-v2/_docs/configuration.md", "new_path": "docs-v2/_docs/configuration.md", "diff": "@@ -138,6 +138,14 @@ WireMock wraps all logging in its own ``Notifier`` interface. It ships with no-o\n.notifier(new ConsoleNotifier(true))\n```\n+## Gzip\n+\n+Gzipping of ...
Java
Apache License 2.0
tomakehurst/wiremock
Added disable gzip docs
686,983
24.07.2019 17:19:19
-7,200
f07fd6fd7fdc6f372fa1394fa3d7425de0aee1ab
Upgrade jackson databind to fix CVEs
[ { "change_type": "MODIFY", "old_path": "build.gradle", "new_path": "build.gradle", "diff": "@@ -41,7 +41,7 @@ allprojects {\njetty : '9.2.26.v20180806', // Please don't raise PRs upgrading this to the latest version as it drops Java 7 support. See https://github.com/tomakehurst/wiremock/issues/407 a...
Java
Apache License 2.0
tomakehurst/wiremock
Upgrade jackson databind to fix CVEs (#1160)
686,936
06.08.2019 15:57:44
-3,600
fcaa9a632e2a1b00b3fb5235858cf1c5dbcfadd9
Fixed - Bumped up Jetty versions to latest
[ { "change_type": "MODIFY", "old_path": "build.gradle", "new_path": "build.gradle", "diff": "@@ -38,7 +38,7 @@ allprojects {\ndef versionSets = [\njava7: [\nhandlebars : '4.0.7',\n- jetty : '9.2.26.v20180806', // Please don't raise PRs upgrading this to the latest version as it drops Java 7 support. ...
Java
Apache License 2.0
tomakehurst/wiremock
Fixed #1167 - Bumped up Jetty versions to latest
686,936
21.08.2019 22:13:59
-3,600
e967931b09718c5bf9081bf7aaf932b6c91b8bb7
Fixed - prevented NPE being thrown when attempting to use response templates with response bodies supplied via the jsonBody attribute
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/extension/responsetemplating/ResponseTemplateTransformer.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/extension/responsetemplating/ResponseTemplateTransformer.java", "diff": "@@ -137,7 +137,7 @...
Java
Apache License 2.0
tomakehurst/wiremock
Fixed #1174 - prevented NPE being thrown when attempting to use response templates with response bodies supplied via the jsonBody attribute
686,936
27.08.2019 18:59:52
-3,600
eb3e9fc140e4abf4674ee829ca7f86a821cd1376
Shaded the servlet API
[ { "change_type": "MODIFY", "old_path": "build.gradle", "new_path": "build.gradle", "diff": "@@ -214,12 +214,15 @@ subprojects {\nrelocate \"net.sf\", \"wiremock.net.sf\"\nrelocate \"com.github.jknack\", \"wiremock.com.github.jknack\"\nrelocate \"org.antlr\", \"wiremock.org.antlr\"\n+ relocate \"java...
Java
Apache License 2.0
tomakehurst/wiremock
Shaded the servlet API
686,936
27.08.2019 19:51:52
-3,600
762fa82ade9c7e806d607c733616cb5a6f50a92d
Fixed - equals method for path matchers did not include value pattern
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/matching/PathPattern.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/matching/PathPattern.java", "diff": "@@ -17,6 +17,8 @@ package com.github.tomakehurst.wiremock.matching;\nimport com.fasterxml....
Java
Apache License 2.0
tomakehurst/wiremock
Fixed #1178 - equals method for path matchers did not include value pattern
687,040
28.08.2019 16:24:31
-28,800
d06f3aa60b9a2a887d6d0b7a89c45b3193dcc5f3
Added hostname and systemValue helpers. See Add Handlebars helpers for fetching system properties, environment variables and the local hostname
[ { "change_type": "MODIFY", "old_path": "docs-v2/_docs/response-templating.md", "new_path": "docs-v2/_docs/response-templating.md", "diff": "@@ -364,6 +364,19 @@ Random strings of various kinds can be generated:\n{% endraw %}\n+## Hostname and SystemValue helpers\n+A helper is present to render the c...
Java
Apache License 2.0
tomakehurst/wiremock
Added hostname and systemValue helpers. See #1075 (#1106) Add Handlebars helpers for fetching system properties, environment variables and the local hostname
686,936
28.08.2019 19:21:43
-3,600
b4389b8cd709c319b4d51d69a3e3da56cf8819d7
Some refactorings to the environment and system property helper. Restricted helper's access to vars/props matching wiremock.* by default to avoid accidentally exposing all environment variables.
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/core/Options.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/core/Options.java", "diff": "@@ -22,6 +22,7 @@ import com.github.tomakehurst.wiremock.common.JettySettings;\nimport com.github.tomakehu...
Java
Apache License 2.0
tomakehurst/wiremock
Some refactorings to the environment and system property helper. Restricted helper's access to vars/props matching wiremock.* by default to avoid accidentally exposing all environment variables.
686,936
30.08.2019 09:39:25
-3,600
d72b8c65f14bbe9d6f900e968415cc0237815aa5
Tweaked permitted keys (response templating) docs
[ { "change_type": "MODIFY", "old_path": "docs-v2/_docs/response-templating.md", "new_path": "docs-v2/_docs/response-templating.md", "diff": "@@ -364,19 +364,6 @@ Random strings of various kinds can be generated:\n{% endraw %}\n-## Hostname and SystemValue helpers\n-A helper is present to render the c...
Java
Apache License 2.0
tomakehurst/wiremock
Tweaked permitted keys (response templating) docs
687,042
03.09.2019 17:20:07
-7,200
8cea0b6e7404ef72e119a53da46110598f1dc798
Documenting NPM package
[ { "change_type": "MODIFY", "old_path": "docs-v2/external-resources/index.md", "new_path": "docs-v2/external-resources/index.md", "diff": "@@ -60,6 +60,8 @@ Groovy binding by Tom Jankes:<br>\nPython client by Cody Lee:<br>\n[https://pypi.python.org/pypi/wiremock/1.1.1](https://pypi.python.org/pypi/wi...
Java
Apache License 2.0
tomakehurst/wiremock
Documenting NPM package (#1182)
686,936
03.09.2019 19:25:45
-3,600
42efe359c9a77ab01bf8e7f0c120b84f34760231
Fixed - wwitched request part parsing to use Apache commons fileupload, in order to avoid empty input stream problem with mixed body types
[ { "change_type": "MODIFY", "old_path": "build.gradle", "new_path": "build.gradle", "diff": "@@ -88,6 +88,8 @@ allprojects {\nexclude group: 'org.mozilla', module: 'rhino'\n}\n+ compile 'commons-fileupload:commons-fileupload:1.4'\n+\ntestCompile \"org.hamcrest:hamcrest-all:1.3\"\ntestCompile(\"org.jm...
Java
Apache License 2.0
tomakehurst/wiremock
Fixed #1179 - wwitched request part parsing to use Apache commons fileupload, in order to avoid empty input stream problem with mixed body types
686,936
06.09.2019 18:33:04
-3,600
25b057aac4083cf24cd75e87c76de16309cdaf98
Added ability to remove serve events (logged requests) by ID
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/WireMockServer.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/WireMockServer.java", "diff": "@@ -380,6 +380,11 @@ public class WireMockServer implements Container, Stubbing, Admin {\nreturn wireM...
Java
Apache License 2.0
tomakehurst/wiremock
Added ability to remove serve events (logged requests) by ID
686,936
06.09.2019 19:19:05
-3,600
5b6a3666f3c04b8d6e99799a9d8ace09ab05cd64
Added ability to remove serve events (logged requests) via a request pattern
[ { "change_type": "MODIFY", "old_path": "build.gradle", "new_path": "build.gradle", "diff": "@@ -110,7 +110,8 @@ allprojects {\ntestCompile 'org.littleshoot:littleproxy:1.1.2:littleproxy-shade'\ntestCompile 'org.apache.httpcomponents:httpmime:4.5'\n- testRuntime 'org.slf4j:slf4j-log4j12:1.7.12'\n+ //...
Java
Apache License 2.0
tomakehurst/wiremock
Added ability to remove serve events (logged requests) via a request pattern
686,936
10.09.2019 09:47:15
-3,600
e0c18ef70c9f6e8c2c7b48a0b20fe56c024a1099
Added ability to remove serve events by stub metadata
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/WireMockServer.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/WireMockServer.java", "diff": "@@ -390,6 +390,11 @@ public class WireMockServer implements Container, Stubbing, Admin {\nreturn wireM...
Java
Apache License 2.0
tomakehurst/wiremock
Added ability to remove serve events by stub metadata
686,936
12.09.2019 17:56:20
-3,600
f0cd8f2d1614fbd332b07654e303707b77736fda
Added docs for request journal event removal
[ { "change_type": "MODIFY", "old_path": "docs-v2/_docs/stub-metadata.md", "new_path": "docs-v2/_docs/stub-metadata.md", "diff": "@@ -71,7 +71,7 @@ POST /__admin/mappings/find-by-metadata\n}\n```\n-## Delete stubs by metadata\n+## Remove stubs by metadata\nSimilarly, stubs with matching metadata can b...
Java
Apache License 2.0
tomakehurst/wiremock
Added docs for request journal event removal
686,936
12.09.2019 18:49:59
-3,600
f5e34843cc78720bc9745ec4e7ca1832eb42a6ae
Fixed - unable to use absent() with matchesJsonPath due to serialisation error
[ { "change_type": "MODIFY", "old_path": "src/main/java/com/github/tomakehurst/wiremock/client/WireMock.java", "new_path": "src/main/java/com/github/tomakehurst/wiremock/client/WireMock.java", "diff": "@@ -229,7 +229,7 @@ public class WireMock {\n}\npublic static StringValuePattern absent() {\n- retur...
Java
Apache License 2.0
tomakehurst/wiremock
Fixed #1175 - unable to use absent() with matchesJsonPath due to serialisation error