Skip to content

Commit ca946f9

Browse files
committed
docs: Release 1.11.2
1 parent 4045a5c commit ca946f9

10 files changed

+19
-10
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## Release 1.11.2
2+
3+
Minor update:
4+
5+
- Updates to JavaScript dependencies, where security issues were reported:
6+
[#3633](https://github.com/weaveworks/scope/pull/36233)
7+
- Another fix for Scope not noticing when a container has been destroyed:
8+
[#3627](https://github.com/weaveworks/scope/pull/3627)
9+
110
## Release 1.11.1
211

312
This release fixes a couple of bugs:

examples/cri/deploy.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spec:
2525
args:
2626
- '--no-probe'
2727
env: []
28-
image: weaveworks/scope:1.11.1
28+
image: weaveworks/scope:1.11.2
2929
imagePullPolicy: IfNotPresent
3030
ports:
3131
- containerPort: 4040

examples/cri/ds.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ spec:
3434
fieldRef:
3535
apiVersion: v1
3636
fieldPath: spec.nodeName
37-
image: weaveworks/scope:1.11.1
37+
image: weaveworks/scope:1.11.2
3838
imagePullPolicy: IfNotPresent
3939
securityContext:
4040
privileged: true

examples/docker/docker-compose-probe-v1.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
probe:
2-
image: weaveworks/scope:1.11.1
2+
image: weaveworks/scope:1.11.2
33
net: "host"
44
pid: "host"
55
privileged: true

examples/docker/docker-compose-probe-v2.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '2'
22
services:
33
probe:
4-
image: weaveworks/scope:1.11.1
4+
image: weaveworks/scope:1.11.2
55
network_mode: "host"
66
pid: "host"
77
privileged: true

examples/k8s/deploy.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ spec:
2828
args:
2929
- '--no-probe'
3030
env: []
31-
image: weaveworks/scope:1.11.1
31+
image: weaveworks/scope:1.11.2
3232
imagePullPolicy: IfNotPresent
3333
ports:
3434
- containerPort: 4040

examples/k8s/ds.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ spec:
3131
- '--probe.docker.bridge=docker0'
3232
- '--probe.docker=true'
3333
- 'weave-scope-app.weave.svc.cluster.local.:80'
34-
image: weaveworks/scope:1.11.1
34+
image: weaveworks/scope:1.11.2
3535
imagePullPolicy: IfNotPresent
3636
resources:
3737
requests:

examples/k8s/probe-deploy.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ spec:
3535
- 'weave-scope-app.weave.svc.cluster.local.:80'
3636
command:
3737
- /home/weave/scope
38-
image: 'docker.io/weaveworks/scope:1.11.1'
38+
image: 'docker.io/weaveworks/scope:1.11.2'
3939
imagePullPolicy: IfNotPresent
4040
resources:
4141
requests:

examples/mesos/minimesos.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"container": {
1313
"type": "DOCKER",
1414
"docker": {
15-
"image": "weaveworks/scope:1.11.1",
15+
"image": "weaveworks/scope:1.11.2",
1616
"network": "HOST",
1717
"privileged": true,
1818
"parameters": [

site/installing.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ After it’s been launched, open your browser to `http://localhost:4040`.
112112
**Docker Compose Format Version 1:**
113113

114114
scope:
115-
image: weaveworks/scope:1.11.1
115+
image: weaveworks/scope:1.11.2
116116
net: "host"
117117
pid: "host"
118118
privileged: true
@@ -128,7 +128,7 @@ After it’s been launched, open your browser to `http://localhost:4040`.
128128
version: '2'
129129
services:
130130
scope:
131-
image: weaveworks/scope:1.11.1
131+
image: weaveworks/scope:1.11.2
132132
network_mode: "host"
133133
pid: "host"
134134
privileged: true

0 commit comments

Comments
 (0)