Commit Graph

12037 Commits

Author SHA1 Message Date
Prem Palanisamy e9a4aa9244 fix: format databases page 2026-04-03 09:24:48 +01:00
Prem Palanisamy fb0bb1e725 merge: main into feat-documentsdb, resolve conflicts 2026-04-03 07:06:07 +01:00
Harsh Mahajan eeea06df19 Merge pull request #2956 from appwrite/chore-remove-promo
Chore remove promo
2026-04-02 17:55:54 +05:30
Harsh Mahajan 2b17b80c66 remove shaders 2026-04-02 17:45:08 +05:30
Harsh Mahajan 07659d38db chore: remove promo 2026-04-02 17:42:46 +05:30
Harsh Mahajan 740bdb4e24 address greptile comments 2026-04-02 17:32:17 +05:30
Harsh Mahajan fc43e009be remove code not needed 2026-04-02 17:23:18 +05:30
Harsh Mahajan 213a54ebeb fix 2026-04-02 15:46:00 +05:30
Harsh Mahajan 6110c0c22b fix 2026-04-02 14:27:44 +05:30
Harsh Mahajan 0e963cdfe4 remove llop 2026-04-02 14:04:48 +05:30
Harsh Mahajan d204d6b4ce fix frontend 2026-04-02 12:29:57 +05:30
Harsh Mahajan 42393f806c fix comparsion 2026-04-02 11:06:52 +05:30
Harsh Mahajan 6dab360dd9 used backend one 2026-04-01 19:50:52 +05:30
Harsh Mahajan 6f67cbff2e use console var 2026-04-01 19:18:11 +05:30
Harsh Mahajan f170b144d3 chore: update link 2026-04-01 11:00:37 +05:30
Harsh Mahajan 0a89a98831 can be projects too 2026-03-31 18:30:38 +05:30
Harsh Mahajan 0163986045 fix: resource block console 2026-03-31 18:20:51 +05:30
Damodar Lohani 9c1a25259c Merge pull request #2934 from appwrite/chore/usage-update
feat: add realtime connections and messages metrics to usage reports
2026-03-31 07:06:17 +05:45
Harsh Mahajan 68af21b047 Merge pull request #2944 from appwrite/fix-tooltips-and-webhook-flows
fix: tooltips across the console and webhooks flow
2026-03-30 18:10:18 +05:30
Harsh Mahajan 4e7e438dbc bun run format 2026-03-30 18:06:07 +05:30
Harsh Mahajan 7b4cbcfc23 Update createRecordModal.svelte 2026-03-30 17:50:49 +05:30
Harsh Mahajan d7ee5ce007 Update createRecordModal.svelte 2026-03-30 17:49:54 +05:30
Harsh Mahajan 57a27a0578 Update src/routes/(console)/organization-[organization]/domains/domain-[domain]/createRecordModal.svelte
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
2026-03-30 17:43:56 +05:30
Harsh Mahajan 36336c5990 fix errors due to sdk 2026-03-30 17:38:29 +05:30
Prem Palanisamy e254b8f18d use resolve() and Click tracking for export URL, consistent with tablesdb 2026-03-30 12:22:58 +01:00
Prem Palanisamy 0735f178a8 split create index for documentsdb, free text attribute input for schemaless collections 2026-03-30 11:43:48 +01:00
Prem Palanisamy c587699a7b add JSON import/export for documentsdb, fix schemaless filter, enable documentsdb listing 2026-03-30 06:42:21 +01:00
Damodar Lohani 6784083bd5 update endorcement date 2026-03-30 04:47:02 +00:00
Damodar Lohani 92757653b4 Merge remote-tracking branch 'origin/main' into chore/usage-update 2026-03-30 04:46:09 +00:00
Chirag Aggarwal 8a7736c971 improve deprecated scope accessibility 2026-03-30 08:47:43 +05:30
Chirag Aggarwal 043628cc25 address deprecated scope review feedback 2026-03-30 08:45:28 +05:30
Chirag Aggarwal 68ee7a8edb render deprecated api key scopes 2026-03-30 08:34:44 +05:30
Harsh Mahajan 0dd8cff09d fix: tooltips across the console and webhooks flow 2026-03-29 20:22:38 +05:30
Prem Palanisamy bd361f7b2e Merge remote-tracking branch 'origin/main' into feat-documentsdb 2026-03-29 12:48:31 +01:00
Prem Palanisamy 29baff746a replace DatabasesIndexType with database-specific index type enums, update SDK 2026-03-29 12:45:46 +01:00
Harsh Mahajan d2e7e263fe avoid duplicate region prefix in getApiEndpoint for regional API URLs 2026-03-29 15:16:03 +05:30
Damodar Lohani 089ca52f12 Merge pull request #2940 from appwrite/fix/fingerprint-server-time-sync
fix: sync fingerprint timestamp with server clock
2026-03-29 13:02:22 +05:45
Damodar Lohani 65f29e706c fix: improve server time synchronization logic in layout load 2026-03-29 07:12:24 +00:00
Damodar Lohani 2fbb953232 fix: use Date header from health/version instead of health.getTime()
health.getTime() requires health.read scope which regular console users
don't have. Instead, parse the Date header from the existing
health/version fetch that already happens on console load.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-29 07:06:34 +00:00
Damodar Lohani e8938c3113 fix: use server time for fingerprint timestamps to prevent clock drift rejections
Fingerprint validation was failing with "Timestamp expired" for users whose
local clock drifted beyond the server's tolerance. Now we fetch the server's
time via health.getTime() once per session and use it for all fingerprint
timestamps, eliminating dependency on the user's local clock.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-29 06:58:06 +00:00
Claude 85da4a188c Use $app/stores for subNavigation reactivity in shell.svelte
The $app/state page proxy was not properly triggering $: reactive
statements during client-side navigation. Switch to the store-based
$page from $app/stores which has reliable reactivity tracking in
Svelte legacy mode.

https://claude.ai/code/session_012QCz2xVatAtJ3Q6FSp1cB4
2026-03-29 06:00:39 +00:00
Claude 3dd288fd5d Fix database sidebar not appearing on client-side navigation
The subNavigation variable was being reactively assigned from page.data
in both shell.svelte and navigation.svelte, connected via bind:. This
competing reactive ownership caused the value to not update properly
during client-side navigation (only on full page refresh). Made
shell.svelte the single source of truth by removing the duplicate
reactive assignment from navigation.svelte and switching from bind: to
one-way prop passing.

https://claude.ai/code/session_012QCz2xVatAtJ3Q6FSp1cB4
2026-03-29 05:38:57 +00:00
Damodar Lohani c7aee6426f format 2026-03-29 02:47:37 +00:00
Damodar Lohani 7e5aa4c3a9 chore: update dependencies and refine type definitions in various components 2026-03-29 02:43:37 +00:00
Damodar Lohani c5db0c7287 feat: add realtime usage metrics and alerts for billing 2026-03-29 02:36:12 +00:00
Harsh Mahajan 3912824d95 The stale reopen bug fix 2026-03-27 17:17:54 +05:30
Harsh Mahajan 384dd8b8d6 fix: repo card 2026-03-27 16:47:25 +05:30
Harsh Mahajan 3f8ca05f7e feat:env var pagination 2026-03-27 16:33:18 +05:30
Harsh Mahajan d8f43d51f0 fix: svelte errors 2026-03-27 14:40:34 +05:30
Harsh Mahajan c6a0726e89 Apply suggestions from code review
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
2026-03-27 14:30:20 +05:30