From ebb5976a22f71b888e72315820f8582642b9d6b2 Mon Sep 17 00:00:00 2001 From: Nikolay Date: Mon, 31 Dec 2018 14:34:01 +0300 Subject: [PATCH] Fixes #16926: Fix shell autocompletion --- contrib/completion/bash/yii | 2 +- framework/CHANGELOG.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/contrib/completion/bash/yii b/contrib/completion/bash/yii index c73d42f..c5e7884 100644 --- a/contrib/completion/bash/yii +++ b/contrib/completion/bash/yii @@ -57,4 +57,4 @@ _yii() # register completion for the ./yii command # you may adjust this line if your command file is named differently -complete -F _yii ./yii yii +complete -o default -F _yii ./yii yii diff --git a/framework/CHANGELOG.md b/framework/CHANGELOG.md index be9709d..35108af 100644 --- a/framework/CHANGELOG.md +++ b/framework/CHANGELOG.md @@ -4,6 +4,7 @@ Yii Framework 2 Change Log 2.0.16 under development ------------------------ +- Bug #16926: Fix shell autocompletion (GHopperMSK) - Bug #15850: check basePath is writable on publish in AssetManager (Groonya) - Bug #16910: Fix messages sorting on extract (Groonya) - Bug #16969: Fix `yii\filters\PageCache` incorrectly storing empty data in some cases (sammousa)