diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f2d82f58154ac1225aca7559bc7b4401e9addb0..c8d88451bd91d52aa6aa9dffa374826618b402d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,29 @@ +## [1.6.1](https://code.castopod.org/adaures/castopod/compare/v1.6.0...v1.6.1) (2023-09-09) + +### Bug Fixes + +- **admin:** redirect root fediverse route to fediverse-blocked-actors + ([ba5324e](https://code.castopod.org/adaures/castopod/commit/ba5324ea1942a3939f186e974d29fb393c54b253)) +- **analytics:** show full referrer domain in web pages visits reports + ([6be38e9](https://code.castopod.org/adaures/castopod/commit/6be38e9fda3d1436d81686e1a3a5e5b173e390a0)), + closes [#367](https://code.castopod.org/adaures/castopod/issues/367) +- **auth:** overwrite Shield's PermissionFilter + ([c6e8000](https://code.castopod.org/adaures/castopod/commit/c6e8000bab54f4a32068578f750f4cf9d91bad89)) +- **auth:** update shield from v1.0.0-beta.3 to v1.0.0-beta.6 + ([23842df](https://code.castopod.org/adaures/castopod/commit/23842df03ae28e416390e2436442b8e7c8340333)) +- **platforms:** add missing tiktok to social platforms seed + ([8dfdaf3](https://code.castopod.org/adaures/castopod/commit/8dfdaf321566050e9c53683e70864871eb55d618)) +- remove fediverse prefix to prevent migration error + load routes during + podcast import + ([7ff1dbe](https://code.castopod.org/adaures/castopod/commit/7ff1dbe9030768074b2fe7c7f570bfb9e7336f62)) +- **routes:** overwrite RouteCollection to include all routes + update js and + php dependencies + ([b4f1b91](https://code.castopod.org/adaures/castopod/commit/b4f1b916bfec53f071e8d0d900081c6d74486e53)) +- update Router to include latest CI changes with alternate-content logic + ([ae57601](https://code.castopod.org/adaures/castopod/commit/ae57601c838a7aa9469bae8038ac1c30d8c9a51e)) +- use podcast-activity named route instead of not existing actor route + ([3c35718](https://code.castopod.org/adaures/castopod/commit/3c357183ca51545787fcfc801b4a5829d9cd8ad6)) + # [1.6.0](https://code.castopod.org/adaures/castopod/compare/v1.5.2...v1.6.0) (2023-08-28) ### Bug Fixes diff --git a/app/Config/Constants.php b/app/Config/Constants.php index 36fb44533c1879ebfea9d8287bfd29e513a6a8e0..444123ef1fbf20af246be6433752d1e06d36c0d8 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.6.0'); +defined('CP_VERSION') || define('CP_VERSION', '1.6.1'); /* | -------------------------------------------------------------------- diff --git a/composer.json b/composer.json index 1898c0334fade638e25ffa932ed657a078a0a62c..497ba93f05f885a2595ce71dd980220a16903169 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "adaures/castopod", - "version": "1.6.0", + "version": "1.6.1", "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 7a7073daea3637f31970cb6f425bbb6652258407..4bc4250a2185f1f405bd8c8c8dd470602edc580b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "castopod", - "version": "1.6.0", + "version": "1.6.1", "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",