mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00
chore(release): 1.0.0-beta.6 [skip ci]
# [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](8fbf948fbb
)) * **activitypub:** add target actor id to like / announce activities to send directly to note's actor ([962dd30](962dd305f5
)) * **activitypub:** add target_actor_id for create activity to broadcast post reply ([0128a21](0128a21ec5
)) * **http-signature:** update SIGNATURE_PATTERN allowing signature keys to be sent in any order ([b7f285e](b7f285e4e2
)) * **install:** set message block on forms to show error messages ([3a0a20d](3a0a20d59c
)), closes [#157](https://code.podlibre.org/podlibre/castopod-host/issues/157) * **markdown-editor:** remove unnecessary buttons for podcast and episode editors + add extensions ([9c4f60e](9c4f60e00b
)) * **podcast-activity:** check if transcript and chapters are set before including them in audio ([5855a25](5855a25093
)) * **podcast:** use markdown description value for editor + set prose class to about description ([f304d97](f304d97b14
)), closes [#156](https://code.podlibre.org/podlibre/castopod-host/issues/156)
This commit is contained in:
parent
5855a25093
commit
412cf14604
30
CHANGELOG.md
30
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
|
||||
|
@ -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');
|
||||
|
||||
/*
|
||||
| --------------------------------------------------------------------
|
||||
|
@ -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",
|
||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -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",
|
||||
|
@ -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",
|
||||
|
Loading…
x
Reference in New Issue
Block a user