Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.6.0 #138

Merged
merged 2 commits into from
Apr 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 33 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,37 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.6.0] - 2024-04-14

This release mainly adds the `dotnet` module and simplifies a few dependencies.

### boreal

#### Added:

* The `dotnet` module is now available behind the `object` feature (enabled by default).
[#127](https://github.com/vthib/boreal/pull/127), [#131](https://github.com/vthib/boreal/pull/131),
[#133](https://github.com/vthib/boreal/pull/133), [#135](https://github.com/vthib/boreal/pull/135).

#### Fixed:

- Fixed compilation when using `--no-default-features` and other feature combinations.
[#129](https://github.com/vthib/boreal/pull/129), [#130](https://github.com/vthib/boreal/pull/130).
- Fixed exposure of some optional dependencies as their own features.
[#128](https://github.com/vthib/boreal/pull/128).
- Added CI jobs to ensure common combinations of features compile and run tests properly.
[#132](https://github.com/vthib/boreal/pull/132).

#### Changed:

* The `bitmap` dependency has been removed and replaced by an custom implementation for our
very limited usecase. [#120](https://github.com/vthib/boreal/pull/120).
* The `windows` dependency has been replaced by `windows-sys`.
[#137](https://github.com/vthib/boreal/pull/137).
* All dependencies have been updated to their latest versions.

Thanks to @demoray for their contributions.

## [0.5.0] - 2024-02-16

This release mainly consists of Yara 4.5 compatibility features and fixes:
Expand Down Expand Up @@ -298,7 +329,8 @@ Main changes:

Initial release.

[unreleased]: https://github.com/vthib/boreal/compare/v0.5.0...HEAD
[unreleased]: https://github.com/vthib/boreal/compare/v0.6.0...HEAD
[0.6.0]: https://github.com/vthib/boreal/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/vthib/boreal/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/vthib/boreal/compare/v0.3.1...v0.4.0
[0.3.1]: https://github.com/vthib/boreal/compare/v0.3.0...v0.3.1
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions boreal-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "boreal-cli"
version = "0.5.0"
version = "0.6.0"
description = "CLI utility to run boreal, a YARA rules engine"
repository = "https://github.com/vthib/boreal"
readme = "README.md"
Expand All @@ -25,7 +25,7 @@ memmap = ["boreal/memmap"]
profiling = ["boreal/profiling"]

[dependencies]
boreal = { path = "../boreal", version = "0.5.0" }
boreal = { path = "../boreal", version = "0.6.0" }

# CLI arguments handling
clap = { version = "4.5", features = ["cargo"] }
Expand Down
2 changes: 1 addition & 1 deletion boreal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "boreal"
version = "0.5.0"
version = "0.6.0"
description = "A library to evaluate YARA rules, used to scan bytes for textual and binary pattern"
repository = "https://github.com/vthib/boreal"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions boreal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ free. If however someone can provide a valid use-case, this difference can be re
- [x] pe (with the _object_ feature)
- `pe.signatures` is behind the _authenticode_ feature
- `pe.imphash()` is behind the _hash_ feature
- [x] dotnet
- [x] string
- [x] time
- [x] console
Expand All @@ -124,7 +125,6 @@ Modules not yet supported:

- [ ] cuckoo
- [ ] dex
- [ ] dotnet
- [ ] magic

## Pay for what you use
Expand Down Expand Up @@ -184,7 +184,7 @@ of all signatures, imports, exports, resources, etc on every scan.

## crate feature flags

- `object`: enables the `elf`, `macho` and `pe` module.
- `object`: enables the `elf`, `macho`, `pe` and `object` module.
- `hash`: enables the `hash` module, as well as the `pe.imphash()` function if the `object`
feature is also enabled.
- `authenticode`: this enables the `signatures` part of the `pe` module. This adds
Expand Down
Loading