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

Update changelogs and versions. #99

Merged
merged 1 commit into from
Aug 9, 2024
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
31 changes: 30 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion src/AWS/BL_Python/AWS/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = "0.2.0"
__version__: str = "0.3.0"
15 changes: 14 additions & 1 deletion src/AWS/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# Changelog

Review the `BL_Python` [CHANGELOG.md](https://github.com/uclahs-cds/BL_Python/blob/main/CHANGELOG.md).
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)
2 changes: 1 addition & 1 deletion src/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = "0.2.5"
__version__: str = "0.3.0"
2 changes: 1 addition & 1 deletion src/database/BL_Python/database/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = "0.2.0"
__version__: str = "0.2.1"
16 changes: 15 additions & 1 deletion src/database/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# Changelog

Review the `BL_Python` [CHANGELOG.md](https://github.com/uclahs-cds/BL_Python/blob/main/CHANGELOG.md).
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
2 changes: 1 addition & 1 deletion src/platform/BL_Python/platform/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = "0.2.2"
__version__: str = "0.3.0"
10 changes: 10 additions & 0 deletions src/platform/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/web/BL_Python/web/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = "0.2.4"
__version__: str = "0.2.5"
7 changes: 7 additions & 0 deletions src/web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading