Skip to content

Releases: andykais/torm

1.2.0

20 Dec 20:48
Compare
Choose a tag to compare

1.1.0

31 Jan 01:03
Compare
Choose a tag to compare
  • bump x/sqlite_native version to 1.0.5
  • create Vars to allow for arbitrary statement params and returns
  • allow regular strings and numbers in sql templates
  • add safety checks to migrations
  • params can now use aliases (SELECT ${Book.params.id.as('book_id')} becomes SELECT id AS book_id)

1.0.2

06 Jan 15:04
Compare
Choose a tag to compare
  • more ergonomic import paths

1.0.1

05 Jan 05:11
Compare
Choose a tag to compare

v1.0.0

05 Jan 04:44
Compare
Choose a tag to compare

initial release! Torm currently contains:

  • type safe queries
  • deno sqlite_native driver support
  • a migration system
  • a built in schemas model
  • field support for string, number, datetime and json, all of which can be declared .optional() or with .default(value)