Coder Social home page Coder Social logo

.github's Introduction

Our Appwrite Init event has concluded. You can check out all the new and upcoming features on our Init website ๐Ÿš€


Appwrite Logo

Appwrite is a backend platform for developing Web, Mobile, and Flutter applications. Built with the open source community and optimized for developer experience in the coding languages you love.

We're Hiring Hacktoberfest Discord Build Status X Account

English | ็ฎ€ไฝ“ไธญๆ–‡

Announcing Appwrite Cloud Public Beta! Sign up today!

Appwrite is an end-to-end backend server for Web, Mobile, Native, or Backend apps packaged as a set of Docker microservices. Appwrite abstracts the complexity and repetitiveness required to build a modern backend API from scratch and allows you to build secure apps faster.

Using Appwrite, you can easily integrate your app with user authentication and multiple sign-in methods, a database for storing and querying users and team data, storage and file management, image manipulation, Cloud Functions, and more services.


Appwrite - 100% open source alternative for Firebase | Product Hunt

Appwrite

Find out more at: https://appwrite.io

Table of Contents:

Installation

Appwrite is designed to run in a containerized environment. Running your server is as easy as running one command from your terminal. You can either run Appwrite on your localhost using docker-compose or on any other container orchestration tool, such as Kubernetes, Docker Swarm, or Rancher.

The easiest way to start running your Appwrite server is by running our docker-compose file. Before running the installation command, make sure you have Docker installed on your machine:

Unix

docker run -it --rm \
    --volume /var/run/docker.sock:/var/run/docker.sock \
    --volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
    --entrypoint="install" \
    appwrite/appwrite:1.5.4

Windows

CMD

docker run -it --rm ^
    --volume //var/run/docker.sock:/var/run/docker.sock ^
    --volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^
    --entrypoint="install" ^
    appwrite/appwrite:1.5.4

PowerShell

docker run -it --rm `
    --volume /var/run/docker.sock:/var/run/docker.sock `
    --volume ${pwd}/appwrite:/usr/src/code/appwrite:rw `
    --entrypoint="install" `
    appwrite/appwrite:1.5.4

Once the Docker installation is complete, go to http://localhost to access the Appwrite console from your browser. Please note that on non-Linux native hosts, the server might take a few minutes to start after completing the installation.

For advanced production and custom installation, check out our Docker environment variables docs. You can also use our public docker-compose.yml and .env files to manually set up an environment.

Upgrade from an Older Version

If you are upgrading your Appwrite server from an older version, you should use the Appwrite migration tool once your setup is completed. For more information regarding this, check out the Installation Docs.

One-Click Setups

In addition to running Appwrite locally, you can also launch Appwrite using a pre-configured setup. This allows you to get up and running quickly with Appwrite without installing Docker on your local machine.

Choose from one of the providers below:

DigitalOcean Logo
DigitalOcean
Gitpod Logo
Gitpod
Akamai Logo
Akamai Compute

Getting Started

Getting started with Appwrite is as easy as creating a new project, choosing your platform, and integrating its SDK into your code. You can easily get started with your platform of choice by reading one of our Getting Started tutorials.

Platform Technology
Web app Quick start for Web
Quick start for Next.js
Quick start for React
Quick start for Vue.js
Quick start for Nuxt
Quick start for SvelteKit
Quick start for Refine
Quick start for Angular
Mobile and Native Quick start for React Native
Quick start for Flutter
Quick start for Apple
Quick start for Android
Server Quick start for Node.js
Quick start for Python
Quick start for .NET
Quick start for Dart
Quick start for Ruby
Quick start for Deno
Quick start for PHP
Quick start for Kotlin
Quick start for Swift

Products

  • Account - Manage current user authentication and account. Track and manage the user sessions, devices, sign-in methods, and security logs.
  • Users - Manage and list all project users when building backend integrations with Server SDKs.
  • Teams - Manage and group users in teams. Manage memberships, invites, and user roles within a team.
  • Databases - Manage databases, collections, and documents. Read, create, update, and delete documents and filter lists of document collections using advanced filters.
  • Storage - Manage storage files. Read, create, delete, and preview files. Manipulate the preview of your files to perfectly fit your app. All files are scanned by ClamAV and stored in a secure and encrypted way.
  • Functions - Customize your Appwrite project by executing your custom code in a secure, isolated environment. You can trigger your code on any Appwrite system event either manually or using a CRON schedule.
  • Messaging - Communicate with your users through push notifications, emails, and SMS text messages using Appwrite Messaging.
  • Realtime - Listen to real-time events for any of your Appwrite services including users, storage, functions, databases, and more.
  • Locale - Track your user's location and manage your app locale-based data.
  • Avatars - Manage your users' avatars, countries' flags, browser icons, and credit card symbols. Generate QR codes from links or plaintext strings.

For the complete API documentation, visit https://appwrite.io/docs. For more tutorials, news and announcements check out our blog and Discord Server.

SDKs

Below is a list of currently supported platforms and languages. If you would like to help us add support to your platform of choice, you can go over to our SDK Generator project and view our contribution guide.

Client

  • โœ… ย  Web (Maintained by the Appwrite Team)
  • โœ… ย  Flutter (Maintained by the Appwrite Team)
  • โœ… ย  Apple (Maintained by the Appwrite Team)
  • โœ… ย  Android (Maintained by the Appwrite Team)
  • โœ… ย  React Native - Beta (Maintained by the Appwrite Team)

Server

  • โœ… ย  NodeJS (Maintained by the Appwrite Team)
  • โœ… ย  PHP (Maintained by the Appwrite Team)
  • โœ… ย  Dart (Maintained by the Appwrite Team)
  • โœ… ย  Deno (Maintained by the Appwrite Team)
  • โœ… ย  Ruby (Maintained by the Appwrite Team)
  • โœ… ย  Python (Maintained by the Appwrite Team)
  • โœ… ย  Kotlin (Maintained by the Appwrite Team)
  • โœ… ย  Swift (Maintained by the Appwrite Team)
  • โœ… ย  .NET - Beta (Maintained by the Appwrite Team)

Community

Looking for more SDKs? - Help us by contributing a pull request to our SDK Generator!

Architecture

Appwrite Architecture

Appwrite uses a microservices architecture that was designed for easy scaling and delegation of responsibilities. In addition, Appwrite supports multiple APIs, such as REST, WebSocket, and GraphQL to allow you to interact with your resources by leveraging your existing knowledge and protocols of choice.

The Appwrite API layer was designed to be extremely fast by leveraging in-memory caching and delegating any heavy-lifting tasks to the Appwrite background workers. The background workers also allow you to precisely control your compute capacity and costs using a message queue to handle the load. You can learn more about our architecture in the contribution guide.

Contributing

All code contributions, including those of people having commit access, must go through a pull request and be approved by a core developer before being merged. This is to ensure a proper review of all the code.

We truly โค๏ธ pull requests! If you wish to help, you can learn more about how you can contribute to this project in the contribution guide.

Security

For security issues, kindly email us at [email protected] instead of posting a public issue on GitHub.

Follow Us

Join our growing community around the world! Check out our official Blog. Follow us on X, LinkedIn, Dev Community or join our live Discord server for more help, ideas, and discussions.

License

This repository is available under the BSD 3-Clause License.

.github's People

Contributors

abnegate avatar adityaoberai avatar christyjacob4 avatar eldadfux avatar gewenyu99 avatar haimantika avatar meldiron avatar stnguyen90 avatar vj-codes avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

.github's Issues

PRs Opened in August 2023

Issue Metrics

Metric Value
Average time to first response 21:55:49.743396
Average time to close 1 day, 19:09:07.900000
Number of items that remain open 107
Number of items closed 240
Total number of items created 347
Title URL Time to first response Time to close
fix: patch updates for appwrite 1.4.1 appwrite/sdk-for-swift#11 1:20:42 None
Chore update sdks appwrite/appwrite#6099 None None
fix: patch updates for appwrite 1.4.1 appwrite/sdk-for-kotlin#33 0:30:40 None
fix: patch updates for appwrite 1.4.1 appwrite/sdk-for-deno#15 1:24:04 None
fix: patch updates for appwrite 1.4.1 appwrite/sdk-for-node#59 1:23:14 None
fix: patch updates for appwrite 1.4.1 appwrite/sdk-for-python#70 1:22:11 None
fix: patch updates for appwrite 1.4.1 appwrite/sdk-for-php#22 0:33:00 None
fix: patch updates for appwrite 1.4.1 appwrite/sdk-for-ruby#16 0:29:28 None
fix: for appwrite 1.4.x appwrite/sdk-for-apple#37 0:27:35 None
fix: for appwrite 1.4.x appwrite/sdk-for-flutter#170 0:25:22 None
fix: for appwrite 1.4.x appwrite/sdk-for-android#37 0:23:14 None
fix: for appwrite 1.4.x appwrite/sdk-for-web#74 0:22:51 None
Fix the default executor host since it's changed in 1.4 appwrite/appwrite#6098 None None
Make install confirmation case insensitive appwrite/appwrite#6097 0:05:24 0:05:53
Fix Duplicate Attributes in Firebase utopia-php/migration#15 None None
chore: upgrade Svelte 4 and other dependencies appwrite/console#526 0:00:06 None
Update the trigger for the cleanup actions cache workflow appwrite/appwrite#6096 0:03:08 0:06:45
Update migration script to not remove schedule from functions appwrite/appwrite#6095 0:23:43 None
Server Side Rendering appwrite/rfc#59 None None
Sync master into 1.5.x appwrite/appwrite#6092 0:19:23 0:19:31
Sync 1.5.x with master appwrite/appwrite#6091 None 0:00:36
fix: dart headers appwrite/sdk-generator#706 2:10:17 2:10:21
fix: headers keyword for .net appwrite/sdk-generator#705 2:14:56 2:22:21
add rounds to db connection attempts and adjust attempts sleep between rโ€ฆ appwrite/appwrite#6087 None None
Chore update migrations appwrite/appwrite#6084 0:03:35 0:03:47
Fix attribute + document import utopia-php/migration#14 0:21:32 0:31:34
Update firebase connect scope appwrite/appwrite#6083 0:01:27 0:01:32
Fix swapped from/to name appwrite/appwrite#6081 0:31:19 0:32:59
Create a GH workflow to cleanup the GH cache appwrite/appwrite#6080 0:12:07 17:21:11
Fix router error appwrite/appwrite#6079 0:14:56 1:13:06
Fix mock headers appwrite/appwrite#6078 0:03:47 0:08:13
fix: missing variable in email templates appwrite/appwrite#6077 0:40:16 0:57:06
Fix domains migration appwrite/appwrite#6076 0:06:07 0:11:23
Fix shadowed parameters appwrite/sdk-generator#703 16:52:29 16:52:34
Chore sync master appwrite/appwrite#6074 0:07:31 0:11:23
Chore update version appwrite/appwrite#6073 0:05:28 0:36:32
1.4 Fixes appwrite/appwrite#6072 4:01:50 8:48:10
Add github app config information appwrite/docs#424 23:15:54 1 day, 1:26:18
Fix scopes appwrite/appwrite#6071 0:12:54 0:42:20
Update the uprade docs to use the new upgrade command appwrite/docs#423 1:02:08 1:02:18
Fix internal calls relying on public scope appwrite/console#525 0:07:46 0:21:28
Add max_connetions variable appwrite/appwrite#6070 None 0:03:27
[vcs] - Added read & write roles appwrite/appwrite#6069 None 0:10:08
Feat upgrade task appwrite/appwrite#6068 2:12:41 2:21:19
chore: update framework version utopia-php/platform#14 0:01:55 0:02:26
chore: add update framework version appwrite/appwrite#6067 0:18:30 0:21:25
chore: update framework version utopia-php/vcs#4 0:01:00 0:01:33
feat: bring back order id utopia-php/http#107 0:00:40 0:04:43
[Snyk] Upgrade cross-fetch from 3.1.5 to 3.1.8 appwrite/sdk-for-web#73 None None
chore: upgrade console appwrite/appwrite#6066 None 0:00:10
Added function for deepgramTranscribeAudio() in Swift. open-runtimes/examples#179 None None
fix: lastminute 1.4 qa appwrite/console#524 0:00:06 3:27:03
chore: release 1.4.x appwrite/appwrite#6065 None 4:46:03
feat: release 1.4.x appwrite/sdk-for-console#6 None None
feat: release 1.4.x appwrite/sdk-for-cli#91 4:21:10 4:21:16
feat: release 1.4.x appwrite/sdk-for-node#58 2:22:38 4:20:54
feat: release 1.4.x appwrite/sdk-for-deno#14 0:58:17 4:19:52
feat: release 1.4.x appwrite/sdk-for-php#21 4:19:43 4:19:47
feat: release 1.4.x appwrite/sdk-for-python#69 2:11:14 4:19:02
feat: release 1.4.x appwrite/sdk-for-ruby#15 4:18:49 4:18:54
feat: release 1.4.x appwrite/sdk-for-dotnet#26 22:38:32 None
feat: release 1.4.x appwrite/sdk-for-kotlin#32 1:22:22 4:18:30
feat: release 1.4.x appwrite/sdk-for-swift#10 4:16:46 4:16:51
Fix health db endpoint behavior appwrite/appwrite#6064 0:10:54 0:12:07
feat: release 1.4.0 appwrite/sdk-for-apple#36 4:45:47 4:45:53
feat: release 1.4.0 appwrite/sdk-for-android#36 1:56:58 4:49:34
feat: release 1.4.0 appwrite/sdk-for-web#72 1:08:25 4:43:13
feat: release 1.4.0 appwrite/sdk-for-flutter#168 1:32:33 5:00:32
fix: arm64 regular expression utopia-php/system#26 0:01:18 0:50:32
Small assistant fixes appwrite/console#523 0:00:08 6:16:32
fix: typo for description in function model docs appwrite/appwrite#6063 4:20:59 None
Check if host is public domain before requesting appwrite/appwrite#6060 0:11:47 0:30:15
Fix smtp appwrite/appwrite#6059 1:23:18 9:05:04
fix: path var naming collision appwrite/sdk-generator#702 0:45:43 8:54:59
master -> 1.4.x appwrite/appwrite#6058 0:08:08 0:08:32
cl-1.4.x -> 1.4.x appwrite/appwrite#6057 0:11:56 0:42:16
1.4.x appwrite/docs#422 2:42:00 12:05:05
Updated search repositories logic utopia-php/vcs#3 0:02:22 0:14:24
fix: more qa appwrite/templates#47 None 16:46:08
Fix: function docs qa appwrite/docs#421 2:49:16 2:49:38
feat: starters for functions g4 appwrite/functions-starter#54 None None
Add V3 Tag to functions pull in CLI appwrite/sdk-generator#701 None None
adds internal id support for create document utopia-php/database#318 0:17:24 23:13:13
Feat: Upgrade DB lib utopia-php/audit#57 0:14:17 0:23:57
Feat: Upgrade DB version utopia-php/abuse#61 0:14:36 0:24:13
fix: qa last fixes appwrite/console#522 0:00:06 6:25:22
adds internal id support in createDocumentl utopia-php/database#317 1 day, 5:17:43 None
feat: Add marketplace usecases & missing templates appwrite/console#521 0:00:07 2:53:27
Disable swoole curl hook appwrite/appwrite#6053 None 16:29:07
chore: cleanup some code appwrite/console#520 0:00:07 13:52:08
Fix incorrect type hints utopia-php/analytics#46 None None
chore: add functions missing doc links appwrite/console#519 0:00:06 14:53:50
Fix macOS check for arm64 utopia-php/system#25 11:05:22 None
1.4 adjustments appwrite/console#518 0:00:08 0:42:57
Fix: SMTP behaviour appwrite/appwrite#6052 0:48:15 21:51:33
add dotenv appwrite/assistant#11 None 0:02:51
update assistant version appwrite/appwrite#6050 22:22:40 22:25:20
Update scrape.py and docs folder appwrite/assistant#10 0:07:04 0:07:09
updates appwrite assistant docker image version appwrite/appwrite#6048 0:05:06 0:05:51
Feat SMTP Template Simplification appwrite/appwrite#6047 0:24:11 3:23:02
docs autocompletion command code fix #6039 appwrite/appwrite#6046 None None
fixed: delete attribute even if related collection does not exist appwrite/appwrite#6045 None None
Fixed grammar, spelling, and punctuation mistakes utopia-php/http#106 None None
Skip structure validation for now in createDocuments utopia-php/database#316 1 day, 0:28:37 None
Add a Java function open-runtimes/examples#178 None None
Update tr.json appwrite/appwrite#6037 None None
feat: show native logs open-runtimes/open-runtimes#191 1 day, 16:28:00 3 days, 20:49:05
Version Packages (next) appwrite/pink#108 0:00:02 0:00:27
Version Packages (next) appwrite/pink#107 0:00:02 0:00:26
Fix Deployment Transfers utopia-php/migration#13 None None
Fix uninitialised var warning open-runtimes/proxy#16 None None
Feat topics controller appwrite/appwrite#6032 None None
Fix function doc link appwrite/console#517 0:00:07 15:08:33
feat: Port Email Contact Form appwrite/templates#46 2 days, 13:44:54 4 days, 17:07:55
feat: Port Censor with Redact appwrite/templates#45 2 days, 13:58:39 4 days, 14:26:40
Fixes 1.4 appwrite/console#516 0:00:08 3 days, 16:33:20
Add flutter web to whitelist for clients appwrite/appwrite#6031 18:47:22 None
feat: document clone method utopia-php/database#315 4:02:03 4 days, 23:39:01
Add alot more details around service account key creation appwrite/docs#420 4:29:41 6:05:59
Migration copy writing improvements appwrite/console#515 0:00:07 5 days, 12:32:57
Sync 1.5.x appwrite/appwrite#6030 0:32:37 0:37:20
Version Packages (next) appwrite/pink#106 0:00:02 0:01:38
Changeset release/style updates for release 1.4 appwrite/pink#105 0:00:18 0:02:07
Feat: support for old storage vars open-runtimes/executor#37 1:29:11 1:29:54
Move bug same path utopia-php/storage#84 1 day, 12:28:23 None
Fix colliding ID overrides appwrite/appwrite#6029 0:04:51 2:23:52
Feat: Remove pools of orchestration open-runtimes/executor#36 2:46:14 2:46:31
fix: QA smtp templates appwrite/console#514 0:00:06 0:17:48
Version Packages (next) appwrite/pink#104 0:00:02 0:16:19
QA fixes appwrite/templates#44 None 1:34:48
feat: give a hint to run init and deploy command appwrite/sdk-for-cli#90 None None
copy internalId when running createDocuments utopia-php/database#314 None None
Improved 400 error messages utopia-php/http#105 1:07:08 1:07:37
Improve 1.4 copy appwrite/appwrite#6024 1 day, 4:09:30 1 day, 4:25:04
Make sure document permissions are not checked if not enabled utopia-php/database#313 0:26:14 0:26:50
Clone queries when grouping/getting by type so that mutations are not made across references utopia-php/database#312 0:04:03 0:11:59
Fix more headings for sentence case appwrite/console#513 0:00:07 6 days, 12:33:50
Fix no invalid keys utopia-php/database#311 0:11:42 2:16:45
Feat provider controllers appwrite/appwrite#6023 1 day, 19:21:01 None
rollback to old usage charts appwrite/console#512 0:00:06 1 day, 2:58:30
fix file upload appwrite/console#511 0:00:06 0:15:08
feat: github readme parsing for templates appwrite/console#510 0:00:07 None
Fix: Improve logging open-runtimes/executor#35 23:41:52 23:48:50
Feat: Add tmp cleanup open-runtimes/executor#34 0:02:49 0:11:44
Add Escapes to CLI::Execute open-runtimes/executor#33 0:02:53 0:12:56
feat: set utf-8 default open-runtimes/open-runtimes#190 5 days, 20:46:39 8 days, 0:42:52
Added commit hash to git clone command utopia-php/vcs#2 0:50:19 1:10:36
Fix throwing global exception instead of database exception utopia-php/database#310 22:41:40 22:51:05
[Snyk] Upgrade cross-fetch from 3.1.5 to 3.1.8 appwrite/sdk-for-web#70 None None
Rollback to old usage appwrite/appwrite#6022 15:22:30 1 day, 4:08:21
Feat: public getFiles in local device utopia-php/storage#83 23:22:42 23:32:01
Fix: Failed build appwrite/assistant#9 0:03:23 0:04:30
Feat: Add 1.4.x to bug report #63 9 days, 7:21:27 9 days, 7:25:14
Fix domains on cl 1.1.x appwrite/appwrite#6021 0:01:41 0:01:46
Improve wizard copy. appwrite/console#509 0:00:07 1 day, 16:20:10
Update Dockerfile appwrite/appwrite#6020 None None
Added new testcase and modified duplicate domain error appwrite/appwrite#6019 0:16:51 None
Fix: env var name appwrite/assistant#8 None 6:41:43
Fix arm build and api key appwrite/assistant#7 14:51:25 1 day, 11:03:19
Feat 4103 Create WipeAppwriteCollection Java open-runtimes/examples#177 None None
Sync with Algolia Port appwrite/templates#43 1 day, 16:06:59 3 days, 16:09:29
Merge 1.4.x into cl-1.4.x appwrite/appwrite#6015 None 3:09:17
Fix: Memory leak open-runtimes/executor#32 0:01:03 0:01:09
Fix 4952 read doctor email receiver from console appwrite/appwrite#6014 3:59:00 None
Discord Command Bot Ports appwrite/templates#42 1 day, 20:16:11 3 days, 19:42:17
Prompt ChatGPT ports appwrite/templates#41 1 day, 23:39:23 3 days, 22:58:50
Revert some migrations appwrite/appwrite#6011 4 days, 11:50:32 4 days, 11:59:44
Chore 1.4.x upgrade appwrite/appwrite#6010 2:22:16 14:06:05
1.4.x -> cl-1.4.x appwrite/appwrite#6009 None 0:05:26
Bump sdk for web version appwrite/appwrite#6008 3:28:16 13 days, 3:56:33
Bump package version for release appwrite/sdk-for-web#69 3:57:50 3:57:56
QA Fixes 1.4 appwrite/console#508 0:00:07 4 days, 21:49:01
Update base image and extension versions appwrite/docker-base#18 4:37:42 4:39:29
Small QoL changes appwrite/console#507 0:00:05 20:24:57
Fix pending counters utopia-php/migration#12 1:04:07 1:04:11
fix: alert is not dismissible appwrite/console#506 0:00:06 0:00:23
Feat 4037 pull request to write a sendmessage funcion using .net open-runtimes/examples#176 None None
Fix update calls not returning relationships that weren't updated utopia-php/database#309 15:01:54 None
Add test for invalid keys utopia-php/database#308 17:30:54 18:20:34
Update V19 Update Migrations for 1.4.x appwrite/appwrite#6001 5 days, 23:42:27 5 days, 23:42:39
Fix Migrations Stability appwrite/appwrite#5998 0:31:16 1 day, 17:08:18
Fix the repo url for apple sdk in getting started for apple appwrite/docs#419 0:02:11 0:27:33
Feat target controllers account user appwrite/appwrite#5996 None 7 days, 17:56:19
Add FB BucketId Sanitise and improve getStatusCounters utopia-php/migration#11 0:18:10 0:18:14
Db pool backup stream appwrite/appwrite#5995 None None
upgrade database appwrite/appwrite#5994 None None
Feat whitelist enums appwrite/sdk-generator#700 None None
Dev appwrite/sdk-for-web#68 15:40:56 1 day, 22:58:12
Regenerate using v0.33.* of SDK generator to fix missing types appwrite/sdk-for-web#67 0:08:16 0:26:31
Changes required for ZDT migration utopia-php/database#307 1 day, 18:00:05 None
Feat 1.4 update migrations appwrite/appwrite#5993 None 15 days, 0:27:08
fixed the binding of flags to show create modals appwrite/console#505 0:01:09 None
Improve Firebase Stability utopia-php/migration#10 18:01:10 18:01:15
Fix 5204 CDN code sample script tag using self-closing syntax appwrite/console#504 0:00:04 12 days, 22:42:14
Fix typo in ReadMe open-runtimes/examples#175 1 day, 23:23:31 None
Update user labels based on design review appwrite/console#503 0:00:07 6 days, 17:17:40
Cl 1.4.x appwrite/appwrite#5989 None 0:04:36
Replace mentions of 2022 with 2023 appwrite/hacktoberfest#57 0:00:04 19:52:54
Create 1.4 response filter appwrite/appwrite#5988 7 days, 16:39:51 8 days, 1:26:26
docs: Add note on Document Level Security in Readme appwrite/demo-todo-with-react#70 0:00:04 None
add apple oauth provider documentation appwrite/docs#418 0:51:04 None
Feat messages event config appwrite/appwrite#5986 None None
Service: Translate User's Guide for Myanmar โœ… appwrite/appwrite#5983 None None
Update getting-started-for-web.phtml appwrite/docs#417 None None
Added Autodesk OAuth provider guide appwrite/docs#416 1 day, 21:42:16 None
Feat: Add appwriteException with constants for error types in specs appwrite/appwrite#5979 None None
added Notion OAuth guide appwrite/docs#415 2 days, 7:46:50 None
Added Twitch OAuth guide appwrite/docs#414 2 days, 11:32:28 None
refactor test utopia-php/storage#82 8:36:24 8:42:23
Create 1.4 request filters appwrite/appwrite#5972 10 days, 14:45:23 10 days, 20:42:33
Chore cleanup dockerfile appwrite/appwrite#5971 2 days, 10:49:01 None
Add insert many function utopia-php/mongo#13 2 days, 18:14:27 2 days, 18:24:35
Added GitLab OAuth Doc appwrite/docs#413 None None
feat-4125-compressImage-Function-using-Java open-runtimes/examples#174 None None
Split auth guide, add label, team, and password security to docs. appwrite/docs#412 6 days, 2:47:07 16 days, 0:57:27
fixes edge case in comparison check utopia-php/database#306 2:56:22 3 days, 4:08:06
fix: simplify deepKeys type to fix checks appwrite/console#502 0:00:06 0:00:51
fixes debugger usage appwrite/appwrite#5970 0:05:51 2:51:39
kraken compression method added open-runtimes/examples#173 None 0:22:05
added localease in flutter projects appwrite/awesome-appwrite#501 None None
Update database utopia-php/abuse#60 1:40:18 1:50:57
Update database utopia-php/audit#56 1:42:01 1:52:40
Update wizard steps to use formal language appwrite/console#501 0:00:06 10 days, 21:27:47
Update how we label experimental features appwrite/docs#411 11 days, 8:38:19 11 days, 8:38:23
Change everything to sentence case appwrite/console#500 0:02:16 10 days, 22:22:00
Fix isEmpty returning true if $id is not selected utopia-php/database#305 2:02:12 2:05:39
Fix secrets, NHost Signature and router issues appwrite/appwrite#5969 6:09:31 6 days, 0:55:38
Added WordPress OAuth doc appwrite/docs#410 1 day, 22:42:00 None
Add OAuth Reports and Fix Firebase SDK Calls appwrite/console#499 0:00:07 3:32:14
Feat: Move oauth secret to identity appwrite/appwrite#5968 0:01:31 0:01:38
Feat 3986 azure blob storage adapter implementation utopia-php/storage#81 None None
added event-ally project appwrite/awesome-appwrite#500 None None
Feat: Migrate from travis to Github actions workflow utopia-php/platform#13 None None
add title and description props and slots for Modal appwrite/console#498 0:00:08 12 days, 22:57:17
bump db version utopia-php/abuse#59 0:02:39 0:13:14
bump database version utopia-php/audit#55 0:03:03 0:13:38
add checking of nested docs id in comparison check when updating document utopia-php/database#304 10:26:59 1 day, 4:53:20
Update README.md utopia-php/migration#9 0:00:52 0:01:32
Rename library to Migration utopia-php/migration#8 0:03:09 0:13:12
Merge branch 'command-center-and-migrations' into filtering appwrite/console#497 0:00:06 0:07:06
Add a secrets attribute to the identities collection appwrite/appwrite#5966 0:19:56 0:31:50
Feat: More platforms to release open-runtimes/proxy#15 0:35:10 0:36:07
Fix login action version open-runtimes/executor#31 0:01:38 0:01:48
Feat: Introduce platforms to release open-runtimes/executor#30 0:54:46 0:54:58
Added Zoom OAuth doc appwrite/docs#409 3:11:07 None
Update .env var appwrite/assistant#6 0:03:36 0:03:41
Fix: Set pool size to 100 open-runtimes/executor#29 0:10:16 0:18:38
Remove VCS assets appwrite/appwrite#5964 0:01:35 0:01:44
added Dropbox OAuth doc appwrite/docs#408 7:51:17 None
Hacktoberfest 2023 Prep appwrite/hacktoberfest#56 0:00:04 1 day, 12:30:23
Sync 1.4.x appwrite/appwrite#5961 None 2:24:44
1.4.x appwrite/console#496 0:00:06 19 days, 20:17:25
Added Amazon OAuth provider guide appwrite/docs#407 1 day, 11:50:56 None
fixed issue that didn't allow a user to update a document when deleting elements in an array attribute appwrite/console#495 0:00:03 2 days, 17:14:50
Cl 1.4.x appwrite/appwrite#5960 None 21 days, 8:57:34
Added custom role option for verified users appwrite/console#494 0:00:07 None
Feat: Migrate from travis to Github actions workflow utopia-php/registry#13 5 days, 15:03:39 None
Feat: Migrate from travis to Github actions workflow utopia-php/orchestration#33 5 days, 15:20:07 None
Feat: Migrate from travis to Github actions workflow utopia-php/domains#31 None None
rename setTimeout methods utopia-php/database#303 15:24:55 15:25:01
add video series and blog series appwrite/awesome-appwrite#499 None None
0.1.x to main open-runtimes/executor#28 0:15:47 0:16:21
added Jobwrite in project showcase list appwrite/awesome-appwrite#498 None None
added LinkedIn OAuth provider guide appwrite/docs#406 13:47:48 None
chore: update ci appwrite/sdk-for-console#5 None 0:00:40
added Jobwrite in react showcase appwrite/awesome-appwrite#497 None 6 days, 10:19:05
Separate OAuth2 info from Sessions into Identities appwrite/appwrite#5953 1 day, 18:07:19 1 day, 19:12:15
fix: QA changes appwrite/templates#40 12 days, 11:53:01 12 days, 19:47:32
Replace sorting by $createdAt with natural order appwrite/console#493 0:00:06 1 day, 12:35:44
Upgrade console sdk appwrite/sdk-for-console#4 0:17:47 3:05:19
Feat add messaging response models appwrite/appwrite#5951 None None
add discord oauth docs appwrite/docs#405 4 days, 20:47:40 None
Feat push utopia-php/messaging#20 16 days, 3:49:29 None
Feat push utopia-php/messaging#19 None 0:02:03
Update README.md appwrite/awesome-appwrite#496 1:06:41 1:06:48
upgrade framework utopia-php/swoole#29 0:15:30 0:16:11
remove arm build appwrite/assistant#5 0:00:42 0:00:46
Update Dependencies appwrite/sdk-generator#697 24 days, 21:21:21 None
Fix router execution action utopia-php/http#104 1:16:53 18:14:05
Cloud 1.1.x appwrite/console#492 None 2 days, 2:18:20
Made some changes to prevent adding an empty todo appwrite/demo-todo-with-react#68 0:00:04 None
Sync to 1.2.x appwrite/appwrite#5947 None None
Feat Framework V2 test appwrite/appwrite#5946 None None
Upgrade framework lib version utopia-php/platform#12 1 day, 2:15:41 1 day, 2:15:46
added google OAuth provider guide appwrite/docs#404 3 days, 17:58:01 None
Feat: Combine logs utopia-php/orchestration#32 0:55:50 0:55:55
Feat: Combine logs utopia-php/cli#30 0:26:46 0:29:32
Update Cloud with 1.4.x appwrite/appwrite#5943 None 1 day, 8:40:50
Cloud 1.3.x appwrite/console#491 0:00:07 3 days, 16:48:33
Filtering appwrite/console#490 0:00:05 4 days, 18:40:35
Update Cloud to 1.3.8 appwrite/appwrite#5942 None 1 day, 13:06:04
Merge 1.3.8 tag to upgrade cloud appwrite/appwrite#5941 None None
Cloud 1.2.x appwrite/console#489 0:00:04 None
Cloud 1.1.x appwrite/console#488 0:00:06 0:11:22
Cloud 1.3.x appwrite/appwrite#5940 None 1:24:21
Cloud 1.3.x 2 appwrite/appwrite#5939 None 1:27:44
Feat: Migrate to Github Actions utopia-php/analytics#45 7 days, 6:19:14 None
Implement Migrations appwrite/appwrite#5938 4 days, 17:55:39 5 days, 6:29:56
feat: TypeScript starter appwrite/templates#39 23:28:06 23:28:10
feat: Tests workflow utopia-php/system#24 7 days, 8:09:48 None
Feat: Migrate to Github Actions utopia-php/config#12 0:07:14 None
Feat: Migrate to Github Actions utopia-php/cli#29 0:06:37 None
Readme and contribution appwrite/assistant#4 1 day, 21:12:25 1 day, 21:12:32
Feat add messaging providers appwrite/appwrite#5937 None None
remove authorization appwrite/assistant#3 0:00:50 0:00:59
Update README.md appwrite/awesome-appwrite#495 3 days, 7:16:52 3 days, 9:18:20
Feat: Migrate to Github Actions utopia-php/cache#30 0:20:56 None
[Bug Fixed] Added Transform Scale up to article cards while hovering appwrite/pink#102 0:00:03 4 days, 12:15:51
Feat 4155 Text To Speech in Python open-runtimes/examples#172 0:03:02 None
Version Packages (next) appwrite/pink#101 0:00:02 13 days, 22:01:09
Version Packages (next) appwrite/pink#100 0:00:03 0:00:54
Add VCS assets appwrite/appwrite#5935 0:01:13 0:01:18
Feat appwrite assistant appwrite/appwrite#5934 0:59:06 4 days, 4:21:11
Add assets for VCS appwrite/appwrite#5933 None 0:20:54
Dockerize appwrite/assistant#2 1 day, 3:19:15 1 day, 3:21:35
Feat: CURL appwrite/docker-base#17 3 days, 0:06:23 3 days, 0:14:48
bump db upgrade version utopia-php/audit#54 0:02:15 0:02:20
bump db upgrade version utopia-php/abuse#58 0:02:35 0:02:41
refactor: streaming js api appwrite/assistant#1 0:34:19 0:34:37
Fallback to $id when validating select queries utopia-php/database#302 0:33:11 0:33:17
Feat 4155 text to speech python open-runtimes/examples#171 None 0:00:14
Bump console to fix missing active deployment bug appwrite/appwrite#5932 0:15:35 0:15:43
Spotify OAuth Doc appwrite/docs#403 2:49:10 None
Brink conversion method open-runtimes/examples#170 None 0:00:09
Brink tinify compression method open-runtimes/examples#169 None 0:05:46
add collections to config file and messaging scopes to config file appwrite/appwrite#5930 None None
Fix: cloud active deployment not visible appwrite/console#487 0:00:06 0:04:41
feat: Table Generator Support Cases appwrite/templates#37 20:18:39 23:02:00
Sync with master appwrite/appwrite#5929 5 days, 5:13:29 5 days, 5:13:34
feat: test Workflow utopia-php/ab#12 20:30:22 None
Feat: Add test.yml workflow utopia-php/image#27 None None
Conversion method open-runtimes/examples#168 None 17:13:25
Add a notice about URL encoding _APP_SMS_PROVIDER appwrite/docs#402 9:58:27 9:58:33
Fixed bug where memberships remained after a team is deleted appwrite/appwrite#5928 1:00:21 3 days, 8:07:45
feat: Test Workflow utopia-php/locale#16 1 day, 8:00:26 None
Feat tests workflow utopia-php/logger#30 None None
fix comparison check in updateDocument utopia-php/database#301 0:21:58 1 day, 13:10:59
converted desc to sentence case appwrite/appwrite#5926 0:01:51 None
fix(#430): Change success message to 'Creating Index' for better userโ€ฆ appwrite/console#486 0:00:05 7 days, 2:52:47
Trigger tests on Pull Request open-runtimes/open-runtimes#189 None 0:00:28
fix: error in initialising the Exception constructor in api.php appwrite/appwrite#5924 0:45:01 4:02:58
V19 migration - uid varchar appwrite/appwrite#5923 7 days, 6:43:27 10 days, 13:07:04
Fix-table-spacing appwrite/templates#36 0:06:40 0:06:44
feat: improve docs appwrite/templates#35 0:06:05 0:06:22
Style Appwrite Error Page appwrite/appwrite#5922 5:38:56 1 day, 4:50:55
Separate OAuth2 info from Sessions into Identities appwrite/appwrite#5921 8:49:09 8 days, 7:04:09
Separate OAuth2 info from Sessions into Identities appwrite/appwrite#5920 None 6 days, 21:46:02

This report was generated with the Issue Metrics Action
Search query used to find these items: org:appwrite org:open-runtimes org:utopia-php is:pull-request created:2023-08-01..2023-08-31

Error when uploading large files (over 5 MB) with Appwrite SDK for Flutter (SDK Version: 9.0.1, Server Version: 1.3.3)

๐Ÿ‘Ÿ Reproduction steps

  1. Initialize the Appwrite SDK in a Flutter application (version 9.0.1).
  2. Use the SDK to send a file upload request to the Appwrite server (version 1.3.3) with a file larger than 5 MB.
  3. Observe that the upload process gets stuck after sending the first part of the file (approximately 5 MB).

๐Ÿ‘ Expected behavior

I expected the Appwrite SDK to successfully upload the entire file larger than 5 MB without any issues.

๐Ÿ‘Ž Actual Behavior

The Appwrite SDK only uploads the first part of the file (approximately 5 MB) and then the upload process gets stuck.

flutter: UploadProgress($id: 64b648843534b29877ad, progress: 80.5257811319271, sizeUploaded: 5242879, chunksTotal: 2, chunksUploaded: 1) flutter: {message: Server Error, code: 500, type: general_unknown, version: 1}

๐ŸŽฒ Appwrite version

Version 1.3.x

๐Ÿ’ป Operating system

MacOS

๐Ÿงฑ Your Environment

  • Appwrite Server Version: 1.3.3
  • Appwrite SDK for Flutter Version: 9.0.1
  • Flutter Version: 3.12.0-15.0.pre.29 (Channel master)
  • Operating System: macOS 13.4.1 (Darwin-x64)
  • Locale: fr-FR

Additional Information

I apologize in advance for any confusion in my explanation due to my limited English proficiency.

I have thoroughly searched through the Appwrite SDK documentation, existing issues on the official repository, and various online resources for several weeks, but haven't found any solution to resolve this issue with larger files.

I can confirm that the Appwrite server (version 1.3.3) is properly configured to handle large files, as I can successfully upload 20 MB files using the server's web interface on my portable device.

I have also tested this functionality on both a real device and a simulator, and the issue persists, indicating that it is not platform-specific.

I appreciate any assistance and guidance in resolving this issue, as it is essential for the proper functioning of my application.

Thank you very much for your help!

๐Ÿ‘€ Have you spent some time to check if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Code of Conduct?

Issues Closed in June 2023

Issue Metrics

Metric Value
Average time to first response 17 days, 8:53:37.860000
Average time to close 67 days, 4:34:16.321429
Number of items that remain open 0
Number of items closed 56
Total number of items created 56
Title URL Time to first response Time to close
๐Ÿ› Bug Report: ui bug - the left-arrow icon in switch does not seems to be in centre appwrite/appwrite#5752 0:00:14 20:09:42
๐Ÿš€ Feature: Custom abuse control/rate limits appwrite/appwrite#5737 18:13:12 18:15:36
AppwriteException: User (role: guests) missing scope (account) ReactJS application appwrite/appwrite#5735 None 0:49:12
๐Ÿ› Bug Report: Inconsitency of Count for Auth appwrite/appwrite#5734 3:16:31 1 day, 7:44:56
๐Ÿ› Bug Report: Accessibility issue on profile dropdown appwrite/appwrite#5724 9:04:51 2 days, 8:56:19
๐Ÿ› Bug Report: NullPointerException when trying to fetch teams list appwrite/sdk-for-kotlin#30 1 day, 12:52:37 13 days, 22:38:09
๐Ÿ› Bug : Appwrite with typescript react app throws error appwrite/appwrite#5706 3 days, 15:16:46 14 days, 6:28:25
๐Ÿ› Bug Report: Modal should be in the center instead of corner for better visibility and UX appwrite/console#463 0:00:25 6 days, 11:14:34
๐Ÿ› Bug Report: Unable to post http request even after adding all the headers appwrite/appwrite#5702 21:20:05 1 day, 12:10:26
๐Ÿ› Bug Report: Delete Modal in Appwrite console Disappears and Needs Positioning Fix appwrite/appwrite#5701 0:01:13 8:45:06
๐Ÿ› Bug Report: Server Error when authenticating appwrite/appwrite#5697 1 day, 3:06:34 1 day, 3:32:58
๐Ÿ› Bug Report: Server Error when trying to create Document on Appwrite Cloud appwrite/appwrite#5691 0:09:24 2 days, 1:27:03
๐Ÿ› Bug Report: 500 Internal Error on Appwrite Cloud appwrite/appwrite#5690 1:06:40 2 days, 1:44:55
๐Ÿ› Bug Report: new empty collections reported as not found by databases.listDocuments() appwrite/appwrite#5687 3 days, 10:41:41 6 days, 22:22:39
๐Ÿ› Bug Report: failing to generate SDKs using example.php appwrite/sdk-generator#666 4 days, 10:27:44 4 days, 17:00:47
๐Ÿš€ Feature: use type hints appwrite/sdk-for-python#61 None 0:00:38
๐Ÿ› Bug Report: type '_Map<String, dynamic>' is not a subtype of type 'List' appwrite/sdk-for-dart#41 1:27:20 1:27:20
500 Internal Error while creating a collection appwrite/appwrite#5673 None 0:00:48
๐Ÿ“š Documentation: appwrite/awesome-appwrite#493 None 0:01:55
๐Ÿ› Bug Report: The redirect to the user sessions page is broken appwrite/appwrite#5663 7 days, 1:20:08 7 days, 17:27:38
๐Ÿ› Bug Report: $permissions returns as object rather than array appwrite/appwrite#5661 2 days, 2:49:49 3 days, 15:02:53
๐Ÿ› Bug Report: Query.select() fails on querying relationships appwrite/appwrite#5657 23 days, 6:22:50 23 days, 6:22:51
๐Ÿš€ Feature: SETTING CUSTOM SESSION EXPIRY TIME FOR USER LOGIN SESSIONS appwrite/appwrite#5652 0:44:39 0:58:37
๐Ÿ› Bug Report: UI broken in the documents page appwrite/appwrite#5646 4 days, 5:35:47 9 days, 21:29:48
๐Ÿ› Bug Report: AppwriteException: Not Found appwrite/appwrite#5644 11 days, 5:34:59 12 days, 19:27:44
๐Ÿ“š Documentation: library code does not contain clear and or concise documentation appwrite/sdk-for-flutter#152 1 day, 19:59:55 19 days, 11:42:07
๐Ÿ› Bug Report: User total is zero (0) in project console after minor version upgrade appwrite/appwrite#5628 2 days, 3:11:18 13 days, 20:52:56
๐Ÿ› Bug Report: can't import certain python built-ins for functions appwrite/appwrite#5626 14 days, 9:44:13 14 days, 10:06:50
๐Ÿ› Bug Report: worker-certificates generate SSL certificate failed appwrite/appwrite#5617 1:18:14 5 days, 12:30:26
๐Ÿš€ Feature: Auth Helpers for SSR appwrite/appwrite#5607 None 3 days, 5:39:26
๐Ÿš€ Feature: List collections appwrite/sdk-for-web#56 14 days, 5:44:57 21 days, 2:29:48
๐Ÿ“š Documentation: Check Session appwrite/sdk-for-android#35 2 days, 8:50:56 8 days, 11:28:53
๐Ÿ› Bug Report: Unable to create flutter-web target platform. appwrite/appwrite#5591 4 days, 3:42:18 15 days, 22:57:13
๐Ÿ› Bug Report: PathNotFoundException: Cannot open file, path = '/etc/lsb-release' appwrite/sdk-for-flutter#151 4 days, 7:27:42 25 days, 23:24:59
๐Ÿ› Bug Report: Resolving dependencies on device_info_plus appwrite/sdk-for-flutter#150 7 days, 23:39:17 25 days, 15:22:45
๐Ÿ› Bug Report: Incompatibility with Google Fonts (Flutter) appwrite/appwrite#5583 16:06:30 11 days, 9:08:20
๐Ÿ“š Documentation: Better Readability of the Python SDK create Database appwrite/appwrite#5582 9:17:17 9 days, 22:49:53
Help: Getting failed Promise response appwrite/appwrite#5569 0:00:28 9 days, 15:48:45
Bug Report: Search for a user by email which have underscore "_" with no results appwrite/appwrite#5546 9 days, 14:10:30 29 days, 1:29:49
๐Ÿ› Bug Report: macOS Flutter version 3.10.0 [!] CocoaPods could not find compatible versions for pod "flutter_web_auth_2": appwrite/sdk-for-flutter#147 1 day, 13:46:14 41 days, 15:40:30
๐Ÿ› Bug Report: query with empty list throws error appwrite/appwrite#5522 0:17:35 21 days, 8:00:51
๐Ÿ› Bug Report: Unknown PDO Type for object appwrite/appwrite#5481 16 days, 13:57:36 43 days, 16:35:31
๐Ÿ› Bug Report: Optional OAuth Setting isn't Optional appwrite/appwrite#5421 1 day, 10:05:19 58 days, 22:41:49
๐Ÿ› Bug Report: Using falsy values for optional parameters appwrite/appwrite#5416 0:12:07 59 days, 18:55:27
๐Ÿ› Bug Report: Creating a user throws an error appwrite/sdk-for-cli#81 37 days, 14:12:54 47 days, 5:27:55
๐Ÿš€ Feature: Adding Bun runtime open-runtimes/open-runtimes#158 2 days, 23:47:47 61 days, 3:53:53
๐Ÿ› Bug Report: Server sdk for node deleteFile api delete storage bucket instead of file. appwrite/appwrite#5310 8:39:13 72 days, 16:40:23
Appwrite Version above 8.2.0 will never allow the flutter App to build, received this error ":app:checkDebugDuplicateClasses" appwrite/sdk-generator#626 3 days, 14:31:32 108 days, 13:47:45
๐Ÿš€ Feature: Re-hash Password on Phone Update appwrite/appwrite#4990 8:20:09 146 days, 21:16:31
๐Ÿ› Bug Report: Error 500 using updateEmail when password is not set cause OAuth2 appwrite/appwrite#4975 3:18:15 149 days, 5:30:36
appwrite functions createExecution prints 40 kb strange output appwrite/sdk-for-cli#64 None 248 days, 3:26:56
๐Ÿ› Bug Report: You've forgotten to add unit tests to the repo appwrite/sdk-for-flutter#90 6 days, 12:50:14 281 days, 9:01:38
๐Ÿ› Bug Report: Database disappeared while deleting documents appwrite/appwrite#3744 238 days, 20:17:09 277 days, 22:43:53
Feature: Adding Scoop support to appwrite appwrite/sdk-for-cli#39 382 days, 5:29:14 382 days, 5:29:17
Why are parameters not strongly typed ? appwrite/sdk-for-dart#13 32 days, 17:02:41 579 days, 18:20:48
Handling arrays returned from API appwrite/sdk-for-cli#4 17 days, 1:06:30 852 days, 0:52:22

Issues Opened in June 2023

Issue Metrics

Metric Value
Average time to first response 4 days, 3:21:36.303371
Average time to close 9 days, 6:02:59.909091
Number of items that remain open 70
Number of items closed 33
Total number of items created 103
Title URL Time to first response Time to close
๐Ÿ› Bug Report: queries with Relationship Attribute appwrite/appwrite#5757 23:24:06 None
๐Ÿš€ Feature: createFileAttribute required appwrite/appwrite#5756 2 days, 21:55:01 None
๐Ÿ“š Documentation: missing setSelfSigned on js client appwrite/sdk-for-web#60 14 days, 9:40:43 None
๐Ÿ› Bug Report: Single links instead of plural one. appwrite/console#470 5:56:36 3 days, 15:18:40
๐Ÿš€ Feature: Add more then one fields and collections at once appwrite/appwrite#5754 1:35:29 None
Dangerous json parse operation appwrite/sdk-for-swift#9 4 days, 16:06:35 None
๐Ÿ› Bug Report: Adding an array-type attribute causes access issue to collection documents on the Appwrite Cloud Web UI appwrite/appwrite#5753 2 days, 1:25:17 None
๐Ÿ› Bug Report: word wrap in column is unreadable appwrite/sdk-for-cli#84 None None
๐Ÿ› Bug Report: ui bug - the left-arrow icon in switch does not seems to be in centre appwrite/appwrite#5752 0:00:14 20:09:42
๐Ÿ› Bug Report: A runtime with the same ID is already being created appwrite/appwrite#5751 7 days, 1:31:58 None
๐Ÿ› Bug Report: Collection not found error appwrite/appwrite#5750 0:03:41 None
๐Ÿ› Bug Report: Deleting a file leads to error message "Invalid fileId" UID must contain at most 36 chars. appwrite/appwrite#5749 1 day, 20:41:28 None
๐Ÿš€ Feature: overload Feature for Storage.CreateFile for using Blob instead of File appwrite/appwrite#5748 None None
๐Ÿ› Bug Report: user unauthorized on update document appwrite/appwrite#5747 3 days, 4:35:02 None
๐Ÿš€ Feature: Please Add Multi Node Support appwrite/appwrite#5746 22:44:30 None
๐Ÿ“š Documentation: Apple App code snippet for step 3 throws Extraneous argument label 'status:' in call in Xcode appwrite/console#467 0:15:03 None
๐Ÿ› Bug Report: user's IP using NextJS appwrite/appwrite#5744 None None
๐Ÿš€ Feature: Support Initializing a Project in an Existing Organization appwrite/sdk-for-cli#83 None None
๐Ÿš€ Feature: Custom Google Auth Screen appwrite/appwrite#5742 3 days, 18:11:34 None
๐Ÿš€ Feature: Allow value for createdAt & updatedAt on create/update Document utopia-php/database#285 0:28:56 None
๐Ÿ› Bug Report: email verification appwrite/appwrite#5741 11:37:39 None
๐Ÿš€ Feature: Unit Tests appwrite/sdk-generator#680 4 days, 13:58:31 None
๐Ÿ“š Documentation: Add inline docs to SDKs appwrite/sdk-generator#679 None None
๐Ÿ› Bug Report: Version 8.0.1 required dart 2.19 which not available as functions runtime. appwrite/sdk-for-dart#44 6 days, 9:14:13 None
๐Ÿ› Bug Report: some confirmation dialogs appear out of screen appwrite/console#466 4 days, 21:36:15 11 days, 0:26:42
๐Ÿš€ Feature: Custom abuse control/rate limits appwrite/appwrite#5737 18:13:12 18:15:36
AppwriteException: User (role: guests) missing scope (account) ReactJS application appwrite/appwrite#5735 None 0:49:12
๐Ÿ› Bug Report: Inconsitency of Count for Auth appwrite/appwrite#5734 3:16:31 1 day, 7:44:56
๐Ÿ“š Documentation: Error when building appwrite using build instructions appwrite/appwrite#5733 0:12:28 None
๐Ÿš€ Feature: Expand "development" mode logs. appwrite/appwrite#5732 10:19:50 None
๐Ÿ› Bug Report: Subscribing Multiple Times with a Single Realtime Instance Results in Null Subscription appwrite/sdk-for-flutter#156 3 days, 1:45:11 None
๐Ÿ› Bug: DLLs are not used as references in .NET Functions open-runtimes/open-runtimes#168 None None
๐Ÿ› Bug Report: seach query throws server error 500 on Cloud appwrite/appwrite#5729 19:27:04 None
๐Ÿ› Bug Report: Accessibility issue on profile dropdown appwrite/appwrite#5724 9:04:51 2 days, 8:56:19
๐Ÿš€ Feature: bulk deleting users / sorting appwrite/appwrite#5722 1 day, 13:04:04 None
๐Ÿš€ Feature: Add confirmation alert when leaving create document page appwrite/appwrite#5721 1 day, 19:27:46 None
๐Ÿ› Bug: Access DB hosted on localhost appwrite/appwrite#5720 7:52:46 None
๐Ÿ› Bug Report: Schedule function with minutes does not work appwrite/appwrite#5719 3 days, 4:02:51 None
๐Ÿ› Bug Report: Duplicate verification users API entry. appwrite/appwrite#5717 2 days, 20:05:00 None
๐Ÿš€ Feature: Customize default function "example data" appwrite/appwrite#5716 13:46:05 None
๐Ÿ“š Documentation: Mistake in code snippets in getting started guide appwrite/sdk-for-python#62 3 days, 17:27:20 None
๐Ÿ› Bug Report: Responsiveness issue on documents page appwrite/appwrite#5713 2:00:05 None
๐Ÿ› Bug Report: Kotlin server SDK does not properly process nullable values when mapping appwrite/sdk-generator#667 5 days, 13:34:03 None
๐Ÿ› Bug Report: NullPointerException when trying to fetch teams list appwrite/sdk-for-kotlin#30 1 day, 12:52:37 13 days, 22:38:09
๐Ÿ› Bug : Appwrite with typescript react app throws error appwrite/appwrite#5706 3 days, 15:16:46 14 days, 6:28:25
๐Ÿ› Bug Report: Upload Progress not being reported appwrite/sdk-for-web#58 15 days, 4:40:29 None
๐Ÿ› Bug Report: Modal should be in the center instead of corner for better visibility and UX appwrite/console#463 0:00:25 6 days, 11:14:34
๐Ÿ› Bug Report: Unable to post http request even after adding all the headers appwrite/appwrite#5702 21:20:05 1 day, 12:10:26
๐Ÿ› Bug Report: Delete Modal in Appwrite console Disappears and Needs Positioning Fix appwrite/appwrite#5701 0:01:13 8:45:06
๐Ÿš€ Feature: Update project details appwrite/builtwith#25 2 days, 8:55:55 None
๐Ÿ› Bug Report: Server Error when authenticating appwrite/appwrite#5697 1 day, 3:06:34 1 day, 3:32:58
๐Ÿ› Bug Report: Portuguese email template is missing a word appwrite/appwrite#5693 0:13:25 None
๐Ÿ› Bug Report: Server Error when trying to create Document on Appwrite Cloud appwrite/appwrite#5691 0:09:24 2 days, 1:27:03
๐Ÿ› Bug Report: 500 Internal Error on Appwrite Cloud appwrite/appwrite#5690 1:06:40 2 days, 1:44:55
๐Ÿš€ Feature: Allow to capture shutdown event to make db integrations possible appwrite/appwrite#5688 0:05:32 None
๐Ÿ› Bug Report: new empty collections reported as not found by databases.listDocuments() appwrite/appwrite#5687 3 days, 10:41:41 6 days, 22:22:39
๐Ÿš€ Feature request : CI - ignore some files in event trigger of tests GHA appwrite/console#462 0:03:16 None
๐Ÿ› Bug Report: Error 'Document with the requested ID already exists' when tries to upload video appwrite/appwrite#5686 5 days, 8:01:14 None
๐Ÿ› Bug Report: failing to generate SDKs using example.php appwrite/sdk-generator#666 4 days, 10:27:44 4 days, 17:00:47
๐Ÿ› Bug Report: Appwrite CLI throws error when using Nuxt 3 appwrite/appwrite#5685 1:38:35 None
๐Ÿ› Bug: seach query throws server error 500 on Cloud appwrite/appwrite#5684 3 days, 4:22:38 None
๐Ÿ› Bug Report: permissions on creating a collection appwrite/appwrite#5682 None None
๐Ÿš€ Feature: use type hints appwrite/sdk-for-python#61 None 0:00:38
๐Ÿš€ Feature: use linting tools (pre-commit) appwrite/sdk-for-python#60 1 day, 0:43:50 None
๐Ÿ› Bug Report: appwrite/appwrite#5680 9 days, 21:47:06 None
๐Ÿš€ Feature: Disable realtime completly appwrite/appwrite#5679 6 days, 4:21:33 None
๐Ÿš€ Feature: Automated Database Schema Import appwrite/appwrite#5678 6 days, 4:47:50 None
๐Ÿ› Bug Report: type '_Map<String, dynamic>' is not a subtype of type 'List' appwrite/sdk-for-dart#41 1:27:20 1:27:20
๐Ÿ› Bug Report: Relationships don't cascade delete properly with 2 relationships appwrite/appwrite#5677 7 days, 15:17:39 None
๐Ÿ“š Documentation: The documentation/method Account.deleteSession() and Account.deleteSessions() are wrong appwrite/sdk-for-flutter#153 2:56:27 None
๐Ÿ› Bug Report: Wrong signature for createMembership server side implementation appwrite/appwrite#5676 6 days, 22:40:45 41 days, 3:11:22
๐Ÿš€ Feature: Omit the requirement of the URL parameter in server createMembership function appwrite/appwrite#5675 6 days, 22:19:07 None
๐Ÿ› Bug Report: Can't edit Array of String appwrite/appwrite#5674 5:23:49 None
500 Internal Error while creating a collection appwrite/appwrite#5673 None 0:00:48
๐Ÿš€ Feature: restrict unsupported characters for project ID. appwrite/appwrite#5670 20:18:42 41 days, 20:41:09
๐Ÿ› Bug Report: Change cursor pointer in checkbox's disabled state appwrite/pink#91 1 day, 14:52:42 None
๐Ÿ“š Documentation: appwrite/awesome-appwrite#493 None 0:01:55
๐Ÿš€ Feature: Aggregate Functions and Select distinct appwrite/appwrite#5667 43 days, 15:48:18 None
๐Ÿ› Bug Report: unexpected behavior when deleting the first prefs of a user from the dashboard appwrite/appwrite#5664 13 days, 16:37:11 None
๐Ÿ› Bug Report: The redirect to the user sessions page is broken appwrite/appwrite#5663 7 days, 1:20:08 7 days, 17:27:38
๐Ÿ› Bug Report: Attributes can be both required and an array appwrite/console#461 23:26:53 None
๐Ÿš€ Feature: Optional DB foreign keys to avoid orphans appwrite/appwrite#5662 0:51:35 None
๐Ÿ› Bug Report: $permissions returns as object rather than array appwrite/appwrite#5661 2 days, 2:49:49 3 days, 15:02:53
๐Ÿš€ Feature: CLI Login when you are authenticated with Github appwrite/appwrite#5659 7 days, 2:35:56 None
๐Ÿ› Bug Report: Query.select() fails on querying relationships appwrite/appwrite#5657 23 days, 6:22:50 23 days, 6:22:51
๐Ÿ› Bug Report: Partially uploaded file shown in console. appwrite/appwrite#5654 12:32:36 43 days, 15:38:12
๐Ÿ› Bug Report: No app check appwrite/appwrite#5653 11 days, 10:40:48 None
๐Ÿš€ Feature: SETTING CUSTOM SESSION EXPIRY TIME FOR USER LOGIN SESSIONS appwrite/appwrite#5652 0:44:39 0:58:37
๐Ÿ“š Documentation: Add the name of the inbuilt variables that we get along with a request appwrite/docs#378 16 days, 16:21:18 None
๐Ÿ› Bug Report: Query not valid: Query type does not match expected: double on python SDK appwrite/appwrite#5650 0:09:11 None
๐Ÿ› Bug Report: UI broken in the documents page appwrite/appwrite#5646 4 days, 5:35:47 9 days, 21:29:48
๐Ÿ› Bug Report: Session Doesn't Persist on Flutter Web appwrite/appwrite#5645 12 days, 7:13:06 None
๐Ÿ› Bug Report: AppwriteException: Not Found appwrite/appwrite#5644 11 days, 5:34:59 12 days, 19:27:44
๐Ÿ› Bug Report: ali-oss Doesn't Work in Node Runtime appwrite/appwrite#5642 12 days, 10:37:12 None
๐Ÿš€ Feature: Add option to customise Phone Auth OTP appwrite/appwrite#5641 5 days, 23:17:24 None
๐Ÿ“š Documentation: library code does not contain clear and or concise documentation appwrite/sdk-for-flutter#152 1 day, 19:59:55 19 days, 11:42:07
๐Ÿš€ Feature: Replace Websocket by Server Sent Events appwrite/appwrite#5631 None None
๐Ÿ› Bug Report: Appwrite main container freezes when executing cloud-functions. appwrite/appwrite#5629 3 days, 16:11:42 None
๐Ÿ› Bug Report: User total is zero (0) in project console after minor version upgrade appwrite/appwrite#5628 2 days, 3:11:18 13 days, 20:52:56
๐Ÿš€ Feature: Ability to seperate ids from get, update, create, delete document methods [Flutter] appwrite/appwrite#5627 None None
๐Ÿ› Bug Report: can't import certain python built-ins for functions appwrite/appwrite#5626 14 days, 9:44:13 14 days, 10:06:50
๐Ÿš€ Feature: Suggest adding Active User metrics appwrite/appwrite#5625 None None
๐Ÿ› Bug Report: After upgrading from v1.3.4 to v1.3.5, on refresh, I get 404 not found on the console. appwrite/appwrite#5623 20:33:02 None

Discussions Closed in July 2023

Issue Metrics

Metric Value
Average time to first response 5 days, 7:13:24.333333
Average time to close 170 days, 19:35:46.666667
Average time to answer 8 days, 19:26:51
Number of items that remain open 0
Number of items closed 3
Total number of items created 3
Title URL Time to first response Time to close Time to answer
Issues with setting up an account in local instance of appwrite appwrite/appwrite#5823 5 days, 10:54:47 11 days, 0:41:18 8 days, 19:26:51
Limit list document appwrite/appwrite#5812 0:56:09 8 days, 4:47:55 None
Attribute Update after creation appwrite/appwrite#2910 10 days, 9:49:17 493 days, 5:18:07 None
This report was generated with the Issue Metrics Action

Discussions Closed in June 2023

Issue Metrics

Metric Value
Average time to first response 46 days, 21:04:57.833333
Average time to close 261 days, 23:52:18.166667
Average time to answer 2 days, 11:16:25
Number of items that remain open 0
Number of items closed 6
Total number of items created 6
Title URL Time to first response Time to close Time to answer
Improvements to Administering Collections appwrite/appwrite#2720 10:57:38 506 days, 9:55:12 None
Time-Based One Time Password 2fa support. appwrite/appwrite#5681 3 days, 4:47:09 6 days, 20:46:46 None
Default value for attribute is not being set on the appwrite console appwrite/appwrite#5613 12:47:33 2 days, 11:26:02 2 days, 5:54:38
subscribe functionality in python sdk? appwrite/appwrite#5596 2 days, 6:49:53 2 days, 18:19:08 2 days, 16:38:12
Ability to Disable any of Appwrite's Service appwrite/appwrite#2475 0:02:10 540 days, 1:20:54 None
Events/Function trigger for realtime subscribe/unsubscribe appwrite/appwrite#2587 274 days, 19:05:24 513 days, 9:25:47 None

Issues Opened in June 2023

Issue Metrics

Metric Value
Average time to first response 4 days, 3:21:36.303371
Average time to close 9 days, 6:02:59.909091
Number of items that remain open 70
Number of items closed 33
Total number of items created 103
Title URL Time to first response Time to close
๐Ÿ› Bug Report: queries with Relationship Attribute appwrite/appwrite#5757 23:24:06 None
๐Ÿš€ Feature: createFileAttribute required appwrite/appwrite#5756 2 days, 21:55:01 None
๐Ÿ“š Documentation: missing setSelfSigned on js client appwrite/sdk-for-web#60 14 days, 9:40:43 None
๐Ÿ› Bug Report: Single links instead of plural one. appwrite/console#470 5:56:36 3 days, 15:18:40
๐Ÿš€ Feature: Add more then one fields and collections at once appwrite/appwrite#5754 1:35:29 None
Dangerous json parse operation appwrite/sdk-for-swift#9 4 days, 16:06:35 None
๐Ÿ› Bug Report: Adding an array-type attribute causes access issue to collection documents on the Appwrite Cloud Web UI appwrite/appwrite#5753 2 days, 1:25:17 None
๐Ÿ› Bug Report: word wrap in column is unreadable appwrite/sdk-for-cli#84 None None
๐Ÿ› Bug Report: ui bug - the left-arrow icon in switch does not seems to be in centre appwrite/appwrite#5752 0:00:14 20:09:42
๐Ÿ› Bug Report: A runtime with the same ID is already being created appwrite/appwrite#5751 7 days, 1:31:58 None
๐Ÿ› Bug Report: Collection not found error appwrite/appwrite#5750 0:03:41 None
๐Ÿ› Bug Report: Deleting a file leads to error message "Invalid fileId" UID must contain at most 36 chars. appwrite/appwrite#5749 1 day, 20:41:28 None
๐Ÿš€ Feature: overload Feature for Storage.CreateFile for using Blob instead of File appwrite/appwrite#5748 None None
๐Ÿ› Bug Report: user unauthorized on update document appwrite/appwrite#5747 3 days, 4:35:02 None
๐Ÿš€ Feature: Please Add Multi Node Support appwrite/appwrite#5746 22:44:30 None
๐Ÿ“š Documentation: Apple App code snippet for step 3 throws Extraneous argument label 'status:' in call in Xcode appwrite/console#467 0:15:03 None
๐Ÿ› Bug Report: user's IP using NextJS appwrite/appwrite#5744 None None
๐Ÿš€ Feature: Support Initializing a Project in an Existing Organization appwrite/sdk-for-cli#83 None None
๐Ÿš€ Feature: Custom Google Auth Screen appwrite/appwrite#5742 3 days, 18:11:34 None
๐Ÿš€ Feature: Allow value for createdAt & updatedAt on create/update Document utopia-php/database#285 0:28:56 None
๐Ÿ› Bug Report: email verification appwrite/appwrite#5741 11:37:39 None
๐Ÿš€ Feature: Unit Tests appwrite/sdk-generator#680 4 days, 13:58:31 None
๐Ÿ“š Documentation: Add inline docs to SDKs appwrite/sdk-generator#679 None None
๐Ÿ› Bug Report: Version 8.0.1 required dart 2.19 which not available as functions runtime. appwrite/sdk-for-dart#44 6 days, 9:14:13 None
๐Ÿ› Bug Report: some confirmation dialogs appear out of screen appwrite/console#466 4 days, 21:36:15 11 days, 0:26:42
๐Ÿš€ Feature: Custom abuse control/rate limits appwrite/appwrite#5737 18:13:12 18:15:36
AppwriteException: User (role: guests) missing scope (account) ReactJS application appwrite/appwrite#5735 None 0:49:12
๐Ÿ› Bug Report: Inconsitency of Count for Auth appwrite/appwrite#5734 3:16:31 1 day, 7:44:56
๐Ÿ“š Documentation: Error when building appwrite using build instructions appwrite/appwrite#5733 0:12:28 None
๐Ÿš€ Feature: Expand "development" mode logs. appwrite/appwrite#5732 10:19:50 None
๐Ÿ› Bug Report: Subscribing Multiple Times with a Single Realtime Instance Results in Null Subscription appwrite/sdk-for-flutter#156 3 days, 1:45:11 None
๐Ÿ› Bug: DLLs are not used as references in .NET Functions open-runtimes/open-runtimes#168 None None
๐Ÿ› Bug Report: seach query throws server error 500 on Cloud appwrite/appwrite#5729 19:27:04 None
๐Ÿ› Bug Report: Accessibility issue on profile dropdown appwrite/appwrite#5724 9:04:51 2 days, 8:56:19
๐Ÿš€ Feature: bulk deleting users / sorting appwrite/appwrite#5722 1 day, 13:04:04 None
๐Ÿš€ Feature: Add confirmation alert when leaving create document page appwrite/appwrite#5721 1 day, 19:27:46 None
๐Ÿ› Bug: Access DB hosted on localhost appwrite/appwrite#5720 7:52:46 None
๐Ÿ› Bug Report: Schedule function with minutes does not work appwrite/appwrite#5719 3 days, 4:02:51 None
๐Ÿ› Bug Report: Duplicate verification users API entry. appwrite/appwrite#5717 2 days, 20:05:00 None
๐Ÿš€ Feature: Customize default function "example data" appwrite/appwrite#5716 13:46:05 None
๐Ÿ“š Documentation: Mistake in code snippets in getting started guide appwrite/sdk-for-python#62 3 days, 17:27:20 None
๐Ÿ› Bug Report: Responsiveness issue on documents page appwrite/appwrite#5713 2:00:05 None
๐Ÿ› Bug Report: Kotlin server SDK does not properly process nullable values when mapping appwrite/sdk-generator#667 5 days, 13:34:03 None
๐Ÿ› Bug Report: NullPointerException when trying to fetch teams list appwrite/sdk-for-kotlin#30 1 day, 12:52:37 13 days, 22:38:09
๐Ÿ› Bug : Appwrite with typescript react app throws error appwrite/appwrite#5706 3 days, 15:16:46 14 days, 6:28:25
๐Ÿ› Bug Report: Upload Progress not being reported appwrite/sdk-for-web#58 15 days, 4:40:29 None
๐Ÿ› Bug Report: Modal should be in the center instead of corner for better visibility and UX appwrite/console#463 0:00:25 6 days, 11:14:34
๐Ÿ› Bug Report: Unable to post http request even after adding all the headers appwrite/appwrite#5702 21:20:05 1 day, 12:10:26
๐Ÿ› Bug Report: Delete Modal in Appwrite console Disappears and Needs Positioning Fix appwrite/appwrite#5701 0:01:13 8:45:06
๐Ÿš€ Feature: Update project details appwrite/builtwith#25 2 days, 8:55:55 None
๐Ÿ› Bug Report: Server Error when authenticating appwrite/appwrite#5697 1 day, 3:06:34 1 day, 3:32:58
๐Ÿ› Bug Report: Portuguese email template is missing a word appwrite/appwrite#5693 0:13:25 None
๐Ÿ› Bug Report: Server Error when trying to create Document on Appwrite Cloud appwrite/appwrite#5691 0:09:24 2 days, 1:27:03
๐Ÿ› Bug Report: 500 Internal Error on Appwrite Cloud appwrite/appwrite#5690 1:06:40 2 days, 1:44:55
๐Ÿš€ Feature: Allow to capture shutdown event to make db integrations possible appwrite/appwrite#5688 0:05:32 None
๐Ÿ› Bug Report: new empty collections reported as not found by databases.listDocuments() appwrite/appwrite#5687 3 days, 10:41:41 6 days, 22:22:39
๐Ÿš€ Feature request : CI - ignore some files in event trigger of tests GHA appwrite/console#462 0:03:16 None
๐Ÿ› Bug Report: Error 'Document with the requested ID already exists' when tries to upload video appwrite/appwrite#5686 5 days, 8:01:14 None
๐Ÿ› Bug Report: failing to generate SDKs using example.php appwrite/sdk-generator#666 4 days, 10:27:44 4 days, 17:00:47
๐Ÿ› Bug Report: Appwrite CLI throws error when using Nuxt 3 appwrite/appwrite#5685 1:38:35 None
๐Ÿ› Bug: seach query throws server error 500 on Cloud appwrite/appwrite#5684 3 days, 4:22:38 None
๐Ÿ› Bug Report: permissions on creating a collection appwrite/appwrite#5682 None None
๐Ÿš€ Feature: use type hints appwrite/sdk-for-python#61 None 0:00:38
๐Ÿš€ Feature: use linting tools (pre-commit) appwrite/sdk-for-python#60 1 day, 0:43:50 None
๐Ÿ› Bug Report: appwrite/appwrite#5680 9 days, 21:47:06 None
๐Ÿš€ Feature: Disable realtime completly appwrite/appwrite#5679 6 days, 4:21:33 None
๐Ÿš€ Feature: Automated Database Schema Import appwrite/appwrite#5678 6 days, 4:47:50 None
๐Ÿ› Bug Report: type '_Map<String, dynamic>' is not a subtype of type 'List' appwrite/sdk-for-dart#41 1:27:20 1:27:20
๐Ÿ› Bug Report: Relationships don't cascade delete properly with 2 relationships appwrite/appwrite#5677 7 days, 15:17:39 None
๐Ÿ“š Documentation: The documentation/method Account.deleteSession() and Account.deleteSessions() are wrong appwrite/sdk-for-flutter#153 2:56:27 None
๐Ÿ› Bug Report: Wrong signature for createMembership server side implementation appwrite/appwrite#5676 6 days, 22:40:45 41 days, 3:11:22
๐Ÿš€ Feature: Omit the requirement of the URL parameter in server createMembership function appwrite/appwrite#5675 6 days, 22:19:07 None
๐Ÿ› Bug Report: Can't edit Array of String appwrite/appwrite#5674 5:23:49 None
500 Internal Error while creating a collection appwrite/appwrite#5673 None 0:00:48
๐Ÿš€ Feature: restrict unsupported characters for project ID. appwrite/appwrite#5670 20:18:42 41 days, 20:41:09
๐Ÿ› Bug Report: Change cursor pointer in checkbox's disabled state appwrite/pink#91 1 day, 14:52:42 None
๐Ÿ“š Documentation: appwrite/awesome-appwrite#493 None 0:01:55
๐Ÿš€ Feature: Aggregate Functions and Select distinct appwrite/appwrite#5667 43 days, 15:48:18 None
๐Ÿ› Bug Report: unexpected behavior when deleting the first prefs of a user from the dashboard appwrite/appwrite#5664 13 days, 16:37:11 None
๐Ÿ› Bug Report: The redirect to the user sessions page is broken appwrite/appwrite#5663 7 days, 1:20:08 7 days, 17:27:38
๐Ÿ› Bug Report: Attributes can be both required and an array appwrite/console#461 23:26:53 None
๐Ÿš€ Feature: Optional DB foreign keys to avoid orphans appwrite/appwrite#5662 0:51:35 None
๐Ÿ› Bug Report: $permissions returns as object rather than array appwrite/appwrite#5661 2 days, 2:49:49 3 days, 15:02:53
๐Ÿš€ Feature: CLI Login when you are authenticated with Github appwrite/appwrite#5659 7 days, 2:35:56 None
๐Ÿ› Bug Report: Query.select() fails on querying relationships appwrite/appwrite#5657 23 days, 6:22:50 23 days, 6:22:51
๐Ÿ› Bug Report: Partially uploaded file shown in console. appwrite/appwrite#5654 12:32:36 43 days, 15:38:12
๐Ÿ› Bug Report: No app check appwrite/appwrite#5653 11 days, 10:40:48 None
๐Ÿš€ Feature: SETTING CUSTOM SESSION EXPIRY TIME FOR USER LOGIN SESSIONS appwrite/appwrite#5652 0:44:39 0:58:37
๐Ÿ“š Documentation: Add the name of the inbuilt variables that we get along with a request appwrite/docs#378 16 days, 16:21:18 None
๐Ÿ› Bug Report: Query not valid: Query type does not match expected: double on python SDK appwrite/appwrite#5650 0:09:11 None
๐Ÿ› Bug Report: UI broken in the documents page appwrite/appwrite#5646 4 days, 5:35:47 9 days, 21:29:48
๐Ÿ› Bug Report: Session Doesn't Persist on Flutter Web appwrite/appwrite#5645 12 days, 7:13:06 None
๐Ÿ› Bug Report: AppwriteException: Not Found appwrite/appwrite#5644 11 days, 5:34:59 12 days, 19:27:44
๐Ÿ› Bug Report: ali-oss Doesn't Work in Node Runtime appwrite/appwrite#5642 12 days, 10:37:12 None
๐Ÿš€ Feature: Add option to customise Phone Auth OTP appwrite/appwrite#5641 5 days, 23:17:24 None
๐Ÿ“š Documentation: library code does not contain clear and or concise documentation appwrite/sdk-for-flutter#152 1 day, 19:59:55 19 days, 11:42:07
๐Ÿš€ Feature: Replace Websocket by Server Sent Events appwrite/appwrite#5631 None None
๐Ÿ› Bug Report: Appwrite main container freezes when executing cloud-functions. appwrite/appwrite#5629 3 days, 16:11:42 None
๐Ÿ› Bug Report: User total is zero (0) in project console after minor version upgrade appwrite/appwrite#5628 2 days, 3:11:18 13 days, 20:52:56
๐Ÿš€ Feature: Ability to seperate ids from get, update, create, delete document methods [Flutter] appwrite/appwrite#5627 None None
๐Ÿ› Bug Report: can't import certain python built-ins for functions appwrite/appwrite#5626 14 days, 9:44:13 14 days, 10:06:50
๐Ÿš€ Feature: Suggest adding Active User metrics appwrite/appwrite#5625 None None
๐Ÿ› Bug Report: After upgrading from v1.3.4 to v1.3.5, on refresh, I get 404 not found on the console. appwrite/appwrite#5623 20:33:02 None

Issues Closed in June 2023

Issue Metrics

Metric Value
Average time to first response 17 days, 8:53:37.860000
Average time to close 67 days, 4:34:16.321429
Number of items that remain open 0
Number of items closed 56
Total number of items created 56
Title URL Time to first response Time to close
๐Ÿ› Bug Report: ui bug - the left-arrow icon in switch does not seems to be in centre appwrite/appwrite#5752 0:00:14 20:09:42
๐Ÿš€ Feature: Custom abuse control/rate limits appwrite/appwrite#5737 18:13:12 18:15:36
AppwriteException: User (role: guests) missing scope (account) ReactJS application appwrite/appwrite#5735 None 0:49:12
๐Ÿ› Bug Report: Inconsitency of Count for Auth appwrite/appwrite#5734 3:16:31 1 day, 7:44:56
๐Ÿ› Bug Report: Accessibility issue on profile dropdown appwrite/appwrite#5724 9:04:51 2 days, 8:56:19
๐Ÿ› Bug Report: NullPointerException when trying to fetch teams list appwrite/sdk-for-kotlin#30 1 day, 12:52:37 13 days, 22:38:09
๐Ÿ› Bug : Appwrite with typescript react app throws error appwrite/appwrite#5706 3 days, 15:16:46 14 days, 6:28:25
๐Ÿ› Bug Report: Modal should be in the center instead of corner for better visibility and UX appwrite/console#463 0:00:25 6 days, 11:14:34
๐Ÿ› Bug Report: Unable to post http request even after adding all the headers appwrite/appwrite#5702 21:20:05 1 day, 12:10:26
๐Ÿ› Bug Report: Delete Modal in Appwrite console Disappears and Needs Positioning Fix appwrite/appwrite#5701 0:01:13 8:45:06
๐Ÿ› Bug Report: Server Error when authenticating appwrite/appwrite#5697 1 day, 3:06:34 1 day, 3:32:58
๐Ÿ› Bug Report: Server Error when trying to create Document on Appwrite Cloud appwrite/appwrite#5691 0:09:24 2 days, 1:27:03
๐Ÿ› Bug Report: 500 Internal Error on Appwrite Cloud appwrite/appwrite#5690 1:06:40 2 days, 1:44:55
๐Ÿ› Bug Report: new empty collections reported as not found by databases.listDocuments() appwrite/appwrite#5687 3 days, 10:41:41 6 days, 22:22:39
๐Ÿ› Bug Report: failing to generate SDKs using example.php appwrite/sdk-generator#666 4 days, 10:27:44 4 days, 17:00:47
๐Ÿš€ Feature: use type hints appwrite/sdk-for-python#61 None 0:00:38
๐Ÿ› Bug Report: type '_Map<String, dynamic>' is not a subtype of type 'List' appwrite/sdk-for-dart#41 1:27:20 1:27:20
500 Internal Error while creating a collection appwrite/appwrite#5673 None 0:00:48
๐Ÿ“š Documentation: appwrite/awesome-appwrite#493 None 0:01:55
๐Ÿ› Bug Report: The redirect to the user sessions page is broken appwrite/appwrite#5663 7 days, 1:20:08 7 days, 17:27:38
๐Ÿ› Bug Report: $permissions returns as object rather than array appwrite/appwrite#5661 2 days, 2:49:49 3 days, 15:02:53
๐Ÿ› Bug Report: Query.select() fails on querying relationships appwrite/appwrite#5657 23 days, 6:22:50 23 days, 6:22:51
๐Ÿš€ Feature: SETTING CUSTOM SESSION EXPIRY TIME FOR USER LOGIN SESSIONS appwrite/appwrite#5652 0:44:39 0:58:37
๐Ÿ› Bug Report: UI broken in the documents page appwrite/appwrite#5646 4 days, 5:35:47 9 days, 21:29:48
๐Ÿ› Bug Report: AppwriteException: Not Found appwrite/appwrite#5644 11 days, 5:34:59 12 days, 19:27:44
๐Ÿ“š Documentation: library code does not contain clear and or concise documentation appwrite/sdk-for-flutter#152 1 day, 19:59:55 19 days, 11:42:07
๐Ÿ› Bug Report: User total is zero (0) in project console after minor version upgrade appwrite/appwrite#5628 2 days, 3:11:18 13 days, 20:52:56
๐Ÿ› Bug Report: can't import certain python built-ins for functions appwrite/appwrite#5626 14 days, 9:44:13 14 days, 10:06:50
๐Ÿ› Bug Report: worker-certificates generate SSL certificate failed appwrite/appwrite#5617 1:18:14 5 days, 12:30:26
๐Ÿš€ Feature: Auth Helpers for SSR appwrite/appwrite#5607 None 3 days, 5:39:26
๐Ÿš€ Feature: List collections appwrite/sdk-for-web#56 14 days, 5:44:57 21 days, 2:29:48
๐Ÿ“š Documentation: Check Session appwrite/sdk-for-android#35 2 days, 8:50:56 8 days, 11:28:53
๐Ÿ› Bug Report: Unable to create flutter-web target platform. appwrite/appwrite#5591 4 days, 3:42:18 15 days, 22:57:13
๐Ÿ› Bug Report: PathNotFoundException: Cannot open file, path = '/etc/lsb-release' appwrite/sdk-for-flutter#151 4 days, 7:27:42 25 days, 23:24:59
๐Ÿ› Bug Report: Resolving dependencies on device_info_plus appwrite/sdk-for-flutter#150 7 days, 23:39:17 25 days, 15:22:45
๐Ÿ› Bug Report: Incompatibility with Google Fonts (Flutter) appwrite/appwrite#5583 16:06:30 11 days, 9:08:20
๐Ÿ“š Documentation: Better Readability of the Python SDK create Database appwrite/appwrite#5582 9:17:17 9 days, 22:49:53
Help: Getting failed Promise response appwrite/appwrite#5569 0:00:28 9 days, 15:48:45
Bug Report: Search for a user by email which have underscore "_" with no results appwrite/appwrite#5546 9 days, 14:10:30 29 days, 1:29:49
๐Ÿ› Bug Report: macOS Flutter version 3.10.0 [!] CocoaPods could not find compatible versions for pod "flutter_web_auth_2": appwrite/sdk-for-flutter#147 1 day, 13:46:14 41 days, 15:40:30
๐Ÿ› Bug Report: query with empty list throws error appwrite/appwrite#5522 0:17:35 21 days, 8:00:51
๐Ÿ› Bug Report: Unknown PDO Type for object appwrite/appwrite#5481 16 days, 13:57:36 43 days, 16:35:31
๐Ÿ› Bug Report: Optional OAuth Setting isn't Optional appwrite/appwrite#5421 1 day, 10:05:19 58 days, 22:41:49
๐Ÿ› Bug Report: Using falsy values for optional parameters appwrite/appwrite#5416 0:12:07 59 days, 18:55:27
๐Ÿ› Bug Report: Creating a user throws an error appwrite/sdk-for-cli#81 37 days, 14:12:54 47 days, 5:27:55
๐Ÿš€ Feature: Adding Bun runtime open-runtimes/open-runtimes#158 2 days, 23:47:47 61 days, 3:53:53
๐Ÿ› Bug Report: Server sdk for node deleteFile api delete storage bucket instead of file. appwrite/appwrite#5310 8:39:13 72 days, 16:40:23
Appwrite Version above 8.2.0 will never allow the flutter App to build, received this error ":app:checkDebugDuplicateClasses" appwrite/sdk-generator#626 3 days, 14:31:32 108 days, 13:47:45
๐Ÿš€ Feature: Re-hash Password on Phone Update appwrite/appwrite#4990 8:20:09 146 days, 21:16:31
๐Ÿ› Bug Report: Error 500 using updateEmail when password is not set cause OAuth2 appwrite/appwrite#4975 3:18:15 149 days, 5:30:36
appwrite functions createExecution prints 40 kb strange output appwrite/sdk-for-cli#64 None 248 days, 3:26:56
๐Ÿ› Bug Report: You've forgotten to add unit tests to the repo appwrite/sdk-for-flutter#90 6 days, 12:50:14 281 days, 9:01:38
๐Ÿ› Bug Report: Database disappeared while deleting documents appwrite/appwrite#3744 238 days, 20:17:09 277 days, 22:43:53
Feature: Adding Scoop support to appwrite appwrite/sdk-for-cli#39 382 days, 5:29:14 382 days, 5:29:17
Why are parameters not strongly typed ? appwrite/sdk-for-dart#13 32 days, 17:02:41 579 days, 18:20:48
Handling arrays returned from API appwrite/sdk-for-cli#4 17 days, 1:06:30 852 days, 0:52:22

Issues Opened in June 2023

Issue Metrics

Metric Value
Average time to first response 4 days, 3:21:36.303371
Average time to close 9 days, 6:02:59.909091
Number of items that remain open 70
Number of items closed 33
Total number of items created 103
Title URL Time to first response Time to close
๐Ÿ› Bug Report: queries with Relationship Attribute appwrite/appwrite#5757 23:24:06 None
๐Ÿš€ Feature: createFileAttribute required appwrite/appwrite#5756 2 days, 21:55:01 None
๐Ÿ“š Documentation: missing setSelfSigned on js client appwrite/sdk-for-web#60 14 days, 9:40:43 None
๐Ÿ› Bug Report: Single links instead of plural one. appwrite/console#470 5:56:36 3 days, 15:18:40
๐Ÿš€ Feature: Add more then one fields and collections at once appwrite/appwrite#5754 1:35:29 None
Dangerous json parse operation appwrite/sdk-for-swift#9 4 days, 16:06:35 None
๐Ÿ› Bug Report: Adding an array-type attribute causes access issue to collection documents on the Appwrite Cloud Web UI appwrite/appwrite#5753 2 days, 1:25:17 None
๐Ÿ› Bug Report: word wrap in column is unreadable appwrite/sdk-for-cli#84 None None
๐Ÿ› Bug Report: ui bug - the left-arrow icon in switch does not seems to be in centre appwrite/appwrite#5752 0:00:14 20:09:42
๐Ÿ› Bug Report: A runtime with the same ID is already being created appwrite/appwrite#5751 7 days, 1:31:58 None
๐Ÿ› Bug Report: Collection not found error appwrite/appwrite#5750 0:03:41 None
๐Ÿ› Bug Report: Deleting a file leads to error message "Invalid fileId" UID must contain at most 36 chars. appwrite/appwrite#5749 1 day, 20:41:28 None
๐Ÿš€ Feature: overload Feature for Storage.CreateFile for using Blob instead of File appwrite/appwrite#5748 None None
๐Ÿ› Bug Report: user unauthorized on update document appwrite/appwrite#5747 3 days, 4:35:02 None
๐Ÿš€ Feature: Please Add Multi Node Support appwrite/appwrite#5746 22:44:30 None
๐Ÿ“š Documentation: Apple App code snippet for step 3 throws Extraneous argument label 'status:' in call in Xcode appwrite/console#467 0:15:03 None
๐Ÿ› Bug Report: user's IP using NextJS appwrite/appwrite#5744 None None
๐Ÿš€ Feature: Support Initializing a Project in an Existing Organization appwrite/sdk-for-cli#83 None None
๐Ÿš€ Feature: Custom Google Auth Screen appwrite/appwrite#5742 3 days, 18:11:34 None
๐Ÿš€ Feature: Allow value for createdAt & updatedAt on create/update Document utopia-php/database#285 0:28:56 None
๐Ÿ› Bug Report: email verification appwrite/appwrite#5741 11:37:39 None
๐Ÿš€ Feature: Unit Tests appwrite/sdk-generator#680 4 days, 13:58:31 None
๐Ÿ“š Documentation: Add inline docs to SDKs appwrite/sdk-generator#679 None None
๐Ÿ› Bug Report: Version 8.0.1 required dart 2.19 which not available as functions runtime. appwrite/sdk-for-dart#44 6 days, 9:14:13 None
๐Ÿ› Bug Report: some confirmation dialogs appear out of screen appwrite/console#466 4 days, 21:36:15 11 days, 0:26:42
๐Ÿš€ Feature: Custom abuse control/rate limits appwrite/appwrite#5737 18:13:12 18:15:36
AppwriteException: User (role: guests) missing scope (account) ReactJS application appwrite/appwrite#5735 None 0:49:12
๐Ÿ› Bug Report: Inconsitency of Count for Auth appwrite/appwrite#5734 3:16:31 1 day, 7:44:56
๐Ÿ“š Documentation: Error when building appwrite using build instructions appwrite/appwrite#5733 0:12:28 None
๐Ÿš€ Feature: Expand "development" mode logs. appwrite/appwrite#5732 10:19:50 None
๐Ÿ› Bug Report: Subscribing Multiple Times with a Single Realtime Instance Results in Null Subscription appwrite/sdk-for-flutter#156 3 days, 1:45:11 None
๐Ÿ› Bug: DLLs are not used as references in .NET Functions open-runtimes/open-runtimes#168 None None
๐Ÿ› Bug Report: seach query throws server error 500 on Cloud appwrite/appwrite#5729 19:27:04 None
๐Ÿ› Bug Report: Accessibility issue on profile dropdown appwrite/appwrite#5724 9:04:51 2 days, 8:56:19
๐Ÿš€ Feature: bulk deleting users / sorting appwrite/appwrite#5722 1 day, 13:04:04 None
๐Ÿš€ Feature: Add confirmation alert when leaving create document page appwrite/appwrite#5721 1 day, 19:27:46 None
๐Ÿ› Bug: Access DB hosted on localhost appwrite/appwrite#5720 7:52:46 None
๐Ÿ› Bug Report: Schedule function with minutes does not work appwrite/appwrite#5719 3 days, 4:02:51 None
๐Ÿ› Bug Report: Duplicate verification users API entry. appwrite/appwrite#5717 2 days, 20:05:00 None
๐Ÿš€ Feature: Customize default function "example data" appwrite/appwrite#5716 13:46:05 None
๐Ÿ“š Documentation: Mistake in code snippets in getting started guide appwrite/sdk-for-python#62 3 days, 17:27:20 None
๐Ÿ› Bug Report: Responsiveness issue on documents page appwrite/appwrite#5713 2:00:05 None
๐Ÿ› Bug Report: Kotlin server SDK does not properly process nullable values when mapping appwrite/sdk-generator#667 5 days, 13:34:03 None
๐Ÿ› Bug Report: NullPointerException when trying to fetch teams list appwrite/sdk-for-kotlin#30 1 day, 12:52:37 13 days, 22:38:09
๐Ÿ› Bug : Appwrite with typescript react app throws error appwrite/appwrite#5706 3 days, 15:16:46 14 days, 6:28:25
๐Ÿ› Bug Report: Upload Progress not being reported appwrite/sdk-for-web#58 15 days, 4:40:29 None
๐Ÿ› Bug Report: Modal should be in the center instead of corner for better visibility and UX appwrite/console#463 0:00:25 6 days, 11:14:34
๐Ÿ› Bug Report: Unable to post http request even after adding all the headers appwrite/appwrite#5702 21:20:05 1 day, 12:10:26
๐Ÿ› Bug Report: Delete Modal in Appwrite console Disappears and Needs Positioning Fix appwrite/appwrite#5701 0:01:13 8:45:06
๐Ÿš€ Feature: Update project details appwrite/builtwith#25 2 days, 8:55:55 None
๐Ÿ› Bug Report: Server Error when authenticating appwrite/appwrite#5697 1 day, 3:06:34 1 day, 3:32:58
๐Ÿ› Bug Report: Portuguese email template is missing a word appwrite/appwrite#5693 0:13:25 None
๐Ÿ› Bug Report: Server Error when trying to create Document on Appwrite Cloud appwrite/appwrite#5691 0:09:24 2 days, 1:27:03
๐Ÿ› Bug Report: 500 Internal Error on Appwrite Cloud appwrite/appwrite#5690 1:06:40 2 days, 1:44:55
๐Ÿš€ Feature: Allow to capture shutdown event to make db integrations possible appwrite/appwrite#5688 0:05:32 None
๐Ÿ› Bug Report: new empty collections reported as not found by databases.listDocuments() appwrite/appwrite#5687 3 days, 10:41:41 6 days, 22:22:39
๐Ÿš€ Feature request : CI - ignore some files in event trigger of tests GHA appwrite/console#462 0:03:16 None
๐Ÿ› Bug Report: Error 'Document with the requested ID already exists' when tries to upload video appwrite/appwrite#5686 5 days, 8:01:14 None
๐Ÿ› Bug Report: failing to generate SDKs using example.php appwrite/sdk-generator#666 4 days, 10:27:44 4 days, 17:00:47
๐Ÿ› Bug Report: Appwrite CLI throws error when using Nuxt 3 appwrite/appwrite#5685 1:38:35 None
๐Ÿ› Bug: seach query throws server error 500 on Cloud appwrite/appwrite#5684 3 days, 4:22:38 None
๐Ÿ› Bug Report: permissions on creating a collection appwrite/appwrite#5682 None None
๐Ÿš€ Feature: use type hints appwrite/sdk-for-python#61 None 0:00:38
๐Ÿš€ Feature: use linting tools (pre-commit) appwrite/sdk-for-python#60 1 day, 0:43:50 None
๐Ÿ› Bug Report: appwrite/appwrite#5680 9 days, 21:47:06 None
๐Ÿš€ Feature: Disable realtime completly appwrite/appwrite#5679 6 days, 4:21:33 None
๐Ÿš€ Feature: Automated Database Schema Import appwrite/appwrite#5678 6 days, 4:47:50 None
๐Ÿ› Bug Report: type '_Map<String, dynamic>' is not a subtype of type 'List' appwrite/sdk-for-dart#41 1:27:20 1:27:20
๐Ÿ› Bug Report: Relationships don't cascade delete properly with 2 relationships appwrite/appwrite#5677 7 days, 15:17:39 None
๐Ÿ“š Documentation: The documentation/method Account.deleteSession() and Account.deleteSessions() are wrong appwrite/sdk-for-flutter#153 2:56:27 None
๐Ÿ› Bug Report: Wrong signature for createMembership server side implementation appwrite/appwrite#5676 6 days, 22:40:45 41 days, 3:11:22
๐Ÿš€ Feature: Omit the requirement of the URL parameter in server createMembership function appwrite/appwrite#5675 6 days, 22:19:07 None
๐Ÿ› Bug Report: Can't edit Array of String appwrite/appwrite#5674 5:23:49 None
500 Internal Error while creating a collection appwrite/appwrite#5673 None 0:00:48
๐Ÿš€ Feature: restrict unsupported characters for project ID. appwrite/appwrite#5670 20:18:42 41 days, 20:41:09
๐Ÿ› Bug Report: Change cursor pointer in checkbox's disabled state appwrite/pink#91 1 day, 14:52:42 None
๐Ÿ“š Documentation: appwrite/awesome-appwrite#493 None 0:01:55
๐Ÿš€ Feature: Aggregate Functions and Select distinct appwrite/appwrite#5667 43 days, 15:48:18 None
๐Ÿ› Bug Report: unexpected behavior when deleting the first prefs of a user from the dashboard appwrite/appwrite#5664 13 days, 16:37:11 None
๐Ÿ› Bug Report: The redirect to the user sessions page is broken appwrite/appwrite#5663 7 days, 1:20:08 7 days, 17:27:38
๐Ÿ› Bug Report: Attributes can be both required and an array appwrite/console#461 23:26:53 None
๐Ÿš€ Feature: Optional DB foreign keys to avoid orphans appwrite/appwrite#5662 0:51:35 None
๐Ÿ› Bug Report: $permissions returns as object rather than array appwrite/appwrite#5661 2 days, 2:49:49 3 days, 15:02:53
๐Ÿš€ Feature: CLI Login when you are authenticated with Github appwrite/appwrite#5659 7 days, 2:35:56 None
๐Ÿ› Bug Report: Query.select() fails on querying relationships appwrite/appwrite#5657 23 days, 6:22:50 23 days, 6:22:51
๐Ÿ› Bug Report: Partially uploaded file shown in console. appwrite/appwrite#5654 12:32:36 43 days, 15:38:12
๐Ÿ› Bug Report: No app check appwrite/appwrite#5653 11 days, 10:40:48 None
๐Ÿš€ Feature: SETTING CUSTOM SESSION EXPIRY TIME FOR USER LOGIN SESSIONS appwrite/appwrite#5652 0:44:39 0:58:37
๐Ÿ“š Documentation: Add the name of the inbuilt variables that we get along with a request appwrite/docs#378 16 days, 16:21:18 None
๐Ÿ› Bug Report: Query not valid: Query type does not match expected: double on python SDK appwrite/appwrite#5650 0:09:11 None
๐Ÿ› Bug Report: UI broken in the documents page appwrite/appwrite#5646 4 days, 5:35:47 9 days, 21:29:48
๐Ÿ› Bug Report: Session Doesn't Persist on Flutter Web appwrite/appwrite#5645 12 days, 7:13:06 None
๐Ÿ› Bug Report: AppwriteException: Not Found appwrite/appwrite#5644 11 days, 5:34:59 12 days, 19:27:44
๐Ÿ› Bug Report: ali-oss Doesn't Work in Node Runtime appwrite/appwrite#5642 12 days, 10:37:12 None
๐Ÿš€ Feature: Add option to customise Phone Auth OTP appwrite/appwrite#5641 5 days, 23:17:24 None
๐Ÿ“š Documentation: library code does not contain clear and or concise documentation appwrite/sdk-for-flutter#152 1 day, 19:59:55 19 days, 11:42:07
๐Ÿš€ Feature: Replace Websocket by Server Sent Events appwrite/appwrite#5631 None None
๐Ÿ› Bug Report: Appwrite main container freezes when executing cloud-functions. appwrite/appwrite#5629 3 days, 16:11:42 None
๐Ÿ› Bug Report: User total is zero (0) in project console after minor version upgrade appwrite/appwrite#5628 2 days, 3:11:18 13 days, 20:52:56
๐Ÿš€ Feature: Ability to seperate ids from get, update, create, delete document methods [Flutter] appwrite/appwrite#5627 None None
๐Ÿ› Bug Report: can't import certain python built-ins for functions appwrite/appwrite#5626 14 days, 9:44:13 14 days, 10:06:50
๐Ÿš€ Feature: Suggest adding Active User metrics appwrite/appwrite#5625 None None
๐Ÿ› Bug Report: After upgrading from v1.3.4 to v1.3.5, on refresh, I get 404 not found on the console. appwrite/appwrite#5623 20:33:02 None

Issues Closed in June 2023

Issue Metrics

Metric Value
Average time to first response 17 days, 8:53:37.860000
Average time to close 67 days, 4:34:16.321429
Number of items that remain open 0
Number of items closed 56
Total number of items created 56
Title URL Time to first response Time to close
๐Ÿ› Bug Report: ui bug - the left-arrow icon in switch does not seems to be in centre appwrite/appwrite#5752 0:00:14 20:09:42
๐Ÿš€ Feature: Custom abuse control/rate limits appwrite/appwrite#5737 18:13:12 18:15:36
AppwriteException: User (role: guests) missing scope (account) ReactJS application appwrite/appwrite#5735 None 0:49:12
๐Ÿ› Bug Report: Inconsitency of Count for Auth appwrite/appwrite#5734 3:16:31 1 day, 7:44:56
๐Ÿ› Bug Report: Accessibility issue on profile dropdown appwrite/appwrite#5724 9:04:51 2 days, 8:56:19
๐Ÿ› Bug Report: NullPointerException when trying to fetch teams list appwrite/sdk-for-kotlin#30 1 day, 12:52:37 13 days, 22:38:09
๐Ÿ› Bug : Appwrite with typescript react app throws error appwrite/appwrite#5706 3 days, 15:16:46 14 days, 6:28:25
๐Ÿ› Bug Report: Modal should be in the center instead of corner for better visibility and UX appwrite/console#463 0:00:25 6 days, 11:14:34
๐Ÿ› Bug Report: Unable to post http request even after adding all the headers appwrite/appwrite#5702 21:20:05 1 day, 12:10:26
๐Ÿ› Bug Report: Delete Modal in Appwrite console Disappears and Needs Positioning Fix appwrite/appwrite#5701 0:01:13 8:45:06
๐Ÿ› Bug Report: Server Error when authenticating appwrite/appwrite#5697 1 day, 3:06:34 1 day, 3:32:58
๐Ÿ› Bug Report: Server Error when trying to create Document on Appwrite Cloud appwrite/appwrite#5691 0:09:24 2 days, 1:27:03
๐Ÿ› Bug Report: 500 Internal Error on Appwrite Cloud appwrite/appwrite#5690 1:06:40 2 days, 1:44:55
๐Ÿ› Bug Report: new empty collections reported as not found by databases.listDocuments() appwrite/appwrite#5687 3 days, 10:41:41 6 days, 22:22:39
๐Ÿ› Bug Report: failing to generate SDKs using example.php appwrite/sdk-generator#666 4 days, 10:27:44 4 days, 17:00:47
๐Ÿš€ Feature: use type hints appwrite/sdk-for-python#61 None 0:00:38
๐Ÿ› Bug Report: type '_Map<String, dynamic>' is not a subtype of type 'List' appwrite/sdk-for-dart#41 1:27:20 1:27:20
500 Internal Error while creating a collection appwrite/appwrite#5673 None 0:00:48
๐Ÿ“š Documentation: appwrite/awesome-appwrite#493 None 0:01:55
๐Ÿ› Bug Report: The redirect to the user sessions page is broken appwrite/appwrite#5663 7 days, 1:20:08 7 days, 17:27:38
๐Ÿ› Bug Report: $permissions returns as object rather than array appwrite/appwrite#5661 2 days, 2:49:49 3 days, 15:02:53
๐Ÿ› Bug Report: Query.select() fails on querying relationships appwrite/appwrite#5657 23 days, 6:22:50 23 days, 6:22:51
๐Ÿš€ Feature: SETTING CUSTOM SESSION EXPIRY TIME FOR USER LOGIN SESSIONS appwrite/appwrite#5652 0:44:39 0:58:37
๐Ÿ› Bug Report: UI broken in the documents page appwrite/appwrite#5646 4 days, 5:35:47 9 days, 21:29:48
๐Ÿ› Bug Report: AppwriteException: Not Found appwrite/appwrite#5644 11 days, 5:34:59 12 days, 19:27:44
๐Ÿ“š Documentation: library code does not contain clear and or concise documentation appwrite/sdk-for-flutter#152 1 day, 19:59:55 19 days, 11:42:07
๐Ÿ› Bug Report: User total is zero (0) in project console after minor version upgrade appwrite/appwrite#5628 2 days, 3:11:18 13 days, 20:52:56
๐Ÿ› Bug Report: can't import certain python built-ins for functions appwrite/appwrite#5626 14 days, 9:44:13 14 days, 10:06:50
๐Ÿ› Bug Report: worker-certificates generate SSL certificate failed appwrite/appwrite#5617 1:18:14 5 days, 12:30:26
๐Ÿš€ Feature: Auth Helpers for SSR appwrite/appwrite#5607 None 3 days, 5:39:26
๐Ÿš€ Feature: List collections appwrite/sdk-for-web#56 14 days, 5:44:57 21 days, 2:29:48
๐Ÿ“š Documentation: Check Session appwrite/sdk-for-android#35 2 days, 8:50:56 8 days, 11:28:53
๐Ÿ› Bug Report: Unable to create flutter-web target platform. appwrite/appwrite#5591 4 days, 3:42:18 15 days, 22:57:13
๐Ÿ› Bug Report: PathNotFoundException: Cannot open file, path = '/etc/lsb-release' appwrite/sdk-for-flutter#151 4 days, 7:27:42 25 days, 23:24:59
๐Ÿ› Bug Report: Resolving dependencies on device_info_plus appwrite/sdk-for-flutter#150 7 days, 23:39:17 25 days, 15:22:45
๐Ÿ› Bug Report: Incompatibility with Google Fonts (Flutter) appwrite/appwrite#5583 16:06:30 11 days, 9:08:20
๐Ÿ“š Documentation: Better Readability of the Python SDK create Database appwrite/appwrite#5582 9:17:17 9 days, 22:49:53
Help: Getting failed Promise response appwrite/appwrite#5569 0:00:28 9 days, 15:48:45
Bug Report: Search for a user by email which have underscore "_" with no results appwrite/appwrite#5546 9 days, 14:10:30 29 days, 1:29:49
๐Ÿ› Bug Report: macOS Flutter version 3.10.0 [!] CocoaPods could not find compatible versions for pod "flutter_web_auth_2": appwrite/sdk-for-flutter#147 1 day, 13:46:14 41 days, 15:40:30
๐Ÿ› Bug Report: query with empty list throws error appwrite/appwrite#5522 0:17:35 21 days, 8:00:51
๐Ÿ› Bug Report: Unknown PDO Type for object appwrite/appwrite#5481 16 days, 13:57:36 43 days, 16:35:31
๐Ÿ› Bug Report: Optional OAuth Setting isn't Optional appwrite/appwrite#5421 1 day, 10:05:19 58 days, 22:41:49
๐Ÿ› Bug Report: Using falsy values for optional parameters appwrite/appwrite#5416 0:12:07 59 days, 18:55:27
๐Ÿ› Bug Report: Creating a user throws an error appwrite/sdk-for-cli#81 37 days, 14:12:54 47 days, 5:27:55
๐Ÿš€ Feature: Adding Bun runtime open-runtimes/open-runtimes#158 2 days, 23:47:47 61 days, 3:53:53
๐Ÿ› Bug Report: Server sdk for node deleteFile api delete storage bucket instead of file. appwrite/appwrite#5310 8:39:13 72 days, 16:40:23
Appwrite Version above 8.2.0 will never allow the flutter App to build, received this error ":app:checkDebugDuplicateClasses" appwrite/sdk-generator#626 3 days, 14:31:32 108 days, 13:47:45
๐Ÿš€ Feature: Re-hash Password on Phone Update appwrite/appwrite#4990 8:20:09 146 days, 21:16:31
๐Ÿ› Bug Report: Error 500 using updateEmail when password is not set cause OAuth2 appwrite/appwrite#4975 3:18:15 149 days, 5:30:36
appwrite functions createExecution prints 40 kb strange output appwrite/sdk-for-cli#64 None 248 days, 3:26:56
๐Ÿ› Bug Report: You've forgotten to add unit tests to the repo appwrite/sdk-for-flutter#90 6 days, 12:50:14 281 days, 9:01:38
๐Ÿ› Bug Report: Database disappeared while deleting documents appwrite/appwrite#3744 238 days, 20:17:09 277 days, 22:43:53
Feature: Adding Scoop support to appwrite appwrite/sdk-for-cli#39 382 days, 5:29:14 382 days, 5:29:17
Why are parameters not strongly typed ? appwrite/sdk-for-dart#13 32 days, 17:02:41 579 days, 18:20:48
Handling arrays returned from API appwrite/sdk-for-cli#4 17 days, 1:06:30 852 days, 0:52:22

Discussions Closed in June 2023

Issue Metrics

Metric Value
Average time to first response 46 days, 21:04:57.833333
Average time to close 261 days, 23:52:18.166667
Average time to answer 2 days, 11:16:25
Number of items that remain open 0
Number of items closed 6
Total number of items created 6
Title URL Time to first response Time to close Time to answer
Improvements to Administering Collections appwrite/appwrite#2720 10:57:38 506 days, 9:55:12 None
Time-Based One Time Password 2fa support. appwrite/appwrite#5681 3 days, 4:47:09 6 days, 20:46:46 None
Default value for attribute is not being set on the appwrite console appwrite/appwrite#5613 12:47:33 2 days, 11:26:02 2 days, 5:54:38
subscribe functionality in python sdk? appwrite/appwrite#5596 2 days, 6:49:53 2 days, 18:19:08 2 days, 16:38:12
Ability to Disable any of Appwrite's Service appwrite/appwrite#2475 0:02:10 540 days, 1:20:54 None
Events/Function trigger for realtime subscribe/unsubscribe appwrite/appwrite#2587 274 days, 19:05:24 513 days, 9:25:47 None

๐Ÿ› Bug Report: Code of Conduct link broken in all issue templates

๐Ÿ‘Ÿ Reproduction steps

Open the Code of Conduct link at the bottom

๐Ÿ‘ Expected behavior

It should display the right window

๐Ÿ‘Ž Actual Behavior

404 page

๐ŸŽฒ Appwrite version

Version 1.2.x

๐Ÿ’ป Operating system

Linux

๐Ÿงฑ Your Environment

No response

๐Ÿ‘€ Have you spent some time to check if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Code of Conduct?

Discussions Opened in June 2023

Issue Metrics

Metric Value
Average time to first response 4 days, 5:43:03.142857
Average time to close 6 days, 20:46:46
Average time to answer 46 days, 5:03:02
Number of items that remain open 6
Number of items closed 1
Total number of items created 7
Title URL Time to first response Time to close Time to answer
Get data from database appwrite/appwrite#5660 13 days, 22:50:55 None None
How to store json type of data into a single document ? appwrite/appwrite#5704 4 days, 18:44:04 None None
If you could add one thing to Appwrite's docs, what would it be? appwrite/appwrite#5692 0:40:44 None None
Appwrite imange 1.3.7 not working on docker desktop win11 appwrite/appwrite#5655 21:17:20 None None
Time-Based One Time Password 2fa support. appwrite/appwrite#5681 3 days, 4:47:09 6 days, 20:46:46 None
Connect to database using Django appwrite/appwrite#5669 6 days, 0:11:30 None 46 days, 5:03:02
Bing chat generated a benchmark report for you using k6 - RESULT appwrite/appwrite#5656 19:29:40 None None

Discussions Opened in June 2023

Issue Metrics

Metric Value
Average time to first response 4 days, 5:43:03.142857
Average time to close 6 days, 20:46:46
Average time to answer 46 days, 5:03:02
Number of items that remain open 6
Number of items closed 1
Total number of items created 7
Title URL Time to first response Time to close Time to answer
Get data from database appwrite/appwrite#5660 13 days, 22:50:55 None None
How to store json type of data into a single document ? appwrite/appwrite#5704 4 days, 18:44:04 None None
If you could add one thing to Appwrite's docs, what would it be? appwrite/appwrite#5692 0:40:44 None None
Appwrite imange 1.3.7 not working on docker desktop win11 appwrite/appwrite#5655 21:17:20 None None
Time-Based One Time Password 2fa support. appwrite/appwrite#5681 3 days, 4:47:09 6 days, 20:46:46 None
Connect to database using Django appwrite/appwrite#5669 6 days, 0:11:30 None 46 days, 5:03:02
Bing chat generated a benchmark report for you using k6 - RESULT appwrite/appwrite#5656 19:29:40 None None

PRs Opened in June 2023

Issue Metrics

Metric Value
Average time to first response 3 days, 14:12:14.579365
Average time to close 6 days, 19:16:25.885965
Number of items that remain open 46
Number of items closed 114
Total number of items created 160
Title URL Time to first response Time to close
Change Raw Data links from singular to plural appwrite/console#471 0:00:04 3 days, 14:09:06
Create Compress image Branch open-runtimes/examples#152 None 0:00:45
Fix small typo in docs appwrite/appwrite#5755 None None
Feat 5376 improve the select query utopia-php/database#287 11 days, 22:23:06 None
Update README.md appwrite/console#469 0:00:03 6 days, 3:51:09
File Tokens RFC appwrite/rfc#58 None None
Fix typo in aria label appwrite/pink#94 0:00:03 23 days, 23:27:52
Fixed Extraneous argument label 'status:' in call for Apple App setup appwrite/console#468 0:00:03 None
Feat: $network support to run method utopia-php/orchestration#30 23 days, 15:47:53 26 days, 2:49:15
fixed null $name error for anonymous user appwrite/appwrite#5745 10 days, 7:35:23 24 days, 12:19:23
Restrict characters for project ID appwrite/appwrite#5743 19 days, 19:15:55 24 days, 15:49:39
Fix REST API and GraphQL bugs in reference docs appwrite/docs#391 11 days, 17:10:44 31 days, 7:04:23
Create a build script appwrite/sdk-generator#684 0:00:29 None
Update dotnet sdk create file example appwrite/sdk-generator#683 4 days, 18:38:47 5 days, 10:15:16
Downgrade mockito in Flutter and Dart SDKs appwrite/sdk-generator#682 1 day, 8:03:11 1 day, 8:03:18
Allow custom createdAt and updatedAt on createDocument utopia-php/database#286 None None
added google.md appwrite/docs#390 None 18 days, 21:28:11
Fix phone verification secret in events & payload appwrite/appwrite#5740 25 days, 19:23:21 25 days, 19:23:25
Fix anonymous user appwrite/appwrite#5739 25 days, 19:18:43 25 days, 19:18:51
Feat cli console project appwrite/sdk-generator#681 2 days, 0:24:06 18 days, 0:37:48
Audit Appwrite's generic error messages appwrite/appwrite#5738 17 days, 23:33:11 None
Update feature.yaml #20 3:31:53 10 days, 21:29:50
Update documentation.yaml #19 3:34:17 10 days, 21:32:08
set the dart_appwrite package version to 8.0.0 appwrite/functions-starter#51 None None
Init utopia-php/fetch#1 10 days, 19:02:19 None
Expose a way to skip specific database listeners utopia-php/database#284 19 days, 18:11:28 28 days, 12:53:23
Rename FMC to FCM in example open-runtimes/examples#151 4:15:47 None
update Flutter - Dart SDK appwrite/appwrite#5736 None None
added tests and comments appwrite/sdk-for-dart#43 0:51:51 0:52:10
update changelog appwrite/sdk-for-flutter#160 0:12:14 0:13:51
fixed flutter/dart comments appwrite/sdk-generator#678 0:01:56 0:02:04
added test appwrite/sdk-for-flutter#159 0:04:03 0:37:58
added tests appwrite/sdk-for-flutter#158 None 0:06:28
added tests appwrite/sdk-for-flutter#157 0:38:56 0:40:26
Move flutter service tests to dart appwrite/sdk-generator#677 None 0:14:09
Add tests for helpers and moels to Flutter and Dart SDKs appwrite/sdk-generator#676 3:34:47 3:51:51
Update getting-started-for-web.phtml appwrite/docs#389 None None
Added Stars and Forks button in README.md appwrite/appwrite#5731 2 days, 8:30:21 2 days, 8:30:21
Calc tier addition appwrite/appwrite#5730 2:22:22 2:55:11
Feat: Transactions utopia-php/http#101 None None
WIP: fix storage tests appwrite/sdk-generator#675 0:02:05 17:05:11
Change --p-icon-size to 0.65 to make the fix the icon alignment appwrite/pink#93 0:00:02 None
fix: missing collection error appwrite/appwrite#5728 None 1:26:54
Fix calc tier appwrite/appwrite#5727 0:13:35 2:04:49
feat: Enum Whitelist appwrite/sdk-generator#674 23 days, 0:09:55 None
Feat: Whitelist enums appwrite/appwrite#5726 None None
Update README.md appwrite/builtwith#32 0:00:03 22 days, 18:24:08
Feat: Functions G4 appwrite/console#465 0:00:05 None
Feat: Functions G4 appwrite/appwrite#5725 11:07:18 None
ci: added paths-ignore in tests GHA appwrite/console#464 0:00:03 None
Flutter SDK: tests for services appwrite/sdk-generator#673 1 day, 10:16:31 2 days, 1:17:08
account test appwrite/sdk-for-flutter#155 None 6 days, 23:19:46
Update package.json appwrite/sdk-for-web#59 1 day, 9:39:21 9 days, 22:50:02
feat: update to 1.3.7 release appwrite/integration-for-gitpod#19 3:17:53 14:29:15
Fix 3256 update document when attribute name is numeric appwrite/appwrite#5723 0:00:14 25 days, 10:55:10
fix user agent appwrite/sdk-generator#672 0:05:14 3 days, 6:52:32
Add doc comments appwrite/sdk-for-dart#42 None 6 days, 0:22:11
Add doc comments appwrite/sdk-for-flutter#154 None 5 days, 22:31:11
Add inline doc comments to the Dart and Flutter SDKs appwrite/sdk-generator#671 1 day, 4:16:23 4 days, 3:55:17
fixed incorrect audity activity on document create appwrite/appwrite#5718 0:00:17 3 days, 6:50:19
Fix upvotes appwrite/builtwith#31 0:00:04 0:00:53
fix: abuse label for creating phone session appwrite/appwrite#5715 6 days, 14:22:28 None
fix: upvotes bug appwrite/builtwith#30 0:00:03 5:00:46
feat: approval email appwrite/builtwith#29 0:00:03 None
Incomplete Example, generate error: TypeError: file.stream.pipe is noโ€ฆ appwrite/appwrite#5714 7 days, 3:17:21 None
Update getting started URL appwrite/sdk-for-kotlin#31 8:33:14 11 days, 23:23:51
Create an alias for Appwrite Cloud in docs. appwrite/docs#388 21:59:07 21:59:44
Update README.md appwrite/docs#387 3:25:32 None
feat: update tests appwrite/appwrite#5712 None 1:40:04
Feat: Add database to log appwrite/appwrite#5711 1:24:08 1:24:14
feat: project 404 page appwrite/builtwith#28 0:00:04 0:48:22
Fix: fix type conversion of strings for all models in .NET SDK appwrite/sdk-generator#670 15:28:40 3 days, 23:01:16
update SDK dependencies appwrite/sdk-generator#669 20 days, 15:31:00 25 days, 16:22:56
improve CLI readme contribution part appwrite/sdk-generator#668 0:01:45 0:02:01
Fix second index validation when first index is fulltext utopia-php/database#283 1:01:37 1:31:51
Feat database upgrade appwrite/appwrite#5710 6 days, 5:02:00 7 days, 7:53:42
refactor collections config appwrite/appwrite#5709 10:08:08 14:36:36
Update database utopia-php/abuse#55 0:18:44 0:20:05
Update database utopia-php/audit#51 0:19:36 0:20:37
feat: update database config appwrite/appwrite#5708 None 19:34:28
Update delete session description to be actually correct appwrite/appwrite#5707 7:03:07 None
[WIP] Replacing all native curl calls with the new fetch library utopia-php/analytics#44 None None
Ensure API endpoints have required params first appwrite/docs#386 1 day, 1:49:16 34 days, 3:23:22
delete unnecessary project collections task appwrite/appwrite#5705 0:53:01 22:08:47
Changed GitHub URL text and submission text appwrite/builtwith#27 0:00:06 1:03:05
Bug Fixed: Change cursor pointer in checkbox's disabled state appwrite/pink#92 0:00:03 None
Add support for multiple events per endpoint appwrite/appwrite#5703 0:02:14 None
cache save refactor appwrite/appwrite#5700 None None
Changed Twitter URL text for easier understanding appwrite/builtwith#26 0:00:03 16:27:20
Collection not found utopia-php/database#282 1 day, 15:36:47 1 day, 15:36:54
fix delete cache file to dbp-master appwrite/appwrite#5699 2:14:51 2:50:24
Fix cache delete bug master appwrite/appwrite#5698 37 days, 6:01:36 None
Feat: Client error logging appwrite/appwrite#5696 1 day, 23:13:50 None
cache deletion bug fix appwrite/appwrite#5695 1:29:22 2:56:40
chore: remove generateSearch script appwrite/builtwith#24 0:00:04 0:00:12
Feat: Support for CURL in Swoole appwrite/docker-base#12 4 days, 13:50:59 None
Added missing word to portuguese email template appwrite/appwrite#5694 1 day, 16:18:08 None
Add Swift 5.8 Runtime open-runtimes/open-runtimes#167 6 days, 18:31:49 41 days, 15:04:08
Adding Funcover as a tool appwrite/awesome-appwrite#494 21:01:30 21:01:39
refactor cache save appwrite/appwrite#5689 None 1 day, 0:37:07
style: add gap between project title and upvote appwrite/builtwith#23 0:00:03 0:00:20
refactor: added type hints for Python SDK appwrite/sdk-generator#665 12 days, 8:48:52 23 days, 17:30:00
REST API improvements in docs appwrite/docs#385 27 days, 8:04:30 45 days, 8:54:53
Update 1.4.x from Master appwrite/appwrite#5683 2 days, 6:43:05 2 days, 12:37:07
Add generic attribute model page. appwrite/docs#384 None None
Oauth provider guides appwrite/docs#383 0:00:17 None
Fix: $permissions returns as object rather than array utopia-php/database#281 0:05:01 11:09:27
very simple text annotation support utopia-php/image#26 None None
Fix docs events (Homepage #225) appwrite/docs#382 0:40:37 None
feat: use Link component, fix mobile menu appwrite/builtwith#22 0:00:05 3 days, 0:06:40
fix: missing import appwrite/appwrite#5672 None 0:01:54
style: fix project image aspect ratios appwrite/builtwith#21 0:00:07 0:58:15
fix for failing flutter test appwrite/sdk-generator#664 4 days, 19:36:09 4 days, 19:41:44
Appwrite CLI - Flutter and Generator commands appwrite/sdk-generator#663 None None
Update document missing params error message appwrite/appwrite#5671 1 day, 18:21:29 5 days, 7:25:51
V19 migration appwrite/appwrite#5668 2 days, 15:50:03 14 days, 16:10:53
ci: create CI script to build cloud images appwrite/appwrite#5666 None 3:16:00
Added send_http_request example using Dart open-runtimes/examples#150 34 days, 15:36:12 None
refactored email template appwrite/appwrite#5665 20:16:21 1 day, 2:26:05
Add support for label permissions utopia-php/database#280 29 days, 20:40:23 38 days, 10:52:04
Reorder databases subheadings based on importance appwrite/docs#381 2:14:41 2:14:47
Wildcards can't be used in channel appwrite/docs#380 3:21:33 49 days, 11:47:29
Mention wildcards under Realtime channels appwrite/docs#379 0:01:24 0:02:40
feat: improve api keys appwrite/console#460 0:00:23 None
Feat: Mulitple Events Execution appwrite/appwrite#5658 None None
[Snyk] Upgrade cross-fetch from 3.1.5 to 3.1.6 appwrite/sdk-for-web#57 None None
Appwrite console internationalization : Typesafe-i18n appwrite/console#459 0:00:04 None
remove additional white spaces appwrite/sdk-generator#662 4:01:06 1 day, 0:30:48
Add RuPay Credit Card appwrite/appwrite#5651 None 10:32:14
Sync master with 1.3.x appwrite/appwrite#5649 3:25:37 3:29:00
Updates for 1.3.7 appwrite/appwrite#5648 0:11:01 1:04:34
chore: update utopia-php/framework appwrite/appwrite#5647 None 0:02:33
Fix trailing slashes master utopia-php/http#100 0:02:05 0:14:56
feat: add support for trailing slashes in routes and urls utopia-php/http#99 0:03:58 0:13:28
Added event.preventDefault(); appwrite/playground-for-web#83 0:50:19 0:52:32
feat: update playground appwrite/playground-for-android#29 0:00:39 0:00:58
Fix the routing for the default OAuth2 pages appwrite/appwrite#5643 None 0:00:11
Fix the routing for the default OAuth2 pages appwrite/appwrite#5640 9:50:01 9:56:44
Fix default project appwrite/appwrite#5639 2 days, 21:59:31 43 days, 22:55:53
feat: rejectProject function, add userId to projects, add desktop and cli platforms, misc fixes appwrite/builtwith#20 0:00:07 2 days, 18:25:46
cache perm fix appwrite/appwrite#5638 3 days, 20:14:47 3 days, 20:15:01
sync 1.3.x appwrite/appwrite#5637 0:00:48 0:38:53
release: 1 3 6 new appwrite/appwrite#5636 None 0:05:30
release: 1.3.6 appwrite/appwrite#5635 None 0:05:05
chore: prepre 1.3.6 appwrite/appwrite#5634 0:01:05 4 days, 2:19:10
fix: remove default order appwrite/console#458 0:00:08 0:03:31
fix: trailing wildcards appwrite/appwrite#5633 0:27:39 0:27:49
feat: add trailing wildcards utopia-php/http#98 0:01:42 0:06:45
fix: trailing wildcards appwrite/appwrite#5632 0:01:55 0:38:14
Extract db from list while backing appwrite/appwrite#5630 8:01:24 4 days, 7:51:57
Add user labels to user list and detail pages appwrite/console#457 0:00:07 None
Update link to cron docs appwrite/console#456 0:00:08 16:20:31
[Snyk] Upgrade express from 4.18.1 to 4.18.2 appwrite/playground-for-web#82 None None
Add syntax for all SDKs in query. appwrite/docs#377 2 days, 11:05:08 None
feat: trailing wildcards utopia-php/http#97 4:46:25 20:14:04
feat: migrate to cloud, hamburger menu, refactors appwrite/demos-for-astro#6 0:00:05 6 days, 3:21:37
Update file name appwrite/appwrite#5624 1 day, 6:59:53 1 day, 7:00:01
Refactor collections config appwrite/appwrite#5622 6 days, 4:59:30 None
Allow Updating email and phone without password appwrite/appwrite#5621 1 day, 15:36:57 1 day, 15:37:03
Fix system performance appwrite/appwrite#5620 0:02:38 1 day, 12:19:06

Issues Closed in June 2023

Issue Metrics

Metric Value
Average time to first response 17 days, 8:53:37.860000
Average time to close 67 days, 4:34:16.321429
Number of items that remain open 0
Number of items closed 56
Total number of items created 56
Title URL Time to first response Time to close
๐Ÿ› Bug Report: ui bug - the left-arrow icon in switch does not seems to be in centre appwrite/appwrite#5752 0:00:14 20:09:42
๐Ÿš€ Feature: Custom abuse control/rate limits appwrite/appwrite#5737 18:13:12 18:15:36
AppwriteException: User (role: guests) missing scope (account) ReactJS application appwrite/appwrite#5735 None 0:49:12
๐Ÿ› Bug Report: Inconsitency of Count for Auth appwrite/appwrite#5734 3:16:31 1 day, 7:44:56
๐Ÿ› Bug Report: Accessibility issue on profile dropdown appwrite/appwrite#5724 9:04:51 2 days, 8:56:19
๐Ÿ› Bug Report: NullPointerException when trying to fetch teams list appwrite/sdk-for-kotlin#30 1 day, 12:52:37 13 days, 22:38:09
๐Ÿ› Bug : Appwrite with typescript react app throws error appwrite/appwrite#5706 3 days, 15:16:46 14 days, 6:28:25
๐Ÿ› Bug Report: Modal should be in the center instead of corner for better visibility and UX appwrite/console#463 0:00:25 6 days, 11:14:34
๐Ÿ› Bug Report: Unable to post http request even after adding all the headers appwrite/appwrite#5702 21:20:05 1 day, 12:10:26
๐Ÿ› Bug Report: Delete Modal in Appwrite console Disappears and Needs Positioning Fix appwrite/appwrite#5701 0:01:13 8:45:06
๐Ÿ› Bug Report: Server Error when authenticating appwrite/appwrite#5697 1 day, 3:06:34 1 day, 3:32:58
๐Ÿ› Bug Report: Server Error when trying to create Document on Appwrite Cloud appwrite/appwrite#5691 0:09:24 2 days, 1:27:03
๐Ÿ› Bug Report: 500 Internal Error on Appwrite Cloud appwrite/appwrite#5690 1:06:40 2 days, 1:44:55
๐Ÿ› Bug Report: new empty collections reported as not found by databases.listDocuments() appwrite/appwrite#5687 3 days, 10:41:41 6 days, 22:22:39
๐Ÿ› Bug Report: failing to generate SDKs using example.php appwrite/sdk-generator#666 4 days, 10:27:44 4 days, 17:00:47
๐Ÿš€ Feature: use type hints appwrite/sdk-for-python#61 None 0:00:38
๐Ÿ› Bug Report: type '_Map<String, dynamic>' is not a subtype of type 'List' appwrite/sdk-for-dart#41 1:27:20 1:27:20
500 Internal Error while creating a collection appwrite/appwrite#5673 None 0:00:48
๐Ÿ“š Documentation: appwrite/awesome-appwrite#493 None 0:01:55
๐Ÿ› Bug Report: The redirect to the user sessions page is broken appwrite/appwrite#5663 7 days, 1:20:08 7 days, 17:27:38
๐Ÿ› Bug Report: $permissions returns as object rather than array appwrite/appwrite#5661 2 days, 2:49:49 3 days, 15:02:53
๐Ÿ› Bug Report: Query.select() fails on querying relationships appwrite/appwrite#5657 23 days, 6:22:50 23 days, 6:22:51
๐Ÿš€ Feature: SETTING CUSTOM SESSION EXPIRY TIME FOR USER LOGIN SESSIONS appwrite/appwrite#5652 0:44:39 0:58:37
๐Ÿ› Bug Report: UI broken in the documents page appwrite/appwrite#5646 4 days, 5:35:47 9 days, 21:29:48
๐Ÿ› Bug Report: AppwriteException: Not Found appwrite/appwrite#5644 11 days, 5:34:59 12 days, 19:27:44
๐Ÿ“š Documentation: library code does not contain clear and or concise documentation appwrite/sdk-for-flutter#152 1 day, 19:59:55 19 days, 11:42:07
๐Ÿ› Bug Report: User total is zero (0) in project console after minor version upgrade appwrite/appwrite#5628 2 days, 3:11:18 13 days, 20:52:56
๐Ÿ› Bug Report: can't import certain python built-ins for functions appwrite/appwrite#5626 14 days, 9:44:13 14 days, 10:06:50
๐Ÿ› Bug Report: worker-certificates generate SSL certificate failed appwrite/appwrite#5617 1:18:14 5 days, 12:30:26
๐Ÿš€ Feature: Auth Helpers for SSR appwrite/appwrite#5607 None 3 days, 5:39:26
๐Ÿš€ Feature: List collections appwrite/sdk-for-web#56 14 days, 5:44:57 21 days, 2:29:48
๐Ÿ“š Documentation: Check Session appwrite/sdk-for-android#35 2 days, 8:50:56 8 days, 11:28:53
๐Ÿ› Bug Report: Unable to create flutter-web target platform. appwrite/appwrite#5591 4 days, 3:42:18 15 days, 22:57:13
๐Ÿ› Bug Report: PathNotFoundException: Cannot open file, path = '/etc/lsb-release' appwrite/sdk-for-flutter#151 4 days, 7:27:42 25 days, 23:24:59
๐Ÿ› Bug Report: Resolving dependencies on device_info_plus appwrite/sdk-for-flutter#150 7 days, 23:39:17 25 days, 15:22:45
๐Ÿ› Bug Report: Incompatibility with Google Fonts (Flutter) appwrite/appwrite#5583 16:06:30 11 days, 9:08:20
๐Ÿ“š Documentation: Better Readability of the Python SDK create Database appwrite/appwrite#5582 9:17:17 9 days, 22:49:53
Help: Getting failed Promise response appwrite/appwrite#5569 0:00:28 9 days, 15:48:45
Bug Report: Search for a user by email which have underscore "_" with no results appwrite/appwrite#5546 9 days, 14:10:30 29 days, 1:29:49
๐Ÿ› Bug Report: macOS Flutter version 3.10.0 [!] CocoaPods could not find compatible versions for pod "flutter_web_auth_2": appwrite/sdk-for-flutter#147 1 day, 13:46:14 41 days, 15:40:30
๐Ÿ› Bug Report: query with empty list throws error appwrite/appwrite#5522 0:17:35 21 days, 8:00:51
๐Ÿ› Bug Report: Unknown PDO Type for object appwrite/appwrite#5481 16 days, 13:57:36 43 days, 16:35:31
๐Ÿ› Bug Report: Optional OAuth Setting isn't Optional appwrite/appwrite#5421 1 day, 10:05:19 58 days, 22:41:49
๐Ÿ› Bug Report: Using falsy values for optional parameters appwrite/appwrite#5416 0:12:07 59 days, 18:55:27
๐Ÿ› Bug Report: Creating a user throws an error appwrite/sdk-for-cli#81 37 days, 14:12:54 47 days, 5:27:55
๐Ÿš€ Feature: Adding Bun runtime open-runtimes/open-runtimes#158 2 days, 23:47:47 61 days, 3:53:53
๐Ÿ› Bug Report: Server sdk for node deleteFile api delete storage bucket instead of file. appwrite/appwrite#5310 8:39:13 72 days, 16:40:23
Appwrite Version above 8.2.0 will never allow the flutter App to build, received this error ":app:checkDebugDuplicateClasses" appwrite/sdk-generator#626 3 days, 14:31:32 108 days, 13:47:45
๐Ÿš€ Feature: Re-hash Password on Phone Update appwrite/appwrite#4990 8:20:09 146 days, 21:16:31
๐Ÿ› Bug Report: Error 500 using updateEmail when password is not set cause OAuth2 appwrite/appwrite#4975 3:18:15 149 days, 5:30:36
appwrite functions createExecution prints 40 kb strange output appwrite/sdk-for-cli#64 None 248 days, 3:26:56
๐Ÿ› Bug Report: You've forgotten to add unit tests to the repo appwrite/sdk-for-flutter#90 6 days, 12:50:14 281 days, 9:01:38
๐Ÿ› Bug Report: Database disappeared while deleting documents appwrite/appwrite#3744 238 days, 20:17:09 277 days, 22:43:53
Feature: Adding Scoop support to appwrite appwrite/sdk-for-cli#39 382 days, 5:29:14 382 days, 5:29:17
Why are parameters not strongly typed ? appwrite/sdk-for-dart#13 32 days, 17:02:41 579 days, 18:20:48
Handling arrays returned from API appwrite/sdk-for-cli#4 17 days, 1:06:30 852 days, 0:52:22

PRs Opened in June 2023

Issue Metrics

Metric Value
Average time to first response 3 days, 14:12:14.579365
Average time to close 6 days, 19:16:25.885965
Number of items that remain open 46
Number of items closed 114
Total number of items created 160
Title URL Time to first response Time to close
Change Raw Data links from singular to plural appwrite/console#471 0:00:04 3 days, 14:09:06
Create Compress image Branch open-runtimes/examples#152 None 0:00:45
Fix small typo in docs appwrite/appwrite#5755 None None
Feat 5376 improve the select query utopia-php/database#287 11 days, 22:23:06 None
Update README.md appwrite/console#469 0:00:03 6 days, 3:51:09
File Tokens RFC appwrite/rfc#58 None None
Fix typo in aria label appwrite/pink#94 0:00:03 23 days, 23:27:52
Fixed Extraneous argument label 'status:' in call for Apple App setup appwrite/console#468 0:00:03 None
Feat: $network support to run method utopia-php/orchestration#30 23 days, 15:47:53 26 days, 2:49:15
fixed null $name error for anonymous user appwrite/appwrite#5745 10 days, 7:35:23 24 days, 12:19:23
Restrict characters for project ID appwrite/appwrite#5743 19 days, 19:15:55 24 days, 15:49:39
Fix REST API and GraphQL bugs in reference docs appwrite/docs#391 11 days, 17:10:44 31 days, 7:04:23
Create a build script appwrite/sdk-generator#684 0:00:29 None
Update dotnet sdk create file example appwrite/sdk-generator#683 4 days, 18:38:47 5 days, 10:15:16
Downgrade mockito in Flutter and Dart SDKs appwrite/sdk-generator#682 1 day, 8:03:11 1 day, 8:03:18
Allow custom createdAt and updatedAt on createDocument utopia-php/database#286 None None
added google.md appwrite/docs#390 None 18 days, 21:28:11
Fix phone verification secret in events & payload appwrite/appwrite#5740 25 days, 19:23:21 25 days, 19:23:25
Fix anonymous user appwrite/appwrite#5739 25 days, 19:18:43 25 days, 19:18:51
Feat cli console project appwrite/sdk-generator#681 2 days, 0:24:06 18 days, 0:37:48
Audit Appwrite's generic error messages appwrite/appwrite#5738 17 days, 23:33:11 None
Update feature.yaml #20 3:31:53 10 days, 21:29:50
Update documentation.yaml #19 3:34:17 10 days, 21:32:08
set the dart_appwrite package version to 8.0.0 appwrite/functions-starter#51 None None
Init utopia-php/fetch#1 10 days, 19:02:19 None
Expose a way to skip specific database listeners utopia-php/database#284 19 days, 18:11:28 28 days, 12:53:23
Rename FMC to FCM in example open-runtimes/examples#151 4:15:47 None
update Flutter - Dart SDK appwrite/appwrite#5736 None None
added tests and comments appwrite/sdk-for-dart#43 0:51:51 0:52:10
update changelog appwrite/sdk-for-flutter#160 0:12:14 0:13:51
fixed flutter/dart comments appwrite/sdk-generator#678 0:01:56 0:02:04
added test appwrite/sdk-for-flutter#159 0:04:03 0:37:58
added tests appwrite/sdk-for-flutter#158 None 0:06:28
added tests appwrite/sdk-for-flutter#157 0:38:56 0:40:26
Move flutter service tests to dart appwrite/sdk-generator#677 None 0:14:09
Add tests for helpers and moels to Flutter and Dart SDKs appwrite/sdk-generator#676 3:34:47 3:51:51
Update getting-started-for-web.phtml appwrite/docs#389 None None
Added Stars and Forks button in README.md appwrite/appwrite#5731 2 days, 8:30:21 2 days, 8:30:21
Calc tier addition appwrite/appwrite#5730 2:22:22 2:55:11
Feat: Transactions utopia-php/http#101 None None
WIP: fix storage tests appwrite/sdk-generator#675 0:02:05 17:05:11
Change --p-icon-size to 0.65 to make the fix the icon alignment appwrite/pink#93 0:00:02 None
fix: missing collection error appwrite/appwrite#5728 None 1:26:54
Fix calc tier appwrite/appwrite#5727 0:13:35 2:04:49
feat: Enum Whitelist appwrite/sdk-generator#674 23 days, 0:09:55 None
Feat: Whitelist enums appwrite/appwrite#5726 None None
Update README.md appwrite/builtwith#32 0:00:03 22 days, 18:24:08
Feat: Functions G4 appwrite/console#465 0:00:05 None
Feat: Functions G4 appwrite/appwrite#5725 11:07:18 None
ci: added paths-ignore in tests GHA appwrite/console#464 0:00:03 None
Flutter SDK: tests for services appwrite/sdk-generator#673 1 day, 10:16:31 2 days, 1:17:08
account test appwrite/sdk-for-flutter#155 None 6 days, 23:19:46
Update package.json appwrite/sdk-for-web#59 1 day, 9:39:21 9 days, 22:50:02
feat: update to 1.3.7 release appwrite/integration-for-gitpod#19 3:17:53 14:29:15
Fix 3256 update document when attribute name is numeric appwrite/appwrite#5723 0:00:14 25 days, 10:55:10
fix user agent appwrite/sdk-generator#672 0:05:14 3 days, 6:52:32
Add doc comments appwrite/sdk-for-dart#42 None 6 days, 0:22:11
Add doc comments appwrite/sdk-for-flutter#154 None 5 days, 22:31:11
Add inline doc comments to the Dart and Flutter SDKs appwrite/sdk-generator#671 1 day, 4:16:23 4 days, 3:55:17
fixed incorrect audity activity on document create appwrite/appwrite#5718 0:00:17 3 days, 6:50:19
Fix upvotes appwrite/builtwith#31 0:00:04 0:00:53
fix: abuse label for creating phone session appwrite/appwrite#5715 6 days, 14:22:28 None
fix: upvotes bug appwrite/builtwith#30 0:00:03 5:00:46
feat: approval email appwrite/builtwith#29 0:00:03 None
Incomplete Example, generate error: TypeError: file.stream.pipe is noโ€ฆ appwrite/appwrite#5714 7 days, 3:17:21 None
Update getting started URL appwrite/sdk-for-kotlin#31 8:33:14 11 days, 23:23:51
Create an alias for Appwrite Cloud in docs. appwrite/docs#388 21:59:07 21:59:44
Update README.md appwrite/docs#387 3:25:32 None
feat: update tests appwrite/appwrite#5712 None 1:40:04
Feat: Add database to log appwrite/appwrite#5711 1:24:08 1:24:14
feat: project 404 page appwrite/builtwith#28 0:00:04 0:48:22
Fix: fix type conversion of strings for all models in .NET SDK appwrite/sdk-generator#670 15:28:40 3 days, 23:01:16
update SDK dependencies appwrite/sdk-generator#669 20 days, 15:31:00 25 days, 16:22:56
improve CLI readme contribution part appwrite/sdk-generator#668 0:01:45 0:02:01
Fix second index validation when first index is fulltext utopia-php/database#283 1:01:37 1:31:51
Feat database upgrade appwrite/appwrite#5710 6 days, 5:02:00 7 days, 7:53:42
refactor collections config appwrite/appwrite#5709 10:08:08 14:36:36
Update database utopia-php/abuse#55 0:18:44 0:20:05
Update database utopia-php/audit#51 0:19:36 0:20:37
feat: update database config appwrite/appwrite#5708 None 19:34:28
Update delete session description to be actually correct appwrite/appwrite#5707 7:03:07 None
[WIP] Replacing all native curl calls with the new fetch library utopia-php/analytics#44 None None
Ensure API endpoints have required params first appwrite/docs#386 1 day, 1:49:16 34 days, 3:23:22
delete unnecessary project collections task appwrite/appwrite#5705 0:53:01 22:08:47
Changed GitHub URL text and submission text appwrite/builtwith#27 0:00:06 1:03:05
Bug Fixed: Change cursor pointer in checkbox's disabled state appwrite/pink#92 0:00:03 None
Add support for multiple events per endpoint appwrite/appwrite#5703 0:02:14 None
cache save refactor appwrite/appwrite#5700 None None
Changed Twitter URL text for easier understanding appwrite/builtwith#26 0:00:03 16:27:20
Collection not found utopia-php/database#282 1 day, 15:36:47 1 day, 15:36:54
fix delete cache file to dbp-master appwrite/appwrite#5699 2:14:51 2:50:24
Fix cache delete bug master appwrite/appwrite#5698 37 days, 6:01:36 None
Feat: Client error logging appwrite/appwrite#5696 1 day, 23:13:50 None
cache deletion bug fix appwrite/appwrite#5695 1:29:22 2:56:40
chore: remove generateSearch script appwrite/builtwith#24 0:00:04 0:00:12
Feat: Support for CURL in Swoole appwrite/docker-base#12 4 days, 13:50:59 None
Added missing word to portuguese email template appwrite/appwrite#5694 1 day, 16:18:08 None
Add Swift 5.8 Runtime open-runtimes/open-runtimes#167 6 days, 18:31:49 41 days, 15:04:08
Adding Funcover as a tool appwrite/awesome-appwrite#494 21:01:30 21:01:39
refactor cache save appwrite/appwrite#5689 None 1 day, 0:37:07
style: add gap between project title and upvote appwrite/builtwith#23 0:00:03 0:00:20
refactor: added type hints for Python SDK appwrite/sdk-generator#665 12 days, 8:48:52 23 days, 17:30:00
REST API improvements in docs appwrite/docs#385 27 days, 8:04:30 45 days, 8:54:53
Update 1.4.x from Master appwrite/appwrite#5683 2 days, 6:43:05 2 days, 12:37:07
Add generic attribute model page. appwrite/docs#384 None None
Oauth provider guides appwrite/docs#383 0:00:17 None
Fix: $permissions returns as object rather than array utopia-php/database#281 0:05:01 11:09:27
very simple text annotation support utopia-php/image#26 None None
Fix docs events (Homepage #225) appwrite/docs#382 0:40:37 None
feat: use Link component, fix mobile menu appwrite/builtwith#22 0:00:05 3 days, 0:06:40
fix: missing import appwrite/appwrite#5672 None 0:01:54
style: fix project image aspect ratios appwrite/builtwith#21 0:00:07 0:58:15
fix for failing flutter test appwrite/sdk-generator#664 4 days, 19:36:09 4 days, 19:41:44
Appwrite CLI - Flutter and Generator commands appwrite/sdk-generator#663 None None
Update document missing params error message appwrite/appwrite#5671 1 day, 18:21:29 5 days, 7:25:51
V19 migration appwrite/appwrite#5668 2 days, 15:50:03 14 days, 16:10:53
ci: create CI script to build cloud images appwrite/appwrite#5666 None 3:16:00
Added send_http_request example using Dart open-runtimes/examples#150 34 days, 15:36:12 None
refactored email template appwrite/appwrite#5665 20:16:21 1 day, 2:26:05
Add support for label permissions utopia-php/database#280 29 days, 20:40:23 38 days, 10:52:04
Reorder databases subheadings based on importance appwrite/docs#381 2:14:41 2:14:47
Wildcards can't be used in channel appwrite/docs#380 3:21:33 49 days, 11:47:29
Mention wildcards under Realtime channels appwrite/docs#379 0:01:24 0:02:40
feat: improve api keys appwrite/console#460 0:00:23 None
Feat: Mulitple Events Execution appwrite/appwrite#5658 None None
[Snyk] Upgrade cross-fetch from 3.1.5 to 3.1.6 appwrite/sdk-for-web#57 None None
Appwrite console internationalization : Typesafe-i18n appwrite/console#459 0:00:04 None
remove additional white spaces appwrite/sdk-generator#662 4:01:06 1 day, 0:30:48
Add RuPay Credit Card appwrite/appwrite#5651 None 10:32:14
Sync master with 1.3.x appwrite/appwrite#5649 3:25:37 3:29:00
Updates for 1.3.7 appwrite/appwrite#5648 0:11:01 1:04:34
chore: update utopia-php/framework appwrite/appwrite#5647 None 0:02:33
Fix trailing slashes master utopia-php/http#100 0:02:05 0:14:56
feat: add support for trailing slashes in routes and urls utopia-php/http#99 0:03:58 0:13:28
Added event.preventDefault(); appwrite/playground-for-web#83 0:50:19 0:52:32
feat: update playground appwrite/playground-for-android#29 0:00:39 0:00:58
Fix the routing for the default OAuth2 pages appwrite/appwrite#5643 None 0:00:11
Fix the routing for the default OAuth2 pages appwrite/appwrite#5640 9:50:01 9:56:44
Fix default project appwrite/appwrite#5639 2 days, 21:59:31 43 days, 22:55:53
feat: rejectProject function, add userId to projects, add desktop and cli platforms, misc fixes appwrite/builtwith#20 0:00:07 2 days, 18:25:46
cache perm fix appwrite/appwrite#5638 3 days, 20:14:47 3 days, 20:15:01
sync 1.3.x appwrite/appwrite#5637 0:00:48 0:38:53
release: 1 3 6 new appwrite/appwrite#5636 None 0:05:30
release: 1.3.6 appwrite/appwrite#5635 None 0:05:05
chore: prepre 1.3.6 appwrite/appwrite#5634 0:01:05 4 days, 2:19:10
fix: remove default order appwrite/console#458 0:00:08 0:03:31
fix: trailing wildcards appwrite/appwrite#5633 0:27:39 0:27:49
feat: add trailing wildcards utopia-php/http#98 0:01:42 0:06:45
fix: trailing wildcards appwrite/appwrite#5632 0:01:55 0:38:14
Extract db from list while backing appwrite/appwrite#5630 8:01:24 4 days, 7:51:57
Add user labels to user list and detail pages appwrite/console#457 0:00:07 None
Update link to cron docs appwrite/console#456 0:00:08 16:20:31
[Snyk] Upgrade express from 4.18.1 to 4.18.2 appwrite/playground-for-web#82 None None
Add syntax for all SDKs in query. appwrite/docs#377 2 days, 11:05:08 None
feat: trailing wildcards utopia-php/http#97 4:46:25 20:14:04
feat: migrate to cloud, hamburger menu, refactors appwrite/demos-for-astro#6 0:00:05 6 days, 3:21:37
Update file name appwrite/appwrite#5624 1 day, 6:59:53 1 day, 7:00:01
Refactor collections config appwrite/appwrite#5622 6 days, 4:59:30 None
Allow Updating email and phone without password appwrite/appwrite#5621 1 day, 15:36:57 1 day, 15:37:03
Fix system performance appwrite/appwrite#5620 0:02:38 1 day, 12:19:06

Discussions Closed in June 2023

Issue Metrics

Metric Value
Average time to first response 46 days, 21:04:57.833333
Average time to close 261 days, 23:52:18.166667
Average time to answer 2 days, 11:16:25
Number of items that remain open 0
Number of items closed 6
Total number of items created 6
Title URL Time to first response Time to close Time to answer
Improvements to Administering Collections appwrite/appwrite#2720 10:57:38 506 days, 9:55:12 None
Time-Based One Time Password 2fa support. appwrite/appwrite#5681 3 days, 4:47:09 6 days, 20:46:46 None
Default value for attribute is not being set on the appwrite console appwrite/appwrite#5613 12:47:33 2 days, 11:26:02 2 days, 5:54:38
subscribe functionality in python sdk? appwrite/appwrite#5596 2 days, 6:49:53 2 days, 18:19:08 2 days, 16:38:12
Ability to Disable any of Appwrite's Service appwrite/appwrite#2475 0:02:10 540 days, 1:20:54 None
Events/Function trigger for realtime subscribe/unsubscribe appwrite/appwrite#2587 274 days, 19:05:24 513 days, 9:25:47 None

Discussions Closed in June 2023

Issue Metrics

Metric Value
Average time to first response 46 days, 21:04:57.833333
Average time to close 261 days, 23:52:18.166667
Average time to answer 2 days, 11:16:25
Number of items that remain open 0
Number of items closed 6
Total number of items created 6
Title URL Time to first response Time to close Time to answer
Improvements to Administering Collections appwrite/appwrite#2720 10:57:38 506 days, 9:55:12 None
Time-Based One Time Password 2fa support. appwrite/appwrite#5681 3 days, 4:47:09 6 days, 20:46:46 None
Default value for attribute is not being set on the appwrite console appwrite/appwrite#5613 12:47:33 2 days, 11:26:02 2 days, 5:54:38
subscribe functionality in python sdk? appwrite/appwrite#5596 2 days, 6:49:53 2 days, 18:19:08 2 days, 16:38:12
Ability to Disable any of Appwrite's Service appwrite/appwrite#2475 0:02:10 540 days, 1:20:54 None
Events/Function trigger for realtime subscribe/unsubscribe appwrite/appwrite#2587 274 days, 19:05:24 513 days, 9:25:47 None

Discussions Opened in July 2023

Issue Metrics

Metric Value
Average time to first response 1 day, 18:31:13.500000
Average time to close 9 days, 14:44:36.500000
Average time to answer 3 days, 10:18:58.250000
Number of items that remain open 14
Number of items closed 2
Total number of items created 16
Title URL Time to first response Time to close Time to answer
Support from ftp appwrite/appwrite#5902 1 day, 6:43:47 None None
Flexibility when using Permissions (document access using conditional logic) appwrite/appwrite#5822 15:32:28 None None
Passing a variable from the client sdk to function appwrite/appwrite#5869 2 days, 16:35:48 None None
Best Practice To Making appwrite function as fast as possible. appwrite/appwrite#5882 0:00:43 None None
Issues with setting up an account in local instance of appwrite appwrite/appwrite#5823 5 days, 10:54:47 11 days, 0:41:18 8 days, 19:26:51
Not able to stream large videos using File View appwrite/appwrite#5868 None None None
Error "No address associated with hostname" from my flutter app appwrite/appwrite#5776 2:19:43 None None
Error 400 Param "code" is not optional. Error ID: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx appwrite/appwrite#5817 8 days, 16:44:31 None None
Best practices for securing Appwrite appwrite/appwrite#5862 14:35:34 None None
Limit list document appwrite/appwrite#5812 0:56:09 8 days, 4:47:55 None
Announcing the Appwrite .NET SDK (Beta) ๐Ÿš€ appwrite/appwrite#5820 3:12:28 None None
Calling All Appwrite Users! Vote for Appwrite Integration in FlutterFlow! appwrite/appwrite#5841 None None None
question about how robust is appwrite appwrite/appwrite#5834 17:55:44 None 18:09:33
Which timezone appwrite function CRON schedule use? appwrite/appwrite#5819 3 days, 13:52:51 None 3 days, 15:59:34
Query method not valid appwrite/appwrite#5804 5:10:58 None 11:39:55
Mutiple email support appwrite/appwrite#5759 14:41:38 None None
This report was generated with the Issue Metrics Action

PRs Closed in August 2023

Issue Metrics

Metric Value
Average time to first response 9 days, 6:21:32.200000
Average time to close 30 days, 0:44:26.801170
Number of items that remain open 0
Number of items closed 342
Total number of items created 342
Title URL Time to first response Time to close
Make install confirmation case insensitive appwrite/appwrite#6097 0:05:24 0:05:53
Update the trigger for the cleanup actions cache workflow appwrite/appwrite#6096 0:03:08 0:06:45
Sync master into 1.5.x appwrite/appwrite#6092 0:19:23 0:19:31
Sync 1.5.x with master appwrite/appwrite#6091 None 0:00:36
fix: dart headers appwrite/sdk-generator#706 2:10:17 2:10:21
fix: headers keyword for .net appwrite/sdk-generator#705 2:14:56 2:22:21
Chore update migrations appwrite/appwrite#6084 0:03:35 0:03:47
Fix attribute + document import utopia-php/migration#14 0:21:32 0:31:34
Update firebase connect scope appwrite/appwrite#6083 0:01:27 0:01:32
Fix swapped from/to name appwrite/appwrite#6081 0:31:19 0:32:59
Create a GH workflow to cleanup the GH cache appwrite/appwrite#6080 0:12:07 17:21:11
Fix router error appwrite/appwrite#6079 0:14:56 1:13:06
Fix mock headers appwrite/appwrite#6078 0:03:47 0:08:13
fix: missing variable in email templates appwrite/appwrite#6077 0:40:16 0:57:06
Fix domains migration appwrite/appwrite#6076 0:06:07 0:11:23
Fix shadowed parameters appwrite/sdk-generator#703 16:52:29 16:52:34
Chore sync master appwrite/appwrite#6074 0:07:31 0:11:23
Chore update version appwrite/appwrite#6073 0:05:28 0:36:32
1.4 Fixes appwrite/appwrite#6072 4:01:50 8:48:10
Add github app config information appwrite/docs#424 23:15:54 1 day, 1:26:18
Fix scopes appwrite/appwrite#6071 0:12:54 0:42:20
Update the uprade docs to use the new upgrade command appwrite/docs#423 1:02:08 1:02:18
Fix internal calls relying on public scope appwrite/console#525 0:07:46 0:21:28
Add max_connetions variable appwrite/appwrite#6070 None 0:03:27
[vcs] - Added read & write roles appwrite/appwrite#6069 None 0:10:08
Feat upgrade task appwrite/appwrite#6068 2:12:41 2:21:19
chore: update framework version utopia-php/platform#14 0:01:55 0:02:26
chore: add update framework version appwrite/appwrite#6067 0:18:30 0:21:25
chore: update framework version utopia-php/vcs#4 0:01:00 0:01:33
feat: bring back order id utopia-php/http#107 0:00:40 0:04:43
chore: upgrade console appwrite/appwrite#6066 None 0:00:10
fix: lastminute 1.4 qa appwrite/console#524 0:00:06 3:27:03
chore: release 1.4.x appwrite/appwrite#6065 None 4:46:03
feat: release 1.4.x appwrite/sdk-for-cli#91 4:21:10 4:21:16
feat: release 1.4.x appwrite/sdk-for-node#58 2:22:38 4:20:54
feat: release 1.4.x appwrite/sdk-for-deno#14 0:58:17 4:19:52
feat: release 1.4.x appwrite/sdk-for-php#21 4:19:43 4:19:47
feat: release 1.4.x appwrite/sdk-for-python#69 2:11:14 4:19:02
feat: release 1.4.x appwrite/sdk-for-ruby#15 4:18:49 4:18:54
feat: release 1.4.x appwrite/sdk-for-kotlin#32 1:22:22 4:18:30
feat: release 1.4.x appwrite/sdk-for-swift#10 4:16:46 4:16:51
Fix health db endpoint behavior appwrite/appwrite#6064 0:10:54 0:12:07
feat: release 1.4.0 appwrite/sdk-for-apple#36 4:45:47 4:45:53
feat: release 1.4.0 appwrite/sdk-for-android#36 1:56:58 4:49:34
feat: release 1.4.0 appwrite/sdk-for-web#72 1:08:25 4:43:13
feat: release 1.4.0 appwrite/sdk-for-flutter#168 1:32:33 5:00:32
fix: arm64 regular expression utopia-php/system#26 0:01:18 0:50:32
Small assistant fixes appwrite/console#523 0:00:08 6:16:32
Check if host is public domain before requesting appwrite/appwrite#6060 0:11:47 0:30:15
Fix smtp appwrite/appwrite#6059 1:23:18 9:05:04
fix: path var naming collision appwrite/sdk-generator#702 0:45:43 8:54:59
master -> 1.4.x appwrite/appwrite#6058 0:08:08 0:08:32
cl-1.4.x -> 1.4.x appwrite/appwrite#6057 0:11:56 0:42:16
1.4.x appwrite/docs#422 2:42:00 12:05:05
Updated search repositories logic utopia-php/vcs#3 0:02:22 0:14:24
fix: more qa appwrite/templates#47 None 16:46:08
Fix: function docs qa appwrite/docs#421 2:49:16 2:49:38
adds internal id support for create document utopia-php/database#318 0:17:24 23:13:13
Feat: Upgrade DB lib utopia-php/audit#57 0:14:17 0:23:57
Feat: Upgrade DB version utopia-php/abuse#61 0:14:36 0:24:13
fix: qa last fixes appwrite/console#522 0:00:06 6:25:22
feat: Add marketplace usecases & missing templates appwrite/console#521 0:00:07 2:53:27
Disable swoole curl hook appwrite/appwrite#6053 None 16:29:07
chore: cleanup some code appwrite/console#520 0:00:07 13:52:08
chore: add functions missing doc links appwrite/console#519 0:00:06 14:53:50
1.4 adjustments appwrite/console#518 0:00:08 0:42:57
Fix: SMTP behaviour appwrite/appwrite#6052 0:48:15 21:51:33
add dotenv appwrite/assistant#11 None 0:02:51
update assistant version appwrite/appwrite#6050 22:22:40 22:25:20
Update scrape.py and docs folder appwrite/assistant#10 0:07:04 0:07:09
updates appwrite assistant docker image version appwrite/appwrite#6048 0:05:06 0:05:51
Feat SMTP Template Simplification appwrite/appwrite#6047 0:24:11 3:23:02
feat: show native logs open-runtimes/open-runtimes#191 1 day, 16:28:00 3 days, 20:49:05
Version Packages (next) appwrite/pink#108 0:00:02 0:00:27
Version Packages (next) appwrite/pink#107 0:00:02 0:00:26
Fix function doc link appwrite/console#517 0:00:07 15:08:33
feat: Port Email Contact Form appwrite/templates#46 2 days, 13:44:54 4 days, 17:07:55
feat: Port Censor with Redact appwrite/templates#45 2 days, 13:58:39 4 days, 14:26:40
Fixes 1.4 appwrite/console#516 0:00:08 3 days, 16:33:20
feat: document clone method utopia-php/database#315 4:02:03 4 days, 23:39:01
Add alot more details around service account key creation appwrite/docs#420 4:29:41 6:05:59
Migration copy writing improvements appwrite/console#515 0:00:07 5 days, 12:32:57
Sync 1.5.x appwrite/appwrite#6030 0:32:37 0:37:20
Version Packages (next) appwrite/pink#106 0:00:02 0:01:38
Changeset release/style updates for release 1.4 appwrite/pink#105 0:00:18 0:02:07
Feat: support for old storage vars open-runtimes/executor#37 1:29:11 1:29:54
Fix colliding ID overrides appwrite/appwrite#6029 0:04:51 2:23:52
Feat: Remove pools of orchestration open-runtimes/executor#36 2:46:14 2:46:31
fix: QA smtp templates appwrite/console#514 0:00:06 0:17:48
Version Packages (next) appwrite/pink#104 0:00:02 0:16:19
QA fixes appwrite/templates#44 None 1:34:48
Improved 400 error messages utopia-php/http#105 1:07:08 1:07:37
Improve 1.4 copy appwrite/appwrite#6024 1 day, 4:09:30 1 day, 4:25:04
Make sure document permissions are not checked if not enabled utopia-php/database#313 0:26:14 0:26:50
Clone queries when grouping/getting by type so that mutations are not made across references utopia-php/database#312 0:04:03 0:11:59
Fix more headings for sentence case appwrite/console#513 0:00:07 6 days, 12:33:50
Fix no invalid keys utopia-php/database#311 0:11:42 2:16:45
rollback to old usage charts appwrite/console#512 0:00:06 1 day, 2:58:30
fix file upload appwrite/console#511 0:00:06 0:15:08
Fix: Improve logging open-runtimes/executor#35 23:41:52 23:48:50
Feat: Add tmp cleanup open-runtimes/executor#34 0:02:49 0:11:44
Add Escapes to CLI::Execute open-runtimes/executor#33 0:02:53 0:12:56
feat: set utf-8 default open-runtimes/open-runtimes#190 5 days, 20:46:39 8 days, 0:42:52
Added commit hash to git clone command utopia-php/vcs#2 0:50:19 1:10:36
Fix throwing global exception instead of database exception utopia-php/database#310 22:41:40 22:51:05
Rollback to old usage appwrite/appwrite#6022 15:22:30 1 day, 4:08:21
Feat: public getFiles in local device utopia-php/storage#83 23:22:42 23:32:01
Fix: Failed build appwrite/assistant#9 0:03:23 0:04:30
Feat: Add 1.4.x to bug report #63 9 days, 7:21:27 9 days, 7:25:14
Fix domains on cl 1.1.x appwrite/appwrite#6021 0:01:41 0:01:46
Improve wizard copy. appwrite/console#509 0:00:07 1 day, 16:20:10
Fix: env var name appwrite/assistant#8 None 6:41:43
Fix arm build and api key appwrite/assistant#7 14:51:25 1 day, 11:03:19
Sync with Algolia Port appwrite/templates#43 1 day, 16:06:59 3 days, 16:09:29
Merge 1.4.x into cl-1.4.x appwrite/appwrite#6015 None 3:09:17
Fix: Memory leak open-runtimes/executor#32 0:01:03 0:01:09
Discord Command Bot Ports appwrite/templates#42 1 day, 20:16:11 3 days, 19:42:17
Prompt ChatGPT ports appwrite/templates#41 1 day, 23:39:23 3 days, 22:58:50
Revert some migrations appwrite/appwrite#6011 4 days, 11:50:32 4 days, 11:59:44
Chore 1.4.x upgrade appwrite/appwrite#6010 2:22:16 14:06:05
1.4.x -> cl-1.4.x appwrite/appwrite#6009 None 0:05:26
Bump sdk for web version appwrite/appwrite#6008 3:28:16 13 days, 3:56:33
Bump package version for release appwrite/sdk-for-web#69 3:57:50 3:57:56
QA Fixes 1.4 appwrite/console#508 0:00:07 4 days, 21:49:01
Update base image and extension versions appwrite/docker-base#18 4:37:42 4:39:29
Small QoL changes appwrite/console#507 0:00:05 20:24:57
Fix pending counters utopia-php/migration#12 1:04:07 1:04:11
fix: alert is not dismissible appwrite/console#506 0:00:06 0:00:23
Add test for invalid keys utopia-php/database#308 17:30:54 18:20:34
Update V19 Update Migrations for 1.4.x appwrite/appwrite#6001 5 days, 23:42:27 5 days, 23:42:39
Fix Migrations Stability appwrite/appwrite#5998 0:31:16 1 day, 17:08:18
Fix the repo url for apple sdk in getting started for apple appwrite/docs#419 0:02:11 0:27:33
Feat target controllers account user appwrite/appwrite#5996 None 7 days, 17:56:19
Add FB BucketId Sanitise and improve getStatusCounters utopia-php/migration#11 0:18:10 0:18:14
Dev appwrite/sdk-for-web#68 15:40:56 1 day, 22:58:12
Regenerate using v0.33.* of SDK generator to fix missing types appwrite/sdk-for-web#67 0:08:16 0:26:31
Feat 1.4 update migrations appwrite/appwrite#5993 None 15 days, 0:27:08
Improve Firebase Stability utopia-php/migration#10 18:01:10 18:01:15
Fix 5204 CDN code sample script tag using self-closing syntax appwrite/console#504 0:00:04 12 days, 22:42:14
Update user labels based on design review appwrite/console#503 0:00:07 6 days, 17:17:40
Cl 1.4.x appwrite/appwrite#5989 None 0:04:36
Replace mentions of 2022 with 2023 appwrite/hacktoberfest#57 0:00:04 19:52:54
Create 1.4 response filter appwrite/appwrite#5988 7 days, 16:39:51 8 days, 1:26:26
refactor test utopia-php/storage#82 8:36:24 8:42:23
Create 1.4 request filters appwrite/appwrite#5972 10 days, 14:45:23 10 days, 20:42:33
Add insert many function utopia-php/mongo#13 2 days, 18:14:27 2 days, 18:24:35
Split auth guide, add label, team, and password security to docs. appwrite/docs#412 6 days, 2:47:07 16 days, 0:57:27
fixes edge case in comparison check utopia-php/database#306 2:56:22 3 days, 4:08:06
fix: simplify deepKeys type to fix checks appwrite/console#502 0:00:06 0:00:51
fixes debugger usage appwrite/appwrite#5970 0:05:51 2:51:39
kraken compression method added open-runtimes/examples#173 None 0:22:05
Update database utopia-php/abuse#60 1:40:18 1:50:57
Update database utopia-php/audit#56 1:42:01 1:52:40
Update wizard steps to use formal language appwrite/console#501 0:00:06 10 days, 21:27:47
Update how we label experimental features appwrite/docs#411 11 days, 8:38:19 11 days, 8:38:23
Change everything to sentence case appwrite/console#500 0:02:16 10 days, 22:22:00
Fix isEmpty returning true if $id is not selected utopia-php/database#305 2:02:12 2:05:39
Fix secrets, NHost Signature and router issues appwrite/appwrite#5969 6:09:31 6 days, 0:55:38
Add OAuth Reports and Fix Firebase SDK Calls appwrite/console#499 0:00:07 3:32:14
Feat: Move oauth secret to identity appwrite/appwrite#5968 0:01:31 0:01:38
add title and description props and slots for Modal appwrite/console#498 0:00:08 12 days, 22:57:17
bump db version utopia-php/abuse#59 0:02:39 0:13:14
bump database version utopia-php/audit#55 0:03:03 0:13:38
add checking of nested docs id in comparison check when updating document utopia-php/database#304 10:26:59 1 day, 4:53:20
Update README.md utopia-php/migration#9 0:00:52 0:01:32
Rename library to Migration utopia-php/migration#8 0:03:09 0:13:12
Merge branch 'command-center-and-migrations' into filtering appwrite/console#497 0:00:06 0:07:06
Add a secrets attribute to the identities collection appwrite/appwrite#5966 0:19:56 0:31:50
Feat: More platforms to release open-runtimes/proxy#15 0:35:10 0:36:07
Fix login action version open-runtimes/executor#31 0:01:38 0:01:48
Feat: Introduce platforms to release open-runtimes/executor#30 0:54:46 0:54:58
Update .env var appwrite/assistant#6 0:03:36 0:03:41
Fix: Set pool size to 100 open-runtimes/executor#29 0:10:16 0:18:38
Remove VCS assets appwrite/appwrite#5964 0:01:35 0:01:44
Hacktoberfest 2023 Prep appwrite/hacktoberfest#56 0:00:04 1 day, 12:30:23
Sync 1.4.x appwrite/appwrite#5961 None 2:24:44
1.4.x appwrite/console#496 0:00:06 19 days, 20:17:25
fixed issue that didn't allow a user to update a document when deleting elements in an array attribute appwrite/console#495 0:00:03 2 days, 17:14:50
Cl 1.4.x appwrite/appwrite#5960 None 21 days, 8:57:34
rename setTimeout methods utopia-php/database#303 15:24:55 15:25:01
0.1.x to main open-runtimes/executor#28 0:15:47 0:16:21
chore: update ci appwrite/sdk-for-console#5 None 0:00:40
added Jobwrite in react showcase appwrite/awesome-appwrite#497 None 6 days, 10:19:05
Separate OAuth2 info from Sessions into Identities appwrite/appwrite#5953 1 day, 18:07:19 1 day, 19:12:15
fix: QA changes appwrite/templates#40 12 days, 11:53:01 12 days, 19:47:32
Replace sorting by $createdAt with natural order appwrite/console#493 0:00:06 1 day, 12:35:44
Upgrade console sdk appwrite/sdk-for-console#4 0:17:47 3:05:19
Feat push utopia-php/messaging#19 None 0:02:03
Update README.md appwrite/awesome-appwrite#496 1:06:41 1:06:48
upgrade framework utopia-php/swoole#29 0:15:30 0:16:11
remove arm build appwrite/assistant#5 0:00:42 0:00:46
Fix router execution action utopia-php/http#104 1:16:53 18:14:05
Cloud 1.1.x appwrite/console#492 None 2 days, 2:18:20
Upgrade framework lib version utopia-php/platform#12 1 day, 2:15:41 1 day, 2:15:46
Feat: Combine logs utopia-php/orchestration#32 0:55:50 0:55:55
Feat: Combine logs utopia-php/cli#30 0:26:46 0:29:32
Update Cloud with 1.4.x appwrite/appwrite#5943 None 1 day, 8:40:50
Cloud 1.3.x appwrite/console#491 0:00:07 3 days, 16:48:33
Filtering appwrite/console#490 0:00:05 4 days, 18:40:35
Update Cloud to 1.3.8 appwrite/appwrite#5942 None 1 day, 13:06:04
Cloud 1.1.x appwrite/console#488 0:00:06 0:11:22
Cloud 1.3.x appwrite/appwrite#5940 None 1:24:21
Cloud 1.3.x 2 appwrite/appwrite#5939 None 1:27:44
Implement Migrations appwrite/appwrite#5938 4 days, 17:55:39 5 days, 6:29:56
feat: TypeScript starter appwrite/templates#39 23:28:06 23:28:10
Readme and contribution appwrite/assistant#4 1 day, 21:12:25 1 day, 21:12:32
remove authorization appwrite/assistant#3 0:00:50 0:00:59
Update README.md appwrite/awesome-appwrite#495 3 days, 7:16:52 3 days, 9:18:20
[Bug Fixed] Added Transform Scale up to article cards while hovering appwrite/pink#102 0:00:03 4 days, 12:15:51
Version Packages (next) appwrite/pink#101 0:00:02 13 days, 22:01:09
Version Packages (next) appwrite/pink#100 0:00:03 0:00:54
Add VCS assets appwrite/appwrite#5935 0:01:13 0:01:18
Feat appwrite assistant appwrite/appwrite#5934 0:59:06 4 days, 4:21:11
Add assets for VCS appwrite/appwrite#5933 None 0:20:54
Dockerize appwrite/assistant#2 1 day, 3:19:15 1 day, 3:21:35
Feat: CURL appwrite/docker-base#17 3 days, 0:06:23 3 days, 0:14:48
bump db upgrade version utopia-php/audit#54 0:02:15 0:02:20
bump db upgrade version utopia-php/abuse#58 0:02:35 0:02:41
refactor: streaming js api appwrite/assistant#1 0:34:19 0:34:37
Fallback to $id when validating select queries utopia-php/database#302 0:33:11 0:33:17
Feat 4155 text to speech python open-runtimes/examples#171 None 0:00:14
Bump console to fix missing active deployment bug appwrite/appwrite#5932 0:15:35 0:15:43
Brink conversion method open-runtimes/examples#170 None 0:00:09
Brink tinify compression method open-runtimes/examples#169 None 0:05:46
Fix: cloud active deployment not visible appwrite/console#487 0:00:06 0:04:41
feat: Table Generator Support Cases appwrite/templates#37 20:18:39 23:02:00
Sync with master appwrite/appwrite#5929 5 days, 5:13:29 5 days, 5:13:34
Conversion method open-runtimes/examples#168 None 17:13:25
Add a notice about URL encoding _APP_SMS_PROVIDER appwrite/docs#402 9:58:27 9:58:33
Fixed bug where memberships remained after a team is deleted appwrite/appwrite#5928 1:00:21 3 days, 8:07:45
fix comparison check in updateDocument utopia-php/database#301 0:21:58 1 day, 13:10:59
fix(#430): Change success message to 'Creating Index' for better userโ€ฆ appwrite/console#486 0:00:05 7 days, 2:52:47
Trigger tests on Pull Request open-runtimes/open-runtimes#189 None 0:00:28
fix: error in initialising the Exception constructor in api.php appwrite/appwrite#5924 0:45:01 4:02:58
V19 migration - uid varchar appwrite/appwrite#5923 7 days, 6:43:27 10 days, 13:07:04
Fix-table-spacing appwrite/templates#36 0:06:40 0:06:44
feat: improve docs appwrite/templates#35 0:06:05 0:06:22
Style Appwrite Error Page appwrite/appwrite#5922 5:38:56 1 day, 4:50:55
Separate OAuth2 info from Sessions into Identities appwrite/appwrite#5921 8:49:09 8 days, 7:04:09
Separate OAuth2 info from Sessions into Identities appwrite/appwrite#5920 None 6 days, 21:46:02
Separate OAuth2 info from Sessions into Identities appwrite/appwrite#5919 None 1:42:38
Fix crud operations permission in update relationships utopia-php/database#300 1 day, 4:14:12 21 days, 1:07:38
Delete duplicate users endpoint appwrite/appwrite#5918 1 day, 1:44:51 1 day, 1:44:56
Update the docs for the _APP_SMS_PROVIDER env var appwrite/appwrite#5917 20:19:58 1 day, 11:48:38
Update DSN to support special chars for user and password appwrite/appwrite#5916 0:37:26 13:54:01
Fix missing description for function create build endpoint appwrite/appwrite#5915 0:49:40 21 days, 12:51:35
Start work Docs appwrite/docs#401 15 days, 3:25:46 15 days, 4:29:59
Feat: Bulk Deletion appwrite/console#485 0:00:06 9 days, 0:32:52
Improve Select Query utopia-php/database#299 9 days, 13:36:09 9 days, 13:36:25
update framework appwrite/appwrite#5909 7 days, 23:45:42 23 days, 13:25:56
Fix collection disabled mode checks appwrite/appwrite#5900 0:25:03 24 days, 12:50:08
Improve OAuth2 error handling appwrite/appwrite#5895 18:48:01 4 days, 19:42:10
Fix: Missed during reviews appwrite/templates#34 7 days, 10:52:06 7 days, 10:53:02
Fix 5871 relationships with non existing documents utopia-php/database#298 6:40:12 12 days, 9:19:45
Add ARMV7 and ARMV8 differentiators utopia-php/system#23 2:42:38 11 days, 0:37:43
Add support for batch creates and updates utopia-php/database#297 20 days, 18:21:13 20 days, 21:34:21
Fix 5404 update document without relation permission appwrite/appwrite#5887 2:02:59 22 days, 0:54:28
Feat query support in list attributes & list indexes endpoint appwrite/appwrite#5885 0:47:55 15 days, 22:33:00
Update Akamai integration further according to their latest rebrand appwrite/appwrite#5879 27 days, 12:56:53 27 days, 12:57:02
audio/aac mime type added appwrite/appwrite#5875 7:12:58 13 days, 13:41:18
test updated docker-base version appwrite/appwrite#5867 10 days, 23:20:11 10 days, 23:20:16
Feat: Start commands appwrite/runtimes#58 0:05:52 15 days, 22:32:16
Add migration docs appwrite/docs#399 32 days, 8:30:48 35 days, 20:11:19
feat: Push Notifications with FCM function appwrite/templates#17 14 days, 18:43:03 14 days, 18:45:57
Appwrite 1.4.0 appwrite/appwrite#5844 42 days, 7:27:48 42 days, 7:27:57
Improve Migrations Stablity utopia-php/migration#7 14 days, 3:59:26 22 days, 4:58:18
Command center and migrations appwrite/console#479 0:00:05 23 days, 0:58:44
Functions G4 appwrite/docs#398 13 days, 18:08:41 40 days, 22:24:17
feat: update for database migrations utopia-php/database#292 31 days, 2:47:11 31 days, 2:47:11
Fix database filters utopia-php/database#291 31 days, 8:07:13 31 days, 8:07:13
Fix permission test utopia-php/database#290 7 days, 10:20:08 24 days, 14:17:34
feat: Discord Command Bot function appwrite/templates#7 17 days, 23:06:28 17 days, 23:06:32
feat: GitHub Issue Bot function appwrite/templates#6 19 days, 21:02:28 19 days, 21:02:32
feat: URL Shortener function appwrite/templates#5 21 days, 18:54:10 21 days, 18:54:20
feat: Email Contact Form function appwrite/templates#3 19 days, 23:02:22 19 days, 23:02:28
Update method name for updateMembershipRoles appwrite/appwrite#5800 0:26:59 37 days, 17:30:16
Related to Appwrite 1.4.x release appwrite/sdk-generator#694 11 days, 0:15:19 51 days, 20:46:58
Update inputCron.svelte to fix-#5719-Bug Report: Schedule function wiโ€ฆ appwrite/console#473 0:00:04 58 days, 10:37:17
update Flutter - Dart SDK appwrite/appwrite#5736 69 days, 23:02:03 69 days, 23:16:33
feat: Enum Whitelist appwrite/sdk-generator#674 23 days, 0:09:55 57 days, 6:21:00
Feat: Whitelist enums appwrite/appwrite#5726 36 days, 8:36:54 56 days, 19:04:34
Feat: Functions G4 appwrite/console#465 0:00:05 64 days, 4:55:35
Feat: Functions G4 appwrite/appwrite#5725 11:07:18 71 days, 9:26:24
fix: abuse label for creating phone session appwrite/appwrite#5715 6 days, 14:22:28 52 days, 1:33:13
Update README.md appwrite/docs#387 3:25:32 53 days, 23:26:29
Fix cache delete bug master appwrite/appwrite#5698 37 days, 6:01:36 62 days, 23:41:24
Feat: Support for CURL in Swoole appwrite/docker-base#12 4 days, 13:50:59 51 days, 3:32:09
Added missing word to portuguese email template appwrite/appwrite#5694 1 day, 16:18:08 53 days, 4:52:27
Add generic attribute model page. appwrite/docs#384 73 days, 10:52:10 73 days, 10:52:26
Fix docs events (Homepage #225) appwrite/docs#382 0:40:37 75 days, 8:51:30
feat: add encrypt param to string attribute appwrite/appwrite#5604 22 days, 19:18:08 76 days, 17:40:39
cursor utopia-php/database#278 63 days, 13:46:01 63 days, 20:32:39
Feat: Improve logging label open-runtimes/executor#27 72 days, 21:40:11 72 days, 21:40:33
Feat git integration appwrite/console#454 0:00:07 71 days, 9:07:39
fixed database examples docs readme file to use dart syntax highligโ€ฆ appwrite/sdk-for-flutter#148 70 days, 16:22:53 70 days, 16:22:53
Add a function to get the size of a collection/table in bytes. utopia-php/database#272 16:43:35 80 days, 6:07:04
Feat vcs appwrite/console#449 0:00:06 76 days, 21:46:43
Updated OAuth docs regarding selection of application type appwrite/docs#369 3:04:45 74 days, 2:08:35
Return Relationship Metadata for Offline Support appwrite/appwrite#5556 4:07:44 80 days, 13:57:33
Clarify Deleting Account appwrite/console#447 0:00:07 76 days, 1:25:28
Separate OAuth2 data out of Sessions and into User Identities appwrite/appwrite#5551 60 days, 20:30:58 81 days, 22:26:35
Validate value of x-appwrite-id header appwrite/appwrite#5550 20:15:24 79 days, 14:39:04
fix: relationships from design review appwrite/console#439 0:00:07 89 days, 0:51:31
Update role.dart appwrite/sdk-for-flutter#146 17:56:21 85 days, 4:07:18
Update SMTP template docs appwrite/docs#368 3 days, 1:23:22 115 days, 15:44:58
Cloud cards appwrite/console#423 0:00:05 95 days, 8:10:27
Add a generic OIDC OAuth2 provider appwrite/console#420 0:00:06 95 days, 17:41:03
fix: accept lowercase file extensions utopia-php/storage#79 95 days, 14:23:42 95 days, 14:23:52
Implement Migrations API appwrite/appwrite#5437 27 days, 4:36:49 99 days, 7:48:42
fix: fix input-file dragged file receiving required error appwrite/console#411 0:00:08 111 days, 2:17:29
feat: add password personal data check appwrite/console#405 0:00:06 115 days, 10:39:20
Disallow personal data appwrite/appwrite#5371 2:09:43 116 days, 22:40:50
smtp update appwrite/console#384 0:00:08 121 days, 8:15:56
Added Documentation change on static files appwrite/appwrite#5327 11 days, 16:40:43 137 days, 22:55:51
refactor: onboarding style changes appwrite/console#380 0:00:08 126 days, 1:12:48
Fix 5295 code component style fix appwrite/console#377 0:00:04 131 days, 3:02:21
Feat: addressing methods open-runtimes/proxy#13 118 days, 5:58:29 137 days, 23:52:40
fix: permissions overflow appwrite/console#354 0:00:06 139 days, 18:56:44
Feat: getOptions() utopia-php/balancer#8 143 days, 22:07:51 143 days, 22:07:59
Use VARCHAR instead of CHAR for MariaDB UID utopia-php/database#245 145 days, 16:53:34 155 days, 14:22:24
Dynamic attibute for related Primary key appwrite/appwrite#5197 147 days, 8:26:01 147 days, 15:39:31
Feat 4466 deepgram language detection using node open-runtimes/examples#138 89 days, 7:18:23 150 days, 16:48:54
Fix: build worker warning appwrite/appwrite#5156 None 177 days, 18:51:58
Add GitHub Adapter utopia-php/vcs#1 103 days, 19:14:21 167 days, 9:23:20
Feat: Functions G4 appwrite/console#312 0:00:05 165 days, 5:59:57
Update errors.php appwrite/appwrite#5136 26 days, 3:50:50 179 days, 4:55:22
initiate stripe integration POC appwrite/console#258 0:00:03 184 days, 10:50:33
New usage support appwrite/console#255 0:00:05 178 days, 6:37:27
Update Appwrite cloud & 1.2 announcement in README-CN appwrite/appwrite#5074 3 days, 7:28:10 191 days, 13:31:13
[MAIN] Feat db pools appwrite/appwrite#5018 None 199 days, 0:33:51
Feat: v3 support open-runtimes/executor#22 40 days, 20:38:32 207 days, 7:14:31
Refactor: enable strict null checks appwrite/console#225 0:00:03 230 days, 15:16:30
Fix: boolean validator utopia-php/http#86 None 229 days, 22:37:44
Processlist appwrite/appwrite#4881 224 days, 12:04:45 224 days, 12:04:46
feat-4653-keycloak-oauth appwrite/console#192 0:00:04 263 days, 19:43:14
Added Keycloak OAuth2 Provider appwrite/appwrite#4660 8:46:38 277 days, 20:20:58
Query remove extra find query utopia-php/abuse#38 264 days, 6:59:24 264 days, 14:12:25
Feat: Gitpod support utopia-php/ab#9 294 days, 13:33:30 294 days, 13:33:36
docker files added appwrite/hacktoberfest#46 0:00:05 309 days, 7:56:20
draft: i18n appwrite/console#55 0:00:03 323 days, 19:03:23
[DEV] Feat db pools appwrite/appwrite#3423 18 days, 21:39:42 409 days, 0:59:52
Transfer functionality to transfer file from one device to another utopia-php/storage#34 2:52:44 518 days, 8:23:23

This report was generated with the Issue Metrics Action
Search query used to find these items: org:appwrite org:open-runtimes org:utopia-php is:pull-request closed:2023-08-01..2023-08-31

Discussions Opened in August 2023

Issue Metrics

Metric Value
Average time to first response 1 day, 3:26:59.666667
Average time to close 4 days, 13:21:32.666667
Average time to answer None
Number of items that remain open 9
Number of items closed 3
Total number of items created 12
Title URL Time to first response Time to close Time to answer
Upgraded to 1.4.1 without any errors but still 1.3.6 appwrite/appwrite#6085 0:01:03 0:16:04 None
[please help] How to Lock: account.create? appwrite/appwrite#6049 None None None
Get Tweets of Users with Appwrite appwrite/appwrite#6044 18:16:09 None None
I can't seem to schedule Cron jobs if any value is two digits appwrite/appwrite#6038 None None None
Needed Documnet level security restriction based on its attribute value or relative query which returns true, like in supabase appwrite/appwrite#5973 2 days, 5:51:27 None None
Verifying JWT token serverside appwrite/appwrite#5984 None None None
async python sdk ? appwrite/appwrite#5967 8:59:26 None None
serving static files ? appwrite/appwrite#5948 3 days, 1:22:11 None None
Python Function fails if the json response fields are not as expected appwrite/appwrite#5963 10:11:42 None None
Fail to run function python code appwrite/appwrite#5952 None 1 day, 18:00:39 None
Why did Appwrite create its own docker images for InfluxDB, Telegraf and ClamAV? appwrite/appwrite#5944 None 11 days, 21:47:55 None
Can I share a database between multiple apps (projects) appwrite/appwrite#5931 None None None

This report was generated with the Issue Metrics Action
Search query used to find these items: org:appwrite org:open-runtimes org:utopia-php type:discussions created:2023-08-01..2023-08-31

Discussions Opened in June 2023

Issue Metrics

Metric Value
Average time to first response 4 days, 5:43:03.142857
Average time to close 6 days, 20:46:46
Average time to answer 46 days, 5:03:02
Number of items that remain open 6
Number of items closed 1
Total number of items created 7
Title URL Time to first response Time to close Time to answer
Get data from database appwrite/appwrite#5660 13 days, 22:50:55 None None
How to store json type of data into a single document ? appwrite/appwrite#5704 4 days, 18:44:04 None None
If you could add one thing to Appwrite's docs, what would it be? appwrite/appwrite#5692 0:40:44 None None
Appwrite imange 1.3.7 not working on docker desktop win11 appwrite/appwrite#5655 21:17:20 None None
Time-Based One Time Password 2fa support. appwrite/appwrite#5681 3 days, 4:47:09 6 days, 20:46:46 None
Connect to database using Django appwrite/appwrite#5669 6 days, 0:11:30 None 46 days, 5:03:02
Bing chat generated a benchmark report for you using k6 - RESULT appwrite/appwrite#5656 19:29:40 None None

PRs Closed in July 2023

Issue Metrics

Metric Value
Average time to first response 9 days, 9:29:44.990291
Average time to close 35 days, 12:31:04.978355
Number of items that remain open 0
Number of items closed 231
Total number of items created 231
Title URL Time to first response Time to close
Noah open-runtimes/examples#166 None 0:00:12
Update DSN to support special chars for user and password utopia-php/dsn#3 5:57:52 5:57:58
Delete project when deleting org appwrite/appwrite#5898 5:18:26 1 day, 2:19:30
feat: update sentry constructor utopia-php/logger#29 2:10:39 12:58:45
Update README.md appwrite/templates#33 0:00:30 0:00:38
Feat: req body raw open-runtimes/open-runtimes#187 0:22:21 0:58:58
updated account.php to not include set cookies for default Oauth route appwrite/appwrite#5892 None 0:06:38
Make 1.4.x compatible with latest db release 0.39.0 appwrite/appwrite#5890 None 4:41:17
Docs: Add public docs appwrite/templates#32 3:40:16 7:34:31
downgrade swoole to 5.0.1 appwrite/docker-base#16 None 0:31:30
Clear validator when closing wizard appwrite/console#483 0:00:06 13:24:10
bump upgrade database utopia-php/audit#53 0:04:07 10:30:14
bump update database utopia-php/abuse#57 0:04:54 10:33:33
Merge master into 1.4.x appwrite/appwrite#5886 14:21:44 14:21:51
Remove the OAuth2 Callback endpoints from api group appwrite/appwrite#5884 16:21:44 1 day, 12:35:20
Update description for user email, phone, and preferences appwrite/console#482 0:00:06 2 days, 1:30:10
Fix: Deploys open-runtimes/open-runtimes#186 17:19:30 17:43:49
Fix: Bugs after QA open-runtimes/open-runtimes#185 20:34:05 20:56:13
add a cookie test utopia-php/swoole#28 0:01:11 0:14:21
update swoole version appwrite/docker-base#15 0:07:39 0:41:32
Fix: Improve docs open-runtimes/open-runtimes#184 0:05:58 1:11:49
Ensure console requests include project header appwrite/console#481 0:00:05 12:11:57
Further rebrand from Akamai appwrite/docs#400 8:02:05 8:02:15
Fix: Rename new runtimes open-runtimes/open-runtimes#183 None 17:01:59
fix: key attribute trim isn't trim appwrite/console#480 0:00:06 0:03:24
Feat: Update base images open-runtimes/open-runtimes#182 None 0:57:24
Feat: Add Deno 1.35 open-runtimes/open-runtimes#181 0:13:14 0:29:35
Upgrade dependencies utopia-php/swoole#27 4:21:45 4:21:51
Feat upgrade task appwrite/appwrite#5874 8:05:11 2 days, 20:56:48
Fix prefs permissions appwrite/sdk-generator#695 2:49:59 2:50:08
Send tweet open-runtimes/examples#161 None 0:01:17
Fix swift build for multiple dependencies open-runtimes/open-runtimes#180 0:27:43 1 day, 17:43:24
fix: X domain console cookie ENV var appwrite/appwrite#5873 2:43:07 2:43:12
Upgrade dependencies appwrite/docker-base#14 2 days, 3:03:55 2 days, 3:04:00
upgrade dependencies appwrite/appwrite#5866 3:09:29 3:09:34
Fix swift build for multiple dependencies open-runtimes/open-runtimes#179 3:41:35 1 day, 10:10:56
fix: testing issues appwrite/templates#31 0:31:57 4 days, 20:56:25
feat: dotnet starter appwrite/templates#30 0:06:48 14:21:33
feat: Swift starter appwrite/templates#29 0:04:41 0:04:44
Create a dedicated upgrade command appwrite/appwrite#5860 19:08:32 3 days, 4:06:52
Create GH workflow to generate github metrics #23 8:43:38 4 days, 7:34:41
feat: C++ starter appwrite/templates#28 1:29:22 19:30:30
feat: Deno starter appwrite/templates#27 1:56:08 4:41:44
feat: Kotlin starter appwrite/templates#26 3:16:26 6:02:23
feat: Java starter appwrite/templates#25 3:47:51 6:34:36
feat: Ruby starter appwrite/templates#24 0:17:51 4:39:47
icons: release 1 4 appwrite/pink#98 0:00:03 0:10:55
feat: X domain console cookie appwrite/appwrite#5859 8:40:45 1 day, 3:23:54
feat: PHP starter appwrite/templates#23 1:39:59 2:19:14
Feat: Table Generator appwrite/templates#22 3:25:40 5 days, 23:55:11
Add new language versions to V3 open-runtimes/open-runtimes#178 1 day, 13:21:36 4 days, 0:05:38
Upgrade remaining runtimes to V3 open-runtimes/open-runtimes#177 3 days, 8:10:01 3 days, 9:12:38
Update Project providers to also include the provider key appwrite/appwrite#5857 5:58:14 5:58:19
Add support for queries in List attributes and List Indexes endpoint appwrite/appwrite#5856 5 days, 3:05:45 6 days, 1:27:38
Update description for User and Key accesedAt appwrite/appwrite#5855 10:09:20 10:09:24
Chunk it utopia-php/storage#80 0:17:48 2 days, 16:21:19
feat: Dart starter appwrite/templates#21 19:52:56 20:27:57
docs: update node starter appwrite/templates#20 0:08:02 0:17:33
feat: Python starter template appwrite/templates#19 1:28:58 1:37:33
Dart 2.19 and 3.0 runtimes open-runtimes/open-runtimes#176 0:51:10 1 day, 1:46:06
Akamai setup in readme appwrite/appwrite#5854 0:07:26 0:07:33
Fix audit user internal appwrite/appwrite#5853 6:19:03 6:37:35
feat: Starter Template function appwrite/templates#18 0:14:21 16:22:24
Fix np TLD validation appwrite/appwrite#5847 8:03:30 10:50:13
Add method for creating a timeout for all find, sum, count queries in timeout supported dbs utopia-php/database#296 6 days, 5:41:23 11 days, 21:33:17
feat: Generate QR Code function appwrite/templates#16 None 5 days, 0:23:08
change to use find instead of iterating index array in Get Index route appwrite/appwrite#5846 13:21:44 5 days, 23:38:25
feat: Prepare readme template appwrite/templates#15 1:50:26 1 day, 1:00:16
Sync with Master and 1.3.x appwrite/appwrite#5845 1:49:58 1:50:04
Ensure deletes worker iterates over all schedules appwrite/appwrite#5842 1 day, 5:50:32 1 day, 5:50:40
Feat 4122 compressImage python open-runtimes/examples#159 0:38:24 0:40:45
No Exception when no change in update document function utopia-php/database#295 3:11:48 8 days, 1:39:25
No Exception when no change in update document function utopia-php/database#294 None 0:03:12
feat: Censor with Redact function appwrite/templates#14 12 days, 7:50:50 12 days, 7:50:55
feat: Sync with Meilisearch function appwrite/templates#13 13 days, 6:37:46 13 days, 6:37:53
fix: delete schedule document if project is deleted as well appwrite/appwrite#5839 None 1:29:14
feat: WhatsApp with Vonage function appwrite/templates#12 3 days, 23:04:48 12 days, 10:53:53
Ensure deletes worker deletes resources using internal id appwrite/appwrite#5833 2 days, 5:22:41 2 days, 6:26:11
feat: Sync with Algolia function appwrite/templates#11 13 days, 10:27:57 13 days, 10:28:04
feat: Censor with Redact function appwrite/templates#10 None 0:04:40
No Exception when no change in update document function utopia-php/database#293 None 23:01:01
feat: Analyze with Perspective API function appwrite/templates#9 13 days, 6:01:33 13 days, 6:01:38
fix: typo in integration name appwrite/docs#397 0:02:34 0:03:05
Feat: add linter workflow utopia-php/queue#15 1:39:28 1:40:35
feat: Add linter workflow utopia-php/dsn#2 0:25:16 0:25:21
feat: add linter workflow utopia-php/queue#14 0:32:32 1:15:16
Feat: Implement linter utopia-php/migration#6 0:42:50 3:03:35
Preference Null Value Fixed appwrite/sdk-for-flutter#164 None 1 day, 1:55:35
fixed typos appwrite/demo-almost-netflix-for-flutter#10 5:42:18 3 days, 20:23:46
Fix: Disable hackathon redirect appwrite/console#478 0:00:05 0:08:44
Bump database version utopia-php/audit#52 7:22:46 7:22:51
Add videos to readme appwrite/dynamic-links#3 None 0:01:17
Bump database version utopia-php/abuse#56 9:14:35 9:14:40
docs: add coc, contributing and update readme appwrite/dynamic-links#2 0:21:04 1:07:58
feat: Initial appwrite/dynamic-links#1 0:17:28 0:23:18
feat: Prompt ChatGPT function appwrite/templates#8 12 days, 20:37:44 15 days, 2:38:44
Doc: Fix .NET example links open-runtimes/open-runtimes#173 None 3 days, 11:05:23
Create codeql.yml appwrite/appwrite#5816 4:39:46 4:39:46
Fix 5404 update doc without relation permission appwrite/appwrite#5815 7:24:46 13 days, 3:09:27
Add .NET SDK examples to guides appwrite/docs#396 5 days, 2:47:01 7 days, 0:12:44
Update README.md #21 None 11 days, 0:19:25
Update create-session-anonymous.md appwrite/appwrite#5810 None 4 days, 20:07:14
Add method to Document to set multiple attributes utopia-php/database#289 16:41:13 16:41:18
Fix audit user internal appwrite/appwrite#5809 15:23:34 7 days, 6:54:04
fixed team creation response if teamId already exists appwrite/appwrite#5808 0:43:15 6 days, 2:22:37
Dart code fix in refreshing OAuth2 session appwrite/docs#395 22:25:15 1 day, 21:31:21
feat: Generate PDF function appwrite/templates#4 18 days, 17:02:34 18 days, 17:02:41
Update playground for SDK version 0.4.2 appwrite/playground-for-dotnet#15 3:54:45 4:02:56
usage collections fix appwrite/appwrite#5807 0:17:19 1:03:51
feat: add Refine to framework options appwrite/builtwith#33 0:00:04 2 days, 15:19:17
fix: cloud redirect appwrite/appwrite#5798 0:27:42 0:30:18
1.3.x appwrite/appwrite#5797 1:04:07 21:06:05
fix: Add missing semicolon in AppwriteException constructor in .NET SDK appwrite/sdk-generator#693 12:16:05 1 day, 17:21:43
doc: Add .NET SDK docs examples appwrite/appwrite#5796 1:57:33 1:57:38
Fix exception class + update readme & docs examples appwrite/sdk-for-dotnet#24 0:21:27 1 day, 18:42:36
feat: update python version appwrite/appwrite#5795 2:53:46 3:07:21
fix: ci failure appwrite/sdk-for-python#67 0:10:00 0:19:46
feat: Hello, World! function appwrite/templates#1 7 days, 19:33:47 9 days, 2:21:19
Fix python sdk issue appwrite/sdk-generator#692 0:05:52 1:08:27
Update CI to use newer Ubuntu appwrite/sdk-for-python#66 0:17:50 0:17:56
Dev appwrite/sdk-for-python#65 0:35:34 0:46:22
Fix Invalid Imports utopia-php/migration#5 1:02:46 1:02:50
fix: Add type field to AppwriteException class to .NET SDK appwrite/sdk-generator#691 4:48:19 4:48:30
feat: update error in Exception constructor appwrite/appwrite#5793 13:44:58 13:47:09
Feat db pools db pools master sync appwrite/appwrite#5792 2 days, 4:30:54 2 days, 11:38:27
usage worker start hook appwrite/appwrite#5791 None 7 days, 15:35:04
Feat 4103 create wipe appwrite collection java open-runtimes/examples#153 0:02:11 0:00:21
fixed relationship update bug in two way type appwrite/appwrite#5788 2:12:27 2 days, 23:10:51
doc: Update .NET SDK docs examples template appwrite/sdk-generator#690 6:12:00 6:12:05
doc: Update getting started examples for .NET SDK appwrite/appwrite#5785 0:44:49 3 days, 5:35:12
doc: Update getting started example for .NET appwrite/appwrite#5784 None 0:03:35
feat: x domain cookie appwrite/appwrite#5783 5 days, 19:17:35 13 days, 23:06:39
Track a user's last activity appwrite/appwrite#5781 3 days, 15:33:16 13 days, 6:56:57
Show user's last activity appwrite/console#475 0:00:05 20 days, 12:08:16
Update description of default permission behavior to be more specific and accurate appwrite/docs#393 0:16:45 18 days, 8:42:48
doc: Add .NET SDK docs examples appwrite/appwrite#5780 None 15:08:40
fix: build error appwrite/sdk-for-python#64 0:20:16 0:20:36
Update SDK version appwrite/playground-for-dotnet#14 0:03:43 0:03:47
fix: python library version appwrite/sdk-generator#689 0:03:19 0:06:52
Update icon and add readme to package appwrite/sdk-for-dotnet#23 0:09:34 0:09:38
Update icon and add readme to package appwrite/sdk-for-dotnet#22 None 0:16:35
fix nullable parameters in request body appwrite/sdk-for-python#63 0:19:20 0:53:03
Update Appwrite icon and link Readme in .NET SDK project file appwrite/sdk-generator#688 0:50:45 1:08:47
fix: remove python nullables from parameters appwrite/sdk-generator#687 0:02:04 3:52:22
[Node] - Adapting servers to pass the SIGINT to the child server. open-runtimes/open-runtimes#171 13 days, 16:36:30 6 days, 11:41:44
Add label method to Role helper appwrite/sdk-generator#686 5 days, 1:37:41 5 days, 1:38:56
Feat add postgres driver appwrite/docker-base#13 None 0:15:48
Update playground examples appwrite/playground-for-dotnet#13 7:07:37 7:44:24
Linode/Akmai integration in docs appwrite/docs#392 1 day, 2:18:37 12 days, 9:24:19
Fix: property type check for boolean properties appwrite/sdk-generator#685 12:33:09 12:33:20
enable .net sdk and generate for 1.3.x appwrite/appwrite#5765 None 0:01:12
Latest changes appwrite/sdk-for-dotnet#21 1:04:11 1 day, 4:44:25
feat-esmodules-v3 open-runtimes/open-runtimes#169 13 days, 19:20:28 13 days, 19:20:28
Change Raw Data links from singular to plural appwrite/console#471 0:00:04 3 days, 14:09:06
Fix small typo in docs appwrite/appwrite#5755 26 days, 4:28:48 26 days, 4:29:01
Feat 5376 improve the select query utopia-php/database#287 11 days, 22:23:06 31 days, 21:01:33
Update README.md appwrite/console#469 0:00:03 6 days, 3:51:09
Fix typo in aria label appwrite/pink#94 0:00:03 23 days, 23:27:52
Fixed Extraneous argument label 'status:' in call for Apple App setup appwrite/console#468 0:00:03 34 days, 11:16:24
Feat: $network support to run method utopia-php/orchestration#30 23 days, 15:47:53 26 days, 2:49:15
fixed null $name error for anonymous user appwrite/appwrite#5745 10 days, 7:35:23 24 days, 12:19:23
Restrict characters for project ID appwrite/appwrite#5743 19 days, 19:15:55 24 days, 15:49:39
Fix REST API and GraphQL bugs in reference docs appwrite/docs#391 11 days, 17:10:44 31 days, 7:04:23
added google.md appwrite/docs#390 None 18 days, 21:28:11
Fix phone verification secret in events & payload appwrite/appwrite#5740 25 days, 19:23:21 25 days, 19:23:25
Fix anonymous user appwrite/appwrite#5739 25 days, 19:18:43 25 days, 19:18:51
Feat cli console project appwrite/sdk-generator#681 2 days, 0:24:06 18 days, 0:37:48
Update feature.yaml #20 3:31:53 10 days, 21:29:50
Update documentation.yaml #19 3:34:17 10 days, 21:32:08
Expose a way to skip specific database listeners utopia-php/database#284 19 days, 18:11:28 28 days, 12:53:23
Update README.md appwrite/builtwith#32 0:00:03 22 days, 18:24:08
Fix 3256 update document when attribute name is numeric appwrite/appwrite#5723 0:00:14 25 days, 10:55:10
update SDK dependencies appwrite/sdk-generator#669 20 days, 15:31:00 25 days, 16:22:56
Update delete session description to be actually correct appwrite/appwrite#5707 7:03:07 41 days, 5:19:35
Ensure API endpoints have required params first appwrite/docs#386 1 day, 1:49:16 34 days, 3:23:22
Feat: Support for CURL in Swoole appwrite/docker-base#12 4 days, 13:50:59 44 days, 17:10:44
Add Swift 5.8 Runtime open-runtimes/open-runtimes#167 6 days, 18:31:49 41 days, 15:04:08
refactor: added type hints for Python SDK appwrite/sdk-generator#665 12 days, 8:48:52 23 days, 17:30:00
REST API improvements in docs appwrite/docs#385 27 days, 8:04:30 45 days, 8:54:53
Add support for label permissions utopia-php/database#280 29 days, 20:40:23 38 days, 10:52:04
Wildcards can't be used in channel appwrite/docs#380 3:21:33 49 days, 11:47:29
Fix default project appwrite/appwrite#5639 2 days, 21:59:31 43 days, 22:55:53
Add user labels to user list and detail pages appwrite/console#457 0:00:07 56 days, 5:48:27
Updated Documentation. utopia-php/database#277 1 day, 16:19:20 60 days, 4:31:29
Add a new labels attribute to the Users collection appwrite/appwrite#5587 3:45:21 52 days, 11:14:23
Doc: Wrong comparison utopia-php/abuse#52 67 days, 8:22:25 67 days, 8:22:31
Add log streaming utopia-php/cli#27 54 days, 21:11:14 54 days, 21:11:19
Update the OAuth2 success and failure pages appwrite/console#452 0:00:06 56 days, 19:34:24
Adding Internationalization (i18n) support to Appwrite console. appwrite/console#451 0:00:04 48 days, 18:50:54
Fix wildcards for OPTIONS utopia-php/http#95 57 days, 1:04:17 57 days, 1:04:25
fix: expire format for get session api appwrite/appwrite#5568 31 days, 12:10:17 57 days, 6:51:10
fixed expire format for phone session, anonymous session, oauth session appwrite/appwrite#5567 31 days, 12:27:52 57 days, 7:06:50
fix: expire format in magic url sessions appwrite/appwrite#5566 31 days, 12:56:52 57 days, 7:33:58
Update Flutter GETTING_STARTED.md appwrite/appwrite#5565 15 days, 19:27:48 58 days, 2:10:56
fix expire field in list account sessions api appwrite/appwrite#5562 13 days, 1:06:01 60 days, 0:09:08
Transfer Project to Another Team for appwrite 1.4.x appwrite/console#442 0:00:06 64 days, 7:06:44
feat: accessible tab kbd navigation appwrite/console#437 0:00:08 61 days, 20:36:18
chore: update release action appwrite/pink#87 0:00:03 69 days, 21:57:33
Fix a typo in README.md utopia-php/domains#30 74 days, 0:31:27 74 days, 1:44:22
Dockerfile: Update composer image to v2.5 appwrite/appwrite#5511 None 62 days, 11:00:09
Add a generic OIDC OAuth2 provider appwrite/appwrite#5449 20:53:53 83 days, 15:32:40
fix chunk upload appwrite/sdk-generator#648 5 days, 15:46:45 98 days, 22:57:19
content-range end should be 1 less than file size appwrite/appwrite#5402 4:16:32 90 days, 1:35:42
Add Flutter Real-time Voting App appwrite/awesome-appwrite#483 23 days, 21:33:48 86 days, 21:31:11
refactor: feedback dropdown and wizard appwrite/console#400 0:00:07 97 days, 23:03:08
Add support for wildcard and exception utopia-php/domains#29 0:26:34 98 days, 11:58:04
feat: routing v2 utopia-php/http#92 2 days, 6:02:18 116 days, 8:01:51
tutorial to add adapter utopia-php/pay#8 22 days, 13:02:44 105 days, 19:33:21
fix type in last row of the table open-runtimes/examples#141 119 days, 15:16:28 119 days, 15:16:28
FEAT Enable/Disable all services - UI appwrite/console#365 0:00:06 115 days, 7:51:49
Fix 5204 Use standard syntax for web code sample when loading the appwrite script appwrite/console#336 0:00:03 121 days, 23:25:59
fix: trigger account subscription event on email verification appwrite/appwrite#5211 26 days, 5:08:37 130 days, 2:23:54
[FEAT] Custom SMTP and Template support appwrite/appwrite#5199 3 days, 16:45:55 132 days, 15:21:30
Style level 9 appwrite/pink#63 0:00:15 141 days, 10:40:24
Feat: Add path keyword appwrite/sdk-generator#614 19 days, 13:36:09 152 days, 17:39:50
Open Runtimes V3 open-runtimes/open-runtimes#136 174 days, 8:30:07 174 days, 20:58:13
Fix: Dart error handling open-runtimes/open-runtimes#129 0:31:57 195 days, 21:23:30
FEAT: Allow Script execution in PHP runtime open-runtimes/open-runtimes#127 17 days, 19:46:26 213 days, 8:54:45
fix: add headers to console appwrite/appwrite#4758 0:02:51 230 days, 23:57:44
Python 3.11 Runtime & Dart 2.18 fix open-runtimes/open-runtimes#118 21:47:47 249 days, 22:17:46
Feat: Add BSD 3-Clause License #7 1:16:47 251 days, 12:19:15
feat: support screens appwrite/console#126 0:00:02 251 days, 1:53:14
feat: adds open-runtimes example for cpp 20 stable release open-runtimes/open-runtimes#116 16 days, 1:59:27 264 days, 14:41:08
Issue-4356: Add Code Linter To utopia-php/websocket utopia-php/websocket#19 0:01:11 259 days, 18:02:46
New architecture diagram open-runtimes/open-runtimes#112 6 days, 16:35:31 268 days, 22:13:16
Implement Attribute Paging appwrite/appwrite#4417 283 days, 8:21:38 283 days, 8:21:38
Feat: Implement linter utopia-php/ab#7 276 days, 19:22:04 283 days, 16:02:19
Update production guide appwrite/docs#279 0:00:39 293 days, 3:11:35
Fix: Improve count() queries appwrite/appwrite#3882 13 days, 19:38:41 304 days, 4:49:49
Fix: Null vars open-runtimes/open-runtimes#88 0:04:43 335 days, 22:04:02
Fix 86 python package dependencies open-runtimes/open-runtimes#87 73 days, 21:55:31 367 days, 12:51:34
This report was generated with the Issue Metrics Action

Backend Server, as How?

Hello, I just got to know about this particular service (AppWrite), how is a backend server if I still have to host it on digitalOcean.

Discussions Opened in June 2023

Issue Metrics

Metric Value
Average time to first response 4 days, 5:43:03.142857
Average time to close 6 days, 20:46:46
Average time to answer 46 days, 5:03:02
Number of items that remain open 6
Number of items closed 1
Total number of items created 7
Title URL Time to first response Time to close Time to answer
Get data from database appwrite/appwrite#5660 13 days, 22:50:55 None None
How to store json type of data into a single document ? appwrite/appwrite#5704 4 days, 18:44:04 None None
If you could add one thing to Appwrite's docs, what would it be? appwrite/appwrite#5692 0:40:44 None None
Appwrite imange 1.3.7 not working on docker desktop win11 appwrite/appwrite#5655 21:17:20 None None
Time-Based One Time Password 2fa support. appwrite/appwrite#5681 3 days, 4:47:09 6 days, 20:46:46 None
Connect to database using Django appwrite/appwrite#5669 6 days, 0:11:30 None 46 days, 5:03:02
Bing chat generated a benchmark report for you using k6 - RESULT appwrite/appwrite#5656 19:29:40 None None

Issues Opened in June 2023

Issue Metrics

Metric Value
Average time to first response 4 days, 3:21:36.303371
Average time to close 9 days, 6:02:59.909091
Number of items that remain open 70
Number of items closed 33
Total number of items created 103
Title URL Time to first response Time to close
๐Ÿ› Bug Report: queries with Relationship Attribute appwrite/appwrite#5757 23:24:06 None
๐Ÿš€ Feature: createFileAttribute required appwrite/appwrite#5756 2 days, 21:55:01 None
๐Ÿ“š Documentation: missing setSelfSigned on js client appwrite/sdk-for-web#60 14 days, 9:40:43 None
๐Ÿ› Bug Report: Single links instead of plural one. appwrite/console#470 5:56:36 3 days, 15:18:40
๐Ÿš€ Feature: Add more then one fields and collections at once appwrite/appwrite#5754 1:35:29 None
Dangerous json parse operation appwrite/sdk-for-swift#9 4 days, 16:06:35 None
๐Ÿ› Bug Report: Adding an array-type attribute causes access issue to collection documents on the Appwrite Cloud Web UI appwrite/appwrite#5753 2 days, 1:25:17 None
๐Ÿ› Bug Report: word wrap in column is unreadable appwrite/sdk-for-cli#84 None None
๐Ÿ› Bug Report: ui bug - the left-arrow icon in switch does not seems to be in centre appwrite/appwrite#5752 0:00:14 20:09:42
๐Ÿ› Bug Report: A runtime with the same ID is already being created appwrite/appwrite#5751 7 days, 1:31:58 None
๐Ÿ› Bug Report: Collection not found error appwrite/appwrite#5750 0:03:41 None
๐Ÿ› Bug Report: Deleting a file leads to error message "Invalid fileId" UID must contain at most 36 chars. appwrite/appwrite#5749 1 day, 20:41:28 None
๐Ÿš€ Feature: overload Feature for Storage.CreateFile for using Blob instead of File appwrite/appwrite#5748 None None
๐Ÿ› Bug Report: user unauthorized on update document appwrite/appwrite#5747 3 days, 4:35:02 None
๐Ÿš€ Feature: Please Add Multi Node Support appwrite/appwrite#5746 22:44:30 None
๐Ÿ“š Documentation: Apple App code snippet for step 3 throws Extraneous argument label 'status:' in call in Xcode appwrite/console#467 0:15:03 None
๐Ÿ› Bug Report: user's IP using NextJS appwrite/appwrite#5744 None None
๐Ÿš€ Feature: Support Initializing a Project in an Existing Organization appwrite/sdk-for-cli#83 None None
๐Ÿš€ Feature: Custom Google Auth Screen appwrite/appwrite#5742 3 days, 18:11:34 None
๐Ÿš€ Feature: Allow value for createdAt & updatedAt on create/update Document utopia-php/database#285 0:28:56 None
๐Ÿ› Bug Report: email verification appwrite/appwrite#5741 11:37:39 None
๐Ÿš€ Feature: Unit Tests appwrite/sdk-generator#680 4 days, 13:58:31 None
๐Ÿ“š Documentation: Add inline docs to SDKs appwrite/sdk-generator#679 None None
๐Ÿ› Bug Report: Version 8.0.1 required dart 2.19 which not available as functions runtime. appwrite/sdk-for-dart#44 6 days, 9:14:13 None
๐Ÿ› Bug Report: some confirmation dialogs appear out of screen appwrite/console#466 4 days, 21:36:15 11 days, 0:26:42
๐Ÿš€ Feature: Custom abuse control/rate limits appwrite/appwrite#5737 18:13:12 18:15:36
AppwriteException: User (role: guests) missing scope (account) ReactJS application appwrite/appwrite#5735 None 0:49:12
๐Ÿ› Bug Report: Inconsitency of Count for Auth appwrite/appwrite#5734 3:16:31 1 day, 7:44:56
๐Ÿ“š Documentation: Error when building appwrite using build instructions appwrite/appwrite#5733 0:12:28 None
๐Ÿš€ Feature: Expand "development" mode logs. appwrite/appwrite#5732 10:19:50 None
๐Ÿ› Bug Report: Subscribing Multiple Times with a Single Realtime Instance Results in Null Subscription appwrite/sdk-for-flutter#156 3 days, 1:45:11 None
๐Ÿ› Bug: DLLs are not used as references in .NET Functions open-runtimes/open-runtimes#168 None None
๐Ÿ› Bug Report: seach query throws server error 500 on Cloud appwrite/appwrite#5729 19:27:04 None
๐Ÿ› Bug Report: Accessibility issue on profile dropdown appwrite/appwrite#5724 9:04:51 2 days, 8:56:19
๐Ÿš€ Feature: bulk deleting users / sorting appwrite/appwrite#5722 1 day, 13:04:04 None
๐Ÿš€ Feature: Add confirmation alert when leaving create document page appwrite/appwrite#5721 1 day, 19:27:46 None
๐Ÿ› Bug: Access DB hosted on localhost appwrite/appwrite#5720 7:52:46 None
๐Ÿ› Bug Report: Schedule function with minutes does not work appwrite/appwrite#5719 3 days, 4:02:51 None
๐Ÿ› Bug Report: Duplicate verification users API entry. appwrite/appwrite#5717 2 days, 20:05:00 None
๐Ÿš€ Feature: Customize default function "example data" appwrite/appwrite#5716 13:46:05 None
๐Ÿ“š Documentation: Mistake in code snippets in getting started guide appwrite/sdk-for-python#62 3 days, 17:27:20 None
๐Ÿ› Bug Report: Responsiveness issue on documents page appwrite/appwrite#5713 2:00:05 None
๐Ÿ› Bug Report: Kotlin server SDK does not properly process nullable values when mapping appwrite/sdk-generator#667 5 days, 13:34:03 None
๐Ÿ› Bug Report: NullPointerException when trying to fetch teams list appwrite/sdk-for-kotlin#30 1 day, 12:52:37 13 days, 22:38:09
๐Ÿ› Bug : Appwrite with typescript react app throws error appwrite/appwrite#5706 3 days, 15:16:46 14 days, 6:28:25
๐Ÿ› Bug Report: Upload Progress not being reported appwrite/sdk-for-web#58 15 days, 4:40:29 None
๐Ÿ› Bug Report: Modal should be in the center instead of corner for better visibility and UX appwrite/console#463 0:00:25 6 days, 11:14:34
๐Ÿ› Bug Report: Unable to post http request even after adding all the headers appwrite/appwrite#5702 21:20:05 1 day, 12:10:26
๐Ÿ› Bug Report: Delete Modal in Appwrite console Disappears and Needs Positioning Fix appwrite/appwrite#5701 0:01:13 8:45:06
๐Ÿš€ Feature: Update project details appwrite/builtwith#25 2 days, 8:55:55 None
๐Ÿ› Bug Report: Server Error when authenticating appwrite/appwrite#5697 1 day, 3:06:34 1 day, 3:32:58
๐Ÿ› Bug Report: Portuguese email template is missing a word appwrite/appwrite#5693 0:13:25 None
๐Ÿ› Bug Report: Server Error when trying to create Document on Appwrite Cloud appwrite/appwrite#5691 0:09:24 2 days, 1:27:03
๐Ÿ› Bug Report: 500 Internal Error on Appwrite Cloud appwrite/appwrite#5690 1:06:40 2 days, 1:44:55
๐Ÿš€ Feature: Allow to capture shutdown event to make db integrations possible appwrite/appwrite#5688 0:05:32 None
๐Ÿ› Bug Report: new empty collections reported as not found by databases.listDocuments() appwrite/appwrite#5687 3 days, 10:41:41 6 days, 22:22:39
๐Ÿš€ Feature request : CI - ignore some files in event trigger of tests GHA appwrite/console#462 0:03:16 None
๐Ÿ› Bug Report: Error 'Document with the requested ID already exists' when tries to upload video appwrite/appwrite#5686 5 days, 8:01:14 None
๐Ÿ› Bug Report: failing to generate SDKs using example.php appwrite/sdk-generator#666 4 days, 10:27:44 4 days, 17:00:47
๐Ÿ› Bug Report: Appwrite CLI throws error when using Nuxt 3 appwrite/appwrite#5685 1:38:35 None
๐Ÿ› Bug: seach query throws server error 500 on Cloud appwrite/appwrite#5684 3 days, 4:22:38 None
๐Ÿ› Bug Report: permissions on creating a collection appwrite/appwrite#5682 None None
๐Ÿš€ Feature: use type hints appwrite/sdk-for-python#61 None 0:00:38
๐Ÿš€ Feature: use linting tools (pre-commit) appwrite/sdk-for-python#60 1 day, 0:43:50 None
๐Ÿ› Bug Report: appwrite/appwrite#5680 9 days, 21:47:06 None
๐Ÿš€ Feature: Disable realtime completly appwrite/appwrite#5679 6 days, 4:21:33 None
๐Ÿš€ Feature: Automated Database Schema Import appwrite/appwrite#5678 6 days, 4:47:50 None
๐Ÿ› Bug Report: type '_Map<String, dynamic>' is not a subtype of type 'List' appwrite/sdk-for-dart#41 1:27:20 1:27:20
๐Ÿ› Bug Report: Relationships don't cascade delete properly with 2 relationships appwrite/appwrite#5677 7 days, 15:17:39 None
๐Ÿ“š Documentation: The documentation/method Account.deleteSession() and Account.deleteSessions() are wrong appwrite/sdk-for-flutter#153 2:56:27 None
๐Ÿ› Bug Report: Wrong signature for createMembership server side implementation appwrite/appwrite#5676 6 days, 22:40:45 41 days, 3:11:22
๐Ÿš€ Feature: Omit the requirement of the URL parameter in server createMembership function appwrite/appwrite#5675 6 days, 22:19:07 None
๐Ÿ› Bug Report: Can't edit Array of String appwrite/appwrite#5674 5:23:49 None
500 Internal Error while creating a collection appwrite/appwrite#5673 None 0:00:48
๐Ÿš€ Feature: restrict unsupported characters for project ID. appwrite/appwrite#5670 20:18:42 41 days, 20:41:09
๐Ÿ› Bug Report: Change cursor pointer in checkbox's disabled state appwrite/pink#91 1 day, 14:52:42 None
๐Ÿ“š Documentation: appwrite/awesome-appwrite#493 None 0:01:55
๐Ÿš€ Feature: Aggregate Functions and Select distinct appwrite/appwrite#5667 43 days, 15:48:18 None
๐Ÿ› Bug Report: unexpected behavior when deleting the first prefs of a user from the dashboard appwrite/appwrite#5664 13 days, 16:37:11 None
๐Ÿ› Bug Report: The redirect to the user sessions page is broken appwrite/appwrite#5663 7 days, 1:20:08 7 days, 17:27:38
๐Ÿ› Bug Report: Attributes can be both required and an array appwrite/console#461 23:26:53 None
๐Ÿš€ Feature: Optional DB foreign keys to avoid orphans appwrite/appwrite#5662 0:51:35 None
๐Ÿ› Bug Report: $permissions returns as object rather than array appwrite/appwrite#5661 2 days, 2:49:49 3 days, 15:02:53
๐Ÿš€ Feature: CLI Login when you are authenticated with Github appwrite/appwrite#5659 7 days, 2:35:56 None
๐Ÿ› Bug Report: Query.select() fails on querying relationships appwrite/appwrite#5657 23 days, 6:22:50 23 days, 6:22:51
๐Ÿ› Bug Report: Partially uploaded file shown in console. appwrite/appwrite#5654 12:32:36 43 days, 15:38:12
๐Ÿ› Bug Report: No app check appwrite/appwrite#5653 11 days, 10:40:48 None
๐Ÿš€ Feature: SETTING CUSTOM SESSION EXPIRY TIME FOR USER LOGIN SESSIONS appwrite/appwrite#5652 0:44:39 0:58:37
๐Ÿ“š Documentation: Add the name of the inbuilt variables that we get along with a request appwrite/docs#378 16 days, 16:21:18 None
๐Ÿ› Bug Report: Query not valid: Query type does not match expected: double on python SDK appwrite/appwrite#5650 0:09:11 None
๐Ÿ› Bug Report: UI broken in the documents page appwrite/appwrite#5646 4 days, 5:35:47 9 days, 21:29:48
๐Ÿ› Bug Report: Session Doesn't Persist on Flutter Web appwrite/appwrite#5645 12 days, 7:13:06 None
๐Ÿ› Bug Report: AppwriteException: Not Found appwrite/appwrite#5644 11 days, 5:34:59 12 days, 19:27:44
๐Ÿ› Bug Report: ali-oss Doesn't Work in Node Runtime appwrite/appwrite#5642 12 days, 10:37:12 None
๐Ÿš€ Feature: Add option to customise Phone Auth OTP appwrite/appwrite#5641 5 days, 23:17:24 None
๐Ÿ“š Documentation: library code does not contain clear and or concise documentation appwrite/sdk-for-flutter#152 1 day, 19:59:55 19 days, 11:42:07
๐Ÿš€ Feature: Replace Websocket by Server Sent Events appwrite/appwrite#5631 None None
๐Ÿ› Bug Report: Appwrite main container freezes when executing cloud-functions. appwrite/appwrite#5629 3 days, 16:11:42 None
๐Ÿ› Bug Report: User total is zero (0) in project console after minor version upgrade appwrite/appwrite#5628 2 days, 3:11:18 13 days, 20:52:56
๐Ÿš€ Feature: Ability to seperate ids from get, update, create, delete document methods [Flutter] appwrite/appwrite#5627 None None
๐Ÿ› Bug Report: can't import certain python built-ins for functions appwrite/appwrite#5626 14 days, 9:44:13 14 days, 10:06:50
๐Ÿš€ Feature: Suggest adding Active User metrics appwrite/appwrite#5625 None None
๐Ÿ› Bug Report: After upgrading from v1.3.4 to v1.3.5, on refresh, I get 404 not found on the console. appwrite/appwrite#5623 20:33:02 None

PRs Closed in June 2023

Issue Metrics

Metric Value
Average time to first response 4 days, 7:26:20.211009
Average time to close 26 days, 21:48:55.571429
Number of items that remain open 0
Number of items closed 133
Total number of items created 133
Title URL Time to first response Time to close
Create Compress image Branch open-runtimes/examples#152 None 0:00:45
Update dotnet sdk create file example appwrite/sdk-generator#683 4 days, 18:38:47 5 days, 10:15:16
Downgrade mockito in Flutter and Dart SDKs appwrite/sdk-generator#682 1 day, 8:03:11 1 day, 8:03:18
added tests and comments appwrite/sdk-for-dart#43 0:51:51 0:52:10
update changelog appwrite/sdk-for-flutter#160 0:12:14 0:13:51
fixed flutter/dart comments appwrite/sdk-generator#678 0:01:56 0:02:04
added test appwrite/sdk-for-flutter#159 0:04:03 0:37:58
added tests appwrite/sdk-for-flutter#158 None 0:06:28
added tests appwrite/sdk-for-flutter#157 0:38:56 0:40:26
Move flutter service tests to dart appwrite/sdk-generator#677 None 0:14:09
Add tests for helpers and moels to Flutter and Dart SDKs appwrite/sdk-generator#676 3:34:47 3:51:51
Added Stars and Forks button in README.md appwrite/appwrite#5731 2 days, 8:30:21 2 days, 8:30:21
Calc tier addition appwrite/appwrite#5730 2:22:22 2:55:11
WIP: fix storage tests appwrite/sdk-generator#675 0:02:05 17:05:11
fix: missing collection error appwrite/appwrite#5728 None 1:26:54
Fix calc tier appwrite/appwrite#5727 0:13:35 2:04:49
Flutter SDK: tests for services appwrite/sdk-generator#673 1 day, 10:16:31 2 days, 1:17:08
account test appwrite/sdk-for-flutter#155 None 6 days, 23:19:46
Update package.json appwrite/sdk-for-web#59 1 day, 9:39:21 9 days, 22:50:02
feat: update to 1.3.7 release appwrite/integration-for-gitpod#19 3:17:53 14:29:15
fix user agent appwrite/sdk-generator#672 0:05:14 3 days, 6:52:32
Add doc comments appwrite/sdk-for-dart#42 None 6 days, 0:22:11
Add doc comments appwrite/sdk-for-flutter#154 None 5 days, 22:31:11
Add inline doc comments to the Dart and Flutter SDKs appwrite/sdk-generator#671 1 day, 4:16:23 4 days, 3:55:17
fixed incorrect audity activity on document create appwrite/appwrite#5718 0:00:17 3 days, 6:50:19
Fix upvotes appwrite/builtwith#31 0:00:04 0:00:53
fix: upvotes bug appwrite/builtwith#30 0:00:03 5:00:46
Update getting started URL appwrite/sdk-for-kotlin#31 8:33:14 11 days, 23:23:51
Create an alias for Appwrite Cloud in docs. appwrite/docs#388 21:59:07 21:59:44
feat: update tests appwrite/appwrite#5712 None 1:40:04
Feat: Add database to log appwrite/appwrite#5711 1:24:08 1:24:14
feat: project 404 page appwrite/builtwith#28 0:00:04 0:48:22
Fix: fix type conversion of strings for all models in .NET SDK appwrite/sdk-generator#670 15:28:40 3 days, 23:01:16
improve CLI readme contribution part appwrite/sdk-generator#668 0:01:45 0:02:01
Fix second index validation when first index is fulltext utopia-php/database#283 1:01:37 1:31:51
Feat database upgrade appwrite/appwrite#5710 6 days, 5:02:00 7 days, 7:53:42
refactor collections config appwrite/appwrite#5709 10:08:08 14:36:36
Update database utopia-php/abuse#55 0:18:44 0:20:05
Update database utopia-php/audit#51 0:19:36 0:20:37
feat: update database config appwrite/appwrite#5708 None 19:34:28
delete unnecessary project collections task appwrite/appwrite#5705 0:53:01 22:08:47
Changed GitHub URL text and submission text appwrite/builtwith#27 0:00:06 1:03:05
Changed Twitter URL text for easier understanding appwrite/builtwith#26 0:00:03 16:27:20
Collection not found utopia-php/database#282 1 day, 15:36:47 1 day, 15:36:54
fix delete cache file to dbp-master appwrite/appwrite#5699 2:14:51 2:50:24
cache deletion bug fix appwrite/appwrite#5695 1:29:22 2:56:40
chore: remove generateSearch script appwrite/builtwith#24 0:00:04 0:00:12
Adding Funcover as a tool appwrite/awesome-appwrite#494 21:01:30 21:01:39
refactor cache save appwrite/appwrite#5689 None 1 day, 0:37:07
style: add gap between project title and upvote appwrite/builtwith#23 0:00:03 0:00:20
Update 1.4.x from Master appwrite/appwrite#5683 2 days, 6:43:05 2 days, 12:37:07
Fix: $permissions returns as object rather than array utopia-php/database#281 0:05:01 11:09:27
feat: use Link component, fix mobile menu appwrite/builtwith#22 0:00:05 3 days, 0:06:40
fix: missing import appwrite/appwrite#5672 None 0:01:54
style: fix project image aspect ratios appwrite/builtwith#21 0:00:07 0:58:15
fix for failing flutter test appwrite/sdk-generator#664 4 days, 19:36:09 4 days, 19:41:44
Update document missing params error message appwrite/appwrite#5671 1 day, 18:21:29 5 days, 7:25:51
V19 migration appwrite/appwrite#5668 2 days, 15:50:03 14 days, 16:10:53
ci: create CI script to build cloud images appwrite/appwrite#5666 None 3:16:00
refactored email template appwrite/appwrite#5665 20:16:21 1 day, 2:26:05
Reorder databases subheadings based on importance appwrite/docs#381 2:14:41 2:14:47
Mention wildcards under Realtime channels appwrite/docs#379 0:01:24 0:02:40
remove additional white spaces appwrite/sdk-generator#662 4:01:06 1 day, 0:30:48
Add RuPay Credit Card appwrite/appwrite#5651 None 10:32:14
Sync master with 1.3.x appwrite/appwrite#5649 3:25:37 3:29:00
Updates for 1.3.7 appwrite/appwrite#5648 0:11:01 1:04:34
chore: update utopia-php/framework appwrite/appwrite#5647 None 0:02:33
Fix trailing slashes master utopia-php/http#100 0:02:05 0:14:56
feat: add support for trailing slashes in routes and urls utopia-php/http#99 0:03:58 0:13:28
Added event.preventDefault(); appwrite/playground-for-web#83 0:50:19 0:52:32
feat: update playground appwrite/playground-for-android#29 0:00:39 0:00:58
Fix the routing for the default OAuth2 pages appwrite/appwrite#5643 None 0:00:11
Fix the routing for the default OAuth2 pages appwrite/appwrite#5640 9:50:01 9:56:44
feat: rejectProject function, add userId to projects, add desktop and cli platforms, misc fixes appwrite/builtwith#20 0:00:07 2 days, 18:25:46
cache perm fix appwrite/appwrite#5638 3 days, 20:14:47 3 days, 20:15:01
sync 1.3.x appwrite/appwrite#5637 0:00:48 0:38:53
release: 1 3 6 new appwrite/appwrite#5636 None 0:05:30
release: 1.3.6 appwrite/appwrite#5635 None 0:05:05
chore: prepre 1.3.6 appwrite/appwrite#5634 0:01:05 4 days, 2:19:10
fix: remove default order appwrite/console#458 0:00:08 0:03:31
fix: trailing wildcards appwrite/appwrite#5633 0:27:39 0:27:49
feat: add trailing wildcards utopia-php/http#98 0:01:42 0:06:45
fix: trailing wildcards appwrite/appwrite#5632 0:01:55 0:38:14
Extract db from list while backing appwrite/appwrite#5630 8:01:24 4 days, 7:51:57
Update link to cron docs appwrite/console#456 0:00:08 16:20:31
feat: trailing wildcards utopia-php/http#97 4:46:25 20:14:04
feat: migrate to cloud, hamburger menu, refactors appwrite/demos-for-astro#6 0:00:05 6 days, 3:21:37
Update file name appwrite/appwrite#5624 1 day, 6:59:53 1 day, 7:00:01
Allow Updating email and phone without password appwrite/appwrite#5621 1 day, 15:36:57 1 day, 15:37:03
Fix system performance appwrite/appwrite#5620 0:02:38 1 day, 12:19:06
Fulltext fixes utopia-php/database#279 8 days, 12:12:31 14 days, 12:32:44
Removed Typo in OAuth(Web) section appwrite/docs#376 1 day, 8:18:28 2 days, 0:51:24
Upgrade dependencies Flutter and dart appwrite/sdk-generator#661 4 days, 6:49:22 6 days, 6:18:03
Fix creating a user throws an error appwrite/sdk-generator#660 0:21:15 8 days, 6:36:42
Feat: Improve logging appwrite/appwrite#5590 5 days, 23:02:00 5 days, 23:02:06
Account Password Related Updates appwrite/appwrite#5584 1 day, 18:54:33 7 days, 0:15:51
Fix syntax error in Python examples appwrite/docs#373 5:34:30 7 days, 18:12:19
remove password required for project deletion appwrite/appwrite#5580 8 days, 7:38:02 28 days, 16:48:59
Add custom copy for google oauth provider appwrite/console#453 0:00:06 15 days, 19:27:58
Update getting-started-for-flutter.phtml appwrite/docs#372 2 days, 18:41:25 12 days, 11:05:51
Update authentication-server.phtml appwrite/docs#371 3 days, 8:31:09 13 days, 0:55:10
remove query limit and offset appwrite/docs#370 0:01:06 13 days, 15:35:08
Collection Index Validation appwrite/appwrite#5552 35 days, 14:54:23 41 days, 4:21:39
Index validation utopia-php/database#271 1 day, 11:29:41 25 days, 15:20:40
feat: update to 1.3.4 release appwrite/integration-for-gitpod#18 None 37 days, 4:46:04
Update links to cron docs appwrite/console#434 0:00:06 24 days, 0:55:39
remove audit userInternalId appwrite/appwrite#5514 46 days, 10:46:10 52 days, 0:13:42
Update Mail.php appwrite/appwrite#5495 11:48:39 57 days, 4:37:39
get jwt from request param appwrite/appwrite#5470 37 days, 5:56:26 37 days, 15:13:18
Queries validator transfer to Utopia appwrite/appwrite#5439 None 55 days, 21:13:37
Feat initial push utopia-php/migration#4 21 days, 6:15:49 57 days, 12:09:28
feat add node 20 runtime open-runtimes/open-runtimes#163 55 days, 6:04:41 55 days, 6:04:41
add java 20 runtime open-runtimes/open-runtimes#162 55 days, 6:11:46 55 days, 6:11:46
Appwrite validators transfer utopia-php/database#264 20 days, 14:54:29 37 days, 17:07:40
Feat: Bun runtime 0.5.9 open-runtimes/open-runtimes#161 0:29:33 52 days, 18:05:19
fix: visual bugs appwrite/console#401 0:00:08 56 days, 21:38:38
Fix: Added Rebuild button for function view when build fails during deployment appwrite/console#376 0:00:03 61 days, 4:17:08
Indexes for permissions utopia-php/database#248 67 days, 0:24:47 80 days, 22:53:48
feat: add search to database collections appwrite/console#342 0:00:04 106 days, 18:18:55
update env variables appwrite/demos-for-astro#5 0:00:03 85 days, 15:01:19
Feat: Safe timeout open-runtimes/open-runtimes#156 None 103 days, 17:38:06
Feat: Custom commands support open-runtimes/open-runtimes#154 None 105 days, 23:02:08
Refactor dotnet generation appwrite/sdk-generator#617 None 105 days, 14:46:10
Feat: v3 Swift open-runtimes/open-runtimes#147 None 130 days, 2:23:34
doc: Added "Appwrite using NGINX as Reverse Proxy" resource appwrite/awesome-appwrite#474 2 days, 6:21:27 134 days, 21:52:53
Feat: v3 C++ open-runtimes/open-runtimes#145 None 132 days, 5:20:45
Feat: v3 .NET open-runtimes/open-runtimes#144 14 days, 14:08:48 128 days, 14:02:46
fix: adds the missing expire attribute to ListSessions call appwrite/appwrite#4872 25 days, 0:18:38 167 days, 1:35:45
Add .NET 7.0 runtime open-runtimes/open-runtimes#124 5 days, 0:17:07 214 days, 5:27:08
feat : Add error attribute to Collection Indexes and Attributes appwrite/appwrite#4575 1:38:06 239 days, 13:37:52
long size varchar with long index size mysql utopia-php/database#210 10:21:02 233 days, 10:46:57
Feat phone auth 360dialog appwrite/appwrite#4536 0:13:21 240 days, 16:38:24
Adding Scoop support appwrite/sdk-generator#450 3:59:23 380 days, 21:12:43

๐Ÿš€ Feature: Daily GitHub Metrics

๐Ÿ”– Feature description

Update the GitHub Metrics Job to create 1 issue a day with 6 comments for issues/PRs/discussions opened/closed the previous day.

๐ŸŽค Pitch

It would work better and be easier to track.

๐Ÿ‘€ Have you spent some time to check if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Code of Conduct?

Issues Opened in August 2023

Issue Metrics

Metric Value
Average time to first response 1 day, 9:41:27.013699
Average time to close 2 days, 17:19:30.628571
Number of items that remain open 55
Number of items closed 35
Total number of items created 90
Title URL Time to first response Time to close
Revisit Node Runtime - Console Logging open-runtimes/open-runtimes#192 5:38:41 5:38:41
Feature: Support both uppercase Y and lowercase y in installation appwrite/appwrite#6094 4:33:03 None
๐Ÿ› Bug Report: In Creating Team in Kotlin Android appwrite/appwrite#6093 9:14:46 None
๐Ÿ› Bug Report: "Quick Start" Infinite loadings when creating a function appwrite/appwrite#6090 7:36:30 None
๐Ÿ› Bug Report: After installing cli tryed to check version but getting error on all commands appwrite/appwrite#6089 1:06:53 7:54:11
๐Ÿ“š Documentation|Feature: Enhance Backups Section with Tutorials and Pre-Migration Prompt appwrite/website#643 7:15:43 None
[ISSUE] Reliable offline storage appwrite/sdk-for-flutter#169 8:14:56 None
๐Ÿ› Bug Report: Functions Connect to Github goes to 404 Page appwrite/appwrite#6086 4:13:09 None
๐Ÿ› Bug Report: (role: owner) missing scope (none) appwrite/appwrite#6082 16:37:28 18:07:34
๐Ÿ› Bug Report: Python SDK Local variable path referenced before assignament appwrite/sdk-generator#704 0:54:57 None
๐Ÿ› Bug Report: failed migration from v1.3.8 to v1.4.0 appwrite/appwrite#6075 0:07:25 None
๐Ÿ› Bug Report: TypeError on appwrite CLI appwrite/sdk-for-cli#93 None None
๐Ÿ› Bug Report: Appwrite -v results in error appwrite/sdk-for-cli#92 0:08:51 1 day, 7:51:33
๐Ÿš€ Feature: See incoming requests' details appwrite/appwrite#6062 11:54:59 None
๐Ÿš€ Feature: Delete all user sessions on blocking a user appwrite/appwrite#6061 21:48:03 None
๐Ÿ› Bug Report: Python 3.9 function res.json() empty dict serialized as an array appwrite/appwrite#6056 2 days, 3:05:56 2 days, 3:17:30
๐Ÿš€ Feature: Add a function to create links used in transactional emails appwrite/appwrite#6055 2 days, 4:30:20 None
๐Ÿš€ Feature: Single storage bucket API KEY appwrite/appwrite#6054 8:50:00 None
๐Ÿ› Bug Report: Appwrite Cloud Python 3.9 function module not found in tarball appwrite/appwrite#6051 23:36:52 1 day, 23:27:38
๐Ÿ› Bug Report: Signing key cannot be empty when creating an execution appwrite/appwrite#6043 10:58:51 2 days, 12:51:48
๐Ÿ› Bug Report: Error deleting a file after adding delete permissions appwrite/appwrite#6042 14:49:48 None
๐Ÿ› Bug Report: Unique phone number error returns "email already exits" error. appwrite/appwrite#6041 17:38:07 17:45:25
๐Ÿš€ Feature: Better previews for video files appwrite/appwrite#6040 19:58:44 None
๐Ÿ“š Documentation: Code Autocompletion command has some error. appwrite/appwrite#6039 8:40:14 None
Get Tweets of Users with Appwrite appwrite/appwrite#6036 18:16:09 2 days, 1:15:09
How to get Posts created by users #64 2 days, 1:20:30 2 days, 1:20:29
๐Ÿ› Bug Report: Functions Limited to Entrypoint Leading to Build Failures appwrite/appwrite#6035 None None
๐Ÿš€ Feature: accept optional name parameter in createMagicURLSession appwrite/appwrite#6034 1 day, 17:16:44 None
๐Ÿš€ Feature: Option to disable Cookies appwrite/sdk-for-web#71 None None
๐Ÿ› Bug Report: adding attribute in a large collection crashes appwrite/appwrite#6028 4:06:55 None
๐Ÿ› Bug Report: [Console] Wrong collection id displayed appwrite/appwrite#6027 1:31:39 3:33:41
๐Ÿ› Bug Report: Deno runtime silently fails on ARM platforms appwrite/appwrite#6026 1:14:25 None
๐Ÿ› Bug Report: Cannot create Flutter Web Platform on Appwrite Cloud Console version 1.1.2 appwrite/appwrite#6025 0:14:17 1 day, 21:01:35
๐Ÿ› Bug Report: Unable to run Functions on Cloud appwrite/appwrite#6018 5:16:58 None
๐Ÿ› Bug Report: Unable to assign roles appwrite/sdk-for-flutter#167 None 2:16:21
๐Ÿ› Bug Report: Very slow web browsing in the console with Safari appwrite/console#856 1:22:28 None
๐Ÿ› Bug Report: Two-way, one-to-many relationship text wrong on one side appwrite/appwrite#6016 0:05:41 None
๐Ÿš€ Feature: want to Add Search Feature for Contributor appwrite/appwrite#6013 3 days, 19:48:18 6 days, 16:32:50
๐Ÿ› Bug Report: Limbo Attribute if Related Collection is Deleted appwrite/appwrite#6012 1 day, 6:18:20 None
๐Ÿ› Bug Report: .NET 6.0 Function stuck on building appwrite/appwrite#6007 3:59:28 None
๐Ÿ› Bug Report: Query.between isn't parsed in the right format appwrite/appwrite#6006 7:08:45 19:15:56
Migration to new version of Appwrite appwrite/demo-watertracker-with-flutter#7 None None
๐Ÿš€ Feature: Display Runtime Update info on Function creation page appwrite/appwrite#6005 9:58:58 None
๐Ÿ› Bug Report: CORS error when accessing Appwrite from a Flutter Web App appwrite/appwrite#6004 2:11:53 None
๐Ÿ› Bug Report: Cannot update hostname of Flutter Web App appwrite/appwrite#6003 14:10:37 None
๐Ÿ“š Documentation: Replace GlobalScope with lifecycleScope in Android-Kotlin examples appwrite/appwrite#6002 4 days, 23:52:24 None
๐Ÿš€ Feature: German translation appwrite/website#644 19:26:53 None
๐Ÿ› Bug Report: _createdAt and _updatedAt added to nested document appwrite/appwrite#5999 None 5 days, 13:55:25
๐Ÿš€ Feature: Add hover effect on icons appwrite/appwrite#5997 4:37:58 1 day, 18:55:42
๐Ÿ› Bug Report: HTTP call to Client throws error due to he HttpMethod enum not being exported from client.dart appwrite/sdk-generator#699 13 days, 18:22:52 None
๐Ÿ› Bug Report: [Console] Create New Database grid item doesn't work. appwrite/appwrite#5992 2:41:17 None
๐Ÿš€ Feature: Permission Presets appwrite/appwrite#5991 5:21:39 None
๐Ÿ› Bug Report: [Console] - Can't create function appwrite/appwrite#5990 1 day, 0:24:41 2 days, 19:41:56
๐Ÿ› Bug Report: Google Access Token disappears after calling "updateSession" appwrite/appwrite#5987 7 days, 14:22:38 None
๐Ÿ› Bug Report: [Console] Delete session alert not dismissed after click appwrite/appwrite#5985 8 days, 1:56:21 8 days, 1:56:21
๐Ÿ› Bug Report: appwrite/appwrite#5982 None 2:04:33
๐Ÿ› Bug Report: [Console] Wrong message displayed on account verify / unverify appwrite/appwrite#5981 0:40:24 4 days, 17:56:08
๐Ÿ› Bug Report: Create Team, List Teams exception when developing with flutter appwrite/appwrite#5980 None 3:37:31
๐Ÿ› Bug Report: API key name is passing as null while creating API key for server. appwrite/appwrite#5978 4:33:31 4:33:31
๐Ÿ› Bug Report: Error notification appears under modal appwrite/appwrite#5977 3:05:22 6 days, 5:37:35
๐Ÿ› Bug Report: Overflow issue in appwrite console appwrite/appwrite#5976 3:19:40 4 days, 4:47:37
๐Ÿ› Bug Report: Appwrite console bug appwrite/appwrite#5975 20:08:48 None
๐Ÿš€ Feature: Needed Documnet level security restriction based on its attribute value or relative query which returns true, like in supabase appwrite/appwrite#5974 12 days, 9:19:02 None
๐Ÿ› Bug Report: appwrite/demo-todo-with-react#69 2:42:19 2 days, 22:37:30
๐Ÿ› Bug Report: a file cannot be deleted, and yields a 404 when calling getFileDownload appwrite/appwrite#5965 21:42:57 None
Why did Appwrite create its own docker images for InfluxDB, Telegraf and ClamAV? appwrite/appwrite#5962 11:26:36 11:26:36
๐Ÿš€ Feature: Full-width container layout appwrite/appwrite#5959 2 days, 21:26:14 None
๐Ÿš€ Feature: Bulk actions appwrite/appwrite#5958 1:07:53 5 days, 1:16:36
๐Ÿ› Bug Report: GraphQL switch dont turn on in cloud version Appwrite appwrite/appwrite#5957 0:40:46 2 days, 8:37:20
๐Ÿ› Bug Report: Can't increase memory limit of PHP functions appwrite/appwrite#5956 2 days, 20:17:50 None
๐Ÿš€ Feature: Retrieve and limit total storage used appwrite/appwrite#5955 1 day, 6:47:33 None
๐Ÿ› Bug Report: Unable to rearrange the order of relationship documents appwrite/appwrite#5954 2:35:13 8 days, 3:45:50
Issue generating Appwrite database models using flutter extension appwrite/sdk-for-cli#89 14 days, 19:20:32 None
๐Ÿš€ Feature: Constants for Error Types appwrite/sdk-generator#698 2 days, 4:33:54 None
๐Ÿš€ Feature: Automatically strip exif data on upload appwrite/appwrite#5950 8:00:18 None
๐Ÿš€ Feature: Purging Classes that aren't being used appwrite/pink#103 None None
Phone Number as an identifier appwrite/appwrite#5949 7:50:27 None
bug Bug Report:memberships queries 500 error appwrite/appwrite#5945 0:18:07 1:46:19
๐Ÿ› Bug Report: "appwrite init function" does not work on macOS appwrite/sdk-for-cli#88 None 0:44:02
๐Ÿ› Bug Report: Some Pattern Input Validation Aren't Working appwrite/appwrite#5936 5:24:15 None
๐Ÿš€ Feature: Give a hint to where you should run init and deploy commands appwrite/sdk-for-cli#87 17:01:56 None
QA appwrite/templates#38 None 15 days, 2:11:59
๐Ÿ› Bug Report: Incorrect Logs appwrite/appwrite#5927 0:50:38 2 days, 21:17:06
๐Ÿš€ Feature: Simplified Management of Document Relationships appwrite/appwrite#5925 1:08:33 13:22:54
PRs Closed in July 2023 #62 None None
PRs Opened in July 2023 #61 None None
Issues Opened in July 2023 #60 None None
Issues Closed in July 2023 #59 None None
Discussions Closed in July 2023 #58 None None
Discussions Opened in July 2023 #57 None None

This report was generated with the Issue Metrics Action
Search query used to find these items: org:appwrite org:open-runtimes org:utopia-php is:issue created:2023-08-01..2023-08-31

Issues Closed in July 2023

Issue Metrics

Metric Value
Average time to first response 23 days, 4:42:16.705882
Average time to close 85 days, 23:37:50.403846
Number of items that remain open 0
Number of items closed 104
Total number of items created 104
Title URL Time to first response Time to close
๐Ÿ› Bug Report: Invalid name: Value must be a valid string and at least 1 chars and no longer than 128 chars appwrite/appwrite#5907 17:27:58 22:04:24
๐Ÿ› Bug Report: 500 error appwrite/appwrite#5881 6:57:44 3 days, 15:44:42
PRs Opened in June 2023 #49 0:00:02 0:02:38
PRs Closed in June 2023 #48 0:00:02 0:03:01
Issues Opened in June 2023 #47 0:00:02 0:04:13
Issues Closed in June 2023 #46 0:00:01 0:04:19
Discussions Closed in June 2023 #45 0:00:01 0:04:26
Discussions Opened in June 2023 #44 0:00:01 0:04:26
PRs Opened in June 2023 #43 0:00:02 0:06:02
PRs Closed in June 2023 #42 0:00:03 0:06:42
Issues Opened in June 2023 #41 0:00:01 0:08:13
Issues Closed in June 2023 #40 0:00:01 0:08:21
Discussions Closed in June 2023 #39 0:00:00 0:08:33
Discussions Opened in June 2023 #38 0:00:01 0:08:33
PRs Opened in June 2023 #37 None 0:05:55
PRs Closed in June 2023 #36 None 0:05:59
Issues Opened in June 2023 #35 None 0:07:17
Issues Closed in June 2023 #34 None 0:07:32
Discussions Closed in June 2023 #32 None 0:07:42
Discussions Opened in June 2023 #33 None 0:07:43
Discussions Opened in #30 None 0:08:22
Discussions Closed in #31 None 0:08:14
๐Ÿ“š Documentation: Update Databases API Python SDK documentation for the "data" parameter in update_document function appwrite/appwrite#5872 3:38:47 1 day, 6:35:32
Discussions Closed in June 2023 #29 None 1 day, 11:21:46
Discussions Opened in June 2023 #28 None 1 day, 11:21:48
PRs Closed in June 2023 #27 None 1 day, 11:21:49
PRs Opened in June 2023 #26 None 1 day, 11:21:50
Issues Closed in June 2023 #25 None 1 day, 11:21:51
Issues Opened in June 2023 #24 None 1 day, 11:21:52
๐Ÿ› Bug Report: appwrite total results stuck on 5000 appwrite/appwrite#5864 0:11:38 2 days, 14:26:16
๐Ÿ› Bug Report: Swift functions won't deploy with more than one dependency appwrite/appwrite#5863 17:53:38 2 days, 4:08:57
๐Ÿš€ [Feature] - Adding K8s adapter utopia-php/orchestration#31 None 2 days, 20:01:12
๐Ÿ› Bug Report: Switch Button should not contain left arrow (UI/UX) appwrite/appwrite#5843 0:56:22 0:55:35
๐Ÿ› Bug Report: Error when uploading large files (over 5 MB) with Appwrite SDK for Flutter (SDK Version: 9.0.1, Server Version: 1.3.3) appwrite/sdk-for-flutter#165 2 days, 6:05:14 2 days, 6:05:14
Error when uploading large files (over 5 MB) with Appwrite SDK for Flutter (SDK Version: 9.0.1, Server Version: 1.3.3) #22 None 0:03:32
๐Ÿ› Bug Report:Error when uploading large files (over 5 MB) with Appwrite SDK for Flutter (SDK Version: 9.0.1, Server Version: 1.3.3) appwrite/appwrite#5838 19:50:33 2 days, 9:28:22
๐Ÿš€ Feature: Function custom execution url (REST API way) appwrite/appwrite#5831 0:09:08 2:31:04
๐Ÿ› Bug Report: Teams API - create/list methods throwing type conversion errors because of null value appwrite/sdk-for-flutter#163 13 days, 21:04:04 13 days, 21:11:42
๐Ÿ› Bug Report: authentication with OAuth2 doesn't send Set-Cookie header appwrite/appwrite#5821 5:59:21 5:59:21
๐Ÿš€ Feature: Email OTP login appwrite/appwrite#5818 3 days, 2:09:13 3 days, 11:52:38
Google oAuth |redirect_uri_mismatch| appwrite/appwrite#5806 6 days, 23:45:01 15 days, 18:24:03
redirect_uri_mismatch when use Google oAuth appwrite/sdk-for-flutter#161 8:33:00 8:33:00
๐Ÿ› Bug Report: Empty activity data in Console appwrite/appwrite#5805 0:54:35 8 days, 6:32:37
๐Ÿ“š Documentation: Missing Query method in appwrite package appwrite/appwrite#5802 None 5:09:39
๐Ÿ› Bug Report: Event session.delete not trigger when remove cause of TTL appwrite/appwrite#5801 1 day, 8:45:12 2 days, 2:43:34
๐Ÿ› Bug Report: Invalid argument (callbackUrlScheme): must be a valid URL scheme: "appwrite-callback-<project_id>" appwrite/appwrite#5794 4:40:43 8 days, 18:50:01
๐Ÿ› Bug Report: UX/UI problem with the password field appwrite/appwrite#5790 0:02:17 10 days, 16:12:46
๐Ÿ› Bug Report: example JSON for function execution is incorrect syntactically appwrite/console#477 1 day, 23:53:51 17 days, 2:59:20
๐Ÿ› Bug Report: Incorrect accounting for registered users based on time appwrite/console#476 17 days, 4:38:15 17 days, 4:38:15
code : 500 Internal Server Error appwrite/appwrite#5789 1:49:06 1:49:06
๐Ÿš€ Feature: Standalone Edge Functions. appwrite/appwrite#5787 3 days, 21:50:33 6 days, 2:02:01
๐Ÿš€ Feature: Project-based Key-Value object for global use. appwrite/appwrite#5786 5 days, 0:01:21 5 days, 0:07:32
๐Ÿ› Bug Report: Error while updating document with numeric attributes appwrite/appwrite#5774 3:14:59 3:14:59
๐Ÿ› Bug Report: Unable to use .community domains as custom domains in firefox appwrite/console#474 0:00:34 22 days, 2:57:49
๐Ÿš€ Feature: sdk for setup single database of project by default appwrite/appwrite#5773 1 day, 3:33:23 6 days, 12:17:58
๐Ÿ› Bug Report: problem when deploy collection from cli appwrite/appwrite#5772 3:32:07 1 day, 7:41:54
๐Ÿ› Bug Report: on uploading images in appwrite storage bucket it showing this error appwrite/appwrite#5771 4:11:54 20 days, 7:00:53
๐Ÿš€ Feature: Purging collection appwrite/appwrite#5767 1 day, 23:10:18 7 days, 10:06:00
๐Ÿš€ Feature: List Teams in Account.get() appwrite/sdk-for-web#62 18:32:23 7 days, 7:31:26
๐Ÿ› Bug Report: android magic url shows "Missing Redirect URL" appwrite/appwrite#5766 0:26:32 0:26:48
๐Ÿ› Bug Report: [Python SDK] Optional parameter documentSecurity is required when creating a collection appwrite/appwrite#5762 1 day, 20:48:37 2 days, 20:59:23
๐Ÿ› Bug Report: Single links instead of plural one. appwrite/console#470 5:56:36 3 days, 15:18:40
๐Ÿ› Bug Report: some confirmation dialogs appear out of screen appwrite/console#466 4 days, 21:36:15 11 days, 0:26:42
๐Ÿ› Bug Report: Wrong signature for createMembership server side implementation appwrite/appwrite#5676 6 days, 22:40:45 41 days, 3:11:22
๐Ÿš€ Feature: restrict unsupported characters for project ID. appwrite/appwrite#5670 20:18:42 41 days, 20:41:09
๐Ÿ› Bug Report: Partially uploaded file shown in console. appwrite/appwrite#5654 12:32:36 43 days, 15:38:12
๐Ÿ› Bug Report: Session Doesn't Persist on Flutter Web appwrite/appwrite#5645 12 days, 7:13:06 55 days, 9:26:14
๐Ÿ› Bug Report: After upgrading from v1.3.4 to v1.3.5, on refresh, I get 404 not found on the console. appwrite/appwrite#5623 20:33:02 56 days, 14:44:00
Feature required: SHA certificate fingerprints for Appwrite Apps appwrite/appwrite#5594 2 days, 22:23:28 44 days, 2:08:50
๐Ÿ“š Documentation: Error in the Python SDK Syntax In the docs appwrite/appwrite#5581 9:28:16 63 days, 19:00:14
๐Ÿ› Bug Report: Unable to delete a document, if it has a relation appwrite/appwrite#5558 10 days, 1:20:44 55 days, 1:47:00
๐Ÿ› Bug Report: Session Limit (Cloud) appwrite/appwrite#5555 7 days, 19:10:05 70 days, 17:43:38
๐Ÿ› Bug Report: Error Updating One to Many Child appwrite/appwrite#5478 1 day, 13:09:19 69 days, 14:48:32
๐Ÿ› Bug Report: The lack of error messages in Appwrite functions. appwrite/appwrite#5472 4 days, 3:23:04 87 days, 23:04:53
๐Ÿ› Bug Report: Bucket Permission not performs properly appwrite/appwrite#5450 3 days, 13:43:19 73 days, 16:43:23
๐Ÿ› Bug Report: expire Format is Wrong in Get Session appwrite/appwrite#5429 1 day, 2:43:51 84 days, 19:23:30
๐Ÿ› Bug Report: expire Format is Wrong in Create Magic URL session (confirmation) appwrite/appwrite#5428 1 day, 2:46:04 84 days, 19:25:19
Roadmap for appwrite pink design appwrite/pink#80 1 day, 13:48:08 77 days, 22:45:49
๐Ÿ› Bug Report: Incorrect handling of content-range header appwrite/appwrite#5392 0:00:51 91 days, 9:00:35
๐Ÿ› Bug Report: Github auth not working appwrite/appwrite#5388 9:54:13 76 days, 7:18:10
๐Ÿ› Bug Report: Docker Swarm fails with Could not resolve host on functions appwrite/appwrite#5329 1 day, 11:38:48 88 days, 22:08:52
๐Ÿ› Bug Report: Country tld for .np is not supported appwrite/appwrite#5317 1 day, 15:38:46 107 days, 12:25:09
๐Ÿ› Bug Report: Server sdk for node deleteFile api delete storage bucket instead of file. appwrite/sdk-generator#638 18:06:53 99 days, 18:08:55
๐Ÿ“š Documentation: CRON syntax information is not added in documentation appwrite/appwrite#5181 1 day, 1:16:11 143 days, 8:31:54
๐Ÿ› Bug Report: email verification (confirmation) does not trigger any account subscription event appwrite/appwrite#5095 12:04:22 159 days, 10:22:07
๐Ÿ› Bug Report: expire is not formatted the same as other datetimes appwrite/appwrite#4982 0:35:07 188 days, 23:32:50
๐Ÿ› Bug Report: getSuffix() empty for some domains utopia-php/domains#22 None 217 days, 0:35:37
๐Ÿ› Bug Report: Create an API Key: Param "name" is not optional appwrite/appwrite#4847 2:09:53 226 days, 18:32:42
๐Ÿ› Bug Report: expire is empty from account.listSessions() appwrite/appwrite#4846 2:11:14 218 days, 3:45:04
๐Ÿš€ Feature: Allow Retrying Failed Builds appwrite/appwrite#4840 2 days, 9:38:24 215 days, 22:17:59
๐Ÿ“š Documentation: links looks wrong at the bottom of Readme file appwrite/sdk-for-web#44 1 day, 12:06:21 216 days, 7:36:48
๐Ÿ“š Documentation: The "Running the Migration" Header Link on the Upgrade Docs is Broken appwrite/appwrite#4731 9:27:51 251 days, 8:04:30
๐Ÿ› Bug Report: Incorrect Audit Activity on Document Create appwrite/appwrite#4436 0:13:44 282 days, 23:30:15
๐Ÿ’„ย Add Code Linter To โ€˜utopia-php/websocketโ€™ appwrite/appwrite#4356 2 days, 5:03:07 280 days, 0:43:54
๐Ÿš€ Feature: Improve Missing Redirect URL Page for Mobile appwrite/appwrite#3930 153 days, 23:01:12 295 days, 15:22:15
๐Ÿ› Bug Report: Error Passing Integer for Double Attribute appwrite/appwrite#3806 0:14:07 299 days, 10:00:08
๐Ÿ› Bug Report: Console: Cookies are not cleared on logout, and can prevent login later appwrite/appwrite#3584 1:11:22 360 days, 21:34:02
๐Ÿ› Bug Report: Missing default client icon appwrite/appwrite#3353 390 days, 2:59:18 390 days, 2:44:25
๐Ÿ› Bug Report: First execution unnecessarily slow appwrite/appwrite#3332 2 days, 18:52:38 393 days, 21:56:19
๐Ÿ› Bug Report: Appwrite function stuck in Waiting state after execution appwrite/appwrite#3081 1 day, 0:58:52 448 days, 3:20:07
Julia 1.6 Runtime open-runtimes/open-runtimes#64 479 days, 22:21:10 479 days, 22:21:11
๐Ÿ› Bug Report: Data loss during migration from 0.11.x to 0.12.x appwrite/appwrite#2800 3:53:45 502 days, 0:48:54
๐Ÿ“š Documentation: The issues forms all have the word "Bug", even if it is a feature or documentation request appwrite/appwrite#1828 0:00:18 639 days, 19:13:02
Add a consistent user-agent header to all the SDKs appwrite/sdk-generator#48 804 days, 12:39:15 1097 days, 23:35:29
This report was generated with the Issue Metrics Action

PRs Closed in June 2023

Issue Metrics

Metric Value
Average time to first response 4 days, 7:26:20.211009
Average time to close 26 days, 21:48:55.571429
Number of items that remain open 0
Number of items closed 133
Total number of items created 133
Title URL Time to first response Time to close
Create Compress image Branch open-runtimes/examples#152 None 0:00:45
Update dotnet sdk create file example appwrite/sdk-generator#683 4 days, 18:38:47 5 days, 10:15:16
Downgrade mockito in Flutter and Dart SDKs appwrite/sdk-generator#682 1 day, 8:03:11 1 day, 8:03:18
added tests and comments appwrite/sdk-for-dart#43 0:51:51 0:52:10
update changelog appwrite/sdk-for-flutter#160 0:12:14 0:13:51
fixed flutter/dart comments appwrite/sdk-generator#678 0:01:56 0:02:04
added test appwrite/sdk-for-flutter#159 0:04:03 0:37:58
added tests appwrite/sdk-for-flutter#158 None 0:06:28
added tests appwrite/sdk-for-flutter#157 0:38:56 0:40:26
Move flutter service tests to dart appwrite/sdk-generator#677 None 0:14:09
Add tests for helpers and moels to Flutter and Dart SDKs appwrite/sdk-generator#676 3:34:47 3:51:51
Added Stars and Forks button in README.md appwrite/appwrite#5731 2 days, 8:30:21 2 days, 8:30:21
Calc tier addition appwrite/appwrite#5730 2:22:22 2:55:11
WIP: fix storage tests appwrite/sdk-generator#675 0:02:05 17:05:11
fix: missing collection error appwrite/appwrite#5728 None 1:26:54
Fix calc tier appwrite/appwrite#5727 0:13:35 2:04:49
Flutter SDK: tests for services appwrite/sdk-generator#673 1 day, 10:16:31 2 days, 1:17:08
account test appwrite/sdk-for-flutter#155 None 6 days, 23:19:46
Update package.json appwrite/sdk-for-web#59 1 day, 9:39:21 9 days, 22:50:02
feat: update to 1.3.7 release appwrite/integration-for-gitpod#19 3:17:53 14:29:15
fix user agent appwrite/sdk-generator#672 0:05:14 3 days, 6:52:32
Add doc comments appwrite/sdk-for-dart#42 None 6 days, 0:22:11
Add doc comments appwrite/sdk-for-flutter#154 None 5 days, 22:31:11
Add inline doc comments to the Dart and Flutter SDKs appwrite/sdk-generator#671 1 day, 4:16:23 4 days, 3:55:17
fixed incorrect audity activity on document create appwrite/appwrite#5718 0:00:17 3 days, 6:50:19
Fix upvotes appwrite/builtwith#31 0:00:04 0:00:53
fix: upvotes bug appwrite/builtwith#30 0:00:03 5:00:46
Update getting started URL appwrite/sdk-for-kotlin#31 8:33:14 11 days, 23:23:51
Create an alias for Appwrite Cloud in docs. appwrite/docs#388 21:59:07 21:59:44
feat: update tests appwrite/appwrite#5712 None 1:40:04
Feat: Add database to log appwrite/appwrite#5711 1:24:08 1:24:14
feat: project 404 page appwrite/builtwith#28 0:00:04 0:48:22
Fix: fix type conversion of strings for all models in .NET SDK appwrite/sdk-generator#670 15:28:40 3 days, 23:01:16
improve CLI readme contribution part appwrite/sdk-generator#668 0:01:45 0:02:01
Fix second index validation when first index is fulltext utopia-php/database#283 1:01:37 1:31:51
Feat database upgrade appwrite/appwrite#5710 6 days, 5:02:00 7 days, 7:53:42
refactor collections config appwrite/appwrite#5709 10:08:08 14:36:36
Update database utopia-php/abuse#55 0:18:44 0:20:05
Update database utopia-php/audit#51 0:19:36 0:20:37
feat: update database config appwrite/appwrite#5708 None 19:34:28
delete unnecessary project collections task appwrite/appwrite#5705 0:53:01 22:08:47
Changed GitHub URL text and submission text appwrite/builtwith#27 0:00:06 1:03:05
Changed Twitter URL text for easier understanding appwrite/builtwith#26 0:00:03 16:27:20
Collection not found utopia-php/database#282 1 day, 15:36:47 1 day, 15:36:54
fix delete cache file to dbp-master appwrite/appwrite#5699 2:14:51 2:50:24
cache deletion bug fix appwrite/appwrite#5695 1:29:22 2:56:40
chore: remove generateSearch script appwrite/builtwith#24 0:00:04 0:00:12
Adding Funcover as a tool appwrite/awesome-appwrite#494 21:01:30 21:01:39
refactor cache save appwrite/appwrite#5689 None 1 day, 0:37:07
style: add gap between project title and upvote appwrite/builtwith#23 0:00:03 0:00:20
Update 1.4.x from Master appwrite/appwrite#5683 2 days, 6:43:05 2 days, 12:37:07
Fix: $permissions returns as object rather than array utopia-php/database#281 0:05:01 11:09:27
feat: use Link component, fix mobile menu appwrite/builtwith#22 0:00:05 3 days, 0:06:40
fix: missing import appwrite/appwrite#5672 None 0:01:54
style: fix project image aspect ratios appwrite/builtwith#21 0:00:07 0:58:15
fix for failing flutter test appwrite/sdk-generator#664 4 days, 19:36:09 4 days, 19:41:44
Update document missing params error message appwrite/appwrite#5671 1 day, 18:21:29 5 days, 7:25:51
V19 migration appwrite/appwrite#5668 2 days, 15:50:03 14 days, 16:10:53
ci: create CI script to build cloud images appwrite/appwrite#5666 None 3:16:00
refactored email template appwrite/appwrite#5665 20:16:21 1 day, 2:26:05
Reorder databases subheadings based on importance appwrite/docs#381 2:14:41 2:14:47
Mention wildcards under Realtime channels appwrite/docs#379 0:01:24 0:02:40
remove additional white spaces appwrite/sdk-generator#662 4:01:06 1 day, 0:30:48
Add RuPay Credit Card appwrite/appwrite#5651 None 10:32:14
Sync master with 1.3.x appwrite/appwrite#5649 3:25:37 3:29:00
Updates for 1.3.7 appwrite/appwrite#5648 0:11:01 1:04:34
chore: update utopia-php/framework appwrite/appwrite#5647 None 0:02:33
Fix trailing slashes master utopia-php/http#100 0:02:05 0:14:56
feat: add support for trailing slashes in routes and urls utopia-php/http#99 0:03:58 0:13:28
Added event.preventDefault(); appwrite/playground-for-web#83 0:50:19 0:52:32
feat: update playground appwrite/playground-for-android#29 0:00:39 0:00:58
Fix the routing for the default OAuth2 pages appwrite/appwrite#5643 None 0:00:11
Fix the routing for the default OAuth2 pages appwrite/appwrite#5640 9:50:01 9:56:44
feat: rejectProject function, add userId to projects, add desktop and cli platforms, misc fixes appwrite/builtwith#20 0:00:07 2 days, 18:25:46
cache perm fix appwrite/appwrite#5638 3 days, 20:14:47 3 days, 20:15:01
sync 1.3.x appwrite/appwrite#5637 0:00:48 0:38:53
release: 1 3 6 new appwrite/appwrite#5636 None 0:05:30
release: 1.3.6 appwrite/appwrite#5635 None 0:05:05
chore: prepre 1.3.6 appwrite/appwrite#5634 0:01:05 4 days, 2:19:10
fix: remove default order appwrite/console#458 0:00:08 0:03:31
fix: trailing wildcards appwrite/appwrite#5633 0:27:39 0:27:49
feat: add trailing wildcards utopia-php/http#98 0:01:42 0:06:45
fix: trailing wildcards appwrite/appwrite#5632 0:01:55 0:38:14
Extract db from list while backing appwrite/appwrite#5630 8:01:24 4 days, 7:51:57
Update link to cron docs appwrite/console#456 0:00:08 16:20:31
feat: trailing wildcards utopia-php/http#97 4:46:25 20:14:04
feat: migrate to cloud, hamburger menu, refactors appwrite/demos-for-astro#6 0:00:05 6 days, 3:21:37
Update file name appwrite/appwrite#5624 1 day, 6:59:53 1 day, 7:00:01
Allow Updating email and phone without password appwrite/appwrite#5621 1 day, 15:36:57 1 day, 15:37:03
Fix system performance appwrite/appwrite#5620 0:02:38 1 day, 12:19:06
Fulltext fixes utopia-php/database#279 8 days, 12:12:31 14 days, 12:32:44
Removed Typo in OAuth(Web) section appwrite/docs#376 1 day, 8:18:28 2 days, 0:51:24
Upgrade dependencies Flutter and dart appwrite/sdk-generator#661 4 days, 6:49:22 6 days, 6:18:03
Fix creating a user throws an error appwrite/sdk-generator#660 0:21:15 8 days, 6:36:42
Feat: Improve logging appwrite/appwrite#5590 5 days, 23:02:00 5 days, 23:02:06
Account Password Related Updates appwrite/appwrite#5584 1 day, 18:54:33 7 days, 0:15:51
Fix syntax error in Python examples appwrite/docs#373 5:34:30 7 days, 18:12:19
remove password required for project deletion appwrite/appwrite#5580 8 days, 7:38:02 28 days, 16:48:59
Add custom copy for google oauth provider appwrite/console#453 0:00:06 15 days, 19:27:58
Update getting-started-for-flutter.phtml appwrite/docs#372 2 days, 18:41:25 12 days, 11:05:51
Update authentication-server.phtml appwrite/docs#371 3 days, 8:31:09 13 days, 0:55:10
remove query limit and offset appwrite/docs#370 0:01:06 13 days, 15:35:08
Collection Index Validation appwrite/appwrite#5552 35 days, 14:54:23 41 days, 4:21:39
Index validation utopia-php/database#271 1 day, 11:29:41 25 days, 15:20:40
feat: update to 1.3.4 release appwrite/integration-for-gitpod#18 None 37 days, 4:46:04
Update links to cron docs appwrite/console#434 0:00:06 24 days, 0:55:39
remove audit userInternalId appwrite/appwrite#5514 46 days, 10:46:10 52 days, 0:13:42
Update Mail.php appwrite/appwrite#5495 11:48:39 57 days, 4:37:39
get jwt from request param appwrite/appwrite#5470 37 days, 5:56:26 37 days, 15:13:18
Queries validator transfer to Utopia appwrite/appwrite#5439 None 55 days, 21:13:37
Feat initial push utopia-php/migration#4 21 days, 6:15:49 57 days, 12:09:28
feat add node 20 runtime open-runtimes/open-runtimes#163 55 days, 6:04:41 55 days, 6:04:41
add java 20 runtime open-runtimes/open-runtimes#162 55 days, 6:11:46 55 days, 6:11:46
Appwrite validators transfer utopia-php/database#264 20 days, 14:54:29 37 days, 17:07:40
Feat: Bun runtime 0.5.9 open-runtimes/open-runtimes#161 0:29:33 52 days, 18:05:19
fix: visual bugs appwrite/console#401 0:00:08 56 days, 21:38:38
Fix: Added Rebuild button for function view when build fails during deployment appwrite/console#376 0:00:03 61 days, 4:17:08
Indexes for permissions utopia-php/database#248 67 days, 0:24:47 80 days, 22:53:48
feat: add search to database collections appwrite/console#342 0:00:04 106 days, 18:18:55
update env variables appwrite/demos-for-astro#5 0:00:03 85 days, 15:01:19
Feat: Safe timeout open-runtimes/open-runtimes#156 None 103 days, 17:38:06
Feat: Custom commands support open-runtimes/open-runtimes#154 None 105 days, 23:02:08
Refactor dotnet generation appwrite/sdk-generator#617 None 105 days, 14:46:10
Feat: v3 Swift open-runtimes/open-runtimes#147 None 130 days, 2:23:34
doc: Added "Appwrite using NGINX as Reverse Proxy" resource appwrite/awesome-appwrite#474 2 days, 6:21:27 134 days, 21:52:53
Feat: v3 C++ open-runtimes/open-runtimes#145 None 132 days, 5:20:45
Feat: v3 .NET open-runtimes/open-runtimes#144 14 days, 14:08:48 128 days, 14:02:46
fix: adds the missing expire attribute to ListSessions call appwrite/appwrite#4872 25 days, 0:18:38 167 days, 1:35:45
Add .NET 7.0 runtime open-runtimes/open-runtimes#124 5 days, 0:17:07 214 days, 5:27:08
feat : Add error attribute to Collection Indexes and Attributes appwrite/appwrite#4575 1:38:06 239 days, 13:37:52
long size varchar with long index size mysql utopia-php/database#210 10:21:02 233 days, 10:46:57
Feat phone auth 360dialog appwrite/appwrite#4536 0:13:21 240 days, 16:38:24
Adding Scoop support appwrite/sdk-generator#450 3:59:23 380 days, 21:12:43

PRs Opened in July 2023

Issue Metrics

Metric Value
Average time to first response 1 day, 13:44:19.210526
Average time to close 2 days, 14:20:58.577922
Number of items that remain open 86
Number of items closed 154
Total number of items created 240
Title URL Time to first response Time to close
Feat sendmessage swift open-runtimes/examples#167 None None
Separate OAuth2 info from Sessions into Identities appwrite/appwrite#5919 None 1:42:38
Noah open-runtimes/examples#166 None 0:00:12
Fix crud operations permission in update relationships utopia-php/database#300 None None
Delete duplicate users endpoint appwrite/appwrite#5918 None None
Update the docs for the _APP_SMS_PROVIDER env var appwrite/appwrite#5917 2:04:11 None
Update DSN to support special chars for user and password utopia-php/dsn#3 5:57:52 5:57:58
Update DSN to support special chars for user and password appwrite/appwrite#5916 0:37:26 None
Fix missing description for function create build endpoint appwrite/appwrite#5915 0:49:40 None
Start work Docs appwrite/docs#401 None None
Feat: Bulk Deletion appwrite/console#485 0:00:06 None
Improve Select Query utopia-php/database#299 None None
update framework appwrite/appwrite#5909 None None
Feat 4472 - add function for deepgramLanguageDetection open-runtimes/examples#165 None None
Feat 4483 - Kotlin function for deepgramTranscribeVideo added open-runtimes/examples#164 None None
Feat 4461 - Kotlin function for deepgramTopicDetection added open-runtimes/examples#163 None None
Update readme open-runtimes/examples#162 None None
Blob appwrite/appwrite#5903 1 day, 15:10:00 None
Github Actions CI/CD open-runtimes/open-runtimes#188 21:42:10 None
Fix collection disabled mode checks appwrite/appwrite#5900 0:25:03 None
Update docker-compose.yml to version 3.8 appwrite/appwrite#5899 None None
Delete project when deleting org appwrite/appwrite#5898 5:18:26 1 day, 2:19:30
Improve OAuth2 error handling appwrite/appwrite#5895 18:48:01 None
Fix: Missed during reviews appwrite/templates#34 None None
feat: update sentry constructor utopia-php/logger#29 2:10:39 12:58:45
Update README.md appwrite/templates#33 0:00:30 0:00:38
Feat: req body raw open-runtimes/open-runtimes#187 0:22:21 0:58:58
Fix 5871 relationships with non existing documents utopia-php/database#298 0:10:54 None
Fix 5893 oauth deeplink multiple sessions appwrite/appwrite#5894 None None
updated account.php to not include set cookies for default Oauth route appwrite/appwrite#5892 None 0:06:38
Feat: Improve .NET SDK serialization/deserialization performance appwrite/sdk-generator#696 None None
Make 1.4.x compatible with latest db release 0.39.0 appwrite/appwrite#5890 None 4:41:17
Add ARMV7 and ARMV8 differentiators utopia-php/system#23 2:42:38 None
Docs: Add public docs appwrite/templates#32 3:40:16 7:34:31
downgrade swoole to 5.0.1 appwrite/docker-base#16 None 0:31:30
Clear validator when closing wizard appwrite/console#483 0:00:06 13:24:10
bump upgrade database utopia-php/audit#53 0:04:07 10:30:14
bump update database utopia-php/abuse#57 0:04:54 10:33:33
feat: add support for batch updates utopia-php/database#297 None None
Fix 5404 update document without relation permission appwrite/appwrite#5887 2:02:59 None
Merge master into 1.4.x appwrite/appwrite#5886 14:21:44 14:21:51
Feat query support attributes indexes appwrite/appwrite#5885 0:47:55 None
Remove the OAuth2 Callback endpoints from api group appwrite/appwrite#5884 16:21:44 1 day, 12:35:20
Update description for user email, phone, and preferences appwrite/console#482 0:00:06 2 days, 1:30:10
Add latest tag to build command appwrite/docker-altair#8 None None
Fix: Deploys open-runtimes/open-runtimes#186 17:19:30 17:43:49
Fixed issue 29 appwrite/php-clamav#30 0:00:48 None
Fix: Bugs after QA open-runtimes/open-runtimes#185 20:34:05 20:56:13
add a cookie test utopia-php/swoole#28 0:01:11 0:14:21
update swoole version appwrite/docker-base#15 0:07:39 0:41:32
Fix: Improve docs open-runtimes/open-runtimes#184 0:05:58 1:11:49
Ensure console requests include project header appwrite/console#481 0:00:05 12:11:57
Further rebrand from Akamai appwrite/docs#400 8:02:05 8:02:15
Update Akamai integration further according to their latest rebrand appwrite/appwrite#5879 None None
Db pools backups appwrite/appwrite#5878 None None
Refactor tests workflow appwrite/appwrite#5877 None None
Fix: Rename new runtimes open-runtimes/open-runtimes#183 None 17:01:59
fix: key attribute trim isn't trim appwrite/console#480 0:00:06 0:03:24
feat: update migrations appwrite/appwrite#5876 None None
Feat: Update base images open-runtimes/open-runtimes#182 None 0:57:24
Feat: Add Deno 1.35 open-runtimes/open-runtimes#181 0:13:14 0:29:35
Upgrade dependencies utopia-php/swoole#27 4:21:45 4:21:51
audio/aac mime type added appwrite/appwrite#5875 7:12:58 None
Split adapters into separate tests for better maintainability utopia-php/logger#28 0:12:55 None
Feat upgrade task appwrite/appwrite#5874 8:05:11 2 days, 20:56:48
Fix prefs permissions appwrite/sdk-generator#695 2:49:59 2:50:08
Send tweet open-runtimes/examples#161 None 0:01:17
Fix swift build for multiple dependencies open-runtimes/open-runtimes#180 0:27:43 1 day, 17:43:24
fix: X domain console cookie ENV var appwrite/appwrite#5873 2:43:07 2:43:12
[Snyk] Upgrade cross-fetch from 3.1.5 to 3.1.8 appwrite/sdk-for-web#66 None None
test updated docker-base version appwrite/appwrite#5867 None None
Upgrade dependencies appwrite/docker-base#14 2 days, 3:03:55 2 days, 3:04:00
upgrade dependencies appwrite/appwrite#5866 3:09:29 3:09:34
[Snyk] Upgrade cross-fetch from 3.1.5 to 3.1.7 appwrite/sdk-for-web#65 None None
Fix swift build for multiple dependencies open-runtimes/open-runtimes#179 3:41:35 1 day, 10:10:56
Feat: Start commands appwrite/runtimes#58 0:05:52 None
fix: testing issues appwrite/templates#31 0:31:57 4 days, 20:56:25
feat: dotnet starter appwrite/templates#30 0:06:48 14:21:33
feat: Swift starter appwrite/templates#29 0:04:41 0:04:44
Create a dedicated upgrade command appwrite/appwrite#5860 19:08:32 3 days, 4:06:52
Create GH workflow to generate github metrics #23 8:43:38 4 days, 7:34:41
feat: C++ starter appwrite/templates#28 1:29:22 19:30:30
feat: Deno starter appwrite/templates#27 1:56:08 4:41:44
feat: Kotlin starter appwrite/templates#26 3:16:26 6:02:23
feat: Java starter appwrite/templates#25 3:47:51 6:34:36
feat: Ruby starter appwrite/templates#24 0:17:51 4:39:47
icons: release 1 4 appwrite/pink#98 0:00:03 0:10:55
updates: release 1.4 appwrite/pink#97 0:00:03 None
feat: X domain console cookie appwrite/appwrite#5859 8:40:45 1 day, 3:23:54
feat: PHP starter appwrite/templates#23 1:39:59 2:19:14
Feat: Table Generator appwrite/templates#22 3:25:40 5 days, 23:55:11
Add new language versions to V3 open-runtimes/open-runtimes#178 1 day, 13:21:36 4 days, 0:05:38
Upgrade remaining runtimes to V3 open-runtimes/open-runtimes#177 3 days, 8:10:01 3 days, 9:12:38
Update Project providers to also include the provider key appwrite/appwrite#5857 5:58:14 5:58:19
Add migration docs appwrite/docs#399 0:00:17 None
Add support for queries in List attributes and List Indexes endpoint appwrite/appwrite#5856 5 days, 3:05:45 6 days, 1:27:38
Update description for User and Key accesedAt appwrite/appwrite#5855 10:09:20 10:09:24
Chunk it utopia-php/storage#80 0:17:48 2 days, 16:21:19
feat: Dart starter appwrite/templates#21 19:52:56 20:27:57
docs: update node starter appwrite/templates#20 0:08:02 0:17:33
feat: Python starter template appwrite/templates#19 1:28:58 1:37:33
Dart 2.19 and 3.0 runtimes open-runtimes/open-runtimes#176 0:51:10 1 day, 1:46:06
Akamai setup in readme appwrite/appwrite#5854 0:07:26 0:07:33
Fix audit user internal appwrite/appwrite#5853 6:19:03 6:37:35
[Node] - Adapting servers to pass the SIGINT to the child server. open-runtimes/open-runtimes#175 2:39:28 None
feat: Starter Template function appwrite/templates#18 0:14:21 16:22:24
Fix np TLD validation appwrite/appwrite#5847 8:03:30 10:50:13
Add method for creating a timeout for all find, sum, count queries in timeout supported dbs utopia-php/database#296 6 days, 5:41:23 11 days, 21:33:17
style: level 10 appwrite/pink#96 0:00:02 None
feat: Push Notifications with FCM function appwrite/templates#17 None None
feat: Generate QR Code function appwrite/templates#16 None 5 days, 0:23:08
change to use find instead of iterating index array in Get Index route appwrite/appwrite#5846 13:21:44 5 days, 23:38:25
feat: Prepare readme template appwrite/templates#15 1:50:26 1 day, 1:00:16
Sync with Master and 1.3.x appwrite/appwrite#5845 1:49:58 1:50:04
Appwrite 1.4.0 appwrite/appwrite#5844 None None
Ensure deletes worker iterates over all schedules appwrite/appwrite#5842 1 day, 5:50:32 1 day, 5:50:40
Feat 4122 compress image python open-runtimes/examples#160 0:01:33 None
Feat 4122 compressImage python open-runtimes/examples#159 0:38:24 0:40:45
No Exception when no change in update document function utopia-php/database#295 3:11:48 8 days, 1:39:25
No Exception when no change in update document function utopia-php/database#294 None 0:03:12
feat: router gen. 2 appwrite/appwrite#5840 None None
feat: Censor with Redact function appwrite/templates#14 12 days, 7:50:50 12 days, 7:50:55
feat: Sync with Meilisearch function appwrite/templates#13 13 days, 6:37:46 13 days, 6:37:53
fix: delete schedule document if project is deleted as well appwrite/appwrite#5839 None 1:29:14
Improve Migrations Stablity utopia-php/migration#7 None None
feat: WhatsApp with Vonage function appwrite/templates#12 3 days, 23:04:48 12 days, 10:53:53
upgrade to framework v2 utopia-php/cli#28 None None
Ensure deletes worker deletes resources using internal id appwrite/appwrite#5833 2 days, 5:22:41 2 days, 6:26:11
Command center and migrations appwrite/console#479 0:00:05 None
Functions G4 appwrite/docs#398 7 days, 23:08:14 None
feat: Sync with Algolia function appwrite/templates#11 13 days, 10:27:57 13 days, 10:28:04
feat: Censor with Redact function appwrite/templates#10 None 0:04:40
Bump clamav to get it working again appwrite/appwrite#5830 1:38:17 None
No Exception when no change in update document function utopia-php/database#293 None 23:01:01
feat: update for database migrations utopia-php/database#292 None None
feat: add support for migrations appwrite/appwrite#5829 None None
Add support for migrations appwrite/appwrite#5828 None None
feat: Analyze with Perspective API function appwrite/templates#9 13 days, 6:01:33 13 days, 6:01:38
Adding the ability to change Appwrite hard limit appwrite/appwrite#5825 1:43:30 None
Fix database filters utopia-php/database#291 None None
Fix permission test utopia-php/database#290 7 days, 10:20:08 None
wip: feat: add DB and UI appwrite/dynamic-links#4 None None
fix: typo in integration name appwrite/docs#397 0:02:34 0:03:05
Feat: add linter workflow utopia-php/queue#15 1:39:28 1:40:35
feat: Add linter workflow utopia-php/dsn#2 0:25:16 0:25:21
feat: add linter workflow utopia-php/queue#14 0:32:32 1:15:16
Feat: Implement linter utopia-php/migration#6 0:42:50 3:03:35
Always use latest version from GitHub releases appwrite/integration-for-digitalocean#37 14:28:01 None
Preference Null Value Fixed appwrite/sdk-for-flutter#164 None 1 day, 1:55:35
fixed typos appwrite/demo-almost-netflix-for-flutter#10 5:42:18 3 days, 20:23:46
Fix: Disable hackathon redirect appwrite/console#478 0:00:05 0:08:44
Bump database version utopia-php/audit#52 7:22:46 7:22:51
Add videos to readme appwrite/dynamic-links#3 None 0:01:17
Bump database version utopia-php/abuse#56 9:14:35 9:14:40
docs: add coc, contributing and update readme appwrite/dynamic-links#2 0:21:04 1:07:58
Fix deno import links appwrite/functions-starter#53 0:04:52 None
feat: Initial appwrite/dynamic-links#1 0:17:28 0:23:18
feat: Prompt ChatGPT function appwrite/templates#8 12 days, 20:37:44 15 days, 2:38:44
feat: Discord Command Bot function appwrite/templates#7 None None
Doc: Fix .NET example links open-runtimes/open-runtimes#173 None 3 days, 11:05:23
Feat 4103 create wipe appwrite collection java open-runtimes/examples#158 None None
Create codeql.yml appwrite/appwrite#5816 4:39:46 4:39:46
Fix 5404 update doc without relation permission appwrite/appwrite#5815 7:24:46 13 days, 3:09:27
Add .NET SDK examples to guides appwrite/docs#396 5 days, 2:47:01 7 days, 0:12:44
Fix cache delete appwrite/appwrite#5811 3:28:13 None
Update README.md #21 None 11 days, 0:19:25
Update create-session-anonymous.md appwrite/appwrite#5810 None 4 days, 20:07:14
Feat 3960 kotlin send message function open-runtimes/examples#157 15:22:42 None
Add method to Document to set multiple attributes utopia-php/database#289 16:41:13 16:41:18
Fix audit user internal appwrite/appwrite#5809 15:23:34 7 days, 6:54:04
fixed team creation response if teamId already exists appwrite/appwrite#5808 0:43:15 6 days, 2:22:37
Dart code fix in refreshing OAuth2 session appwrite/docs#395 22:25:15 1 day, 21:31:21
feat: GitHub Issue Bot function appwrite/templates#6 None None
feat: URL Shortener function appwrite/templates#5 None None
feat: Generate PDF function appwrite/templates#4 18 days, 17:02:34 18 days, 17:02:41
Update playground for SDK version 0.4.2 appwrite/playground-for-dotnet#15 3:54:45 4:02:56
usage collections fix appwrite/appwrite#5807 0:17:19 1:03:51
Update README.md open-runtimes/examples#156 None None
feat: Email Contact Form function appwrite/templates#3 None None
Provider access token appwrite/docs#394 1 day, 13:01:08 None
Added PHP example for wipe collection function open-runtimes/examples#155 13 days, 1:00:33 None
Add APIs to atomically increment/decrement numeric attributes appwrite/appwrite#5803 14:19:26 None
feat: add Refine to framework options appwrite/builtwith#33 0:00:04 2 days, 15:19:17
feat: Subscriptions with Stripe function appwrite/templates#2 None None
Update method name for updateMembershipRoles appwrite/appwrite#5800 0:26:59 None
Related to Appwrite 1.4.x release appwrite/sdk-generator#694 11 days, 0:15:19 None
fix: cloud redirect appwrite/appwrite#5798 0:27:42 0:30:18
1.3.x appwrite/appwrite#5797 1:04:07 21:06:05
fix: Add missing semicolon in AppwriteException constructor in .NET SDK appwrite/sdk-generator#693 12:16:05 1 day, 17:21:43
doc: Add .NET SDK docs examples appwrite/appwrite#5796 1:57:33 1:57:38
Fix exception class + update readme & docs examples appwrite/sdk-for-dotnet#24 0:21:27 1 day, 18:42:36
feat: update python version appwrite/appwrite#5795 2:53:46 3:07:21
fix: ci failure appwrite/sdk-for-python#67 0:10:00 0:19:46
feat: Hello, World! function appwrite/templates#1 7 days, 19:33:47 9 days, 2:21:19
Feat 4472 deepgram language detection kotlin open-runtimes/examples#154 None None
Fix python sdk issue appwrite/sdk-generator#692 0:05:52 1:08:27
Update CI to use newer Ubuntu appwrite/sdk-for-python#66 0:17:50 0:17:56
Dev appwrite/sdk-for-python#65 0:35:34 0:46:22
Fix Invalid Imports utopia-php/migration#5 1:02:46 1:02:50
fix: Add type field to AppwriteException class to .NET SDK appwrite/sdk-generator#691 4:48:19 4:48:30
feat: update error in Exception constructor appwrite/appwrite#5793 13:44:58 13:47:09
Feat db pools db pools master sync appwrite/appwrite#5792 2 days, 4:30:54 2 days, 11:38:27
usage worker start hook appwrite/appwrite#5791 None 7 days, 15:35:04
adding worker type utopia-php/platform#11 None None
Feat 4103 create wipe appwrite collection java open-runtimes/examples#153 0:02:11 0:00:21
fixed relationship update bug in two way type appwrite/appwrite#5788 2:12:27 2 days, 23:10:51
doc: Update .NET SDK docs examples template appwrite/sdk-generator#690 6:12:00 6:12:05
doc: Update getting started examples for .NET SDK appwrite/appwrite#5785 0:44:49 3 days, 5:35:12
doc: Update getting started example for .NET appwrite/appwrite#5784 None 0:03:35
feat: x domain cookie appwrite/appwrite#5783 5 days, 19:17:35 13 days, 23:06:39
fixed CODE_OF_CONDUCT broken link appwrite/sdk-for-web#63 None None
Track a user's last activity appwrite/appwrite#5781 3 days, 15:33:16 13 days, 6:56:57
Show user's last activity appwrite/console#475 0:00:05 20 days, 12:08:16
Update description of default permission behavior to be more specific and accurate appwrite/docs#393 0:16:45 18 days, 8:42:48
doc: Add .NET SDK docs examples appwrite/appwrite#5780 None 15:08:40
fix: build error appwrite/sdk-for-python#64 0:20:16 0:20:36
Update SDK version appwrite/playground-for-dotnet#14 0:03:43 0:03:47
fix: python library version appwrite/sdk-generator#689 0:03:19 0:06:52
Update icon and add readme to package appwrite/sdk-for-dotnet#23 0:09:34 0:09:38
Update icon and add readme to package appwrite/sdk-for-dotnet#22 None 0:16:35
feat: SSR appwrite/appwrite#5777 None None
fix nullable parameters in request body appwrite/sdk-for-python#63 0:19:20 0:53:03
Update Appwrite icon and link Readme in .NET SDK project file appwrite/sdk-generator#688 0:50:45 1:08:47
fix: remove python nullables from parameters appwrite/sdk-generator#687 0:02:04 3:52:22
Framework V2 utopia-php/http#102 5 days, 0:07:10 None
[Node] - Adapting servers to pass the SIGINT to the child server. open-runtimes/open-runtimes#171 13 days, 16:36:30 6 days, 11:41:44
Add label method to Role helper appwrite/sdk-generator#686 5 days, 1:37:41 5 days, 1:38:56
Feat add postgres driver appwrite/docker-base#13 None 0:15:48
Update playground examples appwrite/playground-for-dotnet#13 7:07:37 7:44:24
fix doc comment for filter method appwrite/appwrite#5769 2 days, 2:09:59 None
Linode/Akmai integration in docs appwrite/docs#392 1 day, 2:18:37 12 days, 9:24:19
Primary key permission utopia-php/database#288 27 days, 11:35:13 None
Fix: property type check for boolean properties appwrite/sdk-generator#685 12:33:09 12:33:20
Update inputCron.svelte to fix-#5719-Bug Report: Schedule function wiโ€ฆ appwrite/console#473 0:00:04 None
enable .net sdk and generate for 1.3.x appwrite/appwrite#5765 None 0:01:12
Latest changes appwrite/sdk-for-dotnet#21 1:04:11 1 day, 4:44:25
Refactor workers appwrite/appwrite#5764 1 day, 17:21:34 None
Refactor init Files appwrite/appwrite#5763 None None
feat-esmodules-v3 open-runtimes/open-runtimes#169 13 days, 19:20:28 13 days, 19:20:28
Fix [Bug]: Change cursor pointer in checkbox's disabled state #91 appwrite/pink#95 0:00:02 None
This report was generated with the Issue Metrics Action

Discussions Closed in June 2023

Issue Metrics

Metric Value
Average time to first response 46 days, 21:04:57.833333
Average time to close 261 days, 23:52:18.166667
Average time to answer 2 days, 11:16:25
Number of items that remain open 0
Number of items closed 6
Total number of items created 6
Title URL Time to first response Time to close Time to answer
Improvements to Administering Collections appwrite/appwrite#2720 10:57:38 506 days, 9:55:12 None
Time-Based One Time Password 2fa support. appwrite/appwrite#5681 3 days, 4:47:09 6 days, 20:46:46 None
Default value for attribute is not being set on the appwrite console appwrite/appwrite#5613 12:47:33 2 days, 11:26:02 2 days, 5:54:38
subscribe functionality in python sdk? appwrite/appwrite#5596 2 days, 6:49:53 2 days, 18:19:08 2 days, 16:38:12
Ability to Disable any of Appwrite's Service appwrite/appwrite#2475 0:02:10 540 days, 1:20:54 None
Events/Function trigger for realtime subscribe/unsubscribe appwrite/appwrite#2587 274 days, 19:05:24 513 days, 9:25:47 None

PRs Closed in June 2023

Issue Metrics

Metric Value
Average time to first response 4 days, 7:26:20.211009
Average time to close 26 days, 21:48:55.571429
Number of items that remain open 0
Number of items closed 133
Total number of items created 133
Title URL Time to first response Time to close
Create Compress image Branch open-runtimes/examples#152 None 0:00:45
Update dotnet sdk create file example appwrite/sdk-generator#683 4 days, 18:38:47 5 days, 10:15:16
Downgrade mockito in Flutter and Dart SDKs appwrite/sdk-generator#682 1 day, 8:03:11 1 day, 8:03:18
added tests and comments appwrite/sdk-for-dart#43 0:51:51 0:52:10
update changelog appwrite/sdk-for-flutter#160 0:12:14 0:13:51
fixed flutter/dart comments appwrite/sdk-generator#678 0:01:56 0:02:04
added test appwrite/sdk-for-flutter#159 0:04:03 0:37:58
added tests appwrite/sdk-for-flutter#158 None 0:06:28
added tests appwrite/sdk-for-flutter#157 0:38:56 0:40:26
Move flutter service tests to dart appwrite/sdk-generator#677 None 0:14:09
Add tests for helpers and moels to Flutter and Dart SDKs appwrite/sdk-generator#676 3:34:47 3:51:51
Added Stars and Forks button in README.md appwrite/appwrite#5731 2 days, 8:30:21 2 days, 8:30:21
Calc tier addition appwrite/appwrite#5730 2:22:22 2:55:11
WIP: fix storage tests appwrite/sdk-generator#675 0:02:05 17:05:11
fix: missing collection error appwrite/appwrite#5728 None 1:26:54
Fix calc tier appwrite/appwrite#5727 0:13:35 2:04:49
Flutter SDK: tests for services appwrite/sdk-generator#673 1 day, 10:16:31 2 days, 1:17:08
account test appwrite/sdk-for-flutter#155 None 6 days, 23:19:46
Update package.json appwrite/sdk-for-web#59 1 day, 9:39:21 9 days, 22:50:02
feat: update to 1.3.7 release appwrite/integration-for-gitpod#19 3:17:53 14:29:15
fix user agent appwrite/sdk-generator#672 0:05:14 3 days, 6:52:32
Add doc comments appwrite/sdk-for-dart#42 None 6 days, 0:22:11
Add doc comments appwrite/sdk-for-flutter#154 None 5 days, 22:31:11
Add inline doc comments to the Dart and Flutter SDKs appwrite/sdk-generator#671 1 day, 4:16:23 4 days, 3:55:17
fixed incorrect audity activity on document create appwrite/appwrite#5718 0:00:17 3 days, 6:50:19
Fix upvotes appwrite/builtwith#31 0:00:04 0:00:53
fix: upvotes bug appwrite/builtwith#30 0:00:03 5:00:46
Update getting started URL appwrite/sdk-for-kotlin#31 8:33:14 11 days, 23:23:51
Create an alias for Appwrite Cloud in docs. appwrite/docs#388 21:59:07 21:59:44
feat: update tests appwrite/appwrite#5712 None 1:40:04
Feat: Add database to log appwrite/appwrite#5711 1:24:08 1:24:14
feat: project 404 page appwrite/builtwith#28 0:00:04 0:48:22
Fix: fix type conversion of strings for all models in .NET SDK appwrite/sdk-generator#670 15:28:40 3 days, 23:01:16
improve CLI readme contribution part appwrite/sdk-generator#668 0:01:45 0:02:01
Fix second index validation when first index is fulltext utopia-php/database#283 1:01:37 1:31:51
Feat database upgrade appwrite/appwrite#5710 6 days, 5:02:00 7 days, 7:53:42
refactor collections config appwrite/appwrite#5709 10:08:08 14:36:36
Update database utopia-php/abuse#55 0:18:44 0:20:05
Update database utopia-php/audit#51 0:19:36 0:20:37
feat: update database config appwrite/appwrite#5708 None 19:34:28
delete unnecessary project collections task appwrite/appwrite#5705 0:53:01 22:08:47
Changed GitHub URL text and submission text appwrite/builtwith#27 0:00:06 1:03:05
Changed Twitter URL text for easier understanding appwrite/builtwith#26 0:00:03 16:27:20
Collection not found utopia-php/database#282 1 day, 15:36:47 1 day, 15:36:54
fix delete cache file to dbp-master appwrite/appwrite#5699 2:14:51 2:50:24
cache deletion bug fix appwrite/appwrite#5695 1:29:22 2:56:40
chore: remove generateSearch script appwrite/builtwith#24 0:00:04 0:00:12
Adding Funcover as a tool appwrite/awesome-appwrite#494 21:01:30 21:01:39
refactor cache save appwrite/appwrite#5689 None 1 day, 0:37:07
style: add gap between project title and upvote appwrite/builtwith#23 0:00:03 0:00:20
Update 1.4.x from Master appwrite/appwrite#5683 2 days, 6:43:05 2 days, 12:37:07
Fix: $permissions returns as object rather than array utopia-php/database#281 0:05:01 11:09:27
feat: use Link component, fix mobile menu appwrite/builtwith#22 0:00:05 3 days, 0:06:40
fix: missing import appwrite/appwrite#5672 None 0:01:54
style: fix project image aspect ratios appwrite/builtwith#21 0:00:07 0:58:15
fix for failing flutter test appwrite/sdk-generator#664 4 days, 19:36:09 4 days, 19:41:44
Update document missing params error message appwrite/appwrite#5671 1 day, 18:21:29 5 days, 7:25:51
V19 migration appwrite/appwrite#5668 2 days, 15:50:03 14 days, 16:10:53
ci: create CI script to build cloud images appwrite/appwrite#5666 None 3:16:00
refactored email template appwrite/appwrite#5665 20:16:21 1 day, 2:26:05
Reorder databases subheadings based on importance appwrite/docs#381 2:14:41 2:14:47
Mention wildcards under Realtime channels appwrite/docs#379 0:01:24 0:02:40
remove additional white spaces appwrite/sdk-generator#662 4:01:06 1 day, 0:30:48
Add RuPay Credit Card appwrite/appwrite#5651 None 10:32:14
Sync master with 1.3.x appwrite/appwrite#5649 3:25:37 3:29:00
Updates for 1.3.7 appwrite/appwrite#5648 0:11:01 1:04:34
chore: update utopia-php/framework appwrite/appwrite#5647 None 0:02:33
Fix trailing slashes master utopia-php/http#100 0:02:05 0:14:56
feat: add support for trailing slashes in routes and urls utopia-php/http#99 0:03:58 0:13:28
Added event.preventDefault(); appwrite/playground-for-web#83 0:50:19 0:52:32
feat: update playground appwrite/playground-for-android#29 0:00:39 0:00:58
Fix the routing for the default OAuth2 pages appwrite/appwrite#5643 None 0:00:11
Fix the routing for the default OAuth2 pages appwrite/appwrite#5640 9:50:01 9:56:44
feat: rejectProject function, add userId to projects, add desktop and cli platforms, misc fixes appwrite/builtwith#20 0:00:07 2 days, 18:25:46
cache perm fix appwrite/appwrite#5638 3 days, 20:14:47 3 days, 20:15:01
sync 1.3.x appwrite/appwrite#5637 0:00:48 0:38:53
release: 1 3 6 new appwrite/appwrite#5636 None 0:05:30
release: 1.3.6 appwrite/appwrite#5635 None 0:05:05
chore: prepre 1.3.6 appwrite/appwrite#5634 0:01:05 4 days, 2:19:10
fix: remove default order appwrite/console#458 0:00:08 0:03:31
fix: trailing wildcards appwrite/appwrite#5633 0:27:39 0:27:49
feat: add trailing wildcards utopia-php/http#98 0:01:42 0:06:45
fix: trailing wildcards appwrite/appwrite#5632 0:01:55 0:38:14
Extract db from list while backing appwrite/appwrite#5630 8:01:24 4 days, 7:51:57
Update link to cron docs appwrite/console#456 0:00:08 16:20:31
feat: trailing wildcards utopia-php/http#97 4:46:25 20:14:04
feat: migrate to cloud, hamburger menu, refactors appwrite/demos-for-astro#6 0:00:05 6 days, 3:21:37
Update file name appwrite/appwrite#5624 1 day, 6:59:53 1 day, 7:00:01
Allow Updating email and phone without password appwrite/appwrite#5621 1 day, 15:36:57 1 day, 15:37:03
Fix system performance appwrite/appwrite#5620 0:02:38 1 day, 12:19:06
Fulltext fixes utopia-php/database#279 8 days, 12:12:31 14 days, 12:32:44
Removed Typo in OAuth(Web) section appwrite/docs#376 1 day, 8:18:28 2 days, 0:51:24
Upgrade dependencies Flutter and dart appwrite/sdk-generator#661 4 days, 6:49:22 6 days, 6:18:03
Fix creating a user throws an error appwrite/sdk-generator#660 0:21:15 8 days, 6:36:42
Feat: Improve logging appwrite/appwrite#5590 5 days, 23:02:00 5 days, 23:02:06
Account Password Related Updates appwrite/appwrite#5584 1 day, 18:54:33 7 days, 0:15:51
Fix syntax error in Python examples appwrite/docs#373 5:34:30 7 days, 18:12:19
remove password required for project deletion appwrite/appwrite#5580 8 days, 7:38:02 28 days, 16:48:59
Add custom copy for google oauth provider appwrite/console#453 0:00:06 15 days, 19:27:58
Update getting-started-for-flutter.phtml appwrite/docs#372 2 days, 18:41:25 12 days, 11:05:51
Update authentication-server.phtml appwrite/docs#371 3 days, 8:31:09 13 days, 0:55:10
remove query limit and offset appwrite/docs#370 0:01:06 13 days, 15:35:08
Collection Index Validation appwrite/appwrite#5552 35 days, 14:54:23 41 days, 4:21:39
Index validation utopia-php/database#271 1 day, 11:29:41 25 days, 15:20:40
feat: update to 1.3.4 release appwrite/integration-for-gitpod#18 None 37 days, 4:46:04
Update links to cron docs appwrite/console#434 0:00:06 24 days, 0:55:39
remove audit userInternalId appwrite/appwrite#5514 46 days, 10:46:10 52 days, 0:13:42
Update Mail.php appwrite/appwrite#5495 11:48:39 57 days, 4:37:39
get jwt from request param appwrite/appwrite#5470 37 days, 5:56:26 37 days, 15:13:18
Queries validator transfer to Utopia appwrite/appwrite#5439 None 55 days, 21:13:37
Feat initial push utopia-php/migration#4 21 days, 6:15:49 57 days, 12:09:28
feat add node 20 runtime open-runtimes/open-runtimes#163 55 days, 6:04:41 55 days, 6:04:41
add java 20 runtime open-runtimes/open-runtimes#162 55 days, 6:11:46 55 days, 6:11:46
Appwrite validators transfer utopia-php/database#264 20 days, 14:54:29 37 days, 17:07:40
Feat: Bun runtime 0.5.9 open-runtimes/open-runtimes#161 0:29:33 52 days, 18:05:19
fix: visual bugs appwrite/console#401 0:00:08 56 days, 21:38:38
Fix: Added Rebuild button for function view when build fails during deployment appwrite/console#376 0:00:03 61 days, 4:17:08
Indexes for permissions utopia-php/database#248 67 days, 0:24:47 80 days, 22:53:48
feat: add search to database collections appwrite/console#342 0:00:04 106 days, 18:18:55
update env variables appwrite/demos-for-astro#5 0:00:03 85 days, 15:01:19
Feat: Safe timeout open-runtimes/open-runtimes#156 None 103 days, 17:38:06
Feat: Custom commands support open-runtimes/open-runtimes#154 None 105 days, 23:02:08
Refactor dotnet generation appwrite/sdk-generator#617 None 105 days, 14:46:10
Feat: v3 Swift open-runtimes/open-runtimes#147 None 130 days, 2:23:34
doc: Added "Appwrite using NGINX as Reverse Proxy" resource appwrite/awesome-appwrite#474 2 days, 6:21:27 134 days, 21:52:53
Feat: v3 C++ open-runtimes/open-runtimes#145 None 132 days, 5:20:45
Feat: v3 .NET open-runtimes/open-runtimes#144 14 days, 14:08:48 128 days, 14:02:46
fix: adds the missing expire attribute to ListSessions call appwrite/appwrite#4872 25 days, 0:18:38 167 days, 1:35:45
Add .NET 7.0 runtime open-runtimes/open-runtimes#124 5 days, 0:17:07 214 days, 5:27:08
feat : Add error attribute to Collection Indexes and Attributes appwrite/appwrite#4575 1:38:06 239 days, 13:37:52
long size varchar with long index size mysql utopia-php/database#210 10:21:02 233 days, 10:46:57
Feat phone auth 360dialog appwrite/appwrite#4536 0:13:21 240 days, 16:38:24
Adding Scoop support appwrite/sdk-generator#450 3:59:23 380 days, 21:12:43

How to get Posts created by users

๐Ÿ’ญ Description

Currently working with Appwrite, and I'm trying to simulate my app to Twitter App where users can follow and unfollow each other.

At the moment, users can create tweet, like tweet, comment on tweet, follow and unfollow each other but I want to be able to fetched tweet of users I'm following, I don't want to pull all the tweets to the user, only the person they are following.

๐Ÿ‘€ Have you spent some time to check if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Code of Conduct?

Discussions Opened in June 2023

Issue Metrics

Metric Value
Average time to first response 4 days, 5:43:03.142857
Average time to close 6 days, 20:46:46
Average time to answer 46 days, 5:03:02
Number of items that remain open 6
Number of items closed 1
Total number of items created 7
Title URL Time to first response Time to close Time to answer
Get data from database appwrite/appwrite#5660 13 days, 22:50:55 None None
How to store json type of data into a single document ? appwrite/appwrite#5704 4 days, 18:44:04 None None
If you could add one thing to Appwrite's docs, what would it be? appwrite/appwrite#5692 0:40:44 None None
Appwrite imange 1.3.7 not working on docker desktop win11 appwrite/appwrite#5655 21:17:20 None None
Time-Based One Time Password 2fa support. appwrite/appwrite#5681 3 days, 4:47:09 6 days, 20:46:46 None
Connect to database using Django appwrite/appwrite#5669 6 days, 0:11:30 None 46 days, 5:03:02
Bing chat generated a benchmark report for you using k6 - RESULT appwrite/appwrite#5656 19:29:40 None None

Issues Closed in August 2023

Issue Metrics

Metric Value
Average time to first response 22 days, 17:10:47.788396
Average time to close 264 days, 14:25:02.192691
Number of items that remain open 0
Number of items closed 301
Total number of items created 301
Title URL Time to first response Time to close
Revisit Node Runtime - Console Logging open-runtimes/open-runtimes#192 5:38:41 5:38:41
๐Ÿ› Bug Report: After installing cli tryed to check version but getting error on all commands appwrite/appwrite#6089 1:06:53 7:54:11
๐Ÿ› Bug Report: (role: owner) missing scope (none) appwrite/appwrite#6082 16:37:28 18:07:34
๐Ÿ› Bug Report: Appwrite -v results in error appwrite/sdk-for-cli#92 0:08:51 1 day, 7:51:33
๐Ÿ› Bug Report: Python 3.9 function res.json() empty dict serialized as an array appwrite/appwrite#6056 2 days, 3:05:56 2 days, 3:17:30
๐Ÿ› Bug Report: Appwrite Cloud Python 3.9 function module not found in tarball appwrite/appwrite#6051 23:36:52 1 day, 23:27:38
๐Ÿ› Bug Report: Signing key cannot be empty when creating an execution appwrite/appwrite#6043 10:58:51 2 days, 12:51:48
๐Ÿ› Bug Report: Unique phone number error returns "email already exits" error. appwrite/appwrite#6041 17:38:07 17:45:25
Get Tweets of Users with Appwrite appwrite/appwrite#6036 18:16:09 2 days, 1:15:09
How to get Posts created by users #64 2 days, 1:20:30 2 days, 1:20:29
๐Ÿ› Bug Report: [Console] Wrong collection id displayed appwrite/appwrite#6027 1:31:39 3:33:41
๐Ÿ› Bug Report: Cannot create Flutter Web Platform on Appwrite Cloud Console version 1.1.2 appwrite/appwrite#6025 0:14:17 1 day, 21:01:35
๐Ÿ› Bug Report: Unable to assign roles appwrite/sdk-for-flutter#167 None 2:16:21
๐Ÿš€ Feature: want to Add Search Feature for Contributor appwrite/appwrite#6013 3 days, 19:48:18 6 days, 16:32:50
๐Ÿ› Bug Report: Query.between isn't parsed in the right format appwrite/appwrite#6006 7:08:45 19:15:56
๐Ÿ› Bug Report: _createdAt and _updatedAt added to nested document appwrite/appwrite#5999 None 5 days, 13:55:25
๐Ÿš€ Feature: Add hover effect on icons appwrite/appwrite#5997 4:37:58 1 day, 18:55:42
๐Ÿ› Bug Report: [Console] - Can't create function appwrite/appwrite#5990 1 day, 0:24:41 2 days, 19:41:56
๐Ÿ› Bug Report: [Console] Delete session alert not dismissed after click appwrite/appwrite#5985 8 days, 1:56:21 8 days, 1:56:21
๐Ÿ› Bug Report: appwrite/appwrite#5982 None 2:04:33
๐Ÿ› Bug Report: [Console] Wrong message displayed on account verify / unverify appwrite/appwrite#5981 0:40:24 4 days, 17:56:08
๐Ÿ› Bug Report: Create Team, List Teams exception when developing with flutter appwrite/appwrite#5980 None 3:37:31
๐Ÿ› Bug Report: API key name is passing as null while creating API key for server. appwrite/appwrite#5978 4:33:31 4:33:31
๐Ÿ› Bug Report: Error notification appears under modal appwrite/appwrite#5977 3:05:22 6 days, 5:37:35
๐Ÿ› Bug Report: Overflow issue in appwrite console appwrite/appwrite#5976 3:19:40 4 days, 4:47:37
๐Ÿ› Bug Report: appwrite/demo-todo-with-react#69 2:42:19 2 days, 22:37:30
Why did Appwrite create its own docker images for InfluxDB, Telegraf and ClamAV? appwrite/appwrite#5962 11:26:36 11:26:36
๐Ÿš€ Feature: Bulk actions appwrite/appwrite#5958 1:07:53 5 days, 1:16:36
๐Ÿ› Bug Report: GraphQL switch dont turn on in cloud version Appwrite appwrite/appwrite#5957 0:40:46 2 days, 8:37:20
๐Ÿ› Bug Report: Unable to rearrange the order of relationship documents appwrite/appwrite#5954 2:35:13 8 days, 3:45:50
bug Bug Report:memberships queries 500 error appwrite/appwrite#5945 0:18:07 1:46:19
๐Ÿ› Bug Report: "appwrite init function" does not work on macOS appwrite/sdk-for-cli#88 None 0:44:02
QA appwrite/templates#38 None 15 days, 2:11:59
๐Ÿ› Bug Report: Incorrect Logs appwrite/appwrite#5927 0:50:38 2 days, 21:17:06
๐Ÿš€ Feature: Simplified Management of Document Relationships appwrite/appwrite#5925 1:08:33 13:22:54
๐Ÿ› Bug Report: Unable to delete team membership from user profile if the team doesn't exist appwrite/appwrite#5914 23:04:41 1 day, 9:43:45
๐Ÿ› Bug Report: Documentation for Teams API has incorrect order of parameters appwrite/appwrite#5910 9:49:47 7 days, 15:48:22
Help me fixing this appwrite/sdk-for-flutter#166 3 days, 7:19:01 3 days, 7:19:01
Feature request: Adding transform scale(1.01) to the cards under article section appwrite/pink#99 8 days, 1:09:09 9 days, 3:16:16
๐Ÿ› Bug Report: Many-to-Many Relationship Updated with Non Existing Documents appwrite/appwrite#5871 5:08:20 20 days, 19:16:47
๐Ÿ› Bug Report: Attribute Error appwrite/appwrite#5870 12:17:39 25 days, 0:26:09
Ensure cached resource from correct bucket is deleted appwrite/appwrite#5861 31 days, 18:14:51 31 days, 18:14:53
๐Ÿ› Bug Report: AAC files have wrong Mime Type appwrite/appwrite#5848 4 days, 19:33:02 26 days, 5:49:50
๐Ÿš€ Feature: Allow to change the filename once it is uploaded or allow to add metadata to buckets appwrite/appwrite#5835 6 days, 10:58:21 39 days, 13:42:13
๐Ÿš€ Feature: Function active deployment label appwrite/appwrite#5826 1 day, 22:48:04 40 days, 2:33:44
๐Ÿ› Bug Report: '_Map<String, dynamic>' is not a subtype of type 'List' with permissions in a document appwrite/sdk-for-flutter#162 1 day, 12:39:35 38 days, 0:27:08
๐Ÿ› Bug Report: Creating new team with existed teamId throws error 500 appwrite/appwrite#5768 0:07:51 40 days, 20:53:20
๐Ÿ› Bug Report: queries with Relationship Attribute appwrite/appwrite#5757 23:24:06 39 days, 0:11:13
๐Ÿ“š Documentation: missing setSelfSigned on js client appwrite/sdk-for-web#60 14 days, 9:40:43 32 days, 6:54:41
๐Ÿ› Bug Report: Collection not found error appwrite/appwrite#5750 3 days, 0:44:11 57 days, 13:58:25
๐Ÿ“š Documentation: Apple App code snippet for step 3 throws Extraneous argument label 'status:' in call in Xcode appwrite/console#467 0:35:43 44 days, 6:03:55
๐Ÿ› Bug Report: email verification appwrite/appwrite#5741 11:37:39 42 days, 21:02:19
๐Ÿ› Bug: Access DB hosted on localhost appwrite/appwrite#5720 7:52:46 47 days, 18:38:35
๐Ÿ› Bug Report: Duplicate verification users API entry. appwrite/appwrite#5717 2 days, 20:05:00 47 days, 6:56:43
๐Ÿ› Bug Report: Portuguese email template is missing a word appwrite/appwrite#5693 2 days, 22:16:48 53 days, 4:57:34
๐Ÿ“š Documentation: The documentation/method Account.deleteSession() and Account.deleteSessions() are wrong appwrite/sdk-for-flutter#153 2:56:27 56 days, 4:12:41
๐Ÿš€ Feature: Ability to seperate ids from get, update, create, delete document methods [Flutter] appwrite/appwrite#5627 84 days, 11:02:31 84 days, 11:02:31
๐Ÿš€ Feature: Turn off Rate-Limiting for user auth in functions appwrite/appwrite#5614 65 days, 8:28:11 79 days, 15:08:36
Improvement for Appwrite community website appwrite/appwrite#5589 89 days, 4:21:25 89 days, 4:22:56
๐Ÿ› Bug Report: Delete organization don't delete project appwrite/appwrite#5588 3 days, 14:08:53 67 days, 20:15:37
Bug Report: The To-do app does not seem to work appwrite/appwrite#5548 9 days, 3:17:05 75 days, 17:34:07
๐Ÿ› Bug Report: Invalid evaluation of oauth redirect_uri protocol in case of reverse proxy/http client appwrite/appwrite#5545 1 day, 15:50:32 78 days, 0:04:59
๐Ÿ› Bug Report: x-appwrite-id should disallow unique() appwrite/appwrite#5542 0:35:52 80 days, 15:31:23
๐Ÿ› Bug Report: Cache issue on storage bucket appwrite/appwrite#5529 12 days, 22:32:37 93 days, 16:38:10
๐Ÿ› Bug Report: migration fails with Allowed memory size exhausted php memory_limit hardcoded to 512 appwrite/appwrite#5528 13 days, 0:31:50 97 days, 6:17:30
๐Ÿ› Bug Report: Users can see stale membership appwrite/appwrite#5517 4:18:19 87 days, 21:41:04
๐Ÿ› Bug Report: Can't update document after deleting array element appwrite/appwrite#5476 7 days, 17:52:34 101 days, 20:17:59
๐Ÿ› Bug Report: Can't Search Relationship appwrite/appwrite#5454 2 days, 11:54:19 101 days, 23:13:05
๐Ÿ› Bug Report: Function execution failed. appwrite/appwrite#5423 3 days, 9:45:54 119 days, 10:39:03
๐Ÿ› Bug Report: Nested update, permission issue appwrite/appwrite#5404 13:34:23 120 days, 20:59:32
๐Ÿ› Bug Report: Console UI Attributes of document entry unreadable in collection view. appwrite/console#402 1:20:51 126 days, 14:20:54
๐Ÿ“š Documentation: Static files changes revamp appwrite/appwrite#5318 15:20:35 142 days, 11:16:38
๐Ÿš€ Feature: adding more resources appwrite/awesome-appwrite#480 0:24:57 130 days, 6:26:14
Feedback survey mail from Appwrite appwrite/appwrite#5307 2:38:20 147 days, 1:30:42
๐Ÿ› Bug Report: unnecessary scrollbars appwrite/appwrite#5295 7:21:24 134 days, 21:06:12
๐Ÿš€ Feature: Add a markdown attribute with editor appwrite/appwrite#5275 2 days, 15:43:09 152 days, 21:16:53
๐Ÿ› Bug Report: Documentation Models Attribute Datetime appwrite/appwrite#5272 5:02:22 140 days, 1:45:58
๐Ÿ› Bug Report: Error 500 when invoking account.createVerification on previously anonymous users appwrite/appwrite#5220 2 days, 3:50:50 142 days, 5:16:08
๐Ÿ› Bug Report: Web code sample uses self-closing syntax for script tag appwrite/appwrite#5204 20:01:41 171 days, 13:10:32
can I change or custom logo on navbar in appwrite? appwrite/appwrite#5180 2 days, 17:35:38 176 days, 7:04:51
๐Ÿ› Bug Report: The Assets on the Appwrite Homepage are Outdated appwrite/appwrite#5170 17:04:02 172 days, 4:01:37
๐Ÿ“š Documentation: Missing example for accountCreateOauth2Session (GraphQL) appwrite/appwrite#5082 1 day, 5:38:19 179 days, 8:51:59
๐Ÿ› Bug Report: LinkedIn Oauth2 Broken appwrite/appwrite#4827 10:19:30 238 days, 10:53:00
๐Ÿš€ Feature: Separate Read and List permissions appwrite/appwrite#4794 270 days, 20:17:25 270 days, 20:17:24
๐Ÿ› Bug Report: Wrong reference to project var in french translation appwrite/appwrite#4782 272 days, 3:56:53 272 days, 3:56:52
๐Ÿ› Bug Report: CERTIFICATE_VERIFY_FAILED on Android 7.0 (Flutter) appwrite/appwrite#4779 270 days, 19:34:14 270 days, 19:34:16
๐Ÿš€ Feature: Team permission for the whole database appwrite/appwrite#4772 273 days, 15:32:08 273 days, 15:32:08
๐Ÿ› Bug Report: redirect to the failure url instead of throwing an error in OAuth2 appwrite/appwrite#4753 0:06:57 265 days, 7:23:26
๐Ÿš€ Feature: Keycloak OAuth Provider appwrite/appwrite#4653 286 days, 4:39:29 286 days, 4:39:29
Investigate increasing developer productivity with pull requests environments appwrite/appwrite#4516 309 days, 4:56:06 309 days, 4:56:06
โšก Write a deepgramAudioSummary() Function using .NET appwrite/appwrite#4500 19:06:41 313 days, 19:32:47
โšก Write a deepgramAudioSummary() Function using Kotlin appwrite/appwrite#4499 17:49:36 313 days, 19:32:56
โšก Write a deepgramAudioSummary() Function using Swift appwrite/appwrite#4497 0:32:53 313 days, 19:33:09
โšก Write a deepgramTranscribeAudio() Function using .NET appwrite/appwrite#4495 6:40:41 313 days, 19:33:22
โšก Write a deepgramTranscribeAudio() Function using Java appwrite/appwrite#4493 13:33:22 313 days, 19:33:35
โšก Write a deepgramTranscribeAudio() Function using Ruby appwrite/appwrite#4491 1 day, 18:48:49 313 days, 19:19:13
โšก Write a deepgramTranscribeVideo() Function using .NET appwrite/appwrite#4484 1 day, 22:21:29 313 days, 19:34:28
โšก Write a deepgramTranscribeVideo() Function using Kotlin appwrite/appwrite#4483 1 day, 3:06:19 313 days, 19:34:38
โšก Write a deepgramTranscribeVideo() Function using Java appwrite/appwrite#4482 17:48:30 313 days, 19:34:47
โšก Write a deepgramTranscribeVideo() Function using Swift appwrite/appwrite#4481 1 day, 16:19:21 313 days, 19:34:56
โšก Write a deepgramTranscribeVideo() Function using PHP appwrite/appwrite#4478 1 day, 17:43:08 313 days, 19:20:15
โšก Write a deepgramLanguageDetection() Function using .NET appwrite/appwrite#4473 23:15:49 313 days, 19:35:31
โšก Write a deepgramLanguageDetection() Function using Kotlin appwrite/appwrite#4472 23:24:51 313 days, 19:36:28
โšก Write a deepgramLanguageDetection() Function using Swift appwrite/appwrite#4470 1 day, 16:35:26 313 days, 19:36:45
โšก Write a deepgramLanguageDetection() Function using Ruby appwrite/appwrite#4469 2 days, 13:43:20 313 days, 19:20:55
โšก Write a deepgramLanguageDetection() Function using Node appwrite/appwrite#4466 0:01:02 313 days, 19:37:06
โšก Write a deepgramTopicDetection() Function using .NET appwrite/appwrite#4462 2 days, 4:50:22 313 days, 19:37:25
โšก Write a deepgramTopicDetection() Function using Kotlin appwrite/appwrite#4461 1 day, 21:16:30 313 days, 19:21:33
โšก Write a deepgramTopicDetection() Function using Java appwrite/appwrite#4460 13:36:21 313 days, 19:22:34
โšก Write a deepgramTopicDetection() Function using Swift appwrite/appwrite#4459 2 days, 3:49:14 313 days, 19:37:53
โšก Write a deepgramTopicDetection() Function using Ruby appwrite/appwrite#4458 2 days, 13:42:43 313 days, 19:38:04
โšก Write a deepgramTopicDetection() Function using Python appwrite/appwrite#4457 1:02:41 313 days, 19:38:13
โšก Write a deepgramTopicDetection() Function using PHP appwrite/appwrite#4456 1 day, 2:14:31 313 days, 19:38:23
๐Ÿš€ Feature: function version control appwrite/appwrite#4442 5:56:33 317 days, 10:49:38
๐Ÿš€ Feature: Rewrite entire Appwrite PHP codebase in Rust appwrite/appwrite#4423 315 days, 2:59:21 315 days, 2:59:21
๐Ÿคย Update Authors in โ€˜utopia-php/domainsโ€™ appwrite/appwrite#4415 0:16:34 318 days, 0:14:42
๐Ÿคย Update Authors in โ€˜utopia-php/systemโ€™ appwrite/appwrite#4397 1:25:12 318 days, 0:15:47
๐Ÿ”Žย Add Code Analyzer To โ€˜utopia-php/cliโ€™ appwrite/appwrite#4387 2:16:04 318 days, 0:16:25
๐Ÿ”Žย Add Code Analyzer To โ€˜utopia-php/platformโ€™ appwrite/appwrite#4385 16:55:40 318 days, 0:31:45
๐Ÿ”Žย Add Code Analyzer To โ€˜utopia-php/payโ€™ appwrite/appwrite#4384 19:33:36 318 days, 0:32:01
๐Ÿ”Žย Add Code Analyzer To โ€˜utopia-php/messagingโ€™ appwrite/appwrite#4381 4:04:35 318 days, 0:16:50
๐Ÿ”Žย Add Code Analyzer To โ€˜utopia-php/orchestrationโ€™ appwrite/appwrite#4380 19:38:57 318 days, 0:32:22
๐Ÿ”Žย Add Code Analyzer To โ€˜utopia-php/analyticsโ€™ appwrite/appwrite#4376 16:49:22 318 days, 0:17:12
๐Ÿ”Žย Add Code Analyzer To โ€˜utopia-php/databaseโ€™ appwrite/appwrite#4375 1 day, 5:30:37 318 days, 0:17:21
๐Ÿ”Žย Add Code Analyzer To โ€˜utopia-php/storageโ€™ appwrite/appwrite#4374 2:10:52 318 days, 0:17:40
๐Ÿ”Žย Add Code Analyzer To โ€˜utopia-php/systemโ€™ appwrite/appwrite#4373 21:00:56 318 days, 0:17:51
๐Ÿ’„ย Add Code Linter To โ€˜utopia-php/databaseโ€™ appwrite/appwrite#4352 1 day, 8:21:09 318 days, 0:19:03
๐Ÿš€ Feature: OAuth support for OIDC providers (Keycloak, and more) appwrite/appwrite#4299 11:27:39 313 days, 7:51:51
๐Ÿช„ย Upgrade โ€™demo-todo-with-flutterโ€™ to Appwrite 1.0 appwrite/appwrite#4276 0:33:03 324 days, 23:15:23
๐Ÿช„ย Upgrade โ€™demo-watertracker-with-flutterโ€™ to Appwrite 1.0 appwrite/appwrite#4275 0:51:45 324 days, 23:15:32
๐Ÿช„ย Upgrade โ€™demo-todo-with-nextjsโ€™ to Appwrite 1.0 appwrite/appwrite#4271 0:53:22 324 days, 23:32:05
๐Ÿช„ย Upgrade โ€™demo-todo-with-reactโ€™ to Appwrite 1.0 appwrite/appwrite#4270 0:07:33 324 days, 23:32:03
๐Ÿช„ย Upgrade โ€™demo-job-portal-with-appleโ€™ to Appwrite 1.0 appwrite/appwrite#4268 0:54:08 324 days, 23:32:02
๐Ÿช„ย Upgrade โ€™demos-for-svelteโ€™ to Appwrite 1.0 appwrite/appwrite#4267 0:55:12 324 days, 23:16:01
๐Ÿช„ย Upgrade โ€™demos-for-vueโ€™ to Appwrite 1.0 appwrite/appwrite#4265 0:55:53 324 days, 23:32:04
๐Ÿช„ย Upgrade โ€™demo-almost-netflix-for-webโ€™ to Appwrite 1.0 appwrite/appwrite#4262 0:56:39 324 days, 23:17:02
๐Ÿช„ย Upgrade โ€™demo-almost-netflix-for-appleโ€™ to Appwrite 1.0 appwrite/appwrite#4261 2:29:55 324 days, 23:32:10
๐Ÿช„ย Upgrade โ€™demo-todo-with-angularโ€™ to Appwrite 1.0 appwrite/appwrite#4258 1:01:29 324 days, 23:32:14
๐Ÿšจย Improve Appwrite Logging with Airbrake Adapter appwrite/appwrite#4213 5 days, 0:18:09 324 days, 23:26:19
๐Ÿšจย Improve Appwrite Logging with HoneyBadger Adapter appwrite/appwrite#4212 8 days, 2:09:07 324 days, 23:26:33
๐Ÿšจย Improve Appwrite Logging with Bugsnag Adapter appwrite/appwrite#4211 5 days, 12:10:25 324 days, 23:26:43
๐Ÿšจย Improve Appwrite Logging with Dynatrace Adapter appwrite/appwrite#4210 5 days, 6:35:56 324 days, 23:26:52
๐Ÿšจย Improve Appwrite Logging with New Relic Adapter appwrite/appwrite#4209 1 day, 2:19:17 324 days, 23:27:00
๐Ÿšจย Improve Appwrite Logging with Rollbar Adapter appwrite/appwrite#4208 5 days, 6:36:08 324 days, 23:40:53
๐Ÿšจย Improve Appwrite Logging with Instabug Adapter appwrite/appwrite#4207 6 days, 4:24:10 324 days, 23:40:52
๐Ÿšจย Improve Appwrite Logging with Scout Error Monitoring Adapter appwrite/appwrite#4206 9 days, 22:10:40 324 days, 23:40:49
๐Ÿšจย Improve Appwrite Logging with LogRocket Adapter appwrite/appwrite#4205 3 days, 10:04:30 324 days, 23:40:47
๐Ÿšจย Improve Appwrite Logging with Datadog Adapter appwrite/appwrite#4204 1 day, 8:24:35 324 days, 23:40:44
โšก Write a generateShortUrl() Function using Kotlin appwrite/appwrite#4192 5:05:49 324 days, 23:56:25
โšก Write a generateShortUrl() Function using Swift appwrite/appwrite#4190 1 day, 1:01:59 324 days, 23:41:25
โšก Write a generateShortUrl() Function using Ruby appwrite/appwrite#4189 15:39:13 324 days, 23:42:08
โšก Write a wipeAppwriteBucket() Function using .NET appwrite/appwrite#4183 1 day, 6:58:59 324 days, 23:42:32
โšก Write a sendHTTPRequest() Function using .NET appwrite/appwrite#4182 0:38:27 324 days, 23:42:44
โšก Write a sendHTTPRequest() Function using Kotlin appwrite/appwrite#4181 1 day, 3:57:14 324 days, 23:42:52
โšก Write a sendHTTPRequest() Function using Java appwrite/appwrite#4180 0:33:45 324 days, 23:43:06
โšก Write a sendHTTPRequest() Function using Swift appwrite/appwrite#4179 1 day, 8:33:35 324 days, 23:57:11
โšก Write a sendHTTPRequest() Function using Dart appwrite/appwrite#4173 8:50:30 324 days, 23:43:38
โšก Write a speechToText() Function using .NET appwrite/appwrite#4171 1 day, 6:59:32 324 days, 23:57:42
โšก Write a speechToText() Function using Kotlin appwrite/appwrite#4170 1 day, 10:06:25 324 days, 23:58:03
โšก Write a speechToText() Function using Java appwrite/appwrite#4169 1 day, 4:37:53 324 days, 23:58:27
โšก Write a speechToText() Function using Swift appwrite/appwrite#4168 2 days, 2:12:21 324 days, 23:58:35
โšก Write a speechToText() Function using Ruby appwrite/appwrite#4167 1 day, 18:12:42 324 days, 23:58:45
โšก Write a speechToText() Function using Python appwrite/appwrite#4166 20:48:10 324 days, 23:44:20
โšก Write a speechToText() Function using PHP appwrite/appwrite#4165 1 day, 16:49:36 324 days, 23:58:56
โšก Write a speechToText() Function using Node appwrite/appwrite#4164 3:10:53 324 days, 23:59:12
โšก Write a speechToText() Function using Deno appwrite/appwrite#4163 1 day, 12:52:41 324 days, 23:59:21
โšก Write a speechToText() Function using Dart appwrite/appwrite#4162 1 day, 8:15:07 324 days, 23:59:29
โšก Write a wipeAppwriteBucket() Function using Java appwrite/appwrite#4161 1 day, 4:42:03 325 days, 0:00:06
โšก Write a textToSpeech() Function using .NET appwrite/appwrite#4160 1 day, 5:56:44 325 days, 0:00:02
โšก Write a textToSpeech() Function using Kotlin appwrite/appwrite#4159 1 day, 16:53:33 325 days, 0:00:18
โšก Write a textToSpeech() Function using Java appwrite/appwrite#4158 1 day, 4:42:24 325 days, 0:00:27
โšก Write a textToSpeech() Function using Swift appwrite/appwrite#4157 1 day, 21:17:19 325 days, 0:00:36
โšก Write a textToSpeech() Function using Ruby appwrite/appwrite#4156 1 day, 19:37:50 325 days, 0:00:46
โšก Write a textToSpeech() Function using Python appwrite/appwrite#4155 21:58:44 325 days, 0:00:56
โšก Write a textToSpeech() Function using PHP appwrite/appwrite#4154 1 day, 16:52:42 325 days, 0:01:05
โšก Write a textToSpeech() Function using Node appwrite/appwrite#4153 3:32:37 325 days, 0:01:24
โšก Write a textToSpeech() Function using Deno appwrite/appwrite#4152 1 day, 6:22:44 325 days, 0:01:35
โšก Write a textToSpeech() Function using Dart appwrite/appwrite#4151 1 day, 4:39:21 325 days, 0:01:43
โšก Write a wipeAppwriteBucket() Function using Swift appwrite/appwrite#4150 1 day, 22:15:01 325 days, 0:02:14
โšก Write a translateText() Function using .NET appwrite/appwrite#4149 1 day, 7:02:44 324 days, 23:45:24
โšก Write a translateText() Function using Kotlin appwrite/appwrite#4148 1 day, 19:04:24 325 days, 0:02:27
โšก Write a translateText() Function using Java appwrite/appwrite#4147 12:04:30 325 days, 0:02:34
โšก Write a translateText() Function using Swift appwrite/appwrite#4146 1 day, 7:00:29 325 days, 0:02:42
โšก Write a translateText() Function using Ruby appwrite/appwrite#4145 1 day, 18:22:51 325 days, 0:02:51
โšก Write a translateText() Function using Python appwrite/appwrite#4144 11:32:40 325 days, 0:02:59
โšก Write a translateText() Function using PHP appwrite/appwrite#4143 1 day, 5:22:16 325 days, 0:03:08
โšก Write a translateText() Function using Deno appwrite/appwrite#4141 1 day, 5:27:52 325 days, 0:03:23
โšก Write a translateText() Function using Dart appwrite/appwrite#4140 1 day, 4:51:15 325 days, 0:03:35
โšก Write a generateMap() Function using .NET appwrite/appwrite#4138 2 days, 23:24:39 325 days, 0:03:53
โšก Write a generateMap() Function using Kotlin appwrite/appwrite#4137 1 day, 9:55:52 325 days, 0:04:01
โšก Write a generateMap() Function using Java appwrite/appwrite#4136 1 day, 4:44:12 325 days, 0:05:30
โšก Write a generateMap() Function using Swift appwrite/appwrite#4135 7 days, 7:44:40 325 days, 0:05:38
โšก Write a generateMap() Function using Ruby appwrite/appwrite#4134 1 day, 20:10:17 324 days, 23:46:18
โšก Write a generateMap() Function using PHP appwrite/appwrite#4132 1 day, 6:46:48 325 days, 0:05:53
โšก Write a generateMap() Function using Deno appwrite/appwrite#4130 1 day, 9:40:43 325 days, 0:06:04
โšก Write a wipeAppwriteBucket() Function using Python appwrite/appwrite#4128 20:40:40 324 days, 23:46:45
โšก Write a compressImage() Function using .NET appwrite/appwrite#4127 1 day, 6:06:15 325 days, 0:06:19
โšก Write a compressImage() Function using Kotlin appwrite/appwrite#4126 1 day, 11:43:39 325 days, 0:06:28
โšก Write a compressImage() Function using Java appwrite/appwrite#4125 12:07:29 325 days, 0:06:37
โšก Write a compressImage() Function using Swift appwrite/appwrite#4124 1 day, 7:07:27 325 days, 0:06:46
โšก Write a compressImage() Function using Python appwrite/appwrite#4122 9:40:49 325 days, 0:07:02
โšก Write a compressImage() Function using PHP appwrite/appwrite#4121 1 day, 7:00:25 325 days, 0:07:12
โšก Write a compressImage() Function using Node appwrite/appwrite#4120 3:35:20 325 days, 0:07:28
โšก Write a generateWebsiteScreenshot() Function using .NET appwrite/appwrite#4116 1 day, 15:11:14 325 days, 0:07:46
โšก Write a generateWebsiteScreenshot() Function using Kotlin appwrite/appwrite#4115 1 day, 5:40:18 325 days, 0:07:54
โšก Write a generateWebsiteScreenshot() Function using Swift appwrite/appwrite#4113 1 day, 7:06:33 325 days, 0:08:11
โšก Write a generateWebsiteScreenshot() Function using Ruby appwrite/appwrite#4112 1 day, 18:18:54 324 days, 23:47:44
โšก Write a generateWebsiteScreenshot() Function using Python appwrite/appwrite#4111 11:34:18 324 days, 23:48:21
โšก Write a generateWebsiteScreenshot() Function using PHP appwrite/appwrite#4110 1 day, 16:49:18 325 days, 0:08:26
โšก Write a generateWebsiteScreenshot() Function using Node appwrite/appwrite#4109 2:40:17 324 days, 23:48:34
โšก Write a wipeAppwriteCollection() Function using Kotlin appwrite/appwrite#4104 2 days, 16:55:53 324 days, 23:48:57
โšก Write a wipeAppwriteCollection() Function using Java appwrite/appwrite#4103 1 day, 4:48:22 325 days, 0:08:55
โšก Write a wipeAppwriteCollection() Function using Python appwrite/appwrite#4100 1 day, 5:06:57 325 days, 0:09:28
โšก Write a wipeAppwriteCollection() Function using PHP appwrite/appwrite#4099 1 day, 16:58:33 325 days, 0:09:38
โšก Write a generateInvoice() Function using .NET appwrite/appwrite#4097 2 days, 7:05:03 325 days, 0:09:49
โšก Write a generateInvoice() Function using Kotlin appwrite/appwrite#4096 1 day, 4:51:04 325 days, 0:09:57
โšก Write a generateInvoice() Function using Swift appwrite/appwrite#4094 1 day, 16:47:25 325 days, 0:10:09
โšก Write a generateInvoice() Function using Ruby appwrite/appwrite#4093 1 day, 16:39:49 325 days, 0:10:17
โšก Write a generateInvoice() Function using Python appwrite/appwrite#4092 6:20:47 324 days, 23:49:41
โšก Write a generateInvoice() Function using PHP appwrite/appwrite#4091 2:46:32 325 days, 0:10:27
โšก Write a generateInvoice() Function using Deno appwrite/appwrite#4089 1 day, 4:48:31 324 days, 23:49:57
โšก Write a generateInvoice() Function using Dart appwrite/appwrite#4088 1 day, 4:52:50 325 days, 0:10:45
โšก Write a wipeAppwriteCollection() Function using Deno appwrite/appwrite#4087 1 day, 0:23:00 325 days, 0:11:32
โšก Write a getPrice() Function using .NET appwrite/appwrite#4086 1 day, 5:50:07 325 days, 0:11:40
โšก Write a getPrice() Function using Kotlin appwrite/appwrite#4085 22:51:16 325 days, 0:11:49
โšก Write a getPrice() Function using Swift appwrite/appwrite#4083 1 day, 7:06:52 325 days, 0:12:01
โšก Write a getPrice() Function using Ruby appwrite/appwrite#4082 1 day, 6:23:34 325 days, 0:12:09
โšก Write a getPrice() Function using Python appwrite/appwrite#4081 0:02:34 324 days, 23:50:29
โšก Write a getPrice() Function using PHP appwrite/appwrite#4080 1 day, 5:47:03 325 days, 0:12:21
โšก Write a getPrice() Function using Node appwrite/appwrite#4079 5:15:14 324 days, 23:50:42
โšก Write a getPrice() Function using Dart appwrite/appwrite#4077 23:28:30 325 days, 0:12:37
โšก Write a wipeAppwriteCollection() Function using Dart appwrite/appwrite#4076 1 day, 3:43:02 325 days, 0:12:46
โšก Write a wipeAppwriteBucket() Function using Dart appwrite/appwrite#4074 1 day, 4:53:07 325 days, 0:12:58
โšก Write a sendMessage() Function using .NET appwrite/appwrite#4037 1 day, 19:22:56 328 days, 15:42:12
๐Ÿค–ย Improve Appwrite Functions with Pascal Support appwrite/appwrite#4023 3 days, 0:23:35 328 days, 17:24:51
๐Ÿค–ย Improve Appwrite Functions with Lua Support appwrite/appwrite#4022 2 days, 18:01:27 328 days, 17:46:58
๐Ÿค–ย Improve Appwrite Functions with Julia Support appwrite/appwrite#4021 1 day, 23:43:54 328 days, 17:47:11
๐Ÿค–ย Improve Appwrite Functions with Scala Support appwrite/appwrite#4020 2 days, 18:02:10 328 days, 17:47:19
๐Ÿค–ย Improve Appwrite Functions with R Support appwrite/appwrite#4019 1 day, 13:36:31 328 days, 17:47:27
๐Ÿค–ย Improve Appwrite Functions with C Support appwrite/appwrite#4017 1 day, 2:27:30 328 days, 17:47:38
๐Ÿค–ย Improve Appwrite Functions with Elixir Support appwrite/appwrite#4016 2 days, 1:15:42 328 days, 17:48:00
๐Ÿค–ย Improve Appwrite Functions with Erlang Support appwrite/appwrite#4015 3 days, 14:32:49 328 days, 17:48:09
๐Ÿค–ย Improve Appwrite Functions with Perl Support appwrite/appwrite#4014 2 days, 20:25:43 328 days, 17:25:28
๐Ÿค–ย Improve Appwrite Functions with Bash Support appwrite/appwrite#4013 1 day, 3:59:20 328 days, 17:48:23
๐Ÿ—œ๏ธ Refine Appwrite Storage with rzip Compression appwrite/appwrite#4001 2 days, 18:03:18 328 days, 17:49:09
๐Ÿ—œ๏ธ Refine Appwrite Storage with lzop Compression appwrite/appwrite#4000 7 days, 3:58:34 328 days, 17:49:20
๐Ÿ—œ๏ธ Refine Appwrite Storage with lzma Compression appwrite/appwrite#3999 2 days, 18:03:31 328 days, 17:49:28
๐Ÿ—œ๏ธ Refine Appwrite Storage with lzip Compression appwrite/appwrite#3997 8 days, 0:32:21 328 days, 17:49:41
๐Ÿ—œ๏ธ Refine Appwrite Storage with bzip2 Compression appwrite/appwrite#3996 2 days, 3:49:13 328 days, 17:26:38
๐Ÿ—„๏ธย Extend Appwrite Storage with Google Cloud Storage Adapter appwrite/appwrite#3994 2 days, 18:03:53 328 days, 17:26:51
๐Ÿ—„๏ธย Extend Appwrite Storage with Rackspace Cloud Files Adapter appwrite/appwrite#3993 8 days, 18:32:19 328 days, 17:49:59
๐Ÿ—„๏ธย Extend Appwrite Storage with IBM Cloud Object Storage Adapter appwrite/appwrite#3992 6 days, 19:18:59 328 days, 17:50:08
๐Ÿ—„๏ธย Extend Appwrite Storage with Vultr Object Storage Adapter appwrite/appwrite#3991 8 days, 20:39:01 328 days, 17:50:17
๐Ÿ—„๏ธย Extend Appwrite Storage with DreamObjects Adapter appwrite/appwrite#3990 26 days, 2:09:48 328 days, 17:27:13
๐Ÿ—„๏ธย Extend Appwrite Storage with Minio Adapter appwrite/appwrite#3989 3 days, 5:50:28 328 days, 17:51:26
๐Ÿ—„๏ธย Extend Appwrite Storage with Scality Adapter appwrite/appwrite#3987 23 days, 16:29:09 328 days, 17:27:29
๐Ÿ—„๏ธย Extend Appwrite Storage with Azure Blob Storage Adapter appwrite/appwrite#3986 8 days, 14:45:30 328 days, 17:51:41
๐Ÿ—„๏ธย Extend Appwrite Storage with Aruba Cloud Adapter appwrite/appwrite#3985 17 days, 11:42:33 328 days, 17:51:49
๐Ÿ—„๏ธย Extend Appwrite Storage with Akaza Adapter appwrite/appwrite#3984 10 days, 0:56:18 328 days, 17:51:58
๐Ÿ“„ย Enhance Appwrite Databases with Neo4j Adapter appwrite/appwrite#3983 5 days, 2:33:29 328 days, 17:52:09
๐Ÿ“„ย Enhance Appwrite Databases with Microsoft SQL Server Adapter appwrite/appwrite#3982 3 days, 6:39:28 328 days, 17:27:52
๐Ÿ“„ย Enhance Appwrite Databases with Apache CouchDB Adapter appwrite/appwrite#3981 3 days, 12:55:37 328 days, 17:52:23
๐Ÿ“„ย Enhance Appwrite Databases with AWS DynamoDB Adapter appwrite/appwrite#3980 1 day, 16:59:27 328 days, 17:52:31
๐Ÿ“„ย Enhance Appwrite Databases with Apache Cassandra Adapter appwrite/appwrite#3979 3 days, 9:07:03 328 days, 17:52:39
๐Ÿ“„ย Enhance Appwrite Databases with Apache Hbase Adapter appwrite/appwrite#3978 4 days, 22:48:17 328 days, 17:52:48
๐Ÿ“„ย Enhance Appwrite Databases with Redis Adapter appwrite/appwrite#3977 2 days, 0:59:40 328 days, 17:52:56
๐Ÿ“„ย Enhance Appwrite Databases with SurrealDB Adapter appwrite/appwrite#3976 4 days, 22:27:27 328 days, 17:53:04
๐ŸŽฏย Enrich Appwrite Caching with Apache Ignite Adapter appwrite/appwrite#3975 4 days, 22:23:05 328 days, 17:53:13
๐ŸŽฏย Enrich Appwrite Caching with Varnish Cache Adapter appwrite/appwrite#3974 12 days, 22:23:13 328 days, 17:53:22
๐ŸŽฏย Enrich Appwrite Caching with Mcrouter Adapter appwrite/appwrite#3971 3 days, 6:03:20 328 days, 17:53:36
โšก Write a sendMessage() Function using Kotlin appwrite/appwrite#3960 1 day, 10:29:12 328 days, 17:54:19
โšก Write a sendMessage() Function using Java appwrite/appwrite#3959 1 day, 4:46:05 328 days, 17:54:28
โšก Write a sendMessage() Function using Swift appwrite/appwrite#3958 1 day, 12:26:24 328 days, 17:54:37
โšก Write a sendMessage() Function using Ruby appwrite/appwrite#3957 1 day, 16:55:49 328 days, 17:54:47
โšก Write a sendMessage() Function using Node appwrite/appwrite#3954 14:16:09 328 days, 17:29:33
โšก Write a sendMessage() Function using Deno appwrite/appwrite#3953 18:33:55 328 days, 17:29:43
โšก Write a sendMessage() Function using Dart appwrite/appwrite#3952 2:40:04 328 days, 17:55:09
๐Ÿš€ Feature: Improve API syntax appwrite/sdk-for-flutter#94 102 days, 6:22:39 315 days, 11:19:19
๐Ÿš€ Feature: Add Mastodon as an authentication method appwrite/appwrite#3878 18:48:44 339 days, 11:32:27
๐Ÿš€ Feature: Global maintenance endpoint appwrite/appwrite#3837 342 days, 1:02:22 342 days, 1:02:22
๐Ÿ“š Documentation: Integrating Firebase Phone Auth with Appwrite appwrite/appwrite#3803 12:04:56 328 days, 2:55:47
๐Ÿ› Bug Report: Attribute Object Model not generated in specifications appwrite/appwrite#3608 391 days, 18:04:55 391 days, 18:04:55
๐Ÿš€ Feature: Gobal Environment Variables in Functions appwrite/appwrite#3530 23:59:36 413 days, 1:51:55
๐Ÿš€ Feature: New Environment Variable to disable IP tracking in Collection Activity appwrite/appwrite#3468 420 days, 1:42:36 423 days, 4:11:17
๐Ÿš€ Feature: Add support for Cloudflare R2 Storage appwrite/appwrite#3352 3:21:53 442 days, 17:26:45
List of regions in Backblaze utopia-php/storage#48 431 days, 14:24:21 431 days, 14:24:21
๐Ÿš€ Feature: deno open runtime support for arm appwrite/appwrite#3278 454 days, 22:15:52 454 days, 22:15:51
๐Ÿš€ Feature: Encypted database fields appwrite/appwrite#3150 None 476 days, 19:51:58
๐Ÿ› Bug Report: [console UI issue] console pages are less reactive which restricts the utility value of available space appwrite/appwrite#2966 521 days, 18:37:59 521 days, 18:37:59
๐Ÿš€ Feature: Make .NET SDK and code examples feel more authentic and remove anti-patterns. appwrite/appwrite#2926 2 days, 18:36:12 534 days, 22:30:40
๐Ÿš€ Feature: Add docker (container) health check appwrite/appwrite#2908 13 days, 21:30:33 537 days, 15:36:05
๐Ÿš€ Feature: Protect endpoints with password appwrite/appwrite#2752 562 days, 5:00:01 562 days, 5:00:01
๐Ÿš€ Feature: Add WSO2 Provider appwrite/appwrite#2701 572 days, 22:20:01 572 days, 22:20:01
Documentation: Kotlin & Java Code Example Issues appwrite/appwrite#2655 3 days, 9:22:22 567 days, 18:03:01
Why is the .env file tracked in git? appwrite/appwrite#2649 11:13:05 581 days, 22:20:28
๐Ÿ› Bug Report: Code 400 when clicking "Cancel" during a LinkedIn Oauth login appwrite/appwrite#2591 1 day, 8:24:20 579 days, 16:04:56
Help Translate Appwrite to Telugu Language โœ๏ธ appwrite/appwrite#1543 3:09:01 729 days, 5:01:14
Translate error messages. appwrite/appwrite#1478 3 days, 17:45:58 747 days, 5:26:27
Question on the Multi-language Support For the Dashboard appwrite/appwrite#1353 1 day, 1:08:51 763 days, 13:43:31
Improve webhook testing with new dev tools appwrite/appwrite#845 0:06:43 946 days, 2:11:00
Verify that documents are deleted by the Deletes Worker appwrite/appwrite#752 None 991 days, 3:47:38

This report was generated with the Issue Metrics Action
Search query used to find these items: org:appwrite org:open-runtimes org:utopia-php is:issue closed:2023-08-01..2023-08-31

PRs Opened in June 2023

Issue Metrics

Metric Value
Average time to first response 3 days, 14:12:14.579365
Average time to close 6 days, 19:16:25.885965
Number of items that remain open 46
Number of items closed 114
Total number of items created 160
Title URL Time to first response Time to close
Change Raw Data links from singular to plural appwrite/console#471 0:00:04 3 days, 14:09:06
Create Compress image Branch open-runtimes/examples#152 None 0:00:45
Fix small typo in docs appwrite/appwrite#5755 None None
Feat 5376 improve the select query utopia-php/database#287 11 days, 22:23:06 None
Update README.md appwrite/console#469 0:00:03 6 days, 3:51:09
File Tokens RFC appwrite/rfc#58 None None
Fix typo in aria label appwrite/pink#94 0:00:03 23 days, 23:27:52
Fixed Extraneous argument label 'status:' in call for Apple App setup appwrite/console#468 0:00:03 None
Feat: $network support to run method utopia-php/orchestration#30 23 days, 15:47:53 26 days, 2:49:15
fixed null $name error for anonymous user appwrite/appwrite#5745 10 days, 7:35:23 24 days, 12:19:23
Restrict characters for project ID appwrite/appwrite#5743 19 days, 19:15:55 24 days, 15:49:39
Fix REST API and GraphQL bugs in reference docs appwrite/docs#391 11 days, 17:10:44 31 days, 7:04:23
Create a build script appwrite/sdk-generator#684 0:00:29 None
Update dotnet sdk create file example appwrite/sdk-generator#683 4 days, 18:38:47 5 days, 10:15:16
Downgrade mockito in Flutter and Dart SDKs appwrite/sdk-generator#682 1 day, 8:03:11 1 day, 8:03:18
Allow custom createdAt and updatedAt on createDocument utopia-php/database#286 None None
added google.md appwrite/docs#390 None 18 days, 21:28:11
Fix phone verification secret in events & payload appwrite/appwrite#5740 25 days, 19:23:21 25 days, 19:23:25
Fix anonymous user appwrite/appwrite#5739 25 days, 19:18:43 25 days, 19:18:51
Feat cli console project appwrite/sdk-generator#681 2 days, 0:24:06 18 days, 0:37:48
Audit Appwrite's generic error messages appwrite/appwrite#5738 17 days, 23:33:11 None
Update feature.yaml #20 3:31:53 10 days, 21:29:50
Update documentation.yaml #19 3:34:17 10 days, 21:32:08
set the dart_appwrite package version to 8.0.0 appwrite/functions-starter#51 None None
Init utopia-php/fetch#1 10 days, 19:02:19 None
Expose a way to skip specific database listeners utopia-php/database#284 19 days, 18:11:28 28 days, 12:53:23
Rename FMC to FCM in example open-runtimes/examples#151 4:15:47 None
update Flutter - Dart SDK appwrite/appwrite#5736 None None
added tests and comments appwrite/sdk-for-dart#43 0:51:51 0:52:10
update changelog appwrite/sdk-for-flutter#160 0:12:14 0:13:51
fixed flutter/dart comments appwrite/sdk-generator#678 0:01:56 0:02:04
added test appwrite/sdk-for-flutter#159 0:04:03 0:37:58
added tests appwrite/sdk-for-flutter#158 None 0:06:28
added tests appwrite/sdk-for-flutter#157 0:38:56 0:40:26
Move flutter service tests to dart appwrite/sdk-generator#677 None 0:14:09
Add tests for helpers and moels to Flutter and Dart SDKs appwrite/sdk-generator#676 3:34:47 3:51:51
Update getting-started-for-web.phtml appwrite/docs#389 None None
Added Stars and Forks button in README.md appwrite/appwrite#5731 2 days, 8:30:21 2 days, 8:30:21
Calc tier addition appwrite/appwrite#5730 2:22:22 2:55:11
Feat: Transactions utopia-php/http#101 None None
WIP: fix storage tests appwrite/sdk-generator#675 0:02:05 17:05:11
Change --p-icon-size to 0.65 to make the fix the icon alignment appwrite/pink#93 0:00:02 None
fix: missing collection error appwrite/appwrite#5728 None 1:26:54
Fix calc tier appwrite/appwrite#5727 0:13:35 2:04:49
feat: Enum Whitelist appwrite/sdk-generator#674 23 days, 0:09:55 None
Feat: Whitelist enums appwrite/appwrite#5726 None None
Update README.md appwrite/builtwith#32 0:00:03 22 days, 18:24:08
Feat: Functions G4 appwrite/console#465 0:00:05 None
Feat: Functions G4 appwrite/appwrite#5725 11:07:18 None
ci: added paths-ignore in tests GHA appwrite/console#464 0:00:03 None
Flutter SDK: tests for services appwrite/sdk-generator#673 1 day, 10:16:31 2 days, 1:17:08
account test appwrite/sdk-for-flutter#155 None 6 days, 23:19:46
Update package.json appwrite/sdk-for-web#59 1 day, 9:39:21 9 days, 22:50:02
feat: update to 1.3.7 release appwrite/integration-for-gitpod#19 3:17:53 14:29:15
Fix 3256 update document when attribute name is numeric appwrite/appwrite#5723 0:00:14 25 days, 10:55:10
fix user agent appwrite/sdk-generator#672 0:05:14 3 days, 6:52:32
Add doc comments appwrite/sdk-for-dart#42 None 6 days, 0:22:11
Add doc comments appwrite/sdk-for-flutter#154 None 5 days, 22:31:11
Add inline doc comments to the Dart and Flutter SDKs appwrite/sdk-generator#671 1 day, 4:16:23 4 days, 3:55:17
fixed incorrect audity activity on document create appwrite/appwrite#5718 0:00:17 3 days, 6:50:19
Fix upvotes appwrite/builtwith#31 0:00:04 0:00:53
fix: abuse label for creating phone session appwrite/appwrite#5715 6 days, 14:22:28 None
fix: upvotes bug appwrite/builtwith#30 0:00:03 5:00:46
feat: approval email appwrite/builtwith#29 0:00:03 None
Incomplete Example, generate error: TypeError: file.stream.pipe is noโ€ฆ appwrite/appwrite#5714 7 days, 3:17:21 None
Update getting started URL appwrite/sdk-for-kotlin#31 8:33:14 11 days, 23:23:51
Create an alias for Appwrite Cloud in docs. appwrite/docs#388 21:59:07 21:59:44
Update README.md appwrite/docs#387 3:25:32 None
feat: update tests appwrite/appwrite#5712 None 1:40:04
Feat: Add database to log appwrite/appwrite#5711 1:24:08 1:24:14
feat: project 404 page appwrite/builtwith#28 0:00:04 0:48:22
Fix: fix type conversion of strings for all models in .NET SDK appwrite/sdk-generator#670 15:28:40 3 days, 23:01:16
update SDK dependencies appwrite/sdk-generator#669 20 days, 15:31:00 25 days, 16:22:56
improve CLI readme contribution part appwrite/sdk-generator#668 0:01:45 0:02:01
Fix second index validation when first index is fulltext utopia-php/database#283 1:01:37 1:31:51
Feat database upgrade appwrite/appwrite#5710 6 days, 5:02:00 7 days, 7:53:42
refactor collections config appwrite/appwrite#5709 10:08:08 14:36:36
Update database utopia-php/abuse#55 0:18:44 0:20:05
Update database utopia-php/audit#51 0:19:36 0:20:37
feat: update database config appwrite/appwrite#5708 None 19:34:28
Update delete session description to be actually correct appwrite/appwrite#5707 7:03:07 None
[WIP] Replacing all native curl calls with the new fetch library utopia-php/analytics#44 None None
Ensure API endpoints have required params first appwrite/docs#386 1 day, 1:49:16 34 days, 3:23:22
delete unnecessary project collections task appwrite/appwrite#5705 0:53:01 22:08:47
Changed GitHub URL text and submission text appwrite/builtwith#27 0:00:06 1:03:05
Bug Fixed: Change cursor pointer in checkbox's disabled state appwrite/pink#92 0:00:03 None
Add support for multiple events per endpoint appwrite/appwrite#5703 0:02:14 None
cache save refactor appwrite/appwrite#5700 None None
Changed Twitter URL text for easier understanding appwrite/builtwith#26 0:00:03 16:27:20
Collection not found utopia-php/database#282 1 day, 15:36:47 1 day, 15:36:54
fix delete cache file to dbp-master appwrite/appwrite#5699 2:14:51 2:50:24
Fix cache delete bug master appwrite/appwrite#5698 37 days, 6:01:36 None
Feat: Client error logging appwrite/appwrite#5696 1 day, 23:13:50 None
cache deletion bug fix appwrite/appwrite#5695 1:29:22 2:56:40
chore: remove generateSearch script appwrite/builtwith#24 0:00:04 0:00:12
Feat: Support for CURL in Swoole appwrite/docker-base#12 4 days, 13:50:59 None
Added missing word to portuguese email template appwrite/appwrite#5694 1 day, 16:18:08 None
Add Swift 5.8 Runtime open-runtimes/open-runtimes#167 6 days, 18:31:49 41 days, 15:04:08
Adding Funcover as a tool appwrite/awesome-appwrite#494 21:01:30 21:01:39
refactor cache save appwrite/appwrite#5689 None 1 day, 0:37:07
style: add gap between project title and upvote appwrite/builtwith#23 0:00:03 0:00:20
refactor: added type hints for Python SDK appwrite/sdk-generator#665 12 days, 8:48:52 23 days, 17:30:00
REST API improvements in docs appwrite/docs#385 27 days, 8:04:30 45 days, 8:54:53
Update 1.4.x from Master appwrite/appwrite#5683 2 days, 6:43:05 2 days, 12:37:07
Add generic attribute model page. appwrite/docs#384 None None
Oauth provider guides appwrite/docs#383 0:00:17 None
Fix: $permissions returns as object rather than array utopia-php/database#281 0:05:01 11:09:27
very simple text annotation support utopia-php/image#26 None None
Fix docs events (Homepage #225) appwrite/docs#382 0:40:37 None
feat: use Link component, fix mobile menu appwrite/builtwith#22 0:00:05 3 days, 0:06:40
fix: missing import appwrite/appwrite#5672 None 0:01:54
style: fix project image aspect ratios appwrite/builtwith#21 0:00:07 0:58:15
fix for failing flutter test appwrite/sdk-generator#664 4 days, 19:36:09 4 days, 19:41:44
Appwrite CLI - Flutter and Generator commands appwrite/sdk-generator#663 None None
Update document missing params error message appwrite/appwrite#5671 1 day, 18:21:29 5 days, 7:25:51
V19 migration appwrite/appwrite#5668 2 days, 15:50:03 14 days, 16:10:53
ci: create CI script to build cloud images appwrite/appwrite#5666 None 3:16:00
Added send_http_request example using Dart open-runtimes/examples#150 34 days, 15:36:12 None
refactored email template appwrite/appwrite#5665 20:16:21 1 day, 2:26:05
Add support for label permissions utopia-php/database#280 29 days, 20:40:23 38 days, 10:52:04
Reorder databases subheadings based on importance appwrite/docs#381 2:14:41 2:14:47
Wildcards can't be used in channel appwrite/docs#380 3:21:33 49 days, 11:47:29
Mention wildcards under Realtime channels appwrite/docs#379 0:01:24 0:02:40
feat: improve api keys appwrite/console#460 0:00:23 None
Feat: Mulitple Events Execution appwrite/appwrite#5658 None None
[Snyk] Upgrade cross-fetch from 3.1.5 to 3.1.6 appwrite/sdk-for-web#57 None None
Appwrite console internationalization : Typesafe-i18n appwrite/console#459 0:00:04 None
remove additional white spaces appwrite/sdk-generator#662 4:01:06 1 day, 0:30:48
Add RuPay Credit Card appwrite/appwrite#5651 None 10:32:14
Sync master with 1.3.x appwrite/appwrite#5649 3:25:37 3:29:00
Updates for 1.3.7 appwrite/appwrite#5648 0:11:01 1:04:34
chore: update utopia-php/framework appwrite/appwrite#5647 None 0:02:33
Fix trailing slashes master utopia-php/http#100 0:02:05 0:14:56
feat: add support for trailing slashes in routes and urls utopia-php/http#99 0:03:58 0:13:28
Added event.preventDefault(); appwrite/playground-for-web#83 0:50:19 0:52:32
feat: update playground appwrite/playground-for-android#29 0:00:39 0:00:58
Fix the routing for the default OAuth2 pages appwrite/appwrite#5643 None 0:00:11
Fix the routing for the default OAuth2 pages appwrite/appwrite#5640 9:50:01 9:56:44
Fix default project appwrite/appwrite#5639 2 days, 21:59:31 43 days, 22:55:53
feat: rejectProject function, add userId to projects, add desktop and cli platforms, misc fixes appwrite/builtwith#20 0:00:07 2 days, 18:25:46
cache perm fix appwrite/appwrite#5638 3 days, 20:14:47 3 days, 20:15:01
sync 1.3.x appwrite/appwrite#5637 0:00:48 0:38:53
release: 1 3 6 new appwrite/appwrite#5636 None 0:05:30
release: 1.3.6 appwrite/appwrite#5635 None 0:05:05
chore: prepre 1.3.6 appwrite/appwrite#5634 0:01:05 4 days, 2:19:10
fix: remove default order appwrite/console#458 0:00:08 0:03:31
fix: trailing wildcards appwrite/appwrite#5633 0:27:39 0:27:49
feat: add trailing wildcards utopia-php/http#98 0:01:42 0:06:45
fix: trailing wildcards appwrite/appwrite#5632 0:01:55 0:38:14
Extract db from list while backing appwrite/appwrite#5630 8:01:24 4 days, 7:51:57
Add user labels to user list and detail pages appwrite/console#457 0:00:07 None
Update link to cron docs appwrite/console#456 0:00:08 16:20:31
[Snyk] Upgrade express from 4.18.1 to 4.18.2 appwrite/playground-for-web#82 None None
Add syntax for all SDKs in query. appwrite/docs#377 2 days, 11:05:08 None
feat: trailing wildcards utopia-php/http#97 4:46:25 20:14:04
feat: migrate to cloud, hamburger menu, refactors appwrite/demos-for-astro#6 0:00:05 6 days, 3:21:37
Update file name appwrite/appwrite#5624 1 day, 6:59:53 1 day, 7:00:01
Refactor collections config appwrite/appwrite#5622 6 days, 4:59:30 None
Allow Updating email and phone without password appwrite/appwrite#5621 1 day, 15:36:57 1 day, 15:37:03
Fix system performance appwrite/appwrite#5620 0:02:38 1 day, 12:19:06

PRs Closed in June 2023

Issue Metrics

Metric Value
Average time to first response 4 days, 7:26:20.211009
Average time to close 26 days, 21:48:55.571429
Number of items that remain open 0
Number of items closed 133
Total number of items created 133
Title URL Time to first response Time to close
Create Compress image Branch open-runtimes/examples#152 None 0:00:45
Update dotnet sdk create file example appwrite/sdk-generator#683 4 days, 18:38:47 5 days, 10:15:16
Downgrade mockito in Flutter and Dart SDKs appwrite/sdk-generator#682 1 day, 8:03:11 1 day, 8:03:18
added tests and comments appwrite/sdk-for-dart#43 0:51:51 0:52:10
update changelog appwrite/sdk-for-flutter#160 0:12:14 0:13:51
fixed flutter/dart comments appwrite/sdk-generator#678 0:01:56 0:02:04
added test appwrite/sdk-for-flutter#159 0:04:03 0:37:58
added tests appwrite/sdk-for-flutter#158 None 0:06:28
added tests appwrite/sdk-for-flutter#157 0:38:56 0:40:26
Move flutter service tests to dart appwrite/sdk-generator#677 None 0:14:09
Add tests for helpers and moels to Flutter and Dart SDKs appwrite/sdk-generator#676 3:34:47 3:51:51
Added Stars and Forks button in README.md appwrite/appwrite#5731 2 days, 8:30:21 2 days, 8:30:21
Calc tier addition appwrite/appwrite#5730 2:22:22 2:55:11
WIP: fix storage tests appwrite/sdk-generator#675 0:02:05 17:05:11
fix: missing collection error appwrite/appwrite#5728 None 1:26:54
Fix calc tier appwrite/appwrite#5727 0:13:35 2:04:49
Flutter SDK: tests for services appwrite/sdk-generator#673 1 day, 10:16:31 2 days, 1:17:08
account test appwrite/sdk-for-flutter#155 None 6 days, 23:19:46
Update package.json appwrite/sdk-for-web#59 1 day, 9:39:21 9 days, 22:50:02
feat: update to 1.3.7 release appwrite/integration-for-gitpod#19 3:17:53 14:29:15
fix user agent appwrite/sdk-generator#672 0:05:14 3 days, 6:52:32
Add doc comments appwrite/sdk-for-dart#42 None 6 days, 0:22:11
Add doc comments appwrite/sdk-for-flutter#154 None 5 days, 22:31:11
Add inline doc comments to the Dart and Flutter SDKs appwrite/sdk-generator#671 1 day, 4:16:23 4 days, 3:55:17
fixed incorrect audity activity on document create appwrite/appwrite#5718 0:00:17 3 days, 6:50:19
Fix upvotes appwrite/builtwith#31 0:00:04 0:00:53
fix: upvotes bug appwrite/builtwith#30 0:00:03 5:00:46
Update getting started URL appwrite/sdk-for-kotlin#31 8:33:14 11 days, 23:23:51
Create an alias for Appwrite Cloud in docs. appwrite/docs#388 21:59:07 21:59:44
feat: update tests appwrite/appwrite#5712 None 1:40:04
Feat: Add database to log appwrite/appwrite#5711 1:24:08 1:24:14
feat: project 404 page appwrite/builtwith#28 0:00:04 0:48:22
Fix: fix type conversion of strings for all models in .NET SDK appwrite/sdk-generator#670 15:28:40 3 days, 23:01:16
improve CLI readme contribution part appwrite/sdk-generator#668 0:01:45 0:02:01
Fix second index validation when first index is fulltext utopia-php/database#283 1:01:37 1:31:51
Feat database upgrade appwrite/appwrite#5710 6 days, 5:02:00 7 days, 7:53:42
refactor collections config appwrite/appwrite#5709 10:08:08 14:36:36
Update database utopia-php/abuse#55 0:18:44 0:20:05
Update database utopia-php/audit#51 0:19:36 0:20:37
feat: update database config appwrite/appwrite#5708 None 19:34:28
delete unnecessary project collections task appwrite/appwrite#5705 0:53:01 22:08:47
Changed GitHub URL text and submission text appwrite/builtwith#27 0:00:06 1:03:05
Changed Twitter URL text for easier understanding appwrite/builtwith#26 0:00:03 16:27:20
Collection not found utopia-php/database#282 1 day, 15:36:47 1 day, 15:36:54
fix delete cache file to dbp-master appwrite/appwrite#5699 2:14:51 2:50:24
cache deletion bug fix appwrite/appwrite#5695 1:29:22 2:56:40
chore: remove generateSearch script appwrite/builtwith#24 0:00:04 0:00:12
Adding Funcover as a tool appwrite/awesome-appwrite#494 21:01:30 21:01:39
refactor cache save appwrite/appwrite#5689 None 1 day, 0:37:07
style: add gap between project title and upvote appwrite/builtwith#23 0:00:03 0:00:20
Update 1.4.x from Master appwrite/appwrite#5683 2 days, 6:43:05 2 days, 12:37:07
Fix: $permissions returns as object rather than array utopia-php/database#281 0:05:01 11:09:27
feat: use Link component, fix mobile menu appwrite/builtwith#22 0:00:05 3 days, 0:06:40
fix: missing import appwrite/appwrite#5672 None 0:01:54
style: fix project image aspect ratios appwrite/builtwith#21 0:00:07 0:58:15
fix for failing flutter test appwrite/sdk-generator#664 4 days, 19:36:09 4 days, 19:41:44
Update document missing params error message appwrite/appwrite#5671 1 day, 18:21:29 5 days, 7:25:51
V19 migration appwrite/appwrite#5668 2 days, 15:50:03 14 days, 16:10:53
ci: create CI script to build cloud images appwrite/appwrite#5666 None 3:16:00
refactored email template appwrite/appwrite#5665 20:16:21 1 day, 2:26:05
Reorder databases subheadings based on importance appwrite/docs#381 2:14:41 2:14:47
Mention wildcards under Realtime channels appwrite/docs#379 0:01:24 0:02:40
remove additional white spaces appwrite/sdk-generator#662 4:01:06 1 day, 0:30:48
Add RuPay Credit Card appwrite/appwrite#5651 None 10:32:14
Sync master with 1.3.x appwrite/appwrite#5649 3:25:37 3:29:00
Updates for 1.3.7 appwrite/appwrite#5648 0:11:01 1:04:34
chore: update utopia-php/framework appwrite/appwrite#5647 None 0:02:33
Fix trailing slashes master utopia-php/http#100 0:02:05 0:14:56
feat: add support for trailing slashes in routes and urls utopia-php/http#99 0:03:58 0:13:28
Added event.preventDefault(); appwrite/playground-for-web#83 0:50:19 0:52:32
feat: update playground appwrite/playground-for-android#29 0:00:39 0:00:58
Fix the routing for the default OAuth2 pages appwrite/appwrite#5643 None 0:00:11
Fix the routing for the default OAuth2 pages appwrite/appwrite#5640 9:50:01 9:56:44
feat: rejectProject function, add userId to projects, add desktop and cli platforms, misc fixes appwrite/builtwith#20 0:00:07 2 days, 18:25:46
cache perm fix appwrite/appwrite#5638 3 days, 20:14:47 3 days, 20:15:01
sync 1.3.x appwrite/appwrite#5637 0:00:48 0:38:53
release: 1 3 6 new appwrite/appwrite#5636 None 0:05:30
release: 1.3.6 appwrite/appwrite#5635 None 0:05:05
chore: prepre 1.3.6 appwrite/appwrite#5634 0:01:05 4 days, 2:19:10
fix: remove default order appwrite/console#458 0:00:08 0:03:31
fix: trailing wildcards appwrite/appwrite#5633 0:27:39 0:27:49
feat: add trailing wildcards utopia-php/http#98 0:01:42 0:06:45
fix: trailing wildcards appwrite/appwrite#5632 0:01:55 0:38:14
Extract db from list while backing appwrite/appwrite#5630 8:01:24 4 days, 7:51:57
Update link to cron docs appwrite/console#456 0:00:08 16:20:31
feat: trailing wildcards utopia-php/http#97 4:46:25 20:14:04
feat: migrate to cloud, hamburger menu, refactors appwrite/demos-for-astro#6 0:00:05 6 days, 3:21:37
Update file name appwrite/appwrite#5624 1 day, 6:59:53 1 day, 7:00:01
Allow Updating email and phone without password appwrite/appwrite#5621 1 day, 15:36:57 1 day, 15:37:03
Fix system performance appwrite/appwrite#5620 0:02:38 1 day, 12:19:06
Fulltext fixes utopia-php/database#279 8 days, 12:12:31 14 days, 12:32:44
Removed Typo in OAuth(Web) section appwrite/docs#376 1 day, 8:18:28 2 days, 0:51:24
Upgrade dependencies Flutter and dart appwrite/sdk-generator#661 4 days, 6:49:22 6 days, 6:18:03
Fix creating a user throws an error appwrite/sdk-generator#660 0:21:15 8 days, 6:36:42
Feat: Improve logging appwrite/appwrite#5590 5 days, 23:02:00 5 days, 23:02:06
Account Password Related Updates appwrite/appwrite#5584 1 day, 18:54:33 7 days, 0:15:51
Fix syntax error in Python examples appwrite/docs#373 5:34:30 7 days, 18:12:19
remove password required for project deletion appwrite/appwrite#5580 8 days, 7:38:02 28 days, 16:48:59
Add custom copy for google oauth provider appwrite/console#453 0:00:06 15 days, 19:27:58
Update getting-started-for-flutter.phtml appwrite/docs#372 2 days, 18:41:25 12 days, 11:05:51
Update authentication-server.phtml appwrite/docs#371 3 days, 8:31:09 13 days, 0:55:10
remove query limit and offset appwrite/docs#370 0:01:06 13 days, 15:35:08
Collection Index Validation appwrite/appwrite#5552 35 days, 14:54:23 41 days, 4:21:39
Index validation utopia-php/database#271 1 day, 11:29:41 25 days, 15:20:40
feat: update to 1.3.4 release appwrite/integration-for-gitpod#18 None 37 days, 4:46:04
Update links to cron docs appwrite/console#434 0:00:06 24 days, 0:55:39
remove audit userInternalId appwrite/appwrite#5514 46 days, 10:46:10 52 days, 0:13:42
Update Mail.php appwrite/appwrite#5495 11:48:39 57 days, 4:37:39
get jwt from request param appwrite/appwrite#5470 37 days, 5:56:26 37 days, 15:13:18
Queries validator transfer to Utopia appwrite/appwrite#5439 None 55 days, 21:13:37
Feat initial push utopia-php/migration#4 21 days, 6:15:49 57 days, 12:09:28
feat add node 20 runtime open-runtimes/open-runtimes#163 55 days, 6:04:41 55 days, 6:04:41
add java 20 runtime open-runtimes/open-runtimes#162 55 days, 6:11:46 55 days, 6:11:46
Appwrite validators transfer utopia-php/database#264 20 days, 14:54:29 37 days, 17:07:40
Feat: Bun runtime 0.5.9 open-runtimes/open-runtimes#161 0:29:33 52 days, 18:05:19
fix: visual bugs appwrite/console#401 0:00:08 56 days, 21:38:38
Fix: Added Rebuild button for function view when build fails during deployment appwrite/console#376 0:00:03 61 days, 4:17:08
Indexes for permissions utopia-php/database#248 67 days, 0:24:47 80 days, 22:53:48
feat: add search to database collections appwrite/console#342 0:00:04 106 days, 18:18:55
update env variables appwrite/demos-for-astro#5 0:00:03 85 days, 15:01:19
Feat: Safe timeout open-runtimes/open-runtimes#156 None 103 days, 17:38:06
Feat: Custom commands support open-runtimes/open-runtimes#154 None 105 days, 23:02:08
Refactor dotnet generation appwrite/sdk-generator#617 None 105 days, 14:46:10
Feat: v3 Swift open-runtimes/open-runtimes#147 None 130 days, 2:23:34
doc: Added "Appwrite using NGINX as Reverse Proxy" resource appwrite/awesome-appwrite#474 2 days, 6:21:27 134 days, 21:52:53
Feat: v3 C++ open-runtimes/open-runtimes#145 None 132 days, 5:20:45
Feat: v3 .NET open-runtimes/open-runtimes#144 14 days, 14:08:48 128 days, 14:02:46
fix: adds the missing expire attribute to ListSessions call appwrite/appwrite#4872 25 days, 0:18:38 167 days, 1:35:45
Add .NET 7.0 runtime open-runtimes/open-runtimes#124 5 days, 0:17:07 214 days, 5:27:08
feat : Add error attribute to Collection Indexes and Attributes appwrite/appwrite#4575 1:38:06 239 days, 13:37:52
long size varchar with long index size mysql utopia-php/database#210 10:21:02 233 days, 10:46:57
Feat phone auth 360dialog appwrite/appwrite#4536 0:13:21 240 days, 16:38:24
Adding Scoop support appwrite/sdk-generator#450 3:59:23 380 days, 21:12:43

UI Improvement: Making site Responsive.

๐Ÿ“ Description

Although the UI of the site is alright yet there is a need to make it responsive as it is not looking good on small screens.

๐Ÿ–ผ๏ธ Screenshots

IMG_20230514_174351
IMG_20230514_174336

๐Ÿ‘€ Have you spent some time checking if this issue has been raised before?

I checked and didn't find a similar issue

Are you working on it?

I would love to work on this issue and want to make further discussions and suggestions for UI updates.

PRs Opened in June 2023

Issue Metrics

Metric Value
Average time to first response 3 days, 14:12:14.579365
Average time to close 6 days, 19:16:25.885965
Number of items that remain open 46
Number of items closed 114
Total number of items created 160
Title URL Time to first response Time to close
Change Raw Data links from singular to plural appwrite/console#471 0:00:04 3 days, 14:09:06
Create Compress image Branch open-runtimes/examples#152 None 0:00:45
Fix small typo in docs appwrite/appwrite#5755 None None
Feat 5376 improve the select query utopia-php/database#287 11 days, 22:23:06 None
Update README.md appwrite/console#469 0:00:03 6 days, 3:51:09
File Tokens RFC appwrite/rfc#58 None None
Fix typo in aria label appwrite/pink#94 0:00:03 23 days, 23:27:52
Fixed Extraneous argument label 'status:' in call for Apple App setup appwrite/console#468 0:00:03 None
Feat: $network support to run method utopia-php/orchestration#30 23 days, 15:47:53 26 days, 2:49:15
fixed null $name error for anonymous user appwrite/appwrite#5745 10 days, 7:35:23 24 days, 12:19:23
Restrict characters for project ID appwrite/appwrite#5743 19 days, 19:15:55 24 days, 15:49:39
Fix REST API and GraphQL bugs in reference docs appwrite/docs#391 11 days, 17:10:44 31 days, 7:04:23
Create a build script appwrite/sdk-generator#684 0:00:29 None
Update dotnet sdk create file example appwrite/sdk-generator#683 4 days, 18:38:47 5 days, 10:15:16
Downgrade mockito in Flutter and Dart SDKs appwrite/sdk-generator#682 1 day, 8:03:11 1 day, 8:03:18
Allow custom createdAt and updatedAt on createDocument utopia-php/database#286 None None
added google.md appwrite/docs#390 None 18 days, 21:28:11
Fix phone verification secret in events & payload appwrite/appwrite#5740 25 days, 19:23:21 25 days, 19:23:25
Fix anonymous user appwrite/appwrite#5739 25 days, 19:18:43 25 days, 19:18:51
Feat cli console project appwrite/sdk-generator#681 2 days, 0:24:06 18 days, 0:37:48
Audit Appwrite's generic error messages appwrite/appwrite#5738 17 days, 23:33:11 None
Update feature.yaml #20 3:31:53 10 days, 21:29:50
Update documentation.yaml #19 3:34:17 10 days, 21:32:08
set the dart_appwrite package version to 8.0.0 appwrite/functions-starter#51 None None
Init utopia-php/fetch#1 10 days, 19:02:19 None
Expose a way to skip specific database listeners utopia-php/database#284 19 days, 18:11:28 28 days, 12:53:23
Rename FMC to FCM in example open-runtimes/examples#151 4:15:47 None
update Flutter - Dart SDK appwrite/appwrite#5736 None None
added tests and comments appwrite/sdk-for-dart#43 0:51:51 0:52:10
update changelog appwrite/sdk-for-flutter#160 0:12:14 0:13:51
fixed flutter/dart comments appwrite/sdk-generator#678 0:01:56 0:02:04
added test appwrite/sdk-for-flutter#159 0:04:03 0:37:58
added tests appwrite/sdk-for-flutter#158 None 0:06:28
added tests appwrite/sdk-for-flutter#157 0:38:56 0:40:26
Move flutter service tests to dart appwrite/sdk-generator#677 None 0:14:09
Add tests for helpers and moels to Flutter and Dart SDKs appwrite/sdk-generator#676 3:34:47 3:51:51
Update getting-started-for-web.phtml appwrite/docs#389 None None
Added Stars and Forks button in README.md appwrite/appwrite#5731 2 days, 8:30:21 2 days, 8:30:21
Calc tier addition appwrite/appwrite#5730 2:22:22 2:55:11
Feat: Transactions utopia-php/http#101 None None
WIP: fix storage tests appwrite/sdk-generator#675 0:02:05 17:05:11
Change --p-icon-size to 0.65 to make the fix the icon alignment appwrite/pink#93 0:00:02 None
fix: missing collection error appwrite/appwrite#5728 None 1:26:54
Fix calc tier appwrite/appwrite#5727 0:13:35 2:04:49
feat: Enum Whitelist appwrite/sdk-generator#674 23 days, 0:09:55 None
Feat: Whitelist enums appwrite/appwrite#5726 None None
Update README.md appwrite/builtwith#32 0:00:03 22 days, 18:24:08
Feat: Functions G4 appwrite/console#465 0:00:05 None
Feat: Functions G4 appwrite/appwrite#5725 11:07:18 None
ci: added paths-ignore in tests GHA appwrite/console#464 0:00:03 None
Flutter SDK: tests for services appwrite/sdk-generator#673 1 day, 10:16:31 2 days, 1:17:08
account test appwrite/sdk-for-flutter#155 None 6 days, 23:19:46
Update package.json appwrite/sdk-for-web#59 1 day, 9:39:21 9 days, 22:50:02
feat: update to 1.3.7 release appwrite/integration-for-gitpod#19 3:17:53 14:29:15
Fix 3256 update document when attribute name is numeric appwrite/appwrite#5723 0:00:14 25 days, 10:55:10
fix user agent appwrite/sdk-generator#672 0:05:14 3 days, 6:52:32
Add doc comments appwrite/sdk-for-dart#42 None 6 days, 0:22:11
Add doc comments appwrite/sdk-for-flutter#154 None 5 days, 22:31:11
Add inline doc comments to the Dart and Flutter SDKs appwrite/sdk-generator#671 1 day, 4:16:23 4 days, 3:55:17
fixed incorrect audity activity on document create appwrite/appwrite#5718 0:00:17 3 days, 6:50:19
Fix upvotes appwrite/builtwith#31 0:00:04 0:00:53
fix: abuse label for creating phone session appwrite/appwrite#5715 6 days, 14:22:28 None
fix: upvotes bug appwrite/builtwith#30 0:00:03 5:00:46
feat: approval email appwrite/builtwith#29 0:00:03 None
Incomplete Example, generate error: TypeError: file.stream.pipe is noโ€ฆ appwrite/appwrite#5714 7 days, 3:17:21 None
Update getting started URL appwrite/sdk-for-kotlin#31 8:33:14 11 days, 23:23:51
Create an alias for Appwrite Cloud in docs. appwrite/docs#388 21:59:07 21:59:44
Update README.md appwrite/docs#387 3:25:32 None
feat: update tests appwrite/appwrite#5712 None 1:40:04
Feat: Add database to log appwrite/appwrite#5711 1:24:08 1:24:14
feat: project 404 page appwrite/builtwith#28 0:00:04 0:48:22
Fix: fix type conversion of strings for all models in .NET SDK appwrite/sdk-generator#670 15:28:40 3 days, 23:01:16
update SDK dependencies appwrite/sdk-generator#669 20 days, 15:31:00 25 days, 16:22:56
improve CLI readme contribution part appwrite/sdk-generator#668 0:01:45 0:02:01
Fix second index validation when first index is fulltext utopia-php/database#283 1:01:37 1:31:51
Feat database upgrade appwrite/appwrite#5710 6 days, 5:02:00 7 days, 7:53:42
refactor collections config appwrite/appwrite#5709 10:08:08 14:36:36
Update database utopia-php/abuse#55 0:18:44 0:20:05
Update database utopia-php/audit#51 0:19:36 0:20:37
feat: update database config appwrite/appwrite#5708 None 19:34:28
Update delete session description to be actually correct appwrite/appwrite#5707 7:03:07 None
[WIP] Replacing all native curl calls with the new fetch library utopia-php/analytics#44 None None
Ensure API endpoints have required params first appwrite/docs#386 1 day, 1:49:16 34 days, 3:23:22
delete unnecessary project collections task appwrite/appwrite#5705 0:53:01 22:08:47
Changed GitHub URL text and submission text appwrite/builtwith#27 0:00:06 1:03:05
Bug Fixed: Change cursor pointer in checkbox's disabled state appwrite/pink#92 0:00:03 None
Add support for multiple events per endpoint appwrite/appwrite#5703 0:02:14 None
cache save refactor appwrite/appwrite#5700 None None
Changed Twitter URL text for easier understanding appwrite/builtwith#26 0:00:03 16:27:20
Collection not found utopia-php/database#282 1 day, 15:36:47 1 day, 15:36:54
fix delete cache file to dbp-master appwrite/appwrite#5699 2:14:51 2:50:24
Fix cache delete bug master appwrite/appwrite#5698 37 days, 6:01:36 None
Feat: Client error logging appwrite/appwrite#5696 1 day, 23:13:50 None
cache deletion bug fix appwrite/appwrite#5695 1:29:22 2:56:40
chore: remove generateSearch script appwrite/builtwith#24 0:00:04 0:00:12
Feat: Support for CURL in Swoole appwrite/docker-base#12 4 days, 13:50:59 None
Added missing word to portuguese email template appwrite/appwrite#5694 1 day, 16:18:08 None
Add Swift 5.8 Runtime open-runtimes/open-runtimes#167 6 days, 18:31:49 41 days, 15:04:08
Adding Funcover as a tool appwrite/awesome-appwrite#494 21:01:30 21:01:39
refactor cache save appwrite/appwrite#5689 None 1 day, 0:37:07
style: add gap between project title and upvote appwrite/builtwith#23 0:00:03 0:00:20
refactor: added type hints for Python SDK appwrite/sdk-generator#665 12 days, 8:48:52 23 days, 17:30:00
REST API improvements in docs appwrite/docs#385 27 days, 8:04:30 45 days, 8:54:53
Update 1.4.x from Master appwrite/appwrite#5683 2 days, 6:43:05 2 days, 12:37:07
Add generic attribute model page. appwrite/docs#384 None None
Oauth provider guides appwrite/docs#383 0:00:17 None
Fix: $permissions returns as object rather than array utopia-php/database#281 0:05:01 11:09:27
very simple text annotation support utopia-php/image#26 None None
Fix docs events (Homepage #225) appwrite/docs#382 0:40:37 None
feat: use Link component, fix mobile menu appwrite/builtwith#22 0:00:05 3 days, 0:06:40
fix: missing import appwrite/appwrite#5672 None 0:01:54
style: fix project image aspect ratios appwrite/builtwith#21 0:00:07 0:58:15
fix for failing flutter test appwrite/sdk-generator#664 4 days, 19:36:09 4 days, 19:41:44
Appwrite CLI - Flutter and Generator commands appwrite/sdk-generator#663 None None
Update document missing params error message appwrite/appwrite#5671 1 day, 18:21:29 5 days, 7:25:51
V19 migration appwrite/appwrite#5668 2 days, 15:50:03 14 days, 16:10:53
ci: create CI script to build cloud images appwrite/appwrite#5666 None 3:16:00
Added send_http_request example using Dart open-runtimes/examples#150 34 days, 15:36:12 None
refactored email template appwrite/appwrite#5665 20:16:21 1 day, 2:26:05
Add support for label permissions utopia-php/database#280 29 days, 20:40:23 38 days, 10:52:04
Reorder databases subheadings based on importance appwrite/docs#381 2:14:41 2:14:47
Wildcards can't be used in channel appwrite/docs#380 3:21:33 49 days, 11:47:29
Mention wildcards under Realtime channels appwrite/docs#379 0:01:24 0:02:40
feat: improve api keys appwrite/console#460 0:00:23 None
Feat: Mulitple Events Execution appwrite/appwrite#5658 None None
[Snyk] Upgrade cross-fetch from 3.1.5 to 3.1.6 appwrite/sdk-for-web#57 None None
Appwrite console internationalization : Typesafe-i18n appwrite/console#459 0:00:04 None
remove additional white spaces appwrite/sdk-generator#662 4:01:06 1 day, 0:30:48
Add RuPay Credit Card appwrite/appwrite#5651 None 10:32:14
Sync master with 1.3.x appwrite/appwrite#5649 3:25:37 3:29:00
Updates for 1.3.7 appwrite/appwrite#5648 0:11:01 1:04:34
chore: update utopia-php/framework appwrite/appwrite#5647 None 0:02:33
Fix trailing slashes master utopia-php/http#100 0:02:05 0:14:56
feat: add support for trailing slashes in routes and urls utopia-php/http#99 0:03:58 0:13:28
Added event.preventDefault(); appwrite/playground-for-web#83 0:50:19 0:52:32
feat: update playground appwrite/playground-for-android#29 0:00:39 0:00:58
Fix the routing for the default OAuth2 pages appwrite/appwrite#5643 None 0:00:11
Fix the routing for the default OAuth2 pages appwrite/appwrite#5640 9:50:01 9:56:44
Fix default project appwrite/appwrite#5639 2 days, 21:59:31 43 days, 22:55:53
feat: rejectProject function, add userId to projects, add desktop and cli platforms, misc fixes appwrite/builtwith#20 0:00:07 2 days, 18:25:46
cache perm fix appwrite/appwrite#5638 3 days, 20:14:47 3 days, 20:15:01
sync 1.3.x appwrite/appwrite#5637 0:00:48 0:38:53
release: 1 3 6 new appwrite/appwrite#5636 None 0:05:30
release: 1.3.6 appwrite/appwrite#5635 None 0:05:05
chore: prepre 1.3.6 appwrite/appwrite#5634 0:01:05 4 days, 2:19:10
fix: remove default order appwrite/console#458 0:00:08 0:03:31
fix: trailing wildcards appwrite/appwrite#5633 0:27:39 0:27:49
feat: add trailing wildcards utopia-php/http#98 0:01:42 0:06:45
fix: trailing wildcards appwrite/appwrite#5632 0:01:55 0:38:14
Extract db from list while backing appwrite/appwrite#5630 8:01:24 4 days, 7:51:57
Add user labels to user list and detail pages appwrite/console#457 0:00:07 None
Update link to cron docs appwrite/console#456 0:00:08 16:20:31
[Snyk] Upgrade express from 4.18.1 to 4.18.2 appwrite/playground-for-web#82 None None
Add syntax for all SDKs in query. appwrite/docs#377 2 days, 11:05:08 None
feat: trailing wildcards utopia-php/http#97 4:46:25 20:14:04
feat: migrate to cloud, hamburger menu, refactors appwrite/demos-for-astro#6 0:00:05 6 days, 3:21:37
Update file name appwrite/appwrite#5624 1 day, 6:59:53 1 day, 7:00:01
Refactor collections config appwrite/appwrite#5622 6 days, 4:59:30 None
Allow Updating email and phone without password appwrite/appwrite#5621 1 day, 15:36:57 1 day, 15:37:03
Fix system performance appwrite/appwrite#5620 0:02:38 1 day, 12:19:06

Issues Opened in July 2023

Issue Metrics

Metric Value
Average time to first response 1 day, 17:28:58.282609
Average time to close 3 days, 8:27:19.377049
Number of items that remain open 73
Number of items closed 61
Total number of items created 134
Title URL Time to first response Time to close
๐Ÿ› Bug Report: Unable to delete team membership from user profile if the team doesn't exist appwrite/appwrite#5914 None None
๐Ÿ› Bug Report: Phone authentication env variable not parsing slash appwrite/appwrite#5913 0:26:14 None
๐Ÿ› Bug Report: Getting not found when hovering over users/verified custom permission appwrite/appwrite#5912 6:26:10 None
๐Ÿš€ Feature: Add an auth setting to prevent users from creating a session until they verify their account appwrite/appwrite#5911 None None
๐Ÿ› Bug Report: Documentation for Teams API has incorrect order of parameters appwrite/appwrite#5910 9:49:47 None
Help me fixing this appwrite/sdk-for-flutter#166 0:05:21 None
๐Ÿ› Bug Report: Adding transform scale(1.01) to the cards under article section appwrite/pink#99 None None
๐Ÿ› Bug Report: Browser and device image broken in project Auth - User sssions appwrite/console#484 None None
๐Ÿš€ Feature: Add the ability to modify email templates appwrite/appwrite#5908 12:10:25 None
๐Ÿ› Bug Report: Invalid name: Value must be a valid string and at least 1 chars and no longer than 128 chars appwrite/appwrite#5907 17:27:58 22:04:24
๐Ÿš€ Feature: Unique Value for few selected attributes of a document appwrite/appwrite#5906 None None
๐Ÿš€ Feature: Change deployed function code directly in appwrite console appwrite/appwrite#5905 None None
๐Ÿš€ Feature: Appwrite function domain whitelist appwrite/appwrite#5904 None None
๐Ÿ› Bug Report: When trying to resend email in Organization tab it throws AppwriteException appwrite/appwrite#5901 None None
๐Ÿš€ Feature: Daily GitHub Metrics #56 None None
The Oauth sessions from deep links expires on mobile when two different apps runs on the same project appwrite/appwrite#5893 3:52:24 None
๐Ÿ› Bug Report: very slow migration appwrite/appwrite#5891 None None
๐Ÿ› Bug Report: Alignment issues appwrite/appwrite#5889 4 days, 17:59:06 None
๐Ÿš€ Feature: Ability to set session to never expire appwrite/appwrite#5888 1 day, 17:02:39 None
๐Ÿ› Bug Report: Cloud Function change creation date after ends to deploy appwrite/appwrite#5883 6:09:49 None
๐Ÿ› Bug Report: 500 error appwrite/appwrite#5881 6:57:44 3 days, 15:44:42
๐Ÿ› Bug Report: select query in a relationship database appwrite/appwrite#5880 None None
PRs Closed in June 2023 #55 0:00:02 None
PRs Opened in June 2023 #54 0:00:02 None
Issues Opened in June 2023 #53 0:00:01 None
Issues Closed in June 2023 #52 0:00:02 None
Discussions Closed in June 2023 #51 0:00:01 None
Discussions Opened in June 2023 #50 0:00:01 None
PRs Opened in June 2023 #49 0:00:02 0:02:38
PRs Closed in June 2023 #48 0:00:02 0:03:01
Issues Opened in June 2023 #47 0:00:02 0:04:13
Issues Closed in June 2023 #46 0:00:01 0:04:19
Discussions Closed in June 2023 #45 0:00:01 0:04:26
Discussions Opened in June 2023 #44 0:00:01 0:04:26
PRs Opened in June 2023 #43 0:00:02 0:06:02
PRs Closed in June 2023 #42 0:00:03 0:06:42
Issues Opened in June 2023 #41 0:00:01 0:08:13
Issues Closed in June 2023 #40 0:00:01 0:08:21
Discussions Closed in June 2023 #39 0:00:00 0:08:33
Discussions Opened in June 2023 #38 0:00:01 0:08:33
PRs Opened in June 2023 #37 None 0:05:55
PRs Closed in June 2023 #36 None 0:05:59
Issues Opened in June 2023 #35 None 0:07:17
Issues Closed in June 2023 #34 None 0:07:32
Discussions Closed in June 2023 #32 None 0:07:42
Discussions Opened in June 2023 #33 None 0:07:43
Discussions Opened in #30 None 0:08:22
Discussions Closed in #31 None 0:08:14
๐Ÿš€ Feature: Migrate from travis.yml to Github actions utopia-php/http#103 None None
๐Ÿš€ Feature: Update Rollbar Logger to Send Stack Trace utopia-php/logger#27 None None
๐Ÿ“š Documentation: Update Databases API Python SDK documentation for the "data" parameter in update_document function appwrite/appwrite#5872 3:38:47 1 day, 6:35:32
๐Ÿ› Bug Report: Many-to-Many Relationship Updated with Non Existing Documents appwrite/appwrite#5871 1:54:57 None
๐Ÿ› Bug Report: Attribute Error appwrite/appwrite#5870 12:17:39 None
๐Ÿ› Bug Report: Swift and Deno Function error while deploying using Digital Ocean droplet appwrite/appwrite#5865 0:14:03 None
Discussions Closed in June 2023 #29 None 1 day, 11:21:46
Discussions Opened in June 2023 #28 None 1 day, 11:21:48
PRs Closed in June 2023 #27 None 1 day, 11:21:49
PRs Opened in June 2023 #26 None 1 day, 11:21:50
Issues Closed in June 2023 #25 None 1 day, 11:21:51
Issues Opened in June 2023 #24 None 1 day, 11:21:52
๐Ÿ› Bug Report: appwrite total results stuck on 5000 appwrite/appwrite#5864 0:11:38 2 days, 14:26:16
๐Ÿ› Bug Report: Swift functions won't deploy with more than one dependency appwrite/appwrite#5863 17:53:38 2 days, 4:08:57
๐Ÿ“š Documentation: Specify which filescan() return bool corresponds to infection appwrite/php-clamav#29 4 days, 11:02:33 None
Ensure cached resource from correct bucket is deleted appwrite/appwrite#5861 None None
๐Ÿš€ [Feature] - Adding K8s adapter utopia-php/orchestration#31 None 2 days, 20:01:12
๐Ÿ› Bug Report: GitHub OAuth2 Not Working SvelteKit appwrite/appwrite#5858 12:30:29 None
๐Ÿ› Bug Report: setting header "X-Fallback-Cookies" gets overwritten on request appwrite/sdk-for-web#64 None None
๐Ÿ› Bug Report: users cannot update documents where they have update permissions when there is a relationship appwrite/appwrite#5852 2:40:54 None
๐Ÿ› Bug Report: adding a document with invalid data to a one-to-many relationship can 500 error appwrite/appwrite#5851 5 days, 16:48:49 None
๐Ÿ› Bug Report: deleting a document with relationships can cause 500 error appwrite/appwrite#5850 8:12:26 None
๐Ÿ› Bug Report: update a document without updating its relationship throws a 500 error appwrite/appwrite#5849 2:50:44 None
๐Ÿ› Bug Report: AAC files have wrong Mime Type appwrite/appwrite#5848 4 days, 19:33:02 None
๐Ÿ› Bug Report: Switch Button should not contain left arrow (UI/UX) appwrite/appwrite#5843 0:56:22 0:55:35
๐Ÿ› Bug Report: Error when uploading large files (over 5 MB) with Appwrite SDK for Flutter (SDK Version: 9.0.1, Server Version: 1.3.3) appwrite/sdk-for-flutter#165 2 days, 6:05:14 2 days, 6:05:14
Error when uploading large files (over 5 MB) with Appwrite SDK for Flutter (SDK Version: 9.0.1, Server Version: 1.3.3) #22 None 0:03:32
๐Ÿš€ Feature: Proposal for Building a separate API SDK - "Appwrite.Core" for Modern .NET Version (6+ onwards) Using Refit, System.Text, and HttpClientFactory appwrite/sdk-for-dotnet#25 8 days, 8:35:12 None
๐Ÿ› Bug Report:Error when uploading large files (over 5 MB) with Appwrite SDK for Flutter (SDK Version: 9.0.1, Server Version: 1.3.3) appwrite/appwrite#5838 19:50:33 2 days, 9:28:22
๐Ÿš€ Feature: Allow to pull settings from appwrite cloud functions appwrite/appwrite#5837 0:18:01 None
๐Ÿš€ Feature: Make password optional for login via phone or magic url in client sdk appwrite/appwrite#5836 10:42:57 None
๐Ÿš€ Feature: Allow to change the filename once it is uploaded or allow to add metadata to buckets appwrite/appwrite#5835 6 days, 10:58:21 None
๐Ÿš€ Feature: Function init via CLI with Typescript appwrite/appwrite#5832 0:42:47 None
๐Ÿš€ Feature: Function custom execution url (REST API way) appwrite/appwrite#5831 0:09:08 2:31:04
๐Ÿš€ Feature: Function environment variables as a menu tab appwrite/appwrite#5827 8 days, 1:55:13 None
๐Ÿš€ Feature: Function active deployment label appwrite/appwrite#5826 5:12:31 None
๐Ÿ› Bug Report: Unresponsive Create Deployment CTAs after closing the file upload modal without selecting a file. appwrite/appwrite#5824 2 days, 1:09:14 None
Dart runtime stuck when uncaught error inside function occur open-runtimes/open-runtimes#174 3 days, 7:18:02 None
๐Ÿ› Bug Report: Teams API - create/list methods throwing type conversion errors because of null value appwrite/sdk-for-flutter#163 13 days, 21:04:04 13 days, 21:11:42
๐Ÿ› Bug Report: authentication with OAuth2 doesn't send Set-Cookie header appwrite/appwrite#5821 5:59:21 5:59:21
๐Ÿš€ Feature: add new function called findDocument() to find a document by query appwrite/sdk-for-node#57 0:07:04 None
๐Ÿ› Bug Report: '_Map<String, dynamic>' is not a subtype of type 'List' with permissions in a document appwrite/sdk-for-flutter#162 1 day, 12:39:35 None
๐Ÿ› Bug Report: Deno runtime appwrite dependency appwrite/functions-starter#52 None None
๐Ÿš€ Feature: Email OTP login appwrite/appwrite#5818 3 days, 2:09:13 3 days, 11:52:38
๐Ÿ› Bug Report: Storage File deleted accidentally from digital ocean spaces on move appwrite/appwrite#5814 None None
๐Ÿš€ Feature: no-code functions appwrite/appwrite#5813 8 days, 5:37:51 None
๐Ÿ› Bug Report: Function create doesn't work appwrite/playground-for-node#20 None None
Google oAuth |redirect_uri_mismatch| appwrite/appwrite#5806 6 days, 23:45:01 15 days, 18:24:03
redirect_uri_mismatch when use Google oAuth appwrite/sdk-for-flutter#161 8:33:00 8:33:00
๐Ÿ› Bug Report: Empty activity data in Console appwrite/appwrite#5805 0:54:35 8 days, 6:32:37
๐Ÿ“š Documentation: Missing Query method in appwrite package appwrite/appwrite#5802 None 5:09:39
๐Ÿ“š Documentation: appwrite/sdk-for-python#68 None None
๐Ÿ› Bug Report: Event session.delete not trigger when remove cause of TTL appwrite/appwrite#5801 1 day, 8:45:12 2 days, 2:43:34
๐Ÿ› Bug Report: Setup action fails on "locale" option appwrite/setup-for-actions#5 0:05:55 None
๐Ÿš€ Feature: Make editing team membership roles on the console's GUI a less tedious process appwrite/appwrite#5799 7:52:24 None
๐Ÿ› Bug Report: Invalid argument (callbackUrlScheme): must be a valid URL scheme: "appwrite-callback-<project_id>" appwrite/appwrite#5794 4:40:43 8 days, 18:50:01
๐Ÿ› Bug Report: UX/UI problem with the password field appwrite/appwrite#5790 0:02:17 10 days, 16:12:46
๐Ÿ› Bug Report: example JSON for function execution is incorrect syntactically appwrite/console#477 1 day, 23:53:51 17 days, 2:59:20
๐Ÿ› Bug Report: Incorrect accounting for registered users based on time appwrite/console#476 17 days, 4:38:15 17 days, 4:38:15
๐Ÿ› Bug Report: The avatars commands giving Error: Not Found appwrite/sdk-for-cli#86 None None
code : 500 Internal Server Error appwrite/appwrite#5789 1:49:06 1:49:06
DotNet build issue open-runtimes/open-runtimes#172 2 days, 19:59:48 None
๐Ÿš€ Feature: Standalone Edge Functions. appwrite/appwrite#5787 3 days, 21:50:33 6 days, 2:02:01
๐Ÿš€ Feature: Project-based Key-Value object for global use. appwrite/appwrite#5786 5 days, 0:01:21 5 days, 0:07:32
๐Ÿ› Bug Report: ไฝฟ็”จ่‹นๆžœ่ดฆๆˆท็™ปๅฝ• appwrite/appwrite#5782 5 days, 7:30:13 None
๐Ÿ› Bug Report: Selecting specefic segment in doc fall-back to Cloud as default appwrite/appwrite#5779 0:18:34 None
๐Ÿš€ Feature: Time-Bound Roles for User Access to Documents appwrite/appwrite#5778 3:26:55 None
๐Ÿ› Bug Report: Vanishing Upload File Layout and Unresponsive Create File Button when Uploading Duplicate Files. appwrite/appwrite#5775 19 days, 15:38:58 None
๐Ÿ› Bug Report: Error while updating document with numeric attributes appwrite/appwrite#5774 3:14:59 3:14:59
๐Ÿ› Bug Report: Unable to use .community domains as custom domains in firefox appwrite/console#474 0:00:34 22 days, 2:57:49
Feature proposal: add support for more up-to-date Deno runtime open-runtimes/open-runtimes#170 None None
๐Ÿš€ Feature: sdk for setup single database of project by default appwrite/appwrite#5773 1 day, 3:33:23 6 days, 12:17:58
๐Ÿ› Bug Report: problem when deploy collection from cli appwrite/appwrite#5772 3:32:07 1 day, 7:41:54
๐Ÿ› Bug Report: on uploading images in appwrite storage bucket it showing this error appwrite/appwrite#5771 4:11:54 20 days, 7:00:53
๐Ÿ› Bug Report: Layout Overflow during File Upload in Storage Bucket Section appwrite/appwrite#5770 5:51:45 None
๐Ÿ› Bug Report: Creating new team with existed teamId throws error 500 appwrite/appwrite#5768 0:07:51 None
๐Ÿš€ Feature: Purging collection appwrite/appwrite#5767 1 day, 23:10:18 7 days, 10:06:00
๐Ÿš€ Feature: List Teams in Account.get() appwrite/sdk-for-web#62 18:32:23 7 days, 7:31:26
๐Ÿ› Bug Report: android magic url shows "Missing Redirect URL" appwrite/appwrite#5766 0:26:32 0:26:48
๐Ÿ› Bug Report: storage.createFile() looses mimeType and stops at 0 bytes when uploading appwrite/sdk-for-web#61 None None
๐Ÿ› Bug Report: [Python SDK] Optional parameter documentSecurity is required when creating a collection appwrite/appwrite#5762 1 day, 20:48:37 2 days, 20:59:23
๐Ÿ› Bug Report: [Python SDK] Optional parameter "role" is required when creating a team appwrite/appwrite#5761 None None
๐Ÿš€ Feature: Appwrite Admin no-code customized back-office. appwrite/appwrite#5760 0:01:05 None
๐Ÿš€ Feature: don't upload the whole document when editing only one field appwrite/console#472 1 day, 0:42:58 None
๐Ÿ› Bug Report: Redirection to console on Password recover/reset appwrite/appwrite#5758 8:35:50 None
๐Ÿ› Bug Report: logged-in user shouldn't login again appwrite/sdk-for-cli#85 None None
This report was generated with the Issue Metrics Action

Discussions Closed in August 2023

Issue Metrics

Metric Value
Average time to first response 0:51:31.500000
Average time to close 132 days, 22:22:15
Average time to answer None
Number of items that remain open 0
Number of items closed 4
Total number of items created 4
Title URL Time to first response Time to close Time to answer
Upgraded to 1.4.1 without any errors but still 1.3.6 appwrite/appwrite#6085 0:01:03 0:16:04 None
Date Time as an attribute type appwrite/appwrite#2944 1:42:00 518 days, 1:24:22 None
Fail to run function python code appwrite/appwrite#5952 None 1 day, 18:00:39 None
Why did Appwrite create its own docker images for InfluxDB, Telegraf and ClamAV? appwrite/appwrite#5944 None 11 days, 21:47:55 None

This report was generated with the Issue Metrics Action
Search query used to find these items: org:appwrite org:open-runtimes org:utopia-php type:discussions closed:2023-08-01..2023-08-31

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.