1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2026-06-03 18:35:08 +02:00
Files
opentelemetry-go/internal
renovate[bot] c22dd9267c chore(deps): update module github.com/mirrexone/unqueryvet to v1.5.2 (#7820)
This PR contains the following updates:

| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/) |
[Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|
|
[github.com/MirrexOne/unqueryvet](https://redirect.github.com/MirrexOne/unqueryvet)
| `v1.5.1` → `v1.5.2` |
![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fMirrexOne%2funqueryvet/v1.5.2?slim=true)
|
![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fMirrexOne%2funqueryvet/v1.5.1/v1.5.2?slim=true)
|

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>MirrexOne/unqueryvet
(github.com/MirrexOne/unqueryvet)</summary>

###
[`v1.5.2`](https://redirect.github.com/MirrexOne/unqueryvet/releases/tag/v1.5.2)

[Compare
Source](https://redirect.github.com/MirrexOne/unqueryvet/compare/v1.5.1...v1.5.2)

#### Bug Fixes

##### Fixed false positives in SQL builder detection
([#&#8203;5](https://redirect.github.com/MirrexOne/unqueryvet/issues/5))

**Problem:** The linter incorrectly flagged custom interfaces with
methods like `All()`, `One()`, `Count()` as SQLBoiler code.

```go
type WidgetDB interface {
    All(ctx context.Context) ([]Widget, error)
}

// This was incorrectly flagged:
widgetDBMoq.onCall().All(req.Context()).returnResults(...)
// Error: "SQLBoiler model().All() without qm.Select() defaults to SELECT *"
```

**Solution:** All 12 SQL builder checkers now use Go's type system
(`*types.Info`) to verify that method receivers actually belong to the
expected SQL builder package, instead of just checking method names.

#### Breaking Changes

- `IsApplicable()` method signature changed to accept `*types.Info`
parameter
- This only affects users who have custom SQL builder checkers

#### Installation

```bash
go install github.com/MirrexOne/unqueryvet/cmd/unqueryvet@v1.5.2
```

</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 is behind base branch, 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://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/open-telemetry/opentelemetry-go).

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-01-21 09:19:42 +01:00
..