From 26799555e5518e8a9fe2d68e02379257ebda4dd2 Mon Sep 17 00:00:00 2001 From: Alessandro Arzilli Date: Wed, 21 Feb 2024 21:29:06 +0100 Subject: [PATCH] *: release version 1.22.1 (#3662) Thank you @ardnew, @muggle-nil, @michaelmerg --- CHANGELOG.md | 21 +++++++++++++++++++++ pkg/version/version.go | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4e8e965b4..c4ae78ddee 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/pkg/version/version.go b/pkg/version/version.go index 61ecdbbe1b..0c3470054d 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -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$", } )