Skip to content

Commit

Permalink
Prepare release 0.6.0 (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
baluchicken committed Feb 27, 2024
1 parent 590c7ae commit f144995
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ rpm:

.PHONY: bump_version
bump_version:
$(eval latest_tag :=0.4.0)
$(eval latest_tag :=$(shell git fetch origin; git describe --tags --abbrev=0))
$(eval major := $(shell echo $(latest_tag) | cut -d. -f1))
$(eval minor := $(shell echo $(latest_tag) | cut -d. -f2))
$(eval patch := $(shell echo $(latest_tag) | cut -d. -f3))
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,13 +195,13 @@ sudo dnf install dkms
The Camblet can be installed with DKMS in the following way currently:

```bash
sudo git clone --recurse-submodule https://github.com/cisco-open/camblet-driver.git /usr/src/camblet-0.5.0/
sudo git clone --recurse-submodule https://github.com/cisco-open/camblet-driver.git /usr/src/camblet-0.6.0/

# Add the kernel module to the DKMS source control
sudo dkms add -m camblet -v 0.5.0
sudo dkms add -m camblet -v 0.6.0

# Build and install the kernel module against the current kernel version
sudo dkms install -m camblet -v 0.5.0
sudo dkms install -m camblet -v 0.6.0

# Load the kernel module
sudo modprobe camblet
Expand All @@ -217,8 +217,8 @@ Un-installation is very simple as well:
sudo modprobe -r camblet

# Remove the kernel module from DKMS source control
sudo dkms uninstall -m camblet -v 0.5.0
sudo dkms remove -m camblet -v 0.5.0
sudo dkms uninstall -m camblet -v 0.6.0
sudo dkms remove -m camblet -v 0.6.0
```

### Debian package
Expand Down
31 changes: 31 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,34 @@
camblet-driver (0.6.0) unstable; urgency=medium

* parametrize VERBOSE builds (#171)
* chore: do not use deprecated -EXTRA_CFLAGS (#169)
* add http parser library (#158)
* handle nil msghdr
* fix missing param
* call ensure_tls_handshake at getsockopt to avoid timing issues
* move tls_info struct to header
* support getting connection spiffe ids through socket option
* Update socket.c
* remove unused uuid header
* refactor passthrough
* socket: implement automatic TLS passthrough
* trace: lock less if possible (#157)
* address review comment
* address review comments
* use socket pointer instead of uuid
* add tcp connection context to trace messages
* tracing requests implementation
* add one-way message type command
* change how camblet runs in ci
* run ci on all branches
* Add changelog to rpm spec as well (#146)
* fix prerm check
* tls: harmonize spiffe id checks
* Add setup-tls-perf target and openssl to smoketest (#142)
* Escape special characters in bump version script (#144)

-- Camblet maintainers <[email protected]> Tue, 27 Feb 2024 14:19:05 +0100

camblet-driver (0.5.0) unstable; urgency=medium

* Contains a fix for KTLS issues
Expand Down
2 changes: 1 addition & 1 deletion dkms.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PACKAGE_NAME="camblet"
PACKAGE_VERSION="0.5.0"
PACKAGE_VERSION="0.6.0"
BUILT_MODULE_NAME[0]="camblet"
BUILT_MODULE_NAME[1]="bearssl"
MAKE[0]="make"
Expand Down
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
MODULE_AUTHOR("Camblet Maintainers <[email protected]>");
MODULE_LICENSE("Dual MIT/GPL");
MODULE_DESCRIPTION("Camblet - Kernel Space Access Control for Zero Trust Networking");
MODULE_VERSION("0.5.0");
MODULE_VERSION("0.6.0");
MODULE_SOFTDEP("pre: tls");

static bool proxywasm_modules = false;
Expand Down
30 changes: 29 additions & 1 deletion rpmbuild/SPECS/camblet-driver.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: camblet-driver
Version: 0.5.0
Version: 0.6.0
Release: 1%{?dist}
Summary: Kernel module for the Camblet project.

Expand Down Expand Up @@ -57,6 +57,34 @@ fi


%changelog
* Tue Feb 27 2024 Camblet maintainers <[email protected]> - 0.6.0-1
- parametrize VERBOSE builds (#171)
- chore: do not use deprecated -EXTRA_CFLAGS (#169)
- add http parser library (#158)
- handle nil msghdr
- fix missing param
- call ensure_tls_handshake at getsockopt to avoid timing issues
- move tls_info struct to header
- support getting connection spiffe ids through socket option
- Update socket.c
- remove unused uuid header
- refactor passthrough
- socket: implement automatic TLS passthrough
- trace: lock less if possible (#157)
- address review comment
- address review comments
- use socket pointer instead of uuid
- add tcp connection context to trace messages
- tracing requests implementation
- add one-way message type command
- change how camblet runs in ci
- run ci on all branches
- Add changelog to rpm spec as well (#146)
- fix prerm check
- tls: harmonize spiffe id checks
- Add setup-tls-perf target and openssl to smoketest (#142)
- Escape special characters in bump version script (#144)

* Fri Dec 15 2023 Nasp maintainers <[email protected]> - 0.4.0-1
- Create a new make target bump version (#128)

Expand Down

0 comments on commit f144995

Please sign in to comment.