Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/config/platforms.php
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@
[
'key' => 'cli',
'name' => 'Command Line',
'version' => '11.1.1',
'version' => '12.0.0',
'url' => 'https://github.com/appwrite/sdk-for-cli',
'package' => 'https://www.npmjs.com/package/appwrite-cli',
'enabled' => true,
Expand Down
7 changes: 7 additions & 0 deletions docs/sdks/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 12.0.0

* Change `create-deployment-template`'s `version` parameter to `type` and `reference`. eg. usage - `create-deployment-template --type tag --reference 1.0.0`
* Remove `bucket-id` parameter from `create-csv-export` command
* Allow enabling or disabling of image `transformations` in a bucket
* Fix type generation for `point`, `lineString` and `polygon` columns

## 11.1.1

* 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.
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/Services/Sites/SitesCustomServerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2552,7 +2552,7 @@ public function testInvalidSSRSource(): void
$this->cleanupSite($siteId);
}

public function testDomainForFailedDeloyment(): void
public function testDomainForFailedDeployment(): void
{
$siteId = $this->setupSite([
'siteId' => ID::unique(),
Expand Down