Move and update changelog

+ Improve Syncronous function error handling
This commit is contained in:
Bradley Schofield
2021-12-06 15:53:36 +00:00
parent 7de975ea95
commit e499af30b2
2 changed files with 5 additions and 6 deletions
+4 -5
View File
@@ -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
View File
@@ -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
];
}