diff --git a/CHANGELOG b/CHANGELOG index 829a1ec..7e45009 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,7 @@ 2022-07-17 * Fix source code link +* Upgrade to Lucky 0.30.1 2022-05-21 diff --git a/script/system_check b/script/system_check index 94238a6..8b8060e 100755 --- a/script/system_check +++ b/script/system_check @@ -4,7 +4,7 @@ source script/helpers/text_helpers source script/helpers/function_helpers # Use this script to check the system for required tools and process that your app needs. -# A few helper functions are provided to make writing bash a little easier. See the +# A few helper functions are provided to make writing bash a little easier. See the # script/helpers/function_helpers file for more examples. # # A few examples you might use here: @@ -17,11 +17,6 @@ if command_not_found "yarn"; then print_error "Yarn is not installed\n See https://yarnpkg.com/lang/en/docs/install/ for install instructions." fi -# Only if this isn't CI -if [ -z "$CI" ]; then - lucky ensure_process_runner_installed -fi - if command_not_found "createdb"; then MSG="Please install the postgres CLI tools, then try again." if is_mac; then @@ -38,5 +33,3 @@ fi # if command_not_running "redis-cli ping"; then # print_error "Redis is not running." # fi - - diff --git a/shard.lock b/shard.lock index ed8361b..aff3c9c 100644 --- a/shard.lock +++ b/shard.lock @@ -2,19 +2,23 @@ version: 2.0 shards: authentic: git: https://github.com/luckyframework/authentic.git - version: 0.8.1 + version: 0.8.2 avram: git: https://github.com/luckyframework/avram.git - version: 0.22.0 + version: 0.23.0 backtracer: git: https://github.com/sija/backtracer.cr.git version: 1.2.1 + cadmium_transliterator: + git: https://github.com/cadmiumcr/transliterator.git + version: 0.1.0+git.commit.46c4c14594057dbcfaf27e7e7c8c164d3f0ce3f1 + carbon: git: https://github.com/luckyframework/carbon.git - version: 0.2.0 + version: 0.2.1 cry: git: https://github.com/luckyframework/cry.git @@ -26,15 +30,15 @@ shards: db: git: https://github.com/crystal-lang/crystal-db.git - version: 0.10.1 + version: 0.11.0 dexter: git: https://github.com/luckyframework/dexter.git - version: 0.3.3 + version: 0.3.4 exception_page: git: https://github.com/crystal-loot/exception_page.git - version: 0.2.1 + version: 0.2.2 habitat: git: https://github.com/luckyframework/habitat.git @@ -42,11 +46,11 @@ shards: lucky: git: https://github.com/luckyframework/lucky.git - version: 0.29.0 + version: 0.30.1 lucky_cache: git: https://github.com/luckyframework/lucky_cache.git - version: 0.1.0 + version: 0.1.1 lucky_env: git: https://github.com/luckyframework/lucky_env.git @@ -70,11 +74,11 @@ shards: pg: git: https://github.com/will/crystal-pg.git - version: 0.24.0 + version: 0.26.0 pulsar: git: https://github.com/luckyframework/pulsar.git - version: 0.2.2 + version: 0.2.3 selenium: git: https://github.com/matthewmcgarvey/selenium.cr.git diff --git a/shard.yml b/shard.yml index 3defc76..819eaee 100644 --- a/shard.yml +++ b/shard.yml @@ -13,10 +13,10 @@ crystal: 1.2.1 dependencies: lucky: github: luckyframework/lucky - version: ~> 0.29.0 + version: ~> 0.30.1 authentic: github: luckyframework/authentic - version: ~> 0.8.1 + version: ~> 0.8.2 carbon: github: luckyframework/carbon version: ~> 0.2.0 diff --git a/spec/setup/start_app_server.cr b/spec/setup/start_app_server.cr deleted file mode 100644 index ff0bfee..0000000 --- a/spec/setup/start_app_server.cr +++ /dev/null @@ -1,10 +0,0 @@ -app_server = AppServer.new - -spawn do - app_server.listen -end - -Spec.after_suite do - LuckyFlow.shutdown - app_server.close -end