Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add release 1.1.0 #369

Merged
merged 2 commits into from
Nov 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

* Changed `ReferralRequest` mapping to use `ASAP` instead of the `Stat` value.

### Fixed
## [1.1.0] - 2023-11-09

### Changed

* Updated the way immunization codes are loaded to build these from the relationships reference set in the SNOMED CT
release rather than a static set of values.
The previous static list of values was incomplete and included invalid codes.
More information about how this improved functionality works can be found in the [SNOMED database documentation](snomed-database-loader/README.md#immunization-codes).

> [!NOTE]
> **Upgrade information** Subsequent to deploying the updated version of the facade and translator images, users will need to
> perform an [update of their patient switching SNOMED database](OPERATING.md#updating-the-snomed-database).
> **Upgrade information** This release includes a [database migration](OPERATING.md#updating-the-application-schema).
> This database migration will need to be performed first, followed by deploying the updated version of the facade and translator images.
> Finally users will need to perform an [update of their patient switching SNOMED database](OPERATING.md#updating-the-snomed-database).

## [1.0.0] - 2023-11-01 🎉

Expand Down
2 changes: 1 addition & 1 deletion OPERATING.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Required environment variables:

*When passing passwords into this script it is the responsibility of the supplier to ensure that passwords are being kept secure by using appropriate controls within their infrastructure.*

### Updating the SNOMED Database
### Populating the SNOMED database

The adaptor requires an up to date copy of the SNOMED DB as part of translating FHIR `CodableConcepts`.

Expand Down
2 changes: 1 addition & 1 deletion developer-information.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
└── mhs-adaptor-mock # Dockerfile and required files for mock of MHS Adaptor

## Snomed CT Database
Please make sure to load the latest release of Snomed CT UK Edition. See [Configuring the SNOMED Database](./OPERATING.md#updating-the-snomed-database) and [snomed-database-loader](/snomed-database-loader/README.md) for more information.
Please make sure to load the latest release of Snomed CT UK Edition. See [Configuring the SNOMED Database](./OPERATING.md#populating-the-snomed-database) and [snomed-database-loader](/snomed-database-loader/README.md) for more information.

## Local development
### How to start local environment
Expand Down
2 changes: 1 addition & 1 deletion release-scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

export BUILD_TAG=1.0.0
export BUILD_TAG=1.1.0

git fetch
git checkout $BUILD_TAG
Expand Down