Updated boilerplate templates

This commit is contained in:
thomashii 2021-03-07 21:05:41 +08:00
parent ca275779d7
commit 1937b0aa93
2 changed files with 14 additions and 15 deletions

View file

@ -1,16 +1,14 @@
# 2.3.0
# 3.0.0
* Changed Dart SDK requirements for all packages to ">=2.10.0 <3.0.0"
* Upgrade angel_http_exception to 1.3.0
* Upgrade angel_cli to 2.3.0. Rename not working.
* Upgrade angel_route to 3.3.0
* Upgrade angel_model to 1.3.0
* Upgrade angel_container to 1.3.0
* Upgrade angel_framework to 2.3.0
* Upgrade angel_client to 2.2.0
* Upgrade angel_auth to 2.2.0
* Upgrade angel_websocket to 2.3.0
* Upgrade angel_http_exception to 2.0.0
* Upgrade angel_cli to 3.0.0. Rename not working.
* Upgrade angel_route to 4.0.0
* Upgrade angel_model to 2.0.0
* Upgrade angel_container to 2.0.0
* Upgrade angel_framework to 3.0.0
* Upgrade angel_client to 3.0.0
* Upgrade angel_auth to 3.0.0
* Upgrade angel_websocket to 3.0.0
# 2.2.0
* Changed Dart SDK requirements for all packages to ">=2.10.0 <2.12.0"

View file

@ -268,20 +268,21 @@ const BoilerplateInfo graphQLBoilerplate = const BoilerplateInfo(
'GraphQL',
"A starting point for GraphQL API servers.",
'${RepoLocation}/boilerplates.git',
ref: 'graphql',
ref: 'graphql-sdk-2.12.x',
);
const BoilerplateInfo ormBoilerplate = const BoilerplateInfo(
'ORM',
"A starting point for applications that use Angel's ORM.",
'${RepoLocation}/boilerplates.git',
ref: 'orm',
ref: 'orm-sdk-2.12.x',
);
const BoilerplateInfo basicBoilerplate = const BoilerplateInfo(
'Basic',
'Minimal starting point for Angel 2.x - A simple server with only a few additional packages.',
'${RepoLocation}/boilerplates.git');
'${RepoLocation}/boilerplates.git',
ref: 'basic-sdk-2.12.x');
const BoilerplateInfo legacyBoilerplate = const BoilerplateInfo(
'Legacy',