Skip to content

Commit 2f4ca54

Browse files
committed
cut release v0.3.3
1 parent 81f5041 commit 2f4ca54

7 files changed

Lines changed: 159 additions & 17 deletions

File tree

.changie.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
changesDir: changes
2+
unreleasedDir: unreleased
3+
headerPath: header.tpl.md
4+
versionHeaderPath: ""
5+
changelogPath: CHANGELOG.md
6+
versionExt: md
7+
versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}'
8+
kindFormat: '### {{.Kind}}'
9+
changeFormat: '* {{.Body}}'
10+
kinds:
11+
- label: Feature
12+
- label: Refactor
13+
- label: Deprecated
14+
- label: Removed
15+
- label: Bugfix
16+
- label: Docs
17+
- label: Security

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
./src/opslevel
22
src/dist
3+
.idea

CHANGELOG.md

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,22 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and is generated by [Changie](https://github.com/miniscruff/changie).
6+
7+
## [v0.3.3] - 2021-10-31
8+
### Bugfix
9+
* `export terraform` no longer outputs repos without a default alias
10+
* `export terraform` now properly emits filter predicates
11+
12+
[v0.3.3]: https://github.com/OpsLevel/cli/compare/v0.3.2...v0.3.3
13+
114

2-
<a name="v0.3.2"></a>
315
## [v0.3.2] - 2021-10-04
416
### Bugfix
517
- fix issue with new graphql user agent args
618

719

8-
<a name="v0.3.1"></a>
920
## [v0.3.1] - 2021-10-04
1021
### Docs
1122
- cleanup readme to bring it more inline with kubectl-opslevel
@@ -14,28 +25,21 @@
1425
- set custom graphql user agent extras
1526

1627

17-
<a name="v0.3.0"></a>
1828
## [v0.3.0] - 2021-10-02
1929

20-
<a name="v0.3.0-beta.5"></a>
2130
## [v0.3.0-beta.5] - 2021-10-02
2231

23-
<a name="v0.3.0-beta.4"></a>
2432
## [v0.3.0-beta.4] - 2021-10-01
2533

26-
<a name="v0.3.0-beta.3"></a>
2734
## [v0.3.0-beta.3] - 2021-10-01
2835

29-
<a name="v0.3.0-beta.2"></a>
3036
## [v0.3.0-beta.2] - 2021-10-01
3137

32-
<a name="v0.3.0-beta.1"></a>
3338
## [v0.3.0-beta.1] - 2021-10-01
3439
### Bugfix
3540
- fix outstanding multiline string issues with `export terraform`
3641

3742

38-
<a name="v0.3.0-beta"></a>
3943
## [v0.3.0-beta] - 2021-10-01
4044
### Bugfix
4145
- if multiline string from opslevel does not end with \n then have terraform treat it as an escaped string
@@ -52,7 +56,6 @@
5256
- implement correct output formatting for list tier, lifecycle and tools
5357

5458

55-
<a name="v0.2.0-beta"></a>
5659
## [v0.2.0-beta] - 2021-09-18
5760
### Feature
5861
- upgrade opslevel-go to v0.3.3
@@ -71,22 +74,17 @@
7174
- seperate get and list commands
7275

7376

74-
<a name="v0.1.0-beta.5"></a>
7577
## [v0.1.0-beta.5] - 2021-07-10
7678

77-
<a name="v0.1.0-beta.4"></a>
7879
## [v0.1.0-beta.4] - 2021-07-10
7980

80-
<a name="v0.1.0-beta.3"></a>
8181
## [v0.1.0-beta.3] - 2021-07-10
8282

83-
<a name="v0.1.0-beta.2"></a>
8483
## [v0.1.0-beta.2] - 2021-07-10
8584
### Refactor
8685
- switch to goreleaser
8786

8887

89-
<a name="v0.1.0-beta.1"></a>
9088
## [v0.1.0-beta.1] - 2021-06-26
9189
### Bugfix
9290
- add yaml struct tags for consistent configfile parsing
@@ -98,15 +96,13 @@
9896
- standardize inputs across flags, env vars, and yaml. Also include more imports to support a wider varity of source input data
9997

10098

101-
<a name="v0.0.1-beta.2"></a>
10299
## [v0.0.1-beta.2] - 2021-06-19
103100
### Release
104101
- use aws ecr alias
105102
- remove github docker registry publish
106103
- add windows binary cross compile
107104

108105

109-
<a name="v0.0.1-beta.1"></a>
110106
## v0.0.1-beta.1 - 2021-06-19
111107
### Docs
112108
- fix amazon ECR links to use new repo alias

changes/header.tpl.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and is generated by [Changie](https://github.com/miniscruff/changie).

changes/unreleased/.gitkeep

Whitespace-only changes.

changes/v0.3.2.md

Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
2+
## [v0.3.2] - 2021-10-04
3+
### Bugfix
4+
- fix issue with new graphql user agent args
5+
6+
7+
## [v0.3.1] - 2021-10-04
8+
### Docs
9+
- cleanup readme to bring it more inline with kubectl-opslevel
10+
11+
### Feature
12+
- set custom graphql user agent extras
13+
14+
15+
## [v0.3.0] - 2021-10-02
16+
17+
## [v0.3.0-beta.5] - 2021-10-02
18+
19+
## [v0.3.0-beta.4] - 2021-10-01
20+
21+
## [v0.3.0-beta.3] - 2021-10-01
22+
23+
## [v0.3.0-beta.2] - 2021-10-01
24+
25+
## [v0.3.0-beta.1] - 2021-10-01
26+
### Bugfix
27+
- fix outstanding multiline string issues with `export terraform`
28+
29+
30+
## [v0.3.0-beta] - 2021-10-01
31+
### Bugfix
32+
- if multiline string from opslevel does not end with \n then have terraform treat it as an escaped string
33+
34+
### Docs
35+
- add installation instructions for Deb/RPM
36+
37+
### Feature
38+
- add deb/rpm package releases
39+
- add create, get, list and delete for filters
40+
- implement create, get, list, and delete for team, team member and team contact
41+
- implement get & list for repository
42+
- add ability to output list data as a json array
43+
- implement correct output formatting for list tier, lifecycle and tools
44+
45+
46+
## [v0.2.0-beta] - 2021-09-18
47+
### Feature
48+
- upgrade opslevel-go to v0.3.3
49+
- initial pass at `export terraform` for exporting data from your account to be controlled by terraform
50+
- add shell completion generation command
51+
- add get and list check commands
52+
- add list commands which differ from get commands
53+
- add commands for rubric categories and levels
54+
- add get and delete service commands
55+
- add gpg signing
56+
- add ability to query account lifecycles, tiers, teams and tools
57+
58+
### Refactor
59+
- convert prefered environment variable prefix from `OL_` to `OPSLEVEL_` but still support old prefix
60+
- use args instead of flags for rubric commands
61+
- seperate get and list commands
62+
63+
64+
## [v0.1.0-beta.5] - 2021-07-10
65+
66+
## [v0.1.0-beta.4] - 2021-07-10
67+
68+
## [v0.1.0-beta.3] - 2021-07-10
69+
70+
## [v0.1.0-beta.2] - 2021-07-10
71+
### Refactor
72+
- switch to goreleaser
73+
74+
75+
## [v0.1.0-beta.1] - 2021-06-26
76+
### Bugfix
77+
- add yaml struct tags for consistent configfile parsing
78+
79+
### Docs
80+
- rewrite examples to show both yaml and env var examples as well as switching to the full integration url rather then just ID
81+
82+
### Refactor
83+
- standardize inputs across flags, env vars, and yaml. Also include more imports to support a wider varity of source input data
84+
85+
86+
## [v0.0.1-beta.2] - 2021-06-19
87+
### Release
88+
- use aws ecr alias
89+
- remove github docker registry publish
90+
- add windows binary cross compile
91+
92+
93+
## v0.0.1-beta.1 - 2021-06-19
94+
### Docs
95+
- fix amazon ECR links to use new repo alias
96+
- flesh out readme with usage and install instructions
97+
98+
### Feature
99+
- add ability to scrape git commit info if available
100+
101+
102+
[v0.3.2]: https://github.com/OpsLevel/cli/compare/v0.3.1...v0.3.2
103+
[v0.3.1]: https://github.com/OpsLevel/cli/compare/v0.3.0...v0.3.1
104+
[v0.3.0]: https://github.com/OpsLevel/cli/compare/v0.3.0-beta.5...v0.3.0
105+
[v0.3.0-beta.5]: https://github.com/OpsLevel/cli/compare/v0.3.0-beta.4...v0.3.0-beta.5
106+
[v0.3.0-beta.4]: https://github.com/OpsLevel/cli/compare/v0.3.0-beta.3...v0.3.0-beta.4
107+
[v0.3.0-beta.3]: https://github.com/OpsLevel/cli/compare/v0.3.0-beta.2...v0.3.0-beta.3
108+
[v0.3.0-beta.2]: https://github.com/OpsLevel/cli/compare/v0.3.0-beta.1...v0.3.0-beta.2
109+
[v0.3.0-beta.1]: https://github.com/OpsLevel/cli/compare/v0.3.0-beta...v0.3.0-beta.1
110+
[v0.3.0-beta]: https://github.com/OpsLevel/cli/compare/v0.2.0-beta...v0.3.0-beta
111+
[v0.2.0-beta]: https://github.com/OpsLevel/cli/compare/v0.1.0-beta.5...v0.2.0-beta
112+
[v0.1.0-beta.5]: https://github.com/OpsLevel/cli/compare/v0.1.0-beta.4...v0.1.0-beta.5
113+
[v0.1.0-beta.4]: https://github.com/OpsLevel/cli/compare/v0.1.0-beta.3...v0.1.0-beta.4
114+
[v0.1.0-beta.3]: https://github.com/OpsLevel/cli/compare/v0.1.0-beta.2...v0.1.0-beta.3
115+
[v0.1.0-beta.2]: https://github.com/OpsLevel/cli/compare/v0.1.0-beta.1...v0.1.0-beta.2
116+
[v0.1.0-beta.1]: https://github.com/OpsLevel/cli/compare/v0.0.1-beta.2...v0.1.0-beta.1
117+
[v0.0.1-beta.2]: https://github.com/OpsLevel/cli/compare/v0.0.1-beta.1...v0.0.1-beta.2

changes/v0.3.3.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## [v0.3.3] - 2021-10-31
2+
### Bugfix
3+
* `export terraform` no longer outputs repos without a default alias
4+
* `export terraform` now properly emits filter predicates
5+
6+
[v0.3.3]: https://github.com/OpsLevel/cli/compare/v0.3.2...v0.3.3

0 commit comments

Comments
 (0)