11678 Commits

Author SHA1 Message Date
Darshan 9e9ed2df6c fix: state. 2026-02-13 15:33:16 +05:30
Darshan 53a993f0cb update: harder checks. 2026-02-13 15:14:30 +05:30
Darshan 8d79c51c53 update: harder checks. 2026-02-13 14:13:57 +05:30
Darshan 7f0ce09ae8 update: in-place update. 2026-02-13 13:22:47 +05:30
Darshan cf89a56391 update: layout and logic. 2026-02-13 13:10:23 +05:30
Darshan 947f78ee26 fix: inverted logic. 2026-02-12 14:29:39 +05:30
Darshan d9cc743754 Merge branch 'main' into 'remove-archives'. 2026-02-12 13:57:07 +05:30
Darshan c94e6f1ecf delete projects. 2026-02-12 13:48:47 +05:30
Harsh Mahajan 928a31bb11 fix: make project limit alert program-aware 2026-02-11 15:00:14 +05:30
Harsh Mahajan 00b390c24d svelte check error due to new chnages 2026-02-10 17:53:46 +05:30
Harsh Mahajan 729b6b03cc Merge remote-tracking branch 'origin/main' into fix-integer-attribute-min-max-casting 2026-02-10 17:46:15 +05:30
Harsh Mahajan 7ee9960e1d upgrade packages 2026-02-10 17:42:02 +05:30
Darshan 9da6614cf1 lint. 2026-02-10 17:01:54 +05:30
Darshan 77aa120334 update: make modal dismissible. 2026-02-10 16:57:51 +05:30
Prem Palanisamy 979168739e use structuredClone to handle BigInt in conservative stores 2026-02-09 22:40:17 +00:00
Darshan f4e1dcd87a Merge pull request #2845 from appwrite/fix-reason
Fix: reason not mentioned.
2026-02-09 16:16:31 +05:30
Darshan 5c1f03624a fix: reason not mentioned. 2026-02-09 16:09:28 +05:30
Darshan ba95658f37 fix: doc. 2026-02-09 13:38:10 +05:30
Darshan a14c0b3c60 add: default value. 2026-02-09 13:37:21 +05:30
Darshan ed7db9f8cd fix: hide empty segment. 2026-02-09 13:34:07 +05:30
Harsh Mahajan a2f630630a use a helper 2026-02-09 12:28:48 +05:30
Harsh Mahajan 593827fbde fix: prevent invalid min/max params for integer attributes 2026-02-09 12:15:41 +05:30
Harsh Mahajan 13e2b0d6ef Merge pull request #2842 from appwrite/bugs-console-file-settings
fix: adjust max storage conversion and row security change
2026-02-09 11:36:43 +05:30
Harsh Mahajan c773fd0b8d fix f=gigabytes 2026-02-07 20:12:09 +05:30
Harsh Mahajan 4490c79caf fix: for row security also changing 2026-02-07 19:48:46 +05:30
Harsh Mahajan f09baa83b7 fix for conversion 2026-02-07 19:34:41 +05:30
Darshan e7ac9e2285 Merge pull request #2838 from appwrite/feat-string-types 2026-02-06 20:21:47 +05:30
Harsh Mahajan 681a00a117 fix: Removing the invalid self-assignment 2026-02-06 15:39:48 +05:30
Harsh Mahajan 0968a91bc5 Apply suggestion from @ItzNotABug
Co-authored-by: Darshan <itznotabug@gmail.com>
2026-02-06 15:18:35 +05:30
Harsh Mahajan 32d411fda9 use const 2026-02-06 15:16:21 +05:30
Harsh Mahajan e9f96a75bc extracted to dervied const 2026-02-06 15:12:00 +05:30
Harsh Mahajan 3e7b155cb7 fix filters connected using a global state 2026-02-06 15:07:51 +05:30
Harsh Mahajan b0b2cfc69c fix: badges not visible on filter button 2026-02-06 14:32:05 +05:30
Harsh Mahajan c915ab8717 fix: filters in messaging screen 2026-02-06 14:15:25 +05:30
Jake Barnby b31fde834e Type scopes variables as Scopes[] instead of string[]
Move casts to the model boundary (where SDK models return string[])
and remove unnecessary casts at SDK call sites.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-06 21:08:53 +13:00
Jake Barnby 5581e9cca5 Type selectedScopes as Scopes[] instead of casting at call site
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-06 20:49:22 +13:00
Jake Barnby 17aba0a3ae Use isTextType function instead of inline textTypes array
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-06 20:47:49 +13:00
Jake Barnby 40ba4db14f Remove unused isVersionAtLeast import and version variable
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-06 19:27:09 +13:00
Jake Barnby cb0989a476 Address CodeRabbit review comments
- Add ColumnVarchar, ColumnText, ColumnMediumtext, ColumnLongtext to string.svelte column prop type
- Update type cast to include ColumnVarchar for size property access
- Remove unreachable functions migration alert (shouldRenderGroup always returns false for functions)
- Add || undefined fallback to scopes in updateScopes.svelte for consistency

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-06 18:52:35 +13:00
Jake Barnby 9b334e9b25 style: fix prettier formatting in varchar.svelte
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-06 18:37:26 +13:00
Jake Barnby a7c0ec5f8a style: fix prettier formatting
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-06 18:32:40 +13:00
Jake Barnby 5ee867af45 fix: update types to use SDK enums for OrderBy, Scopes, Resources, BackupServices
- Replace IndexOrder enum with SDK's OrderBy enum in indexes-related files
- Cast scopes arrays to Scopes[] type in function settings files
- Use Resources enum values in migration store and forms
- Use BackupServices enum in database backup operations
- Update migrations pages to use Scopes enum instead of string literals

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-06 18:28:01 +13:00
Jake Barnby c067f96653 Merge remote-tracking branch 'origin/main' into feat-string-types 2026-02-06 04:36:11 +13:00
Jake Barnby 880d7df956 Add bytes used 2026-02-06 04:35:59 +13:00
Darshan d684dd66df update: message. 2026-02-05 14:31:08 +05:30
Darshan ee36d553e6 fix: platform specific identities. 2026-02-05 14:09:04 +05:30
Darshan f866e26138 update: warnings. 2026-02-05 14:05:04 +05:30
Harsh Mahajan 49b49edeaa Merge pull request #2836 from appwrite/fix-remove-navbar-during-onboarding-animation
fix: remove navbar during onboarding animation
2026-02-05 14:05:03 +05:30
Harsh Mahajan d3b0ba32cd use resolve 2026-02-05 13:57:14 +05:30
Harsh Mahajan e5662f8b3c fix: remove navbar during onboarding animation 2026-02-05 13:30:11 +05:30