Skip to content

Commit

Permalink
Merge pull request #300 from pactflow/release/1.32.0
Browse files Browse the repository at this point in the history
chore: release notes for 1.32.0
  • Loading branch information
pahnin authored Sep 9, 2024
2 parents 34d1ba0 + e7977fa commit 230f46b
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/release/release-notes-onprem.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
25 changes: 25 additions & 0 deletions website/docs/docs/on-premises/releases/1.32.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
title: 1.32.0
---

## Release date

09 September 2024

## Features

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

N/A


8 changes: 8 additions & 0 deletions website/notices/2024-09-09-on-premises-1.32.0.md
Original file line number Diff line number Diff line change
@@ -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)).

1 change: 1 addition & 0 deletions website/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 230f46b

Please sign in to comment.