Updated orm mysql
This commit is contained in:
parent
b670a08ae3
commit
08f47a2743
3 changed files with 24 additions and 19 deletions
|
@ -1,5 +1,13 @@
|
||||||
# 2.0.0-beta.1
|
# Change Log
|
||||||
|
|
||||||
|
## 2.0.0-beta.2
|
||||||
|
|
||||||
|
* Fixed NNBD issues
|
||||||
|
|
||||||
|
## 2.0.0-beta.1
|
||||||
|
|
||||||
* Migrated to support Dart SDK 2.12.x NNBD
|
* Migrated to support Dart SDK 2.12.x NNBD
|
||||||
|
|
||||||
# 1.0.0
|
## 1.0.0
|
||||||
|
|
||||||
* First version.
|
* First version.
|
|
@ -1,11 +1,11 @@
|
||||||
# angel3_orm_mysql
|
# Angel3 ORM for MySQL
|
||||||
|
|
||||||
[![version](https://img.shields.io/badge/pub-v2.0.0-brightgreen)](https://pub.dartlang.org/packages/angel3_orm_mysql)
|
[![version](https://img.shields.io/badge/pub-v2.0.0-brightgreen)](https://pub.dartlang.org/packages/angel3_orm_mysql)
|
||||||
[![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_mysql/LICENSE)
|
[![License](https://img.shields.io/github/license/dukefirehawk/angel)](https://github.com/dukefirehawk/angel/tree/angel3/packages/orm/angel_orm_mysql/LICENSE)
|
||||||
|
|
||||||
Mysql support for Angel's ORM.
|
Mysql support for Angel3 ORM.
|
||||||
|
|
||||||
For documentation about the ORM, head to the main project repo:
|
For documentation about the ORM, head to the main project repo: <https://github.com/dukefirehawk/angel/tree/angel3/packages/orm>
|
||||||
https://github.com/dukefirehawk/angel/tree/angel3/packages/orm
|
|
||||||
|
|
|
@ -1,23 +1,20 @@
|
||||||
name: angel3_orm_mysql
|
name: angel3_orm_mysql
|
||||||
version: 2.0.0-beta.1
|
version: 2.0.0-beta.2
|
||||||
description: MySQL support for Angel3's ORM. Includes functionality for querying and transactions.
|
description: MySQL support for Angel3 ORM. Includes functionality for querying and transactions.
|
||||||
homepage: https://github.com/dukefirehawk/angel/tree/angel3/packages/orm/angel_orm_mysql
|
homepage: https://angel3-framework.web.app/
|
||||||
|
repository: https://github.com/dukefirehawk/angel/tree/angel3/packages/orm/angel_orm_mysql
|
||||||
environment:
|
environment:
|
||||||
sdk: '>=2.12.0 <3.0.0'
|
sdk: '>=2.12.0 <3.0.0'
|
||||||
dependencies:
|
dependencies:
|
||||||
angel3_orm: ^4.0.0-beta.1
|
angel3_orm: ^4.0.0
|
||||||
logging: ^1.0.0
|
logging: ^1.0.0
|
||||||
pool: ^1.5.0
|
pool: ^1.5.0
|
||||||
galileo_sqljocky5: ^3.0.0
|
galileo_sqljocky5: ^3.0.0
|
||||||
#optional: ^6.0.0-nullsafety.2
|
optional: ^6.0.0
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
angel3_migration: ^4.0.0-beta.1
|
angel3_migration: ^4.0.0
|
||||||
angel3_orm_generator: ^4.0.0-beta.1
|
angel3_orm_generator: ^4.0.0
|
||||||
build_runner: ^2.0.0
|
build_runner: ^2.0.0
|
||||||
test: ^1.17.0
|
test: ^1.17.0
|
||||||
pedantic: ^1.11.0
|
pedantic: ^1.11.0
|
||||||
angel3_orm_test:
|
angel3_orm_test: ^3.0.0
|
||||||
git:
|
|
||||||
url: https://github.com/dukefirehawk/angel.git
|
|
||||||
ref: angel3
|
|
||||||
path: packages/orm/angel_orm_test
|
|
||||||
|
|
Loading…
Reference in a new issue