diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..f238f82 --- /dev/null +++ b/CHANGELOG.md @@ -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. + diff --git a/ziti-agent/cmd/common/version.go b/ziti-agent/cmd/common/version.go index 6be683a..eefb3a7 100644 --- a/ziti-agent/cmd/common/version.go +++ b/ziti-agent/cmd/common/version.go @@ -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{