György Krajcsovits
1e3b14acec
chore: prep release 3.13.1 with tsdb related fix
...
Signed-off-by: György Krajcsovits <gyorgy.krajcsovits@grafana.com>
2026-07-10 08:27:29 +02:00
George Krajcsovits
40af9c2cdc
Merge pull request #19047 from prometheus/krajo/prep-release-3.13
...
CI / Go tests (push) Has been cancelled
CI / More Go tests (push) Has been cancelled
CI / Go tests for 32-bit x86 (push) Has been cancelled
CI / Go tests for Prometheus upgrades and downgrades (push) Has been cancelled
CI / Go tests with previous Go version (push) Has been cancelled
CI / UI tests (push) Has been cancelled
CI / Go tests on Windows (push) Has been cancelled
CI / Mixins tests (push) Has been cancelled
CI / Compliance testing (push) Has been cancelled
CI / Check generated parser (push) Has been cancelled
CI / golangci-lint (push) Has been cancelled
CI / fuzzing (push) Has been cancelled
CI / codeql (push) Has been cancelled
CI / Build Prometheus for common architectures (push) Has been cancelled
CI / Build Prometheus for all architectures (push) Has been cancelled
CI / Report status of build Prometheus for all architectures (push) Has been cancelled
CI / Publish main branch artifacts (push) Has been cancelled
CI / Publish release artefacts (push) Has been cancelled
CI / Publish UI on npm Registry (push) Has been cancelled
chore: prepare release 3.13
2026-07-01 12:43:14 +02:00
George Krajcsovits
bd96185f37
chore: prepare 3.13.0-rc.1 release ( #19001 )
...
CI / Go tests (push) Has been cancelled
CI / More Go tests (push) Has been cancelled
CI / Go tests for 32-bit x86 (push) Has been cancelled
CI / Go tests for Prometheus upgrades and downgrades (push) Has been cancelled
CI / Go tests with previous Go version (push) Has been cancelled
CI / UI tests (push) Has been cancelled
CI / Go tests on Windows (push) Has been cancelled
CI / Mixins tests (push) Has been cancelled
CI / Compliance testing (push) Has been cancelled
CI / Check generated parser (push) Has been cancelled
CI / golangci-lint (push) Has been cancelled
CI / fuzzing (push) Has been cancelled
CI / codeql (push) Has been cancelled
CI / Build Prometheus for common architectures (push) Has been cancelled
CI / Build Prometheus for all architectures (push) Has been cancelled
CI / Report status of build Prometheus for all architectures (push) Has been cancelled
CI / Publish main branch artifacts (push) Has been cancelled
CI / Publish release artefacts (push) Has been cancelled
CI / Publish UI on npm Registry (push) Has been cancelled
Bump VERSION to 3.13.0-rc.1 and add the 3.13.0-rc.1 CHANGELOG section.
Signed-off-by: György Krajcsovits <gyorgy.krajcsovits@grafana.com>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-22 16:44:30 +02:00
György Krajcsovits
0e5b0eedfc
run make ui-bump-version
...
Signed-off-by: György Krajcsovits <gyorgy.krajcsovits@grafana.com>
2026-06-19 14:08:30 +02:00
Julien Pivotto
97295889e3
ui: use react-app-rewired to dedupe codemirror packages
...
The local codemirror-promql is consumed via pnpm's link: protocol and
carries its own node_modules, so its @codemirror/* and @lezer/* imports
resolve to a separate copy from react-app. That loads two instances of
@codemirror/state and breaks instanceof checks at runtime.
Add react-app-rewired with a config-overrides.js that aliases these
packages to react-app's single copy and drops CRA's ModuleScopePlugin
so the aliases take effect.
Signed-off-by: Julien Pivotto <291750+roidelapluie@users.noreply.github.com>
2026-06-19 12:59:52 +02:00
Julien
18fa2d8b8e
ui: link react-app to local codemirror-promql instead of an npm version ( #18967 )
...
CI / Go tests (push) Waiting to run
CI / More Go tests (push) Waiting to run
CI / Go tests for 32-bit x86 (push) Waiting to run
CI / Go tests for Prometheus upgrades and downgrades (push) Waiting to run
CI / Go tests with previous Go version (push) Waiting to run
CI / UI tests (push) Waiting to run
CI / Go tests on Windows (push) Waiting to run
CI / Mixins tests (push) Waiting to run
CI / Compliance testing (push) Waiting to run
CI / Build Prometheus for common architectures (push) Waiting to run
CI / Build Prometheus for all architectures (push) Waiting to run
CI / Report status of build Prometheus for all architectures (push) Blocked by required conditions
CI / Check generated parser (push) Waiting to run
CI / golangci-lint (push) Waiting to run
CI / fuzzing (push) Waiting to run
CI / codeql (push) Waiting to run
CI / Publish main branch artifacts (push) Blocked by required conditions
CI / Publish release artefacts (push) Blocked by required conditions
CI / Publish UI on npm Registry (push) Blocked by required conditions
react-app is not part of the pnpm workspace, so it pulled
@prometheus-io/codemirror-promql from the npm registry by exact version.
During a release, `make ui-bump-version` rewrote that pin to the new,
not-yet-published version, so the subsequent `pnpm install` failed with
ERR_PNPM_NO_MATCHING_VERSION.
Use pnpm's "link:" protocol to consume the locally built workspace package
instead. There is no version to publish or rewrite, react-app always builds
against the in-tree codemirror-promql, and its lockfile stays isolated (which
is why react-app was separated from the workspace in the first place).
build_ui.sh --all already builds the modules before react-app, so dist/ is
present at build time; `make ui-build` passes. Drop the dependency-rewriting
sed from ui_release.sh's bumpVersion accordingly.
Signed-off-by: Julien Pivotto <291750+roidelapluie@users.noreply.github.com>
2026-06-19 10:00:48 +02:00
George Krajcsovits
6d0ecf7344
ui: update npm dependencies for 3.13 release ( #18950 )
...
Run `make update-npm-deps` to bump UI dependencies to their latest minor
versions (mantine 9.3.1, codemirror, typescript-eslint, rollup, prettier,
sass, sanitize-html and others).
The minor bump pulled in @codemirror/view 6.43.1 for the workspace's direct
dependencies while sibling @codemirror/* packages still resolved 6.43.0,
leaving two copies in the tree and breaking the TypeScript build (CodeMirror
requires a single @codemirror/view instance). Run `pnpm dedupe` in web/ui and
web/ui/react-app to collapse it to a single 6.43.1, which also removes other
duplicated subtrees. `make ui-build` passes.
Signed-off-by: György Krajcsovits <gyorgy.krajcsovits@grafana.com>
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-17 16:58:09 +02:00
Julien Pivotto
53cde1b1be
chore(UI): Move to pnpm
...
Switch the UI workspace from npm to pnpm. Declare jest as a direct
devDependency in lezer-promql (pnpm's strict isolation requires every
binary to be an explicit dependency), fix the moduleNameMapper path in
codemirror-promql's jest config to reflect pnpm's per-package
node_modules layout, and add a localStorage mock to mantine-ui's test
setup so module-level Redux slice initializers work under Node.js v22+,
which pre-defines localStorage as undefined on globalThis.
Signed-off-by: Julien Pivotto <291750+roidelapluie@users.noreply.github.com>
2026-06-11 14:13:28 +02:00
Oindrila Khan
2625721eba
ui: update jsonpath to 1.3.0
...
This addresses CVE-2025-61140 and CVE-2025-1615 by updating jsonpath to a patched version.
Signed-off-by: Oindrila Khan <oindrilakha12@gmail.com>
2026-06-03 14:54:21 +05:30
renovate[bot]
e1429b4f68
Update dependency sanitize-html to v2.17.4 [SECURITY] ( #18697 )
...
* chore(deps): update dependency sanitize-html to v2.17.4 [security]
---------
Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com>
2026-05-23 12:21:32 +00:00
Julius Volz
38f23b9075
ui: fix stored XSS in old UI heatmap chart tick labels
...
This fixes the stored XSS as described in:
https://github.com/prometheus/prometheus/security/advisories/GHSA-fw8g-cg8f-9j28
Signed-off-by: Julius Volz <julius.volz@gmail.com>
Signed-off-by: Julien Pivotto <291750+roidelapluie@users.noreply.github.com>
2026-04-27 12:28:10 +02:00
Julius Volz
fddbccf79b
UI: Fix stored XSS via unescaped metric names and labels
...
Metric names, label names, and label values containing HTML/JavaScript were
inserted into `innerHTML` without escaping in several UI code paths, enabling
stored XSS attacks via crafted metrics. This mostly becomes exploitable in
Prometheus 3.x, since it defaults to allowing any UTF-8 characters in metric
and label names.
Apply `escapeHTML()` to all user-controlled values before innerHTML
insertion in:
* Mantine UI chart tooltip
* Old React UI chart tooltip
* Old React UI metrics explorer fuzzy search
* Old React UI heatmap tooltip
See https://github.com/prometheus/prometheus/security/advisories/GHSA-vffh-x6r8-xx99
Signed-off-by: Julius Volz <julius.volz@gmail.com>
2026-04-10 11:25:03 +02:00
Ganesh Vernekar
213bc8e538
UI: Move HistoryCompleteStrategy into its own file and fix lint
...
Signed-off-by: Ganesh Vernekar <ganesh.vernekar@reddit.com>
2026-02-05 14:48:47 -08:00
김민영
035952bc8b
refactor(ui): Remove explicit any from globals
...
Signed-off-by: 김민영 <rlaalsdud41@naver.com>
2026-01-11 00:38:57 +09:00
Julius Volz
1b7fa3e76d
Migrate Mantine v7 -> v8 ( #17402 )
...
I followed the migration guide at https://mantine.dev/guides/7x-to-8x/ to
add back both manual timezone handling in the time input, as well as syntax
highlighting in the config code box.
Signed-off-by: Julius Volz <julius.volz@gmail.com>
2025-11-06 09:38:27 +01:00
Akshat Sinha
ce175905a5
fix(react-app): correct createExpressionLink query for /graph links
...
Ensure params are joined with & and remove trailing dot to restore working links from Alerts/Rules to Graph.
Signed-off-by: Akshat Sinha <akshatsinhasramhardy@gmail.com>
2025-10-19 04:08:31 +05:30
Björn Rabenstein
32b471ed47
Merge pull request #16417 from amanycodes/histogram-helper-test
...
ui-tests: Add Unit tests to Native histogram and its helpers.
2025-06-18 20:11:23 +02:00
tongjicoder
4fe20fa340
chore: fix some comments
...
Signed-off-by: tongjicoder <tongjicoder@icloud.com>
2025-05-27 23:14:41 +08:00
Jan-Otto Kröpke
7789ef27c8
Upgraded npm dependencies pre 3.4.0-rc.0 ( #16493 )
2025-04-29 17:19:23 +02:00
amanycodes
70eb58219a
added unit tests to HistogramHelpers.ts and HistogramChart.ts
...
Signed-off-by: amanycodes <amanycodes@gmail.com>
2025-04-09 20:18:46 +05:30
dependabot[bot]
bd874a50f2
chore(deps): bump @babel/runtime in /web/ui/react-app
...
Bumps [@babel/runtime](https://github.com/babel/babel/tree/HEAD/packages/babel-runtime ) from 7.24.8 to 7.27.0.
- [Release notes](https://github.com/babel/babel/releases )
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md )
- [Commits](https://github.com/babel/babel/commits/v7.27.0/packages/babel-runtime )
---
updated-dependencies:
- dependency-name: "@babel/runtime"
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-04-01 14:16:24 +00:00
dependabot[bot]
a5a4949f02
chore(deps): bump sass from 1.85.1 to 1.86.0 in /web/ui/react-app
...
Bumps [sass](https://github.com/sass/dart-sass ) from 1.85.1 to 1.86.0.
- [Release notes](https://github.com/sass/dart-sass/releases )
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md )
- [Commits](https://github.com/sass/dart-sass/compare/1.85.1...1.86.0 )
---
updated-dependencies:
- dependency-name: sass
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-03-23 11:00:10 +00:00
github-actions[bot]
e872cd1b6f
Merge pull request #16267 from prometheus/dependabot/npm_and_yarn/web/ui/react-app/codemirror/language-6.11.0
...
chore(deps): bump @codemirror/language from 6.10.8 to 6.11.0 in /web/ui/react-app
2025-03-23 10:22:14 +00:00
github-actions[bot]
e8d04eacfc
Merge pull request #16272 from prometheus/dependabot/npm_and_yarn/web/ui/react-app/sanitize-html-2.15.0
...
chore(deps): bump sanitize-html from 2.14.0 to 2.15.0 in /web/ui/react-app
2025-03-23 11:21:16 +01:00
github-actions[bot]
df7f0a97ed
Merge pull request #16276 from prometheus/dependabot/npm_and_yarn/web/ui/react-app/downshift-9.0.9
...
chore(deps): bump downshift from 9.0.8 to 9.0.9 in /web/ui/react-app
2025-03-23 11:20:47 +01:00
github-actions[bot]
01dd6c7f09
Merge pull request #16278 from prometheus/dependabot/npm_and_yarn/web/ui/react-app/prettier-3.5.3
...
chore(deps-dev): bump prettier from 3.5.2 to 3.5.3 in /web/ui/react-app
2025-03-23 11:20:32 +01:00
github-actions[bot]
57c7bf499a
Merge pull request #16281 from prometheus/dependabot/npm_and_yarn/web/ui/react-app/codemirror/view-6.36.4
...
chore(deps): bump @codemirror/view from 6.36.3 to 6.36.4 in /web/ui/react-app
2025-03-23 11:18:30 +01:00
github-actions[bot]
464ae442f9
Merge pull request #16290 from prometheus/dependabot/npm_and_yarn/web/ui/react-app/sinon-19.0.4
...
chore(deps-dev): bump sinon from 19.0.2 to 19.0.4 in /web/ui/react-app
2025-03-23 11:18:11 +01:00
dependabot[bot]
65f518386b
chore(deps-dev): bump sinon from 19.0.2 to 19.0.4 in /web/ui/react-app
...
Bumps [sinon](https://github.com/sinonjs/sinon ) from 19.0.2 to 19.0.4.
- [Release notes](https://github.com/sinonjs/sinon/releases )
- [Changelog](https://github.com/sinonjs/sinon/blob/main/docs/changelog.md )
- [Commits](https://github.com/sinonjs/sinon/compare/v19.0.2...v19.0.4 )
---
updated-dependencies:
- dependency-name: sinon
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-03-22 13:06:06 +00:00
dependabot[bot]
692259ee58
chore(deps-dev): bump @types/node in /web/ui/react-app
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 22.10.3 to 22.13.11.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-03-22 13:05:55 +00:00
dependabot[bot]
c747407ac9
chore(deps): bump @codemirror/view in /web/ui/react-app
...
Bumps [@codemirror/view](https://github.com/codemirror/view ) from 6.36.3 to 6.36.4.
- [Changelog](https://github.com/codemirror/view/blob/main/CHANGELOG.md )
- [Commits](https://github.com/codemirror/view/compare/6.36.3...6.36.4 )
---
updated-dependencies:
- dependency-name: "@codemirror/view"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-03-22 13:05:37 +00:00
dependabot[bot]
7f1cff1e9c
chore(deps-dev): bump prettier from 3.5.2 to 3.5.3 in /web/ui/react-app
...
Bumps [prettier](https://github.com/prettier/prettier ) from 3.5.2 to 3.5.3.
- [Release notes](https://github.com/prettier/prettier/releases )
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md )
- [Commits](https://github.com/prettier/prettier/compare/3.5.2...3.5.3 )
---
updated-dependencies:
- dependency-name: prettier
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-03-22 13:05:23 +00:00
dependabot[bot]
5184709558
chore(deps): bump downshift from 9.0.8 to 9.0.9 in /web/ui/react-app
...
Bumps [downshift](https://github.com/downshift-js/downshift ) from 9.0.8 to 9.0.9.
- [Release notes](https://github.com/downshift-js/downshift/releases )
- [Changelog](https://github.com/downshift-js/downshift/blob/master/CHANGELOG.md )
- [Commits](https://github.com/downshift-js/downshift/compare/v9.0.8...v9.0.9 )
---
updated-dependencies:
- dependency-name: downshift
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-03-22 13:05:12 +00:00
dependabot[bot]
d3ec2b9739
chore(deps): bump sanitize-html in /web/ui/react-app
...
Bumps [sanitize-html](https://github.com/apostrophecms/sanitize-html ) from 2.14.0 to 2.15.0.
- [Changelog](https://github.com/apostrophecms/sanitize-html/blob/main/CHANGELOG.md )
- [Commits](https://github.com/apostrophecms/sanitize-html/compare/2.14.0...2.15.0 )
---
updated-dependencies:
- dependency-name: sanitize-html
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-03-22 13:04:50 +00:00
dependabot[bot]
c30037ddaf
chore(deps): bump @codemirror/language in /web/ui/react-app
...
Bumps [@codemirror/language](https://github.com/codemirror/language ) from 6.10.8 to 6.11.0.
- [Changelog](https://github.com/codemirror/language/blob/main/CHANGELOG.md )
- [Commits](https://github.com/codemirror/language/compare/6.10.8...6.11.0 )
---
updated-dependencies:
- dependency-name: "@codemirror/language"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-03-22 13:04:29 +00:00
dependabot[bot]
4e6605bf3d
chore(deps): bump @codemirror/state in /web/ui/react-app
...
Bumps [@codemirror/state](https://github.com/codemirror/state ) from 6.5.0 to 6.5.2.
- [Changelog](https://github.com/codemirror/state/blob/main/CHANGELOG.md )
- [Commits](https://github.com/codemirror/state/compare/6.5.0...6.5.2 )
---
updated-dependencies:
- dependency-name: "@codemirror/state"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-03-07 16:08:45 +00:00
dependabot[bot]
604800e0c5
chore(deps-dev): bump eslint-config-prettier in /web/ui/react-app ( #16143 )
...
Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier ) from 9.1.0 to 10.0.2.
- [Release notes](https://github.com/prettier/eslint-config-prettier/releases )
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md )
- [Commits](https://github.com/prettier/eslint-config-prettier/compare/v9.1.0...v10.0.2 )
---
updated-dependencies:
- dependency-name: eslint-config-prettier
dependency-type: direct:development
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-07 15:49:59 +00:00
github-actions[bot]
cd32d0544d
Merge pull request #16151 from prometheus/dependabot/npm_and_yarn/web/ui/react-app/codemirror/autocomplete-6.18.6
...
chore(deps): bump @codemirror/autocomplete from 6.18.4 to 6.18.6 in /web/ui/react-app
2025-03-07 15:49:49 +00:00
github-actions[bot]
754f730b80
Merge pull request #16147 from prometheus/dependabot/npm_and_yarn/web/ui/react-app/ts-jest-29.2.6
...
chore(deps-dev): bump ts-jest from 29.2.5 to 29.2.6 in /web/ui/react-app
2025-03-07 15:49:37 +00:00
github-actions[bot]
642fdb3163
Merge pull request #16150 from prometheus/dependabot/npm_and_yarn/web/ui/react-app/prometheus-io/codemirror-promql-0.302.1
...
chore(deps): bump @prometheus-io/codemirror-promql from 0.300.1 to 0.302.1 in /web/ui/react-app
2025-03-07 15:30:43 +00:00
dependabot[bot]
d1c405754f
chore(deps): bump @codemirror/autocomplete in /web/ui/react-app
...
Bumps [@codemirror/autocomplete](https://github.com/codemirror/autocomplete ) from 6.18.4 to 6.18.6.
- [Changelog](https://github.com/codemirror/autocomplete/blob/main/CHANGELOG.md )
- [Commits](https://github.com/codemirror/autocomplete/compare/6.18.4...6.18.6 )
---
updated-dependencies:
- dependency-name: "@codemirror/autocomplete"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-03-07 15:08:52 +00:00
dependabot[bot]
2ea7caa1f5
chore(deps-dev): bump ts-jest from 29.2.5 to 29.2.6 in /web/ui/react-app
...
Bumps [ts-jest](https://github.com/kulshekhar/ts-jest ) from 29.2.5 to 29.2.6.
- [Release notes](https://github.com/kulshekhar/ts-jest/releases )
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md )
- [Commits](https://github.com/kulshekhar/ts-jest/compare/v29.2.5...v29.2.6 )
---
updated-dependencies:
- dependency-name: ts-jest
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-03-07 15:02:12 +00:00
github-actions[bot]
d053ed6726
Merge pull request #16141 from prometheus/dependabot/npm_and_yarn/web/ui/react-app/codemirror/search-6.5.10
...
chore(deps): bump @codemirror/search from 6.5.8 to 6.5.10 in /web/ui/react-app
2025-03-07 15:51:25 +01:00
github-actions[bot]
514d88269c
Merge pull request #16146 from prometheus/dependabot/npm_and_yarn/web/ui/react-app/codemirror/view-6.36.3
...
chore(deps): bump @codemirror/view from 6.36.1 to 6.36.3 in /web/ui/react-app
2025-03-07 15:49:22 +01:00
github-actions[bot]
bb57640c3b
Merge pull request #16144 from prometheus/dependabot/npm_and_yarn/web/ui/react-app/sass-1.85.1
...
chore(deps): bump sass from 1.83.0 to 1.85.1 in /web/ui/react-app
2025-03-07 15:49:07 +01:00
github-actions[bot]
dabb3e898d
Merge pull request #16142 from prometheus/dependabot/npm_and_yarn/web/ui/react-app/types/sinon-17.0.4
...
chore(deps-dev): bump @types/sinon from 17.0.3 to 17.0.4 in /web/ui/react-app
2025-03-07 15:48:56 +01:00
dependabot[bot]
6934817b72
chore(deps): bump @prometheus-io/codemirror-promql in /web/ui/react-app
...
Bumps [@prometheus-io/codemirror-promql](https://github.com/prometheus/prometheus ) from 0.300.1 to 0.302.1.
- [Release notes](https://github.com/prometheus/prometheus/releases )
- [Changelog](https://github.com/prometheus/prometheus/blob/main/CHANGELOG.md )
- [Commits](https://github.com/prometheus/prometheus/compare/v0.300.1...v0.302.1 )
---
updated-dependencies:
- dependency-name: "@prometheus-io/codemirror-promql"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
2025-03-07 14:47:05 +00:00
dependabot[bot]
55d122130f
chore(deps): bump moment-timezone in /web/ui/react-app ( #15936 )
...
Bumps [moment-timezone](https://github.com/moment/moment-timezone ) from 0.5.46 to 0.5.47.
- [Release notes](https://github.com/moment/moment-timezone/releases )
- [Changelog](https://github.com/moment/moment-timezone/blob/develop/changelog.md )
- [Commits](https://github.com/moment/moment-timezone/compare/0.5.46...0.5.47 )
---
updated-dependencies:
- dependency-name: moment-timezone
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-07 15:46:36 +01:00
dependabot[bot]
41cf977d05
chore(deps): bump @codemirror/commands in /web/ui/react-app ( #15927 )
...
Bumps [@codemirror/commands](https://github.com/codemirror/commands ) from 6.7.1 to 6.8.0.
- [Changelog](https://github.com/codemirror/commands/blob/main/CHANGELOG.md )
- [Commits](https://github.com/codemirror/commands/compare/6.7.1...6.8.0 )
---
updated-dependencies:
- dependency-name: "@codemirror/commands"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-07 15:46:32 +01:00
dependabot[bot]
c36c96beca
chore(deps-dev): bump eslint-plugin-prettier in /web/ui/react-app ( #15925 )
...
Bumps [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier ) from 5.2.1 to 5.2.3.
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases )
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md )
- [Commits](https://github.com/prettier/eslint-plugin-prettier/compare/v5.2.1...v5.2.3 )
---
updated-dependencies:
- dependency-name: eslint-plugin-prettier
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-07 15:45:36 +01:00