Skip to content

Commit f3c1d43

Browse files
authored
Merge pull request #131 from uclahs-cds/aholmes-fix-web-dep
Add a missing dependency to Ligare.web.
2 parents 0fff6fe + 1cb9288 commit f3c1d43

File tree

5 files changed

+23
-2
lines changed

5 files changed

+23
-2
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,15 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
88
---
99
## Unreleased
1010

11+
# `Ligare.all` [0.4.1] - 2024-10-08
12+
### Fixed
13+
* Added `Ligare.AWS` to `Ligare.web` dependencies to fix application start failure
14+
15+
16+
## `Ligare.web` [0.3.1] - 2024-10-08
17+
- [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)
18+
19+
1120
# `Ligare.all` [0.4.0] - 2024-10-04
1221
### Added
1322
* Feature Flags Injector module and API https://github.com/uclahs-cds/Ligare/pull/107/
@@ -28,6 +37,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
2837
## `Ligare.web` [0.3.0] - 2024-10-04
2938
- [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)
3039

40+
3141
# `Ligare.all` [0.3.0] - 2024-08-09
3242
### Changed
3343
* Update many dependencies
@@ -56,24 +66,29 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
5666
## `Ligare.web` [0.2.5] - 2024-08-09
5767
- [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)
5868

69+
5970
# `Ligare.all` [0.2.5] - 2024-05-30
6071
## `Ligare.web` [0.2.4] - 2024-05-30
6172
- [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)
6273

74+
6375
# `Ligare.all` [0.2.4] - 2024-05-17
6476

6577
## `Ligare.web` [0.2.3] - 2024-05-17
6678
- [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)
6779

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

7184
## `Ligare.web` [0.2.2] - 2024-05-16
7285
- [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)
7386

87+
7488
## `Ligare.platform` [0.2.2] - 2024-05-16
7589
- [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)
7690

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

107+
92108
# [0.1.0] - 2024-02-16
93109
### Added
94110
- Setuptools package configurations for:

src/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__: str = "0.4.0"
1+
__version__: str = "0.4.1"

src/web/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ Review the `Ligare` [CHANGELOG.md](https://github.com/uclahs-cds/Ligare/blob/mai
1111
---
1212
## Unreleased
1313

14+
## [0.3.1] - 2024-10-08
15+
### Fixed
16+
* Added `Ligare.AWS` to `Ligare.web` dependencies to fix application start failure
17+
1418
## [0.3.0] - 2024-10-04
1519
### Added
1620
* `Ligare.web.application.ApplicationBuilder` for more robust configuration and instantiation of web applications

src/web/Ligare/web/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__: str = "0.3.0"
1+
__version__: str = "0.3.1"

src/web/pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ classifiers = [
2828
]
2929

3030
dependencies = [
31+
"Ligare.AWS",
3132
"Ligare.programming",
3233
"Ligare.platform",
3334
"Ligare.identity",

0 commit comments

Comments
 (0)