From 588a08b031b825731abbb42c7935a736ad24bb75 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Oct 2023 09:19:55 -0700 Subject: [PATCH 1/8] Bump jjwt_version from 0.11.5 to 0.12.2 (#2077) * Bump jjwt_version from 0.11.5 to 0.12.2 Bumps `jjwt_version` from 0.11.5 to 0.12.2. Updates `io.jsonwebtoken:jjwt-api` from 0.11.5 to 0.12.2 - [Release notes](https://github.com/jwtk/jjwt/releases) - [Changelog](https://github.com/jwtk/jjwt/blob/master/CHANGELOG.md) - [Commits](https://github.com/jwtk/jjwt/compare/0.11.5...0.12.2) Updates `io.jsonwebtoken:jjwt-impl` from 0.11.5 to 0.12.2 - [Release notes](https://github.com/jwtk/jjwt/releases) - [Changelog](https://github.com/jwtk/jjwt/blob/master/CHANGELOG.md) - [Commits](https://github.com/jwtk/jjwt/compare/0.11.5...0.12.2) Updates `io.jsonwebtoken:jjwt-jackson` from 0.11.5 to 0.12.2 --- updated-dependencies: - dependency-name: io.jsonwebtoken:jjwt-api dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: io.jsonwebtoken:jjwt-impl dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: io.jsonwebtoken:jjwt-jackson dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * fix compile error * fix test error * fix test error * run spotless --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mason Watson --- svc-bip-api/build.gradle | 2 +- .../gov/va/vro/bip/service/BipApiProps.java | 17 ++++++++++------- .../gov/va/vro/bip/service/BipApiService.java | 9 ++++----- svc-lighthouse-api/build.gradle | 2 +- 4 files changed, 16 insertions(+), 14 deletions(-) diff --git a/svc-bip-api/build.gradle b/svc-bip-api/build.gradle index e23f689dbf..becdcf922a 100644 --- a/svc-bip-api/build.gradle +++ b/svc-bip-api/build.gradle @@ -20,7 +20,7 @@ dependencies { implementation "com.fasterxml.jackson.core:jackson-core" implementation "com.fasterxml.jackson.core:jackson-databind" - def jjwt_version="0.11.5" + def jjwt_version="0.12.2" implementation "io.jsonwebtoken:jjwt-api:${jjwt_version}" implementation "io.jsonwebtoken:jjwt-impl:${jjwt_version}" implementation "io.jsonwebtoken:jjwt-jackson:${jjwt_version}" diff --git a/svc-bip-api/src/main/java/gov/va/vro/bip/service/BipApiProps.java b/svc-bip-api/src/main/java/gov/va/vro/bip/service/BipApiProps.java index 6e0edec0cf..d7efbfb498 100644 --- a/svc-bip-api/src/main/java/gov/va/vro/bip/service/BipApiProps.java +++ b/svc-bip-api/src/main/java/gov/va/vro/bip/service/BipApiProps.java @@ -1,6 +1,7 @@ package gov.va.vro.bip.service; import io.jsonwebtoken.Claims; +import io.jsonwebtoken.ClaimsBuilder; import io.jsonwebtoken.Jwts; import lombok.Getter; import lombok.Setter; @@ -48,13 +49,15 @@ public Claims toCommonJwtClaims() { Calendar cal = Calendar.getInstance(); cal.add(Calendar.MINUTE, 30); Date expired = cal.getTime(); - Claims claims = Jwts.claims(); - claims.put("applicationID", applicationId); - claims.put("stationID", stationId); - claims.put("userID", claimClientId); + ClaimsBuilder claimsBuilder = + Jwts.claims() + .add("applicationID", applicationId) + .add("stationID", stationId) + .add("userID", claimClientId); + Date now = cal.getTime(); - claims.put("iat", now.getTime()); - claims.put("expires", expired.getTime()); - return claims; + claimsBuilder.add("iat", now.getTime()).add("expires", expired.getTime()); + + return claimsBuilder.build(); } } diff --git a/svc-bip-api/src/main/java/gov/va/vro/bip/service/BipApiService.java b/svc-bip-api/src/main/java/gov/va/vro/bip/service/BipApiService.java index dabcbf0ffa..14dc8cddb3 100644 --- a/svc-bip-api/src/main/java/gov/va/vro/bip/service/BipApiService.java +++ b/svc-bip-api/src/main/java/gov/va/vro/bip/service/BipApiService.java @@ -9,10 +9,7 @@ import gov.va.vro.bip.model.ClaimContention; import gov.va.vro.bip.model.ClaimStatus; import gov.va.vro.bip.model.UpdateContentionReq; -import io.jsonwebtoken.Claims; -import io.jsonwebtoken.Header; -import io.jsonwebtoken.Jwts; -import io.jsonwebtoken.SignatureAlgorithm; +import io.jsonwebtoken.*; import lombok.NonNull; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; @@ -221,7 +218,9 @@ String createJwt() throws BipException { Map headerType = new HashMap<>(); headerType.put("typ", Header.JWT_TYPE); - claims.put("iss", bipApiProps.getClaimIssuer()); + ClaimsBuilder claimsBuilder = + Jwts.claims().add(claims).add("iss", bipApiProps.getClaimIssuer()); + claims = claimsBuilder.build(); byte[] signSecretBytes = bipApiProps.getClaimSecret().getBytes(StandardCharsets.UTF_8); Key signingKey = new SecretKeySpec(signSecretBytes, SignatureAlgorithm.HS256.getJcaName()); diff --git a/svc-lighthouse-api/build.gradle b/svc-lighthouse-api/build.gradle index 049c01f799..fda45b3078 100644 --- a/svc-lighthouse-api/build.gradle +++ b/svc-lighthouse-api/build.gradle @@ -20,7 +20,7 @@ dependencies { implementation 'org.bouncycastle:bcprov-jdk18on:1.74' implementation 'org.apache.commons:commons-lang3:3.13.0' - def jjwt_version="0.11.5" + def jjwt_version="0.12.2" implementation "io.jsonwebtoken:jjwt-api:${jjwt_version}" implementation "io.jsonwebtoken:jjwt-impl:${jjwt_version}" implementation "io.jsonwebtoken:jjwt-jackson:${jjwt_version}" From c9bff4485899c9a5729e8db0b10549c7734153ff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Oct 2023 09:20:57 -0700 Subject: [PATCH 2/8] Bump io.freefair.lombok:io.freefair.lombok.gradle.plugin from 8.3 to 8.4 (#2082) Bumps io.freefair.lombok:io.freefair.lombok.gradle.plugin from 8.3 to 8.4. --- updated-dependencies: - dependency-name: io.freefair.lombok:io.freefair.lombok.gradle.plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- gradle-plugins/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle-plugins/build.gradle b/gradle-plugins/build.gradle index c212fc7366..9608b944a4 100644 --- a/gradle-plugins/build.gradle +++ b/gradle-plugins/build.gradle @@ -17,7 +17,7 @@ dependencies { // Set versions for these plugins so we don't have to repeat the versions in convention.gradle files // https://discuss.gradle.org/t/applying-a-plugin-version-inside-a-convention-plugin/42160 // Syntax: ":.gradle.plugin:" - implementation 'io.freefair.lombok:io.freefair.lombok.gradle.plugin:8.3' + implementation 'io.freefair.lombok:io.freefair.lombok.gradle.plugin:8.4' implementation 'com.diffplug.spotless:com.diffplug.spotless.gradle.plugin:6.22.0' implementation 'com.felipefzdz.gradle.shellcheck:com.felipefzdz.gradle.shellcheck.gradle.plugin:1.4.6' implementation 'com.palantir.docker:com.palantir.docker.gradle.plugin:0.35.0' From 043c29d2b28cde3671c2c59f52e0ae7a29632830 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Oct 2023 09:31:24 -0700 Subject: [PATCH 3/8] Bump org.bouncycastle:bcprov-jdk18on from 1.74 to 1.76 (#2081) Bumps [org.bouncycastle:bcprov-jdk18on](https://github.com/bcgit/bc-java) from 1.74 to 1.76. - [Changelog](https://github.com/bcgit/bc-java/blob/main/docs/releasenotes.html) - [Commits](https://github.com/bcgit/bc-java/commits) --- updated-dependencies: - dependency-name: org.bouncycastle:bcprov-jdk18on dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- svc-lighthouse-api/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svc-lighthouse-api/build.gradle b/svc-lighthouse-api/build.gradle index fda45b3078..407377fe1f 100644 --- a/svc-lighthouse-api/build.gradle +++ b/svc-lighthouse-api/build.gradle @@ -17,7 +17,7 @@ dependencies { implementation "ca.uhn.hapi.fhir:hapi-fhir-base:${hapi_fhir_version}" implementation "ca.uhn.hapi.fhir:hapi-fhir-server-openapi:${hapi_fhir_version}" - implementation 'org.bouncycastle:bcprov-jdk18on:1.74' + implementation 'org.bouncycastle:bcprov-jdk18on:1.76' implementation 'org.apache.commons:commons-lang3:3.13.0' def jjwt_version="0.12.2" From eeaecc246cd9d28ba66ca9a6c68a3a63ade26ab0 Mon Sep 17 00:00:00 2001 From: Cheng <89034346+chengjie8@users.noreply.github.com> Date: Wed, 11 Oct 2023 15:02:17 -0400 Subject: [PATCH 4/8] Modified DORA lead time workflow (#2094) * minor change * added some comments --- .../workflows/dora-lead-time-for-changes.yml | 165 ++++++++++++++++-- 1 file changed, 155 insertions(+), 10 deletions(-) diff --git a/.github/workflows/dora-lead-time-for-changes.yml b/.github/workflows/dora-lead-time-for-changes.yml index ca59581916..a067e06064 100644 --- a/.github/workflows/dora-lead-time-for-changes.yml +++ b/.github/workflows/dora-lead-time-for-changes.yml @@ -1,9 +1,6 @@ ###################### DO NOT DELETE OR MODIFY THIS FILE ####################### # -# This GitHub Workflow was added to your repository automatically by the -# Lighthouse Delivery Infrastructure's SecRel team. It is required. -# -# It calculates the Lead Time for Changes DORA metric for PRs merged into your +# This workflow calculates the Lead Time for Changes DORA metric for PRs merged into your # default branch. # ###################### DO NOT DELETE OR MODIFY THIS FILE ####################### @@ -15,9 +12,157 @@ on: jobs: calculate-lead-time-for-changes: if: ${{ github.ref_type == 'tag' }} - uses: department-of-veterans-affairs/lighthouse-di-documentation/.github/workflows/dora-lead-time-for-changes.yml@main - secrets: - # The SecRel team maintains a GitHub action that publishes these secrets - # to your repo. Do not delete these secrets from your repo. - DATADOG_API_KEY_FOR_LEAD_TIME_METRIC: ${{ secrets.DATADOG_API_KEY_FOR_LEAD_TIME_METRIC }} - DATADOG_APP_KEY_FOR_LEAD_TIME_METRIC: ${{ secrets.DATADOG_APP_KEY_FOR_LEAD_TIME_METRIC }} + runs-on: ubuntu-latest + steps: + - name: Calculate Lead Time + uses: actions/github-script@v6 + env: + DATADOG_API_KEY_FOR_LEAD_TIME_METRIC: ${{ secrets.DATADOG_API_KEY_FOR_LEAD_TIME_METRIC }} + DATADOG_APP_KEY_FOR_LEAD_TIME_METRIC: ${{ secrets.DATADOG_APP_KEY_FOR_LEAD_TIME_METRIC }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + script: | + const { GITHUB_TOKEN, DATADOG_API_KEY_FOR_LEAD_TIME_METRIC, DATADOG_APP_KEY_FOR_LEAD_TIME_METRIC } = process.env + + if(!DATADOG_API_KEY_FOR_LEAD_TIME_METRIC || !DATADOG_APP_KEY_FOR_LEAD_TIME_METRIC || !GITHUB_TOKEN) { + core.setFailed('DATADOG_API_KEY_FOR_LEAD_TIME_METRIC or DATADOG_APP_KEY_FOR_LEAD_TIME_METRIC or GITHUB_TOKEN is falsy. All must be set.') + process.exit(1) + } + + const millisecondsPerSecond = 1000 + const datadogGuageMetricType = 3 + const datadogSubmitMetricsUrl = 'https://api.ddog-gov.com/api/v2/series' + + const repoName = context?.payload?.repository?.name + if (!repoName) { + core.setFailed('Error: Github context object > context.payload.repository.name not defined. Exiting script.') + process.exit(1) + } + const ghBaseUrl = `https://api.github.com/repos/department-of-veterans-affairs/${repoName}` + + async function doFetch(url, options) { + const response = await fetch(url, options) + return await response.json() + } + + function concatDedupe (newElements, dedupedArray, dedupeByKey) { + for (let newElement of newElements) { + let elementAlreadyInArray = true + elementAlreadyInArray = dedupedArray.find(p => p[dedupeByKey] === newElement[dedupeByKey]) + if (!elementAlreadyInArray) { + dedupedArray.push(newElement) + } + } + return dedupedArray + } + + async function getPulls() { + const githubOptions = { + method: 'GET', + headers: { + Authorization: `bearer ${GITHUB_TOKEN}`, + Accept: 'application/vnd.github+json', + 'X-GitHub-Api-Version': '2022-11-28' + } + } + const tagsData = await doFetch(`${ghBaseUrl}/tags`, githubOptions) + + if (!tagsData || !tagsData.length || tagsData.length < 2) { + core.setFailed('Unable to calculate DORA Lead Time for Changes for PRs between the most recent and second most recent git tags because this repo has less than two git tags.') + process.exit(1) + } + + // Per the requirements in the ticket (API-28959) and the spike ticket (API-28443), + // we *assume* the second element in the array of tags is the second-most recent tag. + const newTag = tagsData[0].name + const previousTag = tagsData[1].name + + core.info(`The new tag is: ${newTag}. The previous tag is: ${previousTag}`) + + const commitsData = await doFetch(`${ghBaseUrl}/compare/${previousTag}...${newTag}`, githubOptions) + + if (!commitsData || !commitsData.commits || !commitsData.commits.length || commitsData.commits.length < 1) { + core.setFailed('Unable to calculate DORA Lead Time for Changes for PRs between the most recent and second most recent git tags because there are no commits between these two tags.') + process.exit(1) + } + + let dedupedPulls = [] + for (let commit of commitsData.commits) { + let pullsData = await doFetch(`${ghBaseUrl}/commits/${commit.sha}/pulls`, githubOptions) + dedupedPulls = concatDedupe(pullsData, dedupedPulls, 'id') + } + + if (!dedupedPulls || !dedupedPulls.length || dedupedPulls.length < 1) { + core.setFailed('Unable to calculate DORA Lead Time for Changes for PRs between the most recent and second most recent git tags because there are no PRs between these two tags.') + process.exit(1) + } + + return dedupedPulls + } + + function calculateAvergeLeadTime(pulls) { + let averageLeadTime = 0 + let mergedPullsCount = 0 + + for (let pull of dedupedPulls) { + if (pull.merged_at === null) { + core.info(`Pull number ${pull.number} was never merged. Skipping...`) + continue + } + + mergedPullsCount++ + + let millisecondsBetween = new Date().getTime() - new Date(pull.created_at).getTime() + averageLeadTime += Math.round(millisecondsBetween / millisecondsPerSecond) + + core.info(`Lead Time for pull number ${pull.number} is ${Math.round(millisecondsBetween / millisecondsPerSecond)} seconds.`) + } + + if (mergedPullsCount === 0) { + core.setFailed('Unable to calculate DORA Lead Time for Changes for PRs between the most recent and second most recent git tags because there are no merged PRs between these two tags.') + process.exit(1) + } + + return Math.round(averageLeadTime / mergedPullsCount) + } + + async function submitMetrics(averageLeadTime) { + let datadogPostBody = { + series: [ + { + metric: "lead_time_for_changes", + points: [ + { + timestamp: Math.round(new Date().getTime() / millisecondsPerSecond), + value: averageLeadTime + } + ], + type: datadogGuageMetricType, + "tags": [ `repo_name:${repoName}` ], + "unit": "second" + } + ] + } + + let datadogOptions = { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + 'DD-API-KEY': DATADOG_API_KEY_FOR_LEAD_TIME_METRIC, + 'DD-APPLICATION-KEY': DATADOG_APP_KEY_FOR_LEAD_TIME_METRIC + }, + body: JSON.stringify(datadogPostBody), + } + + const datadogData = await doFetch(datadogSubmitMetricsUrl, datadogOptions) + core.info('Datadog metric submission response body is:') + core.info(JSON.stringify(datadogData, null, 2)) + } + + const dedupedPulls = await getPulls() + + const averageLeadTime = calculateAvergeLeadTime(dedupedPulls) + + core.info(`Average Lead Time of the merged PRs is ${averageLeadTime} seconds.`) + + await submitMetrics(averageLeadTime) From eb9ec7f53b4c8ab5cf8a96367fc0b71eb552b658 Mon Sep 17 00:00:00 2001 From: runner Date: Wed, 11 Oct 2023 19:06:16 +0000 Subject: [PATCH 5/8] Release version: 3.5.1 --- helm/api-gateway/Chart.yaml | 2 +- helm/domain-cc/Chart.yaml | 2 +- helm/domain-ee/Chart.yaml | 2 +- helm/platform/Chart.yaml | 2 +- helm/svc-bgs-api/Chart.yaml | 2 +- helm/svc-lighthouse-api/Chart.yaml | 2 +- helm/vro-app/Chart.yaml | 2 +- versions.txt | 1 + 8 files changed, 8 insertions(+), 7 deletions(-) diff --git a/helm/api-gateway/Chart.yaml b/helm/api-gateway/Chart.yaml index 28533275a2..ae4db12350 100644 --- a/helm/api-gateway/Chart.yaml +++ b/helm/api-gateway/Chart.yaml @@ -16,4 +16,4 @@ version: 0.2.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. # This field is informational, and has no impact on chart version calculations. -appVersion: "3.5.0" +appVersion: "3.5.1" diff --git a/helm/domain-cc/Chart.yaml b/helm/domain-cc/Chart.yaml index 340caac54a..d91a6e91e2 100644 --- a/helm/domain-cc/Chart.yaml +++ b/helm/domain-cc/Chart.yaml @@ -16,4 +16,4 @@ version: 0.2.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. # This field is informational, and has no impact on chart version calculations. -appVersion: "3.5.0" +appVersion: "3.5.1" diff --git a/helm/domain-ee/Chart.yaml b/helm/domain-ee/Chart.yaml index 00b9c9229a..5268c97855 100644 --- a/helm/domain-ee/Chart.yaml +++ b/helm/domain-ee/Chart.yaml @@ -16,4 +16,4 @@ version: 0.2.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. # This field is informational, and has no impact on chart version calculations. -appVersion: "3.5.0" +appVersion: "3.5.1" diff --git a/helm/platform/Chart.yaml b/helm/platform/Chart.yaml index fc507525de..2d032ca1bc 100644 --- a/helm/platform/Chart.yaml +++ b/helm/platform/Chart.yaml @@ -21,7 +21,7 @@ version: 0.2.0 # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "3.5.0" +appVersion: "3.5.1" # https://levelup.gitconnected.com/helm-data-sharing-between-parent-and-child-chart-c4487a452d4e dependencies: diff --git a/helm/svc-bgs-api/Chart.yaml b/helm/svc-bgs-api/Chart.yaml index f72b90423a..e99124df34 100644 --- a/helm/svc-bgs-api/Chart.yaml +++ b/helm/svc-bgs-api/Chart.yaml @@ -16,4 +16,4 @@ version: 0.1.3 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. # This field is informational, and has no impact on chart version calculations. -appVersion: "3.5.0" +appVersion: "3.5.1" diff --git a/helm/svc-lighthouse-api/Chart.yaml b/helm/svc-lighthouse-api/Chart.yaml index 81fdf28645..2d7715c570 100644 --- a/helm/svc-lighthouse-api/Chart.yaml +++ b/helm/svc-lighthouse-api/Chart.yaml @@ -16,4 +16,4 @@ version: 0.1.3 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. # This field is informational, and has no impact on chart version calculations. -appVersion: "3.5.0" +appVersion: "3.5.1" diff --git a/helm/vro-app/Chart.yaml b/helm/vro-app/Chart.yaml index b2232e2d0e..3e9096a608 100644 --- a/helm/vro-app/Chart.yaml +++ b/helm/vro-app/Chart.yaml @@ -16,4 +16,4 @@ version: 0.2.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. # This field is informational, and has no impact on chart version calculations. -appVersion: "3.5.0" +appVersion: "3.5.1" diff --git a/versions.txt b/versions.txt index 3ecdac5ddc..113a268a76 100644 --- a/versions.txt +++ b/versions.txt @@ -26,3 +26,4 @@ v3.4.19 v3.4.20 v3.4.21 v3.5.0 +v3.5.1 From 718fa84a882ba2283807518bd7403af46554520e Mon Sep 17 00:00:00 2001 From: VRO Machine User Date: Wed, 11 Oct 2023 19:06:17 +0000 Subject: [PATCH 6/8] Automated commit: Pin versions of unpinned images --- scripts/image_versions.src | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/scripts/image_versions.src b/scripts/image_versions.src index a9cb316d18..2773012cb0 100644 --- a/scripts/image_versions.src +++ b/scripts/image_versions.src @@ -35,3 +35,13 @@ # Fri Sep 29 16:52:44 UTC 2023 -- v3.4.20 # Fri Sep 29 17:50:35 UTC 2023 -- v3.4.21 # Mon Oct 2 20:38:20 UTC 2023 -- v3.5.0 +# Wed Oct 11 19:06:17 UTC 2023 -- v3.5.1 +postgres_VER="v3.5.1" +apigateway_VER="v3.5.1" +app_VER="v3.5.1" +dbinit_VER="v3.5.1" +svclighthouseapi_VER="v3.5.1" +svcbiekafka_VER="v3.5.1" +xampleworkflows_VER="v3.5.1" +ccapp_VER="v3.5.1" +eemaxcfiapp_VER="v3.5.1" From 3e2880259d1c03428caca80d48e6a77191e64b2b Mon Sep 17 00:00:00 2001 From: runner Date: Thu, 12 Oct 2023 16:21:59 +0000 Subject: [PATCH 7/8] Release version: 3.5.2 --- helm/api-gateway/Chart.yaml | 2 +- helm/domain-cc/Chart.yaml | 2 +- helm/domain-ee/Chart.yaml | 2 +- helm/platform/Chart.yaml | 2 +- helm/svc-bgs-api/Chart.yaml | 2 +- helm/svc-lighthouse-api/Chart.yaml | 2 +- helm/vro-app/Chart.yaml | 2 +- versions.txt | 1 + 8 files changed, 8 insertions(+), 7 deletions(-) diff --git a/helm/api-gateway/Chart.yaml b/helm/api-gateway/Chart.yaml index ae4db12350..5ef6065ec2 100644 --- a/helm/api-gateway/Chart.yaml +++ b/helm/api-gateway/Chart.yaml @@ -16,4 +16,4 @@ version: 0.2.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. # This field is informational, and has no impact on chart version calculations. -appVersion: "3.5.1" +appVersion: "3.5.2" diff --git a/helm/domain-cc/Chart.yaml b/helm/domain-cc/Chart.yaml index d91a6e91e2..07c4be62a4 100644 --- a/helm/domain-cc/Chart.yaml +++ b/helm/domain-cc/Chart.yaml @@ -16,4 +16,4 @@ version: 0.2.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. # This field is informational, and has no impact on chart version calculations. -appVersion: "3.5.1" +appVersion: "3.5.2" diff --git a/helm/domain-ee/Chart.yaml b/helm/domain-ee/Chart.yaml index 5268c97855..add7a19e25 100644 --- a/helm/domain-ee/Chart.yaml +++ b/helm/domain-ee/Chart.yaml @@ -16,4 +16,4 @@ version: 0.2.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. # This field is informational, and has no impact on chart version calculations. -appVersion: "3.5.1" +appVersion: "3.5.2" diff --git a/helm/platform/Chart.yaml b/helm/platform/Chart.yaml index 2d032ca1bc..26b90d8f82 100644 --- a/helm/platform/Chart.yaml +++ b/helm/platform/Chart.yaml @@ -21,7 +21,7 @@ version: 0.2.0 # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "3.5.1" +appVersion: "3.5.2" # https://levelup.gitconnected.com/helm-data-sharing-between-parent-and-child-chart-c4487a452d4e dependencies: diff --git a/helm/svc-bgs-api/Chart.yaml b/helm/svc-bgs-api/Chart.yaml index e99124df34..d0c54c90ea 100644 --- a/helm/svc-bgs-api/Chart.yaml +++ b/helm/svc-bgs-api/Chart.yaml @@ -16,4 +16,4 @@ version: 0.1.3 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. # This field is informational, and has no impact on chart version calculations. -appVersion: "3.5.1" +appVersion: "3.5.2" diff --git a/helm/svc-lighthouse-api/Chart.yaml b/helm/svc-lighthouse-api/Chart.yaml index 2d7715c570..d14df3f290 100644 --- a/helm/svc-lighthouse-api/Chart.yaml +++ b/helm/svc-lighthouse-api/Chart.yaml @@ -16,4 +16,4 @@ version: 0.1.3 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. # This field is informational, and has no impact on chart version calculations. -appVersion: "3.5.1" +appVersion: "3.5.2" diff --git a/helm/vro-app/Chart.yaml b/helm/vro-app/Chart.yaml index 3e9096a608..6fe8f5520a 100644 --- a/helm/vro-app/Chart.yaml +++ b/helm/vro-app/Chart.yaml @@ -16,4 +16,4 @@ version: 0.2.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. # This field is informational, and has no impact on chart version calculations. -appVersion: "3.5.1" +appVersion: "3.5.2" diff --git a/versions.txt b/versions.txt index 113a268a76..265367363b 100644 --- a/versions.txt +++ b/versions.txt @@ -27,3 +27,4 @@ v3.4.20 v3.4.21 v3.5.0 v3.5.1 +v3.5.2 From 9dfa3968d97d57d3641fdec380770aa7868752dd Mon Sep 17 00:00:00 2001 From: VRO Machine User Date: Thu, 12 Oct 2023 16:21:59 +0000 Subject: [PATCH 8/8] Automated commit: Pin versions of unpinned images --- scripts/image_versions.src | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/image_versions.src b/scripts/image_versions.src index 2773012cb0..bf89672314 100644 --- a/scripts/image_versions.src +++ b/scripts/image_versions.src @@ -45,3 +45,4 @@ svcbiekafka_VER="v3.5.1" xampleworkflows_VER="v3.5.1" ccapp_VER="v3.5.1" eemaxcfiapp_VER="v3.5.1" +# Thu Oct 12 16:21:59 UTC 2023 -- v3.5.2