Skip to content

Commit

Permalink
Merge pull request #112 from fortrabbit/composer-housekeeping
Browse files Browse the repository at this point in the history
1.0.5
  • Loading branch information
Oliver Stark authored May 12, 2021
2 parents ef48a3f + 54a43e0 commit dea2038
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.0.5 - 2021-05-12
- Update craft-auto-migrate to use `project-config/apply`
- Code style cleanup

## 1.0.4 - 2021-04-08
- Don't throw exception if no local volumes exist
- Remove DB_TABLE_PREFIX check
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"symfony/process": "^4.2 | ^5.0",
"vlucas/phpdotenv": "^2.5.1 | ^3.4.0",
"symfony/yaml": "^4.2 | ^5.0",
"fortrabbit/craft-auto-migrate":"^2.2.0"
"fortrabbit/craft-auto-migrate":"^2.3.0"
},
"require-dev": {
"phpstan/phpstan": "^0.12",
Expand Down
2 changes: 1 addition & 1 deletion src/Actions/SetupAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class SetupAction extends Action
public function run()
{
$this->input->setInteractive(true);
$app = $this->ask("What's the name of your fortrabbit App?", "");
$app = $this->ask("What's the name of your fortrabbit App?", '');
$this->input->setInteractive($this->interactive);

if (strlen($app) < 3 || strlen($app) > 16) {
Expand Down
1 change: 0 additions & 1 deletion src/Actions/VolumesUpAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ public function run(?string $stage = null, ?array $volumeHandles = null)
return ExitCode::OK;
}


foreach ($volumes as $volume) {
$path = $this->prepareForRsync($volume->path);

Expand Down

0 comments on commit dea2038

Please sign in to comment.