Skip to content

Commit 31a3c0d

Browse files
authored
*: release version 1.22.0 (#3606)
Thank you @alexandear, @stefanhaller, @testwill
1 parent 050a108 commit 31a3c0d

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

Diff for: CHANGELOG.md

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

6+
## [1.22.0] 2023-12-29
7+
8+
### Added
9+
10+
- Support for Go 1.22 (#3583, @aarzilli)
11+
- Support for min and max builtins (#3530, @aarzilli)
12+
- Expression evaluator can now reference previous frames (#3534, @derekparker)
13+
- Better support for stripped binaries (#3549, #3577, #3597, @derekparker)
14+
- Remove package paths from types returned by DAP (#3535, @stefanhaller)
15+
- Show pprof labels in DAP (#3501, @stefanhaller)
16+
17+
### Fixed
18+
19+
- Fixes for signal routing with debugserver (#3541, @aarzilli)
20+
- Clear substitute path rules cache every time the `config` command is used (#3567, @aarzilli)
21+
- Fixes handling of hardcoded breakpoints after a manual stop (#3582, @aarzilli)
22+
- Occasional close on closed channel panic in DAP (#3573, @aarzilli)
23+
- Correctly reports exit code on Linux when a we receive a signal close to the program's exit (#3585, @aarzilli)
24+
25+
### Changed
26+
27+
- Type casts from slice to string and vice versa will now use the load configuration for the target type, which is more intuitive (#3596, @aarzilli)
28+
- Miscellaneous impreovements to documentation (#3531, #3555, #3556, #3562, #3564, #3575, #3576, @alexandear, @testwill)
29+
630
## [1.21.2] 2023-10-30
731

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

0 commit comments

Comments
 (0)