Commit Graph

1148 Commits

Author SHA1 Message Date
Olga MaciaszekSharma
1dbdfe85fb Fix versioning. 2024-03-06 19:08:25 +01:00
buildmaster
e47f7f89e6 Bumping versions 2024-01-25 10:39:49 +00:00
buildmaster
494f709202 Bumping versions to 4.1.2-SNAPSHOT after release 2024-01-24 12:53:22 +00:00
buildmaster
e029b11175 Going back to snapshots 2024-01-24 12:53:21 +00:00
buildmaster
052d2f7551 Update SNAPSHOT to 4.1.1 2024-01-24 12:45:50 +00:00
buildmaster
2b81c317da Bumping versions to 4.1.1-SNAPSHOT after release 2023-12-06 16:56:23 +00:00
buildmaster
633ddd9fd3 Going back to snapshots 2023-12-06 16:56:22 +00:00
buildmaster
2ae2ffadb7 Update SNAPSHOT to 4.1.0 2023-12-06 16:49:51 +00:00
buildmaster
cd0fffa972 Going back to snapshots 2023-10-31 15:06:20 +00:00
buildmaster
4c6e703dc9 Update SNAPSHOT to 4.1.0-RC1 2023-10-31 15:00:49 +00:00
buildmaster
7044811061 Going back to snapshots 2023-09-27 12:30:51 +00:00
buildmaster
f9583cbd72 Update SNAPSHOT to 4.1.0-M2 2023-09-27 12:25:18 +00:00
Marcin Grzejszczak
8ba7fb0971 Fixed wrong jetty dependencies 2023-09-11 15:14:53 +02:00
Marcin Grzejszczak
e67382026e Merge branch '4.0.x' 2023-09-05 18:27:36 +02:00
Marcin Grzejszczak
948532c0e7 Merge branch '3.1.x' into 4.0.x 2023-09-05 18:27:26 +02:00
Marcin Grzejszczak
7975d43351 Fixed missing support for String body for URL encoded request; fixes gh-1931 2023-09-05 18:27:20 +02:00
Marcin Grzejszczak
d0d441d112 Merge branch '4.0.x' 2023-09-05 15:18:55 +02:00
Marcin Grzejszczak
ff5bbb450f Merge branch '3.1.x' into 4.0.x 2023-09-05 15:18:47 +02:00
Marcin Grzejszczak
b063b3a4bf Fixed conversion to and from YAML; fixes gh-1921 2023-09-05 15:18:38 +02:00
buildmaster
05234d4382 Going back to snapshots 2023-08-10 03:38:06 +00:00
buildmaster
9f5242eeab Update SNAPSHOT to 4.1.0-M1 2023-08-10 03:28:32 +00:00
buildmaster
030eeff2d3 Bumping versions to 4.0.5-SNAPSHOT after release 2023-07-27 21:34:42 +00:00
buildmaster
5ebba9bd02 Going back to snapshots 2023-07-27 21:34:41 +00:00
buildmaster
a63e4d863f Update SNAPSHOT to 4.0.4 2023-07-27 21:22:32 +00:00
buildmaster
8d897f44ed Bumping versions to 3.1.9-SNAPSHOT after release 2023-06-29 13:50:12 +00:00
buildmaster
30260c234f Going back to snapshots 2023-06-29 13:50:11 +00:00
buildmaster
40f46f68e4 Update SNAPSHOT to 3.1.8 2023-06-29 13:38:36 +00:00
spencergibb
e367df3877 Updates to version 4.1.0-SNAPSHOT 2023-06-14 15:30:13 -04:00
buildmaster
730c1f140a Bumping versions 2023-05-26 17:12:35 +00:00
buildmaster
6c5a6e628c Bumping versions 2023-05-25 14:21:17 +00:00
buildmaster
70c77dda9c Bumping versions to 4.0.4-SNAPSHOT after release 2023-05-24 21:38:54 +00:00
buildmaster
615af9f858 Going back to snapshots 2023-05-24 21:38:53 +00:00
buildmaster
a248161dd6 Update SNAPSHOT to 4.0.3 2023-05-24 21:27:39 +00:00
buildmaster
70e9ccda4f Bumping versions to 3.1.8-SNAPSHOT after release 2023-04-27 16:34:07 +00:00
buildmaster
c50cd9f93e Going back to snapshots 2023-04-27 16:34:05 +00:00
buildmaster
d5e74a64e3 Update SNAPSHOT to 3.1.7 2023-04-27 16:07:47 +00:00
Marcin Grzejszczak
c29bd77521 Trying to fix the issue with descendant operator 2023-04-27 14:42:33 +02:00
Marcin Grzejszczak
c6f948c208 Fixed issue with .. jsonpath operator; fixes gh-1754 2023-04-26 16:28:14 +02:00
Marcin Grzejszczak
0767043beb Unignored the test; fixes gh-1754 2023-04-26 15:38:11 +02:00
Marcin Grzejszczak
c04b110fe2 Merge branch '3.1.x' 2023-04-26 15:05:50 +02:00
Marcin Grzejszczak
b1f2d1f4a5 Does not include namespaces in body parsing
this PR iterates over child element nodes and checks for namespace attributes

Co-authored-by: @bensonbenny021 (https://github.com/spring-cloud/spring-cloud-contract/pull/1870)

fixes gh-1709
2023-04-26 15:05:40 +02:00
Marcin Grzejszczak
317aa651eb Merge branch '3.1.x' 2023-04-26 14:03:29 +02:00
Marcin Grzejszczak
a2444550d5 Does not do JSON assertions for byte payloads
without this change we're doing json assertions for payload that should read payloads as bytes

this is a workaround around the issues like https://github.com/spring-cloud/spring-cloud-contract/issues/1701 and https://github.com/spring-cloud/spring-cloud-contract/issues/1627 .

The problem is that due to the fact that we accept GString payloads where you can have complex json structures with consumer / producer parts, we are doing recursive analysis of that json structure. We're parsing the keys and values and then we're creating the final Json payload map. The issue is that sometimes the value is actually textual json which we shouldn't parse. We don't know that when the processing happens.

The workaround is about telling the framework to read the payload from a file as bytes and then simple equality check will happen without additional JSON assertions.

We will need to look into some better fixes for that in the future (e.g. 5.0.0).

fixes gh-1627
fixes gh-1701
2023-04-26 14:03:18 +02:00
Marcin Grzejszczak
548555484c Merge branch '3.1.x' 2023-04-26 12:58:31 +02:00
Benedict Roeser
ee52a9f6ae Do not escape quotes in IllegalStateException (#1895)
Now relativePath is logged correctly when resource is null.

fixes #1894
2023-04-26 12:58:07 +02:00
buildmaster
15d412f5cf Bumping versions to 4.0.3-SNAPSHOT after release 2023-03-28 18:48:26 +00:00
buildmaster
28533c4d2d Going back to snapshots 2023-03-28 18:48:25 +00:00
buildmaster
0d7932b3ed Update SNAPSHOT to 4.0.2 2023-03-28 18:38:09 +00:00
Marcin Grzejszczak
5f14f230d1 Merge branch '3.1.x' 2023-03-09 16:32:44 +01:00
Arseny Feytullaev
77b05b6a16 Fixes gh-1876 (#1877) 2023-03-09 16:06:47 +01:00