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

13505: Replace e2e up test with more performant version #13679

Merged
merged 21 commits into from
May 7, 2024

Conversation

JFisk42
Copy link
Collaborator

@JFisk42 JFisk42 commented Mar 14, 2024

This PR removes the old Universal Pipeline end2end test and replaces it with a more performant test. The goal of this new test is not to verify each step in the report lifecycle or lineage, but to verify that it is sent to the correct receivers and that the contents match what we expect them to be.

Note: Still new here so please feel free to correct any wording issues in documentation/logging/variable naming that may stem from incomplete understanding.

Test Steps:

  1. Run ./gradlew testEnd2EndUP
  2. Expect to see two reports created. One for the FULL_ELR workflow and the other for ELIMS.
  3. Verify the receivers and sent file names in the output via curl --location 'http://localhost:7071/api/waters/report/[report_id]/history/'
  4. Running in staging requires setting the AzureWebJobsStorage environment variable. Because that variable contains semicolons it will need to be set in CLI like export AzureWebJobsStorage="<key from azure>"

Changes

  • Replaced the old UP e2e test with a test that posts a report. It then verifies the sent reports were sent to the correct receivers. It also pulls the resulting files from the blob store and verifies that the contents are what we expect.
  • This allowed a reduction in local test run time from about 8 minutes to under 1.5 minutes.

Checklist

Testing

  • Tested locally?
  • Ran ./prime test or ./gradlew testSmoke against local Docker ReportStream container?

Process

  • Are there licensing issues with any new dependencies introduced?
  • Includes a summary of what a code reviewer should test/verify?
  • Updated the release notes?
  • Database changes are submitted as a separate PR?
  • DevOps team has been notified if PR requires ops support?

Linked Issues

TODO

Copy link

github-actions bot commented Mar 14, 2024

Dependency Review

✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

PackageVersionScoreDetails

Scanned Manifest Files

Copy link

github-actions bot commented Mar 14, 2024

Test Results

1 167 tests  ±0   1 163 ✅ ±0   7m 0s ⏱️ -16s
  145 suites ±0       4 💤 ±0 
  145 files   ±0       0 ❌ ±0 

Results for commit c509d01. ± Comparison against base commit 6ff05b9.

♻️ This comment has been updated with latest results.

Copy link

github-actions bot commented Mar 14, 2024

Integration Test Results

 62 files  ±0   62 suites  ±0   32m 23s ⏱️ - 1m 39s
392 tests ±0  382 ✅ ±0  10 💤 ±0  0 ❌ ±0 
395 runs  ±0  385 ✅ ±0  10 💤 ±0  0 ❌ ±0 

Results for commit c509d01. ± Comparison against base commit 6ff05b9.

♻️ This comment has been updated with latest results.

@JFisk42 JFisk42 marked this pull request as ready for review March 14, 2024 20:52
@JFisk42 JFisk42 requested a review from a team as a code owner March 14, 2024 20:52
Copy link
Collaborator

@mkalish mkalish left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome stuff! Super exciting to see these getting improved. Let me know if you want to chat about any of my comments.

prime-router/src/main/kotlin/cli/tests/BasicTests.kt Outdated Show resolved Hide resolved
prime-router/src/main/kotlin/cli/tests/BasicTests.kt Outdated Show resolved Hide resolved
prime-router/src/main/kotlin/cli/tests/BasicTests.kt Outdated Show resolved Hide resolved
prime-router/src/main/kotlin/cli/tests/BasicTests.kt Outdated Show resolved Hide resolved
Copy link
Collaborator

@arnejduranovic arnejduranovic left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looking a lot nicer than the other tests! Great job reducing the runtime.

prime-router/src/main/kotlin/cli/tests/BasicTests.kt Outdated Show resolved Hide resolved
prime-router/src/main/kotlin/cli/tests/BasicTests.kt Outdated Show resolved Hide resolved
prime-router/src/main/kotlin/cli/tests/BasicTests.kt Outdated Show resolved Hide resolved
prime-router/src/main/kotlin/cli/tests/BasicTests.kt Outdated Show resolved Hide resolved
prime-router/src/main/kotlin/cli/tests/BasicTests.kt Outdated Show resolved Hide resolved
prime-router/settings/organizations.yml Outdated Show resolved Hide resolved
prime-router/build.gradle.kts Outdated Show resolved Hide resolved
prime-router/src/main/kotlin/cli/tests/BasicTests.kt Outdated Show resolved Hide resolved
@JFisk42 JFisk42 marked this pull request as ready for review April 9, 2024 21:25
prime-router/src/main/kotlin/cli/tests/BasicTests.kt Outdated Show resolved Hide resolved
prime-router/src/main/kotlin/cli/tests/BasicTests.kt Outdated Show resolved Hide resolved
prime-router/src/main/kotlin/cli/tests/BasicTests.kt Outdated Show resolved Hide resolved
prime-router/src/main/kotlin/cli/tests/BasicTests.kt Outdated Show resolved Hide resolved
prime-router/src/main/kotlin/cli/tests/BasicTests.kt Outdated Show resolved Hide resolved
prime-router/src/main/kotlin/cli/tests/BasicTests.kt Outdated Show resolved Hide resolved
prime-router/src/main/kotlin/cli/tests/BasicTests.kt Outdated Show resolved Hide resolved
prime-router/src/main/kotlin/cli/tests/BasicTests.kt Outdated Show resolved Hide resolved
prime-router/src/main/kotlin/cli/tests/BasicTests.kt Outdated Show resolved Hide resolved
@JFisk42 JFisk42 marked this pull request as ready for review April 23, 2024 21:49
Copy link
Collaborator

@brick-green brick-green left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

one question and one suggestion

prime-router/src/main/kotlin/cli/tests/TestReportStream.kt Outdated Show resolved Hide resolved
prime-router/src/main/kotlin/cli/tests/BasicTests.kt Outdated Show resolved Hide resolved
Copy link
Collaborator

@brick-green brick-green left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looking good to me!

prime-router/settings/organizations.yml Show resolved Hide resolved
prime-router/build.gradle.kts Outdated Show resolved Hide resolved
topic: full-elr
customerStatus: active
qualityFilter:
- "%messageId.exists()"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My feeling is this quality filter may be too complicated for the test? Perhaps we put a very specific value in our test messages, and then have a simple filter like %messageId = "e2e_test_message_id"

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess it just depends on what role if any you want for the quality filters in these tests. At the moment these exist simply because of the receivers I was copying from. I can modify it into something like you're suggesting and this would be an extra layer tested in these now.

