chore(version): update version to 0.1.2 in project files#4
Merged
faizanazim11 merged 1 commit intomasterfrom Sep 30, 2025
Merged
chore(version): update version to 0.1.2 in project files#4faizanazim11 merged 1 commit intomasterfrom
faizanazim11 merged 1 commit intomasterfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This pull request optimizes API response performance by switching to ORJSONResponse as the default FastAPI response class and updates the project version to 0.1.2.
- Improved JSON serialization performance by setting ORJSONResponse as the default response class
- Updated project version from 0.1.1 to 0.1.2 in pyproject.toml
Reviewed Changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| src/tp_auth_serverside/core/fastapi_configurer.py | Added ORJSONResponse import and configured it as the default response class for FastAPI |
| pyproject.toml | Updated project version from 0.1.1 to 0.1.2 |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request updates the FastAPI configuration to improve response performance and updates the project version. The most important changes are the switch to a faster JSON response class for all API responses and the version bump.
FastAPI Response Optimization:
ORJSONResponse, which provides faster JSON serialization and smaller payloads, improving API performance.ORJSONResponsefromfastapi.responsesto support the new default response class.Project Versioning:
pyproject.tomlfrom0.1.1to0.1.2to reflect these changes.