Skip to content

Commit f498dc8

Browse files
authored
*: v1.25.1
1 parent 52a73b0 commit f498dc8

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to Semantic Versioning.
55

6+
## [1.25.1] 2025-07-18
7+
8+
### Added
9+
- Implement restart request for DAP (#4057, @derekparker)
10+
11+
### Fixed
12+
- Fixed panic when trying to stacktrace an unreadable goroutine in DAP (#4056, @aarzilli)
13+
- Fixed panic when trying to access value of unreadable string variables in DAP (#4055, @aarzilli)
14+
- Fixed type cast between slices with the same element type (#4048, @aarzilli)
15+
- Fixed closure captured variables visibility on closure's first line (#4049, @aarzilli)
16+
- Fixed unknown DWARF opcodes causing panics (#4037, @aarzilli)
17+
- Added missing response body close in DAP test (#4039, @alexandear)
18+
- Fix panic in switchToGoroutineStacktrace (#4043, @derekparker)
19+
20+
### Changed
21+
- Handle moving of direct interface flag in Go 1.26 (#4032, @randall77)
22+
- Simplified tests using slices.Contains (#4040, @alexandear)
23+
- Updated Go max support minor version and update golang.org/x/tools (#4046, @derekparker)
24+
625
## [1.25.0] 2025-04-16
726

827
### Added

pkg/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type Version struct {
1818

1919
// DelveVersion is the current version of Delve.
2020
var DelveVersion = Version{
21-
Major: "1", Minor: "25", Patch: "0", Metadata: "",
21+
Major: "1", Minor: "25", Patch: "1", Metadata: "",
2222
Build: "$Id$",
2323
}
2424

0 commit comments

Comments
 (0)