Skip to content

Commit

Permalink
prepare v0.10.11 release
Browse files Browse the repository at this point in the history
  • Loading branch information
digizeph committed Oct 27, 2024
1 parent 8e8bf4d commit 5fc869d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@

All notable changes to this project will be documented in this file.

## v0.10.11 - 2024-10-27

### Highlights

* Improved RIS Live message types and handling
* clean up dependencies
* `models` feature is removed, and all dependencies are now required dependencies for the crate
* `models` module no-longer requires dependencies introduced by parser, like `bytes` for encoding
* decouple `oneio` from `parser` feature
* `oneio` is no-longer a required dependency for the parser
* users can now use `parser` feature without `oneio` (with `--no-default-features` specified)
* to create a new parser, one needs to user `BgpkitParser::from_reader` function instead of `BgpkitParser::new`
* downstream libraries that only utilize parser code (such as RIS Live parsing) no-longer have to depend on oneio
* improve RouteViews Kafka example by allowing wildcard topic subscription

### Bug fixes

* fixed an issue where when merging `AS_PATH` and `AS4_PATH` segments, the parser incorrectly uses `AS_PATH` segment
content
* this issue may manifest as `AS_TRANS` (`AS23456`) appearing in the AS path while the correct 32-bit ASN has been
sent in `AS4_PATH`

## v0.10.11-beta.1 - 2024-10-16

### Highlights
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bgpkit-parser"
version = "0.10.11-beta.1"
version = "0.10.11"
authors = ["Mingwei Zhang <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down

0 comments on commit 5fc869d

Please sign in to comment.