diff --git a/CHANGELOG.md b/CHANGELOG.md index ee2a962ba..c5489dd14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ ### Updates - Update StatusService, fix bug in getFull method ([4d8b4dcf](https://github.com/pixelfed/pixelfed/commit/4d8b4dcf)) +- Update Config, bump version for post edit support without having to clear cache ([c0190d84](https://github.com/pixelfed/pixelfed/commit/c0190d84)) - ([](https://github.com/pixelfed/pixelfed/commit/)) ## [v0.11.7 (2023-05-24)](https://github.com/pixelfed/pixelfed/compare/v0.11.6...v0.11.7) diff --git a/app/Util/Site/Config.php b/app/Util/Site/Config.php index dc77eda0b..90631159f 100644 --- a/app/Util/Site/Config.php +++ b/app/Util/Site/Config.php @@ -7,7 +7,7 @@ use Illuminate\Support\Str; class Config { - const CACHE_KEY = 'api:site:configuration:_v0.7'; + const CACHE_KEY = 'api:site:configuration:_v0.8'; public static function get() { return Cache::remember(self::CACHE_KEY, 900, function() {