From ddb3a9609f774481aab502a85a70392a85d41b78 Mon Sep 17 00:00:00 2001 From: Alessio Placitelli Date: Wed, 13 Jan 2021 18:11:00 +0100 Subject: [PATCH 1/3] Update the demo to the newest Rally demo (0.3.1) This additionally updates the version and description. --- CHANGELOG.md | 3 +++ public/locally-available-studies.json | 8 ++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bc15a5f..16b1333d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ [Full changelog](https://github.com/mozilla-rally/core-addon/compare/v0.7.0...master) +* Core-Addon + * [#299](https://github.com/mozilla-rally/core-addon/pull/299): Change the link to the sample Rally demo addon. + # v0.7.0 (2021-01-11) [Full changelog](https://github.com/mozilla-rally/core-addon/compare/v0.6.1...v0.7.0) diff --git a/public/locally-available-studies.json b/public/locally-available-studies.json index 654686a1..4025989b 100644 --- a/public/locally-available-studies.json +++ b/public/locally-available-studies.json @@ -1,7 +1,7 @@ { "data": [ { - "name": "Ion Base Study", + "name": "Rally Base Study", "icons": { "32": "https://addons.cdn.mozilla.net/static/img/addon-icons/default-32.png", "64": "https://addons.cdn.mozilla.net/static/img/addon-icons/default-64.png", @@ -12,18 +12,18 @@ "url": "https://addons.mozilla.org/en-US/firefox/addon/ion-basic-study/", "name": "Ion Developers" }, - "version": "2.1", + "version": "0.3.1", "addon_id": "ion-basic-study@mozilla.org", "moreInfo": { "spec": "https://addons.mozilla.org/en-US/firefox/addon/ion-basic-study/" }, "isDefault": false, "sourceURI": { - "spec": "https://addons.mozilla.org/firefox/downloads/file/3692256/ion_basic_study-0.3.0-fx.xpi" + "spec": "https://addons.mozilla.org/firefox/downloads/file/3707495/ion_basic_study-0.3.1-fx.xpi" }, "studyType": "extension", "studyEnded": false, - "description": "Study purpose: Testing Ion.", + "description": "Study purpose: Testing Rally.", "privacyPolicy": { "spec": "https://addons.mozilla.org/en-US/firefox/addon/ion-basic-study/" }, From 61e834ffe7fcd9543417a3fbdf0e75e625c020ae Mon Sep 17 00:00:00 2001 From: Alessio Placitelli Date: Wed, 13 Jan 2021 18:43:18 +0100 Subject: [PATCH 2/3] Fix the integration test --- tests/core-addon/integration/core_addon.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core-addon/integration/core_addon.js b/tests/core-addon/integration/core_addon.js index 87fb716c..c1896d0c 100644 --- a/tests/core-addon/integration/core_addon.js +++ b/tests/core-addon/integration/core_addon.js @@ -109,7 +109,7 @@ describe("Core-Addon Onboarding", function () { await this.driver.setContext(firefox.Context.CONTENT); // Ensure that the study card for the base study is displayed. - const baseStudySelector = By.xpath(`//span[text()="Ion Base Study"]`); + const baseStudySelector = By.xpath(`//span[text()="Rally Base Study"]`); await this.driver.findElement(baseStudySelector); // Begin study unenrollment cancel it. From e0b9e1f797b4d32770e13967d8f556c463fdb09d Mon Sep 17 00:00:00 2001 From: Alessio Placitelli Date: Wed, 13 Jan 2021 18:50:47 +0100 Subject: [PATCH 3/3] Bumped version to 0.7.1 --- CHANGELOG.md | 6 +++++- manifest.json | 2 +- package-lock.json | 2 +- package.json | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 16b1333d..15c55873 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Unreleased changes -[Full changelog](https://github.com/mozilla-rally/core-addon/compare/v0.7.0...master) +[Full changelog](https://github.com/mozilla-rally/core-addon/compare/v0.7.1...master) + +# v0.7.1 (2021-01-13) + +[Full changelog](https://github.com/mozilla-rally/core-addon/compare/v0.7.0...v0.7.1) * Core-Addon * [#299](https://github.com/mozilla-rally/core-addon/pull/299): Change the link to the sample Rally demo addon. diff --git a/manifest.json b/manifest.json index 839e83f3..11fc72c8 100644 --- a/manifest.json +++ b/manifest.json @@ -3,7 +3,7 @@ "author": "Mozilla", "manifest_version": 2, "name": "Rally Core", - "version": "0.7.0", + "version": "0.7.1", "homepage_url": "https://github.com/mozilla-extensions/pioneer-v2-core-example", "applications": { diff --git a/package-lock.json b/package-lock.json index 42652b7e..44ac9933 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "rally_core", - "version": "0.7.0", + "version": "0.7.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index e15ee65a..998aa1a4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rally_core", - "version": "0.7.0", + "version": "0.7.1", "scripts": { "build": "rollup -c && rollup -c rollup.config.addon.js --config-study-list-url=/public/locally-available-studies.json && web-ext build --overwrite-dest && mv web-ext-artifacts/*.zip web-ext-artifacts/rally_core.xpi", "dev": "rollup -c -w",