Commit graph

53 commits

Author SHA1 Message Date
Chirag Aggarwal
ea76121382 use sdk version instead 2025-09-08 13:51:34 +05:30
Chirag Aggarwal
3684f80462 feat: automatic pr creation in sdk release script 2025-09-08 13:43:44 +05:30
Jake Barnby
bd4fb03b74
Merge remote-tracking branch 'origin/1.7.x' into 1.8.x
# Conflicts:
#	app/config/specs/open-api3-latest-client.json
#	app/config/specs/open-api3-latest-console.json
#	app/config/specs/open-api3-latest-server.json
#	app/config/specs/swagger2-latest-client.json
#	app/config/specs/swagger2-latest-console.json
#	app/config/specs/swagger2-latest-server.json
#	app/controllers/api/databases.php
#	composer.lock
#	tests/e2e/Services/Databases/Legacy/DatabasesBase.php
#	tests/e2e/Services/Migrations/MigrationsBase.php
2025-08-06 17:24:00 +12:00
Chirag Aggarwal
5977e62e9a chore: move changelog path to platforms config 2025-07-30 13:32:56 +05:30
Darshan
59fce99ef6 bump: response format for preview sdk. 2025-07-21 19:15:29 +05:30
Jake Barnby
3e8cd9d748
Merge remote-tracking branch 'origin/1.7.x' into 1.8.x 2025-07-21 18:53:02 +12:00
Chirag Aggarwal
ea0654cf5e improve naming 2025-07-18 17:16:01 +05:30
Chirag Aggarwal
99ea9c5d80 chore: update cli to 8.2.2 2025-07-18 17:10:20 +05:30
Jake Barnby
97a4e5f355
Bump version 2025-07-18 21:38:35 +12:00
Matej Bačo
f07abce6f8
Merge branch '1.7.x' into feat-use-first-class-callable-syntax 2025-06-25 16:46:30 +02:00
Khushboo Verma
55be41f633 Resolve merge conflicts 2025-06-13 18:06:47 +05:30
Jake Barnby
7dd45b0644
Merge remote-tracking branch 'origin/1.7.x' into 1.8.x
# Conflicts:
#	src/Appwrite/Platform/Workers/StatsUsageDump.php
2025-06-11 17:22:20 -04:00
Jake Barnby
d3af2e4735
Add SDK version support 2025-06-10 14:27:19 -04:00
Chirag Aggarwal
a1ff96829d chore: update pkgs 2025-06-10 12:38:48 +00:00
Khushboo Verma
6530d31e7a Use ->action(...)) 2025-06-04 14:07:43 +05:30
Matej Bačo
cb97679553 Specs, SDKs and Docs fixes (deprecated params) 2025-05-20 11:50:36 +02:00
Matej Bačo
87d14a88d2 AI-recommended changes 2025-04-16 12:45:58 +02:00
Matej Bačo
63710e8ff8 Fix response filter version 2025-03-12 13:07:15 +01:00
Jake Barnby
d80731e7db
Allow pushing SDK to new branches 2024-12-11 19:14:10 +13:00
Torsten Dittmann
8e02115828
ci: console sdk previews (#8990) 2024-11-15 13:27:46 +01:00
Jake Barnby
af7bd705f4
Update console SDK version 2024-09-09 19:17:47 +12:00
Matej Bačo
bb1371c1fa Update sdks to 1.6.x 2024-08-02 14:36:29 +02:00
Torsten Dittmann
5a5609dc0a feat: 1.6.x sdks 2024-07-03 17:25:40 +02:00
Damodar Lohani
b76f91218c fixes 2024-04-25 08:56:17 +00:00
Damodar Lohani
7e2c486ee1 Merge remote-tracking branch 'origin/1.5.x' into feat-react-native-sdk 2024-04-25 08:52:37 +00:00
Damodar Lohani
3f43e239c0 fixed 2024-04-11 05:06:37 +00:00
Steven Nguyen
82c93fb55d
fix(sdks): fix namespace of Exception
Without this, PHP will try to look for an Exception class in the
Appwrite\Platform\Tasks namespace, which doesn't exist.
2024-03-21 17:25:57 -07:00
Damodar Lohani
ef61879f5e fix import 2024-03-10 04:20:27 +00:00
Damodar Lohani
f3927c3d20 fix linter 2024-03-10 03:57:54 +00:00
Damodar Lohani
c11a1af99b react native SDK 2024-03-10 02:49:45 +00:00
Torsten Dittmann
150681246e bump: version number 2024-03-08 17:25:10 +01:00
Torsten Dittmann
0a1d572c72 chore: run formatter 2024-03-06 18:34:21 +01:00
Torsten Dittmann
a53e630536 Merge branch 'main' of https://github.com/appwrite/appwrite into sync-main-1.5.x-2 2024-03-05 10:31:51 +01:00
Damodar Lohani
fc498fd80f
update cover image for SDKs 2024-03-03 08:19:36 +05:45
Jake Barnby
82efd57146
Fix hidden files not copied when generating SDKs 2024-02-23 18:32:15 +13:00
Jake Barnby
e20f46ba1b
Bump response format to fix filters being used 2024-02-19 16:54:53 +13:00
Torsten Dittmann
e35a9efb12 Merge branch '1.5.x' of https://github.com/appwrite/appwrite into feat-rc-sdks 2024-02-15 11:32:15 +00:00
Steven Nguyen
4ace8ed027
Replace catching \Exception with \Throwable
\Exception doesn't work as a catch-all because not everything extends
\Exception. For example, there was a problem where the messaging worker
didn't catch an exception here:

} catch (\Exception $e) {
    $deliveryErrors[] = 'Failed sending to targets ' . $batchIndex + 1 . '-' . \count($batch) . ' with error: ' . $e->getMessage();
} finally {

As such, $deliveryErrors stayed as an empty array. In this case, the
$adapter->send() threw a TypeError which extends Error which implements
Throwable. Updating the catch to catch \Throwable ensures the error is
caught and $deliveryErrors gets updated.
2024-02-08 01:17:54 +00:00
Jake Barnby
6c17a9ef95
Update generator and deploy RC SDKs 2024-02-06 01:40:51 +13:00
Jake Barnby
02b6659b35
SDK releases 2023-11-16 21:50:39 +13:00
Jake Barnby
3652ab61d8
Revert "Enum tests"
This reverts commit 74450b1178.
2023-11-01 21:02:42 +13:00
Jake Barnby
74450b1178
Enum tests 2023-11-01 18:29:54 +13:00
Matej Bačo
8802e318d5 Fix pools resource 2023-08-23 13:52:17 +02:00
Matej Bačo
dedacecb52 Enable coroutines for VCS, upgrade version to 1.4 2023-08-20 10:46:44 +02:00
Steven Nguyen
aa3c2faed9
Merge tag '1.3.8' into cloud-1.3.x-2 2023-08-04 13:55:07 -07:00
Damodar Lohani
41d22fb50b Merge remote-tracking branch 'origin' into feat-db-pools-master-sync-2 2023-03-30 08:02:31 +00:00
Damodar Lohani
5acd78463a Merge remote-tracking branch 'origin/feat-db-pools' into feat-db-pools-master-sync 2023-02-16 00:44:29 +00:00
shimon
f00cc06daf addressing comments 2023-02-08 18:34:22 +02:00
Damodar Lohani
f41e3b1e8f Merge remote-tracking branch 'origin/master' into feat-db-pools-master-sync 2023-01-12 07:25:23 +00:00
Christy Jacob
080abbbb79 Merge branch 'master' of github.com:appwrite/appwrite into feat-add-console 2022-11-17 20:26:10 +05:30