-
Notifications
You must be signed in to change notification settings - Fork 1
chore: bump version to 0.2.12 and update python-socketio dependencies #11
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
base: main
Are you sure you want to change the base?
Changes from 24 commits
0c67cff
3e602f6
3f89cf7
57b65f5
2f12558
2f5348c
8dc2bc4
02f2700
4b06b6c
b37c196
4afa26b
e356dfb
a37a8e3
6124fc6
c6390e1
0e9616f
8c0cf8e
023d1d7
675f34f
7097063
614f1f6
5be4b55
eae2f2d
af8d12a
7e85fe7
d536f17
a163efd
a827c1d
b95cec4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| [pytest] | ||
| asyncio_mode=auto | ||
| asyncio_default_fixture_loop_scope="function" | ||
| asyncio_default_fixture_loop_scope=function | ||
| python_files = tests.py test_*.py *_tests.py *_test.py |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,19 @@ | ||
| asyncio==3.4.3 | ||
| django==5.1.1 | ||
| lagom==2.6.0 | ||
| pydantic==2.9.2 | ||
| fastapi==0.100.0 | ||
| socketio==0.2.1 | ||
| python-socketio==5.11.4 | ||
| python-socketio[client]==5.11.4 | ||
| pytest==8.3.3 | ||
| pytest-asyncio==0.24.0 | ||
| pytest-cov==6.0.0 | ||
| uvicorn[standard]==0.30.6 | ||
| uvicorn-worker==0.2.0 | ||
| python-multipart==0.0.10 | ||
| httpx==0.27.2 | ||
| # Core dependencies | ||
| lagom>=2.6.0 | ||
| pydantic>=2.9.2 | ||
| fastapi>=0.100.0 | ||
| python-socketio>=5.12.1 | ||
| python-socketio[client]>=5.12.1 | ||
| uvicorn[standard]>=0.30.6 | ||
| uvicorn-worker>=0.2.0 | ||
| python-multipart>=0.0.10 | ||
| httpx>=0.27.2 | ||
|
|
||
| # Optional: Django integration | ||
| django>=5.1.1 | ||
|
|
||
| # Development dependencies | ||
| pytest>=8.3.3 | ||
| pytest-asyncio>=0.24.0 | ||
| pytest-cov>=6.0.0 | ||
| ruff>=0.1.0 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,24 +1,4 @@ | ||
| [metadata] | ||
| license_files = LICENSE | ||
|
|
||
| [tool.ruff] | ||
| line-length = 100 | ||
| target-version = "py37" | ||
| select = [ | ||
| "E", # pycodestyle errors | ||
| "W", # pycodestyle warnings | ||
| "F", # pyflakes | ||
| "I", # isort | ||
| "C", # flake8-comprehensions | ||
| "B", # flake8-bugbear | ||
| ] | ||
| ignore = ["E501"] # line length | ||
|
|
||
| [tool.ruff.per-file-ignores] | ||
| "__init__.py" = ["F401"] | ||
|
|
||
| [mypy] | ||
| python_version = 3.10 | ||
| warn_return_any = True | ||
| warn_unused_configs = True | ||
| disallow_untyped_defs = True | ||
| name = chromatrace | ||
| description = Advanced logging for Python |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,17 @@ | ||
| from .django import RequestIdMiddleware as DjangoRequestIdMiddleware # noqa | ||
| from .fastapi import RequestIdMiddleware as FastAPIRequestIdMiddleware # noqa | ||
| from .logging_config import LoggingConfig # noqa | ||
| from .logging_settings import LoggingSettings # noqa | ||
| from .socketio import SocketRequestIdMiddleware # noqa | ||
| from .tracer import ( # noqa | ||
| from .logging_config import LoggingConfig | ||
| from .logging_settings import LoggingSettings | ||
| from .tracer import ( | ||
| RequestIdContext, | ||
| get_trace_id, | ||
| trace_id_ctx, | ||
| tracer, | ||
| ) | ||
| from .uvicorn import GetLoggingConfig, UvicornLoggingSettings # noqa: F401 | ||
|
|
||
| __all__ = [ | ||
| "LoggingConfig", | ||
| "LoggingSettings", | ||
| "RequestIdContext", | ||
| "get_trace_id", | ||
| "trace_id_ctx", | ||
| "tracer", | ||
| ] | ||
|
Comment on lines
+1
to
+17
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The PR title mentions version bump to 0.2.12, but the actual version in the code is 0.2.13. This inconsistency should be corrected - either update the PR title to reflect 0.2.13 or change the version number to 0.2.12.