Skip to content

Commit 1647fa6

Browse files
authored
1 parent afef1ae commit 1647fa6

File tree

3 files changed

+35
-2
lines changed

3 files changed

+35
-2
lines changed

Diff for: CHANGELOG.md

+33
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,39 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to Semantic Versioning.
55

6+
## [1.21.0] 2023-06-23
7+
8+
### Added
9+
10+
- Go 1.21 support (#3370, #3401, @aarzilli)
11+
- Basic debug functionality for stripped executables (#3408, #3421, @derekparker)
12+
- Core dumping on FreeBSD (#3305, @aarzilli)
13+
- Ability to automatically attach to child processes when they are spawned (linux-only) (#3286, #3346, @aarzilli)
14+
- Starlark scripts can now use the time module (#3375, @andreimatei)
15+
- Online help for starlark interpreter (#3388, @aarzilli)
16+
- `dlv trace` has a new option, `--timestamp`, that prints timestamps before every trace event (#3358, @spacewander)
17+
18+
### Fixed
19+
20+
- Stepping could hide normal breakpoint hits occurring simultaneously, in rare circumstances (#3287, @aarzilli)
21+
- Internal error when defer locations can not be resolved (#3329, @aarzilli)
22+
- Channels of certain types could be displayed incorrectly (#3362, @aarzilli)
23+
- Formatted time wouldn't always be displayed when using DAP (#3349, @suzmue)
24+
- Function call injection when parameters are in registers (#3365, @ZekeLu)
25+
- Panic in Starlark interface when using partially loaded variables (#3386, @andreimatei)
26+
- Use debug info directories configuration in `dlv trace` (#3405, @nozzy123nozzy)
27+
- Updated DAP version (#3414, @suzmue)
28+
29+
### Changed
30+
31+
- Improved eBPF tracepoints (#3325, #3353, #3417, @chenhengqi, @derekparker)
32+
- The name of the default output binary is now randomizes, which fixes some weird behavior when multiple instances of Delve are run simultaneously in the same directory (#3366, @aarzilli)
33+
- Stderr of debuginfod-find is now suppressed (#3381, @fche)
34+
- Better documentation for substitute-path (#3335, @aarzilli)
35+
- `quit -c` will ask for confirmation when breakpoints still exist (#3398, @aarzilli)
36+
- Miscellaneous improvements to documentation and tests (#3326, #3327, #3340, #3341, #3357, #3378, #3376, #3399, #3374, #3426, @alexandear, @cuishuang, @alexsaezm, @andreimatei)
37+
38+
639
## [1.20.2] 2023-04-05
740

841
### Added

Diff for: pkg/goversion/compat.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var (
1010
MinSupportedVersionOfGoMajor = 1
1111
MinSupportedVersionOfGoMinor = 18
1212
MaxSupportedVersionOfGoMajor = 1
13-
MaxSupportedVersionOfGoMinor = 20
13+
MaxSupportedVersionOfGoMinor = 21
1414
goTooOldErr = fmt.Sprintf("Go version %%s is too old for this version of Delve (minimum supported version %d.%d, suppress this error with --check-go-version=false)", MinSupportedVersionOfGoMajor, MinSupportedVersionOfGoMinor)
1515
goTooOldWarn = fmt.Sprintf("WARNING: undefined behavior - Go version %%s is too old for this version of Delve (minimum supported version %d.%d)", MinSupportedVersionOfGoMajor, MinSupportedVersionOfGoMinor)
1616
dlvTooOldErr = fmt.Sprintf("Version of Delve is too old for Go version %%s (maximum supported version %d.%d, suppress this error with --check-go-version=false)", MaxSupportedVersionOfGoMajor, MaxSupportedVersionOfGoMinor)

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: "20", Patch: "2", Metadata: "",
20+
Major: "1", Minor: "21", Patch: "0", Metadata: "",
2121
Build: "$Id$",
2222
}
2323
)

0 commit comments

Comments
 (0)