Thank you @alexandear, @BronzeDeer, @hongyuh-hh, @codesoap, @Lslightly
This commit is contained in:
Alessandro Arzilli 2025-04-10 18:01:59 +02:00 committed by GitHub
parent 9234dbe6d5
commit f0cc62bfca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 19 additions and 1 deletions

View File

@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
This project adheres to Semantic Versioning.
## [1.24.2] 2025-04-10
### Added
- Support for struct literals in expression evaluator (#3935, #3953, @aarzilli)
- 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)
### Fixed
- Support for macOS Sequoia 15.4 (#3966, @aarzilli)
- Race conditions with rr backend (#3971, #3973, #3963, @BronzeDeer, @aarzilli)
- Goroutine load with corrupted label maps (#3968, #3962, @hongyuh-hh)
- Breakpoint conditions on suspended breakpoints (#3938, @Lslightly)
### Changed
- Miscellaneous test and documentation fixes (#3979, #3952, #3954, #3955, #3951, @alexandear, @codesoap, @derekparker)
## [1.24.1] 2025-03-05
### Added

View File

@ -16,7 +16,7 @@ type Version struct {
// DelveVersion is the current version of Delve.
var DelveVersion = Version{
Major: "1", Minor: "24", Patch: "1", Metadata: "",
Major: "1", Minor: "24", Patch: "2", Metadata: "",
Build: "$Id$",
}