From a3448d96acb0f7ec540a8a645647493f29ceae03 Mon Sep 17 00:00:00 2001 From: Phanindra Srungavarapu Date: Mon, 9 Sep 2024 13:40:48 +0530 Subject: [PATCH 1/4] chore: release notes for 1.32.0 Jira https://smartbear.atlassian.net/browse/PACT-2433 --- scripts/release/release-notes-onprem.sh | 4 +++- .../docs/docs/on-premises/releases/1.32.0.md | 22 +++++++++++++++++++ .../notices/2024-09-09-on-premises-1.32.0.md | 8 +++++++ website/sidebars.js | 1 + 4 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 website/docs/docs/on-premises/releases/1.32.0.md create mode 100644 website/notices/2024-09-09-on-premises-1.32.0.md diff --git a/scripts/release/release-notes-onprem.sh b/scripts/release/release-notes-onprem.sh index 0dafd6c3..f8e45d25 100755 --- a/scripts/release/release-notes-onprem.sh +++ b/scripts/release/release-notes-onprem.sh @@ -96,6 +96,7 @@ docker pull $ONPREM_PROD_IMAGE >/dev/null 2>&1 PROD_TAG=$(docker inspect $ONPREM_PROD_IMAGE | jq -r '.[0].Config.Env[] | select(startswith("PACTFLOW_GIT_SHA="))' | cut -d "=" -f2) +echo "PROD_TAG is $PROD_TAG" if [ -z ${DEV_TAG} ]; then DEV_TAG="HEAD" fi @@ -125,7 +126,8 @@ if [ -n "$IS_RELEASE" ]; then --user "$JIRA_AUTH" \ --header 'Accept: application/json' \ --header 'Content-Type: application/json' \ - --data "${payload_version}") + --data "${payload_version}" + ) echo "create version response is $response" error_message=$(echo $response | jq '.errorMessages') if [ "$error_message" != "null" ]; then diff --git a/website/docs/docs/on-premises/releases/1.32.0.md b/website/docs/docs/on-premises/releases/1.32.0.md new file mode 100644 index 00000000..75308221 --- /dev/null +++ b/website/docs/docs/on-premises/releases/1.32.0.md @@ -0,0 +1,22 @@ +--- +title: 1.32.0 +--- + +## Release date + +09 September 2024 + +## Features + +N/A + +## Fixes + +* fixed the situation when a consumer provider pair has both OAS and traditional pact containing both HTTP and message interactions and message interactions take more time to get verified by adding a new Message Verification Mission reason. +* added swagger hub policy with contract data read permission for swagger hub pactflow integration + +## Migration notes + +N/A + + diff --git a/website/notices/2024-09-09-on-premises-1.32.0.md b/website/notices/2024-09-09-on-premises-1.32.0.md new file mode 100644 index 00000000..90238771 --- /dev/null +++ b/website/notices/2024-09-09-on-premises-1.32.0.md @@ -0,0 +1,8 @@ +--- +slug: 2024-09-09-on-premises-1.32.0 +title: On-premises release v1.32.0 +tags: [on-premises, release] +--- + +A new PactFlow on-premises release (1.32.0) is now available ([see details](/docs/on-premises/releases/1.32.0)). + diff --git a/website/sidebars.js b/website/sidebars.js index 7cee6139..31692128 100644 --- a/website/sidebars.js +++ b/website/sidebars.js @@ -427,6 +427,7 @@ module.exports = { label: 'Releases', items: [ //on-prem-release-placeholder + 'docs/on-premises/releases/1.32.0', 'docs/on-premises/releases/1.31.0', 'docs/on-premises/releases/1.30.0', 'docs/on-premises/releases/1.29.0', From f509b6fcda71b6f5a57e2a84341eacd5fa3f9217 Mon Sep 17 00:00:00 2001 From: phanindra srungavarapu Date: Mon, 9 Sep 2024 13:50:10 +0530 Subject: [PATCH 2/4] Update website/docs/docs/on-premises/releases/1.32.0.md Co-authored-by: Matt Fellows <53900+mefellows@users.noreply.github.com> --- website/docs/docs/on-premises/releases/1.32.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/on-premises/releases/1.32.0.md b/website/docs/docs/on-premises/releases/1.32.0.md index 75308221..23345313 100644 --- a/website/docs/docs/on-premises/releases/1.32.0.md +++ b/website/docs/docs/on-premises/releases/1.32.0.md @@ -12,7 +12,7 @@ N/A ## Fixes -* fixed the situation when a consumer provider pair has both OAS and traditional pact containing both HTTP and message interactions and message interactions take more time to get verified by adding a new Message Verification Mission reason. +* fixed the situation when a consumer-provider pair has both an OAS and traditional pact containing both HTTP and message interactions. Message interactions that haven't been validated at comparison time or when `can-i-deploy` is called, returns a new Message Verification Missing reason. * added swagger hub policy with contract data read permission for swagger hub pactflow integration ## Migration notes From 120427e5b0306d4be9fe26ddb4ec2cc61d7ca452 Mon Sep 17 00:00:00 2001 From: Phanindra Srungavarapu Date: Mon, 9 Sep 2024 13:51:48 +0530 Subject: [PATCH 3/4] fix: removed swagger hub related notes --- website/docs/docs/on-premises/releases/1.32.0.md | 1 - 1 file changed, 1 deletion(-) diff --git a/website/docs/docs/on-premises/releases/1.32.0.md b/website/docs/docs/on-premises/releases/1.32.0.md index 23345313..4c917efd 100644 --- a/website/docs/docs/on-premises/releases/1.32.0.md +++ b/website/docs/docs/on-premises/releases/1.32.0.md @@ -13,7 +13,6 @@ N/A ## Fixes * fixed the situation when a consumer-provider pair has both an OAS and traditional pact containing both HTTP and message interactions. Message interactions that haven't been validated at comparison time or when `can-i-deploy` is called, returns a new Message Verification Missing reason. -* added swagger hub policy with contract data read permission for swagger hub pactflow integration ## Migration notes From e7977fabc662db5cd02a2e89e8bb67aab706274a Mon Sep 17 00:00:00 2001 From: Phanindra Srungavarapu Date: Mon, 9 Sep 2024 14:01:20 +0530 Subject: [PATCH 4/4] fix: add vulnerabilities list to release notes --- website/docs/docs/on-premises/releases/1.32.0.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/website/docs/docs/on-premises/releases/1.32.0.md b/website/docs/docs/on-premises/releases/1.32.0.md index 4c917efd..9ff3dcc1 100644 --- a/website/docs/docs/on-premises/releases/1.32.0.md +++ b/website/docs/docs/on-premises/releases/1.32.0.md @@ -13,6 +13,10 @@ N/A ## Fixes * fixed the situation when a consumer-provider pair has both an OAS and traditional pact containing both HTTP and message interactions. Message interactions that haven't been validated at comparison time or when `can-i-deploy` is called, returns a new Message Verification Missing reason. +* Fixed vulnerability GHSA-4xqq-m2hx-25v8 ( rexml ) +* Fixed vulnerability GHSA-vg3r-rm7w-2xgh ( rexml ) +* Fixed vulnerability GHSA-vmwr-mc7x-5vc3 ( rexml ) +* Fixed vulnerability CVE-2024-6119 ( openssl-dev, libssl-dev, libcrypto3 ) ## Migration notes