-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #169 from Tauffer-Consulting/dev
dev
- Loading branch information
Showing
86 changed files
with
3,563 additions
and
942 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,23 @@ | ||
# v0.8.0 | ||
|
||
### Features | ||
* Install missing repositories from Workflows Gallery modal when importing a workflow [PR #180]. | ||
* Create default user `[email protected]`, password `admin` when platform is created [Issue #177]. | ||
* Add search bar for Pieces in Workflows Editor page [Issue #168]. | ||
* Workflows gallery with more examples and easy installation fo repositories. | ||
* Installing multiple repositories on a new workspace if platform `github_token` provide. | ||
|
||
|
||
### Fixes | ||
* Improved terminal messages for `domino platform run-compose` and `domino platform stop-compose` CLI. | ||
* Add optional platform level github token in `run-in-compose` CLI [Issue #176]. | ||
* Fix token expiration date bug [Issue #147]. | ||
* Fix validation bugs. | ||
* Performance improved on `create_piece_repository` | ||
* Allow for optional secrets. | ||
|
||
|
||
|
||
# v0.7.0 | ||
|
||
### Features | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,9 @@ interface IPostAuthRegisterParams { | |
} | ||
|
||
interface IPostAuthRegisterResponseInterface { | ||
id: string; | ||
user_id: string; | ||
email: string; | ||
token_expires_in: number; | ||
groups: Array<{ group_id: number; group_name: string }>; | ||
} | ||
|
||
|
@@ -27,7 +28,8 @@ export const postAuthRegister: ( | |
|
||
export const postAuthRegisterMockResponse: IPostAuthRegisterResponseInterface = | ||
{ | ||
id: "some_id", | ||
user_id: "some_id", | ||
email: "[email protected]", | ||
token_expires_in: 3600, | ||
groups: [{ group_id: 0, group_name: "some group" }], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.