Skip to content

Commit c87586b

Browse files
authored
Merge pull request #36 from mongkok/pydantic-v2
Pydantic v2 support
2 parents e531103 + ad470b4 commit c87586b

File tree

16 files changed

+32
-180
lines changed

16 files changed

+32
-180
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
### 0.5.0
4+
5+
* Added Pydantic v2 support
6+
* Removed Pydantic v1 support
7+
* Removed `PydanticPanel`
8+
39
### 0.4.0
410

511
* Fixed middleware `url_path_for`

debug_toolbar/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.4.0"
1+
__version__ = "0.5.0"

debug_toolbar/panels/__init__.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import typing as t
22

33
from fastapi import Request, Response
4-
from starlette.datastructures import URL
54
from starlette.middleware.base import RequestResponseEndpoint
65

76
from debug_toolbar.types import ServerTiming, Stats
@@ -67,11 +66,11 @@ def content(self) -> str:
6766
def render(self, **context: t.Any) -> str:
6867
return self.toolbar.render(self.template, **context)
6968

70-
def url_for(self, name: str, **path_params: t.Any) -> URL:
71-
return self.toolbar.request.url_for(name, **path_params)
69+
def url_for(self, name: str, **path_params: t.Any) -> str:
70+
return str(self.toolbar.request.url_for(name, **path_params))
7271

7372
@property
74-
def scripts(self) -> t.List[URL]:
73+
def scripts(self) -> t.List[str]:
7574
return []
7675

7776
async def process_request(self, request: Request) -> Response:

debug_toolbar/panels/pydantic.py

-108
This file was deleted.

debug_toolbar/panels/sql.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import sqlparse
88
from fastapi import Request, Response
99
from fastapi.encoders import jsonable_encoder
10-
from pydantic.color import Color
10+
from pydantic_extra_types.color import Color
1111
from sqlparse import tokens as T
1212

1313
from debug_toolbar.panels import Panel

debug_toolbar/panels/timer.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
from time import perf_counter
33

44
from fastapi import Request, Response
5-
from starlette.datastructures import URL
65

76
from debug_toolbar.panels import Panel
87
from debug_toolbar.types import ServerTiming, Stats
@@ -46,7 +45,7 @@ def content(self) -> str:
4645
return self.render(rows=rows)
4746

4847
@property
49-
def scripts(self) -> t.List[URL]:
48+
def scripts(self) -> t.List[str]:
5049
scripts = super().scripts
5150
scripts.append(self.url_for("debug_toolbar.static", path="js/timer.js"))
5251
return scripts

debug_toolbar/panels/versions.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import typing as t
22

33
from fastapi import Request, Response, __version__
4-
from starlette.datastructures import URL
54

65
from debug_toolbar.panels import Panel
76
from debug_toolbar.types import Stats
@@ -16,7 +15,7 @@ def nav_subtitle(self) -> str:
1615
return f"FastAPI {__version__}"
1716

1817
@property
19-
def scripts(self) -> t.List[URL]:
18+
def scripts(self) -> t.List[str]:
2019
scripts = super().scripts
2120
scripts.append(self.url_for("debug_toolbar.static", path="js/versions.js"))
2221
return scripts

debug_toolbar/settings.py

+12-11
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,25 @@
22

33
from jinja2 import BaseLoader, ChoiceLoader, Environment, PackageLoader
44
from jinja2.ext import Extension
5-
from pydantic import BaseSettings, Field, IPvAnyAddress, root_validator
6-
from pydantic.color import Color
5+
from pydantic import Field, IPvAnyAddress, model_validator
6+
from pydantic_extra_types.color import Color
7+
from pydantic_settings import BaseSettings, SettingsConfigDict
78

89

910
class DebugToolbarSettings(BaseSettings):
11+
model_config = SettingsConfigDict(
12+
title="Debug Toolbar",
13+
env_prefix="DT_",
14+
case_sensitive=False,
15+
)
16+
1017
DEFAULT_PANELS: t.List[str] = Field(
1118
[
1219
"debug_toolbar.panels.versions.VersionsPanel",
1320
"debug_toolbar.panels.timer.TimerPanel",
1421
"debug_toolbar.panels.settings.SettingsPanel",
1522
"debug_toolbar.panels.request.RequestPanel",
1623
"debug_toolbar.panels.headers.HeadersPanel",
17-
"debug_toolbar.panels.pydantic.PydanticPanel",
1824
"debug_toolbar.panels.routes.RoutesPanel",
1925
"debug_toolbar.panels.logging.LoggingPanel",
2026
"debug_toolbar.panels.profiling.ProfilingPanel",
@@ -129,11 +135,6 @@ class DebugToolbarSettings(BaseSettings):
129135
),
130136
)
131137

132-
class Config:
133-
title = "Debug Toolbar"
134-
env_prefix = "DT_"
135-
case_sensitive = True
136-
137138
def __init__(self, **settings: t.Any) -> None:
138139
super().__init__(**settings)
139140
loaders = self.JINJA_LOADERS + [PackageLoader("debug_toolbar", "templates")]
@@ -144,6 +145,6 @@ def __init__(self, **settings: t.Any) -> None:
144145
for extension in self.JINJA_EXTENSIONS:
145146
self.JINJA_ENV.add_extension(extension)
146147

147-
@root_validator(pre=True)
148-
def ci(cls, values: t.Dict[str, t.Any]) -> t.Dict[str, t.Any]:
149-
return {k.upper(): v for k, v in values.items()}
148+
@model_validator(mode="before")
149+
def ci(cls, data: dict):
150+
return {k.upper(): v for k, v in data.items()}

debug_toolbar/templates/panels/pydantic.html

-34
This file was deleted.

debug_toolbar/templates/panels/settings.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% macro pprint_settings(settings, exclude=None) %}
2-
{% if settings.__config__.title %}<h4>{{ settings.__config__.title }}</h4>{% endif %}
2+
{% if settings.model_config.title %}<h4>{{ settings.model_config.title }}</h4>{% endif %}
33

44
<table>
55
<thead>

debug_toolbar/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from fastapi import Request
88
from fastapi.routing import APIRoute
9-
from pydantic.color import Color
9+
from pydantic_extra_types.color import Color
1010
from starlette.routing import Match
1111

1212

docs/img/panels/Pydantic.png

-87 KB
Binary file not shown.

docs/panels/default.md

-4
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,6 @@ Add your pydantic's [BaseSettings](https://pydantic-docs.helpmanual.io/usage/set
2626

2727
![Headers panel](../img/panels/Headers.png)
2828

29-
## Pydantic
30-
31-
![Pydantic panel](../img/panels/Pydantic.png)
32-
3329
## Routes
3430

3531
![Routes panel](../img/panels/Routes.png)

docs/src/panels/settings.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from debug_toolbar.middleware import DebugToolbarMiddleware
22
from fastapi import FastAPI
3-
from pydantic import BaseSettings, SecretStr
3+
from pydantic import SecretStr
4+
from pydantic_settings import BaseSettings
45

56

67
class APISettings(BaseSettings):

pyproject.toml

+3
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ dependencies = [
4545
"fastapi >=0.70.0",
4646
"anyio >=3.0.0",
4747
"Jinja2 >=2.9",
48+
"pydantic >=2.0",
49+
"pydantic-extra-types >=2.0.0",
50+
"pydantic-settings >=2.0.0",
4851
"pyinstrument >=3.0.0",
4952
"sqlparse >=0.2.0",
5053
]

tests/panels/test_pydantic.py

-10
This file was deleted.

0 commit comments

Comments
 (0)