Skip to content

0.31.2

Compare
Choose a tag to compare
@github-actions github-actions released this 07 Jun 15:27
· 445 commits to main since this release
4ecfe1f
  • 🎉 Added support for TiDB Cloud Serverless driver:

    import { connect } from '@tidbcloud/serverless';
    import { drizzle } from 'drizzle-orm/tidb-serverless';
    
    const client = connect({ url: '...' });
    const db = drizzle(client);
    await db.select().from(...);