Accepting request 1273169 from server:monitoring
OBS-URL: https://build.opensuse.org/request/show/1273169 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/golang-github-prometheus-prometheus?expand=0&rev=56
This commit is contained in:
4
_service
4
_service
@@ -4,7 +4,7 @@
|
||||
<param name="scm">git</param>
|
||||
<param name="exclude">.git</param>
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="revision">v3.2.1</param>
|
||||
<param name="revision">v3.3.0</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
<param name="match-tag">v3*</param>
|
||||
</service>
|
||||
@@ -13,6 +13,6 @@
|
||||
<param name="compression">gz</param>
|
||||
</service>
|
||||
<service name="go_modules" mode="manual">
|
||||
<param name="archive">prometheus-3.2.1.tar.gz</param>
|
||||
<param name="archive">prometheus-3.3.0.tar.gz</param>
|
||||
</service>
|
||||
</services>
|
||||
|
@@ -1,3 +1,71 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Apr 18 15:09:26 UTC 2025 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
|
||||
|
||||
- update to 3.3.0:
|
||||
* [FEATURE] PromQL: Implement idelta() and irate() for native
|
||||
histograms. #15853
|
||||
* [ENHANCEMENT] Scaleway SD: Add
|
||||
__meta_scaleway_instance_public_ipv4_addresses and
|
||||
__meta_scaleway_instance_public_ipv6_addresses labels. #14228
|
||||
* [ENHANCEMENT] TSDB: Reduce locking while reloading blocks.
|
||||
#12920
|
||||
* [ENHANCEMENT] PromQL: Allow UTF-8 labels in label_replace().
|
||||
#15974
|
||||
* [ENHANCEMENT] Promtool: tsdb create-blocks-from openmetrics can
|
||||
now read from a Pipe. #16011
|
||||
* [ENHANCEMENT] Rules: Add support for anchors and aliases in
|
||||
rule files. #14957
|
||||
* [ENHANCEMENT] Dockerfile: Make /prometheus writable. #16073
|
||||
* [ENHANCEMENT] API: Include scrape pool name for dropped targets
|
||||
in /api/v1/targets. #16085
|
||||
* [ENHANCEMENT] UI: Improve time formatting and copying of
|
||||
selectors. #15999 #16165
|
||||
* [ENHANCEMENT] UI: Bring back vertical grid lines and graph
|
||||
legend series toggling instructions. #16163 #16164
|
||||
* [ENHANCEMENT] Mixin: The cluster label can be customized using
|
||||
clusterLabel. #15826
|
||||
* [PERF] TSDB: Optimize some operations on head chunks by taking
|
||||
shortcuts. #12659
|
||||
* [PERF] TSDB & Agent: Reduce memory footprint during WL replay.
|
||||
#15778
|
||||
* [PERF] Remote-Write: Reduce memory footprint during WAL replay.
|
||||
#16197
|
||||
* [PERF] API: Reduce memory footprint during header parsing.
|
||||
#16001
|
||||
* [PERF] Rules: Improve dependency evaluation, enabling better
|
||||
concurrency. #16039
|
||||
* [PERF] Scraping: Improve scraping performance for native
|
||||
histograms. #15731
|
||||
* [PERF] Scraping: Improve parsing of created timestamps. #16072
|
||||
* [BUGFIX] Scraping: Bump cache iteration after error to avoid
|
||||
false duplicate detections. #16174
|
||||
* [BUGFIX] Scraping: Skip native histograms series when ingestion
|
||||
is disabled. #16218
|
||||
* [BUGFIX] PromQL: Fix counter reset detection for native
|
||||
histograms. #15902 #15987
|
||||
* [BUGFIX] PromQL: Fix inconsistent behavior with an empty range.
|
||||
#15970
|
||||
* [BUGFIX] PromQL: Fix inconsistent annotation in
|
||||
quantile_over_time(). #16018
|
||||
* [BUGFIX] PromQL: Prevent label_join() from producing
|
||||
duplicates. #15975
|
||||
* [BUGFIX] PromQL: Ignore native histograms in scalar(), sort()
|
||||
and sort_desc(). #15964
|
||||
* [BUGFIX] PromQL: Fix annotations for binary operations between
|
||||
incompatible native histograms. #15895
|
||||
* [BUGFIX] Alerting: Consider alert relabeling when deciding
|
||||
whether alerts are dropped. #15979
|
||||
* [BUGFIX] Config: Set GoGC to the default value in case of an
|
||||
empty configuration. #16052
|
||||
* [BUGFIX] TSDB: Fix unknown series errors and potential data
|
||||
loss during WAL replay when inactive series are removed from
|
||||
the head and reappear before the next WAL checkpoint. #16060
|
||||
* [BUGFIX] Scaleway SD: The public IP will no longer be set to
|
||||
__meta_meta_scaleway_instance_public_ipv4 if it is an IPv6
|
||||
address. #14228
|
||||
* [BUGFIX] UI: Display the correct value of Alerting rules'
|
||||
keep_firing_for. #16211
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 26 09:58:56 UTC 2025 - Johannes Kastl <opensuse_buildservice@ojkastl.de>
|
||||
|
||||
|
@@ -27,7 +27,7 @@
|
||||
%endif
|
||||
|
||||
Name: golang-github-prometheus-prometheus
|
||||
Version: 3.2.1
|
||||
Version: 3.3.0
|
||||
Release: 0
|
||||
Summary: The Prometheus monitoring system and time series database
|
||||
License: Apache-2.0
|
||||
|
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ab534b4cf418de419ac13d8c002161d66a4949b7b4c373b77fa8fd4f789cdae1
|
||||
size 95047
|
||||
oid sha256:718b365299444737f8cc9b23a300d3fd0cab5f7da00cba3bffee52628c3cb0f3
|
||||
size 80767
|
||||
|
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7465009f3971471513a9cbcb64f048d28950ed0e7a0502cac76e8a2734dcf9d8
|
||||
size 5130285
|
3
prometheus-3.3.0.tar.gz
Normal file
3
prometheus-3.3.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c6b52fb35b74e983b817ac3575964750735c05efd9479c8f6e93b3ec1414d269
|
||||
size 5161922
|
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4ed8c8eb1bd20f0a9e698f08672bce495fda4d82035ff6be26596d4a63d67eee
|
||||
size 15213959
|
||||
oid sha256:89d51cbf6299b1464907aec6c52a640db69113599b4e0d69cec6fcb827ffbfd6
|
||||
size 15406066
|
||||
|
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:24339e4224cec2a97feae2df0d7eb9d82633b8626cbb0692e4ca3dc2bd9cec85
|
||||
size 8631048
|
3
web-ui-3.3.0.tar.gz
Normal file
3
web-ui-3.3.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0762c711487a3e8d99b834702c6642def8a414a418b18d522606342eeb8446ed
|
||||
size 8633690
|
Reference in New Issue
Block a user