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

pkg/proc: fix watchpoints on macos #3703

Merged
merged 7 commits into from
Apr 29, 2024

Conversation

derekparker
Copy link
Member

It seems newer MacOS kernels are sending mach exceptions for watchpoints which contain the hardware register number as opposed to the address which triggered the exception. Also, ARM64 seems to have switched to sending _EXC_I386_SGL as medata[0] for this exception type.

It seems newer MacOS kernels are sending mach exceptions for watchpoints
which contain the hardware register number as opposed to the address
which triggered the exception. Also, ARM64 seems to have switched to
sending _EXC_I386_SGL as medata[0] for this exception type.
@derekparker derekparker marked this pull request as draft April 14, 2024 20:34
@derekparker
Copy link
Member Author

Marking as draft as I'm still iterating on this.

@derekparker derekparker marked this pull request as ready for review April 18, 2024 15:54
@@ -5501,7 +5511,7 @@ func TestWatchpointCounts(t *testing.T) {
}

t.Logf("TotalHitCount: %d", bp.Logical.TotalHitCount)
if bp.Logical.TotalHitCount != 200 {
if bp.Logical.TotalHitCount < 200 {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This check should be exact, if it is more than 200 it means we are counting some hits multiple times, which is a bug.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Never mind, now it's broken in CI. I'll take a look into this.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Never mind, now it's broken in CI. I'll take a look into this.

I've sent in a patch to skip the two watchpoint tests failing in CI. The macOS version (and subsequently the kernel) are ~4 years old and officially unsupported by Apple, so the likelihood anyone is actually running this version in the wild, especially a developer, is extremely low.

The tests pass reliably on my machine ™️ and this patch fixes watchpoints on my machine, which previously were completely broken. I've already reached out to the JetBrains folks to update our macOS builders to a more recent, supported version.

Copy link
Member

@aarzilli aarzilli left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@aarzilli aarzilli merged commit bba7547 into go-delve:master Apr 29, 2024
2 checks passed
@derekparker derekparker deleted the wip/fix-watchpoints-macos branch April 29, 2024 17:25
yurishkuro pushed a commit to jaegertracing/jaeger that referenced this pull request Aug 17, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [github.com/go-delve/delve](https://togithub.com/go-delve/delve) |
`v1.22.1` -> `v1.23.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgo-delve%2fdelve/v1.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgo-delve%2fdelve/v1.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgo-delve%2fdelve/v1.22.1/v1.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgo-delve%2fdelve/v1.22.1/v1.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>go-delve/delve (github.com/go-delve/delve)</summary>

###
[`v1.23.0`](https://togithub.com/go-delve/delve/releases/tag/v1.23.0)

[Compare
Source](https://togithub.com/go-delve/delve/compare/v1.22.1...v1.23.0)

#### What's Changed

- dwarfbuilder: fix makeAbbrevTable by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3665
- \*: misc fixes for go1.23 by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3663
- elfwriter: add WriteSectionHeaders by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3666
- Upgrade github.com/google/go-dap to v0.12.0 by
[@&#8203;suzmue](https://togithub.com/suzmue) in
[go-delve/delve#3673
- pkg/terminal,pkg/proc: Implement next-instruction by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[go-delve/delve#3671
- pkg/terminal: print breakpoint number on stop by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[go-delve/delve#3675
- proc/evalop: remove no longer needed Go 1.17 files by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3676
- Cirrus-CI: update to FreeBSD 13.3 by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3679
- dwarf/loclist: remove impossible condition by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3677
- proc: catch panics when reading debug info for stripped executables by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3678
- proc,go.mod: update x/sys remove KeepAlive calls by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3680
- pkg/proc: defend better against missing DWARF by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[go-delve/delve#3695
- proc: support reading captured variables of closures by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3682
- pkg/terminal: allow postfix if for breakpoint conds by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[go-delve/delve#3693
- proc: change 'step' command so that it steps through go statements by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3686
- cmd/dlv: add shell (non-)completions to flags taking args by
[@&#8203;scop](https://togithub.com/scop) in
[go-delve/delve#3696
- cmd/dlv: fix panic on connect fail by
[@&#8203;scop](https://togithub.com/scop) in
[go-delve/delve#3698
- tests: fix tests on Go 1.23 by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3697
- pkg/terminal: clear erroneous name setting on postfix if by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[go-delve/delve#3702
- pkg/terminal: remove duplicated word by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3707
- cmd/dlv: improve positional argument completion by
[@&#8203;scop](https://togithub.com/scop) in
[go-delve/delve#3699
- proc: generalize escapeCheck and allocString by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3687
- rr: fix gdb parsing by
[@&#8203;howardjohn](https://togithub.com/howardjohn) in
[go-delve/delve#3705
- Add function name even in return trace by
[@&#8203;archanaravindar](https://togithub.com/archanaravindar) in
[go-delve/delve#3712
- pkg/proc: fix watchpoints on macos by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[go-delve/delve#3703
- \_scripts: upgrade to python3 by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3716
- pkg/proc/gdbserial: optimize gdbwire backend by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[go-delve/delve#3715
- gdbserial: update path of lldb protocol extension documentation by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3727
- gdbserial: fixes for rr 5.7.0 by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3718
- pkg/terminal: remove deprecated starlark global options by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3722
- \*: remove redundant lines at the start/end of block by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3730
- Update actions/checkout to v4 by
[@&#8203;abbasudo](https://togithub.com/abbasudo) in
[go-delve/delve#3731
- proc/gdbserial: add environment variables to configure rr invocation
by [@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3726
- proc: initial stepping with range-over-func support by
[@&#8203;aarzilli](https://togithub.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
[@&#8203;fatanugraha](https://togithub.com/fatanugraha) in
[go-delve/delve#3632
- Support to add a new suboption --follow-calls to trace subcommand by
[@&#8203;archanaravindar](https://togithub.com/archanaravindar) in
[go-delve/delve#3594
- proc: fix bug with stack watchpoints going out of scope by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3742
- proc: fix TestRangeOverFuncNext by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3740
- proc: refactor identifier evaluation for range-over-func support by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3738
- service: print better message for unattended stops by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3747
- pkg/astutil,pkg/elfwriter: fix package doc by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3753
- \*: replace fmt.Errorf with errors.New by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3752
- proc: initial support for expressions with range-over-func by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3750
- pkg/terminal: do not use deprecated strings.Title by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3756
- all: fix typos in CHANGELOG, comments and package name by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3757
- refactor: move loadModuleData from runtimeTypeToDIE and expose the
apis by [@&#8203;jayantxie](https://togithub.com/jayantxie) in
[go-delve/delve#3741
- pkg/proc,service/debugger: fix debuginfod-find source by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[go-delve/delve#3762
- fix: mem cache out of range panic caused by overflow by
[@&#8203;jayantxie](https://togithub.com/jayantxie) in
[go-delve/delve#3761
- proc: support stepping through range-over-func statements with
inlining by [@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3755
- service/debugger: evaluate breakpoint vars on g-less threads by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3759
- fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr…
by [@&#8203;zdyj3170101136](https://togithub.com/zdyj3170101136) in
[go-delve/delve#3767
- \*: remove redundant lines at the start/end of block by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3773
- pkg/proc: fix 404 links and change to https by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3775
- go.mod: update gopkg.in/yaml to v3 by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3776
- pkg/terminal: add missing file.Close() call by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3770
- pkg: refactor to .WriteString() instead of .Write(\[]byte()) by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3769
- pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3772
- proc: use .closureptr for stepping through range-over-func statements
by [@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3763
- service/rpc1: add Go Reference doc by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3779
- \*: replace old golang.org links with new go.dev by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3774
- proc: fix bug with range-over-func stepping by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3778
- goversion: add 1.23 to supported versions, update test matrix by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3780
- teamcity: fix typo in configuration by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3783
- \*: release version 1.23.0 by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3782

#### New Contributors

- [@&#8203;scop](https://togithub.com/scop) made their first
contribution in
[go-delve/delve#3696
- [@&#8203;howardjohn](https://togithub.com/howardjohn) made their first
contribution in
[go-delve/delve#3705
- [@&#8203;abbasudo](https://togithub.com/abbasudo) made their first
contribution in
[go-delve/delve#3731
- [@&#8203;fatanugraha](https://togithub.com/fatanugraha) made their
first contribution in
[go-delve/delve#3632
- [@&#8203;jayantxie](https://togithub.com/jayantxie) made their first
contribution in
[go-delve/delve#3741
- [@&#8203;zdyj3170101136](https://togithub.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

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View the
[repository job
log](https://developer.mend.io/github/jaegertracing/jaeger).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiY2hhbmdlbG9nOmRlcGVuZGVuY2llcyJdfQ==-->

Signed-off-by: Mend Renovate <bot@renovateapp.com>
JaredTan95 pushed a commit to JaredTan95/jaeger that referenced this pull request Aug 28, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [github.com/go-delve/delve](https://togithub.com/go-delve/delve) |
`v1.22.1` -> `v1.23.0` |
[![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgo-delve%2fdelve/v1.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgo-delve%2fdelve/v1.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgo-delve%2fdelve/v1.22.1/v1.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgo-delve%2fdelve/v1.22.1/v1.23.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>go-delve/delve (github.com/go-delve/delve)</summary>

###
[`v1.23.0`](https://togithub.com/go-delve/delve/releases/tag/v1.23.0)

[Compare
Source](https://togithub.com/go-delve/delve/compare/v1.22.1...v1.23.0)

#### What's Changed

- dwarfbuilder: fix makeAbbrevTable by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3665
- \*: misc fixes for go1.23 by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3663
- elfwriter: add WriteSectionHeaders by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3666
- Upgrade github.com/google/go-dap to v0.12.0 by
[@&#8203;suzmue](https://togithub.com/suzmue) in
[go-delve/delve#3673
- pkg/terminal,pkg/proc: Implement next-instruction by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[go-delve/delve#3671
- pkg/terminal: print breakpoint number on stop by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[go-delve/delve#3675
- proc/evalop: remove no longer needed Go 1.17 files by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3676
- Cirrus-CI: update to FreeBSD 13.3 by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3679
- dwarf/loclist: remove impossible condition by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3677
- proc: catch panics when reading debug info for stripped executables by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3678
- proc,go.mod: update x/sys remove KeepAlive calls by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3680
- pkg/proc: defend better against missing DWARF by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[go-delve/delve#3695
- proc: support reading captured variables of closures by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3682
- pkg/terminal: allow postfix if for breakpoint conds by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[go-delve/delve#3693
- proc: change 'step' command so that it steps through go statements by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3686
- cmd/dlv: add shell (non-)completions to flags taking args by
[@&#8203;scop](https://togithub.com/scop) in
[go-delve/delve#3696
- cmd/dlv: fix panic on connect fail by
[@&#8203;scop](https://togithub.com/scop) in
[go-delve/delve#3698
- tests: fix tests on Go 1.23 by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3697
- pkg/terminal: clear erroneous name setting on postfix if by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[go-delve/delve#3702
- pkg/terminal: remove duplicated word by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3707
- cmd/dlv: improve positional argument completion by
[@&#8203;scop](https://togithub.com/scop) in
[go-delve/delve#3699
- proc: generalize escapeCheck and allocString by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3687
- rr: fix gdb parsing by
[@&#8203;howardjohn](https://togithub.com/howardjohn) in
[go-delve/delve#3705
- Add function name even in return trace by
[@&#8203;archanaravindar](https://togithub.com/archanaravindar) in
[go-delve/delve#3712
- pkg/proc: fix watchpoints on macos by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[go-delve/delve#3703
- \_scripts: upgrade to python3 by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3716
- pkg/proc/gdbserial: optimize gdbwire backend by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[go-delve/delve#3715
- gdbserial: update path of lldb protocol extension documentation by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3727
- gdbserial: fixes for rr 5.7.0 by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3718
- pkg/terminal: remove deprecated starlark global options by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3722
- \*: remove redundant lines at the start/end of block by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3730
- Update actions/checkout to v4 by
[@&#8203;abbasudo](https://togithub.com/abbasudo) in
[go-delve/delve#3731
- proc/gdbserial: add environment variables to configure rr invocation
by [@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3726
- proc: initial stepping with range-over-func support by
[@&#8203;aarzilli](https://togithub.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
[@&#8203;fatanugraha](https://togithub.com/fatanugraha) in
[go-delve/delve#3632
- Support to add a new suboption --follow-calls to trace subcommand by
[@&#8203;archanaravindar](https://togithub.com/archanaravindar) in
[go-delve/delve#3594
- proc: fix bug with stack watchpoints going out of scope by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3742
- proc: fix TestRangeOverFuncNext by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3740
- proc: refactor identifier evaluation for range-over-func support by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3738
- service: print better message for unattended stops by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3747
- pkg/astutil,pkg/elfwriter: fix package doc by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3753
- \*: replace fmt.Errorf with errors.New by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3752
- proc: initial support for expressions with range-over-func by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3750
- pkg/terminal: do not use deprecated strings.Title by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3756
- all: fix typos in CHANGELOG, comments and package name by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3757
- refactor: move loadModuleData from runtimeTypeToDIE and expose the
apis by [@&#8203;jayantxie](https://togithub.com/jayantxie) in
[go-delve/delve#3741
- pkg/proc,service/debugger: fix debuginfod-find source by
[@&#8203;derekparker](https://togithub.com/derekparker) in
[go-delve/delve#3762
- fix: mem cache out of range panic caused by overflow by
[@&#8203;jayantxie](https://togithub.com/jayantxie) in
[go-delve/delve#3761
- proc: support stepping through range-over-func statements with
inlining by [@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3755
- service/debugger: evaluate breakpoint vars on g-less threads by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3759
- fix: LoadAbstractOriginAndSpecification infinite loop caused by abstr…
by [@&#8203;zdyj3170101136](https://togithub.com/zdyj3170101136) in
[go-delve/delve#3767
- \*: remove redundant lines at the start/end of block by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3773
- pkg/proc: fix 404 links and change to https by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3775
- go.mod: update gopkg.in/yaml to v3 by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3776
- pkg/terminal: add missing file.Close() call by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3770
- pkg: refactor to .WriteString() instead of .Write(\[]byte()) by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3769
- pkg/dwarf/line: use t.Logf instead of fmt.Printf in tests by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3772
- proc: use .closureptr for stepping through range-over-func statements
by [@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3763
- service/rpc1: add Go Reference doc by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3779
- \*: replace old golang.org links with new go.dev by
[@&#8203;alexandear](https://togithub.com/alexandear) in
[go-delve/delve#3774
- proc: fix bug with range-over-func stepping by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3778
- goversion: add 1.23 to supported versions, update test matrix by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3780
- teamcity: fix typo in configuration by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3783
- \*: release version 1.23.0 by
[@&#8203;aarzilli](https://togithub.com/aarzilli) in
[go-delve/delve#3782

#### New Contributors

- [@&#8203;scop](https://togithub.com/scop) made their first
contribution in
[go-delve/delve#3696
- [@&#8203;howardjohn](https://togithub.com/howardjohn) made their first
contribution in
[go-delve/delve#3705
- [@&#8203;abbasudo](https://togithub.com/abbasudo) made their first
contribution in
[go-delve/delve#3731
- [@&#8203;fatanugraha](https://togithub.com/fatanugraha) made their
first contribution in
[go-delve/delve#3632
- [@&#8203;jayantxie](https://togithub.com/jayantxie) made their first
contribution in
[go-delve/delve#3741
- [@&#8203;zdyj3170101136](https://togithub.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

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View the
[repository job
log](https://developer.mend.io/github/jaegertracing/jaeger).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiY2hhbmdlbG9nOmRlcGVuZGVuY2llcyJdfQ==-->

Signed-off-by: Mend Renovate <bot@renovateapp.com>
Signed-off-by: Jared Tan <jian.tan@daocloud.io>
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.

2 participants