Skip to content

build(deps): bump github.com/losisin/helm-values-schema-json/v2 from 2.4.0 to 2.5.0 in /xpumd/tools#136

Open
dependabot[bot] wants to merge 162 commits into
mainfrom
dependabot/go_modules/xpumd/tools/github.com/losisin/helm-values-schema-json/v2-2.5.0
Open

build(deps): bump github.com/losisin/helm-values-schema-json/v2 from 2.4.0 to 2.5.0 in /xpumd/tools#136
dependabot[bot] wants to merge 162 commits into
mainfrom
dependabot/go_modules/xpumd/tools/github.com/losisin/helm-values-schema-json/v2-2.5.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 11, 2026

Copy link
Copy Markdown
Contributor

Bumps github.com/losisin/helm-values-schema-json/v2 from 2.4.0 to 2.5.0.

Release notes

Sourced from github.com/losisin/helm-values-schema-json/v2's releases.

v2.5.0

Changelog

Added

  • d42cff4f6078ac87c2844846cc3807b6ef715017: feat: add bundle subcommand to run the bundler on a schema file (@​somaz94)
  • 95818875d23e906114112f22375f5f7c2a396f83: feat: add lint subcommand to validate the config and input files (@​somaz94)

Updated

  • 44359d84e7a01868d4025157b3267fd120a67dce: build(deps): bump codecov/codecov-action from 6.0.0 to 6.0.1 (@​dependabot[bot])
  • 247c91022462cfa666c25f3efe108c808ceede41: build(deps): bump github.com/fxamacker/cbor/v2 from 2.9.1 to 2.9.2 (@​dependabot[bot])
  • e0baa502faf9267d87c6cc5646f95341e34cca32: build(deps): bump golangci/golangci-lint-action from 9.2.0 to 9.2.1 (@​dependabot[bot])
  • 3c331a60371ab3ad938bfdc1dfe0b85a1e60c46c: build(deps): bump goreleaser/goreleaser-action from 7.0.0 to 7.1.0 (@​dependabot[bot])
  • 37c016f5631a9af7cb7c559954c14d5dbc183e0b: build(deps): bump goreleaser/goreleaser-action from 7.1.0 to 7.2.1 (@​dependabot[bot])
  • 19dbc99d7fbac0597cfbc437909b992c2a383f70: build(deps): bump goreleaser/goreleaser-action from 7.2.1 to 7.2.2 (@​dependabot[bot])
  • ceac445527ebffee7656198f6f2a3bad9c722e8f: build(deps): bump securego/gosec from 2.25.0 to 2.26.1 (@​dependabot[bot])
  • ace8daf61742d3c33bcfe74ad42f76f172d33f08: build(deps): bump zizmorcore/zizmor-action from 0.5.3 to 0.5.5 (@​dependabot[bot])
  • 61ef9427fb9d5485e385fa52562b68810ebe8077: build(deps): bump zizmorcore/zizmor-action from 0.5.5 to 0.5.6 (@​dependabot[bot])

Other

  • 297a6907093182ca208494d0fe5be241c716b681: release: v2.5.0 (@​losisin)
  • 69cbcc35e40e3f74e2d34bdab49bc9edb7125ad0: test: normalize golden line endings and cover bundle error paths (@​somaz94)
Commits
  • 8cda3af Merge pull request #358 from losisin/release/v2.5.0
  • 297a690 release: v2.5.0
  • 7ecd62b Merge pull request #354 from somaz94/feat/bundle-command
  • 69cbcc3 test: normalize golden line endings and cover bundle error paths
  • d42cff4 feat: add bundle subcommand to run the bundler on a schema file
  • 58bd749 Merge pull request #355 from somaz94/feat/lint-command
  • 9581887 feat: add lint subcommand to validate the config and input files
  • c2e43a0 Merge pull request #349 from losisin/dependabot/github_actions/goreleaser/gor...
  • 6b85ab0 Merge branch 'main' into dependabot/github_actions/goreleaser/goreleaser-acti...
  • 0648d57 Merge pull request #350 from losisin/dependabot/github_actions/golangci/golan...
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

savery42 and others added 30 commits June 10, 2026 09:34
Provides a unified framework for querying GPU telemetry
fields by name, group, or alias — replacing ad-hoc per-field lookups
with a single registry-backed API

- QueryMetric struct ties together a field's name, unit, human-readable
  description, MetricSource (Static vs Live), MetricGroup bitmask, and
  a device getter function, making each metric fully self-describing

- MetricGroup bitmask enum maps to display sections; operators
  |, & and hasGroup enable composable group filtering

- parseGroupMask resolves comma-separated tokens case-insensitively
  against canonical names (MEMORY), single-letter aliases (m), and
  multi-character shorthands (pu → POWER | TEMPERATURE | UTILIZATION)

- SampleCache captures before/after delta snapshots for engine groups,
  card and GPU-domain power energy, PCIe byte counters, memory
  read/write bandwidth, and EU active/stall/idle — populated once per
  device per tick so all getters share a single HAL round-trip

- populateSampleCacheBegin/End separates the before and after halves to
  allow the measurement sleep to be amortised across all devices in a
  multi-device loop rather than repeated per device

- populateSampleCacheContinuous promotes the previous tick's after-samples
  into the next tick's before-slots with no sleep, enabling the dmon
  continuous-monitoring path without redundant HAL calls

