Commit Graph

3311 Commits

Author SHA1 Message Date
Ben Kochie d04ef60a16
Release v0.28.0-rc.0 (#4072)
* Release v0.28.0-rc.0

* [CHANGE] Templating errors in the SNS integration now return an error. #3531 #3879
* [FEATURE] Add a new Microsoft Teams integration based on Flows #4024
* [FEATURE] Add a new Rocket.Chat integration #3600
* [FEATURE] Add a new Jira integration #3590 #3931
* [FEATURE] Add support for `GOMEMLIMIT`, enable it via the feature flag `--enable-feature=auto-gomemlimit`. #3895
* [FEATURE] Add support for `GOMAXPROCS`, enable it via the feature flag `--enable-feature=auto-gomaxprocs`. #3837
* [FEATURE] Add support for limits of silences including the maximum number of active and pending silences, and the maximum size per silence (in bytes). You can use the flags `--silences.max-silences` and `--silences.max-silence-size-bytes` to set them accordingly #3852 #3862 #3866 #3885 #3886 #3877
* [FEATURE] Muted alerts now show whether they are suppressed or not in both the `/api/v2/alerts` endpoint and the Alertmanager UI. #3793 #3797 #3792
* [ENHANCEMENT] Add support for `content`, `username` and `avatar_url` in the Discord integration. `content` and `username` also support templating. #4007
* [ENHANCEMENT] Only invalidate the silences cache if a new silence is created or an existing silence replaced - should improve latency on both `GET api/v2/alerts` and `POST api/v2/alerts` API endpoint. #3961
* [ENHANCEMENT] Add image source label to Dockerfile. To get changelogs shown when using Renovate #4062
* [ENHANCEMENT] Build using go 1.23 #4071
* [ENHANCEMENT] Support setting a global SMTP TLS configuration. #3732
* [ENHANCEMENT] The setting `room_id` in the WebEx integration can now be templated to allow for dynamic room IDs. #3801
* [ENHANCEMENT] Enable setting `message_thread_id` for the Telegram integration. #3638
* [ENHANCEMENT] Support the `since` and `humanizeDuration` functions to templates. This means users can now format time to more human-readable text. #3863
* [ENHANCEMENT] Support the `date` and `tz` functions to templates. This means users can now format time in a specified format and also change the timezone to their specific locale. #3812
* [ENHANCEMENT] Latency metrics now support native histograms. #3737
* [BUGFIX] Fix the SMTP integration not correctly closing an SMTP submission, which may lead to unsuccessful dispatches being marked as successful. #4006
* [BUGFIX]  The `ParseMode` option is now set explicitly in the Telegram integration. If we don't HTML tags had not been parsed by default. #4027
* [BUGFIX] Fix a memory leak that was caused by updates silences continuously. #3930
* [BUGFIX] Fix hiding secret URLs when the URL is incorrect. #3887
* [BUGFIX] Fix a race condition in the alerts - it was more of a hypothetical race condition that could have occurred in the alert reception pipeline. #3648
* [BUGFIX] Fix a race condition in the alert delivery pipeline that would cause a firing alert that was delivered earlier to be deleted from the aggregation group when instead it should have been delivered again. #3826
* [BUGFIX] Fix version in APIv1 deprecation notice. #3815
* [BUGFIX] Fix crash errors when using `url_file` in the Webhook integration. #3800
* [BUGFIX] fix `Route.ID()` returns conflicting IDs. #3803
* [BUGFIX] Fix deadlock on the alerts memory store. #3715
* [BUGFIX] Fix `amtool template render` when using the default values. #3725
* [BUGFIX] Fix `webhook_url_file` for both the Discord and Microsoft Teams integrations. #3728 #3745

---------

Signed-off-by: SuperQ <superq@gmail.com>
Signed-off-by: gotjosh <josue.abreu@gmail.com>
Co-authored-by: gotjosh <josue.abreu@gmail.com>
2024-10-24 21:43:51 +01:00
Jeff Wong 95655dccb8
Discord notifier: Add username and avatar_url (#4081)
* Feat(discord):

Allow for custom username and avatar URLs to be set in discord notifications.

Add `username` and `avatar_url` to discord configuration, default empty string.

Re-implement #3821

Signed-off-by: Jeff Wong <awole20@gmail.com>

* Test the new fields

Signed-off-by: gotjosh <josue.abreu@gmail.com>

* These are not templeatable strings

Signed-off-by: gotjosh <josue.abreu@gmail.com>

---------

Signed-off-by: Jeff Wong <awole20@gmail.com>
Signed-off-by: gotjosh <josue.abreu@gmail.com>
Co-authored-by: gotjosh <josue.abreu@gmail.com>
2024-10-24 21:12:05 +01:00
gotjosh 615d5ffa30
Add a test for `Notify` of the Discord integration (#4082)
Just to ensure this works correclty as expected, I originally thought there was a bug with the shadowing of the `content` varible but there isn't - to avoid further confusion I have followed up on this document left by George: https://github.com/prometheus/alertmanager/pull/3555#discussion_r1398448423

Signed-off-by: gotjosh <josue.abreu@gmail.com>
2024-10-24 20:55:35 +01:00
Hottochelli 6b77acd166
Extend discord messages with content (#4007)
* Extend discord messages with content
Signed-off-by: Yevhen Sydorenko <mogoll92@gmail.com>

Signed-off-by: Yevhen Sydorenko <mogoll92@gmail.com>

* Updated configuration.md
Updated assets_vfsdata.go

Signed-off-by: Yevhen Sydorenko <mogoll92@gmail.com>

* Fix grammar

Signed-off-by: Yevhen Sydorenko <mogoll92@gmail.com>

* Updated vfsdata

Signed-off-by: Yevhen Sydorenko <mogoll92@gmail.com>

---------

Signed-off-by: Yevhen Sydorenko <mogoll92@gmail.com>
2024-10-23 19:27:01 +01:00
Ethan Hunter 69fe3f81fa
only increment silences version if a silence is added (#3961) 2024-10-23 17:27:35 +01:00
Kien Nguyen-Tuan a00a608355
fix(telegram): passing ParseMode when sending message (#4027)
Before commit [1], the message parse mode value is the same
as bot parse mode. Therefore, we don't need to pass ParseMode
whenever sending message. But after that commit, if we don't
pass SendOpts's ParseMode, the library will use the default
mode which is empty string "".

[1] 864bef4e4d

Signed-off-by: Kien Nguyen <kiennt2609@gmail.com>
2024-10-23 16:47:13 +01:00
George Robinson 5979dff9dc
Show muted alerts in Alert Groups API (#3797)
This commit updates /api/v2/alerts/groups to show if an alert is
suppressed from one or more active or mute time intervals. While
the muted by field can be found in /api/v2/alerts, it is not
used here because /api/v2/alerts does not take aggregation
or routing into consideration.

It also updates the UI to support filtering muted alerts via the
Muted checkbox.

Signed-off-by: George Robinson <george.robinson@grafana.com>
2024-10-23 16:42:21 +01:00
Christoph Maser 8572fe849c
feat: add rocketchat notifier (#3600)
* feat: add rocketchat notifier

Signed-off-by: Christoph Maser <christoph.maser+github@gmail.com>
Co-authored-by: George Robinson <george.robinson@grafana.com>

* Update notify/rocketchat/rocketchat.go

Co-authored-by: George Robinson <george.robinson@grafana.com>
Signed-off-by: gotjosh <josue.abreu@gmail.com>

---------

Signed-off-by: Christoph Maser <christoph.maser+github@gmail.com>
Signed-off-by: gotjosh <josue.abreu@gmail.com>
Co-authored-by: George Robinson <george.robinson@grafana.com>
Co-authored-by: gotjosh <josue.abreu@gmail.com>
2024-10-23 15:38:22 +01:00
PrometheusBot e6cb11ce4d
Update common Prometheus files (#4073)
Signed-off-by: prombot <prometheus-team@googlegroups.com>
2024-10-23 11:32:08 +01:00
Simon Schneider d4009f5e93
feat(3920): add msteamsv2 receiver (#4024)
* feat(3920): add msteamsv2 receiver

Signed-off-by: Simon Schneider <github@simon-schneider.eu>

* Don't use `fmt.Errorf` when there's no formatting required on `config/config.go`

Signed-off-by: gotjosh <josue.abreu@gmail.com>

* Don't use `fmt.Errorf` when there's no formatting required on `config/notifiers.go`

Signed-off-by: gotjosh <josue.abreu@gmail.com>

* Remove additional documentation steps

Signed-off-by: gotjosh <josue.abreu@gmail.com>

* add more info to the documentation

Signed-off-by: gotjosh <josue.abreu@gmail.com>

* Change documentation links to convey the message better

Signed-off-by: gotjosh <josue.abreu@gmail.com>

---------

Signed-off-by: Simon Schneider <github@simon-schneider.eu>
Signed-off-by: gotjosh <josue.abreu@gmail.com>
Co-authored-by: gotjosh <josue.abreu@gmail.com>
2024-10-23 11:31:27 +01:00
George Robinson 3d66826261
Finish replacing benbjohnson/clock with coder/quartz (#4002)
This commit finishes replacing benbjohnson/clock with coder/quartz
and removes it from go.mod.

Signed-off-by: George Robinson <george.robinson@grafana.com>
2024-10-22 16:52:54 +01:00
Ben Kochie 4fcb18ee41
Merge pull request #4046 from prometheus/dependabot/npm_and_yarn/ui/react-app/eslint-plugin-react-7.37.1
Bump eslint-plugin-react from 7.35.0 to 7.37.1 in /ui/react-app
2024-10-16 16:31:26 +02:00
Ben Kochie 2f5dde0a91
Merge pull request #4070 from prometheus/dependabot/npm_and_yarn/ui/react-app/typescript-5.6.3
Bump typescript from 4.9.5 to 5.6.3 in /ui/react-app
2024-10-16 16:31:08 +02:00
Ben Kochie 547ec00c83
Merge pull request #4062 from wuast94/patch-1
Add image source label to dockerfiles
2024-10-16 16:30:34 +02:00
Ben Kochie fc7b75cdbb
Merge pull request #4068 from prometheus/dependabot/go_modules/golang.org/x/net-0.30.0
Bump golang.org/x/net from 0.28.0 to 0.30.0
2024-10-16 16:05:04 +02:00
Simon Pasquier ea97e27526
Merge pull request #4071 from prometheus/superq/go_1.23
Update Go to 1.23
2024-10-16 16:01:23 +02:00
Ben Kochie 17f20eb3d2
Merge pull request #4030 from prometheus/repo_sync
Synchronize common files from prometheus/prometheus
2024-10-16 15:42:09 +02:00
SuperQ 42eb536084
Update Go to 1.23
* Update Go build to 1.23.
* Update minimum Go version to 1.22.

Signed-off-by: SuperQ <superq@gmail.com>
2024-10-16 15:41:50 +02:00
dependabot[bot] 2ef6ab857e
Bump golang.org/x/net from 0.28.0 to 0.30.0
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.28.0 to 0.30.0.
- [Commits](https://github.com/golang/net/compare/v0.28.0...v0.30.0)

---
updated-dependencies:
- dependency-name: golang.org/x/net
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-10-16 13:30:41 +00:00
Ben Kochie 521b15ffdd
Merge pull request #4060 from prometheus/dependabot/go_modules/github.com/prometheus/common-0.60.0
Bump github.com/prometheus/common from 0.57.0 to 0.60.0
2024-10-16 15:29:12 +02:00
dependabot[bot] 886ed01123
Bump github.com/prometheus/common from 0.57.0 to 0.60.0
Bumps [github.com/prometheus/common](https://github.com/prometheus/common) from 0.57.0 to 0.60.0.
- [Release notes](https://github.com/prometheus/common/releases)
- [Changelog](https://github.com/prometheus/common/blob/main/RELEASE.md)
- [Commits](https://github.com/prometheus/common/compare/v0.57.0...v0.60.0)

---
updated-dependencies:
- dependency-name: github.com/prometheus/common
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-10-16 12:59:41 +00:00
dependabot[bot] 9636d07967
Bump typescript from 4.9.5 to 5.6.3 in /ui/react-app
Bumps [typescript](https://github.com/microsoft/TypeScript) from 4.9.5 to 5.6.3.
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](https://github.com/microsoft/TypeScript/compare/v4.9.5...v5.6.3)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-10-16 12:58:48 +00:00
dependabot[bot] 4071eb9446
Bump eslint-plugin-react from 7.35.0 to 7.37.1 in /ui/react-app
Bumps [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) from 7.35.0 to 7.37.1.
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md)
- [Commits](https://github.com/jsx-eslint/eslint-plugin-react/compare/v7.35.0...v7.37.1)

---
updated-dependencies:
- dependency-name: eslint-plugin-react
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-10-16 12:58:37 +00:00
Ben Kochie 1b824b68b9
Merge branch 'main' into repo_sync 2024-10-16 14:58:19 +02:00
Ben Kochie cb36a123d1
Merge pull request #4049 from prometheus/dependabot/npm_and_yarn/ui/react-app/eslint-plugin-import-2.30.0
Bump eslint-plugin-import from 2.29.1 to 2.30.0 in /ui/react-app
2024-10-16 14:57:21 +02:00
Ben Kochie 0d00fecef4
Merge pull request #4019 from prometheus/dependabot/npm_and_yarn/ui/react-app/eslint-plugin-react-hooks-4.6.2
Bump eslint-plugin-react-hooks from 4.6.0 to 4.6.2 in /ui/react-app
2024-10-16 14:56:57 +02:00
Ben Kochie ea6333c3db
Merge pull request #4040 from prometheus/dependabot/npm_and_yarn/ui/react-app/webpack-dev-server-5.1.0
Bump webpack-dev-server from 5.0.4 to 5.1.0 in /ui/react-app
2024-10-16 14:56:42 +02:00
Ben Kochie 00022472c0
Merge pull request #4047 from prometheus/dependabot/npm_and_yarn/ui/react-app/webpack-5.95.0
Bump webpack from 5.94.0 to 5.95.0 in /ui/react-app
2024-10-16 14:56:27 +02:00
Ben Kochie 3c61c5684f
Merge pull request #4053 from prometheus/dependabot/go_modules/go.uber.org/automaxprocs-1.6.0
Bump go.uber.org/automaxprocs from 1.5.3 to 1.6.0
2024-10-16 14:56:09 +02:00
Ben Kochie 91b0b7ffd8
Merge pull request #4057 from prometheus/dependabot/go_modules/github.com/prometheus/client_golang-1.20.4
Bump github.com/prometheus/client_golang from 1.20.2 to 1.20.4
2024-10-16 14:55:40 +02:00
Marc 217dbeaf7a
Add image source label to dockerfiles
To get changelogs shown with Renovate a docker container has to add the source label described in the OCI Image Format Specification.

For reference: https://github.com/renovatebot/renovate/blob/main/lib/modules/datasource/docker/readme.md

Signed-off-by: Marc <github@wuast24.de>
2024-10-08 12:50:09 +02:00
dependabot[bot] 72021ad25d
Bump github.com/prometheus/client_golang from 1.20.2 to 1.20.4
Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) from 1.20.2 to 1.20.4.
- [Release notes](https://github.com/prometheus/client_golang/releases)
- [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prometheus/client_golang/compare/v1.20.2...v1.20.4)

---
updated-dependencies:
- dependency-name: github.com/prometheus/client_golang
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-10-01 15:51:53 +00:00
dependabot[bot] 909a8ad34c
Bump go.uber.org/automaxprocs from 1.5.3 to 1.6.0
Bumps [go.uber.org/automaxprocs](https://github.com/uber-go/automaxprocs) from 1.5.3 to 1.6.0.
- [Release notes](https://github.com/uber-go/automaxprocs/releases)
- [Changelog](https://github.com/uber-go/automaxprocs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/uber-go/automaxprocs/compare/v1.5.3...v1.6.0)

---
updated-dependencies:
- dependency-name: go.uber.org/automaxprocs
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-10-01 15:51:38 +00:00
dependabot[bot] bd2adb0c5e
Bump eslint-plugin-import from 2.29.1 to 2.30.0 in /ui/react-app
Bumps [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) from 2.29.1 to 2.30.0.
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](https://github.com/import-js/eslint-plugin-import/compare/v2.29.1...v2.30.0)

---
updated-dependencies:
- dependency-name: eslint-plugin-import
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-10-01 15:07:43 +00:00
dependabot[bot] 99500f00a6
Bump webpack from 5.94.0 to 5.95.0 in /ui/react-app
Bumps [webpack](https://github.com/webpack/webpack) from 5.94.0 to 5.95.0.
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](https://github.com/webpack/webpack/compare/v5.94.0...v5.95.0)

---
updated-dependencies:
- dependency-name: webpack
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-10-01 15:07:27 +00:00
dependabot[bot] 5479f66f77
Bump webpack-dev-server from 5.0.4 to 5.1.0 in /ui/react-app
Bumps [webpack-dev-server](https://github.com/webpack/webpack-dev-server) from 5.0.4 to 5.1.0.
- [Release notes](https://github.com/webpack/webpack-dev-server/releases)
- [Changelog](https://github.com/webpack/webpack-dev-server/blob/master/CHANGELOG.md)
- [Commits](https://github.com/webpack/webpack-dev-server/compare/v5.0.4...v5.1.0)

---
updated-dependencies:
- dependency-name: webpack-dev-server
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-10-01 15:06:28 +00:00
Marco Molteni e149260220
docs: clarify route:mute_time_intervals (#4003)
It was referring to itself, maybe because of the deprecated homonym
global:mute_time_intervals ?

Signed-off-by: Marco Molteni <marco.molteni@pix4d.com>
2024-09-23 10:49:16 +01:00
prombot be254f39e3 Update common Prometheus files
Signed-off-by: prombot <prometheus-team@googlegroups.com>
2024-09-17 17:47:53 +00:00
PrometheusBot e9904f93a7
Update common Prometheus files (#4022)
Signed-off-by: prombot <prometheus-team@googlegroups.com>
2024-09-11 12:01:54 +02:00
dependabot[bot] d19cb66c7c
Bump eslint-plugin-react-hooks from 4.6.0 to 4.6.2 in /ui/react-app
Bumps [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) from 4.6.0 to 4.6.2.
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/eslint-plugin-react-hooks)

---
updated-dependencies:
- dependency-name: eslint-plugin-react-hooks
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-09-06 14:57:49 +00:00
Simon Pasquier ccc1ed914d
Merge pull request #4015 from prometheus/dependabot/npm_and_yarn/ui/react-app/eslint-plugin-prettier-5.2.1
Bump eslint-plugin-prettier from 5.1.3 to 5.2.1 in /ui/react-app
2024-09-06 16:56:29 +02:00
Simon Pasquier 3d334a07fc
Merge pull request #4017 from prometheus/dependabot/npm_and_yarn/ui/react-app/webpack-5.94.0
Bump webpack from 5.93.0 to 5.94.0 in /ui/react-app
2024-09-06 16:49:22 +02:00
Simon Pasquier a6df704408
Merge pull request #4010 from prometheus/dependabot/go_modules/github.com/prometheus/common-0.57.0
Bump github.com/prometheus/common from 0.55.0 to 0.57.0
2024-09-02 11:21:38 +02:00
dependabot[bot] 1d5cb515f1
Bump github.com/prometheus/common from 0.55.0 to 0.57.0
Bumps [github.com/prometheus/common](https://github.com/prometheus/common) from 0.55.0 to 0.57.0.
- [Release notes](https://github.com/prometheus/common/releases)
- [Changelog](https://github.com/prometheus/common/blob/main/RELEASE.md)
- [Commits](https://github.com/prometheus/common/compare/v0.55.0...v0.57.0)

---
updated-dependencies:
- dependency-name: github.com/prometheus/common
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-09-02 08:50:57 +00:00
Simon Pasquier d71da3b23d
Merge pull request #4011 from prometheus/dependabot/go_modules/github.com/rs/cors-1.11.1
Bump github.com/rs/cors from 1.11.0 to 1.11.1
2024-09-02 10:50:03 +02:00
Simon Pasquier de545e8e86
Merge pull request #4009 from prometheus/dependabot/go_modules/github.com/prometheus/client_golang-1.20.2
Bump github.com/prometheus/client_golang from 1.20.1 to 1.20.2
2024-09-02 10:49:32 +02:00
dependabot[bot] d24499cab5
Bump webpack from 5.93.0 to 5.94.0 in /ui/react-app
Bumps [webpack](https://github.com/webpack/webpack) from 5.93.0 to 5.94.0.
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](https://github.com/webpack/webpack/compare/v5.93.0...v5.94.0)

---
updated-dependencies:
- dependency-name: webpack
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-09-01 15:40:35 +00:00
dependabot[bot] 626b61a601
Bump eslint-plugin-prettier from 5.1.3 to 5.2.1 in /ui/react-app
Bumps [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) from 5.1.3 to 5.2.1.
- [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.1.3...v5.2.1)

---
updated-dependencies:
- dependency-name: eslint-plugin-prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-09-01 15:40:18 +00:00
dependabot[bot] 2c0801cb49
Bump github.com/rs/cors from 1.11.0 to 1.11.1
Bumps [github.com/rs/cors](https://github.com/rs/cors) from 1.11.0 to 1.11.1.
- [Commits](https://github.com/rs/cors/compare/v1.11.0...v1.11.1)

---
updated-dependencies:
- dependency-name: github.com/rs/cors
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-09-01 15:27:26 +00:00
dependabot[bot] 94b25008d2
Bump github.com/prometheus/client_golang from 1.20.1 to 1.20.2
Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) from 1.20.1 to 1.20.2.
- [Release notes](https://github.com/prometheus/client_golang/releases)
- [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prometheus/client_golang/compare/v1.20.1...v1.20.2)

---
updated-dependencies:
- dependency-name: github.com/prometheus/client_golang
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-09-01 15:27:17 +00:00