Skip to content

Commit

Permalink
chore(release): 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sh0rez committed Jul 31, 2019
1 parent 99a3663 commit badb611
Showing 1 changed file with 11 additions and 80 deletions.
91 changes: 11 additions & 80 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,89 +2,20 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.1.8](https://github.com/tbraack/tanka/compare/v0.1.7...v0.1.8) (2019-07-31)
## 0.1.0 (2019-07-31)

This release marks the begin of tanka's history :tada:!

### Bug Fixes

* **packaging:** manifest path ([6f6ba48](https://github.com/tbraack/tanka/commit/6f6ba48))

### [0.1.7](https://github.com/tbraack/tanka/compare/v0.1.6...v0.1.7) (2019-07-31)


### Features

* **packaging:** include docker container in release notes ([5b57993](https://github.com/tbraack/tanka/commit/5b57993))

### [0.1.6](https://github.com/tbraack/tanka/compare/v0.1.5...v0.1.6) (2019-07-30)


### Features

* **packaging:** release note ([c3e799c](https://github.com/tbraack/tanka/commit/c3e799c))

### [0.1.5](https://github.com/tbraack/tanka/compare/v0.1.4...v0.1.5) (2019-07-30)


### Features

* **packaging:** docker also on master ([d28d7e0](https://github.com/tbraack/tanka/commit/d28d7e0))

### [0.1.4](https://github.com/tbraack/tanka/compare/v0.1.3...v0.1.4) (2019-07-30)


### Bug Fixes

* regen drone ([660edfa](https://github.com/tbraack/tanka/commit/660edfa))

### [0.1.3](https://github.com/tbraack/tanka/compare/v0.1.2...v0.1.3) (2019-07-30)


### Bug Fixes

* **packaging:** constrain releasing ([01fac81](https://github.com/tbraack/tanka/commit/01fac81))

### [0.1.2](https://github.com/tbraack/tanka/compare/v0.1.1...v0.1.2) (2019-07-30)


### Bug Fixes

* **packaging:** remove GitlabCI in favor of Drone ([2b666b9](https://github.com/tbraack/tanka/commit/2b666b9))

### [0.1.1](https://github.com/tbraack/tanka/compare/v0.1.0...v0.1.1) (2019-07-30)


### Bug Fixes

* **packaging:** add gox ([e511582](https://github.com/tbraack/tanka/commit/e511582))

## 0.1.0 (2019-07-30)


### Bug Fixes

* **kubernetes:** config not present ([9437a25](https://github.com/tbraack/tanka/commit/9437a25))
* **kubernetes:** consistent capitalization of errors ([f3053bb](https://github.com/tbraack/tanka/commit/f3053bb))
* **kubernetes:** kubectl init error checking ([f717c78](https://github.com/tbraack/tanka/commit/f717c78))
* **kubernetes:** show without context ([bc16b2a](https://github.com/tbraack/tanka/commit/bc16b2a))
* **kubernetes:** unmarshal error ([3c355db](https://github.com/tbraack/tanka/commit/3c355db))
* **provider:** Diff ([ff6bf11](https://github.com/tbraack/tanka/commit/ff6bf11))
As of now, tanka aims to nearly seemlessly connect to the point where [ksonnet](https://github.com/ksonnet/ksonnet) left.
The current feature-set is basic, but usable: The three main workflow commands are available (`show`, `diff`, `apply`), environments are supported, code-sharing is done using [`jb`](https://github.com/jsonnet-bundler/jsonnet-bundler).

Stay tuned!

### Features

* Docker packaging ([36a6710](https://github.com/tbraack/tanka/commit/36a6710))
* **ci:** lint and build ([2878945](https://github.com/tbraack/tanka/commit/2878945))
* **cmd:** init indent json ([6a3fdd8](https://github.com/tbraack/tanka/commit/6a3fdd8))
* **cmd/kubernetes:** Diff support ([a959f38](https://github.com/tbraack/tanka/commit/a959f38))
* **kubernetes:** Apply ([8fcb4c1](https://github.com/tbraack/tanka/commit/8fcb4c1))
* **kubernetes:** apply note ([4c6414f](https://github.com/tbraack/tanka/commit/4c6414f))
* **kubernetes:** check for version in diff mode ([166614c](https://github.com/tbraack/tanka/commit/166614c))
* **kubernetes:** error on invalid props ([ab92aee](https://github.com/tbraack/tanka/commit/ab92aee))
* **kubernetes:** kubectl context ([2b3fd3c](https://github.com/tbraack/tanka/commit/2b3fd3c))
* **kubernetes:** Show support ([7c4bee8](https://github.com/tbraack/tanka/commit/7c4bee8))
* **provider:** Init ([3155414](https://github.com/tbraack/tanka/commit/3155414))
* Init Command ([ff8857c](https://github.com/tbraack/tanka/commit/ff8857c))
* Provider Framework ([8cc3dd4](https://github.com/tbraack/tanka/commit/8cc3dd4))
* **vendor:** add all current dependencies ([32dfff9](https://github.com/tbraack/tanka/commit/32dfff9))
* initial feature set ([41df028](https://github.com/tbraack/tanka/commit/41df028))
* **kubernetes:** Show ([7c4bee8](https://github.com/tbraack/tanka/commit/7c4bee8)): Equivalent to `ks show`, allows previewing the generated yaml.
* **kubernetes:** Diff ([a959f38](https://github.com/tbraack/tanka/commit/a959f38)): Uses the `kubectl diff` to obtain a sanitized difference betweent the current and the desired state. Requires Kubernetes 1.13+
* **kubernetes:** Apply ([8fcb4c1](https://github.com/tbraack/tanka/commit/8fcb4c1)): Applies the changes to the cluster (like `ks apply`)
* **kubernetes:** Apply approval ([4c6414f](https://github.com/tbraack/tanka/commit/4c6414f)): Requires a typed `yes` to apply, gives the user the chance to verify cluster and context.
* **kubernetes:** Smart context ([2b3fd3c](https://github.com/tbraack/tanka/commit/2b3fd3c)): Infers the correct context from the `spec.json`. Prevents applying the correct config to the wrong cluster.
* Init Command ([ff8857c](https://github.com/tbraack/tanka/commit/ff8857c)): Initializes a new repository with the suggested directory structure.

0 comments on commit badb611

Please sign in to comment.