- Registry API: getQueryMetrics returns the full ordered table;
  findMetric performs case-insensitive lookup including aliases;
  getMetricsByGroup filters by bitmask; resolveQuery handles a
  comma-separated mix of dotted field names, aliases, and group tokens
  with deduplication; formatGroups renders a bitmask as readable names

- runMetrics / runMetricsWithCaches are templated on a MetricOutput
  concept, decoupling metric evaluation from output formatting and
  enabling both one-shot and continuous-loop callers

Related-To: XPUM-1266

Signed-off-by: Avery, Sean <sean.avery@intel.com>
Dev-SHA: e296a3ab74123e2b3a279a24946c396097c9e4b8
Dev-SHA: 7392ae20c29658183397305a52499d4d0cc19a80
Dev-SHA: 87f036b3e48cd417810eeb3fdf3aac3078af8612
Dev-SHA: f4b7094636897bf7b09d78bbac5ff5995f482ec1
Dev-SHA: 3719b98330c9b94cc9890ebe5ab1f21d370e2078
Dev-SHA: 7b708292e47d368b26e860108cc04e30af86f3ed
Dev-SHA: b67963a5efd483fe0051d22f3a4d8c2df4f314df
Dev-SHA: 9b7cec57f6b366a587bfd956e97fd0c7ab4556ac
Dev-SHA: fc0b70154bdd4a9276f0ee79a23a77dafd1bba38
Dev-SHA: 6c4cb74de855a5fbb8ab71ec4c12d6b69898accc
Dev-SHA: 953822eddf39b127d52f9fbbc03a4bd7da30ab7b
Dev-SHA: 753ed1f3bb2156ee99a8dd95a80cc5cef0cf9bc8
Dev-SHA: f8214b78981229e4a3058d16b112adc8dc92521a
Dev-SHA: 667fe8890c61b0b2b4071671ffd486b1572ed1a2
Dev-SHA: e3cd8ee63f54bbc6bdb0148da5a369ce4a91a571
Dev-SHA: 8a6bb3a8777568799c271b66cae031707b80d475
Dev-SHA: 6918c10453a3bfec4066276f9357b97e336ba4ec
Dev-SHA: 60a4ced0fa2bf2243eaae9dfd34d35748a8b612f
Dev-SHA: 4f92d1d97815b4fe93d47279e046331855e45cad
Dev-SHA: 107f1a1924427eba943c79ea72b89ad4d26d65a6
Dev-SHA: 01c24d6e887f4f88983b298370aff51493baf94d
Dev-SHA: 63b7d8cd36ca0719b70e45422bf8218b7d39abcb
Dev-SHA: 75a0a774f7e10d8d7d89380d9fe4677c3d347d41
Dev-SHA: dfa406478dbaba779b0fa9b4a55eeb28495389cc
Dev-SHA: eed3c86cb26853f312c9f52e88c9c3d94d9ecd0c
Dev-SHA: 626f1f96f4add06bdbc0cc3424f086c1203488b0
Dev-SHA: e41758d86341af115d09548ec2251c21f9cbb869
Dev-SHA: 771a782105ced29692fd24edf8c3a804d93e24fd
Dev-SHA: 96853ae2c6af0981b2a99c3803ac08e8389f7766
marquiz and others added 20 commits June 10, 2026 09:35
Dev-SHA: 0b89c8ba9a23c79400ef60bee1f600679c2232a5
Dev-SHA: d629abe8faa83793dc651644f48173af1ce29762
Dev-SHA: 59250c463f3ead21aa8715d4152572bb79e8925e
Dev-SHA: 806502fbf75a36a791dedab2f409f6411cc025c2
…mancefactor

Dev-SHA: 87af2b61f6778dc360de7944498a670ebf7a6ce0
Dev-SHA: e7afd5f9012669369b08b907a1e1bad76a66269d
Dev-SHA: e936ad160efc5352870e39f514b4cf6d1f8bb96d
Dev-SHA: d2dd4bf87f3443c1a5cbaedc60b66de11ba0d346
Dev-SHA: d06af2b73f95313a449f6e13f33b1e5d83ab38f8
Dev-SHA: 749b989d0bf5d4b3c6f2a5c94de58cc9b02e2169
Dev-SHA: 371609086b0a9b1cfc4ad6bdad52e51bdc3af9ce
Dev-SHA: e7aab35825acc4e5819729cbdea274ee06e07e5a
Dev-SHA: 3704dfcbf49851848d9f0af14b268996d10b9230
Dev-SHA: 886901ebf9b0e4d316ed59d198f0dbe77a6035ca
Dev-SHA: b0c574742c6a9d9898ddd3613bd821f8b9f20ac4
Dev-SHA: 8ab36c8bff262c2f16fb6553d6d1715a744bfc5d
Dev-SHA: 87c39d072f4c5630a718c49e2cff31ea9787bc54
Dev-SHA: d0a2cb2bc2c57bcc9c6a62a1d83a5d3ada36a45b
Dev-SHA: d58944ceb8e045a32e8804173e4fb9de65fb610a
Bumps [github.com/losisin/helm-values-schema-json/v2](https://github.com/losisin/helm-values-schema-json) from 2.4.0 to 2.5.0.
- [Release notes](https://github.com/losisin/helm-values-schema-json/releases)
- [Commits](losisin/helm-values-schema-json@v2.4.0...v2.5.0)

---
updated-dependencies:
- dependency-name: github.com/losisin/helm-values-schema-json/v2
  dependency-version: 2.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Jun 11, 2026
@dependabot dependabot Bot requested a review from marquiz as a code owner June 11, 2026 18:54
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Jun 11, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

10 participants