diff --git a/CHANGES.md b/CHANGES.md index 771e9ff3d..6ac0f279a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,9 @@ ## Bugs - Fixed some issues with the Migration - Fixed the UI to add Variables to Functions +- Fixed wrong data type for String Attribute size +- Fixed Request stats on the console +- Fixed Realtime Connection stats with high number by abbreviation # Version 0.12.0 diff --git a/app/init.php b/app/init.php index 36bee110f..725702a9c 100644 --- a/app/init.php +++ b/app/init.php @@ -61,7 +61,7 @@ const APP_MODE_ADMIN = 'admin'; const APP_PAGING_LIMIT = 12; const APP_LIMIT_COUNT = 5000; const APP_LIMIT_USERS = 10000; -const APP_CACHE_BUSTER = 200; +const APP_CACHE_BUSTER = 201; const APP_VERSION_STABLE = '0.12.1'; const APP_DATABASE_ATTRIBUTE_EMAIL = 'email'; const APP_DATABASE_ATTRIBUTE_ENUM = 'enum'; diff --git a/src/Appwrite/Utopia/Response/Model/AttributeString.php b/src/Appwrite/Utopia/Response/Model/AttributeString.php index e7ea85326..bb44c6af6 100644 --- a/src/Appwrite/Utopia/Response/Model/AttributeString.php +++ b/src/Appwrite/Utopia/Response/Model/AttributeString.php @@ -13,7 +13,7 @@ class AttributeString extends Attribute $this ->addRule('size', [ - 'type' => self::TYPE_STRING, + 'type' => self::TYPE_INTEGER, 'description' => 'Attribute size.', 'default' => 0, 'example' => 128, @@ -52,4 +52,4 @@ class AttributeString extends Attribute { return Response::MODEL_ATTRIBUTE_STRING; } -} \ No newline at end of file +}