-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e15dc1f
commit 1afdb3f
Showing
1 changed file
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
--- | ||
title: "0.6.0" | ||
date: "2017-02-27" | ||
slug: "0-6-0" | ||
|
||
menu: | ||
main: | ||
parent: "release-notes" | ||
identifier: 0.6.0 | ||
weight: -060 | ||
|
||
--- | ||
|
||
## Release Date | ||
|
||
2017-02-27 0.6.0 | ||
|
||
## Features | ||
|
||
This release includes new systemd and unarchive capabilities, improvements to the user resource, and generators for man pages and bash autocomplete. With this release, Converge is no longer cross compiled for freebsd and solaris. | ||
|
||
### Cross Compliation | ||
|
||
With this release, Converge will no longer include cross compilation for freebsd and solaris. | ||
|
||
### Module Improvements | ||
|
||
#### Systemd | ||
|
||
Support for controlling systemd services has been added via [\#602](https://github.com/asteris-llc/converge/pull/602). | ||
|
||
```hcl | ||
systemd.unit.state "ssh" { | ||
unit = "ssh.service" | ||
state = "running" | ||
} | ||
``` | ||
|
||
#### Unarchive | ||
|
||
Managing several archive formats such as `zip` and `tar.gz` is available through unarchive support in [\#592](https://github.com/asteris-llc/converge/pull/592). | ||
|
||
```hcl | ||
unarchive "consul.zip" { | ||
source = "/tmp/consul.zip" | ||
destination = "/tmp/consul" | ||
} | ||
``` | ||
|
||
#### User | ||
|
||
A user can now be enabled or disabled with the addition of [\#581](https://github.com/asteris-llc/converge/pull/581). | ||
|
||
Additionally, there are updates to the diffs presented for user with [\#584](https://github.com/asteris-llc/converge/pull/584) and [\#588](https://github.com/asteris-llc/converge/pull/588). | ||
|
||
### Usablilty Enhancements | ||
|
||
#### Module Author Improvement | ||
|
||
A new helper method has been added to for use with `resource.Status`. `RaiseLevelForDiffs` will raise the status level to `StatusWillChange` if any differences exist via [\#587](https://github.com/asteris-llc/converge/pull/587). | ||
|
||
#### Various Generators | ||
|
||
Generators for man pages and bash autocompletion have been added via [\#571](https://github.com/asteris-llc/converge/pull/571). | ||
|
||
## Changelog | ||
|
||
See the Converge [changelog](https://github.com/asteris-llc/converge/blob/master/CHANGELOG.md) for additional details on the 0.6.0 release. | ||
|
||
## Support | ||
|
||
We provide support via the Converge [Slack](http://converge-slack.aster.is/) and through [GitHub Issues](https://github.com/asteris-llc/converge/issues). |