basalt_postgres
Postgres backend for the Basalt Dart ORM — a driver-backed Connection + SqlDialect on package:postgres, with introspection and json/uuid/numeric/array codecs.
0.1.0
4akloon/basalt_dart
What this package is like to depend on
Last release 1 months ago
22 Jul 2026
Too new to tell
only 2 release windows
Nearly every release is documented
notes for 3 of 3 stable releases
Nothing withdrawn
no release was ever pulled
1 months old
3 releases · first in 2026
3 releases in the last 12 months
see the full history below
Release timeline
3 releases · Jul 2026 to Jul 2026Releases
latest 3-
0.1.022 Jul 2026Release notes
Open source →- Requires
basalt >=0.1.0 <0.2.0— the new table-marker shape (final class X extends TableRef<X>with owner-linked columns). - Raised the driver lower bound to
postgres ^3.5.0— the connection usesTxSession, which older 3.x versions don't ship (fixes downgrade analysis). - No functional changes.
- Requires
-
0.0.216 Jul 2026Release notes
Open source →PostgresDialect.castType— implements the newSqlDialectseam, mapping the core types to native Postgres names (IntSqlType→bigint,DateTimeSqlType→timestamptz, ...) so theVALUEStable of a batchupdateAllstays preparable; unwrapsNullableSqlType.PostgresTypedSqlType— new opt-in interface for custom codecs to name their native type; implemented byPostgresJsonbSqlType(jsonb),PostgresUuidSqlType(uuid),PostgresNumericSqlType(numeric) andPostgresArraySqlType(common element types).- Requires
basalt >=0.0.2 <0.1.0.
-
0.0.113 Jul 2026Release notes
Open source →Initial development release of the Postgres backend for basalt_dart.
PostgresDialect— theSqlDialectimplementation with$Nplaceholders and quoted identifiers.PostgresConnection— an asyncConnectionoverpackage:postgreswith transactions and nestedSAVEPOINTsupport.information_schemaintrospection (tables, columns, nullability, primary & foreign keys; arrays keyed byudt_name) for the CLI'sgenerate-schema.PostgresAdapter/PostgresEndpoint(lib/adapter.dart) — theBasaltAdapterCLI seam.- Native PG type codecs, emitted by the adapter's
native_typespreset:PostgresJsonbSqlType(json/jsonb),PostgresUuidSqlType(uuid),PostgresNumericSqlType(exact decimal asString), andPostgresArraySqlType<E>(integer[]/text[]/double[]/boolean[], …).