Hi all,
Is there a good way to figure out which version of flutter SDK and Dart SDK is current for latest available self-hosted 1.8.0 ? I know new features are released for cloud often that are currently not baked into self-hosted. Has the team mentioned any good way ?
You mean for enabling functions?
Go to https://pub.dev/ Search for the sdk you want the details about. Select it. Go to the versions tab Checkout the versions one by one. In their readme you will see which appwrite version it is compatible with selected sdk version.
No in general. Like 19.1.0 supports OrderRandom query, is that supported by 1.8.0 ? 20.2.1 Add transaction support for Databases and TablesDB, is this supported by self hosted ?
SDK are same for cloud and onprem and cloud is updated more often than selfhosted so it would be good if there is a way to tell which version in supported fully by selfhosted. Catch my drift ?
I told you the method above. or did i missed anything ?
Maybe I am missing something but the read me mentions something like “This SDK is compatible with Appwrite server version 1.8.x.” But now can you tell me if OrderRandom is supported by current selfhosted release ? It’s 1.8.0 ..
Ok That details seems to be missing.
Found it
You can search in github about the sdk Then click on releases. It will show the version and whats introduced with that version.
But the problem is it says capable with 1.8.x I am assuming the random function is implemented on the sdk instead of the appwrite itself.
cc: <@743532656767270934> sorry for the ping. Could you clarify if what I said is right?
yeah so the readme is correct in saying sdk is compatible with 1.8.x, but that doesnt necessarily mean its compatible with self hosted release
in any case at most a new feature might have been introduced to cloud that doesnt exist in self hosted, and u will just get not found errors.
best way to filter is to read the changelogs. for eg. in this case the changelog "Add 1.8.x support by @stnguyen90 in #263" seems like is the best to decide and use 18.0.0 for self hosted version - https://github.com/appwrite/sdk-for-flutter/releases/tag/18.0.0
Recommended threads
- MongoDb Database Breaks integer[] & bigi...
I've got a table with the below column created. When I try to insert the value `[-3408048000]` into it, the dart sdk cloud function call is successful (no error...
- Delete on cascade from Cloud Function
I'm writing a Python function that deletes a user's main row from a table in my database. This row has relationships with other tables that use cascade deletion...
- 1.9.6 Console handles all array columns ...
When creating or updating a row in the appwrite 1.9.6 web console, the form treats all list columns as a type string. Even if the column is a list of booleans, ...