Skip to content

build(deps): bump github.com/go-resty/resty/v2 from 2.17.1 to 2.17.2 in the meraki group across 1 directory#50162

Open
dependabot[bot] wants to merge 2 commits intomainfrom
dependabot/go_modules/main/meraki-4e4938d4bd
Open

build(deps): bump github.com/go-resty/resty/v2 from 2.17.1 to 2.17.2 in the meraki group across 1 directory#50162
dependabot[bot] wants to merge 2 commits intomainfrom
dependabot/go_modules/main/meraki-4e4938d4bd

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 16, 2026

Bumps the meraki group with 1 update in the / directory: github.com/go-resty/resty/v2.

Updates github.com/go-resty/resty/v2 from 2.17.1 to 2.17.2

Release notes

Sourced from github.com/go-resty/resty/v2's releases.

v2.17.2

Release Notes

Backport

Release

Full Changelog: go-resty/resty@v2.17.1...v2.17.2

Commits

@dependabot dependabot Bot added automation dependabot GitHub Dependabot Team:Obs-InfraObs Label for the Observability Infrastructure Monitoring team labels Apr 16, 2026
@dependabot dependabot Bot requested a review from a team as a code owner April 16, 2026 14:00
@dependabot dependabot Bot added automation Team:Obs-InfraObs Label for the Observability Infrastructure Monitoring team dependabot GitHub Dependabot labels Apr 16, 2026
@github-actions
Copy link
Copy Markdown
Contributor

🤖 GitHub comments

Just comment with:

  • run docs-build : Re-trigger the docs validation. (use unformatted text in the comment!)

@mergify
Copy link
Copy Markdown
Contributor

mergify Bot commented Apr 16, 2026

This pull request does not have a backport label.
If this is a bug or security fix, could you label this PR @dependabot[bot]? 🙏.
For such, you'll need to label your PR with:

  • The upcoming major version of the Elastic Stack
  • The upcoming minor version of the Elastic Stack (if you're not pushing a breaking change)

To fixup this pull request, you need to add the backport labels for the needed
branches, such as:

  • backport-8./d is the label to automatically backport to the 8./d branch. /d is the digit
  • backport-active-all is the label that automatically backports to all active branches.
  • backport-active-8 is the label that automatically backports to all active minor branches for the 8 major.
  • backport-active-9 is the label that automatically backports to all active minor branches for the 9 major.

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Apr 16, 2026

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 91212959-684e-4954-970b-19c0525d2585

📥 Commits

Reviewing files that changed from the base of the PR and between c828da9 and 2ab42fe.

📒 Files selected for processing (1)
  • NOTICE.txt
✅ Files skipped from review due to trivial changes (1)
  • NOTICE.txt

📝 Walkthrough

Walkthrough

The pull request updates the github.com/go-resty/resty/v2 dependency from v2.17.1 to v2.17.2. The go.mod entry for that module was changed accordingly, and the NOTICE.txt reference to the module’s license file was updated to reflect the new version. No other module requirements, directives, or exported/public declarations were modified.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch dependabot/go_modules/main/meraki-4e4938d4bd
  • 🛠️ Update Documentation: Commit on current branch
  • 🛠️ Update Documentation: Create PR

Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions

This comment has been minimized.

@dependabot dependabot Bot changed the title build(deps): bump github.com/go-resty/resty/v2 from 2.17.1 to 2.17.2 in the meraki group build(deps): bump github.com/go-resty/resty/v2 from 2.17.1 to 2.17.2 in the meraki group across 1 directory Apr 17, 2026
@dependabot dependabot Bot force-pushed the dependabot/go_modules/main/meraki-4e4938d4bd branch from 1e0c970 to 1738f4f Compare April 17, 2026 03:05
@github-actions

This comment has been minimized.

@dependabot dependabot Bot force-pushed the dependabot/go_modules/main/meraki-4e4938d4bd branch from c24fc56 to c828da9 Compare April 17, 2026 10:25
@github-actions
Copy link
Copy Markdown
Contributor

TL;DR

Filebeat: Run check/update is failing due to a code bug: filebeat/beater/filebeat.go references b.Paths, but *beat.Beat no longer has a Paths field. Update that callsite to use b.Info.Paths, then re-run the failing job.

Remediation

  • In filebeat/beater/filebeat.go:498, replace b.Paths with b.Info.Paths in the autodiscover.NewAutodiscover(...) call.
  • Re-run make -C filebeat check update (or the Buildkite Filebeat: Run check/update step) to confirm go vet ./... passes.
Investigation details

Root Cause

The failing step is a direct compile/vet failure in Filebeat code, not an infra timeout:

  • filebeat/beater/filebeat.go:498 currently passes b.Paths.
  • libbeat/beat/beat.go:59-91 defines type Beat struct and it does not include a Paths field.
  • Path data is on Beat.Info.Paths (libbeat/beat/info.go:49).

Evidence

  • Build: https://buildkite.com/elastic/beats/builds/44313
  • Job/step: Filebeat: Run check/update
  • Key log excerpt (/tmp/gh-aw/buildkite-logs/filebeat-filebeat-run-checkupdate.txt:133-141):
    • beater/filebeat.go:498:6: b.Paths undefined (type *beat.Beat has no field or method Paths)
    • vet: beater/filebeat.go:498:6: b.Paths undefined (type *beat.Beat has no field or method Paths)
    • Error: failed running go vet ... running "go vet ./..." failed with exit code 1

Verification

  • Additional local verification not run in this workflow; diagnosis is based on the Buildkite failure log and matching source definitions above.

Follow-up

This PR only bumps resty in go.mod/go.sum plus NOTICE.txt; the failing Filebeat source file is outside that diff. If this is fixed in a newer base commit, rebasing the PR may also resolve it.


What is this? | From workflow: PR Buildkite Detective

Give us feedback! React with 🚀 if perfect, 👍 if helpful, 👎 if not.

@dependabot dependabot Bot force-pushed the dependabot/go_modules/main/meraki-4e4938d4bd branch from 2ab42fe to 0761515 Compare April 20, 2026 11:58
@dependabot dependabot Bot force-pushed the dependabot/go_modules/main/meraki-4e4938d4bd branch from 6bce1ac to 65b1270 Compare April 21, 2026 10:26
Bumps the meraki group with 1 update: [github.com/go-resty/resty/v2](https://github.com/go-resty/resty).


Updates `github.com/go-resty/resty/v2` from 2.17.1 to 2.17.2
- [Release notes](https://github.com/go-resty/resty/releases)
- [Commits](go-resty/resty@v2.17.1...v2.17.2)

---
updated-dependencies:
- dependency-name: github.com/go-resty/resty/v2
  dependency-version: 2.17.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: meraki
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/go_modules/main/meraki-4e4938d4bd branch from c06ae5d to 961a4cb Compare April 22, 2026 10:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

automation dependabot GitHub Dependabot Team:Obs-InfraObs Label for the Observability Infrastructure Monitoring team

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants