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
5f76332
commit fc9134e
Showing
5 changed files
with
61 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,30 @@ | ||
camblet-driver (0.7.0) unstable; urgency=medium | ||
|
||
* socket: fix leaking tcp_connection_contexts and opa objects (#214) | ||
* socket: fixes around camblet_get/setsockopt and recvmsg waiting and other things (#209) | ||
* Add read/write buffer lock during send/recvmsg (#207) | ||
* socket: fix for bearrssl pre-read data vs poll() (#205) | ||
* socket: propagate non-block error codes upwards (#202) | ||
* add missing memory allocation checks (#199) | ||
* socket: fix bearssl close order and locking (#195) | ||
* Support aes gcm and ccm ciphers (#196) | ||
* change spinlocks to mutexes (unification) | ||
* fixes use = as key value separator in labels fix uniqueness in rego | ||
* check spiffe id validity without regex | ||
* support workload id templates | ||
* rust: update crates and remove unused imports | ||
* Use camblet_sendpage in case of kTLS under kernel version 6.5 (#191) | ||
* handle -ERESTARTSYS during TLS handshake | ||
* fix trace log message size calculation | ||
* ci: use build matrix to test on 6.5 and 5.15 kernel as well (#182) | ||
* Add BearSSL tests (#178) | ||
* opa: builtins parsing and some linkage fixes (#176) | ||
* proper and verbose wasm module error printing (#175) | ||
* implement camblet_sendpage | ||
* HTTP header injection (#167) | ||
|
||
-- Camblet maintainers <[email protected]> Thu, 18 Apr 2024 10:09:04 +0200 | ||
|
||
camblet-driver (0.6.0) unstable; urgency=medium | ||
|
||
* parametrize VERBOSE builds (#171) | ||
|
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,5 +1,5 @@ | ||
Name: camblet-driver | ||
Version: 0.6.0 | ||
Version: 0.7.0 | ||
Release: 1%{?dist} | ||
Summary: Kernel module for the Camblet project. | ||
|
||
|
@@ -57,6 +57,30 @@ fi | |
|
||
|
||
%changelog | ||
* Thu Apr 18 2024 Camblet maintainers <[email protected]> - 0.7.0-1 | ||
- socket: fix leaking tcp_connection_contexts and opa objects (#214) | ||
- socket: fixes around camblet_get/setsockopt and recvmsg waiting and other things (#209) | ||
- Add read/write buffer lock during send/recvmsg (#207) | ||
- socket: fix for bearrssl pre-read data vs poll() (#205) | ||
- socket: propagate non-block error codes upwards (#202) | ||
- add missing memory allocation checks (#199) | ||
- socket: fix bearssl close order and locking (#195) | ||
- Support aes gcm and ccm ciphers (#196) | ||
- change spinlocks to mutexes (unification) | ||
- check spiffe id validity without regex | ||
- fixes use = as key value separator in labels fix uniqueness in rego | ||
- support workload id templates | ||
- rust: update crates and remove unused imports | ||
- Use camblet_sendpage in case of kTLS under kernel version 6.5 (#191) | ||
- handle -ERESTARTSYS during TLS handshake | ||
- fix trace log message size calculation | ||
- ci: use build matrix to test on 6.5 and 5.15 kernel as well (#182) | ||
- Add BearSSL tests (#178) | ||
- opa: builtins parsing and some linkage fixes (#176) | ||
- proper and verbose wasm module error printing (#175) | ||
- implement camblet_sendpage | ||
- HTTP header injection (#167) | ||
|
||
* Tue Feb 27 2024 Camblet maintainers <[email protected]> - 0.6.0-1 | ||
- parametrize VERBOSE builds (#171) | ||
- chore: do not use deprecated -EXTRA_CFLAGS (#169) | ||
|
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.6.0"); | ||
MODULE_VERSION("0.7.0"); | ||
MODULE_SOFTDEP("pre: tls"); | ||
|
||
static bool proxywasm_modules = false; | ||
|