Gdbgui Versions Save

Browser-based frontend to gdb (gnu debugger). Add breakpoints, view the stack, visualize data structures, and more in C, C++, Go, Rust, and Fortran. Run gdbgui from the terminal and a new tab will open in your browser.

0.15.2.0

6 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/cs01/gdbgui/compare/v0.15.1.0...0.15.2.0

v0.15.1.0

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/cs01/gdbgui/compare/v0.15.0.1...v0.15.1.0

v0.15.0.1

2 years ago

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

2 years ago

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
  • Disable pagination in gdb tty by default. It can be turned back on with set pagination on.
  • Upgrade various dependencies for both the backend and frontend (Python and JavaScript)
  • Display gdbgui version in "about" and "session information"

v0.13.2.2

2 years ago

This release works for all operating systems, including Windows.

  • Fix ImportError: cannot import name 'NoGdbProcessError' by pinning dependencies to ensure they are all compatible. Note that this means the only way gdbgui should be run is by installing inside a virtual environment, installing with pipx (as it uses virtual environments), or to run the executable build from gdbgui's release page.

v0.14.0.2

3 years ago
  • Pinned python-socketio version
  • Fixed reverse debugging commands that were broken when --gdb flag was removed
  • Pinned mypy version to unbreak linting

v0.14.0.1

3 years ago

v0.14.0.0

3 years ago

Replaced 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 https://github.com/cs01/gdbgui/issues/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.14.0.0b0

3 years ago

A test release for major changes to gdbgui. This release drops support for Windows.

v0.13.2.1

3 years ago