mirror of
https://github.com/go-delve/delve.git
synced 2025-11-03 05:47:34 +08:00
*: release version 1.22.1 (#3662)
Thank you @ardnew, @muggle-nil, @michaelmerg
This commit is contained in:
committed by
GitHub
parent
4a72c523be
commit
26799555e5
21
CHANGELOG.md
21
CHANGELOG.md
@ -3,6 +3,27 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
This project adheres to Semantic Versioning.
|
||||
|
||||
## [1.22.1] 2024-02-21
|
||||
|
||||
### Added
|
||||
|
||||
- `--listen` and `connect` now support Unix Domain Sockets (#3655, ##3658, @aarzilli)
|
||||
- Paging for commands `print`, `vars`, `args` and `locals` (#3620, @aarzilli)
|
||||
- Syntax highlighting for stacktraces and options to change the color of Delve's prompt (#3649, #3648, @aarzilli)
|
||||
- Wait-for option for DAP's attach mode (#3656, @muggle-nil)
|
||||
|
||||
### Fixed
|
||||
|
||||
- Bug where Ctrl-Z was not sent to other processes in the same group as Delve (#3619, @aarzilli)
|
||||
- Parsing of `/proc/net/tcp` when it has 10000 or more entries (#3660, @michaelmerg)
|
||||
- Rare error when valuating expressions containing `runtime.frame(n)` inside breakpoint conditions (#3624, @aarzilli)
|
||||
- Line number reported for the stack frame that caused a panic (#3638, @aarzilli)
|
||||
- Building when dlv's executable already exists on macOS with a signing key already installed (#3639, @ardnew)
|
||||
|
||||
### Changed
|
||||
|
||||
- When evaluating an expression containing a reslice operation with constant bounds the entire resulting slice will be loaded (#3623, @aarzilli)
|
||||
|
||||
## [1.22.0] 2023-12-29
|
||||
|
||||
### Added
|
||||
|
||||
@ -17,7 +17,7 @@ type Version struct {
|
||||
var (
|
||||
// DelveVersion is the current version of Delve.
|
||||
DelveVersion = Version{
|
||||
Major: "1", Minor: "22", Patch: "0", Metadata: "",
|
||||
Major: "1", Minor: "22", Patch: "1", Metadata: "",
|
||||
Build: "$Id$",
|
||||
}
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user