Skip to content

Commit

Permalink
Merge pull request #60 from OpenBankingUK/release/v1.7.2
Browse files Browse the repository at this point in the history
v1.7.2 - release
  • Loading branch information
wkrop committed Jul 20, 2023
2 parents 5f9a487 + a9473d1 commit 0d3c9f9
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.md
Expand Up @@ -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)
---
Expand All @@ -36,21 +36,21 @@ 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
* * *

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)

Expand Down
4 changes: 4 additions & 0 deletions 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.
Expand Down
34 changes: 34 additions & 0 deletions 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 <Date Extended and Time Basic> to <Date Basic and Time Basic> 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.
4 changes: 2 additions & 2 deletions pkg/version/version.go
Expand Up @@ -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
Expand Down

0 comments on commit 0d3c9f9

Please sign in to comment.