From 8d85f8c85e790af10a08f7008de5985fc5b4e926 Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Thu, 17 Feb 2022 12:07:11 +0100 Subject: [PATCH] feat: release 0.12.3 --- CHANGES.md | 9 +++++++++ app/init.php | 2 +- src/Appwrite/Migration/Migration.php | 1 + 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 578aeb6a38..7c207d0889 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,12 @@ +# Version 0.12.3 + +## Bugs +- Fix update membership roles (#2799) +- Fix migration to 0.12.x to populate search fields (#2799) + +## Security +- Fix URL schema Validation to only allow http/https (#2801) + # Version 0.12.2 ## Bugs diff --git a/app/init.php b/app/init.php index 79078edab4..7aef31a25e 100644 --- a/app/init.php +++ b/app/init.php @@ -62,7 +62,7 @@ const APP_PAGING_LIMIT = 12; const APP_LIMIT_COUNT = 5000; const APP_LIMIT_USERS = 10000; const APP_CACHE_BUSTER = 202; -const APP_VERSION_STABLE = '0.12.2'; +const APP_VERSION_STABLE = '0.12.3'; const APP_DATABASE_ATTRIBUTE_EMAIL = 'email'; const APP_DATABASE_ATTRIBUTE_ENUM = 'enum'; const APP_DATABASE_ATTRIBUTE_IP = 'ip'; diff --git a/src/Appwrite/Migration/Migration.php b/src/Appwrite/Migration/Migration.php index 8f13d29ead..420855e09d 100644 --- a/src/Appwrite/Migration/Migration.php +++ b/src/Appwrite/Migration/Migration.php @@ -68,6 +68,7 @@ abstract class Migration '0.12.0' => 'V11', '0.12.1' => 'V11', '0.12.2' => 'V11', + '0.12.3' => 'V11', ]; /**