File tree 3 files changed +12
-3
lines changed
3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.7.0
2
+ - Support for Appwrite 0.9
3
+ - Breaking - removed order type enum, now you should pass string ' ; ASC' ; or ' ; DESC' ;
4
+ - Breaking - changed param name from ` env ` to ` runtime ` in the ** Functions** API
5
+ - Image Crop Gravity support in image preview service
6
+ - New endpoint in Account getSession to get session by ID
7
+ - New endpoint in the Users API to update user verification status
8
+ - Fix - issues with User-Agent when app name consisted of non-ASCII characters
9
+
1
10
## 0.6.2
2
11
3
12
- Removed default values, nothing should change in usage as default values are already allocated in server
37
46
38
47
## 0.1.0
39
48
40
- - First release
49
+ - First release
Original file line number Diff line number Diff line change 75
75
```
76
76
77
77
### Learn more
78
- You can use followng resources to learn more and get help
78
+ You can use following resources to learn more and get help
79
79
- π [ Getting Started Tutorial] ( https://appwrite.io/docs/getting-started-for-server )
80
80
- π [ Appwrite Docs] ( https://appwrite.io/docs )
81
81
- π¬ [ Discord Community] ( https://appwrite.io/discord )
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ void main() { // Init SDK
13
13
Future result = functions.create(
14
14
name: '[ NAME] ',
15
15
execute: [ ] ,
16
- runtime: 'java-11',
16
+ runtime: 'java-11.0 ',
17
17
);
18
18
19
19
result
You canβt perform that action at this time.
0 commit comments