diff --git a/0001-Do-not-force-the-pure-Go-name-resolver.patch b/0001-Do-not-force-the-pure-Go-name-resolver.patch index 16aaf9c..25f6cb1 100644 --- a/0001-Do-not-force-the-pure-Go-name-resolver.patch +++ b/0001-Do-not-force-the-pure-Go-name-resolver.patch @@ -1,4 +1,4 @@ -From abe26292de2c69a14aa223d2ba866779e63d79cd Mon Sep 17 00:00:00 2001 +From 1c355d58cf9c1d9d6aba110a61cea4a56c9c03a2 Mon Sep 17 00:00:00 2001 From: Jan Fajerski Date: Fri, 8 Feb 2019 09:17:06 +0100 Subject: [PATCH] Do not force the pure Go name resolver @@ -16,7 +16,7 @@ Signed-off-by: Johannes Kastl 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.promu.yml b/.promu.yml -index 0aa51d6d3..06c9c579d 100644 +index 699a7fa58..bbf32c87a 100644 --- a/.promu.yml +++ b/.promu.yml @@ -12,12 +12,12 @@ build: diff --git a/0002-Default-settings.patch b/0002-Default-settings.patch index 0e572e7..8a0551e 100644 --- a/0002-Default-settings.patch +++ b/0002-Default-settings.patch @@ -1,28 +1,29 @@ -From 5d505396f2a4e1a9f5fd3ea57113fa58c968518e Mon Sep 17 00:00:00 2001 +From 0c77e3c8a690decb726f92d363a8aadae6a1a0a2 Mon Sep 17 00:00:00 2001 From: Jan Fajerski Date: Fri, 8 Feb 2019 09:28:12 +0100 Subject: [PATCH] Default settings Signed-off-by: Jan Fajerski +Signed-off-by: Johannes Kastl Signed-off-by: Johannes Kastl --- cmd/prometheus/main.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/prometheus/main.go b/cmd/prometheus/main.go -index 1d844ddba..5580dfa57 100644 +index b3bcb78b7..9a5a77a4d 100644 --- a/cmd/prometheus/main.go +++ b/cmd/prometheus/main.go -@@ -288,7 +288,7 @@ func main() { +@@ -300,7 +300,7 @@ func main() { a.HelpFlag.Short('h') a.Flag("config.file", "Prometheus configuration file path."). - Default("prometheus.yml").StringVar(&cfg.configFile) + Default("/etc/prometheus/prometheus.yml").StringVar(&cfg.configFile) - a.Flag("web.listen-address", "Address to listen on for UI, API, and telemetry."). - Default("0.0.0.0:9090").StringVar(&cfg.web.ListenAddress) -@@ -335,10 +335,10 @@ func main() { + a.Flag("web.listen-address", "Address to listen on for UI, API, and telemetry. Can be repeated."). + Default("0.0.0.0:9090").StringsVar(&cfg.web.ListenAddresses) +@@ -347,10 +347,10 @@ func main() { Default(supportedRemoteWriteProtoMsgs.Strings()...).SetValue(rwProtoMsgFlagValue(&cfg.web.AcceptRemoteWriteProtoMsgs)) a.Flag("web.console.templates", "Path to the console template directory, available at /consoles."). @@ -35,7 +36,7 @@ index 1d844ddba..5580dfa57 100644 a.Flag("web.page-title", "Document title of Prometheus instance."). Default("Prometheus Time Series Collection and Processing Server").StringVar(&cfg.web.PageTitle) -@@ -347,7 +347,7 @@ func main() { +@@ -359,7 +359,7 @@ func main() { Default(".*").StringVar(&cfg.corsRegexString) serverOnlyFlag(a, "storage.tsdb.path", "Base path for metrics storage."). diff --git a/_service b/_service index c74dfd0..4b7adcc 100644 --- a/_service +++ b/_service @@ -4,7 +4,7 @@ git .git @PARENT_TAG@ - v2.54.1 + v2.55.0 v(.*) v2* @@ -13,6 +13,6 @@ gz - prometheus-2.54.1.tar.gz + prometheus-2.55.0.tar.gz diff --git a/golang-github-prometheus-prometheus.changes b/golang-github-prometheus-prometheus.changes index 7c5d304..341d929 100644 --- a/golang-github-prometheus-prometheus.changes +++ b/golang-github-prometheus-prometheus.changes @@ -1,3 +1,74 @@ +------------------------------------------------------------------- +Wed Oct 23 09:47:24 UTC 2024 - Johannes Kastl + +- update to 2.55.0: + * [FEATURE] PromQL: Add experimental info function. #14495 + * [FEATURE] Support UTF-8 characters in label names - feature + flag utf8-names. #14482, #14880, #14736, #14727 + * [FEATURE] Scraping: Add the ability to set custom http_headers + in config. #14817 + * [FEATURE] Scraping: Support feature flag + created-timestamp-zero-ingestion in OpenMetrics. #14356, #14815 + * [FEATURE] Scraping: scrape_failure_log_file option to log + failures to a file. #14734 + * [FEATURE] OTLP receiver: Optional promotion of resource + attributes to series labels. #14200 + * [FEATURE] Remote-Write: Support Google Cloud Monitoring + authorization. #14346 + * [FEATURE] Promtool: tsdb create-blocks new option to add + labels. #14403 + * [FEATURE] Promtool: promtool test adds --junit flag to format + results. #14506 + * [FEATURE] TSDB: Add delayed-compaction feature flag, for people + running many Prometheus to randomize timing. #12532 + * [ENHANCEMENT] OTLP receiver: Warn on exponential histograms + with zero count and non-zero sum. #14706 + * [ENHANCEMENT] OTLP receiver: Interrupt translation on context + cancellation/timeout. #14612 + * [ENHANCEMENT] Remote Read client: Enable streaming remote read + if the server supports it. #11379 + * [ENHANCEMENT] Remote-Write: Don't reshard if we haven't + successfully sent a sample since last update. #14450 + * [ENHANCEMENT] PromQL: Delay deletion of __name__ label to the + end of the query evaluation. This is experimental and enabled + under the feature-flag promql-delayed-name-removal. #14477 + * [ENHANCEMENT] PromQL: Experimental sort_by_label and + sort_by_label_desc sort by all labels when label is equal. + #14655, #14985 + * [ENHANCEMENT] PromQL: Clarify error message logged when Go + runtime panic occurs during query evaluation. #14621 + * [ENHANCEMENT] PromQL: Use Kahan summation for better accuracy + in avg and avg_over_time. #14413 + * [ENHANCEMENT] Tracing: Improve PromQL tracing, including + showing the operation performed for aggregates, operators, and + calls. #14816 + * [ENHANCEMENT] API: Support multiple listening addresses. #14665 + * [ENHANCEMENT] TSDB: Backward compatibility with upcoming index + v3. #14934 + * [PERF] TSDB: Query in-order and out-of-order series together. + #14354, #14693, #14714, #14831, #14874, #14948, #15120 + * [PERF] TSDB: Streamline reading of overlapping out-of-order + head chunks. #14729 + * [BUGFIX] PromQL: make sort_by_label stable. #14985 + * [BUGFIX] SD: Fix dropping targets (with feature flag + new-service-discovery-manager). #13147 + * [BUGFIX] SD: Stop storing stale targets (with feature flag + new-service-discovery-manager). #13622 + * [BUGFIX] Scraping: exemplars could be dropped in protobuf + scraping. #14810 + * [BUGFIX] Remote-Write: fix metadata sending for experimental + Remote-Write V2. #14766 + * [BUGFIX] Remote-Write: Return 4xx not 5xx when timeseries has + duplicate label. #14716 + * [BUGFIX] Experimental Native Histograms: many fixes for + incorrect results, panics, warnings. #14513, #14575, #14598, + #14609, #14611, #14771, #14821 + * [BUGFIX] TSDB: Only count unknown record types in + record_decode_failures_total metric. #14042 +- rebase patches + 0001-Do-not-force-the-pure-Go-name-resolver.patch and + 0002-Default-settings.patch + ------------------------------------------------------------------- Sat Sep 14 15:33:35 UTC 2024 - Johannes Kastl diff --git a/golang-github-prometheus-prometheus.spec b/golang-github-prometheus-prometheus.spec index 19c59f2..5a55b8b 100644 --- a/golang-github-prometheus-prometheus.spec +++ b/golang-github-prometheus-prometheus.spec @@ -27,7 +27,7 @@ %endif Name: golang-github-prometheus-prometheus -Version: 2.54.1 +Version: 2.55.0 Release: 0 Summary: The Prometheus monitoring system and time series database License: Apache-2.0 diff --git a/npm_licenses.tar.bz2 b/npm_licenses.tar.bz2 index c88c43a..36601b7 100644 --- a/npm_licenses.tar.bz2 +++ b/npm_licenses.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:18a9d1e6b570d6f34a72986056ba240e1a0af5a66e6a324bc14bbefc6d14ba68 -size 169753 +oid sha256:697bd20afe6b9e5f83c976cc13b8eebec6819c12947d32ce30299adcd52bc509 +size 165854 diff --git a/prometheus-2.54.1.tar.gz b/prometheus-2.54.1.tar.gz deleted file mode 100644 index 56a6b82..0000000 --- a/prometheus-2.54.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e761aade301520adcfc57d5ec2c8d5c6ed53b1cbe7d91a8594393f7e8ad5caf4 -size 6411851 diff --git a/prometheus-2.55.0.tar.gz b/prometheus-2.55.0.tar.gz new file mode 100644 index 0000000..026aab4 --- /dev/null +++ b/prometheus-2.55.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08aede677137e1539a8b7bedf8841a7a8dd648550965f8377b5b9277d5b73768 +size 6482244 diff --git a/vendor.tar.gz b/vendor.tar.gz index f4b40dd..fb7b2d3 100644 --- a/vendor.tar.gz +++ b/vendor.tar.gz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:33bc18a15a4972f51290da42c162af0b5db17c23003faa78f062875472d237d6 -size 14596561 +oid sha256:513eac21ea08baf2f39c036f76104eedbdd97a743cd5bbb5c90dccb76b8c6298 +size 15032621 diff --git a/web-ui-2.54.1.tar.gz b/web-ui-2.54.1.tar.gz deleted file mode 100644 index ce81459..0000000 --- a/web-ui-2.54.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8d9ab782a54f2bad2613c0661e28fc1a3f54856d45ca7c0ff8519cf5db15c595 -size 3679107 diff --git a/web-ui-2.55.0.tar.gz b/web-ui-2.55.0.tar.gz new file mode 100644 index 0000000..fb4e20e --- /dev/null +++ b/web-ui-2.55.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db06dd805202965b53a439761bb2dfe57f6264a4e1e604bcdbe615f3fca7ebbc +size 3680354