From fa5cb12bb7c73d2785e4d62267f2b26c997314a1 Mon Sep 17 00:00:00 2001 From: Francis Pion Date: Mon, 25 Mar 2024 22:29:01 -0400 Subject: [PATCH] Release 1.0.0 (#59) --- CHANGELOG.md | 14 +++++++++++++- .../Logitar.Identity.Contracts.csproj | 4 ++-- .../Logitar.Identity.Domain.csproj | 6 +++--- ....Identity.EntityFrameworkCore.PostgreSQL.csproj | 6 +++--- ....Identity.EntityFrameworkCore.Relational.csproj | 6 +++--- ...r.Identity.EntityFrameworkCore.SqlServer.csproj | 6 +++--- .../Logitar.Identity.Infrastructure.csproj | 6 +++--- 7 files changed, 30 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a38163..e63b42f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## [Unreleased] Nothing yet. + +## [1.0.0] - 2024-03-25 + +### Added + +- Role, API key, User, Session, One-Time Password (OTP) domain events and aggregates. +- Password (PBKDF2) and JSON Web Token management. +- Relational storage (PostgreSQL and Microsoft SQL Server) for Identity entities. +- Unit and Integration tests. + +[unreleased]: https://github.com/Logitar/Identity/compare/v1.0.0...HEAD +[1.0.0]: https://github.com/Logitar/Identity/releases/tag/v1.0.0 diff --git a/src/Logitar.Identity.Contracts/Logitar.Identity.Contracts.csproj b/src/Logitar.Identity.Contracts/Logitar.Identity.Contracts.csproj index b3873bc..fe02708 100644 --- a/src/Logitar.Identity.Contracts/Logitar.Identity.Contracts.csproj +++ b/src/Logitar.Identity.Contracts/Logitar.Identity.Contracts.csproj @@ -15,11 +15,11 @@ README.md https://github.com/Logitar/Identity git - 0.12.0.0 + 1.0.0.0 $(AssemblyVersion) LICENSE True - 0.12.0 + 1.0.0 en-CA True Refactored the EventBus, warnings, settings and databases. diff --git a/src/Logitar.Identity.Domain/Logitar.Identity.Domain.csproj b/src/Logitar.Identity.Domain/Logitar.Identity.Domain.csproj index 5dfbf25..b51ff29 100644 --- a/src/Logitar.Identity.Domain/Logitar.Identity.Domain.csproj +++ b/src/Logitar.Identity.Domain/Logitar.Identity.Domain.csproj @@ -15,14 +15,14 @@ README.md https://github.com/Logitar/Identity git - 0.12.0.0 + 1.0.0.0 $(AssemblyVersion) LICENSE True - 0.12.0 + 1.0.0 en-CA True - Refactored the EventBus, warnings, settings and databases. + Refactored domain events and aggregates. logitar;net;framework;identity;domain https://github.com/Logitar/Identity/tree/main/src/Logitar.Identity.Domain diff --git a/src/Logitar.Identity.EntityFrameworkCore.PostgreSQL/Logitar.Identity.EntityFrameworkCore.PostgreSQL.csproj b/src/Logitar.Identity.EntityFrameworkCore.PostgreSQL/Logitar.Identity.EntityFrameworkCore.PostgreSQL.csproj index 4f6c65a..437ce9b 100644 --- a/src/Logitar.Identity.EntityFrameworkCore.PostgreSQL/Logitar.Identity.EntityFrameworkCore.PostgreSQL.csproj +++ b/src/Logitar.Identity.EntityFrameworkCore.PostgreSQL/Logitar.Identity.EntityFrameworkCore.PostgreSQL.csproj @@ -15,14 +15,14 @@ README.md https://github.com/Logitar/Identity git - 0.12.0.0 + 1.0.0.0 $(AssemblyVersion) LICENSE True - 0.12.0 + 1.0.0 en-CA False - Refactored the EventBus, warnings, settings and databases. + Upgraded NuGet packages. logitar;net;framework;identity;entityframeworkcore;postgres https://github.com/Logitar/Identity/tree/main/src/Logitar.Identity.EntityFrameworkCore.PostgreSQL diff --git a/src/Logitar.Identity.EntityFrameworkCore.Relational/Logitar.Identity.EntityFrameworkCore.Relational.csproj b/src/Logitar.Identity.EntityFrameworkCore.Relational/Logitar.Identity.EntityFrameworkCore.Relational.csproj index 27495f9..4ec4aa3 100644 --- a/src/Logitar.Identity.EntityFrameworkCore.Relational/Logitar.Identity.EntityFrameworkCore.Relational.csproj +++ b/src/Logitar.Identity.EntityFrameworkCore.Relational/Logitar.Identity.EntityFrameworkCore.Relational.csproj @@ -15,14 +15,14 @@ README.md https://github.com/Logitar/Identity git - 0.12.0.0 + 1.0.0.0 $(AssemblyVersion) LICENSE True - 0.12.0 + 1.0.0 en-CA False - Refactored the EventBus, warnings, settings and databases. + Removed the EventDb class and upgraded NuGet packages. logitar;net;framework;identity;entityframeworkcore;relational https://github.com/Logitar/Identity/tree/main/src/Logitar.Identity.EntityFrameworkCore.Relational diff --git a/src/Logitar.Identity.EntityFrameworkCore.SqlServer/Logitar.Identity.EntityFrameworkCore.SqlServer.csproj b/src/Logitar.Identity.EntityFrameworkCore.SqlServer/Logitar.Identity.EntityFrameworkCore.SqlServer.csproj index 7103714..8320b64 100644 --- a/src/Logitar.Identity.EntityFrameworkCore.SqlServer/Logitar.Identity.EntityFrameworkCore.SqlServer.csproj +++ b/src/Logitar.Identity.EntityFrameworkCore.SqlServer/Logitar.Identity.EntityFrameworkCore.SqlServer.csproj @@ -15,14 +15,14 @@ README.md https://github.com/Logitar/Identity git - 0.12.0.0 + 1.0.0.0 $(AssemblyVersion) LICENSE True - 0.12.0 + 1.0.0 en-CA False - Refactored the EventBus, warnings, settings and databases. + Upgraded NuGet packages. logitar;net;framework;identity;entityframeworkcore;sqlserver https://github.com/Logitar/Identity/tree/main/src/Logitar.Identity.EntityFrameworkCore.SqlServer diff --git a/src/Logitar.Identity.Infrastructure/Logitar.Identity.Infrastructure.csproj b/src/Logitar.Identity.Infrastructure/Logitar.Identity.Infrastructure.csproj index 785b0e8..a19b88e 100644 --- a/src/Logitar.Identity.Infrastructure/Logitar.Identity.Infrastructure.csproj +++ b/src/Logitar.Identity.Infrastructure/Logitar.Identity.Infrastructure.csproj @@ -15,14 +15,14 @@ README.md https://github.com/Logitar/Identity git - 0.12.0.0 + 1.0.0.0 $(AssemblyVersion) LICENSE True - 0.12.0 + 1.0.0 en-CA False - Refactored the EventBus, warnings, settings and databases. + Upgraded NuGet packages. logitar;net;framework;identity;infrastructure https://github.com/Logitar/Identity/tree/main/src/Logitar.Identity.Infrastructure