loks0n
7df1814203
refactor: rename buildTimeout to timeout in payload and buildDeployment param
...
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-17 14:26:38 +01:00
loks0n
8f39783d7a
refactor: remove jwtExpiry alias, use timeout directly
...
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-17 14:26:38 +01:00
loks0n
4043153df3
fix: pass buildTimeout as parameter to buildDeployment to fix PHPStan error
...
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-17 14:26:38 +01:00
loks0n
9765c7f0e3
feat: use buildTimeout from message payload in build worker
...
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-04-17 14:26:38 +01:00
Matej Bačo
eddd159af8
Merge pull request #11932 from appwrite/feature/remove-/status-from-project-paths-upgrade-to-platform-0
...
Remove /status from project endpoint paths; upgrade to platform 0.13
2026-04-17 15:14:58 +02:00
ArnabChatterjee20k
17de886296
Merge pull request #11936 from appwrite/realtime-time-metric
...
Realtime time metric
2026-04-17 18:31:51 +05:30
Matej Bačo
27b0e48296
Remove Status suffix from project event names
...
- project.updateServiceStatus → project.updateService
- project.updateProtocolStatus → project.updateProtocol
2026-04-17 14:53:59 +02:00
ArnabChatterjee20k
6b2054d0b5
Merge remote-tracking branch 'origin/realtime-time-metric' into realtime-time-metric
2026-04-17 18:02:18 +05:30
ArnabChatterjee20k
df0f7ba581
added bucket boundary
2026-04-17 18:02:04 +05:30
Matej Bačo
c484c487a9
Update tests
2026-04-17 13:19:20 +02:00
Matej Bačo
47f3ab930b
Remove /status from project paths; Upgrade to platform 0.13
2026-04-17 13:14:34 +02:00
Matej Bačo
c8c3c68b0e
Merge pull request #11912 from appwrite/feat-fallback-email-template
...
Feat: Fallback email custom template
2026-04-17 12:49:16 +02:00
ArnabChatterjee20k
facae65f08
Merge pull request #11927 from appwrite/realtime-time-metric
...
Added delay metric
2026-04-17 16:16:16 +05:30
ArnabChatterjee20k
ef6711e317
Merge branch '1.9.x' into realtime-time-metric
2026-04-17 16:00:18 +05:30
Matej Bačo
e06b06a21b
Merge branch '1.9.x' into feat-fallback-email-template
2026-04-17 11:53:40 +02:00
Matej Bačo
c97dd78335
Fix tests
2026-04-17 11:40:05 +02:00
Matej Bačo
bf9bb22ac5
New tests
2026-04-17 11:30:24 +02:00
Matej Bačo
1b826df8f9
Non-URL locale to allow optional
2026-04-17 11:24:59 +02:00
Matej Bačo
11f23fdcfa
Rework email templates PR after discussions
2026-04-17 10:52:21 +02:00
ArnabChatterjee20k
b5ec92964c
updated telemetry
2026-04-17 14:08:42 +05:30
ArnabChatterjee20k
71b74e21a3
added delay metric
2026-04-17 13:36:48 +05:30
Jake Barnby
f1b2dd7335
Merge pull request #11925 from appwrite/atharva/compose-fixes-appwrite
...
Self hosted installer compose fixes
2026-04-17 00:21:50 +12:00
Chirag Aggarwal
50c379c5c3
Merge pull request #11924 from appwrite/feat/specs-provider-repo-list-discriminator
2026-04-16 16:57:37 +05:30
Atharva Deosthale
463e5acf50
compose fixes
2026-04-16 16:57:19 +05:30
Chirag Aggarwal
807e8bec8b
feat(specs): add discriminator for provider repository list response union
...
Add ProviderRepositoryFrameworkList and ProviderRepositoryRuntimeList
model classes with conditions and type field so the listRepositories
endpoint's oneOf response gets a discriminator on the type property.
2026-04-16 16:29:42 +05:30
Chirag Aggarwal
935c1e40eb
Merge pull request #11921 from appwrite/feat/specs-discriminator-unions
2026-04-16 14:03:54 +05:30
Chirag Aggarwal
e472d98fe3
Revert "refactor(specs): rename x-propertyNames/x-mapping to x-discriminator-properties/x-union-typemap"
...
This reverts commit 05d70f8826 .
2026-04-16 13:55:36 +05:30
Matej Bačo
4cf375de6d
Re-add removed test
2026-04-16 10:17:08 +02:00
Matej Bačo
19d0eb66c0
Fix tests
2026-04-16 10:09:38 +02:00
Chirag Aggarwal
05d70f8826
refactor(specs): rename x-propertyNames/x-mapping to x-discriminator-properties/x-union-typemap
2026-04-16 13:32:05 +05:30
Chirag Aggarwal
98ec9e45c4
fix(specs): narrow Detection type enum to each subclass's own value
...
Each Detection subclass now declares only its own type value in the enum
rather than sharing the full ['runtime', 'framework'] list. This prevents
SDK validators from accepting invalid values on concrete models.
2026-04-16 13:16:13 +05:30
Chirag Aggarwal
6dc17c91bc
trigger greptile
2026-04-16 13:08:14 +05:30
Chirag Aggarwal
1493b7b8a6
feat(specs): unified discriminator with compound support and algo conditions
...
Unify getDiscriminator to produce a single discriminator object for both
single-key and compound cases. Single-key returns standard {propertyName,
mapping}. Compound falls back to extending the object with x-propertyNames
and x-mapping for multi-property discrimination.
Simplify call sites: OpenAPI3 uses 'discriminator', Swagger2 uses
'x-discriminator' — no more split keys.
Add conditions to all 7 Algo models (AlgoArgon2, AlgoBcrypt, AlgoMd5,
AlgoPhpass, AlgoScrypt, AlgoScryptModified, AlgoSha) to enable
discriminator generation for hashOptions unions.
2026-04-16 13:02:57 +05:30
Chirag Aggarwal
965836c8b4
fix(specs): use swagger discriminator extension mapping
2026-04-16 12:28:53 +05:30
Chirag Aggarwal
4545989c91
fix(specs): remove type rule from list models, keep only on specific models
2026-04-16 12:22:37 +05:30
Chirag Aggarwal
b71d42d226
fix(specs): rename getDisciminator typo and extract shared model resolution
...
Fix misspelled method name (getDisciminator -> getDiscriminator) across
Format, OpenAPI3, and Swagger2. Extract duplicated model-resolution
lambda into Format::resolveModels(). Fix copy-pasted descriptions in
ProviderRepository list models.
2026-04-16 11:29:16 +05:30
Chirag Aggarwal
945cdb3a99
refactor(specs): inline model resolution
2026-04-16 11:16:25 +05:30
Chirag Aggarwal
a0db023860
refactor(specs): simplify discriminator resolution
2026-04-16 11:15:08 +05:30
Chirag Aggarwal
6a7280e7dd
refactor(specs): inline discriminator condition checks
2026-04-16 11:12:43 +05:30
Chirag Aggarwal
680cb04de7
feat(specs): add discriminators for polymorphic responses
2026-04-16 11:07:07 +05:30
Damodar Lohani
6e50ed050d
Merge pull request #11787 from appwrite/CLO-4175-allow-delete-with-memberships
...
Allow deleting user account with active memberships
2026-04-16 08:16:23 +05:45
Damodar Lohani
f78b5c6596
Merge remote-tracking branch 'origin/1.9.x' into CLO-4175-allow-delete-with-memberships
2026-04-16 01:16:49 +00:00
Matej Bačo
55001a7daa
New integration tests
2026-04-15 19:27:26 +02:00
Matej Bačo
6d2876ab26
New E2E tests
2026-04-15 19:01:35 +02:00
Matej Bačo
b510194f00
Expose "worldwide" locale
2026-04-15 18:57:37 +02:00
Matej Bačo
8fd1c5d620
Remove worldwide to not be user-facing
2026-04-15 18:54:18 +02:00
Matej Bačo
590f063694
Remove remaining sms leftover
2026-04-15 18:40:29 +02:00
Matej Bačo
90e1433878
Fix agent mistake
2026-04-15 18:38:08 +02:00
Matej Bačo
2b42487198
Linter fix
2026-04-15 18:30:06 +02:00
Matej Bačo
53ed9462bd
More cleanup of sms templates
2026-04-15 18:29:43 +02:00