You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,12 @@
1
1
# Change Log
2
2
3
+
## 12.0.0
4
+
5
+
* Change `create-deployment-template`'s `version` parameter to `type` and `reference`. eg. usage - `create-deployment-template --type tag --reference 1.0.0`
6
+
* Remove `bucket-id` parameter from `create-csv-export` command
7
+
* Allow enabling or disabling of image `transformations` in a bucket
8
+
* Fix type generation for `point`, `lineString` and `polygon` columns
9
+
3
10
## 11.1.1
4
11
5
12
* Fix duplicate `enums` during type generation by prefixing them with table name. For example, `enum MyEnum` will now be generated as `enum MyTableMyEnum` to avoid conflicts.
* @property {VCSDeploymentType} type Type of reference passed. Allowed values are: branch, commit
873
+
* @property {VCSReferenceType} type Type of reference passed. Allowed values are: branch, commit
870
874
* @property {string} reference VCS reference to create deployment from. Depending on type this can be: branch name, commit hash
871
875
* @property {boolean} activate Automatically activate the deployment when it is finished building.
872
876
* @property {boolean} overrideForCli
@@ -1565,7 +1569,8 @@ functions
1565
1569
.requiredOption(`--repository <repository>`,`Repository name of the template.`)
1566
1570
.requiredOption(`--owner <owner>`,`The name of the owner of the template.`)
1567
1571
.requiredOption(`--root-directory <root-directory>`,`Path to function code in the template repo.`)
1568
-
.requiredOption(`--version <version>`,`Version (tag) for the repo linked to the function template.`)
1572
+
.requiredOption(`--type <type>`,`Type for the reference provided. Can be commit, branch, or tag`)
1573
+
.requiredOption(`--reference <reference>`,`Reference value, can be a commit hash, branch name, or release tag`)
1569
1574
.option(`--activate [value]`,`Automatically activate the deployment when it is finished building.`,(value)=>value===undefined ? true : parseBool(value))
* @property {string} resourceId Composite ID in the format {databaseId:collectionId}, identifying a collection within a database to export.
175
-
* @property {string} bucketId Storage bucket unique ID where the exported CSV will be stored.
176
175
* @property {string} filename The name of the file to be created for the export, excluding the .csv extension.
177
176
* @property {string[]} columns List of attributes to export. If empty, all attributes will be exported. You can use the '*' wildcard to export all attributes from the collection.
178
177
* @property {string[]} queries Array of query strings generated using the Query class provided by the SDK to filter documents to export. [Learn more about queries](https://appwrite.io/docs/databases#querying-documents). Maximum of 100 queries are allowed, each 4096 characters long.
.description(`Export documents to a CSV file from your Appwrite database. This endpoint allows you to export documents to a CSV file stored in an Appwrite Storage bucket.`)
711
+
.description(`Export documents to a CSV file from your Appwrite database. This endpoint allows you to export documents to a CSV file stored in a secure internal bucket. You'll receive an email with a download link when the export is complete.`)
716
712
.requiredOption(`--resource-id <resource-id>`,`Composite ID in the format {databaseId:collectionId}, identifying a collection within a database to export.`)
717
-
.requiredOption(`--bucket-id <bucket-id>`,`Storage bucket unique ID where the exported CSV will be stored.`)
718
713
.requiredOption(`--filename <filename>`,`The name of the file to be created for the export, excluding the .csv extension.`)
719
714
.option(`--columns [columns...]`,`List of attributes to export. If empty, all attributes will be exported. You can use the '*' wildcard to export all attributes from the collection.`)
720
715
.option(`--queries [queries...]`,`Array of query strings generated using the Query class provided by the SDK to filter documents to export. [Learn more about queries](https://appwrite.io/docs/databases#querying-documents). Maximum of 100 queries are allowed, each 4096 characters long.`)
0 commit comments