From 4a8713f3721b5e51e719287006f40d8be0ee292c Mon Sep 17 00:00:00 2001 From: root Date: Mon, 10 Nov 2025 12:48:48 +0000 Subject: [PATCH] regen sdk --- CHANGELOG.md | 4 ++++ src/Appwrite/Client.php | 4 ++-- src/Appwrite/Services/{TablesDb.php => TablesDB.php} | 0 .../Appwrite/Services/{TablesDbTest.php => TablesDBTest.php} | 0 4 files changed, 6 insertions(+), 2 deletions(-) rename src/Appwrite/Services/{TablesDb.php => TablesDB.php} (100%) rename tests/Appwrite/Services/{TablesDbTest.php => TablesDBTest.php} (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8727bf6..14a26e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## 18.0.1 + +* Fix `TablesDB` service to use correct file name + ## 18.0.0 * Fix duplicate methods issue (e.g., `updateMFA` and `updateMfa`) causing build and runtime errors diff --git a/src/Appwrite/Client.php b/src/Appwrite/Client.php index 618f616..28142f8 100644 --- a/src/Appwrite/Client.php +++ b/src/Appwrite/Client.php @@ -37,11 +37,11 @@ class Client */ protected array $headers = [ 'content-type' => '', - 'user-agent' => 'AppwritePHPSDK/18.0.0 ()', + 'user-agent' => 'AppwritePHPSDK/18.0.1 ()', 'x-sdk-name'=> 'PHP', 'x-sdk-platform'=> 'server', 'x-sdk-language'=> 'php', - 'x-sdk-version'=> '18.0.0', + 'x-sdk-version'=> '18.0.1', ]; /** diff --git a/src/Appwrite/Services/TablesDb.php b/src/Appwrite/Services/TablesDB.php similarity index 100% rename from src/Appwrite/Services/TablesDb.php rename to src/Appwrite/Services/TablesDB.php diff --git a/tests/Appwrite/Services/TablesDbTest.php b/tests/Appwrite/Services/TablesDBTest.php similarity index 100% rename from tests/Appwrite/Services/TablesDbTest.php rename to tests/Appwrite/Services/TablesDBTest.php