Reverted lints to 1.x.x

This commit is contained in:
thomashii@dukefirehawk.com 2022-07-28 01:03:31 +08:00
parent 98dfef8e33
commit 3db9c53fdd
20 changed files with 18 additions and 24 deletions

View file

@ -9,4 +9,4 @@ dependencies:
mysql1: ^0.20.0 mysql1: ^0.20.0
mysql_client: ^0.0.24 mysql_client: ^0.0.24
dev_dependencies: dev_dependencies:
lints: ^2.0.0 lints: ^1.0.0

View file

@ -8,4 +8,4 @@ published_to: none
dependencies: dependencies:
http: ^0.13.4 http: ^0.13.4
dev_dependencies: dev_dependencies:
lints: ^2.0.0 lints: ^1.0.0

View file

@ -15,4 +15,4 @@ dependencies:
dart_twitter_api: ^0.5.6+1 dart_twitter_api: ^0.5.6+1
dev_dependencies: dev_dependencies:
logging: ^1.0.0 logging: ^1.0.0
lints: ^2.0.0 lints: ^1.0.0

View file

@ -1,8 +1,8 @@
# Change Log # Change Log
## 6.0.1 ## 6.1.0
* Upgraded to `lints` 2.x.x * Updated temporal fields
## 6.0.0 ## 6.0.0

View file

@ -1,5 +1,5 @@
name: angel3_migration name: angel3_migration
version: 6.0.1 version: 6.1.0
description: Database migration runtime for Angel3 ORM. Use this package to define schemas. description: Database migration runtime for Angel3 ORM. Use this package to define schemas.
homepage: https://angel3-framework.web.app/ homepage: https://angel3-framework.web.app/
repository: https://github.com/dukefirehawk/angel/tree/master/packages/orm/angel_migration repository: https://github.com/dukefirehawk/angel/tree/master/packages/orm/angel_migration
@ -8,7 +8,7 @@ environment:
dependencies: dependencies:
angel3_orm: ^6.0.0 angel3_orm: ^6.0.0
dev_dependencies: dev_dependencies:
lints: ^2.0.0 lints: ^1.0.0
dependency_overrides: dependency_overrides:
angel3_orm: angel3_orm:
path: ../angel_orm path: ../angel_orm

View file

@ -2,7 +2,6 @@
## 6.1.0 ## 6.1.0
* Upgraded to `lints` 2.x.x
* Fixed issue #70. Incorrectly generated SQL for `defaultsTo('Default Value')` * Fixed issue #70. Incorrectly generated SQL for `defaultsTo('Default Value')`
* Mapped timestamp to datetime for MySQL and MariaDB * Mapped timestamp to datetime for MySQL and MariaDB
* Fixed `MariaDbMigrationRunner` to work with MariaDB * Fixed `MariaDbMigrationRunner` to work with MariaDB

View file

@ -15,7 +15,7 @@ dependencies:
mysql1: ^0.20.0 mysql1: ^0.20.0
logging: ^1.0.0 logging: ^1.0.0
dev_dependencies: dev_dependencies:
lints: ^2.0.0 lints: ^1.0.0
dependency_overrides: dependency_overrides:
angel3_orm: angel3_orm:
path: ../angel_orm path: ../angel_orm

View file

@ -4,7 +4,6 @@
* Fixed issue #68: Support for non-nullable type * Fixed issue #68: Support for non-nullable type
* Added `defaultValue` to `@Column` annotation * Added `defaultValue` to `@Column` annotation
* Upgraded to `lints` 2.x.x
## 6.0.1 ## 6.0.1

View file

@ -18,7 +18,7 @@ dev_dependencies:
angel3_serialize_generator: ^6.0.0 angel3_serialize_generator: ^6.0.0
build_runner: ^2.1.1 build_runner: ^2.1.1
test: ^1.17.4 test: ^1.17.4
lints: ^2.0.0 lints: ^1.0.0
# dependency_overrides: # dependency_overrides:
# angel3_serialize: # angel3_serialize:
# path: ../../serialize/angel_serialize # path: ../../serialize/angel_serialize

View file

@ -3,7 +3,6 @@
## 6.2.0 ## 6.2.0
* Fixed issue #68: Support for non-nullable type * Fixed issue #68: Support for non-nullable type
* Upgraded to `lints` 2.x.x
* Generate default value based on `defaultValue` in the `@Column` annotation * Generate default value based on `defaultValue` in the `@Column` annotation
## 6.1.0 ## 6.1.0

