Changelog History
Page 1
-
v0.15.0.1 Changes
๐ This release has no changes to features or usability. The only change is to include a file used by other package maintainers.
- Include all files needed to rebuild from source (#403)
-
v0.15.0.0 Changes
๐ This release is focused mostly on Python 3.9 compatibility and updating dependencies
- ๐ Support only Python 3.9 (though other Python versions may still work)
- ๐ Build gdbgui as a pex executable.
- These are executable Python environments that are self-contained with the exception of requiring a specific Python version installed in the environment running the executable. The pex executables should have better compatibility than PyInstaller executables, which sometimes have missing shared libraries depending on the operating system.
- ๐ Use only the threading async model for flask-socketio. No longer support gevent or eventlet.
- ๐ [bugfix] Catch exception if gdb used in tty window crashes instead of gdbgui crashing along with it
- 0๏ธโฃ Disable pagination in gdb tty by default. It can be turned back on with
set pagination off
. - โฌ๏ธ Upgrade various dependencies for both the backend and frontend (Python and JavaScript)
- Display gdbgui version in "about" and "session information"
-
v0.14.0.2 Changes
- ๐ Pinned python-socketio version
- ๐ Pinned mypy version to unbreak linting
- ๐ Fixed reverse debugging commands that were broken when
--gdb
flag was removed
-
v0.14.0.1 Changes
October 03, 2020- ๐ Fix import paths
- ๐ Pin broken dependency to avoid segfault
- Hide "No registers." message
-
v0.14.0.0b0 Changes
August 16, 2020๐ A test release for major changes to gdbgui. This release drops support for Windows.
-
v0.14.0.0 Changes
August 23, 2020Replaced single terminal on frontend with three terminals: an interactive xterm terminal running gdb, a gdbgui console for diagnostic messages, and a terminal connected to the inferior application being debugged. The gdb process that runs is now connected to a terminal you control directly. Everything works as expected -- tab completion, ctrl+c (break), and gdb will wait for user input. This differs from previous behavior when gdb was run as a subprocess and was not connected to a terminal.
๐ฅ Breaking Changes
- โ Removed support for Windows (see #348)
- Replaced
--gdb
flag with--gdb-cmd
. The--gdb-cmd
argument specifies the gdb executable as well as all arguments you wish to pass to gdb at startup, for example--gdb-cmd "gdb -nx"
. The existing-g
argument is an alias for--gdb-cmd
. - โ Removed
--rr
flag. Use--gdb-cmd rr replay
instead. - โ Removed deprecated and hidden
--hide-gdbgui-upgrades
argument. It will now raise an error.
โ Additional Changes
- โก๏ธ Updates to the dashboard
- โ Add ability to specify gdb command from the browser. This can now be accomplished from the dashboard.
- โ Removed gdbgui binaries from source control. They can now be downloaded as artifacts of releases.
- ๐ [documentation] Fix bug when generating md5 checksum for binary releases
- โ Remove "shutdown" button in UI
-
v0.13.2.1 Changes
July 13, 2020- ๐ No end user changes. This release builds the gdbgui executables with GitHub actions.
-
v0.13.2.0 Changes
July 25, 2019- ๐จ Print number of times a breakpoint was hit (@MatthiasKreileder).
- ๐ Publish sdist to PyPI (this was overlooked in previous release).
- โฌ๏ธ Do not notify users of gdbgui upgrades (deprecate
--hide-gdbgui-upgrades
flag) - โฌ๏ธ Drop support for Python 3.4
- [dev] Some infrastructure changes to gdbgui. End users should not be affected.
- ๐ [dev] Fix build error due to webpack bug (https://github.com/webpack/webpack/issues/8082).
-
v0.13.1.2 Changes
March 26, 2019- ๐ฆ Exclude "tests" directory from Python package
- โ Remove analytics from documentation
-
v0.13.1.1 Changes
November 21, 2018- Add
__main__
entrypoint
- Add