From ce98486616c2b37d2362bf62560efbc04d5fc41b Mon Sep 17 00:00:00 2001 From: Ramon Date: Thu, 23 Dec 2021 09:33:10 -0300 Subject: [PATCH 1/5] Update CHANGELOG.md --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index dda0edc5..e0cf898b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file, per [the Ke ## [Unreleased] - TBD +## [1.0.8] - 2021-12-23 +### Changed +- The API URL and audience parameter to get the access token in staging/dev environment (props [@Rahmon](https://github.com/Rahmon), [@felipeelia](https://github.com/felipeelia) via [#152](https://github.com/globeandmail/sophi-for-wordpress/pull/152)). + +### Fixed +- Duplication content issue when more than one block is added in a page (props [@Rahmon](https://github.com/Rahmon), [@felipeelia](https://github.com/felipeelia), [@jeffpaul](https://github.com/jeffpaul), [@dinhtungdu](https://github.com/dinhtungdu) via [#157](https://github.com/globeandmail/sophi-for-wordpress/pull/157)). + +### Security +- Update dependency `prop-types` from 15.7.2 to 15.8.0 (props [@renovate](https://github.com/marketplace/renovate) via [#158](https://github.com/globeandmail/sophi-for-wordpress/pull/158)). + ## [1.0.7] - 2021-10-29 ### Changed - Sophi Auth URL value used for Production, Staging, and Development (props [@jeffpaul](https://github.com/jeffpaul), [@barryceelen](https://github.com/barryceelen), [@amckie](https://github.com/amckie) via [#148](https://github.com/globeandmail/sophi-for-wordpress/pull/148)). @@ -92,6 +102,7 @@ All notable changes to this project will be documented in this file, per [the Ke - Initial public release! 🎉 [Unreleased]: https://github.com/globeandmail/sophi-for-wordpress/compare/trunk...develop +[1.0.8]: https://github.com/globeandmail/sophi-for-wordpress/compare/1.0.7...1.0.8 [1.0.7]: https://github.com/globeandmail/sophi-for-wordpress/compare/1.0.6...1.0.7 [1.0.6]: https://github.com/globeandmail/sophi-for-wordpress/compare/1.0.5...1.0.6 [1.0.5]: https://github.com/globeandmail/sophi-for-wordpress/compare/1.0.4...1.0.5 From 62a72ae245c1805dd1f5464d3187091ea8c8be98 Mon Sep 17 00:00:00 2001 From: Ramon Date: Thu, 23 Dec 2021 09:33:40 -0300 Subject: [PATCH 2/5] Update readme.txt --- readme.txt | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/readme.txt b/readme.txt index 45ac9a81..e690e166 100644 --- a/readme.txt +++ b/readme.txt @@ -2,7 +2,7 @@ Contributors: 10up, sophidev Tags: Sophi, Site Automation, Collector, AI, Artifical Intelligence, ML, Machine Learning, Content Curation Tested up to: 5.8 -Stable tag: 1.0.7 +Stable tag: 1.0.8 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -228,7 +228,12 @@ The same [Privacy & Terms that govern The Globe and Mail](https://www.theglobean == Changelog == -= 1.0.7= += 1.0.8 = +* **Changed:** the API URL and audience parameter to get the access token in staging/dev environment (props [@Rahmon](https://github.com/Rahmon), [@felipeelia](https://github.com/felipeelia) via [#152](https://github.com/globeandmail/sophi-for-wordpress/pull/152)). +* **Fixed:** duplication content issue when more than one block is added in a page (props [@Rahmon](https://github.com/Rahmon), [@felipeelia](https://github.com/felipeelia), [@jeffpaul](https://github.com/jeffpaul), [@dinhtungdu](https://github.com/dinhtungdu) via [#157](https://github.com/globeandmail/sophi-for-wordpress/pull/157)). +* **Security:** update dependency `prop-types` from 15.7.2 to 15.8.0 (props [@renovate](https://github.com/marketplace/renovate) via [#158](https://github.com/globeandmail/sophi-for-wordpress/pull/158)). + += 1.0.7 = * **Changed:** Sophi Auth URL value used for Production, Staging, and Development (props [@jeffpaul](https://profiles.wordpress.org/jeffpaul/), [@barryceelen](https://github.com/barryceelen), [@amckie](https://github.com/amckie)). * **Changed:** Sophi Site Automation API URL structure (props [@rahmohn](https://profiles.wordpress.org/rahmohn/)). * **Changed:** Sophi Audience URL used in authorization (props [@rahmohn](https://profiles.wordpress.org/rahmohn/)). From 298b0474147e154dca1cad012ce2d91575e71f32 Mon Sep 17 00:00:00 2001 From: Ramon Date: Thu, 23 Dec 2021 09:34:02 -0300 Subject: [PATCH 3/5] Update sophi.php --- sophi.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sophi.php b/sophi.php index b9ff9b10..68d6d898 100644 --- a/sophi.php +++ b/sophi.php @@ -3,7 +3,7 @@ * Plugin Name: Sophi * Plugin URI: https://github.com/globeandmail/sophi-for-wordpress * Description: WordPress VIP-compatible plugin for the Sophi.io Site Automation service. - * Version: 1.0.8-dev + * Version: 1.0.8 * Requires at least: 5.6 * Requires PHP: 7.4 * Author: 10up @@ -16,7 +16,7 @@ */ // Useful global constants. -define( 'SOPHI_WP_VERSION', '1.0.7' ); +define( 'SOPHI_WP_VERSION', '1.0.8' ); define( 'SOPHI_WP_URL', plugin_dir_url( __FILE__ ) ); define( 'SOPHI_WP_PATH', plugin_dir_path( __FILE__ ) ); define( 'SOPHI_WP_INC', SOPHI_WP_PATH . 'includes/' ); From fcde6e8a1463c5b59e8620e03a88b45099275515 Mon Sep 17 00:00:00 2001 From: Ramon Date: Thu, 23 Dec 2021 09:34:29 -0300 Subject: [PATCH 4/5] Update package.json --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index d2365cb8..60005b9a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@globeandmail/sophi-for-wordpress", - "version": "1.0.7", + "version": "1.0.8", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 5adb9b4d..4d1d5e5a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@globeandmail/sophi-for-wordpress", - "version": "1.0.7", + "version": "1.0.8", "description": "WordPress VIP-compatible plugin for the Sophi.io Site Automation service.", "homepage": "https://github.com/globeandmail/sophi-for-wordpress", "bugs": { From 3654b407b09369c351d5ba2443423565dafad6ab Mon Sep 17 00:00:00 2001 From: Jeffrey Paul Date: Thu, 23 Dec 2021 09:02:46 -0600 Subject: [PATCH 5/5] update changelogs --- CHANGELOG.md | 5 +++-- readme.txt | 7 ++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e0cf898b..50e80e77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,11 @@ All notable changes to this project will be documented in this file, per [the Ke ## [1.0.8] - 2021-12-23 ### Changed -- The API URL and audience parameter to get the access token in staging/dev environment (props [@Rahmon](https://github.com/Rahmon), [@felipeelia](https://github.com/felipeelia) via [#152](https://github.com/globeandmail/sophi-for-wordpress/pull/152)). +- Updated `auth_url` and `audience` parameters to get respective Staging and Development environment access tokens (props [@Rahmon](https://github.com/Rahmon), [@felipeelia](https://github.com/felipeelia) via [#152](https://github.com/globeandmail/sophi-for-wordpress/pull/152)). ### Fixed -- Duplication content issue when more than one block is added in a page (props [@Rahmon](https://github.com/Rahmon), [@felipeelia](https://github.com/felipeelia), [@jeffpaul](https://github.com/jeffpaul), [@dinhtungdu](https://github.com/dinhtungdu) via [#157](https://github.com/globeandmail/sophi-for-wordpress/pull/157)). +- Issue where multiple Sophi blocks on the same page had duplicated content (props [@Rahmon](https://github.com/Rahmon), [@felipeelia](https://github.com/felipeelia), [@jeffpaul](https://github.com/jeffpaul), [@dinhtungdu](https://github.com/dinhtungdu) via [#157](https://github.com/globeandmail/sophi-for-wordpress/pull/157)). +- Testing environment deploy process (props [@Rahmon](https://github.com/Rahmon), [@felipeelia](https://github.com/felipeelia) via [#155](https://github.com/globeandmail/sophi-for-wordpress/pull/155)). ### Security - Update dependency `prop-types` from 15.7.2 to 15.8.0 (props [@renovate](https://github.com/marketplace/renovate) via [#158](https://github.com/globeandmail/sophi-for-wordpress/pull/158)). diff --git a/readme.txt b/readme.txt index e690e166..330aa3c8 100644 --- a/readme.txt +++ b/readme.txt @@ -229,9 +229,10 @@ The same [Privacy & Terms that govern The Globe and Mail](https://www.theglobean == Changelog == = 1.0.8 = -* **Changed:** the API URL and audience parameter to get the access token in staging/dev environment (props [@Rahmon](https://github.com/Rahmon), [@felipeelia](https://github.com/felipeelia) via [#152](https://github.com/globeandmail/sophi-for-wordpress/pull/152)). -* **Fixed:** duplication content issue when more than one block is added in a page (props [@Rahmon](https://github.com/Rahmon), [@felipeelia](https://github.com/felipeelia), [@jeffpaul](https://github.com/jeffpaul), [@dinhtungdu](https://github.com/dinhtungdu) via [#157](https://github.com/globeandmail/sophi-for-wordpress/pull/157)). -* **Security:** update dependency `prop-types` from 15.7.2 to 15.8.0 (props [@renovate](https://github.com/marketplace/renovate) via [#158](https://github.com/globeandmail/sophi-for-wordpress/pull/158)). +* **Changed:** Updated `auth_url` and `audience` parameters to get respective Staging and Development environment access tokens (props [@Rahmon](https://github.com/Rahmon), [@felipeelia](https://github.com/felipeelia)). +* **Fixed:** Issue where multiple Sophi blocks on the same page had duplicated content (props [@Rahmon](https://github.com/Rahmon), [@felipeelia](https://github.com/felipeelia), [@jeffpaul](https://github.com/jeffpaul), [@dinhtungdu](https://github.com/dinhtungdu)). +* **Fixed:** Testing environment deploy process (props [@Rahmon](https://github.com/Rahmon), [@felipeelia](https://github.com/felipeelia)). +* **Security:** update dependency `prop-types` from 15.7.2 to 15.8.0 (props [@renovate](https://github.com/marketplace/renovate)). = 1.0.7 = * **Changed:** Sophi Auth URL value used for Production, Staging, and Development (props [@jeffpaul](https://profiles.wordpress.org/jeffpaul/), [@barryceelen](https://github.com/barryceelen), [@amckie](https://github.com/amckie)).