Releases: J-T-McC/laravel-atomic-deployments
Releases · J-T-McC/laravel-atomic-deployments
v1.0.0
v0.4.1
v0.3.1
New directory name feature to allow use without git.
New config option must be added to previously published configurations
/**
* Logic used when creating a deployment directory
*
* Default => git - uses hash for current HEAD
* Options: [ git, rand ]
*
* If your build does not use git, use rand.
*/
'directory-naming' => 'git',
Copied symlinks are now updated to point to deployment contents
v0.2.1
Refactoring
New config option must be added to previously published configurations
/**
* Deployment class used.
*
* Add custom deployments by implementing @see \JTMcC\AtomicDeployments\Interfaces\DeploymentInterface
* and adding your class to this config property
*/
'deployment-class' => \JTMcC\AtomicDeployments\Services\Deployment::class,