ArnabChatterjee20k
1ca75c73df
Merge branch '1.9.x' into realtime-logs
2026-04-24 16:35:25 +05:30
ArnabChatterjee20k
0633662695
removed dispatch experiment
2026-04-24 16:22:57 +05:30
ArnabChatterjee20k
89819db775
added exporter
2026-04-24 16:12:42 +05:30
Matej Bačo
29b700d1ec
Merge pull request #11981 from appwrite/feat-public-list-endpoints
...
Feat: Project public list endpoints
2026-04-24 10:08:23 +02:00
Matej Bačo
e3231393b9
Fix anayser
2026-04-23 16:06:45 +02:00
Matej Bačo
5beeca5a99
Placeholder test
2026-04-23 15:57:09 +02:00
Matej Bačo
4de3009f67
Fix analyser
2026-04-23 15:36:16 +02:00
Matej Bačo
4b3963512c
Linter fix
2026-04-23 15:28:20 +02:00
Matej Bačo
8c634a95e4
Fix failing tests
2026-04-23 15:28:10 +02:00
Matej Bačo
7a3c001452
Re-add project removal tests
2026-04-23 15:22:40 +02:00
Matej Bačo
a48fd13ced
Add getPolicy + tests + move wrongly placed project tests
2026-04-23 15:19:49 +02:00
Matej Bačo
9c6ed9565e
Remove tests of removed endpoints
2026-04-23 14:07:58 +02:00
Matej Bačo
bdbc5b92df
Fix after code review
2026-04-23 13:47:31 +02:00
Matej Bačo
c246fb0f83
Project deletion tests
2026-04-23 13:41:11 +02:00
Matej Bačo
a0a3849b16
Remove unsupported bulk endpoints
2026-04-23 13:37:32 +02:00
Matej Bačo
b99139661e
Migrate delete project endpoint
2026-04-23 13:37:19 +02:00
Matej Bačo
6d86b8fd0d
Removal of project JWTs
2026-04-23 13:25:21 +02:00
Matej Bačo
cef7a5197f
List policies API
2026-04-23 13:24:39 +02:00
Matej Bačo
c1dfeae323
Add queries to email tempaltes list
2026-04-23 13:06:05 +02:00
Matej Bačo
51fa0770a6
Add queries to mock numbers list
2026-04-23 12:43:45 +02:00
Matej Bačo
d46403507c
Merge pull request #11979 from appwrite/fix-membership-privacy
...
Fix: membership privacy bug on production
2026-04-23 10:47:54 +02:00
Matej Bačo
83724ce96f
Console membership privacy test coverage
2026-04-23 10:37:35 +02:00
Matej Bačo
34930e6d67
Merge branch '1.9.x' into fix-membership-privacy
2026-04-23 10:18:32 +02:00
Matej Bačo
096f8041fd
Merge pull request #11970 from appwrite/feat-mocks-public-api
...
Feat: Public mock phone APIs
2026-04-23 10:18:14 +02:00
Matej Bačo
9dad7cef9e
Merge branch '1.9.x' into feat-mocks-public-api
2026-04-23 10:17:32 +02:00
Matej Bačo
9e23867f0a
Merge pull request #11976 from appwrite/feat-auth-methods-api
...
Feat: Auth methods public API
2026-04-23 10:14:34 +02:00
Matej Bačo
48353faa9b
Apply suggestions from code review
...
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
2026-04-23 10:13:01 +02:00
Matej Bačo
c36b8fbabf
Fix membershiip privacy bug on production
2026-04-23 10:07:32 +02:00
Luke B. Silver
5a5cb1e74e
Merge pull request #11977 from appwrite/perf/v20-investigation
...
perf: memoize request filter chain and V20 schema lookups
2026-04-23 07:38:03 +01:00
Chirag Aggarwal
a8e6b1b683
Merge pull request #11963 from appwrite/chore/http-benchmark-comparison
2026-04-23 09:48:37 +05:30
Matej Bačo
b0939b92c3
Fix failing account tests
2026-04-22 17:02:22 +02:00
Chirag Aggarwal
3d66078fe9
Increase benchmark iterations
2026-04-22 19:46:27 +05:30
Chirag Aggarwal
9a6a597710
Address benchmark hardening review
2026-04-22 19:38:48 +05:30
Chirag Aggarwal
c15e8d0126
Harden benchmark failure guard
2026-04-22 19:30:01 +05:30
Chirag Aggarwal
7b25d778d4
Trim benchmark scenarios
2026-04-22 19:21:51 +05:30
loks0n
3283b0bec0
perf: memoize request filter chain and V20 schema lookups
...
A phpspy profile of a production databases worker showed the V20
backwards-compat request filter accounting for ~40% of in-request
samples on `databases.listDocuments` traffic. Two compounding causes:
1. `Request::getParams()` re-ran the entire filter chain on every
invocation. The framework and app call `getParams()` several times
per request (route param binding, `cacheIdentifier()`, action
injection, logging), so V20's recursive schema walk executed N times
with identical inputs.
2. Inside `V20::getRelatedCollectionKeys`, the `databases/$databaseId`
document was fetched at every recursion frame (up to
RELATION_MAX_DEPTH = 3), and sibling relationships pointing at the
same related collection each did their own `getDocument` call.
This commit:
- Memoizes the post-filter params on `Request`. The cache is
invalidated by `addFilter`, `resetFilters`, and `setRoute`. `Request`
is constructed per HTTP request (app/http.php), so the memo is
naturally request-scoped. Helps every request filter version, not
just V20.
- Splits V20's walk into an entry point that resolves the database
namespace once and a pure recursive helper.
- Caches the collection `attributes` array per
`(databaseNamespace, collectionId)` on the filter instance, so shared
related collections collapse to one `getDocument` call. Missing or
errored lookups are cached as `null` to avoid retry storms.
2026-04-22 14:49:13 +01:00
ArnabChatterjee20k
49f8d6e89c
Merge pull request #11971 from appwrite/realtime-logs
...
Structured Logging
2026-04-22 19:10:36 +05:30
Matej Bačo
a0274a7b6f
Fix failing tests
2026-04-22 15:12:58 +02:00
Chirag Aggarwal
277a09847e
Merge pull request #11975 from appwrite/t3code/database-tables-retry-fix
...
[codex] Stabilize database e2e CI retries
2026-04-22 18:34:29 +05:30
Chirag Aggarwal
cdc5654c26
Merge branch '1.9.x' into chore/http-benchmark-comparison
2026-04-22 18:24:50 +05:30
Matej Bačo
bb4fdefee7
New tests for auth methods (base + integration)
2026-04-22 14:51:10 +02:00
ArnabChatterjee20k
c2e5bbe0f7
updated
2026-04-22 18:11:32 +05:30
Chirag Aggarwal
b2d24080b9
Stabilize database e2e CI retries
2026-04-22 18:08:45 +05:30
ArnabChatterjee20k
b006858d0c
dedupe
2026-04-22 17:52:45 +05:30
Chirag Aggarwal
a0f30f608d
Merge pull request #11974 from appwrite/fix/no-rule-without-deployment
2026-04-22 17:52:02 +05:30
Matej Bačo
a85c5e582c
Add auth method APIs (public)
2026-04-22 14:19:04 +02:00
ArnabChatterjee20k
6d1def7716
removed redundant span attributes
2026-04-22 17:45:58 +05:30
ArnabChatterjee20k
f0f1e1c412
updated
2026-04-22 17:44:18 +05:30
Chirag Aggarwal
11f85e2477
Merge branch '1.9.x' into chore/http-benchmark-comparison
2026-04-22 17:24:19 +05:30
Chirag Aggarwal
dbb1d1139e
Merge branch '1.9.x' into fix/no-rule-without-deployment
2026-04-22 17:20:31 +05:30