Updated angel_orm_postgres
This commit is contained in:
parent
68d2541f03
commit
516d366043
3 changed files with 35 additions and 19 deletions
|
@ -1,30 +1,46 @@
|
||||||
# 3.0.0-beta.1
|
# Change Log
|
||||||
|
|
||||||
|
## 3.0.0-beta.2
|
||||||
|
|
||||||
|
* Updated README
|
||||||
|
|
||||||
|
## 3.0.0-beta.1
|
||||||
|
|
||||||
* Migrated to support Dart SDK 2.12.x NNBD
|
* Migrated to support Dart SDK 2.12.x NNBD
|
||||||
|
|
||||||
# 2.0.0
|
## 2.0.0
|
||||||
|
|
||||||
* Migrated to work with Dart SDK 2.12.x Non NNBD
|
* Migrated to work with Dart SDK 2.12.x Non NNBD
|
||||||
|
|
||||||
# 1.1.0-beta.1
|
## 1.1.0-beta.1
|
||||||
|
|
||||||
* Improvements in how transactions are handled; rethrow failed exceptions after rolling back.
|
* Improvements in how transactions are handled; rethrow failed exceptions after rolling back.
|
||||||
* Remove deprecated executor classes.
|
* Remove deprecated executor classes.
|
||||||
|
|
||||||
# 1.1.0-beta
|
## 1.1.0-beta
|
||||||
|
|
||||||
* Updates for `package:angel_orm@2.1.0-beta`.
|
* Updates for `package:angel_orm@2.1.0-beta`.
|
||||||
|
|
||||||
# 1.0.0
|
## 1.0.0
|
||||||
|
|
||||||
* Bump to `1.0.0`. This package has actually been stable for several months.
|
* Bump to `1.0.0`. This package has actually been stable for several months.
|
||||||
|
|
||||||
# 1.0.0-dev.4
|
## 1.0.0-dev.4
|
||||||
|
|
||||||
* Port tests to use `angel_orm_test`.
|
* Port tests to use `angel_orm_test`.
|
||||||
|
|
||||||
# 1.0.0-dev.3
|
## 1.0.0-dev.3
|
||||||
|
|
||||||
* Support for `tableName`.
|
* Support for `tableName`.
|
||||||
|
|
||||||
# 1.0.0-dev.2
|
## 1.0.0-dev.2
|
||||||
|
|
||||||
* Add optional logging.
|
* Add optional logging.
|
||||||
|
|
||||||
# 1.0.0-dev.1
|
## 1.0.0-dev.1
|
||||||
|
|
||||||
* Changes to work with `package:angel_orm@2.0.0-dev.15`.
|
* Changes to work with `package:angel_orm@2.0.0-dev.15`.
|
||||||
|
|
||||||
# 1.0.0-dev
|
## 1.0.0-dev
|
||||||
|
|
||||||
* First version.
|
* First version.
|
|
@ -1,11 +1,11 @@
|
||||||
# angel3_orm_postgres
|
# Angel3 ORM for Postgresql
|
||||||
|
|
||||||
[![version](https://img.shields.io/badge/pub-v4.0.0-brightgreen)](https://pub.dartlang.org/packages/angel3_orm_postgres)
|
[![version](https://img.shields.io/badge/pub-v4.0.0-brightgreen)](https://pub.dartlang.org/packages/angel3_orm_postgres)
|
||||||
[![Null Safety](https://img.shields.io/badge/null-safety-brightgreen)](https://dart.dev/null-safety)
|
[![Null Safety](https://img.shields.io/badge/null-safety-brightgreen)](https://dart.dev/null-safety)
|
||||||
[![Gitter](https://img.shields.io/gitter/room/angel_dart/discussion)](https://gitter.im/angel_dart/discussion)
|
[![Gitter](https://img.shields.io/gitter/room/angel_dart/discussion)](https://gitter.im/angel_dart/discussion)
|
||||||
|
|
||||||
[![License](https://img.shields.io/github/license/dukefirehawk/angel)](https://github.com/dukefirehawk/angel/tree/angel3/packages/orm/angel_orm_postgres/LICENSE)
|
[![License](https://img.shields.io/github/license/dukefirehawk/angel)](https://github.com/dukefirehawk/angel/tree/angel3/packages/orm/angel_orm_postgres/LICENSE)
|
||||||
|
|
||||||
Postgresql support for Angel's ORM.
|
Postgresql support for Angel3 ORM. Supported version: 9, 10, 11 and 12.
|
||||||
|
|
||||||
For documentation about the ORM with postgres, head to the main project repo:
|
For documentation about the ORM, see [Developer Guide](https://angel3-docs.dukefirehawk.com/guides/orm)
|
||||||
[ORM Repo](https://github.com/dukefirehawk/angel/tree/angel3/packages/orm)
|
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
name: angel3_orm_postgres
|
name: angel3_orm_postgres
|
||||||
version: 3.0.0-beta.1
|
version: 3.0.0-beta.2
|
||||||
description: PostgreSQL support for Angel3's ORM. Includes functionality for querying and transactions.
|
description: PostgreSQL support for Angel3 ORM. Includes functionality for querying and transactions.
|
||||||
homepage: https://github.com/dukefirehawk/angel/tree/angel3/packages/orm/angel_orm_postgres
|
homepage: https://angel3-framework.web.app/
|
||||||
|
repository: https://github.com/dukefirehawk/angel/tree/angel3/packages/orm/angel_orm_postgres
|
||||||
environment:
|
environment:
|
||||||
sdk: '>=2.12.0 <3.0.0'
|
sdk: '>=2.12.0 <3.0.0'
|
||||||
dependencies:
|
dependencies:
|
||||||
|
@ -9,7 +10,6 @@ dependencies:
|
||||||
logging: ^1.0.1
|
logging: ^1.0.1
|
||||||
pool: ^1.5.0
|
pool: ^1.5.0
|
||||||
postgres: ^2.3.2
|
postgres: ^2.3.2
|
||||||
#optional: ^6.0.0-nullsafety.2
|
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
angel3_pretty_logging: ^3.0.0
|
angel3_pretty_logging: ^3.0.0
|
||||||
|
|
Loading…
Reference in a new issue