Skip to content

Commit

Permalink
Merge pull request #792 from psiinon/release/0.11.0
Browse files Browse the repository at this point in the history
Prepare for 0.11.0 release
  • Loading branch information
psiinon authored Aug 6, 2020
2 parents 1ca7fdb + 5aaee8d commit cd49c71
Show file tree
Hide file tree
Showing 38 changed files with 3,154 additions and 3,823 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.11.0] - 2020-08-06
### Added
- Minimal telemetry implementation and config option

### Changed
- To use ZAP 2.9.0 jar for access to the latest features

## [0.10.0] - 2020-02-04
### Changed
- Changed HUD toolbar icon to add a target overlay when 'only in scope' option enabled.
Expand Down Expand Up @@ -121,6 +128,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.1.0] - 2018-12-03
First alpha release.

[0.11.0]: https://github.com/zaproxy/zap-hud/compare/v0.10.0...v0.11.0
[0.10.0]: https://github.com/zaproxy/zap-hud/compare/v0.9.0...v0.10.0
[0.9.0]: https://github.com/zaproxy/zap-hud/compare/v0.8.0...v0.9.0
[0.8.0]: https://github.com/zaproxy/zap-hud/compare/v0.7.0...v0.8.0
Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ repositories {
mavenCentral()
}

version = "0.10.0"
version = "0.11.0"
description = "Display information from ZAP in browser."

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

zapVersion.set("2.8.0")
zapVersion.set("2.9.0")

releaseLink.set("https://github.com/zaproxy/zap-hud/compare/v@PREVIOUS_VERSION@...v@CURRENT_VERSION@")
unreleasedLink.set("https://github.com/zaproxy/zap-hud/compare/v@CURRENT_VERSION@...HEAD")
Expand Down Expand Up @@ -345,7 +345,7 @@ tasks.test {

tasks.withType<Test>().configureEach {
systemProperties.putAll(mapOf(
"wdm.chromeDriverVersion" to "78.0.3904.70",
"wdm.chromeDriverVersion" to "83.0.4103.39",
"wdm.geckoDriverVersion" to "0.26.0",
"wdm.forceCache" to "true"))
}
Expand Down
3 changes: 3 additions & 0 deletions gradle/travis-ci.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
// Build tweaks when running in Travis CI

import org.gradle.api.tasks.testing.logging.TestLogEvent

fun isEnvVarTrue(envvar: String) = System.getenv(envvar) == "true"

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

tasks.withType(Test::class).configureEach {
testLogging {
exceptionFormat = org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL
events = setOf(TestLogEvent.FAILED, TestLogEvent.PASSED)
}
}

Expand Down
Loading

0 comments on commit cd49c71

Please sign in to comment.