Skip to content

Commit cbd5ea3

Browse files
committed
Merge branch 'release/1.15.0'
2 parents 118556a + 234c0b0 commit cbd5ea3

File tree

5 files changed

+58
-5
lines changed

5 files changed

+58
-5
lines changed

.github/workflows/codeql.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: "CodeQL"
2+
3+
on:
4+
push:
5+
branches: [ "develop", hotfix/*, master, release/*, feature/** ]
6+
pull_request:
7+
# The branches below must be a subset of the branches above
8+
branches: [ "develop", hotfix/*, master, release/* ]
9+
schedule:
10+
- cron: "30 8 * * 3"
11+
12+
jobs:
13+
analyze:
14+
name: Analyze
15+
runs-on: ubuntu-latest
16+
permissions:
17+
actions: read
18+
contents: read
19+
security-events: write
20+
21+
strategy:
22+
fail-fast: false
23+
matrix:
24+
language: [ 'python', 'javascript' ]
25+
26+
steps:
27+
- name: Checkout
28+
uses: actions/checkout@v3
29+
30+
- name: Initialize CodeQL
31+
uses: github/codeql-action/init@v2
32+
with:
33+
languages: ${{ matrix.language }}
34+
queries: +security-and-quality
35+
36+
- name: Autobuild
37+
uses: github/codeql-action/autobuild@v2
38+
39+
- name: Perform CodeQL Analysis
40+
uses: github/codeql-action/analyze@v2
41+
with:
42+
category: "/language:${{ matrix.language }}"

dockstore_launcher_config/compose.config

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"BITBUCKET_CLIENT_SECRET":"foobared",
77
"CHECK_URL_EXISTS_ENDPOINT":"replaceme",
88
"CHECK_URL_LAMBDA_VERSION":"n/a",
9+
"COLAB_IMPORT_URL":"replaceme",
910
"COMPOSE_SETUP_VERSION":"foo",
1011
"CWL_PARSING_LAMBDA_VERSION":"n/a",
1112
"DATABASE_DOMAIN":"postgres",
@@ -33,13 +34,15 @@
3334
"GITHUB_APP_PRIVATE_KEY_FILE": "/replaceme",
3435
"GITHUB_CLIENT2_ID":"foobared",
3536
"GITHUB_CLIENT2_SECRET":"foobared",
37+
"GITHUB_CODESPACES_IMPORT_URL":"replaceme",
3638
"GITLAB_CLIENT_ID":"foobar",
3739
"GITLAB_CLIENT_SECRET":"foobar",
3840
"GOOGLE_CLIENT_ID":"potato",
3941
"GOOGLE_CLIENT_SECRET":"potato",
4042
"LOGSTASH":false,
4143
"LOGSTASH_HOST":"replaceme",
4244
"METRICS_BUCKET_NAME":"replaceme",
45+
"MYBINDER_IMPORT_URL":"replaceme",
4346
"NEXTFLOW_PARSING_LAMBDA_VERSION":"n/a",
4447
"ORCID_CLIENT_ID":"replaceme",
4548
"ORCID_CLIENT_SECRET":"replaceme",

install_bootstrap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env bash
1+
#!/usr/bin/env sh
22

33
# Created by Solomon Shorser
44
# Hacked by Denis Yuen

templates/init_migration.sh.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ java -Ddw.database.user=postgres -Ddw.database.password="{{{ POSTGRES_DBPASSWORD
1212
# this particular migration needs to run as postgres because only postgres can surrender ownership
1313
java -Ddw.database.user=postgres -Ddw.database.password="{{{ POSTGRES_DBPASSWORD }}}" -jar /home/dockstore-webservice-*.jar db migrate web.yml --include 1.7.0.relinquish
1414
# future migrations will start here and should be run as dockstore
15-
java -Ddw.database.user=dockstore -Ddw.database.password="{{{ DOCKSTORE_DBPASSWORD }}}" -jar /home/dockstore-webservice-*.jar db migrate web.yml --include 1.8.0,1.9.0,1.10.0,1.11.0,1.12.0,1.13.0,1.14.0
15+
java -Ddw.database.user=dockstore -Ddw.database.password="{{{ DOCKSTORE_DBPASSWORD }}}" -jar /home/dockstore-webservice-*.jar db migrate web.yml --include 1.8.0,1.9.0,1.10.0,1.11.0,1.12.0,1.13.0,1.14.0,1.15.0

templates/web.yml.template

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ database:
112112
# any properties specific to your JDBC driver:
113113
properties:
114114
charSet: UTF-8
115-
hibernate.dialect: org.hibernate.dialect.PostgreSQL10Dialect
115+
hibernate.dialect: org.hibernate.dialect.PostgreSQLDialect
116116
# create database as needed, disable in production
117117
hibernate.hbm2ddl.auto: validate
118118
hibernate.jdbc.batch_size: 30
@@ -142,8 +142,14 @@ database:
142142
logAbandonedConnections: true
143143
removeAbandonedTimeout: 5 minutes
144144

145-
{{#LOGSTASH}}
146145
server:
146+
applicationConnectors:
147+
- type: custom-http
148+
port: 8080
149+
adminConnectors:
150+
- type: http
151+
port: 8001
152+
{{#LOGSTASH}}
147153
requestLog:
148154
type: classic
149155
timeZone: UTC
@@ -160,6 +166,9 @@ uiConfig:
160166
bdCatalystTerraImportUrl: {{ BD_CATALYST_TERRA_IMPORT_URL }}
161167
bdCatalystSevenBridgesImportUrl: {{ BD_CATALYST_SEVEN_BRIDGES_IMPORT_URL }}
162168
elwaziImportUrl: {{ ELWAZI_IMPORT_URL }}
169+
colabImportUrl: {{ COLAB_IMPORT_URL }}
170+
mybinderImportUrl: {{ MYBINDER_IMPORT_URL }}
171+
gitHubCodespacesImportUrl: {{ GITHUB_CODESPACES_IMPORT_URL }}
163172

164173

165174
gitHubAuthUrl: https://github.com/login/oauth/authorize
@@ -195,7 +204,6 @@ uiConfig:
195204
featuredContentUrl: {{ FEATURED_CONTENT_URL }}
196205
featuredNewsUrl: {{ FEATURED_NEWS_URL }}
197206

198-
composeSetupVersion: "{{ COMPOSE_SETUP_VERSION }}"
199207
deployVersion: "{{ DEPLOY_VERSION }}"
200208
cwlParsingLambdaVersion: {{ CWL_PARSING_LAMBDA_VERSION }}
201209
wdlParsingLambdaVersion: {{ WDL_PARSING_LAMBDA_VERSION }}

0 commit comments

Comments
 (0)