diff --git a/CHANGELOG.md b/CHANGELOG.md index 926d56deb5cc6e89d39d1be3803fddc80408f717..372f7338f312d46b46cf425e77ac52cd165d3015 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,33 @@ +# [1.0.0-beta.6](https://code.podlibre.org/podlibre/castopod-host/compare/v1.0.0-beta.5...v1.0.0-beta.6) (2022-02-03) + +### Bug Fixes + +- **activitypub:** add conditions for possibly missing actor properties + add + user-agent to requests + ([8fbf948](https://code.podlibre.org/podlibre/castopod-host/commit/8fbf948fbba22ffd33966a1b2ccd42e8f7c1f8a2)) +- **activitypub:** add target actor id to like / announce activities to send + directly to note's actor + ([962dd30](https://code.podlibre.org/podlibre/castopod-host/commit/962dd305f5d3f6eadc68f400e0e8f953827fe20d)) +- **activitypub:** add target_actor_id for create activity to broadcast post + reply + ([0128a21](https://code.podlibre.org/podlibre/castopod-host/commit/0128a21ec55dcc0a2fbf4081dadb4c4737735ba1)) +- **http-signature:** update SIGNATURE_PATTERN allowing signature keys to be + sent in any order + ([b7f285e](https://code.podlibre.org/podlibre/castopod-host/commit/b7f285e4e24247fedb94f030356fa6f291f525cc)) +- **install:** set message block on forms to show error messages + ([3a0a20d](https://code.podlibre.org/podlibre/castopod-host/commit/3a0a20d59cdae7f166325efb750eaa6e9800ba6e)), + closes [#157](https://code.podlibre.org/podlibre/castopod-host/issues/157) +- **markdown-editor:** remove unnecessary buttons for podcast and episode + editors + add extensions + ([9c4f60e](https://code.podlibre.org/podlibre/castopod-host/commit/9c4f60e00bcbd4f784f12d2a6fed357ad402ee2e)) +- **podcast-activity:** check if transcript and chapters are set before + including them in audio + ([5855a25](https://code.podlibre.org/podlibre/castopod-host/commit/5855a250936f91641efef77650890a18d8e9917f)) +- **podcast:** use markdown description value for editor + set prose class to + about description + ([f304d97](https://code.podlibre.org/podlibre/castopod-host/commit/f304d97b14e0ef383509cb3bba50beb55bf701ba)), + closes [#156](https://code.podlibre.org/podlibre/castopod-host/issues/156) + # [1.0.0-beta.5](https://code.podlibre.org/podlibre/castopod-host/compare/v1.0.0-beta.4...v1.0.0-beta.5) (2022-01-31) ### Bug Fixes diff --git a/app/Config/Constants.php b/app/Config/Constants.php index 6cde165d8f59729bd1b244e799c8cb22f0b4dbc1..f9c2943a20c91dfe1df2266052a4b293a3411099 100644 --- a/app/Config/Constants.php +++ b/app/Config/Constants.php @@ -11,7 +11,7 @@ declare(strict_types=1); | | NOTE: this constant is updated upon release with Continuous Integration. */ -defined('CP_VERSION') || define('CP_VERSION', '1.0.0-beta.5'); +defined('CP_VERSION') || define('CP_VERSION', '1.0.0-beta.6'); /* | -------------------------------------------------------------------- diff --git a/composer.json b/composer.json index e3d8559082fd80cd5c7aecab9958e938a6c43575..e0b42513cc83cbe1b61bed466b702b09910f2090 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "podlibre/castopod-host", - "version": "1.0.0-beta5", + "version": "1.0.0-beta6", "type": "project", "description": "Castopod Host is an open-source hosting platform made for podcasters who want engage and interact with their audience.", "homepage": "https://castopod.org", diff --git a/package-lock.json b/package-lock.json index e0930a00cd58297e0a899a1ce62ab538663cb0ca..ed73c45d87f1f217131458f40a1fbe824911a1e6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "castopod-host", - "version": "1.0.0-beta.5", + "version": "1.0.0-beta.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "castopod-host", - "version": "1.0.0-beta.5", + "version": "1.0.0-beta.6", "license": "AGPL-3.0-or-later", "dependencies": { "@amcharts/amcharts4": "^4.10.23", diff --git a/package.json b/package.json index 95a580164dae74a5418b65beea22474dac166586..1c017f6b640402df8d6dffb6c3ec34a2da1a2672 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "castopod-host", - "version": "1.0.0-beta.5", + "version": "1.0.0-beta.6", "description": "Castopod Host is an open-source hosting platform made for podcasters who want engage and interact with their audience.", "private": true, "license": "AGPL-3.0-or-later",