Skip to content

Commit e7697d5

Browse files
authored
Merge pull request #170 from appwrite/dev
fix: for appwrite 1.4.x
2 parents 81c1e23 + e5982f8 commit e7697d5

14 files changed

+230
-213
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 10.0.1
2+
3+
* Added a new `label` function to the `Role` helper class
4+
* Update internal variable names to prevent name collision
5+
* Fix: content range header inconsistency in chunked uploads [#648](https://github.com/appwrite/sdk-generator/pull/648)
6+
17
## 10.0.0
28

39
* Support for Appwrite 1.4.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Add this to your package's `pubspec.yaml` file:
2121

2222
```yml
2323
dependencies:
24-
appwrite: ^10.0.0
24+
appwrite: ^10.0.1
2525
```
2626
2727
You can install packages from the command line:

lib/role.dart

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,9 @@ class Role {
5858
static String member(String id) {
5959
return 'member:$id';
6060
}
61+
62+
/// Grants access to a user with the specified label.
63+
static String label(String name) {
64+
return 'label:$name';
65+
}
6166
}

0 commit comments

Comments
 (0)