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-2240 Un-parsable date fix #939

Merged
merged 7 commits into from
Jan 14, 2023
Merged

MCP-2240 Un-parsable date fix #939

merged 7 commits into from
Jan 14, 2023

Conversation

jbregstone
Copy link
Contributor

What was the problem?

If the code to parse a date failed then the date we show on the PDF was set to an empty string.

Associated tickets or Slack threads:

How does this fix it?1

In the case of an un-parsable date it is passed directly to the PDF without being parsed

How to test this PR

  • Step 1
  • Step 22

Footnotes

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

  2. To check if a PR will succeed in the SecRel workflow, test PRs in the SecRel pipeline.

@anthonyvelazquez
Copy link
Contributor

So we will need to change the date to something like unknown-{date}. Passing the date as it is, I won't know if I need to fill in the table cell with No associated date / Non-confident date {date} or if I should just display the date. Maybe adding a prefix/suffix or passing an additional field that lets me know its a bad date?

@anthonyvelazquez
Copy link
Contributor

Wait, I can do the parse on my side if needed or should we keep that logic in your service?

@jbregstone
Copy link
Contributor Author

jbregstone commented Jan 13, 2023

Passing the date as it is, I won't know if I need to fill in the table cell with No associated date / Non-confident date {date} or if I should just display the date.

I see that could be an issue. If it simplifies things, then we could move the parsing to the PDF side. I thought it would be better to have it in here since the code is already going through and reading each date. I could change dateformatted to start with with the string "unparsed". In the pdf service it could check if the dateformatted starts with that string and then handle the case accordingly. Keep in mind this is an edge case so I want to minimize designing around it.

@anthonyvelazquez
Copy link
Contributor

Since you already have the logic on your side, I think just passing unparsed is fine. I have helper functions for each code so I'll add that logic on my side in there so it doesnt affect future PDFs

@jbregstone
Copy link
Contributor Author

jbregstone commented Jan 13, 2023

The four cases to account for in the pdf helper logic:

  1. If there is no date at all -> dateFormatted is an empty string
  2. If there is well formatted date -> dateFormatted looks like 04/06/1950
  3. If there is a date but its empty -> dateFormatted is 'unparsed ()`
  4. if there is a poorly formatted date (like "1999/m/d")-> dateFormatted is 'unparsed (1999/m/d)'

@au2 au2 self-requested a review January 14, 2023 00:58
@au2 au2 merged commit 720b13f into develop Jan 14, 2023
@au2 au2 deleted the 2240-date branch January 14, 2023 22:39
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.

3 participants