This repository has been archived by the owner on Apr 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into beyond-the-paywall-consent
- Loading branch information
Showing
19 changed files
with
424 additions
and
248 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,18 @@ | ||
# Unreleased changes | ||
|
||
[Full changelog](https://github.com/mozilla-rally/core-addon/compare/v1.3.1...master) | ||
[Full changelog](https://github.com/mozilla-rally/core-addon/compare/v1.3.2...master) | ||
|
||
* [#656](https://github.com/mozilla-rally/rally-core-addon/pull/656): Pre-format manifest.json in a way AMO likes, to work around AMO bug. | ||
* [#653](https://github.com/mozilla-rally/rally-core-addon/pull/653): Bump rally.js version to 0.7.0 | ||
* [#651](https://github.com/mozilla-rally/rally-core-addon/pull/651): Pass Rally ID during core-check response, for use by glean in studies. | ||
|
||
# v1.3.2 (2021-06-08) | ||
|
||
[Full changelog](https://github.com/mozilla-rally/core-addon/compare/v1.3.1...v1.3.2) | ||
|
||
* [#624](https://github.com/mozilla-rally/rally-core-addon/pull/624): Update the `income` field to use the key `exactIncome`; update `metrics.yaml` to change `income` to `exact_income` of type `quantity`. | ||
* [#636](https://github.com/mozilla-rally/rally-core-addon/pull/636): Remove undefined values from demographic survey submission. | ||
* [#643](https://github.com/mozilla-rally/rally-core-addon/pull/643): Update the CITP study id to `[email protected]`. | ||
|
||
# v1.3.1 (2021-05-20) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,29 +3,25 @@ | |
"author": "Mozilla", | ||
"manifest_version": 2, | ||
"name": "Mozilla Rally", | ||
"version": "1.3.1", | ||
"version": "1.3.2", | ||
"homepage_url": "https://github.com/mozilla-rally/rally-core-addon", | ||
|
||
"icons": { | ||
"48": "public/img/rally-favicon.svg", | ||
"96": "public/img/rally-favicon.svg" | ||
}, | ||
|
||
"applications": { | ||
"gecko": { | ||
"id": "[email protected]", | ||
"strict_min_version": "80.0a1" | ||
} | ||
}, | ||
|
||
"permissions": [ | ||
"management", | ||
"telemetry", | ||
"storage", | ||
"https://firefox.settings.services.mozilla.com/", | ||
"https://incoming.telemetry.mozilla.org/" | ||
], | ||
|
||
"telemetry": { | ||
"pioneer_id": true, | ||
"study_name": "rally-core", | ||
|
@@ -41,37 +37,44 @@ | |
} | ||
} | ||
}, | ||
|
||
"background": { | ||
"scripts": ["public/addon-build/background.js"] | ||
"scripts": [ | ||
"public/addon-build/background.js" | ||
] | ||
}, | ||
|
||
"content_scripts": [ | ||
{ | ||
"matches": ["https://rally.mozilla.org/*"], | ||
"js": ["public/addon-build/content-script.js"] | ||
"matches": [ | ||
"https://rally.mozilla.org/*" | ||
], | ||
"js": [ | ||
"public/addon-build/content-script.js" | ||
] | ||
} | ||
], | ||
|
||
"browser_action": { | ||
"browser_style": true, | ||
"default_icon": "public/img/rally-toolbar-icon.svg" | ||
}, | ||
|
||
"options_ui": { | ||
"page": "public/index.html", | ||
"open_in_tab": true | ||
}, | ||
|
||
"experiment_apis": { | ||
"firefoxPrivilegedApi": { | ||
"schema": "core-addon/FirefoxPrivilegedApi.schema.json", | ||
"parent": { | ||
"scopes": ["addon_parent"], | ||
"scopes": [ | ||
"addon_parent" | ||
], | ||
"script": "core-addon/FirefoxPrivilegedApi.js", | ||
"events": [], | ||
"paths": [["firefoxPrivilegedApi"]] | ||
"paths": [ | ||
[ | ||
"firefoxPrivilegedApi" | ||
] | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.