Skip to content
This repository was archived by the owner on Sep 19, 2024. It is now read-only.

Commit f144995

Browse files
authored
Prepare release 0.6.0 (#173)
1 parent 590c7ae commit f144995

File tree

6 files changed

+68
-9
lines changed

6 files changed

+68
-9
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ rpm:
191191

192192
.PHONY: bump_version
193193
bump_version:
194-
$(eval latest_tag :=0.4.0)
194+
$(eval latest_tag :=$(shell git fetch origin; git describe --tags --abbrev=0))
195195
$(eval major := $(shell echo $(latest_tag) | cut -d. -f1))
196196
$(eval minor := $(shell echo $(latest_tag) | cut -d. -f2))
197197
$(eval patch := $(shell echo $(latest_tag) | cut -d. -f3))

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -195,13 +195,13 @@ sudo dnf install dkms
195195
The Camblet can be installed with DKMS in the following way currently:
196196

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

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

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

206206
# Load the kernel module
207207
sudo modprobe camblet
@@ -217,8 +217,8 @@ Un-installation is very simple as well:
217217
sudo modprobe -r camblet
218218

219219
# Remove the kernel module from DKMS source control
220-
sudo dkms uninstall -m camblet -v 0.5.0
221-
sudo dkms remove -m camblet -v 0.5.0
220+
sudo dkms uninstall -m camblet -v 0.6.0
221+
sudo dkms remove -m camblet -v 0.6.0
222222
```
223223

224224
### Debian package

debian/changelog

+31
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
camblet-driver (0.6.0) unstable; urgency=medium
2+
3+
* parametrize VERBOSE builds (#171)
4+
* chore: do not use deprecated -EXTRA_CFLAGS (#169)
5+
* add http parser library (#158)
6+
* handle nil msghdr
7+
* fix missing param
8+
* call ensure_tls_handshake at getsockopt to avoid timing issues
9+
* move tls_info struct to header
10+
* support getting connection spiffe ids through socket option
11+
* Update socket.c
12+
* remove unused uuid header
13+
* refactor passthrough
14+
* socket: implement automatic TLS passthrough
15+
* trace: lock less if possible (#157)
16+
* address review comment
17+
* address review comments
18+
* use socket pointer instead of uuid
19+
* add tcp connection context to trace messages
20+
* tracing requests implementation
21+
* add one-way message type command
22+
* change how camblet runs in ci
23+
* run ci on all branches
24+
* Add changelog to rpm spec as well (#146)
25+
* fix prerm check
26+
* tls: harmonize spiffe id checks
27+
* Add setup-tls-perf target and openssl to smoketest (#142)
28+
* Escape special characters in bump version script (#144)
29+
30+
-- Camblet maintainers <[email protected]> Tue, 27 Feb 2024 14:19:05 +0100
31+
132
camblet-driver (0.5.0) unstable; urgency=medium
233

334
* Contains a fix for KTLS issues

dkms.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PACKAGE_NAME="camblet"
2-
PACKAGE_VERSION="0.5.0"
2+
PACKAGE_VERSION="0.6.0"
33
BUILT_MODULE_NAME[0]="camblet"
44
BUILT_MODULE_NAME[1]="bearssl"
55
MAKE[0]="make"

main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
MODULE_AUTHOR("Camblet Maintainers <[email protected]>");
2929
MODULE_LICENSE("Dual MIT/GPL");
3030
MODULE_DESCRIPTION("Camblet - Kernel Space Access Control for Zero Trust Networking");
31-
MODULE_VERSION("0.5.0");
31+
MODULE_VERSION("0.6.0");
3232
MODULE_SOFTDEP("pre: tls");
3333

3434
static bool proxywasm_modules = false;

rpmbuild/SPECS/camblet-driver.spec

+29-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: camblet-driver
2-
Version: 0.5.0
2+
Version: 0.6.0
33
Release: 1%{?dist}
44
Summary: Kernel module for the Camblet project.
55

@@ -57,6 +57,34 @@ fi
5757

5858

5959
%changelog
60+
* Tue Feb 27 2024 Camblet maintainers <[email protected]> - 0.6.0-1
61+
- parametrize VERBOSE builds (#171)
62+
- chore: do not use deprecated -EXTRA_CFLAGS (#169)
63+
- add http parser library (#158)
64+
- handle nil msghdr
65+
- fix missing param
66+
- call ensure_tls_handshake at getsockopt to avoid timing issues
67+
- move tls_info struct to header
68+
- support getting connection spiffe ids through socket option
69+
- Update socket.c
70+
- remove unused uuid header
71+
- refactor passthrough
72+
- socket: implement automatic TLS passthrough
73+
- trace: lock less if possible (#157)
74+
- address review comment
75+
- address review comments
76+
- use socket pointer instead of uuid
77+
- add tcp connection context to trace messages
78+
- tracing requests implementation
79+
- add one-way message type command
80+
- change how camblet runs in ci
81+
- run ci on all branches
82+
- Add changelog to rpm spec as well (#146)
83+
- fix prerm check
84+
- tls: harmonize spiffe id checks
85+
- Add setup-tls-perf target and openssl to smoketest (#142)
86+
- Escape special characters in bump version script (#144)
87+
6088
* Fri Dec 15 2023 Nasp maintainers <[email protected]> - 0.4.0-1
6189
- Create a new make target bump version (#128)
6290

0 commit comments

Comments
 (0)