Skip to content

Commit 72adf57

Browse files
authored
bump version to 0.1.4 (#118)
* bump version to 0.1.4 * add changelog
1 parent df93a14 commit 72adf57

File tree

7 files changed

+23
-7
lines changed

7 files changed

+23
-7
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,19 @@
2323
* privilege escalation allowed
2424
* run as root allowed
2525
* run as privileged
26+
27+
# 0.1.1
28+
* [Fix](https://github.com/reactiveops/polaris/issues/93): missing `config.yaml` and dashboard assets in binary releases
29+
* Added some tests and better error handling
30+
31+
# 0.1.2
32+
* Stored all third-party assets (e.g. Charts.js) to local files to support offline dashboard viewing
33+
* Fix: custom configs in `ConfigMap` not respected
34+
35+
# 0.1.3
36+
* [Fix](https://github.com/reactiveops/polaris/issues/109): dashboard not updating when running persistently
37+
38+
# 0.1.4
39+
* [Fix](https://github.com/reactiveops/polaris/issues/116): details pages getting template errors
40+
* [Fix](https://github.com/reactiveops/polaris/issues/114): support all auth providers
41+
* [Fix](https://github.com/reactiveops/polaris/issues/112): Ignore readiness probe for initContainers

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Version][version-image]][version-link] [![CircleCI][circleci-image]][circleci-link] [![Go Report Card][goreport-image]][goreport-link]
66
</div>
77

8-
[version-image]: https://img.shields.io/static/v1.svg?label=Version&message=0.1.3&color=239922
8+
[version-image]: https://img.shields.io/static/v1.svg?label=Version&message=0.1.4&color=239922
99
[version-link]: https://github.com/reactiveops/polaris
1010

1111
[goreport-image]: https://goreportcard.com/badge/github.com/reactiveops/polaris

deploy/dashboard.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ spec:
160160
- --dashboard
161161
- --config
162162
- /opt/app/config.yaml
163-
image: 'quay.io/reactiveops/polaris:0.1.3'
163+
image: 'quay.io/reactiveops/polaris:0.1.4'
164164
imagePullPolicy: 'Always'
165165
name: dashboard
166166
ports:

deploy/helm/polaris/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
apiVersion: v1
22
description: Validation of best practices in your Kubernetes clusters
33
name: polaris
4-
version: 0.1.3
4+
version: 0.1.4

deploy/helm/polaris/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ dashboard:
5050
type: ClusterIP
5151
image:
5252
repository: quay.io/reactiveops/polaris
53-
tag: 0.1.3
53+
tag: 0.1.4
5454
pullPolicy: Always
5555

5656
webhook:
5757
enable: false
5858
replicas: 1
5959
image:
6060
repository: quay.io/reactiveops/polaris
61-
tag: 0.1.3
61+
tag: 0.1.4
6262
pullPolicy: Always
6363

6464
rbac:

deploy/webhook.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ spec:
210210
- --webhook
211211
- --config
212212
- /opt/app/config.yaml
213-
image: 'quay.io/reactiveops/polaris:0.1.3'
213+
image: 'quay.io/reactiveops/polaris:0.1.4'
214214
imagePullPolicy: 'Always'
215215
ports:
216216
- containerPort: 9876

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ import (
4444

4545
const (
4646
// Version represents the current release version of Polaris
47-
Version = "0.1.3"
47+
Version = "0.1.4"
4848
)
4949

5050
func main() {

0 commit comments

Comments
 (0)