Skip to content

Commit cab0a13

Browse files
authored
Merge pull request #182 from appwrite/dev
Dev
2 parents 44533ca + 5753d57 commit cab0a13

16 files changed

+133
-118
lines changed

CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 11.0.1
2+
3+
* Fix between queries
4+
15
## 11.0.0
26

37
* Parameter `url` is now optional in the `createMembership` endpoint
@@ -209,11 +213,11 @@ https://github.com/appwrite/appwrite/blob/master/CHANGES.md
209213
- Upgraded to Null-safety, minimum Dart SDK required 2.12.0
210214
- Upgraded all underlying dependencies to null safe version
211215
- BREAKING Renamed parameter inviteId to membershipId on teams.updateMembershipStatus, teams.deleteMembership
212-
- [Anonymous login](https://appwrite.io/docs/client/account?sdk=flutter#accountCreateAnonymousSession)
213-
- [JWT Support](https://appwrite.io/docs/client/account?sdk=flutter#accountCreateJWT)
216+
- [Anonymous login](https://appwrite.io/docs/references/cloud/client-flutter/account?sdk=flutter#createAnonymousSession)
217+
- [JWT Support](https://appwrite.io/docs/references/cloud/client-flutter/account?sdk=flutter#createJWT)
214218
- Fallback Cookies for Flutter Web if 3rd party cookies are blocked
215219
- Custom User Agent Support
216-
- [Update membership roles](https://appwrite.io/docs/client/teams?sdk=flutter#teamsUpdateMembershipRoles)
220+
- [Update membership roles](https://appwrite.io/docs/references/cloud/client-flutter/teams?sdk=flutter#updateMembershipRoles)
217221
- New awesome image preview features, supports borderRadius, borderColor, borderWidth
218222

219223
## 0.5.0-dev.1

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: ^11.0.0
24+
appwrite: ^11.0.1
2525
```
2626
2727
You can install packages from the command line:

lib/query.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class Query {
4848

4949
/// Filter resources where [attribute] is between [start] and [end] (inclusive).
5050
static String between(String attribute, dynamic start, dynamic end) =>
51-
_addQuery(attribute, 'between', [start, end]);
51+
'between("$attribute", ${_parseValues(start)}, ${_parseValues(end)})';
5252

5353
/// Filter resources where [attribute] starts with [value].
5454
static String startsWith(String attribute, String value) =>

0 commit comments

Comments
 (0)