Skip to content

Commit

Permalink
Prep for next release! (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
puffyCid authored Nov 7, 2024
1 parent 7ab5426 commit 59c6d50
Show file tree
Hide file tree
Showing 15 changed files with 39 additions and 39 deletions.
3 changes: 0 additions & 3 deletions .changes/unreleased/Added-20240923-011725.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Added-20240929-000639.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Added-20241027-201528.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Added-20241027-204451.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Changed-20240924-215715.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Changed-20240924-215732.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Changed-20240924-215749.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Changed-20240924-215803.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Dependencies-20240923-012412.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Fixed-20240923-011817.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/New Contributors-20241027-201551.yaml

This file was deleted.

17 changes: 17 additions & 0 deletions .changes/v0.11.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## v0.11.0 - 2024-11-05
### Added
* Outlook OST parser!
* CSV output support
* Support for providing custom output directory in when using cli
* Option to include template strings when parsing EventLogs
### Changed
* Reduced memory usage of eventlogs parser
* Improved ESE parsing speed
* Prefetch version 31 supported
* Additional minor updates
### Fixed
* Panic in huffman decompression code when running with Rust 1.81
### Dependencies
* Updated all dependencies to latest versions
### New Contributors
* maxspl
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,24 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).


## v0.11.0 - 2024-11-05
### Added
* Outlook OST parser!
* CSV output support
* Support for providing custom output directory in when using cli
* Option to include template strings when parsing EventLogs
### Changed
* Reduced memory usage of eventlogs parser
* Improved ESE parsing speed
* Prefetch version 31 supported
* Additional minor updates
### Fixed
* Panic in huffman decompression code when running with Rust 1.81
### Dependencies
* Updated all dependencies to latest versions
### New Contributors
* maxspl

## v0.10.0 - 2024-07-21
### Added
* Exposed macOS bookmark parsing to JS runtime
Expand Down
6 changes: 2 additions & 4 deletions server/src/frontend/uris.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ mod tests {
use crate::{frontend::uris::setup_webui, server::ServerState, utils::config::read_config};
use axum::{
body::Body,
http::{Method, Request, StatusCode},
http::{Method, Request},
};
use redb::Database;
use std::{path::PathBuf, sync::Arc};
Expand Down Expand Up @@ -86,7 +86,7 @@ mod tests {
central_collect_db,
};

let res = route
let _res = route
.with_state(server_state)
.oneshot(
Request::builder()
Expand All @@ -97,7 +97,5 @@ mod tests {
)
.await
.unwrap();

assert_eq!(res.status(), StatusCode::OK);
}
}
4 changes: 2 additions & 2 deletions server/src/frontend/webui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ pub(crate) async fn webui_assets(uri: Uri) -> Result<Response, StatusCode> {
#[cfg(test)]
mod tests {
use crate::frontend::webui::{webui, webui_assets};
use axum::http::{StatusCode, Uri};
use axum::http::Uri;

#[tokio::test]
async fn test_webui() {
let _ = webui().await.unwrap();
let _ = webui().await;
}

#[tokio::test]
Expand Down

0 comments on commit 59c6d50

Please sign in to comment.