Skip to content

Commit 2679955

Browse files
authored
*: release version 1.22.1 (#3662)
Thank you @ardnew, @muggle-nil, @michaelmerg
1 parent 4a72c52 commit 2679955

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

Diff for: CHANGELOG.md

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

6+
## [1.22.1] 2024-02-21
7+
8+
### Added
9+
10+
- `--listen` and `connect` now support Unix Domain Sockets (#3655, ##3658, @aarzilli)
11+
- Paging for commands `print`, `vars`, `args` and `locals` (#3620, @aarzilli)
12+
- Syntax highlighting for stacktraces and options to change the color of Delve's prompt (#3649, #3648, @aarzilli)
13+
- Wait-for option for DAP's attach mode (#3656, @muggle-nil)
14+
15+
### Fixed
16+
17+
- Bug where Ctrl-Z was not sent to other processes in the same group as Delve (#3619, @aarzilli)
18+
- Parsing of `/proc/net/tcp` when it has 10000 or more entries (#3660, @michaelmerg)
19+
- Rare error when valuating expressions containing `runtime.frame(n)` inside breakpoint conditions (#3624, @aarzilli)
20+
- Line number reported for the stack frame that caused a panic (#3638, @aarzilli)
21+
- Building when dlv's executable already exists on macOS with a signing key already installed (#3639, @ardnew)
22+
23+
### Changed
24+
25+
- When evaluating an expression containing a reslice operation with constant bounds the entire resulting slice will be loaded (#3623, @aarzilli)
26+
627
## [1.22.0] 2023-12-29
728

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

0 commit comments

Comments
 (0)