ArnabChatterjee20k
9bf4361761
updated indentation
2025-06-16 23:48:08 +05:30
ArnabChatterjee20k
7a0ba95231
updated onPasswordChange to invalidate session
2025-06-16 23:05:52 +05:30
Jake Barnby
3729c6b1c2
Cast sequence
2025-06-16 13:24:48 -04:00
Darshan
1b768cdb90
Merge branch '1.7.x' into fix-templates
2025-06-16 22:16:16 +05:30
Darshan
65ac334e50
Merge branch '1.7.x' into fix-github-check-urls
2025-06-16 22:16:01 +05:30
Jake Barnby
3ca9599f73
Merge pull request #10018 from appwrite/revert-9669-lazy-load-relationships
...
Revert "Feat: Lazy-load relationships"
2025-06-16 11:48:44 -04:00
Jake Barnby
e704e96290
Revert "Feat: Lazy-load relationships"
2025-06-16 11:48:27 -04:00
Jake Barnby
a21ccfd694
Merge pull request #9669 from appwrite/lazy-load-relationships
...
Feat: Lazy-load relationships
2025-06-16 11:48:18 -04:00
Jake Barnby
89f0c28e26
Merge remote-tracking branch 'origin/1.7.x' into 1.8.x
...
# Conflicts:
# .coderabbit.yaml
2025-06-16 11:37:50 -04:00
Christy Jacob
ea33588f26
Merge pull request #10017 from appwrite/update-delete-project-signature
...
Update delete project scope
2025-06-16 18:48:33 +04:00
shimon
384b423129
update deleteProject scope
2025-06-16 17:46:23 +03:00
Khushboo Verma
ad60ff9972
Update url in general.php
2025-06-16 19:16:20 +05:30
Khushboo Verma
8c8abfdece
Add var_dumps to debug
2025-06-16 18:47:50 +05:30
Khushboo Verma
5e345c0388
Revert some changes
2025-06-16 17:29:01 +05:30
Khushboo Verma
362618c5af
Merge branch 'fix-github-check-urls' into chore-update-env-var-used-for-domain
2025-06-16 17:19:55 +05:30
Khushboo Verma
15f81d29f3
Merge branch '1.7.x' into fix-github-check-urls
2025-06-16 17:19:10 +05:30
Christy Jacob
006153e14a
Merge pull request #10016 from appwrite/feat-support-tar-2
...
feat: tar support
2025-06-16 13:45:59 +04:00
loks0n
9196ae7908
feat: tar support
2025-06-16 10:44:15 +01:00
Christy Jacob
b46a4dfd3e
Merge pull request #10005 from appwrite/update-coderabbit-config
...
chore: update coderabbit config file
2025-06-16 12:43:05 +04:00
shimon
c0c30fe767
remove duplicate use
2025-06-15 12:40:22 +03:00
shimon
d7e2552999
Merge branch '1.7.x' of github.com:appwrite/appwrite into PLA-3018
2025-06-15 12:38:50 +03:00
shimon
7d54a6191d
remove duplicate use
2025-06-15 12:13:15 +03:00
shimon
4d41c90367
remove duplicate use
2025-06-15 12:00:39 +03:00
shimon
96c035401b
Override project resource to update hooks, since x-appwrite-project is not available when executing custom domain function
2025-06-15 11:30:57 +03:00
Darshan
3be1aa3801
Merge branch '1.7.x' into fix-templates
2025-06-15 11:21:33 +05:30
Chirag Aggarwal
0c163baf80
fix: reset array keys after removing duplicates in swagger specs
2025-06-15 11:06:00 +05:30
ArnabChatterjee20k
774291b5d8
added onPasswordChange property to the console project
2025-06-14 18:15:41 +05:30
ArnabChatterjee20k
74614e8d58
updated description of on password change
2025-06-14 18:09:20 +05:30
ArnabChatterjee20k
fde2f278e8
added invalidating sessions for the project users
2025-06-14 18:07:42 +05:30
Chirag Aggarwal
ac2acbb770
fix: duplication of platforms in swagger specs
2025-06-14 14:21:26 +05:30
Chirag Aggarwal
e54a157ca8
chore: remove createDocuments method from client side specs
2025-06-14 13:29:50 +05:30
Chirag Aggarwal
050a563db1
chore: update cli version and add bulk operation warnings
2025-06-14 13:24:10 +05:30
Chirag Aggarwal
b096af22a7
Merge branch '1.7.x' into update-coderabbit-config
2025-06-14 12:05:47 +05:30
Chirag Aggarwal
c8854e01de
chore: formatting
2025-06-14 12:05:40 +05:30
Chirag Aggarwal
089a80e9a3
chore: update coderabbit config file
2025-06-14 11:57:21 +05:30
Steven Nguyen
52f83c4015
Merge pull request #10004 from appwrite/fix-invalid-factors
...
fix: prevent 'Attribute "factors" must be an array' error
2025-06-13 10:46:24 -07:00
Darshan
9dd5898dfd
Merge branch '1.7.x' into fix-invalid-factors
2025-06-13 22:30:43 +05:30
Steven Nguyen
7b322f8502
Merge pull request #10003 from appwrite/update-assistant
...
Update appwrite-assistant image version to 0.8.3
2025-06-13 09:35:43 -07:00
Steven Nguyen
160c937dc2
fix: prevent 'Attribute "factors" must be an array' error
...
Because array_unique() preserves keys, the $factors can go from:
[
0 => 'password',
1 => 'totp',
2 => 'totp',
3 => 'email'
]
to:
[
0 => 'password',
1 => 'totp',
3 => 'email'
]
and because this is not an array list, the validation fails.
Using array_values() after array_unique() will reset the keys to be sequential, resulting in:
[
0 => 'password',
1 => 'totp',
2 => 'email'
]
2025-06-13 09:17:05 -07:00
Chirag Aggarwal
c510af0a90
Update appwrite-assistant image version to 0.8.3
2025-06-13 20:21:03 +05:30
Darshan
44a5a3eca1
Merge branch '1.8.x' into lazy-load-relationships
2025-06-13 20:01:01 +05:30
Khushboo Verma
3ad5a2652e
Update console version
2025-06-13 19:14:00 +05:30
Khushboo Verma
28db9a289b
Merge branch '1.7.x' into feat-add-branch-url-for-first-git-deployment
2025-06-13 19:08:14 +05:30
Khushboo Verma
88d9bdd395
Merge branch 'fix-build-activation-race-condition' of github.com:appwrite/appwrite into fix-build-activation-race-condition
2025-06-13 19:05:12 +05:30
Khushboo Verma
995482ee20
Update console version
2025-06-13 19:04:46 +05:30
Khushboo Verma
d2abdea6cf
Resolve merge conflicts
2025-06-13 19:04:17 +05:30
Khushboo Verma
fc656167d5
Composer update
2025-06-13 18:11:51 +05:30
Khushboo Verma
37388fcf1b
Change php version in composer.lock
2025-06-13 18:08:19 +05:30
Khushboo Verma
55be41f633
Resolve merge conflicts
2025-06-13 18:06:47 +05:30
Darshan
f09042dfb1
update: swap request/response filters from 1.7.x to 1.8.x.
2025-06-13 16:47:40 +05:30