Skip to content

Commit 7c838af

Browse files
committedMar 23, 2020
Release 1.13.0
1 parent b2d98dc commit 7c838af

10 files changed

+72
-10
lines changed
 

‎CHANGELOG.md

+62
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,65 @@
1+
## Release 1.13.0
2+
3+
This release brings a few bug-fixes and number of performance
4+
improvements, particularly in reducing the data sent when there are
5+
many socket connections between two endpoints.
6+
7+
The bump in version number reflects a change in wire protocol for this
8+
change in endpoints data, and also a change in the way active controls
9+
are encoded.
10+
11+
Thanks to everyone who contributed to this release: @DarthSett,
12+
@sarataha, @slalwani97 and @qiell.
13+
14+
### Bug fixes
15+
16+
- Remove trailing zeros in large numbers in UI
17+
[#3760](https://github.com/weaveworks/scope/pull/3760)
18+
- kubernetes: display pod status as "terminating" where appropriate
19+
[#3729](https://github.com/weaveworks/scope/pull/3729)
20+
- kubernetes: detect more 'pause' containers
21+
[#3743](https://github.com/weaveworks/scope/pull/3743)
22+
- Improve calculation of usage in multitenant code
23+
[#3751](https://github.com/weaveworks/scope/pull/3751)
24+
[#3753](https://github.com/weaveworks/scope/pull/3753)
25+
26+
### Performance improvements
27+
28+
- Elide many connections from/to the same endpoints
29+
[#3709](https://github.com/weaveworks/scope/pull/3709)
30+
- Remove two specialised data structures; unify with other node data
31+
[#3714](https://github.com/weaveworks/scope/pull/3714)
32+
[#3748](https://github.com/weaveworks/scope/pull/3748)
33+
- Simplify some renderers to improve performance
34+
[#3747](https://github.com/weaveworks/scope/pull/3747)
35+
- Slow down DNS poll interval to reduce network activity
36+
[#3758](https://github.com/weaveworks/scope/pull/3758)
37+
38+
### Minor improvements
39+
40+
- Add "user-agent" header to http calls from Scope probe
41+
[#3720](https://github.com/weaveworks/scope/pull/3720)
42+
- Set timestamp and window on each report
43+
[#3752](https://github.com/weaveworks/scope/pull/3752)
44+
- Add tracing for pipe operations
45+
[#3745](https://github.com/weaveworks/scope/pull/3745)
46+
47+
### Dependencies updates
48+
49+
- Convert to Go modules
50+
[#3742](https://github.com/weaveworks/scope/pull/3742)
51+
- Update to Go 1.13.9
52+
[#3766](https://github.com/weaveworks/scope/pull/3766)
53+
- Go: update weaveworks, prometheus, protobuf, jaeger and aws dependencies
54+
[#3745](https://github.com/weaveworks/scope/pull/3745)
55+
[#3756](https://github.com/weaveworks/scope/pull/3756)
56+
- JavaScript: update babel, jest, webpack and other dependencies; dedupe yarn.lock
57+
[#3733](https://github.com/weaveworks/scope/pull/3733)
58+
[#3755](https://github.com/weaveworks/scope/pull/3755)
59+
[#3757](https://github.com/weaveworks/scope/pull/3757)
60+
[#3763](https://github.com/weaveworks/scope/pull/3763)
61+
62+
163
## Release 1.12.0
264

365
### Highlights

‎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.12.0
28+
image: weaveworks/scope:1.13.0
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.12.0
37+
image: weaveworks/scope:1.13.0
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.12.0
2+
image: weaveworks/scope:1.13.0
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.12.0
4+
image: weaveworks/scope:1.13.0
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.12.0
31+
image: weaveworks/scope:1.13.0
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.12.0
34+
image: weaveworks/scope:1.13.0
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.12.0'
38+
image: 'docker.io/weaveworks/scope:1.13.0'
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.12.0",
15+
"image": "weaveworks/scope:1.13.0",
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.12.0
115+
image: weaveworks/scope:1.13.0
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.12.0
131+
image: weaveworks/scope:1.13.0
132132
network_mode: "host"
133133
pid: "host"
134134
privileged: true

0 commit comments

Comments
 (0)
Please sign in to comment.