From 1937b0aa933d25e03981a420b24f91c648bb01d2 Mon Sep 17 00:00:00 2001 From: thomashii Date: Sun, 7 Mar 2021 21:05:41 +0800 Subject: [PATCH] Updated boilerplate templates --- CHANGELOG.md | 22 ++++++++++------------ packages/cli/lib/src/commands/init.dart | 7 ++++--- 2 files changed, 14 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 65fad42c..8e8bb2ac 100644 --- a/CHANGELOG.md +++ b/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" -* 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" diff --git a/packages/cli/lib/src/commands/init.dart b/packages/cli/lib/src/commands/init.dart index 88f02a6e..92f2adec 100644 --- a/packages/cli/lib/src/commands/init.dart +++ b/packages/cli/lib/src/commands/init.dart @@ -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',