1
0
Fork 0
mirror of synced 2024-10-03 02:37:40 +13:00

Merge branch '1.4.x' of https://github.com/appwrite/appwrite into cl-1.4.x

This commit is contained in:
Christy Jacob 2023-09-28 22:26:25 +00:00
commit cf4cf6c1af
15 changed files with 32 additions and 19 deletions

View file

@ -21,6 +21,7 @@
- Bump composer to fix migration bug in [#6344](https://github.com/appwrite/appwrite/pull/6344) - Bump composer to fix migration bug in [#6344](https://github.com/appwrite/appwrite/pull/6344)
- Fix execution call timeout in [#6332](https://github.com/appwrite/appwrite/pull/6332) - Fix execution call timeout in [#6332](https://github.com/appwrite/appwrite/pull/6332)
- Bump appwrite-assistant to prevent it from crashing w/o open ai key in [#6342](https://github.com/appwrite/appwrite/pull/6342) - Bump appwrite-assistant to prevent it from crashing w/o open ai key in [#6342](https://github.com/appwrite/appwrite/pull/6342)
- Remove Special Chars from Initials [#6164](https://github.com/appwrite/appwrite/pull/6164)
# Version 1.4.3 # Version 1.4.3

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

14
composer.lock generated
View file

@ -2152,16 +2152,16 @@
}, },
{ {
"name": "utopia-php/database", "name": "utopia-php/database",
"version": "0.43.2", "version": "0.43.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/utopia-php/database.git", "url": "https://github.com/utopia-php/database.git",
"reference": "f2626acd42665a9987c94af1c93bf20c28d55c9d" "reference": "58d33c8d1216212edfba5d080e2f698487612aca"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/utopia-php/database/zipball/f2626acd42665a9987c94af1c93bf20c28d55c9d", "url": "https://api.github.com/repos/utopia-php/database/zipball/58d33c8d1216212edfba5d080e2f698487612aca",
"reference": "f2626acd42665a9987c94af1c93bf20c28d55c9d", "reference": "58d33c8d1216212edfba5d080e2f698487612aca",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -2202,9 +2202,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/utopia-php/database/issues", "issues": "https://github.com/utopia-php/database/issues",
"source": "https://github.com/utopia-php/database/tree/0.43.2" "source": "https://github.com/utopia-php/database/tree/0.43.3"
}, },
"time": "2023-09-07T19:04:33+00:00" "time": "2023-09-28T01:51:22+00:00"
}, },
{ {
"name": "utopia-php/domains", "name": "utopia-php/domains",
@ -6027,5 +6027,5 @@
"platform-overrides": { "platform-overrides": {
"php": "8.0" "php": "8.0"
}, },
"plugin-api-version": "2.6.0" "plugin-api-version": "2.3.0"
} }

View file

@ -595,6 +595,18 @@ trait UsersBase
$this->assertCount(1, $response['body']['users']); $this->assertCount(1, $response['body']['users']);
$this->assertEquals($response['body']['users'][0]['$id'], $data['userId']); $this->assertEquals($response['body']['users'][0]['$id'], $data['userId']);
$response = $this->client->call(Client::METHOD_GET, '/users', array_merge([
'content-type' => 'application/json',
'x-appwrite-project' => $this->getProject()['$id'],
], $this->getHeaders()), [
'search' => '>',
]);
$this->assertEquals($response['headers']['status-code'], 200);
$this->assertNotEmpty($response['body']);
$this->assertEmpty($response['body']['users']);
$this->assertCount(0, $response['body']['users']);
/** /**
* Test for FAILURE * Test for FAILURE
*/ */