From a9473d190ddbe9277c16b1b0631420ae0019420c Mon Sep 17 00:00:00 2001 From: wkrop Date: Thu, 20 Jul 2023 14:45:01 +0200 Subject: [PATCH] v1.7.2 - release --- README.md | 14 +++++++------- docs/releases/releases.md | 4 ++++ docs/releases/v1.7.2.md | 34 ++++++++++++++++++++++++++++++++++ pkg/version/version.go | 4 ++-- 4 files changed, 47 insertions(+), 9 deletions(-) create mode 100644 docs/releases/v1.7.2.md diff --git a/README.md b/README.md index f7e72993..c7fd1003 100644 --- a/README.md +++ b/README.md @@ -17,16 +17,16 @@ To provide feedback, please see the [CONTRIBUTING.md](CONTRIBUTING.md). ## Release Notes * * * -# Release v1.7.1 (4th October 2022) +# Release v1.7.2 (20th July 2023) -The release is called **v1.7.1**, an update to provide a unit test fix, add a change to VRP manifest and swagger. +The release is called **v1.7.2**, an update to add changes to manifests, add v3.1.11 support, add new assertion type - last_if_all. -[Full Release Notes](./docs/releases/v1.7.1.md) +[Full Release Notes](./docs/releases/v1.7.2.md) --- **Download**: -`docker run --rm -it -p 127.0.0.1:8443:8443 "openbanking/conformance-suite:v1.7.1"` | +`docker run --rm -it -p 127.0.0.1:8443:8443 "openbanking/conformance-suite:v1.7.2"` | [DockerHub](https://hub.docker.com/r/openbanking/conformance-suite) | [Setup Guide](https://github.com/OpenBankingUK/conformance-suite/blob/develop/docs/setup-guide.md) --- @@ -36,9 +36,9 @@ The release is called **v1.7.1**, an update to provide a unit test fix, add a ch | Release | Standard version | | ------------- |:-----------------:| +| v1.7.2 | v3.1.11 | | v1.7.0 | v3.1.10 | | v1.6.12 | v3.1.9 | -| v1.6.10 | v3.1.8 | ## Quickstart @@ -46,11 +46,11 @@ The release is called **v1.7.1**, an update to provide a unit test fix, add a ch Pull and run the latest (stable) tagged Docker image: - > docker run --rm -it -p 127.0.0.1:8443:8443 "openbanking/conformance-suite:v1.7.1" + > docker run --rm -it -p 127.0.0.1:8443:8443 "openbanking/conformance-suite:v1.7.2" or - > docker run --rm -it -p 8443:8443 "openbanking/conformance-suite:v1.7.1" + > docker run --rm -it -p 8443:8443 "openbanking/conformance-suite:v1.7.2" [See Setup Guide](https://github.com/OpenBankingUK/conformance-suite/blob/develop/docs/setup-guide.md) diff --git a/docs/releases/releases.md b/docs/releases/releases.md index 22ccd03a..cbd2490a 100644 --- a/docs/releases/releases.md +++ b/docs/releases/releases.md @@ -1,5 +1,9 @@ # Release history +# Release v1.7.1 (20th July 2023) + +The release is called **v1.7.2**, an update to add changes to manifests, add v3.1.11 support, add new assertion type - last_if_all. + # Release v1.7.1 (4th October 2022) The release is called **v1.7.1**, an update to provide a unit test fix, add a change to VRP manifest. diff --git a/docs/releases/v1.7.2.md b/docs/releases/v1.7.2.md new file mode 100644 index 00000000..37ddf6ad --- /dev/null +++ b/docs/releases/v1.7.2.md @@ -0,0 +1,34 @@ +# Release v1.7.2 (20th July 2023) + +The release is called **v1.7.2**, an update to provide a unit test fix, add a change to VRP manifest. + +Issues addressed: +- REFAPP-1320 - Add VRPType to VRPRequest +- REFAPP-1321 - Fix incorrect field from ContractPresentInidicator to ContractPresentIndicator +- REFAPP-1322 - Add missing error code for 409 to VRP swagger +- REFAPP-1323 - Disable 200 status code in test case OB-301-VRP-100650 - POST /domestic-vrp-consents/{ConsentId}/funds-confirmation +- REFAPP-1306 - Add missing test cases for GET /accounts/{AccountId}/parties +- REFAPP-1310 - Update test cases GET "/party" - condition from "optional" to "conditional" +- REFAPP-1309 - Add test case for validation - FinalPaymentAmount - domestic standing orders +- REFAPP-1312 - Fix the DateTime query parameter ("fromStatementDateTime") to have milliseconds precision in the below FCS test scenarios: OB-301-STA-106200, OB-301-STA-106100 +- REFAPP-1315 - +Fix the DateTime query parameter ("fromStatementDateTime") from to in OB-301-STA-106000 + + +**Download**: +`docker run --rm -it -p 8443:8443 "openbanking/conformance-suite:v1.7.2"` | +[DockerHub](https://hub.docker.com/r/openbanking/conformance-suite) | +[Setup Guide](https://github.com/OpenBankingUK/conformance-suite/blob/develop/docs/setup-guide.md) +--- + +## Features Overview + +This release provides compatibility with the following versions of the Open Banking Read/Write Data API +Specification *(3.1.11, 3.1.10, 3.1.9, 3.1.8, 3.1.7, 3.1.6, 3.1.5, 3.1.4, 3.1.3, 3.1.2, 3.1.1 and 3.1.0)*. + + +### Help us test the tool + +We've tried to make it easy to provide feedback using the Open Banking Service Desk. We encourage you to use our issue +tracker for reporting problem, so we can address these quickly. Please only use the Open Banking Service Desk to submit +issues related to certification. \ No newline at end of file diff --git a/pkg/version/version.go b/pkg/version/version.go index b1555769..d5341796 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -21,10 +21,10 @@ const ( // Checker must conform to the format expected, major, minor and patch. // @NEW-SPEC-RELEASE - make sure new version is accounted for // @NEW-RELEASE - make sure new version is accounted for - //v1.7.1 - this comment allows searching + //v1.7.2 - this comment allows searching major = "1" minor = "7" - patch = "1" + patch = "2" //FullVersion - Checker is the full string version of Conformance Suite. FullVersion = major + "." + minor + "." + patch