From b3da398812810838ff7bb2730b80a39a4d71f7e6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 2 Feb 2022 21:52:01 -0800 Subject: [PATCH] chore(main): release 3.2.0 (#32) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 12 ++++++++++++ manifest.json | 32 +++++++++++++++++++------------- package-lock.json | 6 ++++-- package.json | 3 ++- 4 files changed, 37 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 529a13d..f524cb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [3.2.0](https://github.com/google/eme_logger/compare/v3.1.3...v3.2.0) (2022-02-03) + + +### Features + +* Log more HTMLMediaElement events ([#30](https://github.com/google/eme_logger/issues/30)) ([fb5a90d](https://github.com/google/eme_logger/commit/fb5a90dca86a5575333d9a5a07dda76130b66f09)) + + +### Bug Fixes + +* Fix missing fields in message events ([63e6d5f](https://github.com/google/eme_logger/commit/63e6d5f6acd69e780566363f28ab61e055da6f44)), closes [#27](https://github.com/google/eme_logger/issues/27) + ## [3.1.3](https://github.com/joeyparrish/eme_logger/compare/v3.1.2...v3.1.3) (2021-11-15) ### Bug Fixes diff --git a/manifest.json b/manifest.json index d469f6c..e9e3a31 100644 --- a/manifest.json +++ b/manifest.json @@ -1,19 +1,23 @@ { "name": "EME Call and Event Logger", "short_name": "EME Logger", - "version": "3.1.3", + "version": "3.2.0", "manifest_version": 2, "description": "Logs all Encrypted Media Extensions (EME) method calls and events.", - "content_scripts": [{ - "matches": [ - "http://*/*", - "https://*/*", - "file://*" - ], - "js": ["content-script.js"], - "all_frames": true, - "run_at": "document_start" - }], + "content_scripts": [ + { + "matches": [ + "http://*/*", + "https://*/*", + "file://*" + ], + "js": [ + "content-script.js" + ], + "all_frames": true, + "run_at": "document_start" + } + ], "icons": { "22": "icons/EME_logo_22.png", "32": "icons/EME_logo_32.png", @@ -21,8 +25,10 @@ "96": "icons/EME_logo_96.png", "128": "icons/EME_logo_128.png" }, - "background" : { - "scripts": ["log-window.js"] + "background": { + "scripts": [ + "log-window.js" + ] }, "browser_action": { "default_title": "EME Logger" diff --git a/package-lock.json b/package-lock.json index 10dd269..350c2d8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -15,7 +15,8 @@ "jasmine-browser-runner": "^0.9.0", "jasmine-core": "^3.10.1", "json5": "^2.2.0" - } + }, + "version": "3.2.0" }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", @@ -10676,5 +10677,6 @@ "buffer-crc32": "~0.2.3" } } - } + }, + "version": "3.2.0" } diff --git a/package.json b/package.json index 06fae0d..cf8280d 100644 --- a/package.json +++ b/package.json @@ -14,5 +14,6 @@ "scripts": { "build": "npm ci && gulp", "test": "jasmine-browser-runner runSpecs" - } + }, + "version": "3.2.0" }