mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
Merge branch '1.8.x' into fix-specs-descriptions
This commit is contained in:
commit
42a1c8da38
3 changed files with 32 additions and 2 deletions
|
|
@ -227,7 +227,7 @@ return [
|
||||||
[
|
[
|
||||||
'key' => 'cli',
|
'key' => 'cli',
|
||||||
'name' => 'Command Line',
|
'name' => 'Command Line',
|
||||||
'version' => '12.0.1',
|
'version' => '13.0.0',
|
||||||
'url' => 'https://github.com/appwrite/sdk-for-cli',
|
'url' => 'https://github.com/appwrite/sdk-for-cli',
|
||||||
'package' => 'https://www.npmjs.com/package/appwrite-cli',
|
'package' => 'https://www.npmjs.com/package/appwrite-cli',
|
||||||
'enabled' => true,
|
'enabled' => true,
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,34 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 13.0.0
|
||||||
|
|
||||||
|
- Mark release as stable
|
||||||
|
- Feat: add pull sync on destruction of remote resources (+ confirmation)
|
||||||
|
- Fix: refine zod schema to check string size
|
||||||
|
- Validate using zod schema during push cli command
|
||||||
|
- Maintain order of keys in local config
|
||||||
|
|
||||||
|
## 13.0.0-rc.5
|
||||||
|
|
||||||
|
- Fix push all command not working correctly
|
||||||
|
|
||||||
|
## 13.0.0-rc.4
|
||||||
|
|
||||||
|
- Fix CLI ES module import issues
|
||||||
|
|
||||||
|
## 13.0.0-rc.3
|
||||||
|
|
||||||
|
- Add `Schema` class for programmatically pushing and pulling appwrite config
|
||||||
|
- Add client side db generation using `schema.db.generate()` command
|
||||||
|
|
||||||
|
## 13.0.0-rc.2
|
||||||
|
|
||||||
|
- Fixes a lot of typescript errors throughout the codebase
|
||||||
|
|
||||||
|
## 13.0.0-rc.1
|
||||||
|
|
||||||
|
- Migrates codebase from JavaScript to TypeScript
|
||||||
|
|
||||||
## 12.0.1
|
## 12.0.1
|
||||||
|
|
||||||
Fix type generation for `point`, `lineString` and `polygon` columns
|
Fix type generation for `point`, `lineString` and `polygon` columns
|
||||||
|
|
|
||||||
|
|
@ -399,7 +399,8 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||||
->setDefaultHeaders([
|
->setDefaultHeaders([
|
||||||
'X-Appwrite-Response-Format' => '1.8.0',
|
'X-Appwrite-Response-Format' => '1.8.0',
|
||||||
])
|
])
|
||||||
->setExclude($language['exclude'] ?? []);
|
->setExclude($language['exclude'] ?? [])
|
||||||
|
->setTest(false);
|
||||||
|
|
||||||
// Make sure we have a clean slate.
|
// Make sure we have a clean slate.
|
||||||
// Otherwise, all files in this dir will be pushed,
|
// Otherwise, all files in this dir will be pushed,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue