Sqlmodel

Latest version: v0.0.24

Safety actively analyzes 723607 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 3 of 4

0.0.12

Features

* ✨ Upgrade SQLAlchemy to 2.0. PR [700](https://github.com/tiangolo/sqlmodel/pull/700) by [tiangolo](https://github.com/tiangolo) including initial work in PR [#563](https://github.com/tiangolo/sqlmodel/pull/563) by [farahats9](https://github.com/farahats9).

Internal

* ⬆ [pre-commit.ci] pre-commit autoupdate. PR [686](https://github.com/tiangolo/sqlmodel/pull/686) by [pre-commit-ci[bot]](https://github.com/apps/pre-commit-ci).
* 👷 Upgrade latest-changes GitHub Action. PR [693](https://github.com/tiangolo/sqlmodel/pull/693) by [tiangolo](https://github.com/tiangolo).

0.0.11

Features

* ✨ Add support for passing a custom SQLAlchemy type to `Field()` with `sa_type`. PR [505](https://github.com/tiangolo/sqlmodel/pull/505) by [maru0123-2004](https://github.com/maru0123-2004).
* You might consider this a breaking change if you were using an incompatible combination of arguments, those arguments were not taking effect and now you will have a type error and runtime error telling you that.
* ✨ Do not allow invalid combinations of field parameters for columns and relationships, `sa_column` excludes `sa_column_args`, `primary_key`, `nullable`, etc. PR [681](https://github.com/tiangolo/sqlmodel/pull/681) by [tiangolo](https://github.com/tiangolo).

Docs

* 🎨 Update inline source examples, hide `` in annotations (from MkDocs Material). PR [677](https://github.com/tiangolo/sqlmodel/pull/677) by [Matthieu-LAURENT39](https://github.com/Matthieu-LAURENT39).

Internal

* ⬆ Update coverage requirement from ^6.2 to >=6.2,<8.0. PR [663](https://github.com/tiangolo/sqlmodel/pull/663) by [dependabot[bot]](https://github.com/apps/dependabot).
* ⬆ Update mkdocs-material requirement from 9.1.21 to 9.2.7. PR [675](https://github.com/tiangolo/sqlmodel/pull/675) by [dependabot[bot]](https://github.com/apps/dependabot).
* ⬆️ Upgrade mypy manually. PR [684](https://github.com/tiangolo/sqlmodel/pull/684) by [tiangolo](https://github.com/tiangolo).
* ⬆ Update black requirement from ^22.10.0 to >=22.10,<24.0. PR [664](https://github.com/tiangolo/sqlmodel/pull/664) by [dependabot[bot]](https://github.com/apps/dependabot).
* 👷 Update CI to build MkDocs Insiders only when the secrets are available, for Dependabot. PR [683](https://github.com/tiangolo/sqlmodel/pull/683) by [tiangolo](https://github.com/tiangolo).

0.0.10

Features

* ✨ Add support for all `Field` parameters from Pydantic `1.9.0` and above, make Pydantic `1.9.0` the minimum required version. PR [440](https://github.com/tiangolo/sqlmodel/pull/440) by [daniil-berg](https://github.com/daniil-berg).

Internal

* 🔧 Adopt Ruff for formatting. PR [679](https://github.com/tiangolo/sqlmodel/pull/679) by [tiangolo](https://github.com/tiangolo).

0.0.9

Breaking Changes

* 🗑️ Deprecate Python 3.6 and upgrade Poetry and Poetry Version Plugin. PR [627](https://github.com/tiangolo/sqlmodel/pull/627) by [tiangolo](https://github.com/tiangolo).

Features

* ✨ Raise a more clear error when a type is not valid. PR [425](https://github.com/tiangolo/sqlmodel/pull/425) by [ddanier](https://github.com/ddanier).

Fixes

* 🐛 Fix `AsyncSession` type annotations for `exec()`. PR [58](https://github.com/tiangolo/sqlmodel/pull/58) by [Bobronium](https://github.com/Bobronium).
* 🐛 Fix allowing using a `ForeignKey` directly, remove repeated column construction from `SQLModelMetaclass.__init__` and upgrade minimum SQLAlchemy to `>=1.4.36`. PR [443](https://github.com/tiangolo/sqlmodel/pull/443) by [daniil-berg](https://github.com/daniil-berg).
* 🐛 Fix enum type checks ordering in `get_sqlalchemy_type`. PR [669](https://github.com/tiangolo/sqlmodel/pull/669) by [tiangolo](https://github.com/tiangolo).
* 🐛 Fix SQLAlchemy version 1.4.36 breaks SQLModel relationships (315). PR [461](https://github.com/tiangolo/sqlmodel/pull/461) by [byrman](https://github.com/byrman).

Upgrades

* ⬆️ Upgrade support for SQLAlchemy 1.4.49, update tests. PR [519](https://github.com/tiangolo/sqlmodel/pull/519) by [sandrotosi](https://github.com/sandrotosi).
* ⬆ Raise SQLAlchemy version requirement to at least `1.4.29` (related to 434). PR [439](https://github.com/tiangolo/sqlmodel/pull/439) by [daniil-berg](https://github.com/daniil-berg).

Docs

* 📝 Clarify description of in-memory SQLite database in `docs/tutorial/create-db-and-table.md`. PR [601](https://github.com/tiangolo/sqlmodel/pull/601) by [SimonCW](https://github.com/SimonCW).
* 📝 Tweak wording in `docs/tutorial/fastapi/multiple-models.md`. PR [674](https://github.com/tiangolo/sqlmodel/pull/674) by [tiangolo](https://github.com/tiangolo).
* ✏️ Fix contributing instructions to run tests, update script name. PR [634](https://github.com/tiangolo/sqlmodel/pull/634) by [PookieBuns](https://github.com/PookieBuns).
* 📝 Update link to docs for intro to databases. PR [593](https://github.com/tiangolo/sqlmodel/pull/593) by [abenezerBelachew](https://github.com/abenezerBelachew).
* 📝 Update docs, use `offset` in example with `limit` and `where`. PR [273](https://github.com/tiangolo/sqlmodel/pull/273) by [jbmchuck](https://github.com/jbmchuck).
* 📝 Fix docs for Pydantic's fields using `le` (`lte` is invalid, use `le` ). PR [207](https://github.com/tiangolo/sqlmodel/pull/207) by [jrycw](https://github.com/jrycw).
* 📝 Update outdated link in `docs/db-to-code.md`. PR [649](https://github.com/tiangolo/sqlmodel/pull/649) by [MatveyF](https://github.com/MatveyF).
* ✏️ Fix typos found with codespell. PR [520](https://github.com/tiangolo/sqlmodel/pull/520) by [kianmeng](https://github.com/kianmeng).
* 📝 Fix typos (duplication) in main page. PR [631](https://github.com/tiangolo/sqlmodel/pull/631) by [Mr-DRP](https://github.com/Mr-DRP).
* 📝 Update release notes, add second author to PR. PR [429](https://github.com/tiangolo/sqlmodel/pull/429) by [br-follow](https://github.com/br-follow).
* 📝 Update instructions about how to make a foreign key required in `docs/tutorial/relationship-attributes/define-relationships-attributes.md`. PR [474](https://github.com/tiangolo/sqlmodel/pull/474) by [jalvaradosegura](https://github.com/jalvaradosegura).
* 📝 Update help SQLModel docs. PR [548](https://github.com/tiangolo/sqlmodel/pull/548) by [tiangolo](https://github.com/tiangolo).
* ✏️ Fix typo in internal function name `get_sqlachemy_type()`. PR [496](https://github.com/tiangolo/sqlmodel/pull/496) by [cmarqu](https://github.com/cmarqu).
* ✏️ Fix typo in docs. PR [446](https://github.com/tiangolo/sqlmodel/pull/446) by [davidbrochart](https://github.com/davidbrochart).
* ✏️ Fix typo in `docs/tutorial/create-db-and-table.md`. PR [477](https://github.com/tiangolo/sqlmodel/pull/477) by [FluffyDietEngine](https://github.com/FluffyDietEngine).
* ✏️ Fix small typos in docs. PR [481](https://github.com/tiangolo/sqlmodel/pull/481) by [micuffaro](https://github.com/micuffaro).

Internal

* ⬆ [pre-commit.ci] pre-commit autoupdate. PR [672](https://github.com/tiangolo/sqlmodel/pull/672) by [pre-commit-ci[bot]](https://github.com/apps/pre-commit-ci).
* ⬆ Bump dawidd6/action-download-artifact from 2.24.2 to 2.28.0. PR [660](https://github.com/tiangolo/sqlmodel/pull/660) by [dependabot[bot]](https://github.com/apps/dependabot).
* ✅ Refactor OpenAPI FastAPI tests to simplify updating them later, this moves things around without changes. PR [671](https://github.com/tiangolo/sqlmodel/pull/671) by [tiangolo](https://github.com/tiangolo).
* ⬆ Bump actions/checkout from 3 to 4. PR [670](https://github.com/tiangolo/sqlmodel/pull/670) by [dependabot[bot]](https://github.com/apps/dependabot).
* 🔧 Update mypy config, use `strict = true` instead of manual configs. PR [428](https://github.com/tiangolo/sqlmodel/pull/428) by [michaeloliverx](https://github.com/michaeloliverx).
* ⬆️ Upgrade MkDocs Material. PR [668](https://github.com/tiangolo/sqlmodel/pull/668) by [tiangolo](https://github.com/tiangolo).
* 🎨 Update docs format and references with pre-commit and Ruff. PR [667](https://github.com/tiangolo/sqlmodel/pull/667) by [tiangolo](https://github.com/tiangolo).
* 🎨 Run pre-commit on all files and autoformat. PR [666](https://github.com/tiangolo/sqlmodel/pull/666) by [tiangolo](https://github.com/tiangolo).
* 👷 Move to Ruff and add pre-commit. PR [661](https://github.com/tiangolo/sqlmodel/pull/661) by [tiangolo](https://github.com/tiangolo).
* 🛠️ Add `CITATION.cff` file for academic citations. PR [13](https://github.com/tiangolo/sqlmodel/pull/13) by [sugatoray](https://github.com/sugatoray).
* 👷 Update docs deployments to Cloudflare. PR [630](https://github.com/tiangolo/sqlmodel/pull/630) by [tiangolo](https://github.com/tiangolo).
* 👷‍♂️ Upgrade CI for docs. PR [628](https://github.com/tiangolo/sqlmodel/pull/628) by [tiangolo](https://github.com/tiangolo).
* 👷 Update CI debug mode with Tmate. PR [629](https://github.com/tiangolo/sqlmodel/pull/629) by [tiangolo](https://github.com/tiangolo).
* 👷 Update latest changes token. PR [616](https://github.com/tiangolo/sqlmodel/pull/616) by [tiangolo](https://github.com/tiangolo).
* ⬆️ Upgrade analytics. PR [558](https://github.com/tiangolo/sqlmodel/pull/558) by [tiangolo](https://github.com/tiangolo).
* 🔧 Update new issue chooser to point to GitHub Discussions. PR [546](https://github.com/tiangolo/sqlmodel/pull/546) by [tiangolo](https://github.com/tiangolo).
* 🔧 Add template for GitHub Discussion questions and update issues template. PR [544](https://github.com/tiangolo/sqlmodel/pull/544) by [tiangolo](https://github.com/tiangolo).
* 👷 Refactor CI artifact upload/download for docs previews. PR [514](https://github.com/tiangolo/sqlmodel/pull/514) by [tiangolo](https://github.com/tiangolo).
* ⬆ Bump actions/cache from 2 to 3. PR [497](https://github.com/tiangolo/sqlmodel/pull/497) by [dependabot[bot]](https://github.com/apps/dependabot).
* ⬆ Bump dawidd6/action-download-artifact from 2.24.0 to 2.24.2. PR [493](https://github.com/tiangolo/sqlmodel/pull/493) by [dependabot[bot]](https://github.com/apps/dependabot).
* 🔧 Update Smokeshow coverage threshold. PR [487](https://github.com/tiangolo/sqlmodel/pull/487) by [tiangolo](https://github.com/tiangolo).
* 👷 Move from Codecov to Smokeshow. PR [486](https://github.com/tiangolo/sqlmodel/pull/486) by [tiangolo](https://github.com/tiangolo).
* ⬆ Bump actions/setup-python from 2 to 4. PR [411](https://github.com/tiangolo/sqlmodel/pull/411) by [dependabot[bot]](https://github.com/apps/dependabot).
* ⬆ Update black requirement from ^21.5-beta.1 to ^22.10.0. PR [460](https://github.com/tiangolo/sqlmodel/pull/460) by [dependabot[bot]](https://github.com/apps/dependabot).
* ➕ Add extra dev dependencies for MkDocs Material. PR [485](https://github.com/tiangolo/sqlmodel/pull/485) by [tiangolo](https://github.com/tiangolo).
* ⬆ Update mypy requirement from 0.930 to 0.971. PR [380](https://github.com/tiangolo/sqlmodel/pull/380) by [dependabot[bot]](https://github.com/apps/dependabot).
* ⬆ Update coverage requirement from ^5.5 to ^6.2. PR [171](https://github.com/tiangolo/sqlmodel/pull/171) by [dependabot[bot]](https://github.com/apps/dependabot).
* ⬆ Bump codecov/codecov-action from 2 to 3. PR [415](https://github.com/tiangolo/sqlmodel/pull/415) by [dependabot[bot]](https://github.com/apps/dependabot).
* ⬆ Bump actions/upload-artifact from 2 to 3. PR [412](https://github.com/tiangolo/sqlmodel/pull/412) by [dependabot[bot]](https://github.com/apps/dependabot).
* ⬆ Update flake8 requirement from ^3.9.2 to ^5.0.4. PR [396](https://github.com/tiangolo/sqlmodel/pull/396) by [dependabot[bot]](https://github.com/apps/dependabot).
* ⬆ Update pytest requirement from ^6.2.4 to ^7.0.1. PR [242](https://github.com/tiangolo/sqlmodel/pull/242) by [dependabot[bot]](https://github.com/apps/dependabot).
* ⬆ Bump actions/checkout from 2 to 3.1.0. PR [458](https://github.com/tiangolo/sqlmodel/pull/458) by [dependabot[bot]](https://github.com/apps/dependabot).
* ⬆ Bump dawidd6/action-download-artifact from 2.9.0 to 2.24.0. PR [470](https://github.com/tiangolo/sqlmodel/pull/470) by [dependabot[bot]](https://github.com/apps/dependabot).
* 👷 Update Dependabot config. PR [484](https://github.com/tiangolo/sqlmodel/pull/484) by [tiangolo](https://github.com/tiangolo).

0.0.8

Fixes

* 🐛 Fix auto detecting and setting `nullable`, allowing overrides in field. PR [423](https://github.com/tiangolo/sqlmodel/pull/423) by [JonasKs](https://github.com/JonasKs).
* ♻️ Update `expresion.py`, sync from Jinja2 template, implement `inherit_cache` to solve errors like: `SAWarning: Class SelectOfScalar will not make use of SQL compilation caching`. PR [422](https://github.com/tiangolo/sqlmodel/pull/422) by [tiangolo](https://github.com/tiangolo).

Docs

* 📝 Adjust and clarify docs for `docs/tutorial/create-db-and-table.md`. PR [426](https://github.com/tiangolo/sqlmodel/pull/426) by [tiangolo](https://github.com/tiangolo).
* ✏ Fix typo in `docs/tutorial/connect/remove-data-connections.md`. PR [421](https://github.com/tiangolo/sqlmodel/pull/421) by [VerdantFox](https://github.com/VerdantFox).

0.0.7

Features

* ✨ Allow setting `unique` in `Field()` for a column. PR [83](https://github.com/tiangolo/sqlmodel/pull/83) by [raphaelgibson](https://github.com/raphaelgibson).
* ✨ Update GUID handling to use stdlib `UUID.hex` instead of an `int`. PR [26](https://github.com/tiangolo/sqlmodel/pull/26) by [andrewbolster](https://github.com/andrewbolster).
* ✨ Raise an exception when using a Pydantic field type with no matching SQLAlchemy type. PR [18](https://github.com/tiangolo/sqlmodel/pull/18) by [elben10](https://github.com/elben10).
* ⬆ Upgrade constrain for SQLAlchemy = ">=1.4.17,<=1.4.41". PR [371](https://github.com/tiangolo/sqlmodel/pull/371) by [RobertRosca](https://github.com/RobertRosca).
* ✨ Add new `Session.get()` parameter `execution_options`. PR [302](https://github.com/tiangolo/sqlmodel/pull/302) by [tiangolo](https://github.com/tiangolo).

Fixes

* 🐛 Fix type annotations for `Model.parse_obj()`, and `Model.validate()`. PR [321](https://github.com/tiangolo/sqlmodel/pull/321) by [phi-friday](https://github.com/phi-friday).
* 🐛 Fix `Select` and `SelectOfScalar` to inherit cache to avoid warning: `SAWarning: Class SelectOfScalar will not make use of SQL compilation caching`. PR [234](https://github.com/tiangolo/sqlmodel/pull/234) by [rabinadk1](https://github.com/rabinadk1).
* 🐛 Fix handling validators for non-default values. PR [253](https://github.com/tiangolo/sqlmodel/pull/253) by [byrman](https://github.com/byrman).
* 🐛 Fix fields marked as "set" in models. PR [117](https://github.com/tiangolo/sqlmodel/pull/117) by [statt8900](https://github.com/statt8900).
* 🐛 Fix Enum handling in SQLAlchemy. PR [165](https://github.com/tiangolo/sqlmodel/pull/165) by [chriswhite199](https://github.com/chriswhite199).
* 🐛 Fix setting nullable property of Fields that don't accept `None`. PR [79](https://github.com/tiangolo/sqlmodel/pull/79) by [van51](https://github.com/van51).
* 🐛 Fix SQLAlchemy version 1.4.36 breaks SQLModel relationships (315). PR [322](https://github.com/tiangolo/sqlmodel/pull/322) by [byrman](https://github.com/byrman).

Docs

* 📝 Update docs for models for updating, `id` should not be updatable. PR [335](https://github.com/tiangolo/sqlmodel/pull/335) by [kurtportelli](https://github.com/kurtportelli).
* ✏ Fix broken variable/typo in docs for Read Relationships, `hero_spider_boy.id` => `hero_spider_boy.team_id`. PR [106](https://github.com/tiangolo/sqlmodel/pull/106) by [yoannmos](https://github.com/yoannmos).
* 🎨 Remove unwanted highlight in the docs. PR [233](https://github.com/tiangolo/sqlmodel/pull/233) by [jalvaradosegura](https://github.com/jalvaradosegura).
* ✏ Fix typos in `docs/databases.md` and `docs/tutorial/index.md`. PR [35](https://github.com/tiangolo/sqlmodel/pull/35) by [prrao87](https://github.com/prrao87).
* ✏ Fix typo in `docs/tutorial/relationship-attributes/define-relationships-attributes.md`. PR [239](https://github.com/tiangolo/sqlmodel/pull/239) by [jalvaradosegura](https://github.com/jalvaradosegura).
* ✏ Fix typo in `docs/tutorial/fastapi/simple-hero-api.md`. PR [80](https://github.com/tiangolo/sqlmodel/pull/80) by [joemudryk](https://github.com/joemudryk).
* ✏ Fix typos in multiple files in the docs. PR [400](https://github.com/tiangolo/sqlmodel/pull/400) by [VictorGambarini](https://github.com/VictorGambarini).
* ✏ Fix typo in `docs/tutorial/code-structure.md`. PR [344](https://github.com/tiangolo/sqlmodel/pull/344) by [marciomazza](https://github.com/marciomazza).
* ✏ Fix typo in `docs/db-to-code.md`. PR [155](https://github.com/tiangolo/sqlmodel/pull/155) by [gr8jam](https://github.com/gr8jam).
* ✏ Fix typo in `docs/contributing.md`. PR [323](https://github.com/tiangolo/sqlmodel/pull/323) by [Fardad13](https://github.com/Fardad13).
* ✏ Fix typo in `docs/tutorial/fastapi/tests.md`. PR [265](https://github.com/tiangolo/sqlmodel/pull/265) by [johnhoman](https://github.com/johnhoman).
* ✏ Fix typo in `docs/tutorial/where.md`. PR [286](https://github.com/tiangolo/sqlmodel/pull/286) by [jalvaradosegura](https://github.com/jalvaradosegura).
* ✏ Fix typos in `docs/tutorial/fastapi/update.md`. PR [268](https://github.com/tiangolo/sqlmodel/pull/268) by [cirrusj](https://github.com/cirrusj).
* ✏ Fix typo in `docs/tutorial/fastapi/simple-hero-api.md`. PR [247](https://github.com/tiangolo/sqlmodel/pull/247) by [hao-wang](https://github.com/hao-wang).
* ✏ Fix typos in `docs/tutorial/automatic-id-none-refresh.md`, `docs/tutorial/fastapi/update.md`, `docs/tutorial/select.md`. PR [185](https://github.com/tiangolo/sqlmodel/pull/185) by [rootux](https://github.com/rootux).
* ✏ Fix typo in `docs/databases.md`. PR [177](https://github.com/tiangolo/sqlmodel/pull/177) by [seandlg](https://github.com/seandlg).
* ✏ Fix typos in `docs/tutorial/fastapi/update.md`. PR [162](https://github.com/tiangolo/sqlmodel/pull/162) by [wmcgee3](https://github.com/wmcgee3).
* ✏ Fix typos in `docs/tutorial/code-structure.md`, `docs/tutorial/fastapi/multiple-models.md`, `docs/tutorial/fastapi/simple-hero-api.md`, `docs/tutorial/many-to-many/index.md`. PR [116](https://github.com/tiangolo/sqlmodel/pull/116) by [moonso](https://github.com/moonso).
* ✏ Fix typo in `docs/tutorial/fastapi/teams.md`. PR [154](https://github.com/tiangolo/sqlmodel/pull/154) by [chrisgoddard](https://github.com/chrisgoddard).
* ✏ Fix typo variable in example about relationships and `back_populates`, always use `hero` instead of `owner`. PR [120](https://github.com/tiangolo/sqlmodel/pull/120) by [onionj](https://github.com/onionj).
* ✏ Fix typo in `docs/tutorial/fastapi/tests.md`. PR [113](https://github.com/tiangolo/sqlmodel/pull/113) by [feanil](https://github.com/feanil).
* ✏ Fix typo in `docs/tutorial/where.md`. PR [72](https://github.com/tiangolo/sqlmodel/pull/72) by [ZettZet](https://github.com/ZettZet).
* ✏ Fix typo in `docs/tutorial/code-structure.md`. PR [91](https://github.com/tiangolo/sqlmodel/pull/91) by [dhiraj](https://github.com/dhiraj).
* ✏ Fix broken link to newsletter sign-up in `docs/help.md`. PR [84](https://github.com/tiangolo/sqlmodel/pull/84) by [mborus](https://github.com/mborus).
* ✏ Fix typos in `docs/tutorial/many-to-many/create-models-with-link.md`. PR [45](https://github.com/tiangolo/sqlmodel/pull/45) by [xginn8](https://github.com/xginn8).
* ✏ Fix typo in `docs/tutorial/index.md`. PR [398](https://github.com/tiangolo/sqlmodel/pull/398) by [ryangrose](https://github.com/ryangrose).

Internal

* ♻ Refactor internal statements to simplify code. PR [53](https://github.com/tiangolo/sqlmodel/pull/53) by [yezz123](https://github.com/yezz123).
* ♻ Refactor internal imports to reduce redundancy. PR [272](https://github.com/tiangolo/sqlmodel/pull/272) by [aminalaee](https://github.com/aminalaee).
* ⬆ Update development requirement for FastAPI from `^0.68.0` to `^0.68.1`. PR [48](https://github.com/tiangolo/sqlmodel/pull/48) by [alucarddelta](https://github.com/alucarddelta).
* ⏪ Revert upgrade Poetry, to make a release that supports Python 3.6 first. PR [417](https://github.com/tiangolo/sqlmodel/pull/417) by [tiangolo](https://github.com/tiangolo).
* 👷 Add dependabot for GitHub Actions. PR [410](https://github.com/tiangolo/sqlmodel/pull/410) by [tiangolo](https://github.com/tiangolo).
* ⬆️ Upgrade Poetry to version `==1.2.0b1`. PR [303](https://github.com/tiangolo/sqlmodel/pull/303) by [tiangolo](https://github.com/tiangolo).
* 👷 Add CI for Python 3.10. PR [305](https://github.com/tiangolo/sqlmodel/pull/305) by [tiangolo](https://github.com/tiangolo).
* 📝 Add Jina's QA Bot to the docs to help people that want to ask quick questions. PR [263](https://github.com/tiangolo/sqlmodel/pull/263) by [tiangolo](https://github.com/tiangolo).
* 👷 Upgrade Codecov GitHub Action. PR [304](https://github.com/tiangolo/sqlmodel/pull/304) by [tiangolo](https://github.com/tiangolo).
* 💚 Only run CI on push when on master, to avoid duplicate runs on PRs. PR [244](https://github.com/tiangolo/sqlmodel/pull/244) by [tiangolo](https://github.com/tiangolo).
* 🔧 Upgrade MkDocs Material and update configs. PR [217](https://github.com/tiangolo/sqlmodel/pull/217) by [tiangolo](https://github.com/tiangolo).
* ⬆ Upgrade mypy, fix type annotations. PR [218](https://github.com/tiangolo/sqlmodel/pull/218) by [tiangolo](https://github.com/tiangolo).

Page 3 of 4

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.