Skip to content

Commit 52bc273

Browse files
authored
all: update version string everywhere for v0.37.2 (grafana#5492)
Signed-off-by: Paschalis Tsilias <[email protected]>
1 parent 7275f65 commit 52bc273

File tree

19 files changed

+46
-22
lines changed

19 files changed

+46
-22
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,27 @@ This document contains a historical list of changes between releases. Only
77
changes that impact end-user behavior are listed; changes to documentation or
88
internal API changes are not present.
99

10+
v0.37.2 (2023-10-16)
11+
-----------------
12+
13+
### Bugfixes
14+
15+
- Fix the handling of the `--cluster.join-addresses` flag causing an invalid
16+
comparison with the mutually-exclusive `--cluster.discover-peers`. (@tpaschalis)
17+
18+
- Fix an issue with the static to flow converter for blackbox exporter modules
19+
config not being included in the river output. (@erikbaranowski)
20+
21+
### Enhancements
22+
23+
- Update Prometheus dependency to v2.47.2. (@tpaschalis)
24+
25+
- Allow Out of Order writing to the WAL for metrics. (@mattdurham)
26+
27+
### Other changes
28+
29+
- Use Go 1.21.3 for builds. (@tpaschalis)
30+
1031
v0.37.1 (2023-10-10)
1132
-----------------
1233

docs/sources/_index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ canonical: https://grafana.com/docs/agent/latest/
77
title: Grafana Agent
88
description: Grafana Agent is a flexible, performant, vendor-neutral, telemetry collector
99
weight: 350
10+
cascade:
11+
AGENT_RELEASE: v0.37.2
1012
---
1113

1214
# Grafana Agent

docs/sources/operator/deploy-agent-operator-resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ To deploy the `GrafanaAgent` resource:
6262
labels:
6363
app: grafana-agent
6464
spec:
65-
image: grafana/agent:v0.37.1
65+
image: grafana/agent:v0.37.2
6666
integrations:
6767
selector:
6868
matchLabels:

docs/sources/operator/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ To install Agent Operator:
7979
serviceAccountName: grafana-agent-operator
8080
containers:
8181
- name: operator
82-
image: grafana/agent-operator:v0.37.1
82+
image: grafana/agent-operator:v0.37.2
8383
args:
8484
- --kubelet-service=default/kubelet
8585
---

docs/sources/static/configuration/integrations/node-exporter-config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ docker run \
3030
-v "/proc:/host/proc:ro,rslave" \
3131
-v /tmp/agent:/etc/agent \
3232
-v /path/to/config.yaml:/etc/agent-config/agent.yaml \
33-
grafana/agent:v0.37.1 \
33+
grafana/agent:v0.37.2 \
3434
--config.file=/etc/agent-config/agent.yaml
3535
```
3636

docs/sources/static/configuration/integrations/process-exporter-config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ docker run \
2222
-v "/proc:/proc:ro" \
2323
-v /tmp/agent:/etc/agent \
2424
-v /path/to/config.yaml:/etc/agent-config/agent.yaml \
25-
grafana/agent:v0.37.1 \
25+
grafana/agent:v0.37.2 \
2626
--config.file=/etc/agent-config/agent.yaml
2727
```
2828

@@ -39,7 +39,7 @@ metadata:
3939
name: agent
4040
spec:
4141
containers:
42-
- image: grafana/agent:v0.37.1
42+
- image: grafana/agent:v0.37.2
4343
name: agent
4444
args:
4545
- --config.file=/etc/agent-config/agent.yaml

docs/sources/static/set-up/install/install-agent-docker.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ To run a Grafana Agent Docker container on Linux, run the following command in a
3434
docker run \
3535
-v WAL_DATA_DIRECTORY:/etc/agent/data \
3636
-v CONFIG_FILE_PATH:/etc/agent/agent.yaml \
37-
grafana/agent:v0.37.1
37+
grafana/agent:v0.37.2
3838
```
3939

4040
Replace `CONFIG_FILE_PATH` with the configuration file path on your Linux host system.
@@ -51,7 +51,7 @@ To run a Grafana Agent Docker container on Windows, run the following command in
5151
docker run ^
5252
-v WAL_DATA_DIRECTORY:C:\etc\grafana-agent\data ^
5353
-v CONFIG_FILE_PATH:C:\etc\grafana-agent ^
54-
grafana/agent:v0.37.1-windows
54+
grafana/agent:v0.37.2-windows
5555
```
5656

5757
Replace the following:

pkg/operator/defaults.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package operator
22

33
// Supported versions of the Grafana Agent.
44
var (
5-
DefaultAgentVersion = "v0.37.1"
5+
DefaultAgentVersion = "v0.37.2"
66
DefaultAgentBaseImage = "grafana/agent"
77
DefaultAgentImage = DefaultAgentBaseImage + ":" + DefaultAgentVersion
88
)

production/kubernetes/agent-bare.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ spec:
8383
valueFrom:
8484
fieldRef:
8585
fieldPath: spec.nodeName
86-
image: grafana/agent:v0.37.1
86+
image: grafana/agent:v0.37.2
8787
imagePullPolicy: IfNotPresent
8888
name: grafana-agent
8989
ports:

production/kubernetes/agent-loki.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ spec:
6565
valueFrom:
6666
fieldRef:
6767
fieldPath: spec.nodeName
68-
image: grafana/agent:v0.37.1
68+
image: grafana/agent:v0.37.2
6969
imagePullPolicy: IfNotPresent
7070
name: grafana-agent-logs
7171
ports:

0 commit comments

Comments
 (0)