From 1eb680d6179a9469cf0af715b516f4707a001a9c Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 28 Aug 2023 14:28:59 +0000 Subject: [PATCH] chore(release): 1.6.0 [skip ci] # [1.6.0](https://code.castopod.org/adaures/castopod/compare/v1.5.2...v1.6.0) (2023-08-28) ### Bug Fixes * **home:** update where clause when getting all podcasts to prevent draft podcasts from showing up ([7a1eea5](https://code.castopod.org/adaures/castopod/commit/7a1eea58d3cbc1982baaec21d87a36e218e1910a)) * **media:** copy and delete temp file when saving instead of moving it for FS FileManager ([9346e78](https://code.castopod.org/adaures/castopod/commit/9346e787bd2a2c815533092279f96ae1fe0d9aae)), closes [#338](https://code.castopod.org/adaures/castopod/issues/338) * **media:** get path using media_path_absolute when saving media file ([754e7a6](https://code.castopod.org/adaures/castopod/commit/754e7a6b4b2c12cf50c1c8b166732dc3255f36fb)) * **media:** init file properties in setAttributes' Model method + set defaults to pathinfo data ([0775add](https://code.castopod.org/adaures/castopod/commit/0775add67860b94a35b68c01b133ec8ec969f539)) * **premium-podcasts:** show premium flag only when podcast has published premium episodes ([d10c4fd](https://code.castopod.org/adaures/castopod/commit/d10c4fd7538e6af8a5b0eb232a06522fe8c4bf8e)) * **s3:** add a flag to serve media files by redirecting to a presigned url instead of default proxy ([11aa358](https://code.castopod.org/adaures/castopod/commit/11aa3586a04c166404954600235634cee77219df)) ### Features * **episode:** add preview link in admin to view and share episode before publication ([7d21b35](https://code.castopod.org/adaures/castopod/commit/7d21b3509ec5d1aa65420efa038f44bcd235e64f)) --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ app/Config/Constants.php | 2 +- composer.json | 2 +- package.json | 2 +- 4 files changed, 32 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 363077cf..4f2d82f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,32 @@ +# [1.6.0](https://code.castopod.org/adaures/castopod/compare/v1.5.2...v1.6.0) (2023-08-28) + +### Bug Fixes + +- **home:** update where clause when getting all podcasts to prevent draft + podcasts from showing up + ([7a1eea5](https://code.castopod.org/adaures/castopod/commit/7a1eea58d3cbc1982baaec21d87a36e218e1910a)) +- **media:** copy and delete temp file when saving instead of moving it for FS + FileManager + ([9346e78](https://code.castopod.org/adaures/castopod/commit/9346e787bd2a2c815533092279f96ae1fe0d9aae)), + closes [#338](https://code.castopod.org/adaures/castopod/issues/338) +- **media:** get path using media_path_absolute when saving media file + ([754e7a6](https://code.castopod.org/adaures/castopod/commit/754e7a6b4b2c12cf50c1c8b166732dc3255f36fb)) +- **media:** init file properties in setAttributes' Model method + set defaults + to pathinfo data + ([0775add](https://code.castopod.org/adaures/castopod/commit/0775add67860b94a35b68c01b133ec8ec969f539)) +- **premium-podcasts:** show premium flag only when podcast has published + premium episodes + ([d10c4fd](https://code.castopod.org/adaures/castopod/commit/d10c4fd7538e6af8a5b0eb232a06522fe8c4bf8e)) +- **s3:** add a flag to serve media files by redirecting to a presigned url + instead of default proxy + ([11aa358](https://code.castopod.org/adaures/castopod/commit/11aa3586a04c166404954600235634cee77219df)) + +### Features + +- **episode:** add preview link in admin to view and share episode before + publication + ([7d21b35](https://code.castopod.org/adaures/castopod/commit/7d21b3509ec5d1aa65420efa038f44bcd235e64f)) + ## [1.5.2](https://code.castopod.org/adaures/castopod/compare/v1.5.1...v1.5.2) (2023-07-31) ### Bug Fixes diff --git a/app/Config/Constants.php b/app/Config/Constants.php index cf2aa1bb..36fb4453 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.5.2'); +defined('CP_VERSION') || define('CP_VERSION', '1.6.0'); /* | -------------------------------------------------------------------- diff --git a/composer.json b/composer.json index 039093f1..80da3968 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "adaures/castopod", - "version": "1.5.2", + "version": "1.6.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 40574363..218b8393 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "castopod", - "version": "1.5.2", + "version": "1.6.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",