Skip to content

Commit

Permalink
added changelog file
Browse files Browse the repository at this point in the history
  • Loading branch information
dariuszSki committed Sep 27, 2024
1 parent a30de93 commit 159d3d0
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Changelog

All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

---
###

## [0.1.1] - 2024-09-27

- Updated the security context of the sidecar container

```shell
Capabilities: &corev1.Capabilities{
Add: []corev1.Capability{"NET_ADMIN", "NET_BIND_SERVICE"},
Drop: []corev1.Capability{"ALL"},
},
RunAsUser: &rootUser, (deafault = true)
Privileged: &isPrivileged, (default = false)
```

## [0.1.0] - 2024-08-08

###

- Added initial code.

2 changes: 1 addition & 1 deletion ziti-agent/cmd/common/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/spf13/cobra"
)

var Version = "0.1.0"
var Version = "0.1.1"

func NewVersionCmd() *cobra.Command {
return &cobra.Command{
Expand Down

0 comments on commit 159d3d0

Please sign in to comment.