diff --git a/CHANGELOG.md b/CHANGELOG.md index 6194848c..66d75b68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,8 +6,37 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). --- -# `BL_Python.all` [0.2.5] - 2024-05-30 +## Unreleased + +# `BL_Python.all` [0.3.0] - 2024-08-09 +### Changed +* Update many dependencies +* Abstract feature flag cache and refactor related code so using feature flags is simpler [8b858303](https://github.com/uclahs-cds/BL_Python/commit/8b858303d821354040c099f2bd7f29c23ca4735c) + +### Fixed +* Resolve failure in installing correct Pyright version during CICD [c7dddd65](https://github.com/uclahs-cds/BL_Python/commit/c7dddd65b000a3a5f102d52c369a4ee82ccf8e6d) +* Close SQLAlchemy session in Identity user loader when database operations are finished [c5620463](https://github.com/uclahs-cds/BL_Python/commit/c5620463abbd9931993761cc9ad2e9630d4daedd) +* Fix confusion in feature flag caching through refactor and docs update [8b858303](https://github.com/uclahs-cds/BL_Python/commit/8b858303d821354040c099f2bd7f29c23ca4735c) +* Fix interface error in feature flags regarding parameter mismatch and a lie about how database feature flags work [8b858303](https://github.com/uclahs-cds/BL_Python/commit/8b858303d821354040c099f2bd7f29c23ca4735c) +* Resolved several type and style errors arising from Pyright and Ruff updates [6f3675bd](https://github.com/uclahs-cds/BL_Python/commit/6f3675bd5def3d6700da01869f03d39841fc8049) + +### Security +* Add dependabot configuration for each BL_Python's Python dependencies [d36e8eda](https://github.com/uclahs-cds/BL_Python/commit/d36e8edaedd5af078be2f0e428790554bc94ab34) + +## `BL_Python.AWS` [0.3.0] - 2024-08-09 +- [BL_Python.AWS v0.3.0](https://github.com/uclahs-cds/BL_Python/blob/BL_Python.AWS-v0.3.0/src/AWS/CHANGELOG.md#030---2024-08-09) + +## `BL_Python.database` [0.2.1] - 2024-08-09 +- [BL_Python.database v0.2.1](https://github.com/uclahs-cds/BL_Python/blob/BL_Python.database-v0.2.1/src/database/CHANGELOG.md#021---2024-08-09) + +## `BL_Python.platform` [0.3.0] - 2024-08-09 +- [BL_Python.platform v0.3.0](https://github.com/uclahs-cds/BL_Python/blob/BL_Python.platform-v0.3.0/src/platform/CHANGELOG.md#030---2024-08-09) + +## `BL_Python.web` [0.2.5] - 2024-08-09 +- [BL_Python.web v0.2.5](https://github.com/uclahs-cds/BL_Python/blob/BL_Python.web-v0.2.5/src/web/CHANGELOG.md#025---2024-08-09) + +# `BL_Python.all` [0.2.5] - 2024-05-30 ## `BL_Python.web` [0.2.4] - 2024-05-30 - [BL_Python.web v0.2.4](https://github.com/uclahs-cds/BL_Python/blob/BL_Python.web-v0.2.4/src/web/CHANGELOG.md#024---2024-05-30) diff --git a/src/AWS/BL_Python/AWS/__init__.py b/src/AWS/BL_Python/AWS/__init__.py index 97cca386..ec9f6982 100644 --- a/src/AWS/BL_Python/AWS/__init__.py +++ b/src/AWS/BL_Python/AWS/__init__.py @@ -1 +1 @@ -__version__: str = "0.2.0" +__version__: str = "0.3.0" diff --git a/src/AWS/CHANGELOG.md b/src/AWS/CHANGELOG.md index 8b077ecc..34df60f4 100644 --- a/src/AWS/CHANGELOG.md +++ b/src/AWS/CHANGELOG.md @@ -1,3 +1,16 @@ # Changelog -Review the `BL_Python` [CHANGELOG.md](https://github.com/uclahs-cds/BL_Python/blob/main/CHANGELOG.md). \ No newline at end of file +All notable changes to `BL_Python.AWS`. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). + +This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +Review the `BL_Python` [CHANGELOG.md](https://github.com/uclahs-cds/BL_Python/blob/main/CHANGELOG.md) for full monorepo notes. + +--- +## Unreleased + +## [0.3.0] - 2024-08-09 +### Fixed +* Fix error that could crash SSM load in an unexpected way [465f083](https://github.com/uclahs-cds/BL_Python/commit/465f0838b58a28ed157f86ce786d52bf755526d2) diff --git a/src/__init__.py b/src/__init__.py index d72c0c19..ec9f6982 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1 +1 @@ -__version__: str = "0.2.5" +__version__: str = "0.3.0" diff --git a/src/database/BL_Python/database/__init__.py b/src/database/BL_Python/database/__init__.py index 97cca386..ecceb641 100644 --- a/src/database/BL_Python/database/__init__.py +++ b/src/database/BL_Python/database/__init__.py @@ -1 +1 @@ -__version__: str = "0.2.0" +__version__: str = "0.2.1" diff --git a/src/database/CHANGELOG.md b/src/database/CHANGELOG.md index 8b077ecc..cee373a3 100644 --- a/src/database/CHANGELOG.md +++ b/src/database/CHANGELOG.md @@ -1,3 +1,17 @@ # Changelog -Review the `BL_Python` [CHANGELOG.md](https://github.com/uclahs-cds/BL_Python/blob/main/CHANGELOG.md). \ No newline at end of file +All notable changes to `BL_Python.database`. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). + +This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +Review the `BL_Python` [CHANGELOG.md](https://github.com/uclahs-cds/BL_Python/blob/main/CHANGELOG.md) for full monorepo notes. + + +--- +## Unreleased + +## [0.2.1] - 2024-08-09 +### Changed +* Update many dependencies diff --git a/src/platform/BL_Python/platform/__init__.py b/src/platform/BL_Python/platform/__init__.py index c8a3df0f..ec9f6982 100644 --- a/src/platform/BL_Python/platform/__init__.py +++ b/src/platform/BL_Python/platform/__init__.py @@ -1 +1 @@ -__version__: str = "0.2.2" +__version__: str = "0.3.0" diff --git a/src/platform/CHANGELOG.md b/src/platform/CHANGELOG.md index 9e1e9fa4..95cd2456 100644 --- a/src/platform/CHANGELOG.md +++ b/src/platform/CHANGELOG.md @@ -9,6 +9,16 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm Review the `BL_Python` [CHANGELOG.md](https://github.com/uclahs-cds/BL_Python/blob/main/CHANGELOG.md) for full monorepo notes. --- +## Unreleased + +## [0.3.0] - 2024-08-09 +### Changed +* Abstract feature flag cache and refactor related code so using feature flags is simpler [8b858303](https://github.com/uclahs-cds/BL_Python/commit/8b858303d821354040c099f2bd7f29c23ca4735c) + +### Fixed +* Close SQLAlchemy session in Identity user loader when database operations are finished [c5620463](https://github.com/uclahs-cds/BL_Python/commit/c5620463abbd9931993761cc9ad2e9630d4daedd) +* Fix confusion in feature flag caching through refactor and docs update [8b858303](https://github.com/uclahs-cds/BL_Python/commit/8b858303d821354040c099f2bd7f29c23ca4735c) +* Fix interface error in feature flags regarding parameter mismatch and a lie about how database feature flags work [8b858303](https://github.com/uclahs-cds/BL_Python/commit/8b858303d821354040c099f2bd7f29c23ca4735c) ## [0.2.2] - 2024-05-16 ### Changed diff --git a/src/web/BL_Python/web/__init__.py b/src/web/BL_Python/web/__init__.py index c9f6e571..d72c0c19 100644 --- a/src/web/BL_Python/web/__init__.py +++ b/src/web/BL_Python/web/__init__.py @@ -1 +1 @@ -__version__: str = "0.2.4" +__version__: str = "0.2.5" diff --git a/src/web/CHANGELOG.md b/src/web/CHANGELOG.md index 316e0c4d..375cff0a 100644 --- a/src/web/CHANGELOG.md +++ b/src/web/CHANGELOG.md @@ -11,6 +11,13 @@ Review the `BL_Python` [CHANGELOG.md](https://github.com/uclahs-cds/BL_Python/bl --- ## Unreleased +## [0.2.5] - 2024-08-09 +### Changed +* Update many dependencies + +### Fixed +* Resolved several type and style errors arising from Pyright and Ruff updates [6f3675bd](https://github.com/uclahs-cds/BL_Python/commit/6f3675bd5def3d6700da01869f03d39841fc8049) + ## [0.2.4] - 2024-05-30 ### Added - ASGI worker classes to support ASGI lifetime and proxy options when running ASGI applications #68