comon_orm_postgresql 0.0.1-alpha.2
comon_orm_postgresql: ^0.0.1-alpha.2 copied to clipboard
PostgreSQL adapter for comon_orm with runtime queries, migrations, and schema introspection.
Changelog #
0.0.1-alpha.2 #
- Added native PostgreSQL upsert and
createMany(skipDuplicates)throughON CONFLICTSQL. - Split the runtime into SQL-builder, relation-materializer, and transaction modules without changing the public adapter API.
- Added SQL pushdown for
distinct + cursorqueries and documented pool-backed runtime openers.
0.0.1-alpha.1 #
- Added generated-metadata runtime opening through
openFromGeneratedSchema(...)and generated PostgreSQL client helpers. - Moved normal runtime usage away from schema-path bootstrap toward generated metadata plus runtime datasource resolution.
- Updated adapter/runtime tests to cover generated runtime metadata flows.
- Refreshed docs and examples to match the generated-runtime-first PostgreSQL path.
0.0.1-alpha #
- First public alpha release.
- Added the PostgreSQL runtime adapter for
comon_orm. - Added PostgreSQL schema application, introspection, migration planning, apply, rollback, and status workflows.
- Added adapter bootstrap helpers from
schema.prismaand PostgreSQL connection URLs.