View file

@ -29,7 +29,7 @@ dev_dependencies:
build_runner: ^2.0.1 build_runner: ^2.0.1
postgres: ^2.4.0 postgres: ^2.4.0
test: ^1.21.0 test: ^1.21.0
lints: ^2.0.0 lints: ^1.0.0
dependency_overrides: dependency_overrides:
# angel3_container: # angel3_container:
# path: ../../container/angel_container # path: ../../container/angel_container

View file

@ -16,7 +16,7 @@ dev_dependencies:
angel3_orm_test: ^6.0.0 angel3_orm_test: ^6.0.0
build_runner: ^2.0.1 build_runner: ^2.0.1
test: ^1.21.0 test: ^1.21.0
lints: ^2.0.0 lints: ^1.0.0
dependency_overrides: dependency_overrides:
# angel3_serialize: # angel3_serialize:
# path: ../../serialize/angel_serialize # path: ../../serialize/angel_serialize

View file

@ -91,7 +91,7 @@ Future<MySqlExecutor> _connectToMySql(List<String> schemas) async {
host: "localhost", host: "localhost",
userName: Platform.environment['MYSQL_USERNAME'] ?? 'test', userName: Platform.environment['MYSQL_USERNAME'] ?? 'test',
password: Platform.environment['MYSQL_PASSWORD'] ?? 'test123', password: Platform.environment['MYSQL_PASSWORD'] ?? 'test123',
secure: false); secure: true);
await connection.connect(timeoutMs: 10000); await connection.connect(timeoutMs: 10000);

View file

@ -2,7 +2,6 @@
## 6.1.0 ## 6.1.0
* Upgraded to `lints` 2.x.x
* Fixed #71. Restablish broken connection automatically. * Fixed #71. Restablish broken connection automatically.
## 6.0.0 ## 6.0.0

View file

@ -9,6 +9,6 @@ PostgreSQL support for Angel3 ORM.
## Supported database ## Supported database
* PostgreSQL version 10 or later * PostgreSQL version 10 or greater
For documentation about the ORM, see [Developer Guide](https://angel3-docs.dukefirehawk.com/guides/orm) For documentation about the ORM, see [Developer Guide](https://angel3-docs.dukefirehawk.com/guides/orm)

View file

@ -15,7 +15,7 @@ dev_dependencies:
belatuk_pretty_logging: ^4.0.0 belatuk_pretty_logging: ^4.0.0
angel3_orm_test: ^6.0.0 angel3_orm_test: ^6.0.0
test: ^1.21.0 test: ^1.21.0
lints: ^2.0.0 lints: ^1.0.0
dependency_overrides: dependency_overrides:
# angel3_serialize: # angel3_serialize:
# path: ../../serialize/angel_serialize # path: ../../serialize/angel_serialize

View file

@ -1,9 +1,8 @@
# Change Log # Change Log
## 6.0.1 ## 6.1.0
* Added test cases for non nullable type * Added test cases for non nullable type
* Upgraded to `lints` 2.x.x
## 6.0.0 ## 6.0.0

View file

@ -1,5 +1,5 @@
name: angel3_orm_test name: angel3_orm_test
version: 6.0.1 version: 6.1.0
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
@ -18,7 +18,7 @@ dev_dependencies:
angel3_orm_generator: ^6.0.0 angel3_orm_generator: ^6.0.0
angel3_framework: ^6.0.0 angel3_framework: ^6.0.0
build_runner: ^2.0.1 build_runner: ^2.0.1
lints: ^2.0.0 lints: ^1.0.0
dependency_overrides: dependency_overrides:
# angel3_container: # angel3_container:
# path: ../../container/angel_container # path: ../../container/angel_container

View file

@ -3,7 +3,6 @@
## 6.1.1 ## 6.1.1
* Fixed issue #68: Support for non-nullable type * Fixed issue #68: Support for non-nullable type
* Upgraded to `lints` 2.x.x
## 6.1.0 ## 6.1.0

View file

@ -22,7 +22,7 @@ dependencies:
dev_dependencies: dev_dependencies:
build_runner: ^2.0.1 build_runner: ^2.0.1
collection: ^1.15.0 collection: ^1.15.0
lints: ^2.0.0 lints: ^1.0.0
test: ^1.21.0 test: ^1.21.0
# dependency_overrides: # dependency_overrides:
# angel3_model: # angel3_model: