Updated boilerplate templates
This commit is contained in:
parent
ca275779d7
commit
1937b0aa93
2 changed files with 14 additions and 15 deletions
22
CHANGELOG.md
22
CHANGELOG.md
|
@ -1,16 +1,14 @@
|
||||||
# 2.3.0
|
# 3.0.0
|
||||||
* Changed Dart SDK requirements for all packages to ">=2.10.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_http_exception to 2.0.0
|
||||||
* Upgrade angel_cli to 2.3.0. Rename not working.
|
* Upgrade angel_cli to 3.0.0. Rename not working.
|
||||||
* Upgrade angel_route to 3.3.0
|
* Upgrade angel_route to 4.0.0
|
||||||
* Upgrade angel_model to 1.3.0
|
* Upgrade angel_model to 2.0.0
|
||||||
* Upgrade angel_container to 1.3.0
|
* Upgrade angel_container to 2.0.0
|
||||||
* Upgrade angel_framework to 2.3.0
|
* Upgrade angel_framework to 3.0.0
|
||||||
* Upgrade angel_client to 2.2.0
|
* Upgrade angel_client to 3.0.0
|
||||||
* Upgrade angel_auth to 2.2.0
|
* Upgrade angel_auth to 3.0.0
|
||||||
* Upgrade angel_websocket to 2.3.0
|
* Upgrade angel_websocket to 3.0.0
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# 2.2.0
|
# 2.2.0
|
||||||
* Changed Dart SDK requirements for all packages to ">=2.10.0 <2.12.0"
|
* Changed Dart SDK requirements for all packages to ">=2.10.0 <2.12.0"
|
||||||
|
|
|
@ -268,20 +268,21 @@ const BoilerplateInfo graphQLBoilerplate = const BoilerplateInfo(
|
||||||
'GraphQL',
|
'GraphQL',
|
||||||
"A starting point for GraphQL API servers.",
|
"A starting point for GraphQL API servers.",
|
||||||
'${RepoLocation}/boilerplates.git',
|
'${RepoLocation}/boilerplates.git',
|
||||||
ref: 'graphql',
|
ref: 'graphql-sdk-2.12.x',
|
||||||
);
|
);
|
||||||
|
|
||||||
const BoilerplateInfo ormBoilerplate = const BoilerplateInfo(
|
const BoilerplateInfo ormBoilerplate = const BoilerplateInfo(
|
||||||
'ORM',
|
'ORM',
|
||||||
"A starting point for applications that use Angel's ORM.",
|
"A starting point for applications that use Angel's ORM.",
|
||||||
'${RepoLocation}/boilerplates.git',
|
'${RepoLocation}/boilerplates.git',
|
||||||
ref: 'orm',
|
ref: 'orm-sdk-2.12.x',
|
||||||
);
|
);
|
||||||
|
|
||||||
const BoilerplateInfo basicBoilerplate = const BoilerplateInfo(
|
const BoilerplateInfo basicBoilerplate = const BoilerplateInfo(
|
||||||
'Basic',
|
'Basic',
|
||||||
'Minimal starting point for Angel 2.x - A simple server with only a few additional packages.',
|
'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(
|
const BoilerplateInfo legacyBoilerplate = const BoilerplateInfo(
|
||||||
'Legacy',
|
'Legacy',
|
||||||
|
|
Loading…
Reference in a new issue