diff --git a/CHANGELOG.md b/CHANGELOG.md index 87f1274f..596f6af1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,28 @@ +# [1.9.0](https://code.castopod.org/adaures/castopod/compare/v1.8.2...v1.9.0) (1/31/2024) + +### Bug Fixes + +- **i18n:** escape language strings in form fields to prevent them from + disappearing + ([3cb5ffd](https://code.castopod.org/adaures/castopod/commit/3cb5ffd25b9604a83cd12935e641dab7c88fba47)), + closes [#412](https://code.castopod.org/adaures/castopod/issues/412) +- **podcast-about:** update stats query to discard scheduled episodes from + episodes number + ([67c037c](https://code.castopod.org/adaures/castopod/commit/67c037c9eb1e15c6945eaf74ec0ff30b33f4b704)) +- **premium-subs:** clear subscription list cache after insert + ([2accb0f](https://code.castopod.org/adaures/castopod/commit/2accb0f7652330b29c3adb85a2e1b0d5d83f1389)), + closes [#430](https://code.castopod.org/adaures/castopod/issues/430) +- **s3:** remove proxy, set objects acl to public-read, and serve files using + their public urls + ([6a77a9d](https://code.castopod.org/adaures/castopod/commit/6a77a9d2f29c849775a3d1bcbd819f73f21d9aa6)) + +### Features + +- add actor domain to handle in follow page + ([de099ac](https://code.castopod.org/adaures/castopod/commit/de099ac64300b8edb86e387fde89c0a3e9472f46)) +- **admin:** add podcast's OP3 analytics dashboard link + ([5f3752b](https://code.castopod.org/adaures/castopod/commit/5f3752b4430f6f2d5f9e5f6a7a003bc4d2f9d487)) + ## [1.8.2](https://code.castopod.org/adaures/castopod/compare/v1.8.1...v1.8.2) (1/17/2024) ### Bug Fixes diff --git a/app/Config/Constants.php b/app/Config/Constants.php index 58001e92..38695bf6 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.8.2'); +defined('CP_VERSION') || define('CP_VERSION', '1.9.0'); /* | -------------------------------------------------------------------- diff --git a/composer.json b/composer.json index e7dd8ac2..d59a4443 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "adaures/castopod", - "version": "1.8.2", + "version": "1.9.0", "type": "project", "description": "Castopod 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.json b/package.json index 3b12cfd1..2121ad09 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "castopod", - "version": "1.8.2", + "version": "1.9.0", "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",