prime-router/src/main/kotlin/cli/tests/BasicTests.kt Outdated Show resolved Hide resolved
prime-router/src/main/kotlin/cli/tests/BasicTests.kt Outdated Show resolved Hide resolved
Copy link
Collaborator

@arnejduranovic arnejduranovic left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good and tests run locally in under 30 seconds! Prior to merging, let's verify these tests pass on staging and that deployment instructions are updated if needed.

Copy link

sonarcloud bot commented May 7, 2024

Quality Gate Failed Quality Gate failed

Failed conditions
0.0% Coverage on New Code (required ≥ 80%)

See analysis details on SonarCloud

@JFisk42
Copy link
Collaborator Author

JFisk42 commented May 7, 2024

Did final verification of the test in staging and updating deployment guide. Also noting here: The new step will be setting the AzureWebJobsStorage env var before trying to run the test in staging.

@JFisk42 JFisk42 merged commit 7e471be into master May 7, 2024
15 of 16 checks passed
@JFisk42 JFisk42 deleted the platform/josh/13505-performant-e2e-tests branch May 7, 2024 18:07
victor-chaparro added a commit that referenced this pull request Jun 10, 2024
* Bump actions/download-artifact in /.github/actions/deploy-backend (#14154)

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4.1.5 to 4.1.6.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/8caf195ad4b1dee92908e23f56eeb0696f1dd42d...9c19ed7fe5d278cd354c7dfd5d3b88589c7e2395)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* reduce duplicate lines?

* Bump actions/upload-artifact in /.github/actions/build-backend (#14157)

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.2 to 4.3.3.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/1746f4ab65b179e0ea60a494b83293b640dd5bba...65462800fd760344b1a7b4382951275a0abb4808)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* giving better name to endpoints

