Version: 3.4.1 → 3.4.2.

[skip ci]
This commit is contained in:
Gerald Combs 2020-12-09 17:55:02 -08:00
parent 1a27f40587
commit 10a02a65d7
7 changed files with 9 additions and 1152 deletions

View File

@ -35,7 +35,7 @@ project(${_project_name} C CXX)
set(GIT_REVISION 0)
set(PROJECT_MAJOR_VERSION 3)
set(PROJECT_MINOR_VERSION 4)
set(PROJECT_PATCH_VERSION 1)
set(PROJECT_PATCH_VERSION 2)
set(PROJECT_BUILD_VERSION ${GIT_REVISION})
set(PROJECT_VERSION_EXTENSION "")

1045
ChangeLog

File diff suppressed because it is too large Load Diff

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
wireshark (3.4.1) unstable; urgency=low
wireshark (3.4.2) unstable; urgency=low
* Self-made package

View File

@ -1,6 +1,6 @@
// Common attributes
:wireshark-version: 3.4.1
:wireshark-version: 3.4.2
// Required for btn, kbd:, and menu: macros.
:experimental:

View File

@ -31,38 +31,6 @@ It is used for troubleshooting, analysis, development and education.
// CWE-401: Missing Release of Memory after Effective Lifetime
// https://nvd.nist.gov/vuln-metrics/cvss/v3-calculator
* wssalink:2020-16[]
Kafka dissector memory leak.
wsbuglink:16739[].
cveidlink:2020-26418[].
// Fixed in master: f4374967bb
// Fixed in release-3.4: fa53725469
// Fixed in master-3.2: 4736aaae7a
* wssalink:2020-17[]
USB HID dissector crash.
wsbuglink:16958[].
cveidlink:2020-26421[].
// Fixed in master: d5f2657825
// Fixed in release-3.4: c8fedf65b2
// Fixed in master-3.2: 61f17d3c21
* wssalink:2020-18[]
RTPS dissector memory leak.
wsbuglink:16994[].
cveidlink:2020-26420[].
// Fixed in master: 33e63d19e5
// Fixed in release-3.4: 6ece1c896d
// Fixed in master-3.2: 53682b53da
* wssalink:2020-19[]
Multiple dissector memory leak.
wsbuglink:17032[].
cveidlink:2020-26419[].
// Fixed in master: a9fc769d7b
// Fixed in release-3.4: 5edf715c04
// Fixed in master-3.2: n/a
The following bugs have been fixed:
@ -74,43 +42,6 @@ The following bugs have been fixed:
//* Wireshark exposed details your sordid redneck past, which were subsequently widely disseminated on social media.
// cp /dev/null /tmp/buglist.txt ; for bugnumber in `git log v3.4.2rc0.. | gsed -e 's/\(close\|fix\|resolv\)[^ ]* #/\nclose #/gI' | grep ^close | sed -e 's/close.*#\([1-9][0-9]*\).*/\1/' | sort -V -u` ; do "$(git rev-parse --show-toplevel)/tools/gen-bugnote" $bugnumber; pbpaste >> /tmp/buglist.txt; done
* Lua TvbRanges do not support truncated captures where tvb_captured_length < tvb_reported_length wsbuglink:15655[].
* IETF QUIC TLS decryption errors when a NAT rebinding happens for a connection wsbuglink:16915[].
* IETF QUIC TLS decryption error with key update wsbuglink:16916[].
* IETF QUIC TLS decryption error after the second key update wsbuglink:16920[].
* SOME/IP: Wrong dissection of parameters after Array wsbuglink:16951[].
* Can editcap properly corrupt pcapng file with systemd journal export block? wsbuglink:16965[].
* Lua: abort() called in lua_tap_draw() and lua_tap_reset() on script errors wsbuglink:16974[].
* Crash when a GIOP ior.txt file is present wsbuglink:16984[].
* Protobuf: failed to parse .proto file contains negative enum values or option values of number type wsbuglink:16988[].
* MMRP dissector bug wsbuglink:17005[].
* QUIC: "Loss bits" capability wsbuglink:17010[].
* Stdin capture fails on Windows wsbuglink:17018[].
* SSTP no longer recognized wsbuglink:17024[].
* RFC2190 encapsulated H.263 bitfields masked wrong in Mode A wsbuglink:17025[].
* Packet list bytes text character cursor is misaligned wsbuglink:17033[].
* SOME/IP: Resetting offset of static_array wsbuglink:17057[].
* editcap fails when splitting into multiple pcapng files wsbuglink:17060[].
* SMB Dissector for TRANS2_QUERY_FS_INFO displays truncated FS Name & Label wsbuglink:17064[].
* Wireshark does not display Arabic, Greek, some other characters correctly wsbuglink:17070[].
// === Removed Features and Support
@ -131,44 +62,15 @@ There are no new protocols in this release.
// Add one protocol per line between the -- delimiters.
[commaize]
--
ACDR
DOCSIS
Ericsson HDLC
F5 Ethernet Trailer
GIOP
GSM A
GSM RLC MAC
HTTP
IEEE 802.11
Kafka
LLC
MBIM
MMRP
NAS 5GS
NAS EPS
Nordic BLE
ProtoBuf
QUIC
Radiotap
RFC 2190
RTCP
RTPS
S1AP
SMB
SMB2
SOME/IP
STUN
USB Video
--
=== New and Updated Capture File Support
// There is no new or updated capture file support in this release.
There is no new or updated capture file support in this release.
// Add one file type per line between the -- delimiters.
[commaize]
--
pcapng
--
// [commaize]
// --
// --
// === New and Updated Capture Interfaces support

View File

@ -330,7 +330,7 @@ endif()
set_target_properties(epan PROPERTIES
COMPILE_DEFINITIONS "WS_BUILD_DLL"
LINK_FLAGS "${WS_LINK_FLAGS}"
VERSION "14.0.1" SOVERSION 14
VERSION "14.0.2" SOVERSION 14
INSTALL_RPATH "${LIBRARY_INSTALL_RPATH}"
# By default the name for a library with target name epan will be libepan,
# but Ethereal is now named Wireshark

View File

@ -123,7 +123,7 @@ set_target_properties(wiretap PROPERTIES
PREFIX "lib"
COMPILE_DEFINITIONS "WS_BUILD_DLL"
LINK_FLAGS "${WS_LINK_FLAGS}"
VERSION "11.0.1" SOVERSION 11
VERSION "11.0.2" SOVERSION 11
FOLDER "DLLs"
INSTALL_RPATH "${LIBRARY_INSTALL_RPATH}"
)