β¨ Add support for Pydantic v2 (while keeping support for v1 if v2 is not available). PR #722 by @tiangolo including initial work in PR #699 by @AntonDeMeester.
β¨ Add support for passing a custom SQLAlchemy type to Field() with sa_type. PR #505 by @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 by @tiangolo.
π Fix AsyncSession type annotations for exec(). PR #58 by @Bobronium.
π Fix allowing using a ForeignKey directly, remove repeated column construction from SQLModelMetaclass.__init__ and upgrade minimum SQLAlchemy to >=1.4.36. PR #443 by @daniil-berg.
π Fix enum type checks ordering in get_sqlalchemy_type. PR #669 by @tiangolo.
π Fix SQLAlchemy version 1.4.36 breaks SQLModel relationships (#315). PR #461 by @byrman.
π Update docs, use offset in example with limit and where. PR #273 by @jbmchuck.
π Fix docs for Pydantic's fields using le (lte is invalid, use le ). PR #207 by @jrycw.
π Update outdated link in docs/db-to-code.md. PR #649 by @MatveyF.
βοΈ Fix typos found with codespell. PR #520 by @kianmeng.
π Fix typos (duplication) in main page. PR #631 by @Mr-DRP.
π Update release notes, add second author to PR. PR #429 by @br-follow.
π Update instructions about how to make a foreign key required in docs/tutorial/relationship-attributes/define-relationships-attributes.md. PR #474 by @jalvaradosegura.
π Update help SQLModel docs. PR #548 by @tiangolo.
βοΈ Fix typo in internal function name get_sqlachemy_type(). PR #496 by @cmarqu.
π Fix auto detecting and setting nullable, allowing overrides in field. PR #423 by @JonasKs and @br-follow.
β»οΈ 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 by @tiangolo.
π Fix type annotations for Model.parse_obj(), and Model.validate(). PR #321 by @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 by @rabinadk1.
π Fix handling validators for non-default values. PR #253 by @byrman.
π Fix fields marked as "set" in models. PR #117 by @statt8900.
...when creating the tables, SQLModel version 0.0.5 and below, would also create an index for name, one for secret_name, and one for age (id is the primary key, so it doesn't need an additional index).
If you depended on having an index for each one of those columns, now you can (and would have to) define them explicitly:
There's a high chance you don't need indexes for all the columns. For example, you might only need indexes for name and age, but not for secret_name. In that case, you could define the model as:
If you already created your database tables with SQLModel using versions 0.0.5 or below, it would have also created those indexes in the database. In that case, you might want to manually drop (remove) some of those indexes, if they are unnecessary, to avoid the extra cost in performance and space.
Depending on the database you are using, there will be a different way to find the available indexes.
For example, let's say you no longer need the index for secret_name. You could check the current indexes in the database and find the one for secret_name, it could be named ix_hero_secret_name. Then you can remove it with SQL:
DROPINDEXix_hero_secret_name
or
DROPINDEXix_hero_secret_nameONhero;
Here's the new, extensive documentation explaining indexes and how to use them: Indexes - Optimize Queries.
β¨ Document indexes and make them opt-in. Here's the new documentation: Indexes - Optimize Queries. This is the same change described above in Breaking Changes. PR #205 by @tiangolo.