Skip to content
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

Merged
merged 39 commits into from
Jun 12, 2024

Conversation

archanaravindar
Copy link
Contributor

@archanaravindar archanaravindar commented Dec 7, 2023

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

package main
import "fmt"
func D(i int) int {
        return i*i*i
}
func C(i int) int {

        return i+20
}
func B(i int) int {
        d:=C(i)+40
        return d+D(i)
}
func A(i int) int {
        return 10+B(i)
}
func main() {
        j := 0
        j += A(2)
        fmt.Println(j)
}

building leaf4 and running delve as follows would
give the following trace output

go build -gcflags '-N -l' ./leaf4.go 


../dlv trace main.A --follow-calls 3 -e=./leaf4^M
> goroutine(1): runtime.morestack_noctxt()^M
> goroutine(1): main.A(2)^M
 > goroutine(1): main.B(2)^M
  > goroutine(1): main.C(2)^M
  >> goroutine(1): => (22)^M
  > goroutine(1): main.D(2)^M
  >> goroutine(1): => (8)^M
 >> goroutine(1): => (70)^M
>> goroutine(1): => (80)^M
> goroutine(1): runtime.morestack_noctxt()^M
80^M

cmd/dlv/cmds/commands.go Show resolved Hide resolved
@@ -941,6 +941,175 @@ func TestTrace2(t *testing.T) {
assertNoError(cmd.Wait(), t, "cmd.Wait()")
}

func TestTraceDepth(t *testing.T) {
Copy link
Member

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.

pkg/terminal/command.go Outdated Show resolved Hide resolved
@@ -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) {
Copy link
Member

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.

Copy link
Contributor Author

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

Copy link
Member

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.

Copy link
Member

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.

Copy link
Contributor Author

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

Copy link
Member

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.

Copy link
Member

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 Show resolved Hide resolved
service/debugger/debugger.go Outdated Show resolved Hide resolved
service/debugger/debugger.go Outdated Show resolved Hide resolved
service/debugger/debugger.go Outdated Show resolved Hide resolved
@@ -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) {
Copy link
Member

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.

service/debugger/debugger.go Outdated Show resolved Hide resolved
pkg/terminal/command.go Outdated Show resolved Hide resolved
pkg/terminal/command.go Outdated Show resolved Hide resolved
pkg/terminal/command.go Outdated Show resolved Hide resolved
pkg/terminal/command.go Outdated Show resolved Hide resolved
cmd/dlv/cmds/commands.go Show resolved Hide resolved
cmd/dlv/cmds/commands.go Outdated Show resolved Hide resolved
//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)
Copy link
Member

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?

@@ -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) {
Copy link
Member

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.

cmd/dlv/cmds/commands.go Outdated Show resolved Hide resolved
pkg/terminal/command.go Outdated Show resolved Hide resolved
return
}

stack := th.BreakpointInfo.Stacktrace
Copy link
Member

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?

Copy link
Contributor Author

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.

Copy link
Member

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?

Copy link
Contributor Author

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?

Copy link
Member

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.

cmd/dlv/cmds/commands.go Outdated Show resolved Hide resolved
pkg/terminal/command.go Show resolved Hide resolved
service/rpc2/server.go Outdated Show resolved Hide resolved
service/test/integration2_test.go Outdated Show resolved Hide resolved
service/test/integration2_test.go Outdated Show resolved Hide resolved
service/debugger/debugger.go Outdated Show resolved Hide resolved
service/debugger/debugger.go Outdated Show resolved Hide resolved
service/debugger/debugger.go Outdated Show resolved Hide resolved
service/debugger/debugger.go Outdated Show resolved Hide resolved
service/debugger/debugger.go Outdated Show resolved Hide resolved
pkg/terminal/command.go Outdated Show resolved Hide resolved
pkg/terminal/command.go Outdated Show resolved Hide resolved
@@ -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) {
Copy link
Member

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.

@archanaravindar
Copy link
Contributor Author

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)
you had seen which was very inefficient so that we could try it with the new implementation and see if we got improvement, thanks!

@aarzilli
Copy link
Member

can you please give the same example as mentioned in #3594 (comment)

Just:

package main

import "fmt"

func f() {
    fmt.Printf("hello world\n")
}

func main() {
    f()
}

and trace main.f with --follow-calls=10, if that's fast for you try --follow-calls=10000.

@archanaravindar
Copy link
Contributor Author

Optimized traversal and tested with example provided in #3594 (comment)
Testing with depth of 10000 the execution time remains well below 1 second
image

@aarzilli
Copy link
Member

aarzilli commented Apr 29, 2024

Optimized traversal

I think that making it a BFS is still preferable to optimizing a DFS with caching:

d := make(map[string]int)
fringe := []string
add := func(fname string, dist int) {
	if curdist, ok := d[fname]; ok {
		if curdist > dist {
			d[fname] = dist
		}
		return
	}
	d[fname] = dist
	fringe = append(fringe, fname)
}

add(f.Name)

for len(fringe) > 0 {
	cur = fringe[0]
	fringe = fringe[1:] // leaking slightly but it should be fine
	if d[cur] >= depth {
		continue
	}
	dcur := d[cur]
	for _, next := range functionsCalledFromDisassembly(cur) {
		add(next, dcur+1)
	}
}

r := []string{}
for fname, dist := range d {
	if dist < depth {
		r = append(r, fname)
	}
}
return r

(not tested, didn't even compile it)

@archanaravindar
Copy link
Contributor Author

archanaravindar commented Apr 30, 2024

Optimized traversal

I think that making it a BFS is still preferable to optimizing a DFS with caching:

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

@aarzilli
Copy link
Member

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.

Copy link
Member

@derekparker derekparker left a 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.

pkg/proc/breakpoints.go Outdated Show resolved Hide resolved
pkg/proc/breakpoints.go Outdated Show resolved Hide resolved
pkg/terminal/command.go Show resolved Hide resolved
pkg/terminal/command.go Outdated Show resolved Hide resolved
pkg/terminal/command.go Outdated Show resolved Hide resolved
service/debugger/debugger.go Outdated Show resolved Hide resolved
service/debugger/debugger.go Outdated Show resolved Hide resolved
service/debugger/debugger.go Outdated Show resolved Hide resolved
service/debugger/debugger.go Outdated Show resolved Hide resolved
service/debugger/debugger.go Outdated Show resolved Hide resolved
service/debugger/debugger.go Outdated Show resolved Hide resolved
service/debugger/debugger.go Show resolved Hide resolved
service/rpc2/server.go Outdated Show resolved Hide resolved
pkg/terminal/command.go Outdated Show resolved Hide resolved
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 28, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 28, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 28, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 29, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 29, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 29, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 29, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 29, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 29, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 29, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 29, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 29, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 29, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 30, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 30, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 30, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 30, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 30, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 30, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 30, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 30, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 30, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 30, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 30, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 30, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Sep 30, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Oct 1, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Oct 1, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Oct 1, 2024
##### [`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
zemnmez-renovate-bot added a commit to zemn-me/monorepo that referenced this pull request Oct 1, 2024
##### [`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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants