chore: prep 1.6.2-RC1 release

This commit is contained in:
Steven Nguyen
2025-05-01 17:15:23 -07:00
parent e74502a259
commit d89b79002a
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ const APP_PROJECT_ACCESS = 24 * 60 * 60; // 24 hours
const APP_FILE_ACCESS = 24 * 60 * 60; // 24 hours
const APP_CACHE_UPDATE = 24 * 60 * 60; // 24 hours
const APP_CACHE_BUSTER = 4318;
const APP_VERSION_STABLE = '1.6.2';
const APP_VERSION_STABLE = '1.6.2-RC1';
const APP_DATABASE_ATTRIBUTE_EMAIL = 'email';
const APP_DATABASE_ATTRIBUTE_ENUM = 'enum';
const APP_DATABASE_ATTRIBUTE_IP = 'ip';
+1 -1
View File
@@ -92,7 +92,7 @@ abstract class Migration
'1.5.11' => 'V20',
'1.6.0' => 'V21',
'1.6.1' => 'V21',
'1.6.2' => 'V21',
'1.6.2-RC1' => 'V21',
];
/**
+1 -1
View File
@@ -29,7 +29,7 @@ class Migrate extends Action
$this
->desc('Migrate Appwrite to new version')
/** @TODO APP_VERSION_STABLE needs to be defined */
->param('version', APP_VERSION_STABLE, new Text(8), 'Version to migrate to.', true)
->param('version', APP_VERSION_STABLE, new Text(9), 'Version to migrate to.', true)
->inject('dbForPlatform')
->inject('getProjectDB')
->inject('register')