Skip to content

Commit 53cb8e9

Browse files
committed
feat(general): updates for 0.9
1 parent 5895037 commit 53cb8e9

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

β€ŽCHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
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+
110
## 0.6.2
211

312
- Removed default values, nothing should change in usage as default values are already allocated in server
@@ -37,4 +46,4 @@
3746

3847
## 0.1.0
3948

40-
- First release
49+
- First release

β€ŽREADME.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ try {
7575
```
7676

7777
### 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
7979
- πŸš€ [Getting Started Tutorial](https://appwrite.io/docs/getting-started-for-server)
8080
- πŸ“œ [Appwrite Docs](https://appwrite.io/docs)
8181
- πŸ’¬ [Discord Community](https://appwrite.io/discord)

β€Ždocs/examples/functions/create.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ void main() { // Init SDK
1313
Future result = functions.create(
1414
name: '[NAME]',
1515
execute: [],
16-
runtime: 'java-11',
16+
runtime: 'java-11.0',
1717
);
1818

1919
result

0 commit comments

Comments
Β (0)