Compare commits

..

No commits in common. "master" and "v1.14.2" have entirely different histories.

5 changed files with 1083 additions and 238 deletions

View file

@ -226,82 +226,3 @@
* [Full changelog](https://github.com/prometheus/prometheus/releases/tag/v2.36.2)
* [BUGFIX] Fix serving of static assets like fonts and favicon. #10888
[1.15.0]
* Update Prometheus to 2.37.0
* [Full changelog](https://github.com/prometheus/prometheus/releases/tag/v2.37.0)
* Nomad SD: New service discovery for Nomad built-in service discovery. #10915
* Kubernetes SD: Allow attaching node labels for endpoint role. #10759
* PromQL: Optimise creation of signature with/without labels. #10667
* TSDB: Memory optimizations. #10873 #10874
* TSDB: Reduce sleep time when reading WAL. #10859 #10878
* OAuth2: Add appropriate timeouts and User-Agent header. #11020
[1.16.0]
* Update Prometheus to 2.38.0
* [Full changelog](https://github.com/prometheus/prometheus/releases/tag/v2.38.0)
* Web: Add a /api/v1/format_query HTTP API endpoint that allows pretty-formatting PromQL expressions. #11036 #10544 #11005
* UI: Add support for formatting PromQL expressions in the UI. #11039
* DNS SD: Support MX records for discovering targets. #10099
* Templates: Add toTime() template function that allows converting sample timestamps to Go time.Time values. #10993
* PromQL: When a query panics, also log the query itself alongside the panic message. #10995
[1.17.0]
* Update Prometheus to 2.39.0
* [Full changelog](https://github.com/prometheus/prometheus/releases/tag/v2.39.0)
* experimental TSDB: Add support for ingesting out-of-order samples. This is configured via out_of_order_time_window field in the config file; check config file docs for more info. #11075
* API: /-/healthy and /-/ready API calls now also respond to a HEAD request on top of existing GET support. #11160
* PuppetDB SD: Add __meta_puppetdb_query label. #11238
* AWS EC2 SD: Add __meta_ec2_region label. #11326
* AWS Lightsail SD: Add __meta_lightsail_region label. #11326
* Scrape: Optimise relabeling by re-using memory. #11147
* TSDB: Improve WAL replay timings. #10973 #11307 #11319
* TSDB: Optimise memory by not storing unnecessary data in the memory. #11280 #11288 #11296
* TSDB: Allow overlapping blocks by default. --storage.tsdb.allow-overlapping-blocks now has no effect. #11331
* UI: Click to copy label-value pair from query result to clipboard. #11229
[1.17.1]
* Update Prometheus to 2.39.1
* [Full changelog](https://github.com/prometheus/prometheus/releases/tag/v2.39.1)
* [BUGFIX] Rules: Fix notifier relabel changing the labels on active alerts. #11427
[1.18.0]
* Update Prometheus to 2.40.0
* [Full changelog](https://github.com/prometheus/prometheus/releases/tag/v2.40.0)
[1.18.1]
* Update Prometheus to 2.40.1
* [Full changelog](https://github.com/prometheus/prometheus/releases/tag/v2.40.1)
[1.18.2]
* Update Prometheus to 2.40.2
* [Full changelog](https://github.com/prometheus/prometheus/releases/tag/v2.40.2)
[1.18.3]
* Update Prometheus to 2.40.3
* [Full changelog](https://github.com/prometheus/prometheus/releases/tag/v2.40.3)
* TSDB: Fix compaction after a deletion is called. #11623
[1.18.4]
* Update Prometheus to 2.40.4
* [Full changelog](https://github.com/prometheus/prometheus/releases/tag/v2.40.4)
* Fix Basic Authentication Bypass (CVE-2022-46146)
[1.18.5]
* Update Prometheus to 2.40.5
* [Full changelog](https://github.com/prometheus/prometheus/releases/tag/v2.40.5)
* [BUGFIX] TSDB: Fix queries involving native histograms due to improper reset of iterators. #11643
[1.18.6]
* Update Prometheus to 2.40.6
* Update Coudron base image to 4.0.0
* [Full changelog](https://github.com/prometheus/prometheus/releases/tag/v2.40.6)
[1.18.7]
* Update Prometheus to 2.40.7
* [Full changelog](https://github.com/prometheus/prometheus/releases/tag/v2.40.7)
* [BUGFIX] TSDB: Fix queries involving negative buckets of native histograms. #11699
[1.19.0]
* Update Prometheus to 2.41.0
* [Full changelog](https://github.com/prometheus/prometheus/releases/tag/v2.41.0)

View file

@ -1,6 +1,6 @@
{
"version": "1.19.0",
"upstreamVersion": "2.41.0",
"version": "1.14.2",
"upstreamVersion": "2.36.2",
"id": "io.prometheus.cloudronapp",
"title": "Prometheus Server",
"author": "Erik Tadevosyan",
@ -19,7 +19,7 @@
"website": "https://prometheus.io/",
"contactEmail": "support@cloudron.io",
"tags": [ "metrics", "analytics", "graphite", "collect", "graphs" ],
"changelog": "file://CHANGELOG.md",
"changelog": "file://CHANGELOG",
"documentationUrl": "https://docs.cloudron.io/apps/prometheus/",
"minBoxVersion": "7.1.0",
"forumUrl": "https://forum.cloudron.io/category/112/prometheus",

View file

@ -1,9 +1,9 @@
FROM cloudron/base:4.0.0@sha256:31b195ed0662bdb06a6e8a5ddbedb6f191ce92e8bee04c03fb02dd4e9d0286df
FROM cloudron/base:3.2.0@sha256:ba1d566164a67c266782545ea9809dc611c4152e27686fd14060332dd88263ea
RUN mkdir -p /app/code /app/pkg
WORKDIR /app/code
ARG VERSION=2.41.0
ARG VERSION=2.36.2
RUN curl -L https://github.com/prometheus/prometheus/releases/download/v${VERSION}/prometheus-${VERSION}.linux-amd64.tar.gz | tar zxvf - --strip-components 1

1224
test/package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -10,10 +10,12 @@
"license": "ISC",
"devDependencies": {
"expect.js": "^0.3.1",
"mocha": "^10.2.0",
"selenium-webdriver": "^4.7.1"
"mocha": "^10.0.0",
"selenium-server-standalone-jar": "^3.141.59",
"selenium-webdriver": "^4.2.0",
"superagent": "^7.1.6"
},
"dependencies": {
"chromedriver": "^108.0.0"
"chromedriver": "^102.0.0"
}
}