Skip to content

Commit f0cc62b

Browse files
authored
1 parent 9234dbe commit f0cc62b

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

CHANGELOG.md

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

6+
## [1.24.2] 2025-04-10
7+
8+
### Added
9+
10+
- Support for struct literals in expression evaluator (#3935, #3953, @aarzilli)
11+
- Check to reject DWARFv5 executables if delve itself isn't built with 1.25 or later due to bugs in Go's standard library prior to 1.25 (#3943, #3961, @aarzilli)
12+
13+
### Fixed
14+
15+
- Support for macOS Sequoia 15.4 (#3966, @aarzilli)
16+
- Race conditions with rr backend (#3971, #3973, #3963, @BronzeDeer, @aarzilli)
17+
- Goroutine load with corrupted label maps (#3968, #3962, @hongyuh-hh)
18+
- Breakpoint conditions on suspended breakpoints (#3938, @Lslightly)
19+
20+
### Changed
21+
22+
- Miscellaneous test and documentation fixes (#3979, #3952, #3954, #3955, #3951, @alexandear, @codesoap, @derekparker)
23+
624
## [1.24.1] 2025-03-05
725

826
### Added

pkg/version/version.go

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

1717
// DelveVersion is the current version of Delve.
1818
var DelveVersion = Version{
19-
Major: "1", Minor: "24", Patch: "1", Metadata: "",
19+
Major: "1", Minor: "24", Patch: "2", Metadata: "",
2020
Build: "$Id$",
2121
}
2222

0 commit comments

Comments
 (0)