From 491301b29e3977619a593460bd871cfce4adb6e9 Mon Sep 17 00:00:00 2001 From: Dan Powell Date: Mon, 3 Jun 2019 17:26:13 -0400 Subject: [PATCH] Release v1.2.0 --- CHANGELOG.md | 6 ++++++ build.gradle | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9315a07e..5910acd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ Performance, Page, and Network Assertions against the HAR. +# [1.2.0] +- Add much-needed handling of Brotli Compression. Brotli has become a popular alternative to GZIP compression scheme, and is utilized all over the web by websites including Google and Facebook. The proxy can now decompress and recognize brotli. +- Add recognition for variant (versioned) JSON content type strings. Previously, response bodies for JSON content types with content types like "application/something-v1+json" would not be captured. Now they will be. +- Fix a credentials leak where the basic auth header was being added to non-connect request types. +- Dependency updates + # [1.1.0] - ZIP distribution with launch scripts, SSL certificates and keys - Dependency updates diff --git a/build.gradle b/build.gradle index edf76a33..e4e907ba 100644 --- a/build.gradle +++ b/build.gradle @@ -28,7 +28,7 @@ subprojects { apply plugin: 'signing' group = 'com.browserup' - version = '1.2.0-SNAPSHOT' + version = '1.2.0' sourceCompatibility=11