diff --git a/CHANGELOG.md b/CHANGELOG.md index dda0edc5..50e80e77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file, per [the Ke ## [Unreleased] - TBD +## [1.0.8] - 2021-12-23 +### 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) via [#152](https://github.com/globeandmail/sophi-for-wordpress/pull/152)). + +### 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) 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)). + ## [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 +103,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 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": { diff --git a/readme.txt b/readme.txt index 45ac9a81..330aa3c8 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,13 @@ The same [Privacy & Terms that govern The Globe and Mail](https://www.theglobean == Changelog == -= 1.0.7= += 1.0.8 = +* **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)). * **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/)). 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/' );