From 34a3387cf483a65b82e76c93d285af6e2ba9c98d Mon Sep 17 00:00:00 2001 From: Simo Kinnunen Date: Sun, 9 Apr 2017 22:01:49 +0900 Subject: [PATCH] Update adbkit to resolve an issue with recent versions of ADB that include a null byte in `adbkey.pub`, which was causing validation to fail. --- CHANGELOG.md | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b944f29c..d114f2c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ - Updated [adbkit-apkreader](https://github.com/openstf/adbkit-apkreader) to resolve another unrelated parsing issue with slightly malformed manifest files. - Updated [adbkit](https://github.com/openstf/adbkit) to resolve an issue where trailing spaces in an adb public key would cause an error during adb connect. - Updated [adbkit](https://github.com/openstf/adbkit) to resolve issues with log parsing on Android 7.0 and later, caused by Android no longer transforming `\n` to `\r\n`. +- Updated [adbkit](https://github.com/openstf/adbkit) to resolve an issue with recent versions of ADB that include a null byte in `adbkey.pub`, which was causing validation to fail. ### Misc diff --git a/package.json b/package.json index 19c9fe92..eddeabcd 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,7 @@ }, "dependencies": { "@slack/client": "^3.5.4", - "adbkit": "^2.8.1", + "adbkit": "^2.9.0", "adbkit-apkreader": "^2.1.1", "adbkit-monkey": "^1.0.1", "aws-sdk": "^2.4.13",