- Rocketeer can now have specific configurations for stages and connections
- Better handling of multiple connections
- Added facade shortcuts
Rocketeer::execute(Task)
andRocketeer::on(connection[s], Task)
to execute commands on the remote servers - Added the
--list
flag on therollback
command to show a list of available releases and pick one to rollback to - Added the
--on
flag to all commands to specify which connections the task should be executed on (ex.production
,staging,production
) - Added
deploy:flush
to clear Rocketeer's cache of credentials
- Rocketeer can now work outside of Laravel
- Better handling of SSH keys
- Permissions are now entirely configurable
- Rocketeer now prompts for confirmation before executing the Teardown task
- Allow the use of patterns in shared folders
- Share
sessions
folder by default - Rocketeer now prompts for binaries it can't find (composer, phpunit, etc)
- Make Rocketeer prompt for both server and SCM credentials if they're not stored
artisan deploy
now deploys the project if the--version
flat is not passed- Make Rocketeer forget invalid credentials provided by prompt
- Fix a bug where incorrect SCM urls would be generated
- Make the output of commands in realtime when
--verbose
instead of when the command is done - Fix a bug where custom Task classes would be analyzed as string commands
- Fix Rocketeeer not taking into account custom paths to app/, storage/, public/ etc.
- Reverse sluggification of application name
- Application name is now always sluggified as a security
- Fix a bug where the Check task would fail on pretend mode
- Fix a bug where invalid directory separators would get cached and used
- Make the Check task check for the remote presence of the configured SCM
- Fix Rocketeer not being able to use a
composer.phar
on the server
- Fix a bug where the configured user would not have the rights to set permissions
- Add multistage strategy
- Add compatibility to Laravel 4.0
- Migrations are now under a
--migrate
flag - Split Git from the SCM implementation (requires a config update)
- Releases are now named as
YmdHis
instead oftime()
- If the
scm.branch
option is empty, Rocketeer will now use the current Git branch - Fix a delay where the
current
symlink would get updated before the complete end of the deploy - Fix errors with Git and Composer not canceling deploy
- Fix some compatibility problems with Windows
- Fix a bug where string tasks would not be run in latest release folder
- Fix Apache username and group using
www-data
by default
- Add a
deploy:update
task that updates the remote server without doing a new release - Add a
deploy:test
to run the tests on the server - Rocketeer can now prompt for Git credentials if you don't want to store them in the config
- The
deploy:check
command now checks PHP extensions for the cache/database/session drivers you set - Rocketeer now share logs by default between releases
- Add ability to specify an array of Tasks in Rocketeer::before|after
- Added a
$silent
flag to make aTask::run
call silent no matter what - Rocketeer now displays how long the task took
- Add ability to share files and folders between releases
- Add ability to create custom tasks integrated in the CLI
- Add a
deploy:check
Task that checks if the server is ready to receive a Laravel app - Add
Task::listContents
andTask::fileExists
helpers - Add Task helper to run outstanding migrations
- Add
Rocketeer::add
method on the facade to register custom Tasks - Fix
Task::runComposer
not taking into account a localcomposer.phar
- Fixed wrong tag used in
deploy:cleanup
- Added
--pretend
flag on all commands to print out a list of the commands that would have been executed instead of running them
- Added
Task::runInFolder
to run tasks in a specific folder - Added
Task::runForCurrentRelease
Task helper - Fixed a bug where
Task::run
would only return the last line of the command's output - Added
Task::runTests
methods to run the PHPUnit tests of the application - Integrated
Task::runTests
in theDeploy
task under the--tests
flag ; failing tests will cancel deploy and rollback
- The core of Rocketeer's actions is now split into a system of Tasks for flexibility
- Added a
Rocketeer
facade to easily add tasks viabefore
andafter
(see Tasks docs)
- Fixed a bug where the commands would try to connect to the remote hosts on construct
- Fixed
ReleasesManager::getPreviousRelease
returning the wrong release
- Add
deploy:teardown
to remove the application from remote servers - Add support for the connections defined in the remote config file
- Add
deploy:rollback
anddeploy:current
commands - Add
deploy:cleanup
command - Add config file
- Add
deploy:setup
anddeploy:deploy
commands