Skip to content

Commit

Permalink
Added 0.5.0 release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
shyiko committed Feb 3, 2018
1 parent c5a79c5 commit fabf66b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.5.0] - 2018-02-03

### Added
- `kubesec create` for Secret bootstraping (from a set of key=value pairs / files):

```sh
$ kubesec create secret-name \
--data key=value \
--data file:pki/ca.crt \
--data file:key.pem=pki/private/server.key
```
(`kubesec create --help` for more).
- `kubesec patch` for batch Secret editing:

```sh
$ kubesec patch secret.enc.yml --data key=value --data file:ta.key
```
(`kubesec patch --help` for more).
- [<kbd>Tab</kbd> completion](https://github.com/shyiko/kubesec#tab-completion) (for bash and zsh).

## [0.4.2] - 2017-12-27

### Fixed
Expand All @@ -18,6 +38,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Added
- kubesec decrypt `--template <go-template-string>` option. e.g.

```sh
$ kubesec decrypt --cleartext \
--template=$'USERNAME={{ .data.USERNAME }}\nPASSWORD={{ .data.PASSWORD }}' \
Expand All @@ -40,6 +61,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Added
- MAC (AES-GMAC, covering both "data" and `--key`(s)).
- `--cleartext` flag (available for `encrypt` & `decrypt` commands). e.g.

```sh
$ kubesec decrypt k8s/staging.secret.enc.yml
Expand Down Expand Up @@ -74,6 +96,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## 0.1.0 - 2017-08-11

[0.5.0]: https://github.com/shyiko/kubesec/compare/0.4.2...0.5.0
[0.4.2]: https://github.com/shyiko/kubesec/compare/0.4.1...0.4.2
[0.4.1]: https://github.com/shyiko/kubesec/compare/0.4.0...0.4.1
[0.4.0]: https://github.com/shyiko/kubesec/compare/0.3.1...0.4.0
Expand Down

0 comments on commit fabf66b

Please sign in to comment.