Skip to content

Commit

Permalink
Add changelog entry for 0.18.0 (#615)
Browse files Browse the repository at this point in the history
* Add changelog entry for `0.18.0`
Also, bump versions in go.mod

* Remove references to URL in the cache help
This is now just a file path
  • Loading branch information
julienduchesne authored Oct 1, 2021
1 parent 8fb28b5 commit b73cfca
Show file tree
Hide file tree
Showing 5 changed files with 147 additions and 85 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## 0.18.0 (2021-10-01)

### Features

- **export**: Implement environment caching for `tk export`
**[#603](https://github.com/grafana/tanka/pull/603)**
- **cli**: Allow partial matches in the --name option
**[#613](https://github.com/grafana/tanka/pull/613)**

### Bug Fixes

- **tanka**: Check executable prefix before calling stat
**[#601](https://github.com/grafana/tanka/pull/601)** (**neerolyte**)
- **cli**: Add hint to inline environment error
**[#606](https://github.com/grafana/tanka/pull/606)**
- **cli**: Bump cli to `0.2.0`
**[#611](https://github.com/grafana/tanka/pull/611)**
- **cli**: Add check to prevent using `spec.json` and inline envs simultaneously
**[#614](https://github.com/grafana/tanka/pull/614)**

## 0.17.3 (2021-08-16)

### Features
Expand Down
2 changes: 1 addition & 1 deletion cmd/tk/export.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func exportCmd() *cli.Command {
extension := cmd.Flags().String("extension", "yaml", "File extension")
merge := cmd.Flags().Bool("merge", false, "Allow merging with existing directory")
parallel := cmd.Flags().IntP("parallel", "p", 8, "Number of environments to process in parallel")
cachePath := cmd.Flags().StringP("cache-path", "c", "", "URL where cached evaluations should be stored. Supports file:// and gs://")
cachePath := cmd.Flags().StringP("cache-path", "c", "", "Local file path where cached evaluations should be stored")
cacheEnvs := cmd.Flags().StringArrayP("cache-envs", "e", nil, "Regexes which define which environment should be cached (if caching is enabled)")

vars := workflowFlags(cmd.Flags())
Expand Down
29 changes: 12 additions & 17 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,25 @@ module github.com/grafana/tanka
go 1.16

require (
github.com/Masterminds/semver v1.4.2
github.com/Masterminds/sprig/v3 v3.1.0
github.com/fatih/color v1.9.0
github.com/Masterminds/semver v1.5.0
github.com/Masterminds/sprig/v3 v3.2.2
github.com/fatih/color v1.13.0
github.com/fatih/structs v1.1.0
github.com/go-clix/cli v0.2.0
github.com/gobwas/glob v0.2.3
github.com/google/go-cmp v0.5.6
github.com/google/go-jsonnet v0.17.0
github.com/google/uuid v1.1.2 // indirect
github.com/huandu/xstrings v1.3.2 // indirect
github.com/imdario/mergo v0.3.9 // indirect
github.com/karrick/godirwalk v1.15.5
github.com/karrick/godirwalk v1.16.1
github.com/pkg/errors v0.9.1
github.com/posener/complete v1.2.3
github.com/spf13/pflag v1.0.5
github.com/stretchr/objx v0.2.0
github.com/stretchr/testify v1.6.1
github.com/thoas/go-funk v0.4.0
golang.org/x/crypto v0.0.0-20201216223049-8b5274cf687f
golang.org/x/sys v0.0.0-20210616094352-59db8d763f22 // indirect
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
gopkg.in/yaml.v2 v2.2.8
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
k8s.io/apimachinery v0.19.2
sigs.k8s.io/yaml v1.2.0
github.com/stretchr/objx v0.3.0
github.com/stretchr/testify v1.7.0
github.com/thoas/go-funk v0.9.1
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
k8s.io/apimachinery v0.22.2
sigs.k8s.io/yaml v1.3.0
)
Loading

0 comments on commit b73cfca

Please sign in to comment.