Skip to content

Commit

Permalink
release 0.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ptrthomas committed Aug 24, 2020
1 parent 9546c31 commit 3322d55
Show file tree
Hide file tree
Showing 26 changed files with 31 additions and 30 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,13 +281,13 @@ So you need two `<dependencies>`:
<dependency>
<groupId>com.intuit.karate</groupId>
<artifactId>karate-apache</artifactId>
<version>0.9.5</version>
<version>0.9.6</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.intuit.karate</groupId>
<artifactId>karate-junit5</artifactId>
<version>0.9.5</version>
<version>0.9.6</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -300,8 +300,8 @@ If you want to use [JUnit 4](#junit-4), use `karate-junit4` instead of `karate-j
Alternatively for [Gradle](https://gradle.org) you need these two entries:

```yml
testCompile 'com.intuit.karate:karate-junit5:0.9.5'
testCompile 'com.intuit.karate:karate-apache:0.9.5'
testCompile 'com.intuit.karate:karate-junit5:0.9.6'
testCompile 'com.intuit.karate:karate-apache:0.9.6'
```

Also refer to the wiki for using [Karate with Gradle](https://github.com/intuit/karate/wiki/Gradle).
Expand All @@ -317,7 +317,7 @@ You can replace the values of `com.mycompany` and `myproject` as per your needs.
mvn archetype:generate \
-DarchetypeGroupId=com.intuit.karate \
-DarchetypeArtifactId=karate-archetype \
-DarchetypeVersion=0.9.5 \
-DarchetypeVersion=0.9.6 \
-DgroupId=com.mycompany \
-DartifactId=myproject
```
Expand Down
2 changes: 1 addition & 1 deletion examples/consumer-driven-contracts/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<java.version>1.8</java.version>
<maven.compiler.version>3.6.0</maven.compiler.version>
<spring.boot.version>2.2.0.RELEASE</spring.boot.version>
<karate.version>0.9.6.RC4</karate.version>
<karate.version>0.9.6</karate.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion examples/gatling/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

ext {
karateVersion = '0.9.5'
karateVersion = '0.9.6'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion examples/gatling/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<maven.compiler.version>3.6.0</maven.compiler.version>
<karate.version>0.9.6.RC4</karate.version>
<karate.version>0.9.6</karate.version>
<gatling.plugin.version>3.0.2</gatling.plugin.version>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion examples/jobserver/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

ext {
karateVersion = '0.9.5'
karateVersion = '0.9.6'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion examples/jobserver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<maven.compiler.version>3.6.0</maven.compiler.version>
<karate.version>0.9.6.RC4</karate.version>
<karate.version>0.9.6</karate.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion examples/mobile-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<maven.compiler.version>3.6.0</maven.compiler.version>
<karate.version>0.9.6.RC4</karate.version>
<karate.version>0.9.6</karate.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion examples/mock-servlet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<java.version>1.8</java.version>
<maven.compiler.version>3.6.0</maven.compiler.version>
<spring.boot.version>2.2.0.RELEASE</spring.boot.version>
<karate.version>0.9.6.RC4</karate.version>
<karate.version>0.9.6</karate.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion examples/robot-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<maven.compiler.version>3.6.0</maven.compiler.version>
<karate.version>0.9.6.RC4</karate.version>
<karate.version>0.9.6</karate.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion examples/ui-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<maven.compiler.version>3.6.0</maven.compiler.version>
<karate.version>0.9.6.RC4</karate.version>
<karate.version>0.9.6</karate.version>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion karate-apache/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.karate</groupId>
<artifactId>karate-parent</artifactId>
<version>2.0.0</version>
<version>0.9.6</version>
</parent>
<artifactId>karate-apache</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion karate-archetype/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.karate</groupId>
<artifactId>karate-parent</artifactId>
<version>2.0.0</version>
<version>0.9.6</version>
</parent>
<artifactId>karate-archetype</artifactId>
<packaging>jar</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<maven.compiler.version>3.6.0</maven.compiler.version>
<karate.version>0.9.5</karate.version>
<karate.version>0.9.6</karate.version>
</properties>

<dependencies>
Expand Down
2 changes: 2 additions & 0 deletions karate-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1510,6 +1510,8 @@ This can be convenient in some cases, for example as an alternative to [Friendly
* locate('#foo').parent.children[3].click()
```

Also note that [`locate()`](#locate) and [`locateAll()`](#locateall) can be called *on* an [`Element`](#chaining), so that the "search scope" is limited to that `Element` and it's children.

# Debugging
You can use the [Visual Studio Karate entension](https://github.com/intuit/karate/wiki/IDE-Support#vs-code-karate-plugin) for stepping through and debugging a test. You can see a [demo video here](https://twitter.com/KarateDSL/status/1167533484560142336). We recommend that you get comfortable with this because it is going to save you lots of time. And creating tests may actually turn out to be fun !

Expand Down
2 changes: 1 addition & 1 deletion karate-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.karate</groupId>
<artifactId>karate-parent</artifactId>
<version>2.0.0</version>
<version>0.9.6</version>
</parent>
<artifactId>karate-core</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion karate-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.karate</groupId>
<artifactId>karate-parent</artifactId>
<version>2.0.0</version>
<version>0.9.6</version>
</parent>

<artifactId>karate-demo</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions karate-demo/src/test/java/driver/core/test-03.feature
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Feature: parallel testing demo - single node using docker

Background:
# * configure driverTarget = { docker: 'ptrthomas/karate-chrome' }
* configure driver = { type: 'chrome', start: false }
* configure driverTarget = { docker: 'ptrthomas/karate-chrome' }
# * configure driver = { type: 'chrome', start: false }

Scenario: attempt github login
* driver 'https://github.com/login'
Expand Down
2 changes: 1 addition & 1 deletion karate-gatling/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.karate</groupId>
<artifactId>karate-parent</artifactId>
<version>2.0.0</version>
<version>0.9.6</version>
</parent>
<artifactId>karate-gatling</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion karate-jersey/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.karate</groupId>
<artifactId>karate-parent</artifactId>
<version>2.0.0</version>
<version>0.9.6</version>
</parent>
<artifactId>karate-jersey</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion karate-junit4/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.karate</groupId>
<artifactId>karate-parent</artifactId>
<version>2.0.0</version>
<version>0.9.6</version>
</parent>
<artifactId>karate-junit4</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion karate-junit5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.karate</groupId>
<artifactId>karate-parent</artifactId>
<version>2.0.0</version>
<version>0.9.6</version>
</parent>
<artifactId>karate-junit5</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion karate-mock-servlet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.karate</groupId>
<artifactId>karate-parent</artifactId>
<version>2.0.0</version>
<version>0.9.6</version>
</parent>

<artifactId>karate-mock-servlet</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion karate-netty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.karate</groupId>
<artifactId>karate-parent</artifactId>
<version>2.0.0</version>
<version>0.9.6</version>
</parent>
<artifactId>karate-netty</artifactId>
<packaging>jar</packaging>
Expand Down
1 change: 0 additions & 1 deletion karate-robot/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Karate Robot

## Desktop Automation Made `Simple.`
> Version 0.9.6.RC4 is available, and experimental. Please test and contribute if you can !

# Index

Expand Down
2 changes: 1 addition & 1 deletion karate-robot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.karate</groupId>
<artifactId>karate-parent</artifactId>
<version>2.0.0</version>
<version>0.9.6</version>
</parent>
<artifactId>karate-robot</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.intuit.karate</groupId>
<artifactId>karate-parent</artifactId>
<version>2.0.0</version>
<version>0.9.6</version>
<packaging>pom</packaging>

<name>${project.artifactId}</name>
Expand Down

0 comments on commit 3322d55

Please sign in to comment.