add more changelog and clean up test output

This commit is contained in:
John Smith 2023-08-20 12:10:54 -04:00
parent 2d454c2654
commit f43462da8c
2 changed files with 3 additions and 2 deletions

View File

@ -5,7 +5,8 @@
- Windows crate update caused build and nul termination issues for DNS resolver - Windows crate update caused build and nul termination issues for DNS resolver
- Fix for network key on the veilid-server command line - Fix for network key on the veilid-server command line
- Strict verification for Ed25519 enabled - Strict verification for Ed25519 enabled
- Domain separation for VLD0 signing and crypt
**Changes in Veilid 0.1.9** **Changes in Veilid 0.1.9**
- SECURITY FIX - SECURITY FIX
* DESCRIPTION: Decompression was occurring in an unbounded way upon envelope receipt. * DESCRIPTION: Decompression was occurring in an unbounded way upon envelope receipt.

View File

@ -98,7 +98,7 @@ cfg_if! {
pub fn setup() { pub fn setup() {
SETUP_ONCE.call_once(|| { SETUP_ONCE.call_once(|| {
use tracing_subscriber::{filter, fmt, prelude::*}; use tracing_subscriber::{filter, fmt, prelude::*};
let mut filters = filter::Targets::new().with_default(filter::LevelFilter::TRACE); let mut filters = filter::Targets::new().with_default(filter::LevelFilter::INFO);
for ig in DEFAULT_LOG_IGNORE_LIST { for ig in DEFAULT_LOG_IGNORE_LIST {
filters = filters.with_target(ig, filter::LevelFilter::OFF); filters = filters.with_target(ig, filter::LevelFilter::OFF);
} }