-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
104 lines (72 loc) · 2.74 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
v0.14.0
* Add information about origin of the module in `show_diff`. It should help in recognition of the packets.
v0.13.0
* Add assertion definitions: "assert_hex_equal", "assert_hex_not_equal", "assert_hex_len_equal", "assert_hex_len_not_equal",
"assert_bytes_equal", "assert_bytes_not_equal"
v0.12.1
* Add more information to the hhstrip command
v0.12
* Add a hhstrip. Similar like a `hstrip` it loads hexdump from the clipboard and prepare link to the PacketHelper.com
v0.11.1
* Fix test to run correctly w/GitHub Actions
v0.11
* Add `to_dict` and `to_list`. Allow to dump packet layers into dict Dict[AnyStr, AnyStr]
and list List[Dict[AnyStr, AnyStr]]
v0.10.2
* Disable coping to the clipboard after hexdump was provided to the hstrip()
v0.10.1
* hstrip extended by the "hexdump" arg, which allow to transfer series of char to clean (clipboard not used)
v0.10
* Add support for the hstrip
v0.9.0
* Add assertHexLenEqual & assertHexLenNotEqual to the PackerAssert
v0.8.4
* Add `diff` function to the main __init__.py
v0.8.2
* Correct issue with printing a diff after the fail of assertHexEqual
v0.8.0
* Add int2ip and ip2int for easy conversion
v0.7.1
* Add universal support for the Python2 and Python3 for the mac conversion
v0.7.0
* Add int2mac and mac2int for easy conversion
v0.6.2
* Resolve issue around Py2&Py3 hexdump
v0.6.1
* Resolve an issue with wrongly printed hexdump
v0.6.0
* Add a packet_helper "shortcut" for "better import" of function (no more scapy name)
v0.5.3
* Resolve some issues
v0.5.2
* Update README
* Add chexdump and hexdump into main init.py
* Add a parity_check (default turn on, will be default off with the next version(
* Resolve some small issues
v0.5.1
* Correct issue with unsupported bytesarray provided to the hexdump
v0.5.0
* Introduce an chexdump and hexdump functionality (w/ show or ret str/list)
v0.4.5
* Introduce a batch of improvements. Automatically convert packages to hex format, show str[hex] object when assertion failed. Resolve a few bugs when used with Python 2.7. The clean message format for Python 2.7.
v0.3.4
* add assertHexDifferentAt to find difference on specific positions
v0.3.3
* add support for .hex() method
v0.3.2
* rename HexEqual into PacketAssert
v0.3.1
* assertBytesEqual/assertBytesNotEqual
* add a Python 2.7 compatibility
v0.3.0
* assertHexEqual/assertHexNotEqual were added. It should be handy shortcut for ex Unittest or PyTest framework
v0.2.2
* Change a _diff into diff which accepts List[List[str], List[str]] to directly compare two hex in "00 11" format
v0.2.1
* Small improvements around _diff func
v0.2.0
* Align License in all files
v0.1.12
* The 'show_diff's parameter 'empty_char' accepts only one character. It will be doubled in the process.
v0.1.11
* Add a 'hex_equal' function.