Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 8, 2025

Bumps github.com/perses/perses from 0.53.0-beta.2 to 0.53.0-beta.3.

Release notes

Sourced from github.com/perses/perses's releases.

0.53.0-beta.3 / 2025-11-21

Core & UI

  • [FEATURE] Add notices to panel header (#3577)
  • [FEATURE] Display default dashboards when query is empty (#3572)
  • [ENHANCEMENT] Error handling for Search Bar and dynamic Search List (#3575)
  • [BUGFIX] Fix embedding markdown panels in tables (#3588)
  • [BUGFIX] Add bits/sec convertion to human-readable sizes, add bits units(#3441) (#3583)
  • [BUGFIX] Fix navigation after creating a new ephemeral dashboard (#3584)
  • [BUGFIX] CLI/PLUGIN: Avoid re-building dev server tasks to shut down correctly the start plugin command (#3579)
  • [BUGFIX] Add back piechart removed by mistake (#3552)
  • [BREAKINGCHANGE/BUGFIX] PanelEditor + VariableEditor: queries changes are not saved (#3590)
  • [DOC] Fix deprecated list of supported data-sources (#3601)
  • [DOC] Add a concept doc about the open-specification and being compatible with Perses (#3598)

Plugins improvements

  • perses/plugins#433
  • perses/plugins#476
  • perses/plugins#477
  • perses/plugins#419perses/plugins#467)
  • perses/plugins#465perses/plugins#468)
  • perses/plugins#466
  • perses/plugins#471
  • perses/plugins#472

Breaking Changes

  • MultiQueryEditor component has a new mandatory method: onQueryRun. It will be called when the user click on the button "Run Query". It's useful if you want to execute a query only when this button is clicked and not on every onChange (current Perses behavior).

From :

export function FooExplorer(): ReactElement {
  const {
    data: { queries = [] },
    setData,
  } = useExplorerManagerContext<FooExplorerQueryParams>();
return (
<Stack gap={2} sx={{ width: '100%' }}>
<MultiQueryEditor
queryTypes={['ProfileQuery']}
queries={queries}
onChange={(newQueries) => setData({ queries: queryDefinitions })}
/>
<FooPanel queries={queries} />
</Stack>
);
</tr></table>

... (truncated)

Changelog

Sourced from github.com/perses/perses's changelog.

0.53.0-beta.3 / 2025-11-21

Core & UI

  • [FEATURE] Add notices to panel header (#3577)
  • [FEATURE] Display default dashboards when query is empty (#3572)
  • [ENHANCEMENT] Error handling for Search Bar and dynamic Search List (#3575)
  • [BUGFIX] PanelEditor + VariableEditor: queries changes are not saved (#3590)
  • [BUGFIX] Fix embedding markdown panels in tables (#3588)
  • [BUGFIX] Add bits/sec convertion to human-readable sizes, add bits units(#3441) (#3583)
  • [BUGFIX] Fix navigation after creating a new ephemeral dashboard (#3584)
  • [BUGFIX] CLI/PLUGIN: Avoid re-building dev server tasks to shut down correctly the start plugin command (#3579)
  • [BUGFIX] Add back piechart removed by mistake (#3552)
  • [DOC] Fix deprecated list of supported data-sources (#3601)
  • [DOC] Add a concept doc about the open-specification and being compatible with Perses (#3598)

Plugins improvements

  • perses/plugins#433
  • perses/plugins#476
  • perses/plugins#477
  • perses/plugins#419perses/plugins#467)
  • perses/plugins#465perses/plugins#468)
  • perses/plugins#466
  • perses/plugins#471
  • perses/plugins#472
Commits
  • 7b1a112 Release v0.53.0-beta.3 (#3605)
  • b716a19 Merge pull request #3606 from perses/nexucis/update-plugin
  • e3f92ed Merge pull request #3604 from perses/nexucis/conflict
  • 927e4d4 Merge branch 'main' into nexucis/conflict
  • 9dbd339 [ignore] fix supported language list for the open spec (#3603)
  • 1097d52 [DOC] Fix deprecated list of supported datasources (#3601)
  • d1d3b4b [DOC] Add a concept doc about the open-specification and being compatible wit...
  • 5c498a2 [IGNORE] TraceMetaData: add hasMoreResults field (#3599)
  • 5cf7175 [IGNORE] add CODEOWNERS file (#3594)
  • c46a1bc Bump golangci/golangci-lint-action from 8.0.0 to 9.0.0 (#3554)
  • 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Dec 8, 2025
Bumps [github.com/perses/perses](https://github.com/perses/perses) from 0.53.0-beta.2 to 0.53.0-beta.3.
- [Release notes](https://github.com/perses/perses/releases)
- [Changelog](https://github.com/perses/perses/blob/main/CHANGELOG.md)
- [Commits](perses/perses@v0.53.0-beta.2...v0.53.0-beta.3)

---
updated-dependencies:
- dependency-name: github.com/perses/perses
  dependency-version: 0.53.0-beta.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/go_modules/github.com/perses/perses-0.53.0-beta.3 branch from e570dcd to 3000b73 Compare December 9, 2025 14:01
@Nexucis Nexucis merged commit c736afe into main Dec 9, 2025
7 checks passed
@Nexucis Nexucis deleted the dependabot/go_modules/github.com/perses/perses-0.53.0-beta.3 branch December 9, 2025 14:07
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.

2 participants