Skip to content

Commit

Permalink
Merge branch 'main' into prevent-timeouts-on-acr-login-of-the-first-j…
Browse files Browse the repository at this point in the history
…ob-that-runs-first-time
  • Loading branch information
nasaldrops authored Feb 20, 2024
2 parents 01ed7c8 + 1e48253 commit 8f7c5c9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}

Expand All @@ -57,6 +57,6 @@ jobs:
run: mvn package

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
4 changes: 0 additions & 4 deletions .github/workflows/deploy_tre_reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -385,8 +385,6 @@ jobs:
BUNDLE_DIR: "./templates/workspace_services/guacamole"}
- {BUNDLE_TYPE: "workspace_service",
BUNDLE_DIR: "./templates/workspace_services/azureml"}
- {BUNDLE_TYPE: "workspace_service",
BUNDLE_DIR: "./templates/workspace_services/innereye"}
- {BUNDLE_TYPE: "workspace_service",
BUNDLE_DIR: "./templates/workspace_services/gitea"}
- {BUNDLE_TYPE: "workspace_service",
Expand Down Expand Up @@ -546,8 +544,6 @@ jobs:
BUNDLE_DIR: "./templates/workspace_services/guacamole"}
- {BUNDLE_TYPE: "workspace_service",
BUNDLE_DIR: "./templates/workspace_services/azureml"}
- {BUNDLE_TYPE: "workspace_service",
BUNDLE_DIR: "./templates/workspace_services/innereye"}
- {BUNDLE_TYPE: "workspace_service",
BUNDLE_DIR: "./templates/workspace_services/gitea"}
- {BUNDLE_TYPE: "workspace_service",
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ BUG FIXES:
* Fix issue with workspace menu not working correctly([#3819](https://github.com/microsoft/AzureTRE/issues/3819))
* Fix issue with connect button showing when no uri([#3820](https://github.com/microsoft/AzureTRE/issues/3820))
* Fix user resource upgrade validation: use the parent_service_template_name instead of the parent_resource_id. ([#3824](https://github.com/microsoft/AzureTRE/issues/3824))
* Airlock: Creating an import/export request causes a routing error ([#3830](https://github.com/microsoft/AzureTRE/issues/3830))

COMPONENTS:

Expand Down
4 changes: 2 additions & 2 deletions ui/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tre-ui",
"version": "0.5.19",
"version": "0.5.20",
"private": true,
"dependencies": {
"@azure/msal-browser": "^2.35.0",
Expand All @@ -24,7 +24,7 @@
"react-dom": "^18.2.0",
"react-markdown": "^8.0.3",
"react-redux": "^8.0.4",
"react-router-dom": "6",
"react-router-dom": "6.21.1",
"remark-gfm": "^3.0.1",
"typescript": "^5.1.6",
"web-vitals": "^3.3.0"
Expand Down
2 changes: 1 addition & 1 deletion ui/app/src/components/shared/airlock/Airlock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ export const Airlock: React.FunctionComponent = () => {

const handleNewRequest = async (newRequest: AirlockRequest) => {
await getAirlockRequests();
navigate(newRequest.id);
navigate(`/workspaces/${newRequest.workspaceId}/requests/${newRequest.id}`);
};

const quickFilters: ICommandBarItemProps[] = [
Expand Down

0 comments on commit 8f7c5c9

Please sign in to comment.