Skip to content

Commit 584191a

Browse files
authored
*: Release 1.7.0 (#2591)
1 parent 9df8f14 commit 584191a

File tree

4 files changed

+45
-3
lines changed

4 files changed

+45
-3
lines changed

.teamcity/settings.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ To debug in IntelliJ Idea, open the 'Maven Projects' tool window (View
3535
version = "2020.2"
3636

3737
val targets = arrayOf(
38-
"linux/amd64/1.14",
3938
"linux/amd64/1.15",
4039
"linux/amd64/1.16",
4140
"linux/amd64/1.17",

CHANGELOG.md

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

6+
## [1.7.0] 2021-07-19
7+
8+
### Added
9+
10+
- Go 1.17 support (@aarzilli, @mknyszek)
11+
- Add new API and terminal command for setting watchpoints (@aarzilli)
12+
- Add filtering and grouping to goroutines command (@aarzilli)
13+
- Added support for hit count condition on breakpoints (@suzmue, @aarzilli)
14+
- DAP server: Handle SetVariable requests (@hyangah)
15+
- DAP server: Add clipboard support (@hyangah)
16+
17+
### Fixed
18+
19+
- DAP server: Several shutdown / disconnect fixes (@suzmue, @polinasok)
20+
- DAP server: Clean output executable name on Windows (@hyangah)
21+
- DAP server: Variables response must not have null variables array (@polinasok)
22+
- Fix runtimeTypeToDIE setup (necessary for Go 1.17) (@aarzilli)
23+
- Reenable CGO stacktrace test on arm64 (@derekparker)
24+
- Fix incorrect integer casts in freebsd C backend (@dwagin)
25+
- Ensure correct exit status reported on commands following process death (@derekparker)
26+
- Misc flakey test fixes / test refactoring (@polinasok)
27+
- Fix for frame parameter being ignored in ConvertEvalScope when no goroutine is found (@suzmue)
28+
- Ensure ContinueOnce returns StopExited if process exited, otherwise return StopUnknown (@polinasok)
29+
- Fix panic in RPC2.ListDynamicLibraries (@derekparker)
30+
- Fix typo in flag passed to check if debugserver supports unmask_signals (@staugust)
31+
32+
### Changed
33+
34+
- DAP server: Add sameuser security check (@hyangah)
35+
- DAP server: Changes to context-dependent load limits for string type (@hyangah, @polinasok)
36+
- DAP server: Add paging for arrays, slices and maps (@suzmue)
37+
- DAP server: Deemphasize internal runtime stack frames (@suzmue)
38+
- DAP server: Add throw reason to exception information upon panic (@suzmue)
39+
- DAP server: Set breakpoint hit ID (@suzmue)
40+
- DAP server: Add string value of byte/rune slice as child (@suzmue)
41+
- Documentation: Add viminspector to list of editor plugins (@aarzilli)
42+
- Support for ZMM registers in gdbserial backend (@aarzilli)
43+
- Remove support for stack barriers (@derekparker)
44+
- Improve support for DWARF5 (@derekparker)
45+
- Improve documentation (@derekparker, @aarzilli)
46+
- Print message and exit if Delve detects it is running under Rosetta on M1 macs (@aarzilli)
47+
- Drop official Go 1.14 support (@derekparker)
48+
649
## [1.6.1] 2021-05-18
750

851
### Added

pkg/goversion/compat.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
var (
88
MinSupportedVersionOfGoMajor = 1
9-
MinSupportedVersionOfGoMinor = 14
9+
MinSupportedVersionOfGoMinor = 15
1010
MaxSupportedVersionOfGoMajor = 1
1111
MaxSupportedVersionOfGoMinor = 17
1212
goTooOldErr = fmt.Errorf("Version of Go is too old for this version of Delve (minimum supported version %d.%d, suppress this error with --check-go-version=false)", MinSupportedVersionOfGoMajor, MinSupportedVersionOfGoMinor)

pkg/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ type Version struct {
1414
var (
1515
// DelveVersion is the current version of Delve.
1616
DelveVersion = Version{
17-
Major: "1", Minor: "6", Patch: "1", Metadata: "",
17+
Major: "1", Minor: "7", Patch: "0", Metadata: "",
1818
Build: "$Id$",
1919
}
2020
)

0 commit comments

Comments
 (0)