Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c4d32952db | ||
|
|
4c45f139d9 |
+6
-1
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [1.10.5] - 2026-01-07
|
## [1.10.6] - 2026-01-08
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
@@ -13,6 +13,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
- Changed `oidc_audience` (string) to `oidc_audiences` (list)
|
- Changed `oidc_audience` (string) to `oidc_audiences` (list)
|
||||||
- Now accepts tokens with audience: `core-api`, `tatlock-ui`, or `tatlock`
|
- Now accepts tokens with audience: `core-api`, `tatlock-ui`, or `tatlock`
|
||||||
- Fixes environment endpoint returning "default" user instead of authenticated username
|
- Fixes environment endpoint returning "default" user instead of authenticated username
|
||||||
|
- Fixed main.py to use `oidc_audiences[0]` for Swagger UI OAuth client
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Documentation cleanup in README
|
||||||
|
|
||||||
## [1.10.4] - 2026-01-07
|
## [1.10.4] - 2026-01-07
|
||||||
|
|
||||||
|
|||||||
@@ -97,10 +97,6 @@ src/
|
|||||||
# Install dependencies
|
# Install dependencies
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
|
|
||||||
# Copy credentials template
|
|
||||||
cp src/credentials.example.py src/credentials.py
|
|
||||||
# Edit src/credentials.py with your values
|
|
||||||
|
|
||||||
# Run locally
|
# Run locally
|
||||||
uvicorn src.main:app --reload --host 0.0.0.0 --port 8083
|
uvicorn src.main:app --reload --host 0.0.0.0 --port 8083
|
||||||
```
|
```
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "core-api"
|
name = "core-api"
|
||||||
version = "1.10.5"
|
version = "1.10.6"
|
||||||
description = "Core Code API - Infrastructure management and tools API"
|
description = "Core Code API - Infrastructure management and tools API"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
|
|||||||
Reference in New Issue
Block a user