Skip to content

Commit

Permalink
chore: prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
eteubert committed Nov 28, 2024
1 parent aa1ff96 commit 8785cf7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
13 changes: 10 additions & 3 deletions lib/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

use Podlove\Jobs\CronJobRunner;

define('Podlove\DATABASE_VERSION', 157);
define('Podlove\DATABASE_VERSION', 158);

add_action('admin_init', '\Podlove\maybe_run_database_migrations');
add_action('admin_init', '\Podlove\run_database_migrations', 5);
Expand Down Expand Up @@ -1659,8 +1659,15 @@ function run_migrations_for_version($version)

// update deprecated "clean" value to "false"
if ($podcast->explicit == 2) {
$podcast->explicit = 0;
$podcast->save();
$podcast->explicit = 0;
$podcast->save();
}

break;
case 158:
if (Modules\Social\Model\Service::table_exists()) {
Modules\Social\Social::update_existing_services();
Modules\Social\Social::build_missing_services();
}

break;
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: eteubert
Donate link: https://opencollective.com/podlove
Tags: podlove, podcast, publishing, rss, audio
Tested up to: 6.7.1
Stable tag: 4.1.23
Stable tag: 4.1.24
Requires at least: 4.9.6
Requires PHP: 8.0
License: MIT
Expand Down Expand Up @@ -115,8 +115,11 @@ This product includes GeoLite2 data created by MaxMind, available from http://ww

== Changelog ==

= 4.1.24 =

* security: XSS vulnerability in episode assets title
* feat: add API route to clear caches: `DELETE podlove/v2/tools/clear-caches`
* feat: add bluesky to social services

= 4.1.23 =

Expand Down

0 comments on commit 8785cf7

Please sign in to comment.