mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
Move and update changelog
+ Improve Syncronous function error handling
This commit is contained in:
+4
-5
@@ -1,8 +1,3 @@
|
||||
|
||||
# Unreleased Version 1.1.0
|
||||
- Added ability to create syncronous function executions
|
||||
- Introduced new execution model for functions
|
||||
|
||||
# Version 1.0.0
|
||||
|
||||
## Features
|
||||
@@ -10,6 +5,10 @@
|
||||
- Grouped auth related attributes in project collection. Introduced new attribute `auths` and removed all attributes related to auth methods and `usersAuthLimit` as well, all these are grouped under `auths` attribute
|
||||
- Grouped oAuth related attributes in project collection. Introduced new attribute `providers` and removed all attributes related to OAuth2 providers. All OAuth2 attributes are grouped under `providers`
|
||||
- Project model changed, `userAuth<AuthMethod>` => `auth<AuthMethod>` example `userAuthEmailPassword` => `authEmailPassword`, also `userOauth2<Provider>...` => `provider<Provider>...` example `userOauth2GithubAppid` => `providerGithubAppid`
|
||||
|
||||
# Unreleased Version 0.13.0
|
||||
- Added ability to create syncronous function executions
|
||||
- Introduced new execution model for functions
|
||||
# Version 0.11.0
|
||||
|
||||
## Features
|
||||
|
||||
+1
-1
@@ -1046,7 +1046,7 @@ function execute(string $trigger, string $projectId, string $executionId, string
|
||||
|
||||
return [
|
||||
'status' => $functionStatus,
|
||||
'response' => $stdout,
|
||||
'response' => ($functionStatus !== 'completed') ? $stderr : $stdout,
|
||||
'time' => $executionTime
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user