Merge pull request #2803 from appwrite/release-0.12.3

feat: release 0.12.3
This commit is contained in:
Torsten Dittmann
2022-02-18 10:23:16 +01:00
committed by GitHub
3 changed files with 11 additions and 1 deletions
+9
View File
@@ -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
+1 -1
View File
@@ -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';
+1
View File
@@ -68,6 +68,7 @@ abstract class Migration
'0.12.0' => 'V11',
'0.12.1' => 'V11',
'0.12.2' => 'V11',
'0.12.3' => 'V11',
];
/**