dialoguemd / fastapi-sqla

SQLAlchemy extension for FastAPI with support for pagination, asyncio, SQLModel and pytest, ready for production.
MIT License
172 stars 11 forks source link

chore(deps): update dependency pydantic to v2.4.0 [security] #129

Closed github-renovate-self-hosted closed 2 months ago

github-renovate-self-hosted commented 2 months ago

This PR contains the following updates:

Package Type Update Change
pydantic (changelog) dependencies minor 2.1.1 -> 2.4.0

GitHub Vulnerability Alerts

CVE-2024-3772

Regular expression denial of service in Pydantic < 2.4.0, < 1.10.13 allows remote attackers to cause denial of service via a crafted email string.


Release Notes

pydantic/pydantic (pydantic) ### [`v2.4.0`](https://togithub.com/pydantic/pydantic/blob/HEAD/HISTORY.md#v240-2023-09-22) [Compare Source](https://togithub.com/pydantic/pydantic/compare/v2.3.0...v2.4.0) [GitHub release](https://togithub.com/pydantic/pydantic/releases/tag/v2.4.0) ##### What's Changed ##### Packaging - Update pydantic-core to 2.10.0 by [@​samuelcolvin](https://togithub.com/samuelcolvin) in [#​7542](https://togithub.com/pydantic/pydantic/pull/7542) ##### New Features - Add `Base64Url` types by [@​dmontagu](https://togithub.com/dmontagu) in [#​7286](https://togithub.com/pydantic/pydantic/pull/7286) - Implement optional `number` to `str` coercion by [@​lig](https://togithub.com/lig) in [#​7508](https://togithub.com/pydantic/pydantic/pull/7508) - Allow access to `field_name` and `data` in all validators if there is data and a field name by [@​samuelcolvin](https://togithub.com/samuelcolvin) in [#​7542](https://togithub.com/pydantic/pydantic/pull/7542) - Add `BaseModel.model_validate_strings` and `TypeAdapter.validate_strings` by [@​hramezani](https://togithub.com/hramezani) in [#​7552](https://togithub.com/pydantic/pydantic/pull/7552) - Add Pydantic `plugins` experimental implementation by [@​lig](https://togithub.com/lig) [@​samuelcolvin](https://togithub.com/samuelcolvin) and [@​Kludex](https://togithub.com/Kludex) in [#​6820](https://togithub.com/pydantic/pydantic/pull/6820) ##### Changes - Do not override `model_post_init` in subclass with private attrs by [@​Viicos](https://togithub.com/Viicos) in [#​7302](https://togithub.com/pydantic/pydantic/pull/7302) - Make fields with defaults not required in the serialization schema by default by [@​dmontagu](https://togithub.com/dmontagu) in [#​7275](https://togithub.com/pydantic/pydantic/pull/7275) - Mark `Extra` as deprecated by [@​disrupted](https://togithub.com/disrupted) in [#​7299](https://togithub.com/pydantic/pydantic/pull/7299) - Make `EncodedStr` a dataclass by [@​Kludex](https://togithub.com/Kludex) in [#​7396](https://togithub.com/pydantic/pydantic/pull/7396) - Move `annotated_handlers` to be public by [@​samuelcolvin](https://togithub.com/samuelcolvin) in [#​7569](https://togithub.com/pydantic/pydantic/pull/7569) ##### Performance - Simplify flattening and inlining of `CoreSchema` by [@​adriangb](https://togithub.com/adriangb) in [#​7523](https://togithub.com/pydantic/pydantic/pull/7523) - Remove unused copies in `CoreSchema` walking by [@​adriangb](https://togithub.com/adriangb) in [#​7528](https://togithub.com/pydantic/pydantic/pull/7528) - Add caches for collecting definitions and invalid schemas from a CoreSchema by [@​adriangb](https://togithub.com/adriangb) in [#​7527](https://togithub.com/pydantic/pydantic/pull/7527) - Eagerly resolve discriminated unions and cache cases where we can't by [@​adriangb](https://togithub.com/adriangb) in [#​7529](https://togithub.com/pydantic/pydantic/pull/7529) - Replace `dict.get` and `dict.setdefault` with more verbose versions in `CoreSchema` building hot paths by [@​adriangb](https://togithub.com/adriangb) in [#​7536](https://togithub.com/pydantic/pydantic/pull/7536) - Cache invalid `CoreSchema` discovery by [@​adriangb](https://togithub.com/adriangb) in [#​7535](https://togithub.com/pydantic/pydantic/pull/7535) - Allow disabling `CoreSchema` validation for faster startup times by [@​adriangb](https://togithub.com/adriangb) in [#​7565](https://togithub.com/pydantic/pydantic/pull/7565) ##### Fixes - Fix config detection for `TypedDict` from grandparent classes by [@​dmontagu](https://togithub.com/dmontagu) in [#​7272](https://togithub.com/pydantic/pydantic/pull/7272) - Fix hash function generation for frozen models with unusual MRO by [@​dmontagu](https://togithub.com/dmontagu) in [#​7274](https://togithub.com/pydantic/pydantic/pull/7274) - Make `strict` config overridable in field for Path by [@​hramezani](https://togithub.com/hramezani) in [#​7281](https://togithub.com/pydantic/pydantic/pull/7281) - Use `ser_json_` on default in `GenerateJsonSchema` by [@​Kludex](https://togithub.com/Kludex) in [#​7269](https://togithub.com/pydantic/pydantic/pull/7269) - Adding a check that alias is validated as an identifier for Python by [@​andree0](https://togithub.com/andree0) in [#​7319](https://togithub.com/pydantic/pydantic/pull/7319) - Raise an error when computed field overrides field by [@​sydney-runkle](https://togithub.com/sydney-runkle) in [#​7346](https://togithub.com/pydantic/pydantic/pull/7346) - Fix applying `SkipValidation` to referenced schemas by [@​adriangb](https://togithub.com/adriangb) in [#​7381](https://togithub.com/pydantic/pydantic/pull/7381) - Enforce behavior of private attributes having double leading underscore by [@​lig](https://togithub.com/lig) in [#​7265](https://togithub.com/pydantic/pydantic/pull/7265) - Standardize `__get_pydantic_core_schema__` signature by [@​hramezani](https://togithub.com/hramezani) in [#​7415](https://togithub.com/pydantic/pydantic/pull/7415) - Fix generic dataclass fields mutation bug (when using `TypeAdapter`) by [@​sydney-runkle](https://togithub.com/sydney-runkle) in [#​7435](https://togithub.com/pydantic/pydantic/pull/7435) - Fix `TypeError` on `model_validator` in `wrap` mode by [@​pmmmwh](https://togithub.com/pmmmwh) in [#​7496](https://togithub.com/pydantic/pydantic/pull/7496) - Improve enum error message by [@​hramezani](https://togithub.com/hramezani) in [#​7506](https://togithub.com/pydantic/pydantic/pull/7506) - Make `repr` work for instances that failed initialization when handling `ValidationError`s by [@​dmontagu](https://togithub.com/dmontagu) in [#​7439](https://togithub.com/pydantic/pydantic/pull/7439) - Fixed a regular expression denial of service issue by limiting whitespaces by [@​prodigysml](https://togithub.com/prodigysml) in [#​7360](https://togithub.com/pydantic/pydantic/pull/7360) - Fix handling of `UUID` values having `UUID.version=None` by [@​lig](https://togithub.com/lig) in [#​7566](https://togithub.com/pydantic/pydantic/pull/7566) - Fix `__iter__` returning private `cached_property` info by [@​sydney-runkle](https://togithub.com/sydney-runkle) in [#​7570](https://togithub.com/pydantic/pydantic/pull/7570) - Improvements to version info message by [@​samuelcolvin](https://togithub.com/samuelcolvin) in [#​7594](https://togithub.com/pydantic/pydantic/pull/7594) ##### New Contributors - [@​15498th](https://togithub.com/15498th) made their first contribution in [#​7238](https://togithub.com/pydantic/pydantic/pull/7238) - [@​GabrielCappelli](https://togithub.com/GabrielCappelli) made their first contribution in [#​7213](https://togithub.com/pydantic/pydantic/pull/7213) - [@​tobni](https://togithub.com/tobni) made their first contribution in [#​7184](https://togithub.com/pydantic/pydantic/pull/7184) - [@​redruin1](https://togithub.com/redruin1) made their first contribution in [#​7282](https://togithub.com/pydantic/pydantic/pull/7282) - [@​FacerAin](https://togithub.com/FacerAin) made their first contribution in [#​7288](https://togithub.com/pydantic/pydantic/pull/7288) - [@​acdha](https://togithub.com/acdha) made their first contribution in [#​7297](https://togithub.com/pydantic/pydantic/pull/7297) - [@​andree0](https://togithub.com/andree0) made their first contribution in [#​7319](https://togithub.com/pydantic/pydantic/pull/7319) - [@​gordonhart](https://togithub.com/gordonhart) made their first contribution in [#​7375](https://togithub.com/pydantic/pydantic/pull/7375) - [@​pmmmwh](https://togithub.com/pmmmwh) made their first contribution in [#​7496](https://togithub.com/pydantic/pydantic/pull/7496) - [@​disrupted](https://togithub.com/disrupted) made their first contribution in [#​7299](https://togithub.com/pydantic/pydantic/pull/7299) - [@​prodigysml](https://togithub.com/prodigysml) made their first contribution in [#​7360](https://togithub.com/pydantic/pydantic/pull/7360) ### [`v2.3.0`](https://togithub.com/pydantic/pydantic/blob/HEAD/HISTORY.md#v230-2023-08-23) [Compare Source](https://togithub.com/pydantic/pydantic/compare/v2.2.1...v2.3.0) [GitHub release](https://togithub.com/pydantic/pydantic/releases/tag/v2.3.0) - 🔥 Remove orphaned changes file from repo by [@​lig](https://togithub.com/lig) in [#​7168](https://togithub.com/pydantic/pydantic/pull/7168) - Add copy button on documentation by [@​Kludex](https://togithub.com/Kludex) in [#​7190](https://togithub.com/pydantic/pydantic/pull/7190) - Fix docs on JSON type by [@​Kludex](https://togithub.com/Kludex) in [#​7189](https://togithub.com/pydantic/pydantic/pull/7189) - Update mypy 1.5.0 to 1.5.1 in CI by [@​hramezani](https://togithub.com/hramezani) in [#​7191](https://togithub.com/pydantic/pydantic/pull/7191) - fix download links badge by [@​samuelcolvin](https://togithub.com/samuelcolvin) in [#​7200](https://togithub.com/pydantic/pydantic/pull/7200) - add 2.2.1 to changelog by [@​samuelcolvin](https://togithub.com/samuelcolvin) in [#​7212](https://togithub.com/pydantic/pydantic/pull/7212) - Make ModelWrapValidator protocols generic by [@​dmontagu](https://togithub.com/dmontagu) in [#​7154](https://togithub.com/pydantic/pydantic/pull/7154) - Correct `Field(..., exclude: bool)` docs by [@​samuelcolvin](https://togithub.com/samuelcolvin) in [#​7214](https://togithub.com/pydantic/pydantic/pull/7214) - Make shadowing attributes a warning instead of an error by [@​adriangb](https://togithub.com/adriangb) in [#​7193](https://togithub.com/pydantic/pydantic/pull/7193) - Document `Base64Str` and `Base64Bytes` by [@​Kludex](https://togithub.com/Kludex) in [#​7192](https://togithub.com/pydantic/pydantic/pull/7192) - Fix `config.defer_build` for serialization first cases by [@​samuelcolvin](https://togithub.com/samuelcolvin) in [#​7024](https://togithub.com/pydantic/pydantic/pull/7024) - clean Model docstrings in JSON Schema by [@​samuelcolvin](https://togithub.com/samuelcolvin) in [#​7210](https://togithub.com/pydantic/pydantic/pull/7210) - fix [#​7228](https://togithub.com/pydantic/pydantic/pull/7228) (typo): docs in `validators.md` to correct `validate_default` kwarg by [@​lmmx](https://togithub.com/lmmx) in [#​7229](https://togithub.com/pydantic/pydantic/pull/7229) - ✅ Implement `tzinfo.fromutc` method for `TzInfo` in `pydantic-core` by [@​lig](https://togithub.com/lig) in [#​7019](https://togithub.com/pydantic/pydantic/pull/7019) - Support `__get_validators__` by [@​hramezani](https://togithub.com/hramezani) in [#​7197](https://togithub.com/pydantic/pydantic/pull/7197) ### [`v2.2.1`](https://togithub.com/pydantic/pydantic/blob/HEAD/HISTORY.md#v221-2023-08-18) [Compare Source](https://togithub.com/pydantic/pydantic/compare/v2.2.0...v2.2.1) [GitHub release](https://togithub.com/pydantic/pydantic/releases/tag/v2.2.1) - Make `xfail`ing test for root model extra stop `xfail`ing by [@​dmontagu](https://togithub.com/dmontagu) in [#​6937](https://togithub.com/pydantic/pydantic/pull/6937) - Optimize recursion detection by stopping on the second visit for the same object by [@​mciucu](https://togithub.com/mciucu) in [#​7160](https://togithub.com/pydantic/pydantic/pull/7160) - fix link in docs by [@​tlambert03](https://togithub.com/tlambert03) in [#​7166](https://togithub.com/pydantic/pydantic/pull/7166) - Replace MiMalloc w/ default allocator by [@​adriangb](https://togithub.com/adriangb) in [pydantic/pydantic-core#900](https://togithub.com/pydantic/pydantic-core/pull/900) - Bump pydantic-core to 2.6.1 and prepare 2.2.1 release by [@​adriangb](https://togithub.com/adriangb) in [#​7176](https://togithub.com/pydantic/pydantic/pull/7176) ### [`v2.2.0`](https://togithub.com/pydantic/pydantic/blob/HEAD/HISTORY.md#v220-2023-08-17) [Compare Source](https://togithub.com/pydantic/pydantic/compare/v2.1.1...v2.2.0) [GitHub release](https://togithub.com/pydantic/pydantic/releases/tag/v2.2.0) - Split "pipx install" setup command into two commands on the documentation site by [@​nomadmtb](https://togithub.com/nomadmtb) in [#​6869](https://togithub.com/pydantic/pydantic/pull/6869) - Deprecate `Field.include` by [@​hramezani](https://togithub.com/hramezani) in [#​6852](https://togithub.com/pydantic/pydantic/pull/6852) - Fix typo in default factory error msg by [@​hramezani](https://togithub.com/hramezani) in [#​6880](https://togithub.com/pydantic/pydantic/pull/6880) - Simplify handling of typing.Annotated in GenerateSchema by [@​dmontagu](https://togithub.com/dmontagu) in [#​6887](https://togithub.com/pydantic/pydantic/pull/6887) - Re-enable fastapi tests in CI by [@​dmontagu](https://togithub.com/dmontagu) in [#​6883](https://togithub.com/pydantic/pydantic/pull/6883) - Make it harder to hit collisions with json schema defrefs by [@​dmontagu](https://togithub.com/dmontagu) in [#​6566](https://togithub.com/pydantic/pydantic/pull/6566) - Cleaner error for invalid input to `Path` fields by [@​samuelcolvin](https://togithub.com/samuelcolvin) in [#​6903](https://togithub.com/pydantic/pydantic/pull/6903) - :memo: support Coordinate Type by [@​yezz123](https://togithub.com/yezz123) in [#​6906](https://togithub.com/pydantic/pydantic/pull/6906) - Fix `ForwardRef` wrapper for py 3.10.0 (shim until bpo-45166) by [@​randomir](https://togithub.com/randomir) in [#​6919](https://togithub.com/pydantic/pydantic/pull/6919) - Fix misbehavior related to copying of RootModel by [@​dmontagu](https://togithub.com/dmontagu) in [#​6918](https://togithub.com/pydantic/pydantic/pull/6918) - Fix issue with recursion error caused by ParamSpec by [@​dmontagu](https://togithub.com/dmontagu) in [#​6923](https://togithub.com/pydantic/pydantic/pull/6923) - Add section about Constrained classes to the Migration Guide by [@​Kludex](https://togithub.com/Kludex) in [#​6924](https://togithub.com/pydantic/pydantic/pull/6924) - Use `main` branch for badge links by [@​Viicos](https://togithub.com/Viicos) in [#​6925](https://togithub.com/pydantic/pydantic/pull/6925) - Add test for v1/v2 Annotated discrepancy by [@​carlbordum](https://togithub.com/carlbordum) in [#​6926](https://togithub.com/pydantic/pydantic/pull/6926) - Make the v1 mypy plugin work with both v1 and v2 by [@​dmontagu](https://togithub.com/dmontagu) in [#​6921](https://togithub.com/pydantic/pydantic/pull/6921) - Fix issue where generic models couldn't be parametrized with BaseModel by [@​dmontagu](https://togithub.com/dmontagu) in [#​6933](https://togithub.com/pydantic/pydantic/pull/6933) - Remove xfail for discriminated union with alias by [@​dmontagu](https://togithub.com/dmontagu) in [#​6938](https://togithub.com/pydantic/pydantic/pull/6938) - add field_serializer to computed_field by [@​andresliszt](https://togithub.com/andresliszt) in [#​6965](https://togithub.com/pydantic/pydantic/pull/6965) - Use union_schema with Type\[Union\[...]] by [@​JeanArhancet](https://togithub.com/JeanArhancet) in [#​6952](https://togithub.com/pydantic/pydantic/pull/6952) - Fix inherited typeddict attributes / config by [@​adriangb](https://togithub.com/adriangb) in [#​6981](https://togithub.com/pydantic/pydantic/pull/6981) - fix dataclass annotated before validator called twice by [@​davidhewitt](https://togithub.com/davidhewitt) in [#​6998](https://togithub.com/pydantic/pydantic/pull/6998) - Update test-fastapi deselected tests by [@​hramezani](https://togithub.com/hramezani) in [#​7014](https://togithub.com/pydantic/pydantic/pull/7014) - Fix validator doc format by [@​hramezani](https://togithub.com/hramezani) in [#​7015](https://togithub.com/pydantic/pydantic/pull/7015) - Fix typo in docstring of model_json_schema by [@​AdamVinch-Federated](https://togithub.com/AdamVinch-Federated) in [#​7032](https://togithub.com/pydantic/pydantic/pull/7032) - remove unused "type ignores" with pyright by [@​samuelcolvin](https://togithub.com/samuelcolvin) in [#​7026](https://togithub.com/pydantic/pydantic/pull/7026) - Add benchmark representing FastAPI startup time by [@​adriangb](https://togithub.com/adriangb) in [#​7030](https://togithub.com/pydantic/pydantic/pull/7030) - Fix json_encoders for Enum subclasses by [@​adriangb](https://togithub.com/adriangb) in [#​7029](https://togithub.com/pydantic/pydantic/pull/7029) - Update docstring of `ser_json_bytes` regarding base64 encoding by [@​Viicos](https://togithub.com/Viicos) in [#​7052](https://togithub.com/pydantic/pydantic/pull/7052) - Allow `@validate_call` to work on async methods by [@​adriangb](https://togithub.com/adriangb) in [#​7046](https://togithub.com/pydantic/pydantic/pull/7046) - Fix: mypy error with `Settings` and `SettingsConfigDict` by [@​JeanArhancet](https://togithub.com/JeanArhancet) in [#​7002](https://togithub.com/pydantic/pydantic/pull/7002) - Fix some typos (repeated words and it's/its) by [@​eumiro](https://togithub.com/eumiro) in [#​7063](https://togithub.com/pydantic/pydantic/pull/7063) - Fix the typo in docstring by [@​harunyasar](https://togithub.com/harunyasar) in [#​7062](https://togithub.com/pydantic/pydantic/pull/7062) - Docs: Fix broken URL in the pydantic-settings package recommendation by [@​swetjen](https://togithub.com/swetjen) in [#​6995](https://togithub.com/pydantic/pydantic/pull/6995) - Handle constraints being applied to schemas that don't accept it by [@​adriangb](https://togithub.com/adriangb) in [#​6951](https://togithub.com/pydantic/pydantic/pull/6951) - Replace almost_equal_floats with math.isclose by [@​eumiro](https://togithub.com/eumiro) in [#​7082](https://togithub.com/pydantic/pydantic/pull/7082) - bump pydantic-core to 2.5.0 by [@​davidhewitt](https://togithub.com/davidhewitt) in [#​7077](https://togithub.com/pydantic/pydantic/pull/7077) - Add `short_version` and use it in links by [@​hramezani](https://togithub.com/hramezani) in [#​7115](https://togithub.com/pydantic/pydantic/pull/7115) - 📝 Add usage link to `RootModel` by [@​Kludex](https://togithub.com/Kludex) in [#​7113](https://togithub.com/pydantic/pydantic/pull/7113) - Revert "Fix default port for mongosrv DSNs ([#​6827](https://togithub.com/pydantic/pydantic/issues/6827))" by [@​Kludex](https://togithub.com/Kludex) in [#​7116](https://togithub.com/pydantic/pydantic/pull/7116) - Clarify validate_default and \_Unset handling in usage docs and migration guide by [@​benbenbang](https://togithub.com/benbenbang) in [#​6950](https://togithub.com/pydantic/pydantic/pull/6950) - Tweak documentation of `Field.exclude` by [@​Viicos](https://togithub.com/Viicos) in [#​7086](https://togithub.com/pydantic/pydantic/pull/7086) - Do not require `validate_assignment` to use `Field.frozen` by [@​Viicos](https://togithub.com/Viicos) in [#​7103](https://togithub.com/pydantic/pydantic/pull/7103) - tweaks to `_core_utils` by [@​samuelcolvin](https://togithub.com/samuelcolvin) in [#​7040](https://togithub.com/pydantic/pydantic/pull/7040) - Make DefaultDict working with set by [@​hramezani](https://togithub.com/hramezani) in [#​7126](https://togithub.com/pydantic/pydantic/pull/7126) - Don't always require typing.Generic as a base for partially parametrized models by [@​dmontagu](https://togithub.com/dmontagu) in [#​7119](https://togithub.com/pydantic/pydantic/pull/7119) - Fix issue with JSON schema incorrectly using parent class core schema by [@​dmontagu](https://togithub.com/dmontagu) in [#​7020](https://togithub.com/pydantic/pydantic/pull/7020) - Fix xfailed test related to TypedDict and alias_generator by [@​dmontagu](https://togithub.com/dmontagu) in [#​6940](https://togithub.com/pydantic/pydantic/pull/6940) - Improve error message for NameEmail by [@​dmontagu](https://togithub.com/dmontagu) in [#​6939](https://togithub.com/pydantic/pydantic/pull/6939) - Fix generic computed fields by [@​dmontagu](https://togithub.com/dmontagu) in [#​6988](https://togithub.com/pydantic/pydantic/pull/6988) - Reflect namedtuple default values during validation by [@​dmontagu](https://togithub.com/dmontagu) in [#​7144](https://togithub.com/pydantic/pydantic/pull/7144) - Update dependencies, fix pydantic-core usage, fix CI issues by [@​dmontagu](https://togithub.com/dmontagu) in [#​7150](https://togithub.com/pydantic/pydantic/pull/7150) - Add mypy 1.5.0 by [@​hramezani](https://togithub.com/hramezani) in [#​7118](https://togithub.com/pydantic/pydantic/pull/7118) - Handle non-json native enum values by [@​adriangb](https://togithub.com/adriangb) in [#​7056](https://togithub.com/pydantic/pydantic/pull/7056) - document `round_trip` in Json type documentation by [@​jc-louis](https://togithub.com/jc-louis) in [#​7137](https://togithub.com/pydantic/pydantic/pull/7137) - Relax signature checks to better support builtins and C extension functions as validators by [@​adriangb](https://togithub.com/adriangb) in [#​7101](https://togithub.com/pydantic/pydantic/pull/7101) - add union_mode='left_to_right' by [@​davidhewitt](https://togithub.com/davidhewitt) in [#​7151](https://togithub.com/pydantic/pydantic/pull/7151) - Include an error message hint for inherited ordering by [@​yvalencia91](https://togithub.com/yvalencia91) in [#​7124](https://togithub.com/pydantic/pydantic/pull/7124) - Fix one docs link and resolve some warnings for two others by [@​dmontagu](https://togithub.com/dmontagu) in [#​7153](https://togithub.com/pydantic/pydantic/pull/7153) - Include Field extra keys name in warning by [@​hramezani](https://togithub.com/hramezani) in [#​7136](https://togithub.com/pydantic/pydantic/pull/7136)

