mirror of
https://github.com/prometheus/prometheus.git
synced 2025-08-05 21:57:09 +02:00
Prepare release 3.3.0
Signed-off-by: machine424 <ayoubmrini424@gmail.com>
This commit is contained in:
parent
293f0c9185
commit
46883e05ae
18
CHANGELOG.md
18
CHANGELOG.md
@ -2,14 +2,7 @@
|
||||
|
||||
## unreleased
|
||||
|
||||
## 3.3.0-rc.1 / 2025-04-02
|
||||
|
||||
* [BUGFIX] Remote-Write: Reduce memory footprint during WAL replay. #16197
|
||||
* [BUGFIX] Scraping: Skip native histograms series when ingestion is disabled. #16218
|
||||
* [BUGFIX] UI: Display the correct value of Alerting rules' `keep_firing_for`. #16211
|
||||
* [BUGFIX] PromQL: return NaN from `irate()` if second-last sample is NaN. #16199 #15853
|
||||
|
||||
## 3.3.0-rc.0 / 2025-03-11
|
||||
## 3.3.0 / 2025-04-15
|
||||
|
||||
* [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
|
||||
@ -24,21 +17,24 @@
|
||||
* [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] 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] 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] Scraping: Bump cache iteration after error to avoid false duplicate detections. #16174
|
||||
* [BUGFIX] PromQL: Fix annotations for binary operations between incompatible native histograms. #15895
|
||||
* [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
|
||||
|
||||
## 3.2.1 / 2025-02-25
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@prometheus-io/mantine-ui",
|
||||
"private": true,
|
||||
"version": "0.303.0-rc.1",
|
||||
"version": "0.303.0",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"start": "vite",
|
||||
@ -28,7 +28,7 @@
|
||||
"@microsoft/fetch-event-source": "^2.0.1",
|
||||
"@nexucis/fuzzy": "^0.5.1",
|
||||
"@nexucis/kvsearch": "^0.9.1",
|
||||
"@prometheus-io/codemirror-promql": "0.303.0-rc.1",
|
||||
"@prometheus-io/codemirror-promql": "0.303.0",
|
||||
"@reduxjs/toolkit": "^2.5.0",
|
||||
"@tabler/icons-react": "^3.28.1",
|
||||
"@tanstack/react-query": "^5.67.1",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@prometheus-io/codemirror-promql",
|
||||
"version": "0.303.0-rc.1",
|
||||
"version": "0.303.0",
|
||||
"description": "a CodeMirror mode for the PromQL language",
|
||||
"types": "dist/esm/index.d.ts",
|
||||
"module": "dist/esm/index.js",
|
||||
@ -29,7 +29,7 @@
|
||||
},
|
||||
"homepage": "https://github.com/prometheus/prometheus/blob/main/web/ui/module/codemirror-promql/README.md",
|
||||
"dependencies": {
|
||||
"@prometheus-io/lezer-promql": "0.303.0-rc.1",
|
||||
"@prometheus-io/lezer-promql": "0.303.0",
|
||||
"lru-cache": "^11.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@prometheus-io/lezer-promql",
|
||||
"version": "0.303.0-rc.1",
|
||||
"version": "0.303.0",
|
||||
"description": "lezer-based PromQL grammar",
|
||||
"main": "dist/index.cjs",
|
||||
"type": "module",
|
||||
|
14
web/ui/package-lock.json
generated
14
web/ui/package-lock.json
generated
@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "prometheus-io",
|
||||
"version": "0.303.0-rc.1",
|
||||
"version": "0.303.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "prometheus-io",
|
||||
"version": "0.303.0-rc.1",
|
||||
"version": "0.303.0",
|
||||
"workspaces": [
|
||||
"mantine-ui",
|
||||
"module/*"
|
||||
@ -24,7 +24,7 @@
|
||||
},
|
||||
"mantine-ui": {
|
||||
"name": "@prometheus-io/mantine-ui",
|
||||
"version": "0.303.0-rc.1",
|
||||
"version": "0.303.0",
|
||||
"dependencies": {
|
||||
"@codemirror/autocomplete": "^6.18.4",
|
||||
"@codemirror/language": "^6.10.8",
|
||||
@ -42,7 +42,7 @@
|
||||
"@microsoft/fetch-event-source": "^2.0.1",
|
||||
"@nexucis/fuzzy": "^0.5.1",
|
||||
"@nexucis/kvsearch": "^0.9.1",
|
||||
"@prometheus-io/codemirror-promql": "0.303.0-rc.1",
|
||||
"@prometheus-io/codemirror-promql": "0.303.0",
|
||||
"@reduxjs/toolkit": "^2.5.0",
|
||||
"@tabler/icons-react": "^3.28.1",
|
||||
"@tanstack/react-query": "^5.67.1",
|
||||
@ -156,10 +156,10 @@
|
||||
},
|
||||
"module/codemirror-promql": {
|
||||
"name": "@prometheus-io/codemirror-promql",
|
||||
"version": "0.303.0-rc.1",
|
||||
"version": "0.303.0",
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"@prometheus-io/lezer-promql": "0.303.0-rc.1",
|
||||
"@prometheus-io/lezer-promql": "0.303.0",
|
||||
"lru-cache": "^11.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
@ -189,7 +189,7 @@
|
||||
},
|
||||
"module/lezer-promql": {
|
||||
"name": "@prometheus-io/lezer-promql",
|
||||
"version": "0.303.0-rc.1",
|
||||
"version": "0.303.0",
|
||||
"license": "Apache-2.0",
|
||||
"devDependencies": {
|
||||
"@lezer/generator": "^1.7.2",
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "prometheus-io",
|
||||
"description": "Monorepo for the Prometheus UI",
|
||||
"version": "0.303.0-rc.1",
|
||||
"version": "0.303.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"build": "bash build_ui.sh --all",
|
||||
|
Loading…
Reference in New Issue
Block a user