Skip to content
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
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ Le format suit l'esprit de [Keep a Changelog](https://keepachangelog.com/fr/1.1.

## [Non publie]

## [10.1.0] - 2026-08-16

Version mineure, strictement additive : trois nouveaux decodeurs de protocole
(SSH, ICMPv4, ICMPv6 avec la decouverte de voisins et de routeurs), deux
nouveaux LINKTYPE (IPV4 et IPV6), et deux correctifs de validation.

`cargo semver-checks check-release` contre `v10.0.0` : 223 controles, aucune
rupture. La fenetre de stabilite ouverte par la 10.0.0 tient.

Premiere release au packaging assaini : 172 fichiers publies contre 194 pour
la 10.0.0, sans `.DS_Store`, `analyse.md`, `oui.csv` ni `docker-compose.yml`.

**Changement de comportement a signaler.** Le correctif `require_version`
n'est pas une rupture d'API, mais il resserre la detection HTTP : des payloads
jusqu'ici classes HTTP ne le seront plus. C'est l'objectif, mais un
consommateur qui compte des flux HTTP verra ses chiffres bouger.

### Ajoute

- Decodage **ICMPv4** (IP protocole 1, RFC 792). Le protocole etait reconnu au
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 = "packet_parser"
version = "10.0.0"
version = "10.1.0"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Refresh both lockfiles for the version bump

After this version changes to 10.1.0, the tracked Cargo.lock and fuzz/Cargo.lock still identify packet_parser as 10.0.0. As a result, locked builds from this release commit abort before compilation: both cargo check --workspace --locked --all-features and cargo check --manifest-path fuzz/Cargo.toml --locked --offline report that their lockfile needs updating. Regenerate and commit both lockfiles so consumers and automation using --locked can build the tagged source.

Useful? React with 👍 / 👎.

edition = "2024"
authors = ["Cyprien Avico avicocyprien@yahoo.com"]
description = "A powerful and modular Rust crate for network packet parsing."
Expand Down
4 changes: 2 additions & 2 deletions README-fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ decodees et laisse les couches suivantes a `None` quand c'est necessaire.

```toml
[dependencies]
packet_parser = "9.0.0"
packet_parser = "10.1.0"
```

Pour reproduire les exemples qui decodent de l'hexadecimal:

```toml
[dependencies]
hex = "0.4"
packet_parser = "9.0.0"
packet_parser = "10.1.0"
```

## Exemple rapide
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ next layers as `None` when parsing cannot safely continue.

```toml
[dependencies]
packet_parser = "9.0.0"
packet_parser = "10.1.0"
```

For examples that decode hexadecimal packet dumps:

```toml
[dependencies]
hex = "0.4"
packet_parser = "9.0.0"
packet_parser = "10.1.0"
```

## Quick Example
Expand Down