Skip to content

Commit cd49c71

Browse files
authored
Merge pull request #792 from psiinon/release/0.11.0
Prepare for 0.11.0 release
2 parents 1ca7fdb + 5aaee8d commit cd49c71

38 files changed

+3154
-3823
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.11.0] - 2020-08-06
8+
### Added
9+
- Minimal telemetry implementation and config option
10+
11+
### Changed
12+
- To use ZAP 2.9.0 jar for access to the latest features
13+
714
## [0.10.0] - 2020-02-04
815
### Changed
916
- Changed HUD toolbar icon to add a target overlay when 'only in scope' option enabled.
@@ -121,6 +128,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
121128
## [0.1.0] - 2018-12-03
122129
First alpha release.
123130

131+
[0.11.0]: https://github.com/zaproxy/zap-hud/compare/v0.10.0...v0.11.0
124132
[0.10.0]: https://github.com/zaproxy/zap-hud/compare/v0.9.0...v0.10.0
125133
[0.9.0]: https://github.com/zaproxy/zap-hud/compare/v0.8.0...v0.9.0
126134
[0.8.0]: https://github.com/zaproxy/zap-hud/compare/v0.7.0...v0.8.0

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ repositories {
2727
mavenCentral()
2828
}
2929

30-
version = "0.10.0"
30+
version = "0.11.0"
3131
description = "Display information from ZAP in browser."
3232

3333
val generatedI18nJsFileDir = layout.buildDirectory.dir("zapAddOn/i18nJs")
@@ -48,7 +48,7 @@ zapAddOn {
4848
addOnName.set("HUD - Heads Up Display")
4949
addOnStatus.set(AddOnStatus.BETA)
5050

51-
zapVersion.set("2.8.0")
51+
zapVersion.set("2.9.0")
5252

5353
releaseLink.set("https://github.com/zaproxy/zap-hud/compare/v@[email protected]@CURRENT_VERSION@")
5454
unreleasedLink.set("https://github.com/zaproxy/zap-hud/compare/v@[email protected]")
@@ -345,7 +345,7 @@ tasks.test {
345345

346346
tasks.withType<Test>().configureEach {
347347
systemProperties.putAll(mapOf(
348-
"wdm.chromeDriverVersion" to "78.0.3904.70",
348+
"wdm.chromeDriverVersion" to "83.0.4103.39",
349349
"wdm.geckoDriverVersion" to "0.26.0",
350350
"wdm.forceCache" to "true"))
351351
}

gradle/travis-ci.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
// Build tweaks when running in Travis CI
22

3+
import org.gradle.api.tasks.testing.logging.TestLogEvent
4+
35
fun isEnvVarTrue(envvar: String) = System.getenv(envvar) == "true"
46

57
if (isEnvVarTrue("TRAVIS") && isEnvVarTrue("CI")) {
68

79
tasks.withType(Test::class).configureEach {
810
testLogging {
911
exceptionFormat = org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL
12+
events = setOf(TestLogEvent.FAILED, TestLogEvent.PASSED)
1013
}
1114
}
1215

0 commit comments

Comments
 (0)