Skip to content

Commit

Permalink
Merge pull request #131 from uclahs-cds/aholmes-fix-web-dep
Browse files Browse the repository at this point in the history
Add a missing dependency to Ligare.web.
  • Loading branch information
aholmes authored Oct 8, 2024
2 parents 0fff6fe + 1cb9288 commit f3c1d43
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
---
## Unreleased

# `Ligare.all` [0.4.1] - 2024-10-08
### Fixed
* Added `Ligare.AWS` to `Ligare.web` dependencies to fix application start failure


## `Ligare.web` [0.3.1] - 2024-10-08
- [Ligare.web v0.3.1](https://github.com/uclahs-cds/Ligare/blob/Ligare.web-v0.3.1/src/web/CHANGELOG.md#031---2024-10-08)


# `Ligare.all` [0.4.0] - 2024-10-04
### Added
* Feature Flags Injector module and API https://github.com/uclahs-cds/Ligare/pull/107/
Expand All @@ -28,6 +37,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## `Ligare.web` [0.3.0] - 2024-10-04
- [Ligare.web v0.3.0](https://github.com/uclahs-cds/Ligare/blob/Ligare.web-v0.3.0/src/web/CHANGELOG.md#030---2024-10-04)


# `Ligare.all` [0.3.0] - 2024-08-09
### Changed
* Update many dependencies
Expand Down Expand Up @@ -56,24 +66,29 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
## `Ligare.web` [0.2.5] - 2024-08-09
- [Ligare.web v0.2.5](https://github.com/uclahs-cds/Ligare/blob/Ligare.web-v0.2.5/src/web/CHANGELOG.md#025---2024-08-09)


# `Ligare.all` [0.2.5] - 2024-05-30
## `Ligare.web` [0.2.4] - 2024-05-30
- [Ligare.web v0.2.4](https://github.com/uclahs-cds/Ligare/blob/Ligare.web-v0.2.4/src/web/CHANGELOG.md#024---2024-05-30)


# `Ligare.all` [0.2.4] - 2024-05-17

## `Ligare.web` [0.2.3] - 2024-05-17
- [Ligare.web v0.2.3](https://github.com/uclahs-cds/Ligare/blob/Ligare.web-v0.2.3/src/web/CHANGELOG.md#023---2024-05-17)


# `Ligare.all` [0.2.3] - 2024-05-16
- Contains all libraries up to v0.2.1, and `Ligare.platform` v0.2.2 and `Ligare.web` v0.2.2

## `Ligare.web` [0.2.2] - 2024-05-16
- [Ligare.web v0.2.2](https://github.com/uclahs-cds/Ligare/blob/Ligare.web-v0.2.2/src/web/CHANGELOG.md#022---2024-05-16)


## `Ligare.platform` [0.2.2] - 2024-05-16
- [Ligare.platform v0.2.2](https://github.com/uclahs-cds/Ligare/blob/Ligare.platform-v0.2.2/src/platform/CHANGELOG.md#022---2024-05-16)


# [0.2.0] - 2024-05-14
### Added
- New package `Ligare.identity` for SSO
Expand All @@ -89,6 +104,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- Possible crash when using dependency injection in some middlewares
- Inconsistencies in database schema names during application runtime


# [0.1.0] - 2024-02-16
### Added
- Setuptools package configurations for:
Expand Down
2 changes: 1 addition & 1 deletion src/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = "0.4.0"
__version__: str = "0.4.1"
4 changes: 4 additions & 0 deletions src/web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ Review the `Ligare` [CHANGELOG.md](https://github.com/uclahs-cds/Ligare/blob/mai
---
## Unreleased

## [0.3.1] - 2024-10-08
### Fixed
* Added `Ligare.AWS` to `Ligare.web` dependencies to fix application start failure

## [0.3.0] - 2024-10-04
### Added
* `Ligare.web.application.ApplicationBuilder` for more robust configuration and instantiation of web applications
Expand Down
2 changes: 1 addition & 1 deletion src/web/Ligare/web/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = "0.3.0"
__version__: str = "0.3.1"
1 change: 1 addition & 0 deletions src/web/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ classifiers = [
]

dependencies = [
"Ligare.AWS",
"Ligare.programming",
"Ligare.platform",
"Ligare.identity",
Expand Down

0 comments on commit f3c1d43

Please sign in to comment.