-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support to add a new suboption --follow-calls to trace subcommand #3594
Conversation
cmd/dlv/dlv_test.go
Outdated
@@ -941,6 +941,175 @@ func TestTrace2(t *testing.T) { | |||
assertNoError(cmd.Wait(), t, "cmd.Wait()") | |||
} | |||
|
|||
func TestTraceDepth(t *testing.T) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it would be better to just have one of these end to end tests and then test the rest of the detailis in service/test/integration2_test.go by just calling ListFunctions directly.
service/debugger/debugger.go
Outdated
@@ -1467,6 +1467,65 @@ func (d *Debugger) Functions(filter string) ([]string, error) { | |||
return funcs, nil | |||
} | |||
|
|||
func traverse(t proc.ValidTargets, f *proc.Function, depth int, FollowCalls int) ([]string, error) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should keep track of which functions have been visited already and avoid revisiting them.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi Alessandro for functions which have a call graph pattern such as the following example we need to be able to print out D twice once from B and once from C hence we kept only the check for recursion
package main
import "fmt"
func D(i int) int {
return i*i*i
}
func C(i int) int {
return D(i+10)+20
}
func B(i int) int {
return i*D(i)
}
func A(i int) int {
d:= 10+B(i)
return d+C(i)
}
func main() {
j := 0
j += A(2)
fmt.Println(j)
}
../dlv trace main.A --follow-calls 3 -e=./leafcommon
> goroutine(1): runtime.morestack_noctxt()
> goroutine(1): runtime.morestack_noctxt()
> goroutine(1): main.A(2)
> goroutine(1): main.B(2)
> goroutine(1): main.D(2)
>> goroutine(1): => (8)
>> goroutine(1): => (16)
> goroutine(1): runtime.morestack_noctxt()
> goroutine(1): main.C(2)
> goroutine(1): main.D(12)
>> goroutine(1): => (1728)
>> goroutine(1): => (1748)
>> goroutine(1): => (1774)
> goroutine(1): runtime.morestack_noctxt()
1774
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, but you can't set more than one breakpoint on D.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree here. We could have a map like visited map[string]struct{}{}
so that if we've already traversed a function, we don't waste time doing it again. Eventually those results will be removed by uniq
later, but it's best to not even waste time going through that call graph again.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After some discussion with @derekparker we realized that we may end up going further down the call graph of the function depending on how we got to it and how far down in depth we are... so there can be a situation we may miss on a child if we short circuit the traversal
alternatively looking at it, we can come to a function from two different parents and we would then need to traverse such a function twice anyway
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After some discussion with @derekparker we realized that we may end up going further down the call graph of the function depending on how we got to it and how far down in depth we are
True, let's make this a breadth first visit instead.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just to stress why this is important: tracing a function that calls fmt.Printf with --follow-calls=10
on my system takes 10 seconds, just to set up the breakpoints. The number of breakpoints it ends up setting is relatively small (222) but to do that it ends up disassembly the same functions thousands of times. For example fmt.(*buffer).writeString
is visited by traverse
4727 times (and redisassembled each time), runtime.panicIndex
is visited 7900 times.
This implementation is extremely inefficient.
service/debugger/debugger.go
Outdated
@@ -1467,6 +1467,65 @@ func (d *Debugger) Functions(filter string) ([]string, error) { | |||
return funcs, nil | |||
} | |||
|
|||
func traverse(t proc.ValidTargets, f *proc.Function, depth int, FollowCalls int) ([]string, error) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree here. We could have a map like visited map[string]struct{}{}
so that if we've already traversed a function, we don't waste time doing it again. Eventually those results will be removed by uniq
later, but it's best to not even waste time going through that call graph again.
pkg/terminal/command.go
Outdated
//sdepth:=mainindex-wantindex | ||
sdepth := rootindex - wantindex + 1 | ||
//fmt.Printf("follow calls depth %d\n",th.Breakpoint.TraceFollowCalls) | ||
//fmt.Printf("Root func name %s\n",th.Breakpoint.RootFuncName) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand what this is doing. Shouldn't you be counting all appearances of traced calls in the stack?
service/debugger/debugger.go
Outdated
@@ -1467,6 +1467,65 @@ func (d *Debugger) Functions(filter string) ([]string, error) { | |||
return funcs, nil | |||
} | |||
|
|||
func traverse(t proc.ValidTargets, f *proc.Function, depth int, FollowCalls int) ([]string, error) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After some discussion with @derekparker we realized that we may end up going further down the call graph of the function depending on how we got to it and how far down in depth we are
True, let's make this a breadth first visit instead.
a92ef31
to
e4c4cd1
Compare
pkg/terminal/command.go
Outdated
return | ||
} | ||
|
||
stack := th.BreakpointInfo.Stacktrace |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you explain what the logic behind this calculation is? Why is wantindex
even needed? Why are you calculating curi as len(stack) - 1 - i
when you later use it in a way that will always cancel the len(stack)
term?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There were many reasons for this- we needed rootindex to mark the depth of the starting func name as without that, it would report depth relative to main and not the function which was being given as a parameter, calculating it as len(stack)-1-i helps us to traverse from bottom up so that we can set rootindex properly at the first match in case the same function gets recursively invoked later (to avoid overwriting it with a higher depth etc), wantindex was required to mark depth of the function corresponding to the tracepoint.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, but why is wantindex the deepest call of the current tracepoint function and rootindex the least deep call? What if the current tracepoint function is recursively calling itself? Should that not increment the depth? What if the deepest call of the current tracepoint function is deeper than the least deep call of the root function?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi Alessandro, the way the stack is traversed being bottom up - it appears that rootindex is the least deep call because we are consider depth by subtracting off len(stack), hence when we are computing depth we do it by subtracting the index of the traced function from the root index. if a function calls itself the depth is incremented automatically by the curi being reassigned to curi based on the match in every iteration.
I have tested it for both direct and indirect recursion for instance if A calls itself we get an output trace like this-
./dlv trace main.A --follow-calls 3 -e=./leafrec
1> goroutine(1): main.A(5, 5)^M
2> goroutine(1): main.A(4, 4)^M
3> goroutine(1): main.A(3, 3)^M
3>> goroutine(1):(main.A) => (6)^M
2>> goroutine(1):(main.A) => (24)^M
1>> goroutine(1):(main.A) => (120)^M
This is the qstn i did not understand? What if the deepest call of the current tracepoint function is deeper than the least deep call of the root function? can you give me an example?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To be honest I undestand what this code is trying to do so little that I can't really tell what's intended behavior and what's a bug.
service/debugger/debugger.go
Outdated
@@ -1467,6 +1467,65 @@ func (d *Debugger) Functions(filter string) ([]string, error) { | |||
return funcs, nil | |||
} | |||
|
|||
func traverse(t proc.ValidTargets, f *proc.Function, depth int, FollowCalls int) ([]string, error) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just to stress why this is important: tracing a function that calls fmt.Printf with --follow-calls=10
on my system takes 10 seconds, just to set up the breakpoints. The number of breakpoints it ends up setting is relatively small (222) but to do that it ends up disassembly the same functions thousands of times. For example fmt.(*buffer).writeString
is visited by traverse
4727 times (and redisassembled each time), runtime.panicIndex
is visited 7900 times.
This implementation is extremely inefficient.
Hi @aarzilli thanks for your suggestion to improve the performance of the traversal algorithm, we are working on this now, can you please give the same example as mentioned in #3594 (comment) |
Just:
and trace main.f with |
Optimized traversal and tested with example provided in #3594 (comment) |
I think that making it a BFS is still preferable to optimizing a DFS with caching:
(not tested, didn't even compile it) |
Hi @aarzilli if there are no major performance issues in the DFS code u see, can we go ahead and merge this code and later do a performance enhancement ? @derekparker |
The problem is not the performance, is that all these optimizations are unreadable and using the correct algorithm would render them unnecessary. Also, there are other comments on this code that have not been addressed in addition to traverse using the wrong algorithm, before we should merge this. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, I like the BFS approach, but I think due to using BFS we can simplify and clean this up even more.
##### [`vv1.23.1](https://github.com/go-delve/delve/releases/tag/v1.23.1) #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### [`vv1.23.0](https://github.com/go-delve/delve/releases/tag/v1.23.0) #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### [`vv1.23.1](https://github.com/go-delve/delve/releases/tag/v1.23.1) #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### [`vv1.23.0](https://github.com/go-delve/delve/releases/tag/v1.23.0) #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### [`vv1.23.1](https://github.com/go-delve/delve/releases/tag/v1.23.1) #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### [`vv1.23.0](https://github.com/go-delve/delve/releases/tag/v1.23.0) #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### [`vv1.23.1](https://github.com/go-delve/delve/releases/tag/v1.23.1) #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### [`vv1.23.0](https://github.com/go-delve/delve/releases/tag/v1.23.0) #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### [`vv1.23.1](https://github.com/go-delve/delve/releases/tag/v1.23.1) #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### [`vv1.23.0](https://github.com/go-delve/delve/releases/tag/v1.23.0) #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### [`vv1.23.1](https://github.com/go-delve/delve/releases/tag/v1.23.1) #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### [`vv1.23.0](https://github.com/go-delve/delve/releases/tag/v1.23.0) #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### [`vv1.23.1](https://github.com/go-delve/delve/releases/tag/v1.23.1) #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### [`vv1.23.0](https://github.com/go-delve/delve/releases/tag/v1.23.0) #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### [`vv1.23.1](https://github.com/go-delve/delve/releases/tag/v1.23.1) #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### [`vv1.23.0](https://github.com/go-delve/delve/releases/tag/v1.23.0) #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### [`vv1.23.1](https://github.com/go-delve/delve/releases/tag/v1.23.1) #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### [`vv1.23.0](https://github.com/go-delve/delve/releases/tag/v1.23.0) #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### [`vv1.23.1](https://github.com/go-delve/delve/releases/tag/v1.23.1) #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### [`vv1.23.0](https://github.com/go-delve/delve/releases/tag/v1.23.0) #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### [`vv1.23.1](https://github.com/go-delve/delve/releases/tag/v1.23.1) #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### [`vv1.23.0](https://github.com/go-delve/delve/releases/tag/v1.23.0) #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### [`vv1.23.1](https://github.com/go-delve/delve/releases/tag/v1.23.1) #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### [`vv1.23.0](https://github.com/go-delve/delve/releases/tag/v1.23.0) #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### [`vv1.23.1](https://github.com/go-delve/delve/releases/tag/v1.23.1) #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### [`vv1.23.0](https://github.com/go-delve/delve/releases/tag/v1.23.0) #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### [`vv1.23.1](https://github.com/go-delve/delve/releases/tag/v1.23.1) #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### [`vv1.23.0](https://github.com/go-delve/delve/releases/tag/v1.23.0) #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### [`vv1.23.1](https://github.com/go-delve/delve/releases/tag/v1.23.1) #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### [`vv1.23.0](https://github.com/go-delve/delve/releases/tag/v1.23.0) #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### [`vv1.23.1](https://github.com/go-delve/delve/releases/tag/v1.23.1) #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### [`vv1.23.0](https://github.com/go-delve/delve/releases/tag/v1.23.0) #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### [`vv1.23.1](https://github.com/go-delve/delve/releases/tag/v1.23.1) #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### [`vv1.23.0](https://github.com/go-delve/delve/releases/tag/v1.23.0) #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### vv1.23.1 (`https://github.com/go-delve/delve/releases/tag/v1.23.1`) #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### vv1.23.0 (`https://github.com/go-delve/delve/releases/tag/v1.23.0`) #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### vv1.23.1 (`https://github.com/go-delve/delve/releases/tag/v1.23.1`) #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### vv1.23.0 (`https://github.com/go-delve/delve/releases/tag/v1.23.0`) #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### vv1.23.1 (`https://github.com/go-delve/delve/releases/tag/v1.23.1`) #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### vv1.23.0 (`https://github.com/go-delve/delve/releases/tag/v1.23.0`) #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### vv1.23.1 (`https://github.com/go-delve/delve/releases/tag/v1.23.1`) #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### vv1.23.0 (`https://github.com/go-delve/delve/releases/tag/v1.23.0`) #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### vv1.23.1 (`https://github.com/go-delve/delve/releases/tag/v1.23.1`) #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### vv1.23.0 (`https://github.com/go-delve/delve/releases/tag/v1.23.0`) #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### vv1.23.1 #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### vv1.23.0 #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### vv1.23.1 #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### vv1.23.0 #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### vv1.23.1 #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### vv1.23.0 #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### vv1.23.1 #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### vv1.23.0 #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### vv1.23.1 #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### vv1.23.0 #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### vv1.23.1 #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### vv1.23.0 #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### vv1.23.1 #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### vv1.23.0 #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
##### vv1.23.1 #### What's Changed - proc: move stepping test to their own file by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3784 - proc: fix step stuttering when entering range-over-func bodies by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3788 - proc: fix TestRangeOverFuncNext on linux/386 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3795 - eval: Allow reslicing a slice up to its cap, rather than its length by [@Jille](https://github.com/Jille) in go-delve/delve#3796 - chore: fix function name by [@linchizhen](https://github.com/linchizhen) in go-delve/delve#3803 - terminal/starbind: fix starlark conversion of named consts by [@arvidfm](https://github.com/arvidfm) in go-delve/delve#3802 - proc: workaround for macOS section name truncation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3799 - service/dap: make handlesMap generic by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3798 - service/dap: fix test failure with 1.24 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3805 - proc: fix result type of division of untyped constants by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3794 - proc: improve Rosetta check by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3810 - proc: for optimized functions allow .closureptr to not exist by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3808 - proc: cache module data by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3800 - \*: release version 1.23.1 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3816 #### New Contributors - [@Jille](https://github.com/Jille) made their first contribution in go-delve/delve#3796 - [@linchizhen](https://github.com/linchizhen) made their first contribution in go-delve/delve#3803 - [@arvidfm](https://github.com/arvidfm) made their first contribution in go-delve/delve#3802 **Curated Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1231-2024-09-23 ##### vv1.23.0 #### What's Changed - dwarfbuilder: fix makeAbbrevTable by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3665 - \*: misc fixes for go1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3663 - elfwriter: add WriteSectionHeaders by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3666 - Upgrade github.com/google/go-dap to v0.12.0 by [@suzmue](https://github.com/suzmue) in go-delve/delve#3673 - pkg/terminal,pkg/proc: Implement next-instruction by [@derekparker](https://github.com/derekparker) in go-delve/delve#3671 - pkg/terminal: print breakpoint number on stop by [@derekparker](https://github.com/derekparker) in go-delve/delve#3675 - proc/evalop: remove no longer needed Go 1.17 files by [@alexandear](https://github.com/alexandear) in go-delve/delve#3676 - Cirrus-CI: update to FreeBSD 13.3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3679 - dwarf/loclist: remove impossible condition by [@alexandear](https://github.com/alexandear) in go-delve/delve#3677 - proc: catch panics when reading debug info for stripped executables by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3678 - proc,go.mod: update x/sys remove KeepAlive calls by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3680 - pkg/proc: defend better against missing DWARF by [@derekparker](https://github.com/derekparker) in go-delve/delve#3695 - proc: support reading captured variables of closures by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3682 - pkg/terminal: allow postfix if for breakpoint conds by [@derekparker](https://github.com/derekparker) in go-delve/delve#3693 - proc: change 'step' command so that it steps through go statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3686 - cmd/dlv: add shell (non-)completions to flags taking args by [@scop](https://github.com/scop) in go-delve/delve#3696 - cmd/dlv: fix panic on connect fail by [@scop](https://github.com/scop) in go-delve/delve#3698 - tests: fix tests on Go 1.23 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3697 - pkg/terminal: clear erroneous name setting on postfix if by [@derekparker](https://github.com/derekparker) in go-delve/delve#3702 - pkg/terminal: remove duplicated word by [@alexandear](https://github.com/alexandear) in go-delve/delve#3707 - cmd/dlv: improve positional argument completion by [@scop](https://github.com/scop) in go-delve/delve#3699 - proc: generalize escapeCheck and allocString by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3687 - rr: fix gdb parsing by [@howardjohn](https://github.com/howardjohn) in go-delve/delve#3705 - Add function name even in return trace by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3712 - pkg/proc: fix watchpoints on macos by [@derekparker](https://github.com/derekparker) in go-delve/delve#3703 - \_scripts: upgrade to python3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3716 - pkg/proc/gdbserial: optimize gdbwire backend by [@derekparker](https://github.com/derekparker) in go-delve/delve#3715 - gdbserial: update path of lldb protocol extension documentation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3727 - gdbserial: fixes for rr 5.7.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3718 - pkg/terminal: remove deprecated starlark global options by [@alexandear](https://github.com/alexandear) in go-delve/delve#3722 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3730 - Update actions/checkout to v4 by [@abbasudo](https://github.com/abbasudo) in go-delve/delve#3731 - proc/gdbserial: add environment variables to configure rr invocation by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3726 - proc: initial stepping with range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3736 - cmd/dlv: print out message with stack trace when breakpoint is hit but has no waiting client by [@fatanugraha](https://github.com/fatanugraha) in go-delve/delve#3632 - Support to add a new suboption --follow-calls to trace subcommand by [@archanaravindar](https://github.com/archanaravindar) in go-delve/delve#3594 - proc: fix bug with stack watchpoints going out of scope by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3742 - proc: fix TestRangeOverFuncNext by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3740 - proc: refactor identifier evaluation for range-over-func support by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3738 - service: print better message for unattended stops by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3747 - pkg/astutil,pkg/elfwriter: fix package doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3753 - \*: replace fmt.Errorf with errors.New by [@alexandear](https://github.com/alexandear) in go-delve/delve#3752 - proc: initial support for expressions with range-over-func by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3750 - pkg/terminal: do not use deprecated strings.Title by [@alexandear](https://github.com/alexandear) in go-delve/delve#3756 - all: fix typos in CHANGELOG, comments and package name by [@alexandear](https://github.com/alexandear) in go-delve/delve#3757 - refactor: move loadModuleData from runtimeTypeToDIE and expose the apis by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3741 - pkg/proc,service/debugger: fix debuginfod-find source by [@derekparker](https://github.com/derekparker) in go-delve/delve#3762 - fix: mem cache out of range panic caused by overflow by [@jayantxie](https://github.com/jayantxie) in go-delve/delve#3761 - proc: support stepping through range-over-func statements with inlining by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3755 - service/debugger: evaluate breakpoint vars on g-less threads by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3759 - fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr… by [@zdyj3170101136](https://github.com/zdyj3170101136) in go-delve/delve#3767 - \*: remove redundant lines at the start/end of block by [@alexandear](https://github.com/alexandear) in go-delve/delve#3773 - pkg/proc: fix 404 links and change to https by [@alexandear](https://github.com/alexandear) in go-delve/delve#3775 - go.mod: update gopkg.in/yaml to v3 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3776 - pkg/terminal: add missing file.Close() call by [@alexandear](https://github.com/alexandear) in go-delve/delve#3770 - pkg: refactor to .WriteString() instead of .Write(\[]byte()) by [@alexandear](https://github.com/alexandear) in go-delve/delve#3769 - pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by [@alexandear](https://github.com/alexandear) in go-delve/delve#3772 - proc: use .closureptr for stepping through range-over-func statements by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3763 - service/rpc1: add Go Reference doc by [@alexandear](https://github.com/alexandear) in go-delve/delve#3779 - \*: replace old golang.org links with new go.dev by [@alexandear](https://github.com/alexandear) in go-delve/delve#3774 - proc: fix bug with range-over-func stepping by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3778 - goversion: add 1.23 to supported versions, update test matrix by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3780 - teamcity: fix typo in configuration by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3783 - \*: release version 1.23.0 by [@aarzilli](https://github.com/aarzilli) in go-delve/delve#3782 #### New Contributors - [@scop](https://github.com/scop) made their first contribution in go-delve/delve#3696 - [@howardjohn](https://github.com/howardjohn) made their first contribution in go-delve/delve#3705 - [@abbasudo](https://github.com/abbasudo) made their first contribution in go-delve/delve#3731 - [@fatanugraha](https://github.com/fatanugraha) made their first contribution in go-delve/delve#3632 - [@jayantxie](https://github.com/jayantxie) made their first contribution in go-delve/delve#3741 - [@zdyj3170101136](https://github.com/zdyj3170101136) made their first contribution in go-delve/delve#3767 **Full Changelog**: https://github.com/go-delve/delve/blob/master/CHANGELOG.md#1230-2024-07-16
Support for an option to the trace subcommand, "--follow-calls " which traverses the children of the functions being traced upto the desired depth
specified by the user.
n=0 is the same as the plain trace subcommand
n=1 is print the trace of functions at level=1 which is again equivalent to the plain trace subcommand
n=2 is print the trace of functions at level=2 which prints the immediate child of the function being traced along with the function
n=3 is print the trace of functions at level=3 which prints the function being traced along with two levels of children down the call tree
and so on..
This option also indents the output according to depth for the calls occurring in the program
Calls such as runtime.morestack_noctxt are treated specially and do not adhere to the definition of depth like the other functions
Though we can also trace morestack_noctxt calls if desired
For example, if we have a simple .go program such as the following
building leaf4 and running delve as follows would
give the following trace output