Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Val -> Prod #2427

Merged
merged 17 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
7c84db0
update architecture diagram
braxex Aug 30, 2024
55eb08e
[Snyk] Upgrade @aws-sdk/lib-dynamodb from 3.577.0 to 3.610.0 (#2344)
mdct-github-service-account Sep 3, 2024
b1436e8
Consolidate CQ Types (2024 & 2023) (#2411)
ailZhou Sep 3, 2024
f49e111
[Snyk] Security upgrade @aws-sdk/client-dynamodb from 3.577.0 to 3.60…
mdct-github-service-account Sep 3, 2024
2aa7cb5
[Snyk] Upgrade @aws-sdk/client-cognito-identity-provider from 3.621.0…
mdct-github-service-account Sep 4, 2024
13ff0a6
[Snyk] Upgrade react-router-dom from 6.22.3 to 6.26.0 (#2414)
mdct-github-service-account Sep 4, 2024
32286f6
Consolidate CQ Types (2022 & 2021) (#2416)
ailZhou Sep 5, 2024
4fa1420
[Snyk] Upgrade aws4 from 1.11.0 to 1.13.1 (#2417)
mdct-github-service-account Sep 5, 2024
0169025
[Snyk] Upgrade dompurify from 3.1.5 to 3.1.6 (#2418)
mdct-github-service-account Sep 5, 2024
cd93a66
[Snyk] Upgrade jsdom from 24.1.0 to 24.1.1 (#2420)
mdct-github-service-account Sep 6, 2024
093d889
[Snyk] Upgrade @aws-sdk/client-s3 from 3.621.0 to 3.632.0 (#2421)
mdct-github-service-account Sep 6, 2024
ab1a3f3
[Snyk] Upgrade @emotion/styled from 11.6.0 to 11.13.0 (#2424)
mdct-github-service-account Sep 9, 2024
cde9d43
[Snyk] Upgrade vite from 5.2.11 to 5.4.1 (#2423)
mdct-github-service-account Sep 9, 2024
002bfa8
adding slack alert for failed destroy (#2425)
dwhitestratiform Sep 10, 2024
e700503
Global Validation Refactor - Simple Consolidation (#2419)
ailZhou Sep 11, 2024
8e2abbf
[BUGFIX] IU-HH OMS Render Bug (#2426)
ailZhou Sep 12, 2024
557cbea
Dev -> Val (#2415)
ailZhou Sep 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
14 changes: 14 additions & 0 deletions .github/workflows/destroy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,17 @@ jobs:
aws-region: ${{ env.AWS_DEFAULT_REGION }}
- name: Destroy
run: ./run destroy --stage $STAGE_PREFIX$branch_name --verify false

# Notify the integrations channel when a destroy action fails
notify_on_destroy_failure:
runs-on: ubuntu-latest
needs:
- destroy
if: ${{ failure() }}
steps:
- name: Slack Notification
uses: rtCamp/action-slack-notify@v2
env:
SLACK_TITLE: ":boom: A destroy action has failed on ${{ github.repository }}."
MSG_MINIMAL: true
SLACK_WEBHOOK: ${{ secrets.INTEGRATIONS_SLACK_WEBHOOK }}
2 changes: 1 addition & 1 deletion .images/architecture.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions services/app-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
"typescript": "^4.6.4"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.577.0",
"@aws-sdk/lib-dynamodb": "^3.577.0",
"@aws-sdk/util-dynamodb": "^3.602.0",
"aws4": "^1.11.0",
"@aws-sdk/client-dynamodb": "^3.621",
"@aws-sdk/lib-dynamodb": "^3.621",
"@aws-sdk/util-dynamodb": "^3.621",
"aws4": "^1.13.1",
"cross-fetch": "^4.0.0",
"dompurify": "^3.1.3",
"jsdom": "^24.1.0",
"dompurify": "^3.1.6",
"jsdom": "^24.1.1",
"jwt-decode": "^3.1.2",
"kafkajs": "^2.2.4",
"prompt-sync": "^4.2.0",
Expand Down
1,247 changes: 625 additions & 622 deletions services/app-api/yarn.lock

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions services/database/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,16 @@
"author": "",
"license": "CC0-1.0",
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.474.0",
"@aws-sdk/lib-dynamodb": "^3.474.0",
"@aws-sdk/client-dynamodb": "^3.621",
"@aws-sdk/lib-dynamodb": "^3.621",
"@types/prompt-sync": "^4.2.3",
"aws-dynamodb-local": "^0.0.10",
"dynamodb-localhost": "https://github.com/99x/dynamodb-localhost#db30898f8c40932c7177be7b2f1a81360d12876d",
"prompt-sync": "^4.2.0",
"serverless-dynamodb": "^0.2.53"
},
"dependencies": {
"@aws-sdk/util-dynamodb": "^3.621",
"xml2js": "0.6.0"
}
}
Loading