Skip to content

Commit eb35ef2

Browse files
committed
Merge branch 'release-1.6.0' into master
2 parents efddc5d + e92a4f3 commit eb35ef2

File tree

89 files changed

+8359
-7982
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+8359
-7982
lines changed

.gitattributes

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
* text=auto
2+
3+
*.java text
4+
*.properties text
5+
*.md text
6+
*.xml text
7+
*.gradle text
8+
9+
*.bat text eol=crlf
10+
*.sh text eol=lf
11+
gradlew text eol=lf
12+
13+
*.jar binary

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
language: java
22
sudo: false
33

4+
jdk:
5+
- oraclejdk8
6+
- oraclejdk9
7+
48
before_cache:
59
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
610
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/

CHANGES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
Summary of the changes done in each version.
44

5+
## 1.6.0 (2018-04-10)
6+
7+
### Changes
8+
9+
- Explicitly disable HTTP caching, to always obtain a fresh response from ZAP.
10+
11+
### New APIs
12+
13+
- WebSockets ("websocket").
14+
515
## 1.5.0 (2017-11-30)
616

717
### Updated APIs

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ can be obtained from [Maven Central](http://search.maven.org/) with following co
2222

2323
* GroupId: `org.zaproxy`
2424
* ArtifactId: `zap-clientapi`
25-
* Version: `1.5.0`
25+
* Version: `1.6.0`
2626

2727
Previous releases are also available, more details can be found in [Maven Central](http://search.maven.org/#search|ga|1|org.zaproxy).
2828

build.gradle

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,21 @@
1+
plugins {
2+
id "com.diffplug.gradle.spotless" version "3.10.0" apply false
3+
}
4+
15
task wrapper(type: Wrapper) {
2-
gradleVersion = '4.2.1'
6+
gradleVersion = '4.6'
37
}
48

59
apply from: "gradle/compile.gradle"
6-
apply from: "gradle/idea.gradle"
7-
apply from: "gradle/eclipse.gradle"
810

911
subprojects {
1012
apply plugin: 'java'
13+
apply plugin: 'com.diffplug.gradle.spotless'
14+
1115
group = 'org.zaproxy'
1216

13-
version '1.5.0'
14-
ext.versionBC = '1.3.0'
17+
version '1.6.0'
18+
ext.versionBC = '1.5.0'
1519

1620
repositories {
1721
mavenLocal()
@@ -20,4 +24,12 @@ subprojects {
2024

2125
sourceCompatibility = JavaVersion.VERSION_1_7
2226
targetCompatibility = JavaVersion.VERSION_1_7
27+
28+
spotless {
29+
java {
30+
licenseHeaderFile "$rootDir/gradle/spotless/license.java"
31+
32+
googleJavaFormat().style('AOSP')
33+
}
34+
}
2335
}

gradle/eclipse.gradle

Lines changed: 0 additions & 4 deletions
This file was deleted.

gradle/idea.gradle

Lines changed: 0 additions & 4 deletions
This file was deleted.

gradle/spotless/license.java

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/*
2+
* Zed Attack Proxy (ZAP) and its related class files.
3+
*
4+
* ZAP is an HTTP/HTTPS proxy for assessing web application security.
5+
*
6+
* Copyright $YEAR The ZAP Development Team
7+
*
8+
* Licensed under the Apache License, Version 2.0 (the "License");
9+
* you may not use this file except in compliance with the License.
10+
* You may obtain a copy of the License at
11+
*
12+
* http://www.apache.org/licenses/LICENSE-2.0
13+
*
14+
* Unless required by applicable law or agreed to in writing, software
15+
* distributed under the License is distributed on an "AS IS" BASIS,
16+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17+
* See the License for the specific language governing permissions and
18+
* limitations under the License.
19+
*/

gradle/wrapper/gradle-wrapper.jar

-375 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
33
zipStoreBase=GRADLE_USER_HOME
44
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.2.1-bin.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-bin.zip

0 commit comments

Comments
 (0)