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

docs(bfdr): canary bfdr and vr feb 25 test releases #217

Merged
merged 14 commits into from
Jan 30, 2025
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
2 changes: 1 addition & 1 deletion projects/BFDR.Messaging/BFDR.Messaging.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.0.0-preview.10</Version>
<Version>1.0.0-preview.11</Version>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>BFDR</RootNamespace>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down
2 changes: 1 addition & 1 deletion projects/BFDR/BFDR.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.0.0-preview.10</Version>
<Version>1.0.0-preview.11</Version>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>BFDR</RootNamespace>
<DocumentationFile>BFDR.xml</DocumentationFile>
Expand Down
8 changes: 8 additions & 0 deletions projects/BFDR/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

<a name="1.0.0-preview.11"></a>
## [1.0.0-preview.11](https://github.com/nightingaleproject/vital-records-dotnet/commit/34c63730c52913170ad01d0d25782387190e4d1e) (2025-01-30)

### Fixes
* Fix connectathon records to use a recent event year
* Correct fields that are Birth or Fetal Death specific to only appear in Birth or Fetal Death records
* Fix time component handling for partial date times

<a name="1.0.0-preview.10"></a>
## [1.0.0-preview.10](https://github.com/nightingaleproject/vital-records-dotnet/commit/e5d39978b91a26b4460d68f423a12d5159f515d0) (2024-12-23)

Expand Down
4 changes: 2 additions & 2 deletions projects/BFDR/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ This package will be published on NuGet, so including it is as easy as:
```xml
<ItemGroup>
...
<PackageReference Include="BFDR" Version="1.0.0-preview.10" />
<PackageReference Include="BFDR" Version="1.0.0-preview.11" />
...
</ItemGroup>
```
Expand Down Expand Up @@ -194,7 +194,7 @@ This package is published on NuGet, so including it is as easy as:
```xml
<ItemGroup>
...
<PackageReference Include="BFDR.Messaging" Version="1.0.0-preview.10" />
<PackageReference Include="BFDR.Messaging" Version="1.0.0-preview.11" />
...
</ItemGroup>
```
Expand Down
11 changes: 11 additions & 0 deletions projects/Canary/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# Changelog

All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

<a name="5.3.0"></a>
## 5.3.0 01-30-2025

### Features
* Add fetal death messaging connectathon test

### Fixes
* Fix connectathon test records to use more recent years
* Fix record extraction bug in message inspector that was showing empty values

<a name="5.2.1"></a>
## 5.2.1 11-26-2024

Expand Down
6 changes: 3 additions & 3 deletions projects/Canary/ClientApp/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ const baseUrl = document.getElementsByTagName('base')[0].getAttribute('href');

//window.API_URL = 'http://localhost:5000';
window.API_URL = '';
window.VERSION = '5.2.1';
window.VERSION_DATE = 'November 26, 2024';
window.VERSION = '5.3.0';
window.VERSION_DATE = 'January 30, 2025';
window.VRDR_VERSION = '5.0.0';
window.BFDR_VERSION = '1.0.0-preview.9';
window.BFDR_VERSION = '1.0.0-preview.11';
window.VRDR_VERSION_DATE = 'August 15, 2023';

const container = document.getElementById('root');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>VitalRecord.Messaging</PackageId>
<Version>1.0.0-preview.5</Version>
<Version>1.0.0-preview.6</Version>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>VR</RootNamespace>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down
10 changes: 10 additions & 0 deletions projects/VitalRecord/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

<a name="1.0.0-preview.6"></a>
## [1.0.0-preview.6](https://github.com/nightingaleproject/vital-records-dotnet/commit/34c63730c52913170ad01d0d25782387190e4d1e) (2025-01-30)

### Features
* Update util functions to use latest urls
* Regenerate code systems, mappings, and urls to support VRDR STU 3.0 and BFDR 2.0

### Fixes
* Fix time component handling for partial date times

<a name="1.0.0-preview.5"></a>
## [1.0.0-preview.5](https://github.com/nightingaleproject/vital-records-dotnet/commit/e5d39978b91a26b4460d68f423a12d5159f515d0) (2024-12-23)

Expand Down
2 changes: 1 addition & 1 deletion projects/VitalRecord/VitalRecord.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.0.0-preview.5</Version>
<Version>1.0.0-preview.6</Version>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>VR</RootNamespace>
<DocumentationFile>VitalRecord.xml</DocumentationFile>
Expand Down
Loading