* Bump actions/download-artifact in /.github/actions/deploy-frontend (#14189)

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4.1.6 to 4.1.7.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/9c19ed7fe5d278cd354c7dfd5d3b88589c7e2395...65a9edc5881444af0b9093a5e628f2fe47ea3b2e)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/download-artifact from 4.1.6 to 4.1.7 (#14192)

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4.1.6 to 4.1.7.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/9c19ed7fe5d278cd354c7dfd5d3b88589c7e2395...65a9edc5881444af0b9093a5e628f2fe47ea3b2e)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/download-artifact in /.github/actions/deploy-backend (#14190)

Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4.1.6 to 4.1.7.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/9c19ed7fe5d278cd354c7dfd5d3b88589c7e2395...65a9edc5881444af0b9093a5e628f2fe47ea3b2e)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/checkout from 4.1.3 to 4.1.4 (#14191)

Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.3 to 4.1.4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/1d96c772d19495a3b5c517cd2bc0cb401ea0529f...0ad4b8fadaa221de15dcec353f45205ec38ea70b)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump operations/slack-boltjs-app from `628feef` to `7e0819b` (#14145)

Bumps [operations/slack-boltjs-app](https://github.com/JosiahSiegel/slack-boltjs-app) from `628feef` to `7e0819b`.
- [Release notes](https://github.com/JosiahSiegel/slack-boltjs-app/releases)
- [Commits](https://github.com/JosiahSiegel/slack-boltjs-app/compare/628feef43b775f5fef1fae086364b003ee89fa13...7e0819ba69c8087aa4117bb09694294e78f8a1bc)

---
updated-dependencies:
- dependency-name: operations/slack-boltjs-app
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Stephen Nesman <94193373+snesm@users.noreply.github.com>

* Bump browserslist-useragent-regexp in /frontend-react (#14037)

Bumps [browserslist-useragent-regexp](https://github.com/browserslist/browserslist-useragent-regexp) from 4.1.1 to 4.1.3.
- [Release notes](https://github.com/browserslist/browserslist-useragent-regexp/releases)
- [Changelog](https://github.com/browserslist/browserslist-useragent-regexp/blob/master/CHANGELOG.md)
- [Commits](https://github.com/browserslist/browserslist-useragent-regexp/compare/v4.1.1...v4.1.3)

---
updated-dependencies:
- dependency-name: browserslist-useragent-regexp
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* beginnings of replacement

* Experience/12974/e2e daily data updates (#14090)

* 12974 - e2e updates to daily data

* 12974 - more tests

* 12974 - more e2e tests

* 12974 - more e2e tests

* 12974 - more e2e tests

* 12974 - more e2e tests

* 12974 - fixed failures

* 12974 - added no receiver selected tests.

* 12974 - added admin filter tests.

* 12974 - fixed failing tests

* 12974 - added call to getTableRows method where applicable.

* 14186: Implement ReportStreamCanonicalModelClassFactory to support parsing all messages as v27 (#14188)

* 14186: Implement ReportStreamCanonicalModelClassFactory to support parsing all messages as v27

* fixup! 14186: Implement ReportStreamCanonicalModelClassFactory to support parsing all messages as v27

* Update prime-router/src/main/kotlin/history/azure/ReportFileFunction.kt

refactor function name to be more specific

Co-authored-by: Arnej <118766341+arnejduranovic@users.noreply.github.com>

* Calling newly refactored parent function

* resolve terraform change alerts

* Adding endpoint documentation and comments for endpoints

* Adding documentation

* Update function reference in tests

* start refactoring

* Fixing UUID refactor

* Fixing tests

* Fixing other test

* Bump gradle/actions from 3.3.1 to 3.3.2 (#14207)

Bumps [gradle/actions](https://github.com/gradle/actions) from 3.3.1 to 3.3.2.
- [Release notes](https://github.com/gradle/actions/releases)
- [Commits](https://github.com/gradle/actions/compare/750cdda3edd6d51b7fdfc069d2e2818cf3c44f4c...db19848a5fa7950289d3668fb053140cf3028d43)

---
updated-dependencies:
- dependency-name: gradle/actions
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump gradle/actions in /.github/actions/build-backend (#14208)

Bumps [gradle/actions](https://github.com/gradle/actions) from 3.3.1 to 3.3.2.
- [Release notes](https://github.com/gradle/actions/releases)
- [Commits](https://github.com/gradle/actions/compare/750cdda3edd6d51b7fdfc069d2e2818cf3c44f4c...db19848a5fa7950289d3668fb053140cf3028d43)

---
updated-dependencies:
- dependency-name: gradle/actions
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* remove old Table

* Adding test changes

* Rename for consistency

* Adding test coverage

* Bump actions/dependency-review-action from 4.2.5 to 4.3.0 (#14232)

Bumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action) from 4.2.5 to 4.3.0.
- [Release notes](https://github.com/actions/dependency-review-action/releases)
- [Commits](https://github.com/actions/dependency-review-action/compare/5bbc3ba658137598168acb2ab73b21c432dd411b...0659a74c94536054bfa5aeb92241f70d680cc78e)

---
updated-dependencies:
- dependency-name: actions/dependency-review-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump operations/slack-boltjs-app from `7e0819b` to `7692111` (#14231)

Bumps [operations/slack-boltjs-app](https://github.com/JosiahSiegel/slack-boltjs-app) from `7e0819b` to `7692111`.
- [Release notes](https://github.com/JosiahSiegel/slack-boltjs-app/releases)
- [Commits](https://github.com/JosiahSiegel/slack-boltjs-app/compare/7e0819ba69c8087aa4117bb09694294e78f8a1bc...76921113326ce0f7846c6d3a68cfa4dc3208f0b1)

---
updated-dependencies:
- dependency-name: operations/slack-boltjs-app
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Stephen Nesman <94193373+snesm@users.noreply.github.com>

* Bump azure-storage/azurite in /.environment/docker/docker-compose (#14233)

Bumps azure-storage/azurite from 3.29.0 to 3.30.0.

---
updated-dependencies:
- dependency-name: azure-storage/azurite
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Added an alert to send a Slack notification whenever there is a new message in a poison queue.

* Use an external transaction and customize what descendant task action to search for

* swap in new table and replicate previous functionality

* update comment to match update code

* check http status before returning

* add some more tests

* update table styling

* fix receiver naming

* Experience/12974/e2e daily data updates (#14237)

* 12974 - e2e updates to daily data

* 12974 - more tests

* 12974 - more e2e tests

* 12974 - more e2e tests

* 12974 - more e2e tests

* 12974 - more e2e tests

* 12974 - fixed failures

* 12974 - added no receiver selected tests.

* 12974 - added admin filter tests.

* 12974 - fixed failing tests

* 12974 - added call to getTableRows method where applicable.

* 12974 - Added search fileName/reportId tests.
Updated methods so that they remain "pure".

* 12974 - Changed to use mock data

* Added mock when fetching by reportId

* update

* Removed VITE_IDLE_TIMEOUT=25000 from cli command

* Cleanup commented code
Moved expect.
Added check for filename.

* skipped daily-data-page.spec.ts

* Bump date-fns-tz from 2.0.0 to 3.1.3 in /frontend-react (#14129)

Bumps [date-fns-tz](https://github.com/marnusw/date-fns-tz) from 2.0.0 to 3.1.3.
- [Release notes](https://github.com/marnusw/date-fns-tz/releases)
- [Changelog](https://github.com/marnusw/date-fns-tz/blob/master/CHANGELOG.md)
- [Commits](https://github.com/marnusw/date-fns-tz/compare/v2.0.0...v3.1.3)

---
updated-dependencies:
- dependency-name: date-fns-tz
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump eslint-plugin-testing-library in /frontend-react (#14128)

Bumps [eslint-plugin-testing-library](https://github.com/testing-library/eslint-plugin-testing-library) from 6.2.0 to 6.2.2.
- [Release notes](https://github.com/testing-library/eslint-plugin-testing-library/releases)
- [Changelog](https://github.com/testing-library/eslint-plugin-testing-library/blob/main/.releaserc.json)
- [Commits](https://github.com/testing-library/eslint-plugin-testing-library/compare/v6.2.0...v6.2.2)

---
updated-dependencies:
- dependency-name: eslint-plugin-testing-library
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Adding comments to explain functions

* Bump otpauth from 9.2.2 to 9.2.3 in /frontend-react (#14040)

Bumps [otpauth](https://github.com/hectorm/otpauth) from 9.2.2 to 9.2.3.
- [Release notes](https://github.com/hectorm/otpauth/releases)
- [Commits](https://github.com/hectorm/otpauth/compare/v9.2.2...v9.2.3)

---
updated-dependencies:
- dependency-name: otpauth
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joseph Andersen <12385932+jpandersen87@users.noreply.github.com>

* Fixing api docs

* Experience/13388-App-and-related-componentservice-simplification-and-mock-cleanup (#13390)

* Added `law_id` to Demo and Test as well.

* Fixed formatting.

* Bump dependency-review-action from 4.3.1 to 4.3.2 (#14252)

* Adding doc updates

* Use the elvis operator

* Transition to using getRootReport (singular)

* update tests and table

* make sure 2 columns nowrap

* increase sonarcloud coverage (#14203)

* increase sonarcloud coverage

* add sonar.java.binaries path for class files

* 13507: FHIR Converter integration tests (#14183)

* 14186: Implement ReportStreamCanonicalModelClassFactory to support parsing all messages as v27

* fixup! 14186: Implement ReportStreamCanonicalModelClassFactory to support parsing all messages as v27

* 13057: FHIR Converter integration tests

* fixup! 13057: FHIR Converter integration tests

* Add RadxMars sender in the ignore org

* fixup! 13057: FHIR Converter integration tests

* fixup! 13057: FHIR Converter integration tests

* Try removing caching the azurite instances

* fixup! 13057: FHIR Converter integration tests

* fixup! 13057: FHIR Converter integration tests

* fixup! 13057: FHIR Converter integration tests

* fixup! 13057: FHIR Converter integration tests

* fixup! 13057: FHIR Converter integration tests

* fixup! 13057: FHIR Converter integration tests

* add queue diag

* Update prime-router/src/main/kotlin/history/azure/ReportFileFunction.kt

Co-authored-by: Michael Kalish <michael.kalish@focusconsulting.io>

* Update prime-router/src/main/kotlin/history/azure/ReportFileFunction.kt

Co-authored-by: Michael Kalish <michael.kalish@focusconsulting.io>

* Use async await instead of launch

* Bump MeilCli/slack-upload-file from 4.0.5 to 4.0.6 (#14260)

Bumps [MeilCli/slack-upload-file](https://github.com/meilcli/slack-upload-file) from 4.0.5 to 4.0.6.
- [Release notes](https://github.com/meilcli/slack-upload-file/releases)
- [Commits](https://github.com/meilcli/slack-upload-file/compare/fe1ebe51d082ed99d3bf84c7fbf858e4ff57bcf6...44b8c5399b7fc13ac6220637a38b8df1634c3560)

---
updated-dependencies:
- dependency-name: MeilCli/slack-upload-file
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump JosiahSiegel/workflow-housekeeper from 1.0.4 to 1.1.0 (#14261)

Bumps [JosiahSiegel/workflow-housekeeper](https://github.com/josiahsiegel/workflow-housekeeper) from 1.0.4 to 1.1.0.
- [Release notes](https://github.com/josiahsiegel/workflow-housekeeper/releases)
- [Commits](https://github.com/josiahsiegel/workflow-housekeeper/compare/f73f78d6cd72f7e6552ddc40838d12922d5dded2...731cc20bb613208b34efb6ac74aab4ba147abb50)

---
updated-dependencies:
- dependency-name: JosiahSiegel/workflow-housekeeper
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* one last nowrap

* Use the ReportService in the DeliveryFunction instead of ReportGraph directly

* Remove ETOR_TI_baseurl env var from local run

* 14102: disable dedupe detection parameter for the UP (#14204)

* Bump ejs from 3.1.9 to 3.1.10 in /frontend-react (#14262)

Bumps [ejs](https://github.com/mde/ejs) from 3.1.9 to 3.1.10.
- [Release notes](https://github.com/mde/ejs/releases)
- [Commits](https://github.com/mde/ejs/compare/v3.1.9...v3.1.10)

---
updated-dependencies:
- dependency-name: ejs
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joseph Andersen <12385932+jpandersen87@users.noreply.github.com>

* Check for the ETOR_TI_baseurl environment variable, and return a 500 if missing

* Bump the typescript group across 1 directory with 2 updates (#14253)

Bumps the typescript group with 2 updates in the /frontend-react directory: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) and [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser).


Updates `@typescript-eslint/eslint-plugin` from 7.6.0 to 7.8.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.8.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 7.6.0 to 7.8.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.8.0/packages/parser)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: typescript
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joseph Andersen <12385932+jpandersen87@users.noreply.github.com>

* Bump the testing-library group across 1 directory with 2 updates (#14245)

Bumps the testing-library group with 2 updates in the /frontend-react directory: [@testing-library/dom](https://github.com/testing-library/dom-testing-library) and [@testing-library/react](https://github.com/testing-library/react-testing-library).


Updates `@testing-library/dom` from 9.3.4 to 10.1.0
- [Release notes](https://github.com/testing-library/dom-testing-library/releases)
- [Changelog](https://github.com/testing-library/dom-testing-library/blob/main/CHANGELOG.md)
- [Commits](https://github.com/testing-library/dom-testing-library/compare/v9.3.4...v10.1.0)

Updates `@testing-library/react` from 14.2.2 to 15.0.5
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](https://github.com/testing-library/react-testing-library/compare/v14.2.2...v15.0.5)

---
updated-dependencies:
- dependency-name: "@testing-library/dom"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: testing-library
- dependency-name: "@testing-library/react"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: testing-library
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump dompurify from 3.0.11 to 3.1.2 in /frontend-react (#14243)

Bumps [dompurify](https://github.com/cure53/DOMPurify) from 3.0.11 to 3.1.2.
- [Release notes](https://github.com/cure53/DOMPurify/releases)
- [Commits](https://github.com/cure53/DOMPurify/compare/3.0.11...3.1.2)

---
updated-dependencies:
- dependency-name: dompurify
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joseph Andersen <12385932+jpandersen87@users.noreply.github.com>

* Bump undici from 6.10.1 to 6.15.0 in /frontend-react (#14235)

Bumps [undici](https://github.com/nodejs/undici) from 6.10.1 to 6.15.0.
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](https://github.com/nodejs/undici/compare/v6.10.1...v6.15.0)

---
updated-dependencies:
- dependency-name: undici
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump the react-router group in /frontend-react with 2 updates (#14218)

Bumps the react-router group in /frontend-react with 2 updates: [react-router](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router) and [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom).


Updates `react-router` from 6.22.3 to 6.23.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router@6.23.0/packages/react-router)

Updates `react-router-dom` from 6.22.3 to 6.23.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.23.0/packages/react-router-dom)

---
updated-dependencies:
- dependency-name: react-router
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: react-router
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: react-router
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joseph Andersen <12385932+jpandersen87@users.noreply.github.com>

* Bump the okta group in /frontend-react with 2 updates (#14216)

Bumps the okta group in /frontend-react with 2 updates: [@okta/okta-react](https://github.com/okta/okta-react) and [@okta/okta-signin-widget](https://github.com/okta/okta-signin-widget).


Updates `@okta/okta-react` from 6.7.0 to 6.8.0
- [Release notes](https://github.com/okta/okta-react/releases)
- [Changelog](https://github.com/okta/okta-react/blob/master/CHANGELOG.md)
- [Commits](https://github.com/okta/okta-react/compare/okta-react-6.7.0...okta-react-6.8.0)

Updates `@okta/okta-signin-widget` from 7.16.2 to 7.17.2
- [Release notes](https://github.com/okta/okta-signin-widget/releases)
- [Changelog](https://github.com/okta/okta-signin-widget/blob/master/webpack.release.config.js)
- [Commits](https://github.com/okta/okta-signin-widget/compare/okta-signin-widget-7.16.2...okta-signin-widget-7.17.2)

---
updated-dependencies:
- dependency-name: "@okta/okta-react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: okta
- dependency-name: "@okta/okta-signin-widget"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: okta
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joseph Andersen <12385932+jpandersen87@users.noreply.github.com>

* Bump the react group in /frontend-react with 4 updates (#14215)

Bumps the react group in /frontend-react with 4 updates: [react](https://github.com/facebook/react/tree/HEAD/packages/react), [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react), [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) and [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom).


Updates `react` from 18.2.0 to 18.3.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.3.1/packages/react)

Updates `@types/react` from 18.2.72 to 18.3.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `react-dom` from 18.2.0 to 18.3.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.3.1/packages/react-dom)

Updates `@types/react-dom` from 18.2.22 to 18.3.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

---
updated-dependencies:
- dependency-name: react
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: react
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: react
- dependency-name: react-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: react
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: react
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joseph Andersen <12385932+jpandersen87@users.noreply.github.com>

* Bump msw from 2.2.13 to 2.2.14 in /frontend-react in the msw group (#14130)

Bumps the msw group in /frontend-react with 1 update: [msw](https://github.com/mswjs/msw).


Updates `msw` from 2.2.13 to 2.2.14
- [Release notes](https://github.com/mswjs/msw/releases)
- [Changelog](https://github.com/mswjs/msw/blob/main/CHANGELOG.md)
- [Commits](https://github.com/mswjs/msw/compare/v2.2.13...v2.2.14)

---
updated-dependencies:
- dependency-name: msw
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: msw
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joseph Andersen <12385932+jpandersen87@users.noreply.github.com>

* Bump sass from 1.72.0 to 1.75.0 in /frontend-react (#14043)

Bumps [sass](https://github.com/sass/dart-sass) from 1.72.0 to 1.75.0.
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](https://github.com/sass/dart-sass/compare/1.72.0...1.75.0)

---
updated-dependencies:
- dependency-name: sass
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joseph Andersen <12385932+jpandersen87@users.noreply.github.com>

* Bump the react-query group across 1 directory with 2 updates (#14244)

Bumps the react-query group with 2 updates in the /frontend-react directory: [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) and [@tanstack/react-query-devtools](https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools).


Updates `@tanstack/react-query` from 5.29.2 to 5.32.1
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.32.1/packages/react-query)

Updates `@tanstack/react-query-devtools` from 5.29.2 to 5.32.1
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.32.1/packages/react-query-devtools)

---
updated-dependencies:
- dependency-name: "@tanstack/react-query"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: react-query
- dependency-name: "@tanstack/react-query-devtools"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: react-query
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump the storybook group in /frontend-react with 13 updates (#14222)

Bumps the storybook group in /frontend-react with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [@storybook/addon-a11y](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/a11y) | `8.0.4` | `8.0.9` |
| [@storybook/addon-actions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/actions) | `8.0.4` | `8.0.9` |
| [@storybook/addon-essentials](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/essentials) | `8.0.4` | `8.0.9` |
| [@storybook/addon-interactions](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/interactions) | `8.0.4` | `8.0.9` |
| [@storybook/addon-links](https://github.com/storybookjs/storybook/tree/HEAD/code/addons/links) | `8.0.4` | `8.0.9` |
| [@storybook/blocks](https://github.com/storybookjs/storybook/tree/HEAD/code/ui/blocks) | `8.0.4` | `8.0.9` |
| [@storybook/components](https://github.com/storybookjs/storybook/tree/HEAD/code/ui/components) | `8.0.4` | `8.0.9` |
| [@storybook/core-events](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/core-events) | `8.0.4` | `8.0.9` |
| [@storybook/react](https://github.com/storybookjs/storybook/tree/HEAD/code/renderers/react) | `8.0.4` | `8.0.9` |
| [@storybook/react-vite](https://github.com/storybookjs/storybook/tree/HEAD/code/frameworks/react-vite) | `8.0.4` | `8.0.9` |
| [@storybook/theming](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/theming) | `8.0.4` | `8.0.9` |
| [msw-storybook-addon](https://github.com/mswjs/msw-storybook-addon/tree/HEAD/packages/msw-addon) | `2.0.0-beta.1` | `2.0.0-beta.2` |
| [storybook](https://github.com/storybookjs/storybook/tree/HEAD/code/lib/cli) | `8.0.4` | `8.0.9` |


Updates `@storybook/addon-a11y` from 8.0.4 to 8.0.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.0.9/code/addons/a11y)

Updates `@storybook/addon-actions` from 8.0.4 to 8.0.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.0.9/code/addons/actions)

Updates `@storybook/addon-essentials` from 8.0.4 to 8.0.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.0.9/code/addons/essentials)

Updates `@storybook/addon-interactions` from 8.0.4 to 8.0.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.0.9/code/addons/interactions)

Updates `@storybook/addon-links` from 8.0.4 to 8.0.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.0.9/code/addons/links)

Updates `@storybook/blocks` from 8.0.4 to 8.0.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.0.9/code/ui/blocks)

Updates `@storybook/components` from 8.0.4 to 8.0.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.0.9/code/ui/components)

Updates `@storybook/core-events` from 8.0.4 to 8.0.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.0.9/code/lib/core-events)

Updates `@storybook/react` from 8.0.4 to 8.0.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.0.9/code/renderers/react)

Updates `@storybook/react-vite` from 8.0.4 to 8.0.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.0.9/code/frameworks/react-vite)

Updates `@storybook/theming` from 8.0.4 to 8.0.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.0.9/code/lib/theming)

Updates `msw-storybook-addon` from 2.0.0-beta.1 to 2.0.0-beta.2
- [Release notes](https://github.com/mswjs/msw-storybook-addon/releases)
- [Changelog](https://github.com/mswjs/msw-storybook-addon/blob/main/packages/msw-addon/CHANGELOG.md)
- [Commits](https://github.com/mswjs/msw-storybook-addon/commits/HEAD/packages/msw-addon)

Updates `storybook` from 8.0.4 to 8.0.9
- [Release notes](https://github.com/storybookjs/storybook/releases)
- [Changelog](https://github.com/storybookjs/storybook/blob/next/CHANGELOG.md)
- [Commits](https://github.com/storybookjs/storybook/commits/v8.0.9/code/lib/cli)

---
updated-dependencies:
- dependency-name: "@storybook/addon-a11y"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: storybook
- dependency-name: "@storybook/addon-actions"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: storybook
- dependency-name: "@storybook/addon-essentials"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: storybook
- dependency-name: "@storybook/addon-interactions"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: storybook
- dependency-name: "@storybook/addon-links"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: storybook
- dependency-name: "@storybook/blocks"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: storybook
- dependency-name: "@storybook/components"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: storybook
- dependency-name: "@storybook/core-events"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: storybook
- dependency-name: "@storybook/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: storybook
- dependency-name: "@storybook/react-vite"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: storybook
- dependency-name: "@storybook/theming"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: storybook
- dependency-name: msw-storybook-addon
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: storybook
- dependency-name: storybook
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: storybook
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump the applicationinsights group in /frontend-react with 2 updates (#14214)

Bumps the applicationinsights group in /frontend-react with 2 updates: [@microsoft/applicationinsights-react-js](https://github.com/microsoft/applicationinsights-react-js) and [@microsoft/applicationinsights-web](https://github.com/microsoft/ApplicationInsights-JS).


Updates `@microsoft/applicationinsights-react-js` from 17.1.1 to 17.1.2
- [Release notes](https://github.com/microsoft/applicationinsights-react-js/releases)
- [Changelog](https://github.com/microsoft/applicationinsights-react-js/blob/main/RELEASES.md)
- [Commits](https://github.com/microsoft/applicationinsights-react-js/compare/17.1.1...17.1.2)

Updates `@microsoft/applicationinsights-web` from 3.1.1 to 3.2.0
- [Release notes](https://github.com/microsoft/ApplicationInsights-JS/releases)
- [Changelog](https://github.com/microsoft/ApplicationInsights-JS/blob/main/RELEASES.md)
- [Commits](https://github.com/microsoft/ApplicationInsights-JS/commits)

---
updated-dependencies:
- dependency-name: "@microsoft/applicationinsights-react-js"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: applicationinsights
- dependency-name: "@microsoft/applicationinsights-web"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: applicationinsights
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump vite from 5.2.8 to 5.2.10 in /frontend-react in the vite group (#14133)

Bumps the vite group in /frontend-react with 1 update: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).


Updates `vite` from 5.2.8 to 5.2.10
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.2.10/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: vite
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump the vitest group across 1 directory with 4 updates (#14254)

* Bump the vitest group across 1 directory with 4 updates

Bumps the vitest group with 4 updates in the /frontend-react directory: [@vitest/coverage-istanbul](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul), [@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui), [eslint-plugin-vitest](https://github.com/veritem/eslint-plugin-vitest) and [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest).


Updates `@vitest/coverage-istanbul` from 1.4.0 to 1.5.3
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v1.5.3/packages/coverage-istanbul)

Updates `@vitest/ui` from 1.4.0 to 1.5.3
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v1.5.3/packages/ui)

Updates `eslint-plugin-vitest` from 0.4.1 to 0.5.4
- [Release notes](https://github.com/veritem/eslint-plugin-vitest/releases)
- [Commits](https://github.com/veritem/eslint-plugin-vitest/compare/v0.4.1...v0.5.4)

Updates `vitest` from 1.4.0 to 1.5.3
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v1.5.3/packages/vitest)

---
updated-dependencies:
- dependency-name: "@vitest/coverage-istanbul"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: vitest
- dependency-name: "@vitest/ui"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: vitest
- dependency-name: eslint-plugin-vitest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: vitest
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: vitest
...

Signed-off-by: dependabot[bot] <support@github.com>

* Use legacy eslint vitest ruleset

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Joseph Andersen <12385932+jpandersen87@users.noreply.github.com>

* restore sonarcloud frontend only scan config (#14268)

* Pump the TI ETOR base URL values into the function application

* Temporarily made alert_version_upgrade.yml to trigger on pushes to `dkrylov/metabase-checker-13962`

* Temporarily set channel to `p-cdc-prime`

* Output `env.Schedules_UpgradeDetails_0_UpgradeRequired` for testing.

* Corrected the condition for Slack notification: `${{ env.Schedules_UpgradeDetails_0_UpgradeRequired == 'true'}}`

* A test.

* Undo test.

* Undo more test.

* Undo more test.

* Undo more test.

* Bump bridgecrewio/checkov-action from 12.2726.0 to 12.2731.0 (#14275)

Bumps [bridgecrewio/checkov-action](https://github.com/bridgecrewio/checkov-action) from 12.2726.0 to 12.2731.0.
- [Release notes](https://github.com/bridgecrewio/checkov-action/releases)
- [Commits](https://github.com/bridgecrewio/checkov-action/compare/e5aec874aca04a0b30142382f0980e5145252333...80c58e67aea1b38e55b0097c4efe915e6b04f11d)

---
updated-dependencies:
- dependency-name: bridgecrewio/checkov-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Experience/14179/e2e daily data updates (#14246)

* 12974 - e2e updates to daily data

* 12974 - more tests

* 12974 - more e2e tests

* 12974 - more e2e tests

* 12974 - more e2e tests

* 12974 - more e2e tests

* 12974 - fixed failures

* 12974 - added no receiver selected tests.

* 12974 - added admin filter tests.

* 12974 - fixed failing tests

* 12974 - added call to getTableRows method where applicable.

* 12974 - Added search fileName/reportId tests.
Updated methods so that they remain "pure".

* 12974 - Changed to use mock data

* Added mock when fetching by reportId

* update

* Removed VITE_IDLE_TIMEOUT=25000 from cli command

* Cleanup commented code
Moved expect.
Added check for filename.

* skipped daily-data-page.spec.ts

* Added wait to filter-status to get populated.

* update

* higher retries

* increase retries

* delay mock resolves

* Revert "delay mock resolves"

This reverts commit 5053fef3b350d227e1e6d6ad4c0357ffd4656108.

* Commented code that needs to be revisited once using live data

* Skipped test that need to be revisited

* fixing e2e

---------

Co-authored-by: Joseph Andersen <12385932+jpandersen87@users.noreply.github.com>

* Bug: eagerly intialize FhirPathUtils in the convert step (#14286)

* Bug: eagerly intialize FhirPathUtils in the convert step

* fixup! Bug: eagerly intialize FhirPathUtils in the convert step

* 13794 add radxmars hl7 java class (#14185)

* add radxmars251 java class

* use hl7 2.7 datatypes and segments with radx mars obx, add test

* rebase message and group files on the 2.7 class

* BUG: E2E Daily Data Details Test Broken (#14319)

Fixes #14318

* Bump operations/slack-boltjs-app from `7692111` to `a722355` (#14317)

Bumps [operations/slack-boltjs-app](https://github.com/JosiahSiegel/slack-boltjs-app) from `7692111` to `a722355`.
- [Release notes](https://github.com/JosiahSiegel/slack-boltjs-app/releases)
- [Commits](https://github.com/JosiahSiegel/slack-boltjs-app/compare/76921113326ce0f7846c6d3a68cfa4dc3208f0b1...a722355e119da198683fe9d549c8e39f0462c246)

---
updated-dependencies:
- dependency-name: operations/slack-boltjs-app
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Stephen Nesman <94193373+snesm@users.noreply.github.com>

* Bump the react-query group across 1 directory with 2 updates (#14320)

Bumps the react-query group with 2 updates in the /frontend-react directory: [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) and [@tanstack/react-query-devtools](https://github.com/TanStack/query/tree/HEAD/packages/react-query-devtools).


Updates `@tanstack/react-query` from 5.32.1 to 5.35.1
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.35.1/packages/react-query)

Updates `@tanstack/react-query-devtools` from 5.32.1 to 5.35.1
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.35.1/packages/react-query-devtools)

---
updated-dependencies:
- dependency-name: "@tanstack/react-query"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: react-query
- dependency-name: "@tanstack/react-query-devtools"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: react-query
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump sass from 1.75.0 to 1.76.0 in /frontend-react (#14308)

Bumps [sass](https://github.com/sass/dart-sass) from 1.75.0 to 1.76.0.
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](https://github.com/sass/dart-sass/compare/1.75.0...1.76.0)

---
updated-dependencies:
- dependency-name: sass
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Upgraded `gitleaks` to v8.18.2 and re-enabled to run as part of pre-commit checks.

* Oo/oslynn/14247/fix rest transport for ok phd (#14266)

* Fixed REST Transport to make it work with OK-PHD

* Removed the Natus integration Test

* Fixed httpclient log level=LogLevel.INFO

* Add UserPassCredential unit test back

* Fixed RESTTransportIntegrationTest failed

* Added Unit Test for getAuthenticationHeader

* Fixed the RestTransportIntegrationTests failure

* Bump @types/lodash from 4.17.0 to 4.17.1 in /frontend-react (#14307)

Bumps [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) from 4.17.0 to 4.17.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/lodash)

---
updated-dependencies:
- dependency-name: "@types/lodash"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump @okta/okta-signin-widget in /frontend-react in the okta group (#14305)

Bumps the okta group in /frontend-react with 1 update: [@okta/okta-signin-widget](https://github.com/okta/okta-signin-widget).


Updates `@okta/okta-signin-widget` from 7.17.2 to 7.18.0
- [Release notes](https://github.com/okta/okta-signin-widget/releases)
- [Changelog](https://github.com/okta/okta-signin-widget/blob/master/webpack.release.config.js)
- [Commits](https://github.com/okta/okta-signin-widget/compare/okta-signin-widget-7.17.2...okta-signin-widget-7.18.0)

---
updated-dependencies:
- dependency-name: "@okta/okta-signin-widget"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: okta
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump vite from 5.2.10 to 5.2.11 in /frontend-react in the vite group (#14304)

Bumps the vite group in /frontend-react with 1 update: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).


Updates `vite` from 5.2.10 to 5.2.11
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.2.11/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: vite
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump the vitest group in /frontend-react with 3 updates (#14302)

Bumps the vitest group in /frontend-react with 3 updates: [@vitest/coverage-istanbul](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul), [@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui) and [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest).


Updates `@vitest/coverage-istanbul` from 1.5.3 to 1.6.0
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v1.6.0/packages/coverage-istanbul)

Updates `@vitest/ui` from 1.5.3 to 1.6.0
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v1.6.0/packages/ui)

Updates `vitest` from 1.5.3 to 1.6.0
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v1.6.0/packages/vitest)

---
updated-dependencies:
- dependency-name: "@vitest/coverage-istanbul"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: vitest
- dependency-name: "@vitest/ui"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: vitest
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: vitest
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump the testing-library group in /frontend-react with 2 updates (#14301)

Bumps the testing-library group in /frontend-react with 2 updates: [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) and [@testing-library/react](https://github.com/testing-library/react-testing-library).


Updates `@testing-library/jest-dom` from 6.4.2 to 6.4.5
- [Release notes](https://github.com/testing-library/jest-dom/releases)
- [Changelog](https://github.com/testing-library/jest-dom/blob/main/CHANGELOG.md)
- [Commits](https://github.com/testing-library/jest-dom/compare/v6.4.2...v6.4.5)

Updates `@testing-library/react` from 15.0.5 to 15.0.6
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](https://github.com/testing-library/react-testing-library/compare/v15.0.5...v15.0.6)

---
updated-dependencies:
- dependency-name: "@testing-library/jest-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: testing-library
- dependency-name: "@testing-library/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: testing-library
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump bridgecrewio/checkov-action from 12.2731.0 to 12.2735.0 (#14328)

Bumps [bridgecrewio/checkov-action](https://github.com/bridgecrewio/checkov-action) from 12.2731.0 to 12.2735.0.
- [Release notes](https://github.com/bridgecrewio/checkov-action/releases)
- [Commits](https://github.com/bridgecrewio/checkov-action/compare/80c58e67aea1b38e55b0097c4efe915e6b04f11d...d2ff2e8b709c5b32fee78ecbf4dbced14978c7c5)

---
updated-dependencies:
- dependency-name: bridgecrewio/checkov-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump actions/checkout from 4.1.4 to 4.1.5 (#14333)

Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.4 to 4.1.5.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/0ad4b8fadaa221de15dcec353f45205ec38ea70b...44c2b7a8a4ea60a981eaca3cf939b5f4305c123b)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* 13505: Replace e2e up test with more performant version (#13679)

* 13505: Replace e2e up test with more performant version

* small doc updates

* Refactoring UP E2E test to pull from blob store and compare file contents

* fixing formatting

* clarifying documentation

* Few more clarifying updates

* Set blob connection info to pull from env vars

* temporarily adding a few lines back in

* refactoring e2e up test based on feedback

* Updating tests based on staging trial runs

* Refactoring to use saved expected results

* Removing any real state addresses

* Adding performFileTransforms method back in with notes

* small typos

* review feedback

* continuing all tests if one fails batch step

* updating test data initialization

* update stale items workflow

* SOP for adding new HL7 spec (#14182)

* add markdown and complete data structures section

* add sop

* fixes from review

* include sections for updating existing mappings and classes

* fixup from review

* fixup from review

* Update condition mapping to indicate correct item index in log (#14284)

* move condition mapping call to process function

* add new fhir batch test file

* test file

* test file again

* add checks for getItemLogger

* add to fhir convert integration tests

* mocked observation mapping table

* adjust condition mapping table creation

* 14109 organizations yaml validation (#14251)

* consolidate stale pwsh

* KS onboarding to UP (#14236)

* KS onboarding to UP

* Added integration test

* Added integration test to the PR

* Accept both HIV +/-

* Updated the conditionFilter to allow COVID, HIV with practitioner in KS

* Unsuppress AOE

* Fixed Integration Test

* update SOAP transport docs (#14212)

* create AZ receiver transform (#14211)

* create AZ receiver transform

* update az receiver transform

* fix integration test

* update translation config file

* 14206 - fixed issue where ELIMS messages not returning in Daily Data (#14338)

* 14206 - fixed issue where ELIMS messages not returning in Daily Data search b/c filename was not being encoded before searching dbs.

* 14206 - Added unit tests for HistoryApiParameters when passing filename.

* Create E2E tests on Org Settings Page (#14345)

* Create E2E tests on Org Settings Page
Fixes #13890

* 13798: additional obx mappings for Radxmars (#14255)

* 13798: add additional OBX mappings

* Update HL7Reader.parseMessage to replace \n with \r

* fixup! Update HL7Reader.parseMessage to replace \n with \r

* Add Ignore MARS OTC receiver

* Fix OBX.23 mapping when OBX.25 is not valued

* fixup! Fix OBX.23 mapping when OBX.25 is not valued

* fixup! Fix OBX.23 mapping when OBX.25 is not valued

* Update prime-router/src/main/kotlin/fhirengine/utils/HL7Reader.kt

Co-authored-by: Jack Wang <jack.wang@focusconsulting.io>

* fixup! Merge branch 'master' into platform/kalish/13798-additional-obx-mappings

---------

Co-authored-by: Jack Wang <jack.wang@focusconsulting.io>

* Update to TX file name template (#14358)

* 13436 - e2e documentation (#14352)

* 13436 - e2e documentation

* 13436 - renamed file.

* Updated index flyway script to create index if not exists (#14359)

* Bump bridgecrewio/checkov-action from 12.2735.0 to 12.2743.0 (#14382)

Bumps [bridgecrewio/checkov-action](https://github.com/bridgecrewio/checkov-action) from 12.2735.0 to 12.2743.0.
- [Release notes](https://github.com/bridgecrewio/checkov-action/releases)
- [Commits](https://github.com/bridgecrewio/checkov-action/compare/d2ff2e8b709c5b32fee78ecbf4dbced14978c7c5...69e494e1b28dc24ec680e7ed364e0c227e2026bf)

---
updated-dependencies:
- dependency-name: bridgecrewio/checkov-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump tj-actions/changed-files from 44.3.0 to 44.4.0 (#14385)

Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files) from 44.3.0 to 44.4.0.
- [Release notes](https://github.com/tj-actions/changed-files/releases)
- [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md)
- [Commits](https://github.com/tj-actions/changed-files/compare/0874344d6ebbaa00a27da73276ae7162fadcaf69...a29e8b565651ce417abb5db7164b4a2ad8b6155c)

---
updated-dependencies:
- dependency-name: tj-actions/changed-files
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump antifree/json-to-variables from 1.1.2 to 1.2.0 (#14384)

Bumps [antifree/json-to-variables](https://github.com/antifree/json-to-variables) from 1.1.2 to 1.2.0.
- [Release notes](https://github.com/antifree/json-to-variables/releases)
- [Changelog](https://github.com/antifree/json-to-variables/blob/main/CHANGELOG.md)
- [Commits](https://github.com/antifree/json-to-variables/compare/fceea3105eb6687f377bf24fc8e6e8e0e4d2945a...8de3c6b94715a24fe65f29640b4e292a4add22a3)

---
updated-dependencies:
- dependency-name: antifree/json-to-variables
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* 14115: further convert cleanup (#14344)

* 14115: add more logging to FHIR Converter and cleanup lineage

* 14115: show action logs from the convert step

* fixup! 14115: show action logs from the convert step

* fixup! 14115: show action logs from the convert step

* fixup! 14115: show action logs from the convert step

* fixup! 14115: show action logs from the convert step

* De-identified schema (#14283)

* added deidentified schema per RADx MARS requirements

* added integration test for deidentified schema

* fix for integration test

* update init kv policy

* Bump hashicorp/setup-terraform from 3.1.0 to 3.1.1 (#14334)

Bumps [hashicorp/setup-terraform](https://github.com/hashicorp/setup-terraform) from 3.1.0 to 3.1.1.
- [Release notes](https://github.com/hashicorp/setup-terraform/releases)
- [Changelog](https://github.com/hashicorp/setup-terraform/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hashicorp/setup-terraform/compare/97f030cf6dc0b4f5e0da352c7bca9cca34579800...651471c36a6092792c552e8b1bef71e592b462d8)

---
updated-dependencies:
- dependency-name: hashicorp/setup-terraform
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Stephen Nesman <94193373+snesm@users.noreply.github.com>

* Bump bridgecrewio/checkov-action from 12.2743.0 to 12.2744.0 (#14403)

Bumps [bridgecrewio/checkov-action](https://github.com/bridgecrewio/checkov-action) from 12.2743.0 to 12.2744.0.
- [Release notes](https://github.com/bridgecrewio/checkov-action/releases)
- [Commits](https://github.com/bridgecrewio/checkov-action/compare/69e494e1b28dc24ec680e7ed364e0c227e2026bf...ea0fbea17e084215b9191c1e8ad4c6effe2328e8)

---
updated-dependencies:
- dependency-name: bridgecrewio/checkov-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump MeilCli/slack-upload-file from 4.0.6 to 4.0.7 (#14402)

Bumps [MeilCli/slack-upload-file](https://github.com/meilcli/slack-upload-file) from 4.0.6 to 4.0.7.
- [Release notes](https://github.com/meilcli/slack-upload-file/releases)
- [Commits](https://github.com/meilcli/slack-upload-file/compare/44b8c5399b7fc13ac6220637a38b8df1634c3560...a850fc43d6edcc8e3e7731a69455c72f5ba46f0f)

---
updated-dependencies:
- dependency-name: MeilCli/slack-upload-file
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* 13538: send original filename format report_id-original_name (#14400)

* add tests to gitleaks allow

* Add Mars OTC ELR scenarios to E2E UP Test (#14360)

* Adding mars otc topic scenario to e2e test

* Catching HAPI exceptions

* Adding Mars FHIR scenarios

* updating e2e test in a few spots

* self review changes

* summarize items per user

* fix missing authors

* Platform/angela/14257/circular json (#14406)

Fix for circular json

* 14393 - E2E tests for the MessageID Search page (#14407)

* 13436 - e2e documentation

* 14393 - E2E tests for the MessageID Search page

* 14110: add validation service (#14388)

* Remove obsolete checkov skipped alerts (#14411)

* Remove obsolete checkov skipped alerts

* adjust stale items formatting

* condense on call alerts

* Bump actions/checkout from 4.1.5 to 4.1.6 (#14417)

Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.5 to 4.1.6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://gi…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
platform Platform Team
Projects
Development

Successfully merging this pull request may close these issues.

Create Performant End-to-End UP Tests
4 participants