Skip to content

Commit 62eada8

Browse files
lebauceJenkins CI
authored andcommitted
Bump version to 0.8.0
Change-Id: I78e0d62a1600b2489637dda74c57e6fd6d4145b1 Reviewed-on: https://softwarefactory-project.io/r/5818 Reviewed-by: Sylvain Afchain <[email protected]> Tested-by: Sylvain Afchain <[email protected]> Workflow: Sylvain Afchain <[email protected]> Tested-by: Jenkins CI <[email protected]>
1 parent d7b35eb commit 62eada8

File tree

4 files changed

+110
-4
lines changed

4 files changed

+110
-4
lines changed

CHANGELOG.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,59 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [0.8.0] - 2016-12-09
5+
### Added
6+
Flows:
7+
- Add packet injector to generate traffic between two interfaces
8+
- Support Geneve tunneling
9+
- Add support for MPLS over both UDP and GRE
10+
- Add sFlow tunneling support
11+
- Add 'Application' metadata that contains the last layer type
12+
Gremlin:
13+
- New 'Metrics' Gremlin step to get all the metrics associated to a
14+
set of flows
15+
- New 'Values' step which returns values of a property:
16+
ex: G.V().Values('Name')
17+
- New 'Sum' step that returns aggregation over named node property:
18+
ex: G.Flows().Sum('Metric.ABBytes')
19+
- New 'Regex' predicated to use regular expression when querying graph
20+
and flows
21+
- New 'At' alias for 'Context' and allow more user friendly time definition
22+
ex: g.At('-5m').V()
23+
- New 'Within' filter for flows
24+
- New 'Since' predicate to select flows
25+
- New 'CaptureNode' step to get the capture nodes of a set of flows
26+
OpenStack:
27+
- Add support for Keystone V3
28+
- Autodetect Skydive agent running inside a virtual machine
29+
WebUI:
30+
- Add packet injector tab
31+
- Add support for zoom-in zoom-out and reset
32+
- Add the "famous" "mmmgnmm bob effect"
33+
Misc:
34+
- Experimental support for TLS communication between agents and analyzer
35+
- Vagrantfile to bootstrap a 3 nodes setup
36+
37+
### Changed
38+
Flows:
39+
- Manage captures from the analyzer to handle use case like setting capture
40+
point on all the interfaces between two nodes
41+
- Simplify packet processing and remove timeout mechanisms at the probe level
42+
- Correct packet length for outer/inner packets in tunnels
43+
Topology:
44+
- Move 'fabric' probe onto the analyzer and add a WebSocket API
45+
WebUI:
46+
- Update timeslider to use delta instead of date
47+
- Restore discovery and conversation views
48+
- Fix node selection issue after agent Resync
49+
Bugs fixes:
50+
- Many bugfixes around network namespaces that caused Goroutines to run
51+
in the wrong namespace that resulted in flow captures and packet injection
52+
errors
53+
- Fix leak of namespace fd in docker probe
54+
Build:
55+
- Do not integrate generated file anymore
56+
457
## [0.7.0] - 2016-11-08
558
### Added
659
Flows:

contrib/packaging/rpm/skydive.spec

Lines changed: 55 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
%define source %{tagversion}
1313
%endif
1414

15-
%{!?tagversion:%define tagversion 0.7.0}
16-
%{!?source:%define source 0.7.0}
15+
%{!?tagversion:%define tagversion 0.8.0}
16+
%{!?source:%define source 0.8.0}
1717
%{!?tag:%define tag 1}
1818

1919
Name: skydive
@@ -120,6 +120,59 @@ install -D -m 644 etc/skydive.yml.default %{buildroot}/%{_sysconfdir}/skydive/sk
120120
%{_unitdir}/skydive-analyzer.service
121121

122122
%changelog
123+
* Fri Dec 9 2016 Sylvain Baubeau <[email protected]> - 0.8.0-1
124+
- Added
125+
- Flows:
126+
- Add packet injector to generate traffic between two interfaces
127+
- Support Geneve tunneling
128+
- Add support for MPLS over both UDP and GRE
129+
- Add sFlow tunneling support
130+
- Add 'Application' metadata that contains the last layer type
131+
- Gremlin:
132+
- New 'Metrics' Gremlin step to get all the metrics associated to a
133+
set of flows
134+
- New 'Values' step which returns values of a property:
135+
ex: G.V().Values('Name')
136+
- New 'Sum' step that returns aggregation over named node property:
137+
ex: G.Flows().Sum('Metric.ABBytes')
138+
- New 'Regex' predicated to use regular expression when querying graph
139+
and flows
140+
- New 'At' alias for 'Context' and allow more user friendly time definition
141+
ex: g.At('-5m').V()
142+
- New 'Within' filter for flows
143+
- New 'Since' predicate to select flows
144+
- New 'CaptureNode' step to get the capture nodes of a set of flows
145+
- OpenStack:
146+
- Add support for Keystone V3
147+
- Autodetect Skydive agent running inside a virtual machine
148+
- WebUI:
149+
- Add packet injector tab
150+
- Add support for zoom-in zoom-out and reset
151+
- Add the "famous" "mmmgnmm bob effect"
152+
- Misc:
153+
- Experimental support for TLS communication between agents and analyzer
154+
- Vagrantfile to bootstrap a 3 nodes setup
155+
156+
- Changed
157+
- Flows:
158+
- Manage captures from the analyzer to handle use case like setting capture
159+
point on all the interfaces between two nodes
160+
- Simplify packet processing and remove timeout mechanisms at the probe level
161+
- Correct packet length for outer/inner packets in tunnels
162+
- Topology:
163+
- Move 'fabric' probe onto the analyzer and add a WebSocket API
164+
- WebUI:
165+
- Update timeslider to use delta instead of date
166+
- Restore discovery and conversation views
167+
- Fix node selection issue after agent Resync
168+
- Bugs fixes:
169+
- Many bugfixes around network namespaces that caused Goroutines to run
170+
in the wrong namespace that resulted in flow captures and packet injection
171+
errors
172+
- Fix leak of namespace fd in docker probe
173+
- Build:
174+
- Do not integrate generated file anymore
175+
123176
* Tue Nov 8 2016 Sylvain Baubeau <[email protected]> - 0.7.0-1
124177
- Added
125178
- Flows:

doc/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ googleAnalytics = ""
1717
provider = "GitHub"
1818
repo_url = "https://github.com/skydive-project/skydive"
1919

20-
version = "0.7.0"
20+
version = "0.8.0"
2121
logo = "images/skydive-logo.png"
2222
favicon = "images/skydive-logo-16x16.png"
2323

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
var Package = "github.com/skydive-project/skydive"
1212

1313
// Version indicates which version of the binary is running.
14-
var Version = "v0.7.0"
14+
var Version = "v0.8.0"
1515

1616
// FprintVersion outputs the version string to the writer, in the following
1717
// format, followed by a newline:

0 commit comments

Comments
 (0)