This repository has been archived by the owner on Sep 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
590c7ae
commit f144995
Showing
6 changed files
with
68 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | ||
|
||
|
@@ -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) | ||
|
||
|