Skip to content

Commit

Permalink
Release version v0.7.0 [release]
Browse files Browse the repository at this point in the history
- Add secrets support
- Reuse CE pre-run and post-run scripts
- Add `--container-registry-credentials` option to Azure platform
- Google Batch platform support
- Add MOAB platform support
- Allow to override CE of a Tower pipeline at tw launch command
- Allow second level help without setting the Tower access token
- Fix credentials exceptions
- Add support for batch execution role on AWS Forge
  • Loading branch information
jordeu committed Oct 26, 2022
1 parent 6ddd97f commit 84bddc2
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 13 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.5
0.7.0
2 changes: 1 addition & 1 deletion VERSION-API
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.9
1.15
8 changes: 4 additions & 4 deletions src/test/java/io/seqera/tower/cli/InfoCmdTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ void testInfo(OutputType format, MockServerClient mock) throws IOException {
Map<String, String> opts = new HashMap<>();
opts.put("cliVersion", getCliVersion() );
opts.put("cliApiVersion", getCliApiVersion());
opts.put("towerApiVersion", "1.9.0");
opts.put("towerVersion", "21.10.0");
opts.put("towerApiVersion", "1.15.0");
opts.put("towerVersion", "22.3.0-torricelli");
opts.put("towerApiEndpoint", "http://localhost:"+mock.getPort());
opts.put("userName", "jordi");

Expand Down Expand Up @@ -81,8 +81,8 @@ void testInfoStatusTokenFail(MockServerClient mock) throws IOException {
Map<String, String> opts = new HashMap<>();
opts.put("cliVersion", getCliVersion() );
opts.put("cliApiVersion", getCliApiVersion());
opts.put("towerApiVersion", "1.9.0");
opts.put("towerVersion", "21.10.0");
opts.put("towerApiVersion", "1.15.0");
opts.put("towerVersion", "22.3.0-torricelli");
opts.put("towerApiEndpoint", "http://localhost:"+mock.getPort());
opts.put("userName", null);

Expand Down
31 changes: 24 additions & 7 deletions src/test/resources/runcmd/info/service-info.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
{
"serviceInfo": {
"version": "21.10.0",
"apiVersion": "1.9.0",
"commitId": "b101b372",
"version": "22.3.0-torricelli",
"apiVersion": "1.15.0",
"commitId": "3f04bfd4",
"authTypes": [
"github",
"google",
"oidc"
"google"
],
"loginPath": "/login",
"navbar": {
Expand All @@ -17,7 +16,7 @@
},
{
"label": "Community",
"url": "https://gitter.im/nf-tower/community"
"url": "https://cloud.tower.nf/community/"
},
{
"label": "Feedback",
Expand All @@ -26,7 +25,25 @@
]
},
"heartbeatInterval": 3240,
"userWorkspaceEnabled": true,
"allowInstanceCredentials": false,
"landingUrl": null
"landingUrl": "https://cloud.tower.nf",
"termsOfUseUrl": "https://cloud.tower.nf/legal",
"contentUrl": "https://user-data.tower.nf",
"analytics": {
"url": "https://analytics.tower.nf",
"siteId": 2
},
"allowLocalRepos": true,
"contentMaxFileSize": 26214400,
"waveEnabled": true,
"waveAllowedWorkspaces": [
40230138858677,
200813881126734,
70508760960023,
161997551968002,
34830707738561,
215559034546785
]
}
}

0 comments on commit 84bddc2

Please sign in to comment.