From df1108b277fc7e2e19f25e5c002f1fd781328c44 Mon Sep 17 00:00:00 2001 From: Derek Parker Date: Wed, 18 Aug 2021 00:08:57 -0700 Subject: [PATCH] *: v1.7.1 (#2662) --- CHANGELOG.md | 33 +++++++++++++++++++++++++++++++++ pkg/version/version.go | 2 +- 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2aa3dd05..6f040abb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,41 @@ + # Changelog All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning. +## [1.7.1] 2021-08-18 + +### Added + +- *EXPERIMENTAL* Added support for eBPF based trace backend (@derekparker) +- Added fuzzy completion for the CLI for commands and breakpoint locations (@derekparker) +- Added stack watchpoints (@aarzilli) +- Added verbose version output (@hyangah) +- DAP: Support for replay and core modes (@Iggomez) +- DAP: Added ability to page stack frames (@suzmue) +- DAP: Added len as metadata for maps (@suzmue) +- DAP: Add 'backend' launch/attach attribute (@polinasok) + +### Fixed + +- Fix handling of runtime throws (@derekparker) +- DAP: Handle unexpected debugger termination (@polinasok) + +### Changed + +- Added configuration for Target to not clear stepping breakpoints (@suzmue) +- Ignore existing breakpoints for continue-until (@derekparker) +- Improve help output for examinemem (@derekparker) +- Clarify next-while-nexting error (@suzmue) +- DWARF improvements for additional opcodes (@aarzilli) +- Treat SIGTERM as server disconnect signal (@polinasok) +- Update Cobra lib to v1.1.3 (@hyangah) +- Improvements to 'on' command (@aarzilli) +- Terminal will now prompt when breakpoint is hit during next/step/stepout (@aarzilli) +- DAP: Ensure server is always headless and target foregrounded (@polinasok) +- DAP: Set hit breakpoint IDs (@suzmue) + ## [1.7.0] 2021-07-19 ### Added diff --git a/pkg/version/version.go b/pkg/version/version.go index 03c66357..3bde2354 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -17,7 +17,7 @@ type Version struct { var ( // DelveVersion is the current version of Delve. DelveVersion = Version{ - Major: "1", Minor: "7", Patch: "0", Metadata: "", + Major: "1", Minor: "7", Patch: "1", Metadata: "", Build: "$Id$", } )