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

Commit fc9134e

Browse files
authored
Prepare release 0.7.0 (#215)
1 parent 5f76332 commit fc9134e

File tree

5 files changed

+61
-10
lines changed

5 files changed

+61
-10
lines changed

README.md

+7-7
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.6.0/
198+
sudo git clone --recurse-submodule https://github.com/cisco-open/camblet-driver.git /usr/src/camblet-0.7.0/
199199

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

203203
# Build and install the kernel module against the current kernel version
204-
sudo dkms install -m camblet -v 0.6.0
204+
sudo dkms install -m camblet -v 0.7.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.6.0
221-
sudo dkms remove -m camblet -v 0.6.0
220+
sudo dkms uninstall -m camblet -v 0.7.0
221+
sudo dkms remove -m camblet -v 0.7.0
222222
```
223223

224224
### Debian package
@@ -242,7 +242,7 @@ make deb
242242
The package can be installed with the following command:
243243

244244
```bash
245-
sudo apt install ../camblet-driver_0.4.0-1_all.deb
245+
sudo apt install ../camblet-driver_0.7.0-1_all.deb
246246
```
247247

248248
### RPM package
@@ -266,5 +266,5 @@ make rpm
266266
The package can be installed with the following command:
267267

268268
```bash
269-
sudo dnf install ../camblet-driver-0.4.0-1.noarch.rpm
269+
sudo dnf install ../camblet-driver-0.7.0-1.noarch.rpm
270270
```

debian/changelog

+27
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
camblet-driver (0.7.0) unstable; urgency=medium
2+
3+
* socket: fix leaking tcp_connection_contexts and opa objects (#214)
4+
* socket: fixes around camblet_get/setsockopt and recvmsg waiting and other things (#209)
5+
* Add read/write buffer lock during send/recvmsg (#207)
6+
* socket: fix for bearrssl pre-read data vs poll() (#205)
7+
* socket: propagate non-block error codes upwards (#202)
8+
* add missing memory allocation checks (#199)
9+
* socket: fix bearssl close order and locking (#195)
10+
* Support aes gcm and ccm ciphers (#196)
11+
* change spinlocks to mutexes (unification)
12+
* fixes use = as key value separator in labels fix uniqueness in rego
13+
* check spiffe id validity without regex
14+
* support workload id templates
15+
* rust: update crates and remove unused imports
16+
* Use camblet_sendpage in case of kTLS under kernel version 6.5 (#191)
17+
* handle -ERESTARTSYS during TLS handshake
18+
* fix trace log message size calculation
19+
* ci: use build matrix to test on 6.5 and 5.15 kernel as well (#182)
20+
* Add BearSSL tests (#178)
21+
* opa: builtins parsing and some linkage fixes (#176)
22+
* proper and verbose wasm module error printing (#175)
23+
* implement camblet_sendpage
24+
* HTTP header injection (#167)
25+
26+
-- Camblet maintainers <[email protected]> Thu, 18 Apr 2024 10:09:04 +0200
27+
128
camblet-driver (0.6.0) unstable; urgency=medium
229

330
* parametrize VERBOSE builds (#171)

dkms.conf

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

rpmbuild/SPECS/camblet-driver.spec

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

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

5858

5959
%changelog
60+
* Thu Apr 18 2024 Camblet maintainers <[email protected]> - 0.7.0-1
61+
- socket: fix leaking tcp_connection_contexts and opa objects (#214)
62+
- socket: fixes around camblet_get/setsockopt and recvmsg waiting and other things (#209)
63+
- Add read/write buffer lock during send/recvmsg (#207)
64+
- socket: fix for bearrssl pre-read data vs poll() (#205)
65+
- socket: propagate non-block error codes upwards (#202)
66+
- add missing memory allocation checks (#199)
67+
- socket: fix bearssl close order and locking (#195)
68+
- Support aes gcm and ccm ciphers (#196)
69+
- change spinlocks to mutexes (unification)
70+
- check spiffe id validity without regex
71+
- fixes use = as key value separator in labels fix uniqueness in rego
72+
- support workload id templates
73+
- rust: update crates and remove unused imports
74+
- Use camblet_sendpage in case of kTLS under kernel version 6.5 (#191)
75+
- handle -ERESTARTSYS during TLS handshake
76+
- fix trace log message size calculation
77+
- ci: use build matrix to test on 6.5 and 5.15 kernel as well (#182)
78+
- Add BearSSL tests (#178)
79+
- opa: builtins parsing and some linkage fixes (#176)
80+
- proper and verbose wasm module error printing (#175)
81+
- implement camblet_sendpage
82+
- HTTP header injection (#167)
83+
6084
* Tue Feb 27 2024 Camblet maintainers <[email protected]> - 0.6.0-1
6185
- parametrize VERBOSE builds (#171)
6286
- chore: do not use deprecated -EXTRA_CFLAGS (#169)

src/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.6.0");
31+
MODULE_VERSION("0.7.0");
3232
MODULE_SOFTDEP("pre: tls");
3333

3434
static bool proxywasm_modules = false;

0 commit comments

Comments
 (0)