Skip to content

Commit d9d8f4a

Browse files
authored
v1.9.1 (#3116)
1 parent 8178152 commit d9d8f4a

File tree

2 files changed

+34
-2
lines changed

2 files changed

+34
-2
lines changed

CHANGELOG.md

+33-1
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,48 @@
1-
21
# Changelog
32

43
All notable changes to this project will be documented in this file.
54
This project adheres to Semantic Versioning.
65

6+
## [1.9.1] 2022-08-23
7+
8+
### Added
9+
10+
- Add support for empty string in substitutePath (@RuijieC-dev)
11+
- Support gnu_debuglink section (@aarzilli)
12+
- Support exact matches in SubstitutePath (@eandre)
13+
- Add ability to show disassembly instead of source code (@aazilli)
14+
- Add -per-g-hitcount to breakpoint conditions (@yangxikun)
15+
16+
### Fixed
17+
18+
- Ensure breakpoint map exists (@aarzilli)
19+
- Use standard library to compute CRC for gnu_debuglink section (@aarzilli)
20+
- Fix command to download Go version in CI (@derekparker)
21+
- Do not panic reading bad G struct (@aarzilli)
22+
- Fix parsing DWARFv5 file table (@derekparker)
23+
- Improve trace subcommand output (@derekparker)
24+
- Fix documentation for examinemem (@aaarzilli)
25+
- Fix step instruction on 1 byte instruction with software breakpoint (@qmuntal)
26+
- Fix handling of function entry / return in ebpf tracing backend (@derekparker)
27+
- Fix size of ebpf type for fn_addr (@derekparker)
28+
29+
### Changed
30+
31+
- Send large terminal output to pager (@aarzilli)
32+
- Refactor windows backend framework (@qmuntal)
33+
- Complete the dropping of CGO dependency for ebpf backend (@aarzilli)
34+
- Limit disassembly range in DAP backend (@aarzilli)
35+
736
## [1.9.0] 2022-07-06
37+
838
### Added
39+
940
- Support for Go 1.19 (#3038, #3031, #3009, @aarzilli)
1041
- Autocomplete for local variables (#3004, @pippolo84)
1142
- Support for function call injection on arm64 (#2996, @aarzilli)
1243

1344
### Fixed
45+
1446
- Ctrl-C handling on Windows (#3039, @aarzilli)
1547
- Expressions accessing maps with string literals (#3036, @aarzilli)
1648
- Occasional crash caused by race between manual stop and normal stop on macOS (#3021, @aarzilli)

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: "9", Patch: "0", Metadata: "",
20+
Major: "1", Minor: "9", Patch: "1", Metadata: "",
2121
//TODO(aarzilli): before updating this to 1.8.0 re-enable staticcheck test
2222
Build: "$Id$",
2323
}

0 commit comments

Comments
 (0)