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

MCP-1153 Health Check for Lighthouse Service Container #933

Merged
merged 4 commits into from
Jan 12, 2023

Conversation

au2
Copy link
Contributor

@au2 au2 commented Jan 12, 2023

What was the problem?

There was no health check for lighthouse health api service container.

Associated tickets or Slack threads:

How does this fix it?1

  1. Spring Boot actuator/health end point is enabled
  2. Dockerfile gets a HEALTH CHECK command identical to app except the end point (health vs actuator/health)

Tomcat will run for the service from now on. This was the easiest health check I could find. We can search for a better one later.

How to test this PR

  • Build the application
  • Make sure "docker container ls" lists the lighthouse service as healthy

Footnotes

  1. Pull-Requests guidelines. If PR is significant, update Current Software State wiki page.

@@ -1,7 +1,8 @@
FROM eclipse-temurin:17-jre-alpine
LABEL org.opencontainers.image.source=https://github.com/department-of-veterans-affairs/abd-vro

RUN apk update && apk --no-cache add expat=2.5.0-r0
# hadolint ignore=DL3018
RUN apk update && apk --no-cache add expat=2.5.0-r0 curl

Check failure

Code scanning / Trivy

'RUN <package-manager> update' instruction alone

Artifact: svc-lighthouse-api/src/docker/Dockerfile Type: dockerfile Vulnerability DS017 Severity: HIGH Message: The instruction 'RUN <package-manager> update' should always be followed by '<package-manager> install' in the same RUN statement. Link: [DS017](https://avd.aquasec.com/misconfig/ds017)
@au2 au2 requested a review from dimitri-amida January 12, 2023 14:33
Copy link
Contributor

@dimitri-amida dimitri-amida left a comment

Choose a reason for hiding this comment

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

lgtm

@au2 au2 requested a review from anthonyvelazquez January 12, 2023 17:12
@au2 au2 merged commit bd306f5 into develop Jan 12, 2023
@au2 au2 deleted the feature/MCP-1153-Lighthouse-Svc-Health-Check branch January 12, 2023 17:31
alan-amida added a commit that referenced this pull request Jan 23, 2023
* Fix typo: slackExceptionWebhook (#918)

* MCP-2218 Add category for conditions (#908)

* filter for encounter diagnosis

* add category to condition

* add category to condition

* fix python tests

* add try except

Co-authored-by: julianbregstone <julian>

* Notify Slack when deploy scripts run (#919)

* add notify-slack.src
* have deploy-app,core,db,mq,redis.sh use notify-slack.sh

* Mcp 2009 - update BIP API Service (#910)

* Update BipApiService.

* Change default setting for ENV=dev to BIP UAT instead of mocker service, per Afsin.

Co-authored-by: dimitri-amida <[email protected]>
Co-authored-by: Afsin Ustundag <[email protected]>

* MCP-2123 - Basic sanitization of Request Body JSON input (#912)

* Basic sanitization of Request Body JSON input

* Cleanup

* Consistent Javadocs and clarification for GlobalExceptionHandler

* Fix verbiage from Unallowed to Disallowed

* Add end2endTest for JSON RequestBody sanitizing

* Refactor Pattern.compile to class-level field 2

* Fix typo

* MCP-2233 Python Health Check (#930)

Python healthcheck

* MCP-1153 Health Check for Lighthouse Service Container (#933)

* health check for lighthouse service container

* correct the end point for health check

* eol last line

Co-authored-by: Afsin Ustundag <[email protected]>
Co-authored-by: dimitri-amida <[email protected]>

* Notify deploys in GH Action Slack thread (#924)

* remove GITHUB_ACCESS_TOKEN requirement
* specify SLACK_CHANNEL in case it changes
* remove unnecessary secrets.USERNAME
* remove GITHUB_ACCESS_TOKEN requirement for other deploy-*.sh scripts
* remove extraneous DEPLOY_STATE_TEXT

* Remove references to yoomlam's GH PAT (#925)

* replace secrets.ACCESS_TOKEN with secrets.GITHUB_TOKEN
* revert secrel.yml
* comment out SecRel4's use of secrets.GITHUB_TOKEN

* Ensures that only one deploy per env will run at a time

* Add BIP keystore and truststore, add BIP evidence api test endpoint. (#934)

* Add BIP keystore and truststore, add BIP evidence api test endpoint.

* undo Intellij's change in previous commit.

* Lower the test code coverage for testing the lint-and-test error.

* Reversed the previous code coverage change.

* 1. Add BipFileUploadPayload data values in BipClaimService;
2. Increase app test code coverage by 1%;
3. Reduce BIP related environment variables (TODO notes in scripts/setenv.sh);
4. Adjust deployment.yml to reflect the env variable settings in the cluster.

* Address PR review comments.

* Add empty line at the end, per review comments.

* Adjust BipApiConfigTest to avoid the dependence on ENV variable setup.

Co-authored-by: Afsin Ustundag <[email protected]>

* use an existing role for postgres health check (#938)

Co-authored-by: Afsin Ustundag <[email protected]>

* MCP-2110 PDF Generate + Fetch Queue (#871)

* PDF Generate + Fetch

* update queue

* immediate pdf

Co-authored-by: Afsin Ustundag <[email protected]>
Co-authored-by: dimitri-amida <[email protected]>

* update config merge

* fix port

* management port

* Clean up Helm Chart.yaml files

* ABD-VRO/909: GitHub Actions: Send and attach "Failure" message to deploy workflow Slack message on any error (#922)

* Delay deploy Slack notification to allow notify-push-to-branch to post first

* MCP-2240 Un-parsable date fix  (#939)

* add edge case handler

* add unparsed flag

* cleanup logic

Co-authored-by: julianbregstone <julian>
Co-authored-by: Anthony Velazquez <[email protected]>

* MCP-2230 persist claim (#928)

* MCP-2230: added collectionId

* MCP-2230: persist claim

* MCP-2230: fixed contentions bug

* MCP-2230: spotless

* MCP-2230: added tests

* MCP-2230: removed unused file

* MCP-2230: separate request from processing object

* Bump pytest-mock-resources from 2.6.5 to 2.6.6 (#948)

Bumps [pytest-mock-resources](https://github.com/schireson/pytest-mock-resources) from 2.6.5 to 2.6.6.
- [Release notes](https://github.com/schireson/pytest-mock-resources/releases)
- [Changelog](https://github.com/schireson/pytest-mock-resources/blob/main/CHANGELOG.md)
- [Commits](schireson/pytest-mock-resources@v2.6.5...v2.6.6)

---
updated-dependencies:
- dependency-name: pytest-mock-resources
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

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

* MCP-2245 Update RFD sufficiency logic (#949)

* change number of required readings

* fix tests

* more explicit condition

Co-authored-by: julianbregstone <julian>
Co-authored-by: Anthony Velazquez <[email protected]>

* Bump pytest from 7.2.0 to 7.2.1 (#947)

Bumps [pytest](https://github.com/pytest-dev/pytest) from 7.2.0 to 7.2.1.
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@7.2.0...7.2.1)

---
updated-dependencies:
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

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

* Bump redis from 4.4.1 to 4.4.2 (#946)

Bumps [redis](https://github.com/redis/redis-py) from 4.4.1 to 4.4.2.
- [Release notes](https://github.com/redis/redis-py/releases)
- [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES)
- [Commits](redis/redis-py@v4.4.1...v4.4.2)

---
updated-dependencies:
- dependency-name: redis
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

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

* Bump httpclient from 4.5 to 4.5.14 (#944)

Bumps httpclient from 4.5 to 4.5.14.

---
updated-dependencies:
- dependency-name: org.apache.httpcomponents:httpclient
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

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

* Bump jedis-mock from 1.0.5 to 1.0.6 (#942)

Bumps [jedis-mock](https://github.com/fppt/jedis-mock) from 1.0.5 to 1.0.6.
- [Release notes](https://github.com/fppt/jedis-mock/releases)
- [Commits](fppt/jedis-mock@v1.0.5...v1.0.6)

---
updated-dependencies:
- dependency-name: com.github.fppt:jedis-mock
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

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

* Bump pytz from 2022.7 to 2022.7.1 (#945)

* Bump pytz from 2022.7 to 2022.7.1

Bumps [pytz](https://github.com/stub42/pytz) from 2022.7 to 2022.7.1.
- [Release notes](https://github.com/stub42/pytz/releases)
- [Commits](stub42/pytz@release_2022.7...release_2022.7.1)

---
updated-dependencies:
- dependency-name: pytz
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* merge fix

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Anthony Velazquez <[email protected]>
Co-authored-by: Julian Bregstone <[email protected]>

* add environment variables to service

* MCP-2247: fix NPE in BipClaimService (#951)

* MCP-2247: fix NPE

* MCP-2247: use BipException for consistency

* Mcp 2182 - Fix swagger doc errors (#954)

Fix swagger doc error, MCP-2182, MCP-2263.

* add configs for sandbox

* MCP-2262 Use new PDF endpoint (#961)

* MCP-2247: fix NPE

* MCP-2262: Avoid NPE if no special issues

* MCP-2262: Avoid NPE if no special issues

* MCP-2262: Process PDF using the "instant" version

* MCP-2262: Persist evidence summary

* MCP-2246 Reformat date (#950)

* reformat date

* merge fix

* extract custom date function

* fix tests

* fix format

Co-authored-by: julianbregstone <julian>
Co-authored-by: Anthony Velazquez <[email protected]>

* Mcp 2273 (#964)

* 1. Fix broken endpoints in BIP controller. 2. Add messages to MockBipApiService responses to identify the responses from mocker.

* Fix spotlessJava complaints.

* Removed commented out logs, and old comments.

Co-authored-by: Alan Thompson <[email protected]>

* MCP-2211 Add 400 Bad Request responses to swagger list for MAS (#962)

Add 400 Bad Request responses to swagger list for MAS

Co-authored-by: Alan Thompson <[email protected]>

* Remove temporary values-updated.yaml files

* Bump pytest-mock-resources from 2.6.6 to 2.6.7 (#971)

Bumps [pytest-mock-resources](https://github.com/schireson/pytest-mock-resources) from 2.6.6 to 2.6.7.
- [Release notes](https://github.com/schireson/pytest-mock-resources/releases)
- [Changelog](https://github.com/schireson/pytest-mock-resources/blob/main/CHANGELOG.md)
- [Commits](schireson/pytest-mock-resources@v2.6.6...v2.6.7)

---
updated-dependencies:
- dependency-name: pytest-mock-resources
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

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

* Bump flyway/flyway from 9.11.0-alpine to 9.12.0-alpine in /db-init/src/docker (#969)

Bump flyway/flyway in /db-init/src/docker

Bumps flyway/flyway from 9.11.0-alpine to 9.12.0-alpine.

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

Signed-off-by: dependabot[bot] <[email protected]>

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

* MCP-2223 PDF Documentation (#973)

* documentation

* Update service-python/pdfgenerator/README.md

Co-authored-by: Julian Bregstone <[email protected]>

Co-authored-by: Julian Bregstone <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Yoom Lam <[email protected]>
Co-authored-by: Julian Bregstone <[email protected]>
Co-authored-by: Warren Lin <[email protected]>
Co-authored-by: dimitri-amida <[email protected]>
Co-authored-by: Afsin Ustundag <[email protected]>
Co-authored-by: Anthony Velazquez <[email protected]>
Co-authored-by: Afsin Ustundag <[email protected]>
Co-authored-by: advcoder <[email protected]>
Co-authored-by: Aurora Hampton <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ianwolson <[email protected]>
Co-authored-by: Seth Darr <[email protected]>
alan-amida added a commit that referenced this pull request Jan 26, 2023
* Fix typo: slackExceptionWebhook (#918)

* MCP-2218 Add category for conditions (#908)

* filter for encounter diagnosis

* add category to condition

* add category to condition

* fix python tests

* add try except

Co-authored-by: julianbregstone <julian>

* Notify Slack when deploy scripts run (#919)

* add notify-slack.src
* have deploy-app,core,db,mq,redis.sh use notify-slack.sh

* Mcp 2009 - update BIP API Service (#910)

* Update BipApiService.

* Change default setting for ENV=dev to BIP UAT instead of mocker service, per Afsin.

Co-authored-by: dimitri-amida <[email protected]>
Co-authored-by: Afsin Ustundag <[email protected]>

* MCP-2123 - Basic sanitization of Request Body JSON input (#912)

* Basic sanitization of Request Body JSON input

* Cleanup

* Consistent Javadocs and clarification for GlobalExceptionHandler

* Fix verbiage from Unallowed to Disallowed

* Add end2endTest for JSON RequestBody sanitizing

* Refactor Pattern.compile to class-level field 2

* Fix typo

* MCP-2233 Python Health Check (#930)

Python healthcheck

* MCP-1153 Health Check for Lighthouse Service Container (#933)

* health check for lighthouse service container

* correct the end point for health check

* eol last line

Co-authored-by: Afsin Ustundag <[email protected]>
Co-authored-by: dimitri-amida <[email protected]>

* Notify deploys in GH Action Slack thread (#924)

* remove GITHUB_ACCESS_TOKEN requirement
* specify SLACK_CHANNEL in case it changes
* remove unnecessary secrets.USERNAME
* remove GITHUB_ACCESS_TOKEN requirement for other deploy-*.sh scripts
* remove extraneous DEPLOY_STATE_TEXT

* Remove references to yoomlam's GH PAT (#925)

* replace secrets.ACCESS_TOKEN with secrets.GITHUB_TOKEN
* revert secrel.yml
* comment out SecRel4's use of secrets.GITHUB_TOKEN

* Ensures that only one deploy per env will run at a time

* Add BIP keystore and truststore, add BIP evidence api test endpoint. (#934)

* Add BIP keystore and truststore, add BIP evidence api test endpoint.

* undo Intellij's change in previous commit.

* Lower the test code coverage for testing the lint-and-test error.

* Reversed the previous code coverage change.

* 1. Add BipFileUploadPayload data values in BipClaimService;
2. Increase app test code coverage by 1%;
3. Reduce BIP related environment variables (TODO notes in scripts/setenv.sh);
4. Adjust deployment.yml to reflect the env variable settings in the cluster.

* Address PR review comments.

* Add empty line at the end, per review comments.

* Adjust BipApiConfigTest to avoid the dependence on ENV variable setup.

Co-authored-by: Afsin Ustundag <[email protected]>

* use an existing role for postgres health check (#938)

Co-authored-by: Afsin Ustundag <[email protected]>

* MCP-2110 PDF Generate + Fetch Queue (#871)

* PDF Generate + Fetch

* update queue

* immediate pdf

Co-authored-by: Afsin Ustundag <[email protected]>
Co-authored-by: dimitri-amida <[email protected]>

* update config merge

* fix port

* management port

* Clean up Helm Chart.yaml files

* ABD-VRO/909: GitHub Actions: Send and attach "Failure" message to deploy workflow Slack message on any error (#922)

* Delay deploy Slack notification to allow notify-push-to-branch to post first

* MCP-2240 Un-parsable date fix  (#939)

* add edge case handler

* add unparsed flag

* cleanup logic

Co-authored-by: julianbregstone <julian>
Co-authored-by: Anthony Velazquez <[email protected]>

* MCP-2230 persist claim (#928)

* MCP-2230: added collectionId

* MCP-2230: persist claim

* MCP-2230: fixed contentions bug

* MCP-2230: spotless

* MCP-2230: added tests

* MCP-2230: removed unused file

* MCP-2230: separate request from processing object

* Bump pytest-mock-resources from 2.6.5 to 2.6.6 (#948)

Bumps [pytest-mock-resources](https://github.com/schireson/pytest-mock-resources) from 2.6.5 to 2.6.6.
- [Release notes](https://github.com/schireson/pytest-mock-resources/releases)
- [Changelog](https://github.com/schireson/pytest-mock-resources/blob/main/CHANGELOG.md)
- [Commits](schireson/pytest-mock-resources@v2.6.5...v2.6.6)

---
updated-dependencies:
- dependency-name: pytest-mock-resources
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

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

* MCP-2245 Update RFD sufficiency logic (#949)

* change number of required readings

* fix tests

* more explicit condition

Co-authored-by: julianbregstone <julian>
Co-authored-by: Anthony Velazquez <[email protected]>

* Bump pytest from 7.2.0 to 7.2.1 (#947)

Bumps [pytest](https://github.com/pytest-dev/pytest) from 7.2.0 to 7.2.1.
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@7.2.0...7.2.1)

---
updated-dependencies:
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

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

* Bump redis from 4.4.1 to 4.4.2 (#946)

Bumps [redis](https://github.com/redis/redis-py) from 4.4.1 to 4.4.2.
- [Release notes](https://github.com/redis/redis-py/releases)
- [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES)
- [Commits](redis/redis-py@v4.4.1...v4.4.2)

---
updated-dependencies:
- dependency-name: redis
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

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

* Bump httpclient from 4.5 to 4.5.14 (#944)

Bumps httpclient from 4.5 to 4.5.14.

---
updated-dependencies:
- dependency-name: org.apache.httpcomponents:httpclient
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

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

* Bump jedis-mock from 1.0.5 to 1.0.6 (#942)

Bumps [jedis-mock](https://github.com/fppt/jedis-mock) from 1.0.5 to 1.0.6.
- [Release notes](https://github.com/fppt/jedis-mock/releases)
- [Commits](fppt/jedis-mock@v1.0.5...v1.0.6)

---
updated-dependencies:
- dependency-name: com.github.fppt:jedis-mock
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

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

* Bump pytz from 2022.7 to 2022.7.1 (#945)

* Bump pytz from 2022.7 to 2022.7.1

Bumps [pytz](https://github.com/stub42/pytz) from 2022.7 to 2022.7.1.
- [Release notes](https://github.com/stub42/pytz/releases)
- [Commits](stub42/pytz@release_2022.7...release_2022.7.1)

---
updated-dependencies:
- dependency-name: pytz
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* merge fix

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Anthony Velazquez <[email protected]>
Co-authored-by: Julian Bregstone <[email protected]>

* add environment variables to service

* MCP-2247: fix NPE in BipClaimService (#951)

* MCP-2247: fix NPE

* MCP-2247: use BipException for consistency

* Mcp 2182 - Fix swagger doc errors (#954)

Fix swagger doc error, MCP-2182, MCP-2263.

* add configs for sandbox

* MCP-2262 Use new PDF endpoint (#961)

* MCP-2247: fix NPE

* MCP-2262: Avoid NPE if no special issues

* MCP-2262: Avoid NPE if no special issues

* MCP-2262: Process PDF using the "instant" version

* MCP-2262: Persist evidence summary

* MCP-2246 Reformat date (#950)

* reformat date

* merge fix

* extract custom date function

* fix tests

* fix format

Co-authored-by: julianbregstone <julian>
Co-authored-by: Anthony Velazquez <[email protected]>

* Mcp 2273 (#964)

* 1. Fix broken endpoints in BIP controller. 2. Add messages to MockBipApiService responses to identify the responses from mocker.

* Fix spotlessJava complaints.

* Removed commented out logs, and old comments.

Co-authored-by: Alan Thompson <[email protected]>

* MCP-2211 Add 400 Bad Request responses to swagger list for MAS (#962)

Add 400 Bad Request responses to swagger list for MAS

Co-authored-by: Alan Thompson <[email protected]>

* Remove temporary values-updated.yaml files

* Bump pytest-mock-resources from 2.6.6 to 2.6.7 (#971)

Bumps [pytest-mock-resources](https://github.com/schireson/pytest-mock-resources) from 2.6.6 to 2.6.7.
- [Release notes](https://github.com/schireson/pytest-mock-resources/releases)
- [Changelog](https://github.com/schireson/pytest-mock-resources/blob/main/CHANGELOG.md)
- [Commits](schireson/pytest-mock-resources@v2.6.6...v2.6.7)

---
updated-dependencies:
- dependency-name: pytest-mock-resources
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

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

* Bump flyway/flyway from 9.11.0-alpine to 9.12.0-alpine in /db-init/src/docker (#969)

Bump flyway/flyway in /db-init/src/docker

Bumps flyway/flyway from 9.11.0-alpine to 9.12.0-alpine.

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

Signed-off-by: dependabot[bot] <[email protected]>

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

* MCP-2223 PDF Documentation (#973)

* documentation

* Update service-python/pdfgenerator/README.md

Co-authored-by: Julian Bregstone <[email protected]>

Co-authored-by: Julian Bregstone <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Yoom Lam <[email protected]>
Co-authored-by: Julian Bregstone <[email protected]>
Co-authored-by: Warren Lin <[email protected]>
Co-authored-by: dimitri-amida <[email protected]>
Co-authored-by: Afsin Ustundag <[email protected]>
Co-authored-by: Anthony Velazquez <[email protected]>
Co-authored-by: Afsin Ustundag <[email protected]>
Co-authored-by: advcoder <[email protected]>
Co-authored-by: Aurora Hampton <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: ianwolson <[email protected]>
Co-authored-by: Seth Darr <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants