All Versions
35
Latest Version
Avg Release Cycle
89 days
Latest Release
879 days ago

Changelog History
Page 4

  • v0.10.0-alpha Changes

    October 04, 2015

    โž• Added

    • ๐Ÿ‘ set command, allows user to set variable (currently only supports pointers / numeric values) (@aarzilli)
    • All deps are vendored with Godeps and leveraging GO15VENDOREXPERIMENT
    • source command and --init flag to run commands from a file (@aarzilli)
    • clearall commands now take linespec (@kostya-sh)
    • ๐Ÿ‘Œ Support for multiple levels of struct nesting during variable eval (i.e. print foo.bar.baz now works) (@lukehoban)

    ๐Ÿ”„ Changed

    • โœ‚ Removed hardware assisted breakpoints (for now)
    • โœ‚ Remove Go 1.4.2 on Travis builds

    ๐Ÿ›  Fixed

    • Limit string sizes, be more tolerant of uninitialized memory (@aarzilli)
    • ๐Ÿ›  make commands fixed for >= Go 1.5 on OSX
    • ๐Ÿ›  Fixed bug where process would not be killed upon detach (@aarzilli)
    • ๐Ÿ›  Fixed bug trying to detach/kill process that has already exited (@aarzilli)
    • ๐Ÿ‘Œ Support for "dumb" terminals (@dlsniper)
    • ๐Ÿ›  Fix bug setting breakpoints at chanRecvAddrs (@aarzilli)
  • v0.9.0-alpha Changes

    September 19, 2015

    โž• Added

    • ๐Ÿ’ป Basic tab completion to terminal UI (@icholy)
    • โž• Added -full flag to stack command, prints local vars and function args (@aarzilli)

    ๐Ÿ”„ Changed

    • Output of threads and goroutines sorted by ID (@icholy)
    • ๐ŸŽ Performance improvement: cache parsed goroutines during halt (@icholy)
    • Stack command no longer takes goroutine ID. Use scope prefix command instead (i.e. goroutine <id> bt)

    ๐Ÿ›  Fixed

    • OSX: Fix hang when 'next'ing through highly parallel programs
    • Absolute path confused as regexp in FindLocation (@aarzilli)
    • ๐Ÿ‘‰ Use sched.pc instead of gopc for goroutine location
    • Exclude dead goroutines from goroutines command output (@icholy)
  • v0.8.1-alpha Changes

    September 05, 2015

    ๐Ÿ›  Fixed

    • OSX: Fix error setting breakpoint upon Delve startup.
  • v0.8.0-alpha Changes

    September 05, 2015

    โž• Added

    • ๐Ÿ†• New command: 'frame'. Accepts a frame number and a command to execute in the context of that frame. (@aarzilli)
    • ๐Ÿ†• New command: 'goroutine'. Accepts goroutine ID and optionally a command to execute within the context of that goroutine. (@aarzilli)
    • ๐Ÿ†• New subcommand: 'exec'. Allows user to debug existing binary.
    • โž• Add config file and add config options for command aliases. (@tylerb)

    ๐Ÿ”„ Changed

    • โž• Add Go 1.5 to travis list.
    • ๐Ÿ’ป Stop shortening file paths from API, shorten instead in terminal UI.
    • Implemented several improvements for nexting through highly parallel programs.
    • Visually align registers. (@paulsmith)

    ๐Ÿ›  Fixed

    • ๐Ÿ›  Fixed output of 'goroutines' command.
    • Stopped preserving temp breakpoints on restart.
    • โž• Added support for parsing multiple DWARF file tables. (@Omie)
  • v0.7.0-alpha Changes

    August 14, 2015

    โž• Added

    • ๐Ÿ†• New command: 'list' (alias: 'ls'). Allows you to list the source code of either your current location, or a location that you describe via: file:line, line number (in current file), +/- offset or /regexp/. (@joeshaw)
    • โž• Added Travis-CI for continuous integration. Works for now, will eventually change.
    • ๐Ÿ’ป Ability to connect to headless server. When running Delve in headless mode (used previously only for editor integration), you now have the opportunity to connect to it from the command line with dlv connect [addr]. This will allow you to (insecurely) remotely debug an application. (@tylerb)
    • ๐Ÿ‘Œ Support for printing complex numeric types. (@ebfe)

    ๐Ÿ”„ Changed

    • ๐Ÿ—„ Deprecate 'run' subcommand in favor of 'debug'. The 'run' subcommand now simply prints a warning, instructing the user to use the 'debug' command instead.
    • All 'info' subcommands have been promoted to the top level. You can now simply run 'funcs', or 'sources' instead of 'info funcs', etc...
    • โšก๏ธ Any command taking a location expression (i.e. break/trace/list) now support an updated linespec implementation. This allows you to describe the location you would like a breakpoint (etc..) set at in a more convenient way (@aarzilli).

    ๐Ÿ›  Fixed

    • ๐Ÿ‘Œ Improved support for CGO. (@aarzilli)
    • ๐Ÿ‘Œ Support for upcoming Go 1.5.
    • ๐Ÿ‘Œ Improve handling of soft signals on Darwin.
    • ๐Ÿ“ฆ EvalVariable evaluates package variables. (@aarzilli)
    • Restart command now preserves breakpoints previously set.
    • Track recurse level when eval'ing slices/arrays. (@aarzilli)
    • ๐Ÿ›  Fix bad format string in cmd/dlv. (@moshee)