Updated
This commit is contained in:
parent
03ef2705bd
commit
57f4c0d618
9 changed files with 33 additions and 26 deletions
packages/orm
angel_migration_runner
angel_orm
angel_orm_generator
angel_orm_postgres
angel_orm_test
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
## 4.1.0
|
## 4.1.0
|
||||||
|
|
||||||
* Added support `MySQL` database support
|
* Added support for `MySQL` and `MariaDB` database
|
||||||
|
|
||||||
## 4.0.2
|
## 4.0.2
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,6 @@ Command-line based database migration runner for Angel3 ORM.
|
||||||
|
|
||||||
Supported database:
|
Supported database:
|
||||||
|
|
||||||
* Postgresql version 10, 11, 12, 13 and 14
|
* PostgreSQL version 10 or later
|
||||||
* MySQL version 5, 6 and 7
|
* MySQL 8.0 or later
|
||||||
* Maria 10
|
* MariaBb 10.2.1 or later
|
||||||
|
|
|
@ -14,8 +14,8 @@ dependencies:
|
||||||
logging: ^1.0.0
|
logging: ^1.0.0
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
angel3_model: ^3.0.0
|
angel3_model: ^3.0.0
|
||||||
angel3_serialize: ^4.0.0
|
angel3_serialize: ^4.1.0
|
||||||
angel3_serialize_generator: ^4.0.0
|
angel3_serialize_generator: ^4.1.0
|
||||||
build_runner: ^2.0.1
|
build_runner: ^2.1.1
|
||||||
test: ^1.17.4
|
test: ^1.17.4
|
||||||
lints: ^1.0.0
|
lints: ^1.0.0
|
|
@ -22,5 +22,4 @@ Run the following command to generate the required `.g.dart` files for Angel3 OR
|
||||||
|
|
||||||
## Supported database
|
## Supported database
|
||||||
|
|
||||||
* PostgreSQL version 10, 11, 12, 13 and 14
|
* PostgreSQL version 10 or later
|
||||||
* MySQL 8.0 or later
|
|
||||||
|
|
|
@ -30,9 +30,9 @@ dev_dependencies:
|
||||||
postgres: ^2.4.0
|
postgres: ^2.4.0
|
||||||
test: ^1.17.3
|
test: ^1.17.3
|
||||||
lints: ^1.0.0
|
lints: ^1.0.0
|
||||||
dependency_overrides:
|
#dependency_overrides:
|
||||||
angel3_orm:
|
# angel3_orm:
|
||||||
path: ../angel_orm
|
# path: ../angel_orm
|
||||||
angel3_migration:
|
# angel3_migration:
|
||||||
path: ../angel_migration
|
# path: ../angel_migration
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 3.2.1
|
||||||
|
|
||||||
|
* Fixed null safety errors
|
||||||
|
|
||||||
## 3.2.0
|
## 3.2.0
|
||||||
|
|
||||||
* Added `package:postgres_pool` for connection pooling
|
* Added `package:postgres_pool` for connection pooling
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
name: angel3_orm_postgres
|
name: angel3_orm_postgres
|
||||||
version: 3.2.0
|
version: 3.2.1
|
||||||
description: PostgreSQL support for Angel3 ORM. Includes functionality for querying and transactions.
|
description: PostgreSQL support for Angel3 ORM. Includes functionality for querying and transactions.
|
||||||
homepage: https://angel3-framework.web.app/
|
homepage: https://angel3-framework.web.app/
|
||||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/orm/angel_orm_postgres
|
repository: https://github.com/dukefirehawk/angel/tree/master/packages/orm/angel_orm_postgres
|
||||||
|
@ -16,8 +16,8 @@ dev_dependencies:
|
||||||
angel3_orm_test: ^3.0.0
|
angel3_orm_test: ^3.0.0
|
||||||
test: ^1.17.5
|
test: ^1.17.5
|
||||||
lints: ^1.0.0
|
lints: ^1.0.0
|
||||||
dependency_overrides:
|
#dependency_overrides:
|
||||||
angel3_orm_test:
|
# angel3_orm_test:
|
||||||
path: ../angel_orm_test
|
# path: ../angel_orm_test
|
||||||
angel3_orm:
|
# angel3_orm:
|
||||||
path: ../angel_orm
|
# path: ../angel_orm
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 3.0.4
|
||||||
|
|
||||||
|
* Updated test cases
|
||||||
|
|
||||||
## 3.0.3
|
## 3.0.3
|
||||||
|
|
||||||
* Added `performance_test` test cases
|
* Added `performance_test` test cases
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
name: angel3_orm_test
|
name: angel3_orm_test
|
||||||
version: 3.0.3
|
version: 3.0.4
|
||||||
description: Common tests for Angel3 ORM. Reference implmentation of the generated ORM files.
|
description: Common tests for Angel3 ORM. Reference implmentation of the generated ORM files.
|
||||||
homepage: https://angel3-framework.web.app/
|
homepage: https://angel3-framework.web.app/
|
||||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/orm/angel_orm_test
|
repository: https://github.com/dukefirehawk/angel/tree/master/packages/orm/angel_orm_test
|
||||||
|
@ -19,12 +19,12 @@ dev_dependencies:
|
||||||
angel3_framework: ^4.2.0
|
angel3_framework: ^4.2.0
|
||||||
build_runner: ^2.0.1
|
build_runner: ^2.0.1
|
||||||
lints: ^1.0.0
|
lints: ^1.0.0
|
||||||
dependency_overrides:
|
#dependency_overrides:
|
||||||
# angel3_migration_runner:
|
# angel3_migration_runner:
|
||||||
# path: ../angel_migration_runner
|
# path: ../angel_migration_runner
|
||||||
angel3_orm:
|
# angel3_orm:
|
||||||
path: ../angel_orm
|
# path: ../angel_orm
|
||||||
# angel3_migration:
|
# angel3_migration:
|
||||||
# path: ..//angel_migration
|
# path: ..//angel_migration
|
||||||
angel3_orm_generator:
|
# angel3_orm_generator:
|
||||||
path: ../angel_orm_generator
|
# path: ../angel_orm_generator
|
||||||
|
|
Loading…
Reference in a new issue