Skip to content

Commit a51784c

Browse files
committed
chore: update PHP SDK to 23.0.0
1 parent 0f52e44 commit a51784c

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
# Change Log
22

3-
## 22.1.0
3+
## 23.0.0
44

5+
* [BREAKING] Renamed Webhook model fields: `security` β†’ `tls`, `httpUser` β†’ `authUsername`, `httpPass` β†’ `authPassword`, `signatureKey` β†’ `secret`
6+
* [BREAKING] Renamed Webhook service parameters to match: `security` β†’ `tls`, `httpUser` β†’ `authUsername`, `httpPass` β†’ `authPassword`
7+
* Added `secret` parameter to Webhook create and update methods
58
* Added `x` OAuth provider to `OAuthProvider` enum
69
* Added `userType` field to `Log` model
10+
* Added `purge` parameter to `updateCollection` and `updateTable` for cache invalidation
711
* Added Project service: platform CRUD, key CRUD, label/email/protocol/service management
812
* Added new models: `Key`, `KeyList`, `PlatformAndroid`, `PlatformApple`, `PlatformLinux`, `PlatformList`, and others
913
* Added new enums: `PlatformType`, `ProtocolId`, `ServiceId`
10-
* Updated `BuildRuntime`, `Runtime`, `Scopes` enums
14+
* Updated `BuildRuntime`, `Runtime`, `Scopes` enums with new values
1115
* Updated `X-Appwrite-Response-Format` header to `1.9.1`
1216
* Updated TTL description for list caching in Databases and TablesDB
1317

β€Žsrc/Appwrite/Client.phpβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ class Client
3737
*/
3838
protected array $headers = [
3939
'content-type' => '',
40-
'user-agent' => 'AppwritePHPSDK/22.1.0 ()',
40+
'user-agent' => 'AppwritePHPSDK/23.0.0 ()',
4141
'x-sdk-name'=> 'PHP',
4242
'x-sdk-platform'=> 'server',
4343
'x-sdk-language'=> 'php',
44-
'x-sdk-version'=> '22.1.0',
44+
'x-sdk-version'=> '23.0.0',
4545
];
4646

4747
/**

0 commit comments

Comments
Β (0)