shimon
2be59a94da
update
2025-03-19 11:13:30 +02:00
shimon
fca2e95fdd
debug
2025-03-18 19:29:40 +02:00
shimon
5683c310db
debug
2025-03-18 18:36:46 +02:00
shimon
ab790f6c02
debug
2025-03-16 15:24:29 +02:00
shimon
ff618a0565
debug
2025-03-16 14:42:22 +02:00
shimon
b3db296f13
sync with main
2025-03-16 14:05:03 +02:00
shimon
e019e426f1
debug
2025-03-16 13:47:54 +02:00
shimon
adacec4ad1
Merge branch '1.6.x' of github.com:appwrite/appwrite into multi-region-support
...
# Conflicts:
# app/init.php
# composer.lock
2025-03-16 10:55:24 +02:00
Eldad Fux
418185b914
fixed format
2025-03-15 14:43:51 +01:00
Eldad Fux
167011ce87
Fixed timelimit
2025-03-15 14:38:01 +01:00
Eldad Fux
3d69a35d5a
Fixed tests
2025-03-15 14:32:18 +01:00
Eldad Fux
aac90ea8b8
Fixed format
2025-03-15 14:17:47 +01:00
Eldad Fux
56aa503146
Fixed paths
2025-03-15 13:57:12 +01:00
Eldad Fux
875a60fe07
fixed paths
2025-03-15 13:53:00 +01:00
Eldad Fux
07926534bf
Fixed namespace
2025-03-15 13:24:56 +01:00
Eldad Fux
a2a0a1405f
plurals
2025-03-15 13:23:02 +01:00
Eldad Fux
195edd19ac
wip
2025-03-15 13:18:34 +01:00
Eldad Fux
6cf333141c
Merge remote-tracking branch 'origin/1.6.x' into feat-eldad-cleanups
2025-03-15 13:18:30 +01:00
Eldad Fux
3b7aea22c2
Fixed test
2025-03-15 12:42:34 +01:00
Eldad Fux
50fe0bf98d
Code review fix
2025-03-15 12:39:15 +01:00
Eldad Fux
4f0a7de868
Fixes
2025-03-15 12:34:49 +01:00
Eldad Fux
1933e48d9c
Cleanups
2025-03-15 12:00:36 +01:00
Steven Nguyen
063c2be38f
Merge pull request #9495 from appwrite/chore-bump-console-5.2.53
...
Bump console to version 5.2.53
2025-03-14 16:35:22 -07:00
Steven Nguyen
bd5bfc04ef
Merge pull request #9466 from appwrite/fix-certificates-in-deletes
...
Fix certificates in deletes worker
2025-03-14 16:34:21 -07:00
Matej Bačo
5f2512dc4f
code quality improvement
2025-03-14 12:07:38 +01:00
Matej Bačo
f6fc425c98
Add rule attributes
2025-03-14 09:37:44 +01:00
Jake Barnby
817a3808e5
Add 5 min timeout for workers and tasks DBs
2025-03-14 16:40:57 +13:00
Jake Barnby
b8673ac07f
Merge remote-tracking branch 'origin/1.6.x' into feat-improve-delete-queries
...
# Conflicts:
# composer.lock
2025-03-14 15:34:18 +13:00
Jake Barnby
49d89a4206
Force clear timeout to ensure it's not set
2025-03-14 15:29:23 +13:00
Chirag Aggarwal
d81f2f8b5c
Merge branch '1.6.x' into bump-sdk
2025-03-13 11:01:14 +05:30
Chirag Aggarwal
dc073b8298
Merge branch '1.6.x' into chore-regenerate-specs
2025-03-13 10:07:13 +05:30
Steven Nguyen
556f7338c1
Bump appwrite version to 1.6.2
2025-03-12 15:52:29 -07:00
Steven Nguyen
5bce1e17cb
chore: regenerate latest and 1.6.x specs
2025-03-12 15:34:38 -07:00
Steven Nguyen
7402145c9d
Bump console to version 5.2.53
2025-03-12 15:22:43 -07:00
shimon
a60d916c51
debug
2025-03-11 19:18:05 +02:00
shimon
d522b1a04c
debug
2025-03-11 18:56:24 +02:00
shimon
4b740dce86
sync with 1.6.x
2025-03-11 18:23:35 +02:00
shimon
6a05bd4e0d
Merge branch '1.6.x' of github.com:appwrite/appwrite into multi-region-support
...
# Conflicts:
# app/init.php
2025-03-11 18:19:44 +02:00
Chirag Aggarwal
e3f59c696d
bump: python version
2025-03-11 05:43:30 +00:00
Chirag Aggarwal
107a185953
Merge branch '1.6.x' into bump-sdk
2025-03-11 05:30:47 +00:00
Chirag Aggarwal
61377ceb6e
chore: shift initialization of console project to config
2025-03-10 10:48:44 +00:00
Chirag Aggarwal
6a6d99a9d0
chore: queue console project for maintenance delete
2025-03-10 08:54:20 +00:00
Steven Nguyen
59a8172e96
fix: prevent "Failed to initialize logging provider" errors
...
If the _APP_EXPERIMENT_LOGGING_CONFIG env var isn't set, every 4XX error
outputs this warning:
Failed to initialize logging provider: Unable to parse DSN: scheme is
required
To reduce this unnecessary clutter when _APP_EXPERIMENT_LOGGING_CONFIG
isn't set, this PR adds a check to only attempt to initialize the
logging provider if the env var is set.
2025-03-07 12:59:11 -08:00
Steven Nguyen
0fbd2c6425
fix: prevent warning if no logging config is set
...
If no logging config is set, there's a warning saying:
> Using deprecated logging configuration.
However, if they didn't set any config, it's not deprecated.
2025-03-07 12:54:53 -08:00
Steven Nguyen
f6b5deda6d
fix: add missing _APP_EMAIL_CERTIFICATES env var to deletes worker
...
The deletes worker uses the certificates resource to delete
certificates, but the certificates resource requires the
_APP_EMAIL_CERTIFICATES env var to be set or it will throw an exception
and not process any delete jobs. This commit adds the missing env var
to the deletes worker.
Also add _APP_SYSTEM_SECURITY_EMAIL_ADDRESS as a fallback.
2025-03-07 12:46:14 -08:00
Chirag Aggarwal
d9fc6b70ad
chore: bump react native
2025-03-07 13:18:20 +00:00
Chirag Aggarwal
a0605b14cb
chore: regen specs and update vers
2025-03-07 04:14:45 +00:00
Chirag Aggarwal
6c652ba3ae
Merge branch '1.6.x' into bump-sdk
2025-03-06 17:04:05 +00:00
shimon
584e4c0d75
Merge branch '1.6.x' of github.com:appwrite/appwrite into multi-region-support
2025-03-06 12:03:10 +02:00
Chirag Aggarwal
0ce4555f70
chore: added auth group to create phone token
2025-03-05 17:42:43 +00:00