Matej Bačo
e7f78b3e01
Fix shutdown event errors
2026-04-15 15:29:05 +02:00
Matej Bačo
7376c5b517
Fix protocol endpoint causing InvalidArgumentException
2026-04-15 15:09:40 +02:00
ArnabChatterjee20k
db84c79802
Merge pull request #11907 from appwrite/update-events-not-firing
...
added backward compat
2026-04-15 18:32:21 +05:30
ArnabChatterjee20k
6ba810a4da
fix unit tests
2026-04-15 17:49:33 +05:30
ArnabChatterjee20k
6d9b787816
updated string replacement
2026-04-15 17:38:21 +05:30
ArnabChatterjee20k
7b8fb409b1
added database filtering
2026-04-15 17:33:57 +05:30
ArnabChatterjee20k
1fb78115e8
added backward compat
2026-04-15 17:23:18 +05:30
Chirag Aggarwal
49c93c635d
Merge pull request #11851 from appwrite/chore-migrate-audits-certificates-screenshots-to-publishers
2026-04-15 15:13:18 +05:30
Chirag Aggarwal
5010cdedbb
Merge pull request #11903 from appwrite/fix/ci-mongodb-retry
2026-04-15 14:33:15 +05:30
Chirag Aggarwal
13413c05c3
Merge pull request #11880 from appwrite/fix/graphql-coroutine-safe-response
2026-04-15 14:14:57 +05:30
Chirag Aggarwal
dc185be836
collapse
2026-04-15 13:52:20 +05:30
Chirag Aggarwal
29be9b6019
Merge branch '1.9.x' into chore-migrate-audits-certificates-screenshots-to-publishers
2026-04-15 13:26:52 +05:30
ArnabChatterjee20k
1247b1c719
Merge pull request #11852 from appwrite/docsdb-fixes
...
Docsdb fixes
2026-04-15 13:18:41 +05:30
Chirag Aggarwal
445e86361c
Merge pull request #11904 from appwrite/fix/sdk-push-no-force
2026-04-15 10:27:40 +05:30
Chirag Aggarwal
80197b566c
fix: replace force-push with regular push in SDK release task
...
The SDK push task used `git push --force-with-lease` which fails on
repos with branch protection rules that disallow force pushes. Instead,
checkout the existing remote dev branch and commit on top of it so a
regular push is always a fast-forward.
2026-04-15 10:22:50 +05:30
Chirag Aggarwal
8671533878
fix: remove orphaned docblock from deleted test
2026-04-15 10:13:37 +05:30
Chirag Aggarwal
f51f02375a
test: remove flaky concurrent session race condition test
...
testEmailPasswordSessionNotCorruptedByConcurrentRequests relies on
timing-sensitive curl_multi orchestration with hardcoded delays to
reproduce a cache race window. This makes it inherently flaky in CI
where resource pressure shifts the timing unpredictably.
2026-04-15 09:52:32 +05:30
Chirag Aggarwal
d40df613de
fix: run ProjectWebhooks tests sequentially in CI
...
ProjectWebhooks tests have shared state dependencies (e.g. index
creation must complete before assertions). Running with --functional
(parallel methods) causes flaky failures where indexes are still
'processing' instead of 'available'.
2026-04-15 09:51:26 +05:30
ArnabChatterjee20k
ebc3febc38
Merge branch '1.9.x' into docsdb-fixes
2026-04-15 09:42:05 +05:30
Chirag Aggarwal
e77bfae091
fix: add restart policy to MongoDB container for flaky CI starts
...
MongoDB's official Docker entrypoint uses a two-phase startup: a
temporary mongod for user/db init, then the real mongod. Under CI
resource pressure the port may not be released between the two
phases, causing mongod to exit with code 48 (address already in use).
Adding restart: on-failure:3 lets Docker handle the transient failure
natively. On restart the data directory already exists so the
entrypoint skips the two-phase init entirely, avoiding the race.
2026-04-15 09:19:02 +05:30
Chirag Aggarwal
f9efd803c1
refactor: remove unnecessary IIFE wrappers in resolver methods
2026-04-15 08:55:00 +05:30
Chirag Aggarwal
54d6470163
refactor: move acquire/release into ResolverLock as instance methods
2026-04-15 08:51:14 +05:30
Chirag Aggarwal
50640b5bb9
refactor: inline createResolverResponse — only called once
2026-04-15 08:50:14 +05:30
Chirag Aggarwal
4d4ba508ef
fix: use spl_object_hash for lock keys instead of WeakMap
...
Replace WeakMap with a plain array keyed by spl_object_hash($utopia)
as suggested in review. Entry is cleaned up in the finally block to
prevent leaks.
2026-04-15 08:47:41 +05:30
Chirag Aggarwal
4f2f9fedfa
fix: resolve merge conflict keeping both lock and route restore
...
Merge conflict in Resolvers.php between the coroutine lock
(fix/graphql-coroutine-safe-response) and the otel route restore
(fix-gql-route-reset from 1.9.x). Both changes are needed:
the lock serialises concurrent resolvers while the route restore
prevents otel span clobbering.
2026-04-15 08:40:12 +05:30
Chirag Aggarwal
8fcba8b5c9
Merge pull request #11893 from appwrite/codex/disable-graphql-functional
2026-04-14 19:19:14 +05:30
Jake Barnby
6c8b34c230
Merge pull request #11885 from appwrite/fix-gql-route-reset
...
(fix): reset route to avoid clobbering otel
2026-04-15 01:26:02 +12:00
Chirag Aggarwal
b2884ddb88
Use audit message context helper
2026-04-14 18:23:24 +05:30
Chirag Aggarwal
82798fa5a3
Simplify audit message construction
2026-04-14 18:18:25 +05:30
Shimon Newman
377ade3c44
Merge pull request #11892 from appwrite/schedule-functions-debug-2
...
Schedule functions debug
2026-04-14 15:32:29 +03:00
Shimon Newman
71533aaaf3
Update app/cli.php
...
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
2026-04-14 15:17:37 +03:00
shimon
ccbe7e5d3f
Merge branch '1.9.x' of github.com:appwrite/appwrite into schedule-functions-debug-2
2026-04-14 15:11:56 +03:00
Chirag Aggarwal
bea7739d7e
Merge branch '1.9.x' into codex/disable-graphql-functional
2026-04-14 17:21:55 +05:30
Jake Barnby
76320d652a
Merge pull request #11887 from appwrite/fix/composer-audit-graphql-php
...
Upgrade graphql-php to v15.31.5
2026-04-14 23:46:45 +12:00
Chirag Aggarwal
6d5968e2ea
ci: disable functional GraphQL e2e
2026-04-14 16:51:46 +05:30
shimon
70c380fa36
feat: add tracing support for execution events in log and worker classes
2026-04-14 13:36:29 +03:00
shimon
512a7ae2bd
feat: enhance function scheduling with tracing support
2026-04-14 13:36:19 +03:00
Chirag Aggarwal
49d3cd980f
Merge branch '1.9.x' into fix/composer-audit-graphql-php
2026-04-14 15:07:22 +05:30
Luke B. Silver
39a396810a
Merge pull request #11881 from appwrite/feat/45-min-build-timeout
...
feat: increase default build timeout to 45 minutes
2026-04-14 09:28:29 +01:00
Jake Barnby
1d307178bb
Merge pull request #11691 from appwrite/delete-project-shared-table-v1
...
Safe delete shared tables v1
2026-04-14 18:00:00 +12:00
fogelito
c3ed2ff6ce
Merge branch '1.9.x' of https://github.com/appwrite/appwrite into delete-project-shared-table-v1
2026-04-14 08:05:44 +03:00
Chirag Aggarwal
efadf17bfe
Fix GraphQL 15 static analysis
2026-04-14 10:26:59 +05:30
Chirag Aggarwal
bcfec8d5de
Align graphql version pinning style
2026-04-14 09:35:25 +05:30
Chirag Aggarwal
4b2e22d9da
Fix graphql-php audit vulnerability
2026-04-14 09:27:14 +05:30
ArnabChatterjee20k
45e22e2243
Merge remote-tracking branch 'origin/1.9.x' into docsdb-fixes
2026-04-13 22:44:07 +05:30
Matej Bačo
0a21f3b139
Merge pull request #11884 from appwrite/fix-webhook-api-security
...
Fix: Webhook API secret rotation and security
2026-04-13 15:52:55 +02:00
Chirag Aggarwal
5d53685976
Merge branch '1.9.x' into chore-migrate-audits-certificates-screenshots-to-publishers
2026-04-13 19:11:43 +05:30
Chirag Aggarwal
d869c39783
Merge branch '1.9.x' into fix/graphql-coroutine-safe-response
2026-04-13 19:02:06 +05:30
Chirag Aggarwal
fe02964ebd
fix: finalize graphql coroutine response isolation
2026-04-13 19:01:20 +05:30
Jake Barnby
cc8eb62c83
(chore): rename
2026-04-14 01:15:06 +12:00