-
Notifications
You must be signed in to change notification settings - Fork 20
feat!: migrate API response keys to camelCase and mark v3.0.0 release #151
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
Merged
aditeyabaral
merged 23 commits into
pesu-dev:dev
from
aditeyabaral:refactor/camelCase-field-names
May 24, 2026
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
264fdb3
rewrite: replace snake case keys with camel case
aditeyabaral 0a1628b
add: tests for new behavior
aditeyabaral 4eba6d7
chore: upgrade target versions to python 3.14
aditeyabaral 83a387d
update: tests
aditeyabaral dcbdfe0
chore: bump version
aditeyabaral cfe81f1
feat: read app version from pyproject.toml
aditeyabaral 47b69f6
fix: Dockerfile
aditeyabaral e71903d
chore: update uv.lock with Python 3.14 resolution markers
aditeyabaral c53cea4
chore: migrate Dockerfile to uv multi-stage build
aditeyabaral d828b1a
chore: align build versions to Python 3.12 and add kycas to benchmark…
aditeyabaral c2d3cb1
chore: restore Python version matrix for lint and pre-commit CI
aditeyabaral 2c092fd
chore: replace pytz with stdlib zoneinfo
aditeyabaral 482ca2d
chore: upgrade all dependencies to latest versions
aditeyabaral f20659d
chore: bump minimum version bounds in pyproject.toml to current latest
aditeyabaral fa36704
chore: migrate dev deps from optional-dependencies to dependency-groups
aditeyabaral f77f84f
fix: run pre-commit via uv run to use venv PATH
aditeyabaral 92279a2
fix: install all dependency groups in pre-commit CI
aditeyabaral d3ef90f
docs: update .github docs for Python 3.12, uv dependency-groups, and …
aditeyabaral 141b74d
chore: bump Python target to 3.14 and fix stale version references
aditeyabaral 02ecc26
chore: minor string update
aditeyabaral 7b10344
chore: switch Docker base images to python3.14-alpine
aditeyabaral 720166e
fix: resolve ruff TC import-in-type-checking-block errors
aditeyabaral d12a6e8
refactor: make ProfileField Literal the source of truth for allowed f…
aditeyabaral File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,22 @@ | ||
| FROM python:3.12-slim-bookworm | ||
| FROM ghcr.io/astral-sh/uv:python3.14-alpine AS builder | ||
|
|
||
| COPY app /app | ||
| COPY README.md /README.md | ||
| COPY requirements.txt /requirements.txt | ||
| WORKDIR /pesu-auth | ||
|
|
||
| RUN pip install -r requirements.txt | ||
| ENV UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy | ||
|
|
||
| COPY pyproject.toml uv.lock README.md ./ | ||
| RUN uv sync --no-dev --frozen --no-install-project | ||
|
|
||
| COPY app ./app | ||
| RUN uv sync --no-dev --frozen | ||
|
|
||
| FROM python:3.14-alpine | ||
|
|
||
| WORKDIR /pesu-auth | ||
|
|
||
| COPY --from=builder /pesu-auth/.venv /pesu-auth/.venv | ||
| COPY app ./app | ||
|
|
||
| ENV PATH="/pesu-auth/.venv/bin:$PATH" | ||
|
|
||
| CMD ["python", "-m", "app.app"] | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.