|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to this project will be documented in this file. |
| 4 | + |
| 5 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), |
| 6 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 7 | + |
| 8 | +## [Unreleased] |
| 9 | + |
| 10 | +## [0.4.0] - 2025-06-01 |
| 11 | + |
| 12 | +### Added |
| 13 | +- `wireshark_get_packet_bytes`: Get raw Hex/ASCII dump (Packet Bytes view) |
| 14 | +- `wireshark_get_packet_context`: View packets surrounding a specific frame (before and after) to understand context |
| 15 | +- `wireshark_search_packets` enhanced with `scope` parameter: |
| 16 | + - `scope="bytes"`: Search in raw payload (Hex/String) |
| 17 | + - `scope="details"`: Search in decoded text/fields with Regex support |
| 18 | +- `wireshark_follow_stream` now supports pagination (`offset_lines`) and content search (`search_content`) |
| 19 | + |
| 20 | +### Changed |
| 21 | +- `wireshark_get_packet_list` now supports custom columns (e.g., `"ip.src,http.host"`) |
| 22 | +- `wireshark_get_packet_details` now supports layer filtering (e.g., `"ip,tcp,http"`) to reduce token usage |
| 23 | + |
| 24 | +### Deprecated |
| 25 | +- `wireshark_read_packets`: Use `wireshark_get_packet_details` instead |
| 26 | + |
| 27 | +## [0.2.1] - 2025-05-01 |
| 28 | + |
| 29 | +### Added |
| 30 | +- Initial public release |
| 31 | +- Core packet analysis tools: `wireshark_get_packet_list`, `wireshark_get_packet_details`, `wireshark_follow_stream` |
| 32 | +- Data extraction: `wireshark_extract_fields`, `wireshark_extract_http_requests`, `wireshark_extract_dns_queries`, `wireshark_list_ips`, `wireshark_export_objects` |
| 33 | +- Statistics: protocol hierarchy, endpoints, conversations, I/O graph, expert info, service response time |
| 34 | +- File operations: `wireshark_get_file_info`, `wireshark_merge_pcaps`, `wireshark_filter_save` |
| 35 | +- Live capture: `wireshark_list_interfaces`, `wireshark_capture` |
| 36 | +- Security: `wireshark_check_threats` (URLhaus), `wireshark_extract_credentials` |
| 37 | +- Decoding: `wireshark_decode_payload` with auto-detection (Base64, Hex, URL, Gzip, Deflate, Rot13) |
| 38 | +- Visualization: ASCII traffic plot, ASCII protocol hierarchy tree |
| 39 | + |
| 40 | +[Unreleased]: https://github.com/bx33661/Wireshark-MCP/compare/v0.4.0...HEAD |
| 41 | +[0.4.0]: https://github.com/bx33661/Wireshark-MCP/compare/v0.2.1...v0.4.0 |
| 42 | +[0.2.1]: https://github.com/bx33661/Wireshark-MCP/releases/tag/v0.2.1 |
0 commit comments