Skip to content

Commit e7b91f2

Browse files
Merge pull request appwrite#2564 from appwrite/feat-release-0-12-1
feat: release version 0.12.1
2 parents 55c9d81 + 0047f72 commit e7b91f2

21 files changed

+94
-74
lines changed

CHANGES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# Version 0.12.1
2+
3+
## Bugs
4+
- Fixed some issues with the Migration
5+
- Fixed the UI to add Variables to Functions
6+
- Fixed wrong data type for String Attribute size
7+
- Fixed Request stats on the console
8+
- Fixed Realtime Connection stats with high number by abbreviation
9+
- Fixed backward compatibility of account status attribute.
10+
111
# Version 0.12.0
212

313
## Features

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ docker run -it --rm \
5959
--volume /var/run/docker.sock:/var/run/docker.sock \
6060
--volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
6161
--entrypoint="install" \
62-
appwrite/appwrite:0.12.0
62+
appwrite/appwrite:0.12.1
6363
```
6464

6565
### Windows
@@ -71,7 +71,7 @@ docker run -it --rm ^
7171
--volume //var/run/docker.sock:/var/run/docker.sock ^
7272
--volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^
7373
--entrypoint="install" ^
74-
appwrite/appwrite:0.12.0
74+
appwrite/appwrite:0.12.1
7575
```
7676

7777
#### PowerShell
@@ -81,7 +81,7 @@ docker run -it --rm ,
8181
--volume /var/run/docker.sock:/var/run/docker.sock ,
8282
--volume ${pwd}/appwrite:/usr/src/code/appwrite:rw ,
8383
--entrypoint="install" ,
84-
appwrite/appwrite:0.12.0
84+
appwrite/appwrite:0.12.1
8585
```
8686

8787
Once the Docker installation completes, go to http://localhost to access the Appwrite console from your browser. Please note that on non-Linux native hosts, the server might take a few minutes to start after installation completes.

app/config/platforms.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
// ],
153153
],
154154
],
155-
155+
156156
APP_PLATFORM_CONSOLE => [
157157
'key' => APP_PLATFORM_CONSOLE,
158158
'name' => 'Console',
@@ -190,7 +190,7 @@
190190
[
191191
'key' => 'nodejs',
192192
'name' => 'Node.js',
193-
'version' => '4.0.1',
193+
'version' => '4.0.2',
194194
'url' => 'https://github.com/appwrite/sdk-for-node',
195195
'package' => 'https://www.npmjs.com/package/node-appwrite',
196196
'enabled' => true,
@@ -208,7 +208,7 @@
208208
[
209209
'key' => 'deno',
210210
'name' => 'Deno',
211-
'version' => '2.0.1',
211+
'version' => '2.0.2',
212212
'url' => 'https://github.com/appwrite/sdk-for-deno',
213213
'package' => 'https://deno.land/x/appwrite',
214214
'enabled' => true,
@@ -334,7 +334,7 @@
334334
[
335335
'key' => 'dart',
336336
'name' => 'Dart',
337-
'version' => '3.0.1',
337+
'version' => '3.0.2',
338338
'url' => 'https://github.com/appwrite/sdk-for-dart',
339339
'package' => 'https://pub.dev/packages/dart_appwrite',
340340
'enabled' => true,
@@ -370,7 +370,7 @@
370370
[
371371
'key' => 'kotlin',
372372
'name' => 'Kotlin',
373-
'version' => '0.2.0',
373+
'version' => '0.2.2',
374374
'url' => 'https://github.com/appwrite/sdk-for-kotlin',
375375
'package' => 'https://search.maven.org/artifact/io.appwrite/sdk-for-kotlin',
376376
'enabled' => true,
@@ -392,7 +392,7 @@
392392
[
393393
'key' => 'swift',
394394
'name' => 'Swift',
395-
'version' => '0.2.0',
395+
'version' => '0.2.1',
396396
'url' => 'https://github.com/appwrite/sdk-for-swift',
397397
'package' => 'https://github.com/appwrite/sdk-for-swift',
398398
'enabled' => true,

app/config/specs/open-api3-0.12.x-client.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

app/config/specs/open-api3-0.12.x-console.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

app/config/specs/open-api3-0.12.x-server.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

app/config/specs/open-api3-latest-client.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

app/config/specs/open-api3-latest-console.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

app/config/specs/open-api3-latest-server.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

app/config/specs/swagger2-0.12.x-client.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

app/config/specs/swagger2-0.12.x-console.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

app/config/specs/swagger2-0.12.x-server.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

app/config/specs/swagger2-latest-client.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

app/config/specs/swagger2-latest-console.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

app/config/specs/swagger2-latest-server.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

app/init.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@
6161
const APP_PAGING_LIMIT = 12;
6262
const APP_LIMIT_COUNT = 5000;
6363
const APP_LIMIT_USERS = 10000;
64-
const APP_CACHE_BUSTER = 200;
65-
const APP_VERSION_STABLE = '0.12.0';
64+
const APP_CACHE_BUSTER = 201;
65+
const APP_VERSION_STABLE = '0.12.1';
6666
const APP_DATABASE_ATTRIBUTE_EMAIL = 'email';
6767
const APP_DATABASE_ATTRIBUTE_ENUM = 'enum';
6868
const APP_DATABASE_ATTRIBUTE_IP = 'ip';

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"appwrite/php-clamav": "1.1.*",
3939
"appwrite/php-runtimes": "0.6.*",
4040

41-
"utopia-php/framework": "0.19.5",
41+
"utopia-php/framework": "0.19.*",
4242
"utopia-php/logger": "0.1.*",
4343
"utopia-php/abuse": "0.7.*",
4444
"utopia-php/analytics": "0.2.*",
@@ -67,7 +67,7 @@
6767
"slickdeals/statsd": "3.1.0"
6868
},
6969
"require-dev": {
70-
"appwrite/sdk-generator": "0.17.0",
70+
"appwrite/sdk-generator": "0.17.1",
7171
"phpunit/phpunit": "9.5.10",
7272
"swoole/ide-helper": "4.8.3",
7373
"textalk/websocket": "1.5.5",

0 commit comments

Comments
 (0)