Skip to content

Commit

Permalink
Release 1.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bboreham committed Mar 23, 2020
1 parent b2d98dc commit 7c838af
Show file tree
Hide file tree
Showing 10 changed files with 72 additions and 10 deletions.
62 changes: 62 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,65 @@
## Release 1.13.0

This release brings a few bug-fixes and number of performance
improvements, particularly in reducing the data sent when there are
many socket connections between two endpoints.

The bump in version number reflects a change in wire protocol for this
change in endpoints data, and also a change in the way active controls
are encoded.

Thanks to everyone who contributed to this release: @DarthSett,
@sarataha, @slalwani97 and @qiell.

### Bug fixes

- Remove trailing zeros in large numbers in UI
[#3760](https://github.com/weaveworks/scope/pull/3760)
- kubernetes: display pod status as "terminating" where appropriate
[#3729](https://github.com/weaveworks/scope/pull/3729)
- kubernetes: detect more 'pause' containers
[#3743](https://github.com/weaveworks/scope/pull/3743)
- Improve calculation of usage in multitenant code
[#3751](https://github.com/weaveworks/scope/pull/3751)
[#3753](https://github.com/weaveworks/scope/pull/3753)

### Performance improvements

- Elide many connections from/to the same endpoints
[#3709](https://github.com/weaveworks/scope/pull/3709)
- Remove two specialised data structures; unify with other node data
[#3714](https://github.com/weaveworks/scope/pull/3714)
[#3748](https://github.com/weaveworks/scope/pull/3748)
- Simplify some renderers to improve performance
[#3747](https://github.com/weaveworks/scope/pull/3747)
- Slow down DNS poll interval to reduce network activity
[#3758](https://github.com/weaveworks/scope/pull/3758)

### Minor improvements

- Add "user-agent" header to http calls from Scope probe
[#3720](https://github.com/weaveworks/scope/pull/3720)
- Set timestamp and window on each report
[#3752](https://github.com/weaveworks/scope/pull/3752)
- Add tracing for pipe operations
[#3745](https://github.com/weaveworks/scope/pull/3745)

### Dependencies updates

- Convert to Go modules
[#3742](https://github.com/weaveworks/scope/pull/3742)
- Update to Go 1.13.9
[#3766](https://github.com/weaveworks/scope/pull/3766)
- Go: update weaveworks, prometheus, protobuf, jaeger and aws dependencies
[#3745](https://github.com/weaveworks/scope/pull/3745)
[#3756](https://github.com/weaveworks/scope/pull/3756)
- JavaScript: update babel, jest, webpack and other dependencies; dedupe yarn.lock
[#3733](https://github.com/weaveworks/scope/pull/3733)
[#3755](https://github.com/weaveworks/scope/pull/3755)
[#3757](https://github.com/weaveworks/scope/pull/3757)
[#3763](https://github.com/weaveworks/scope/pull/3763)


## Release 1.12.0

### Highlights
Expand Down
2 changes: 1 addition & 1 deletion examples/cri/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
args:
- '--no-probe'
env: []
image: weaveworks/scope:1.12.0
image: weaveworks/scope:1.13.0
imagePullPolicy: IfNotPresent
ports:
- containerPort: 4040
Expand Down
2 changes: 1 addition & 1 deletion examples/cri/ds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ spec:
fieldRef:
apiVersion: v1
fieldPath: spec.nodeName
image: weaveworks/scope:1.12.0
image: weaveworks/scope:1.13.0
imagePullPolicy: IfNotPresent
securityContext:
privileged: true
Expand Down
2 changes: 1 addition & 1 deletion examples/docker/docker-compose-probe-v1.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
probe:
image: weaveworks/scope:1.12.0
image: weaveworks/scope:1.13.0
net: "host"
pid: "host"
privileged: true
Expand Down
2 changes: 1 addition & 1 deletion examples/docker/docker-compose-probe-v2.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '2'
services:
probe:
image: weaveworks/scope:1.12.0
image: weaveworks/scope:1.13.0
network_mode: "host"
pid: "host"
privileged: true
Expand Down
2 changes: 1 addition & 1 deletion examples/k8s/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:
args:
- '--no-probe'
env: []
image: weaveworks/scope:1.12.0
image: weaveworks/scope:1.13.0
imagePullPolicy: IfNotPresent
ports:
- containerPort: 4040
Expand Down
2 changes: 1 addition & 1 deletion examples/k8s/ds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spec:
- '--probe.docker.bridge=docker0'
- '--probe.docker=true'
- 'weave-scope-app.weave.svc.cluster.local.:80'
image: weaveworks/scope:1.12.0
image: weaveworks/scope:1.13.0
imagePullPolicy: IfNotPresent
resources:
requests:
Expand Down
2 changes: 1 addition & 1 deletion examples/k8s/probe-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spec:
- 'weave-scope-app.weave.svc.cluster.local.:80'
command:
- /home/weave/scope
image: 'docker.io/weaveworks/scope:1.12.0'
image: 'docker.io/weaveworks/scope:1.13.0'
imagePullPolicy: IfNotPresent
resources:
requests:
Expand Down
2 changes: 1 addition & 1 deletion examples/mesos/minimesos.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"container": {
"type": "DOCKER",
"docker": {
"image": "weaveworks/scope:1.12.0",
"image": "weaveworks/scope:1.13.0",
"network": "HOST",
"privileged": true,
"parameters": [
Expand Down
4 changes: 2 additions & 2 deletions site/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ After it’s been launched, open your browser to `http://localhost:4040`.
**Docker Compose Format Version 1:**

scope:
image: weaveworks/scope:1.12.0
image: weaveworks/scope:1.13.0
net: "host"
pid: "host"
privileged: true
Expand All @@ -128,7 +128,7 @@ After it’s been launched, open your browser to `http://localhost:4040`.
version: '2'
services:
scope:
image: weaveworks/scope:1.12.0
image: weaveworks/scope:1.13.0
network_mode: "host"
pid: "host"
privileged: true
Expand Down

0 comments on commit 7c838af

Please sign in to comment.