Skip to content

Commit b50202b

Browse files
committed
prepare release 0.9.3
1 parent a90f35a commit b50202b

File tree

16 files changed

+37
-23
lines changed

16 files changed

+37
-23
lines changed

README.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -275,13 +275,13 @@ So you need two `<dependencies>`:
275275
<dependency>
276276
<groupId>com.intuit.karate</groupId>
277277
<artifactId>karate-apache</artifactId>
278-
<version>0.9.2</version>
278+
<version>0.9.3</version>
279279
<scope>test</scope>
280280
</dependency>
281281
<dependency>
282282
<groupId>com.intuit.karate</groupId>
283283
<artifactId>karate-junit4</artifactId>
284-
<version>0.9.2</version>
284+
<version>0.9.3</version>
285285
<scope>test</scope>
286286
</dependency>
287287
```
@@ -297,8 +297,8 @@ If you want to use [JUnit 5](#junit-5), use `karate-junit5` instead of `karate-j
297297
Alternatively for [Gradle](https://gradle.org) you need these two entries:
298298

299299
```yml
300-
testCompile 'com.intuit.karate:karate-junit4:0.9.2'
301-
testCompile 'com.intuit.karate:karate-apache:0.9.2'
300+
testCompile 'com.intuit.karate:karate-junit4:0.9.3'
301+
testCompile 'com.intuit.karate:karate-apache:0.9.3'
302302
```
303303

304304
### Quickstart
@@ -312,7 +312,7 @@ You can replace the values of `com.mycompany` and `myproject` as per your needs.
312312
mvn archetype:generate \
313313
-DarchetypeGroupId=com.intuit.karate \
314314
-DarchetypeArtifactId=karate-archetype \
315-
-DarchetypeVersion=0.9.2 \
315+
-DarchetypeVersion=0.9.3 \
316316
-DgroupId=com.mycompany \
317317
-DartifactId=myproject
318318
```
@@ -1999,12 +1999,12 @@ Example:
19991999

20002000
```
20012001
# trust all server certificates, in the feature file
2002-
* configure ssl = {trustAll: true});
2002+
* configure ssl = { trustAll: true };
20032003
```
20042004

20052005
```
20062006
# trust all server certificates, global configuration in 'karate-config.js'
2007-
karate.configure('ssl', {trustAll: true});
2007+
karate.configure('ssl', { trustAll: true });
20082008
```
20092009

20102010
# Payload Assertions
@@ -2078,9 +2078,13 @@ In case you were wondering, variables (and even expressions) are supported on th
20782078
* match foo == bar
20792079
```
20802080

2081-
If you are wondering about the finer details of the `match` syntax, the left-hand-side has to be either a variable name, or a 'named' JsonPath or XPath expression. And the right-hand-side can be any valid [Karate expression](#karate-expressions).
2081+
If you are wondering about the finer details of the `match` syntax, the left-hand-side has to be either a
2082+
* variable name - e.g. `foo`
2083+
* a 'named' JsonPath or XPath expression - e.g. `foo.bar`
2084+
* any valid function or method call - e.g. `foo.bar()` or `foo.bar('hello').baz`
2085+
* or anything wrapped in parantheses which will be evaluated - e.g. `(foo + bar)` or `(42)`
20822086

2083-
> Refer to the section on [JsonPath short-cuts](#jsonpath-short-cuts) for a deeper understanding of 'named' JsonPath expressions in Karate.
2087+
And the right-hand-side can be any valid [Karate expression](#karate-expressions). Refer to the section on [JsonPath short-cuts](#jsonpath-short-cuts) for a deeper understanding of 'named' JsonPath expressions in Karate.
20842088

20852089
### `match !=` (not equals)
20862090
The 'not equals' operator `!=` works as you would expect:

karate-apache/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.karate</groupId>
77
<artifactId>karate-parent</artifactId>
8-
<version>1.0.0</version>
8+
<version>0.9.3</version>
99
</parent>
1010
<artifactId>karate-apache</artifactId>
1111
<packaging>jar</packaging>

karate-archetype/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.karate</groupId>
77
<artifactId>karate-parent</artifactId>
8-
<version>1.0.0</version>
8+
<version>0.9.3</version>
99
</parent>
1010
<artifactId>karate-archetype</artifactId>
1111
<packaging>jar</packaging>

karate-archetype/src/main/resources/archetype-resources/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1212
<java.version>1.8</java.version>
1313
<maven.compiler.version>3.6.0</maven.compiler.version>
14-
<karate.version>0.9.2</karate.version>
14+
<karate.version>0.9.3</karate.version>
1515
</properties>
1616

1717
<dependencies>

karate-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.karate</groupId>
77
<artifactId>karate-parent</artifactId>
8-
<version>1.0.0</version>
8+
<version>0.9.3</version>
99
</parent>
1010
<artifactId>karate-core</artifactId>
1111
<packaging>jar</packaging>

karate-demo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.karate</groupId>
77
<artifactId>karate-parent</artifactId>
8-
<version>1.0.0</version>
8+
<version>0.9.3</version>
99
</parent>
1010

1111
<artifactId>karate-demo</artifactId>

karate-gatling/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
karateVersion = '1.0.0'
3+
karateVersion = '0.9.3'
44
}
55
}
66

karate-gatling/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.karate</groupId>
77
<artifactId>karate-parent</artifactId>
8-
<version>1.0.0</version>
8+
<version>0.9.3</version>
99
</parent>
1010
<artifactId>karate-gatling</artifactId>
1111
<packaging>jar</packaging>

karate-jersey/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.karate</groupId>
77
<artifactId>karate-parent</artifactId>
8-
<version>1.0.0</version>
8+
<version>0.9.3</version>
99
</parent>
1010
<artifactId>karate-jersey</artifactId>
1111
<packaging>jar</packaging>

karate-junit4/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.karate</groupId>
77
<artifactId>karate-parent</artifactId>
8-
<version>1.0.0</version>
8+
<version>0.9.3</version>
99
</parent>
1010
<artifactId>karate-junit4</artifactId>
1111
<packaging>jar</packaging>

0 commit comments

Comments
 (0)