Skip to content

Commit df1108b

Browse files
authored
*: v1.7.1 (#2662)
1 parent a4d416d commit df1108b

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

Diff for: CHANGELOG.md

+33
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,41 @@
1+
12
# Changelog
23

34
All notable changes to this project will be documented in this file.
45
This project adheres to Semantic Versioning.
56

7+
## [1.7.1] 2021-08-18
8+
9+
### Added
10+
11+
- *EXPERIMENTAL* Added support for eBPF based trace backend (@derekparker)
12+
- Added fuzzy completion for the CLI for commands and breakpoint locations (@derekparker)
13+
- Added stack watchpoints (@aarzilli)
14+
- Added verbose version output (@hyangah)
15+
- DAP: Support for replay and core modes (@Iggomez)
16+
- DAP: Added ability to page stack frames (@suzmue)
17+
- DAP: Added len as metadata for maps (@suzmue)
18+
- DAP: Add 'backend' launch/attach attribute (@polinasok)
19+
20+
### Fixed
21+
22+
- Fix handling of runtime throws (@derekparker)
23+
- DAP: Handle unexpected debugger termination (@polinasok)
24+
25+
### Changed
26+
27+
- Added configuration for Target to not clear stepping breakpoints (@suzmue)
28+
- Ignore existing breakpoints for continue-until (@derekparker)
29+
- Improve help output for examinemem (@derekparker)
30+
- Clarify next-while-nexting error (@suzmue)
31+
- DWARF improvements for additional opcodes (@aarzilli)
32+
- Treat SIGTERM as server disconnect signal (@polinasok)
33+
- Update Cobra lib to v1.1.3 (@hyangah)
34+
- Improvements to 'on' command (@aarzilli)
35+
- Terminal will now prompt when breakpoint is hit during next/step/stepout (@aarzilli)
36+
- DAP: Ensure server is always headless and target foregrounded (@polinasok)
37+
- DAP: Set hit breakpoint IDs (@suzmue)
38+
639
## [1.7.0] 2021-07-19
740

841
### Added

Diff for: pkg/version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ type Version struct {
1717
var (
1818
// DelveVersion is the current version of Delve.
1919
DelveVersion = Version{
20-
Major: "1", Minor: "7", Patch: "0", Metadata: "",
20+
Major: "1", Minor: "7", Patch: "1", Metadata: "",
2121
Build: "$Id$",
2222
}
2323
)

0 commit comments

Comments
 (0)