0.32.1

drizzle-team/drizzle-orm0.32.1Jul 23, 2024by github-actions[bot]

AI Summary

This is a bug fix and improvement release for drizzle-orm 0.32.1. The release addresses several issues including fixing index typings to support 3+ columns with mixed columns and expressions, adding "limit 0" support across all dialects, and allowing inArray and notInArray to accept empty lists.

Key Highlights

  • Fixed index typings to support creating indexes on 3+ columns mixing columns and expressions
  • Added support for 'limit 0' in all dialects
  • Made inArray and notInArray accept empty lists
  • Fixed typo in lt typedoc documentation
  • Fixed wrong example in README.md

New Features

  • Support for 'limit 0' queries in all database dialects
  • inArray and notInArray now accept empty arrays as valid input

Full Release Notes

- Fix typings for indexes and allow creating indexes on 3+ columns mixing columns and expressions - thanks @lbguilherme!
- Added support for "limit 0" in all dialects - closes [#2011](https://github.com/drizzle-team/drizzle-orm/issues/2011) - thanks @sillvva!
- Make inArray and notInArray accept empty list, closes [#1295](https://github.com/drizzle-team/drizzle-orm/issues/1295) - thanks @RemiPeruto!
- fix typo in lt typedoc - thanks @dalechyn!
- fix wrong example in README.md - thanks @7flash!