diff --git a/CHANGELOG.md b/CHANGELOG.md index ebc7348d..7c3acae9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,30 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm --- ## Unreleased +# `Ligare.all` [0.5.0] - 2024-11-01 +### Added +- Added a function decorator `feature_flag(...)` to control the availability of a function based on a feature flag's enablement. d5d2242 +- Added Feature Flag module for querying and altering Feature Flags in a running application. +- Added Feature Flag module for querying and altering Feature Flags in a running application. +- Added Feature Flag API for managing Feature Flags in a running web application. +- Added a Makefile to the files generated by the web application scaffolder. bd3d685 +- Added optional "VSCode" modules to web application scaffolder to make debugging scaffolded web applications easier. e4646ec + +### Changed +- Alter how FeatureFlags are queried to resolve issues with schemas and multiple `ScopedSession` Injector registrations. 76353a1 +- Use hostname and port from configuration file to avoid confusion about how to actually access a running web application. 3426b8f + +### Fixed +- Fix failures from some automated tests for web application scaffolder. 6a2ce8b +- Fix several static type errors. + +## `Ligare.platform` [0.5.0] - 2024-11-01 +- [Ligare.platform v0.5.0](https://github.com/uclahs-cds/Ligare/blob/Ligare.platform-v0.5.0/src/platform/CHANGELOG.md#050---2024-11-01) + +## `Ligare.web` [0.4.0] - 2024-11-01 +- [Ligare.web v0.4.0](https://github.com/uclahs-cds/Ligare/blob/Ligare.web-v0.4.0/src/web/CHANGELOG.md#040---2024-11-01) + + # `Ligare.all` [0.4.1] - 2024-10-11 ### Fixed * Several `ligare-scaffold` bugs. #132 diff --git a/src/__init__.py b/src/__init__.py index 3a9bc37f..5bcf5d2a 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1 +1 @@ -__version__: str = "0.4.2" +__version__: str = "0.5.0" diff --git a/src/platform/CHANGELOG.md b/src/platform/CHANGELOG.md index 1c5feca1..7af11738 100644 --- a/src/platform/CHANGELOG.md +++ b/src/platform/CHANGELOG.md @@ -12,6 +12,14 @@ Review the `Ligare` [CHANGELOG.md](https://github.com/uclahs-cds/Ligare/blob/mai --- ## Unreleased +## [0.5.0] - 2024-11-01 +### Added +- Added a function decorator `feature_flag(...)` to control the availability of a function based on a feature flag's enablement. d5d2242 +- Added Feature Flag module for querying and altering Feature Flags in a running application. + +### Changed +- Alter how FeatureFlags are queried to resolve issues with schemas and multiple `ScopedSession` Injector registrations. 76353a1 + ## [0.4.0] - 2024-10-04 ### Added * Added a Feature Flag "router" module, supporting both a caching and database backend diff --git a/src/platform/Ligare/platform/__init__.py b/src/platform/Ligare/platform/__init__.py index efd556bc..5bcf5d2a 100644 --- a/src/platform/Ligare/platform/__init__.py +++ b/src/platform/Ligare/platform/__init__.py @@ -1 +1 @@ -__version__: str = "0.4.0" +__version__: str = "0.5.0" diff --git a/src/web/CHANGELOG.md b/src/web/CHANGELOG.md index 58326531..e710c263 100644 --- a/src/web/CHANGELOG.md +++ b/src/web/CHANGELOG.md @@ -11,6 +11,21 @@ Review the `Ligare` [CHANGELOG.md](https://github.com/uclahs-cds/Ligare/blob/mai --- ## Unreleased +## [0.4.0] - 2024-11-01 +### Added +- Added Feature Flag module for querying and altering Feature Flags in a running application. +- Added Feature Flag API for managing Feature Flags in a running web application. +- Added a Makefile to the files generated by the web application scaffolder. bd3d685 +- Added optional "VSCode" modules to web application scaffolder to make debugging scaffolded web applications easier. e4646ec + +### Fixed +- Fix failures from some automated tests for web application scaffolder. 6a2ce8b +- Fix several static type errors. + +### Changed +- Use hostname and port from configuration file to avoid confusion about how to actually access a running web application. 3426b8f +- Alter how FeatureFlags are queried to resolve issues with schemas and multiple `ScopedSession` Injector registrations. 76353a1 + ## [0.3.2] - 2024-10-11 ### Fixed * Several `ligare-scaffold` bugs. #132 diff --git a/src/web/Ligare/web/__init__.py b/src/web/Ligare/web/__init__.py index 781a0fa2..efd556bc 100644 --- a/src/web/Ligare/web/__init__.py +++ b/src/web/Ligare/web/__init__.py @@ -1 +1 @@ -__version__: str = "0.3.2" +__version__: str = "0.4.0"