Skip to content

Commit

Permalink
Merge pull request #147 from uclahs-cds/aholmes-update-changelogs-and…
Browse files Browse the repository at this point in the history
…-versions

Update versions and changelogs.
  • Loading branch information
aholmes authored Nov 1, 2024
2 parents ea03219 + e7c7d71 commit 9e44c77
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 3 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.2"
__version__: str = "0.5.0"
8 changes: 8 additions & 0 deletions src/platform/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/platform/Ligare/platform/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = "0.4.0"
__version__: str = "0.5.0"
15 changes: 15 additions & 0 deletions src/web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.2"
__version__: str = "0.4.0"

0 comments on commit 9e44c77

Please sign in to comment.