-
Notifications
You must be signed in to change notification settings - Fork 1
V0.1.9 to v0.2.11 #9
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
Merged
Conversation
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
…lity with Uvicorn style and compatibility
…file logging and process ID support for Uvicorn
…ull request events
… add tagging step
…integration example
…integration example
Refactor/update GitHub action
ci: add write permissions for contents in build workflow
…r, enhance logging message formatting and add process ID support
…up and replace ColoredFormatter with BasicFormatter
…ay in logging settings
… in logging settings
…ging capabilities
…NANTraceFormatter with BasicFormatter
What's ChangedNew Features
Refactors
Enhancements
Fixes
Full Changelog: v0.1.9...v0.2.11 |
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 includes significant updates to the
chromatrace
package, focusing on enhancing logging capabilities, updating dependencies, and improving the CI workflow. The most important changes include updates to the GitHub Actions workflow, enhancements to the logging configuration, and updates to the documentation.CI Workflow Updates:
.github/workflows/build.yml
: Updated the workflow to include tagging and publishing steps, added thedevelop
branch to triggers, and included thetoml
package in dependencies. [1] [2] [3] [4]Logging Enhancements:
src/chromatrace/logging_config.py
: Refactored logging formatters by consolidating them into a singleBasicFormatter
class and added support for process IDs in log messages. [1] [2] [3]src/chromatrace/logging_settings.py
: Added a newshow_process_id
setting to include process IDs in log messages and updated default paths and formats. [1] [2] [3]Documentation Updates:
README.md
: Updated the documentation to reflect new logging capabilities, including process ID support and integration examples for Uvicorn and FastAPI. [1] [2] [3] [4]Version Bump:
pyproject.toml
: Bumped the version from0.1.9
to0.2.11
to reflect the new features and improvements.Codebase Enhancements:
src/chromatrace/__init__.py
andsrc/chromatrace/uvicorn/__init__.py
: Added imports for Uvicorn logging configuration. [1] [2]