Configuration

📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Renovate Bot.

codecov[bot] commented 2 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 100.00%. Comparing base (e3159fc) to head (c52299c).

Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #129 +/- ## ========================================= Coverage 100.00% 100.00% ========================================= Files 10 10 Lines 473 473 Branches 64 64 ========================================= Hits 473 473 ``` | [Flag](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | Coverage Δ | | |---|---|---| | [python_version3.10-sqlalchemy1.4-pydantic1-asyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `98.30% <ø> (ø)` | | | [python_version3.10-sqlalchemy1.4-pydantic1-asyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `96.61% <ø> (ø)` | | | [python_version3.10-sqlalchemy1.4-pydantic1-noasyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `76.53% <ø> (ø)` | | | [python_version3.10-sqlalchemy1.4-pydantic1-noasyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `74.84% <ø> (ø)` | | | [python_version3.10-sqlalchemy1.4-pydantic2-asyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `98.30% <ø> (ø)` | | | [python_version3.10-sqlalchemy1.4-pydantic2-asyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `96.61% <ø> (ø)` | | | [python_version3.10-sqlalchemy1.4-pydantic2-noasyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `76.53% <ø> (ø)` | | | [python_version3.10-sqlalchemy1.4-pydantic2-noasyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `74.84% <ø> (ø)` | | | [python_version3.10-sqlalchemy2.0-pydantic1-asyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `97.67% <ø> (ø)` | | | [python_version3.10-sqlalchemy2.0-pydantic1-asyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `95.98% <ø> (ø)` | | | [python_version3.10-sqlalchemy2.0-pydantic1-noasyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `75.89% <ø> (ø)` | | | [python_version3.10-sqlalchemy2.0-pydantic1-noasyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `74.20% <ø> (ø)` | | | [python_version3.10-sqlalchemy2.0-pydantic2-asyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `97.67% <ø> (ø)` | | | [python_version3.10-sqlalchemy2.0-pydantic2-asyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `95.98% <ø> (ø)` | | | [python_version3.10-sqlalchemy2.0-pydantic2-noasyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `75.89% <ø> (ø)` | | | [python_version3.10-sqlalchemy2.0-pydantic2-noasyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `74.20% <ø> (ø)` | | | [python_version3.10-sqlalchemy2.0-sqlmodel-pydantic1-asyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `97.25% <ø> (ø)` | | | [python_version3.10-sqlalchemy2.0-sqlmodel-pydantic1-asyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `?` | | | [python_version3.10-sqlalchemy2.0-sqlmodel-pydantic1-noasyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `75.47% <ø> (ø)` | | | [python_version3.10-sqlalchemy2.0-sqlmodel-pydantic1-noasyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `73.78% <ø> (ø)` | | | [python_version3.10-sqlalchemy2.0-sqlmodel-pydantic2-asyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `97.25% <ø> (ø)` | | | [python_version3.10-sqlalchemy2.0-sqlmodel-pydantic2-asyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `95.56% <ø> (ø)` | | | [python_version3.10-sqlalchemy2.0-sqlmodel-pydantic2-noasyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `75.47% <ø> (ø)` | | | [python_version3.10-sqlalchemy2.0-sqlmodel-pydantic2-noasyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `73.78% <ø> (ø)` | | | [python_version3.11-sqlalchemy1.4-pydantic1-asyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `98.30% <ø> (ø)` | | | [python_version3.11-sqlalchemy1.4-pydantic1-asyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `96.61% <ø> (ø)` | | | [python_version3.11-sqlalchemy1.4-pydantic1-noasyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `76.53% <ø> (ø)` | | | [python_version3.11-sqlalchemy1.4-pydantic1-noasyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `74.84% <ø> (ø)` | | | [python_version3.11-sqlalchemy1.4-pydantic2-asyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `98.30% <ø> (ø)` | | | [python_version3.11-sqlalchemy1.4-pydantic2-asyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `96.61% <ø> (ø)` | | | [python_version3.11-sqlalchemy1.4-pydantic2-noasyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `76.53% <ø> (ø)` | | | [python_version3.11-sqlalchemy1.4-pydantic2-noasyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `74.84% <ø> (ø)` | | | [python_version3.11-sqlalchemy2.0-pydantic1-asyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `97.67% <ø> (ø)` | | | [python_version3.11-sqlalchemy2.0-pydantic1-asyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `95.98% <ø> (ø)` | | | [python_version3.11-sqlalchemy2.0-pydantic1-noasyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `75.89% <ø> (ø)` | | | [python_version3.11-sqlalchemy2.0-pydantic1-noasyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `?` | | | [python_version3.11-sqlalchemy2.0-pydantic2-asyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `97.67% <ø> (ø)` | | | [python_version3.11-sqlalchemy2.0-pydantic2-asyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `95.98% <ø> (ø)` | | | [python_version3.11-sqlalchemy2.0-pydantic2-noasyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `75.89% <ø> (ø)` | | | [python_version3.11-sqlalchemy2.0-pydantic2-noasyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `74.20% <ø> (ø)` | | | [python_version3.11-sqlalchemy2.0-sqlmodel-pydantic1-asyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `97.25% <ø> (ø)` | | | [python_version3.11-sqlalchemy2.0-sqlmodel-pydantic1-asyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `95.56% <ø> (ø)` | | | [python_version3.11-sqlalchemy2.0-sqlmodel-pydantic1-noasyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `75.47% <ø> (ø)` | | | [python_version3.11-sqlalchemy2.0-sqlmodel-pydantic1-noasyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `73.78% <ø> (ø)` | | | [python_version3.11-sqlalchemy2.0-sqlmodel-pydantic2-asyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `97.25% <ø> (ø)` | | | [python_version3.11-sqlalchemy2.0-sqlmodel-pydantic2-asyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `95.56% <ø> (ø)` | | | [python_version3.11-sqlalchemy2.0-sqlmodel-pydantic2-noasyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `75.47% <ø> (ø)` | | | [python_version3.11-sqlalchemy2.0-sqlmodel-pydantic2-noasyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `73.78% <ø> (ø)` | | | [python_version3.9-sqlalchemy1.4-pydantic1-asyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `98.30% <ø> (ø)` | | | [python_version3.9-sqlalchemy1.4-pydantic1-asyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `96.61% <ø> (ø)` | | | [python_version3.9-sqlalchemy1.4-pydantic1-noasyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `76.53% <ø> (ø)` | | | [python_version3.9-sqlalchemy1.4-pydantic1-noasyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `74.84% <ø> (ø)` | | | [python_version3.9-sqlalchemy1.4-pydantic2-asyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `98.30% <ø> (ø)` | | | [python_version3.9-sqlalchemy1.4-pydantic2-asyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `96.61% <ø> (ø)` | | | [python_version3.9-sqlalchemy1.4-pydantic2-noasyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `76.53% <ø> (ø)` | | | [python_version3.9-sqlalchemy1.4-pydantic2-noasyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `74.84% <ø> (ø)` | | | [python_version3.9-sqlalchemy2.0-pydantic1-asyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `97.67% <ø> (ø)` | | | [python_version3.9-sqlalchemy2.0-pydantic1-asyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `95.98% <ø> (ø)` | | | [python_version3.9-sqlalchemy2.0-pydantic1-noasyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `75.89% <ø> (ø)` | | | [python_version3.9-sqlalchemy2.0-pydantic1-noasyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `74.20% <ø> (ø)` | | | [python_version3.9-sqlalchemy2.0-pydantic2-asyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `97.67% <ø> (ø)` | | | [python_version3.9-sqlalchemy2.0-pydantic2-asyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `95.98% <ø> (ø)` | | | [python_version3.9-sqlalchemy2.0-pydantic2-noasyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `75.89% <ø> (ø)` | | | [python_version3.9-sqlalchemy2.0-pydantic2-noasyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `74.20% <ø> (ø)` | | | [python_version3.9-sqlalchemy2.0-sqlmodel-pydantic1-asyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `97.25% <ø> (ø)` | | | [python_version3.9-sqlalchemy2.0-sqlmodel-pydantic1-asyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `95.56% <ø> (ø)` | | | [python_version3.9-sqlalchemy2.0-sqlmodel-pydantic1-noasyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `?` | | | [python_version3.9-sqlalchemy2.0-sqlmodel-pydantic1-noasyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `73.78% <ø> (ø)` | | | [python_version3.9-sqlalchemy2.0-sqlmodel-pydantic2-asyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `97.25% <ø> (ø)` | | | [python_version3.9-sqlalchemy2.0-sqlmodel-pydantic2-asyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `?` | | | [python_version3.9-sqlalchemy2.0-sqlmodel-pydantic2-noasyncpg-aws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `?` | | | [python_version3.9-sqlalchemy2.0-sqlmodel-pydantic2-noasyncpg-noaws_rds_iam](https://app.codecov.io/gh/dialoguemd/fastapi-sqla/pull/129/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd) | `73.78% <ø> (ø)` | | Flags with carried forward coverage won't be shown. [Click here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=dialoguemd#carryforward-flags-in-the-pull-request-comment) to find out more.

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.