Skip to content

Commit 7fb7f10

Browse files
authored
Merge pull request appwrite#1418 from TorstenDittmann/feat-prepare-0-9-2
feat(0.9.2): release
2 parents 82d22d1 + 5815caf commit 7fb7f10

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Version 0.9.2
2+
3+
## Bugs
4+
5+
- Fixed JWT session validation (#1408)
6+
- Fixed passing valid JWT session to Cloud Functions (#1421)
7+
- Fixed race condition when uploading and extracting bigger Cloud Functions (#1419)
8+
19
# Version 0.9.1
210

311
## Bugs

app/init.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
const APP_MODE_DEFAULT = 'default';
4848
const APP_MODE_ADMIN = 'admin';
4949
const APP_PAGING_LIMIT = 12;
50-
const APP_CACHE_BUSTER = 149;
51-
const APP_VERSION_STABLE = '0.9.1';
50+
const APP_CACHE_BUSTER = 150;
51+
const APP_VERSION_STABLE = '0.9.2';
5252
const APP_STORAGE_UPLOADS = '/storage/uploads';
5353
const APP_STORAGE_FUNCTIONS = '/storage/functions';
5454
const APP_STORAGE_CACHE = '/storage/cache';

src/Appwrite/Migration/Migration.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ abstract class Migration
4040
'0.8.0' => 'V07',
4141
'0.9.0' => 'V08',
4242
'0.9.1' => 'V08',
43+
'0.9.2' => 'V08',
4344
];
4445

4546
/**

0 commit comments

Comments
 (0)