Skip to content

Commit c810506

Browse files
lebaucesafchain
authored andcommitted
Bump version to 0.6.0
Change-Id: I7a2755485f5326c60ce88eb6f908dad31221a0d4 Reviewed-on: http://softwarefactory-project.io/r/5016 Reviewed-by: Sylvain Afchain <[email protected]> Tested-by: Sylvain Afchain <[email protected]> Workflow: Sylvain Afchain <[email protected]>
1 parent ff113be commit c810506

File tree

3 files changed

+34
-3
lines changed

3 files changed

+34
-3
lines changed

CHANGELOG.md

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

4+
## [0.6.0] - 2016-10-15
5+
### Added
6+
- Use elasticsearch as a time series database
7+
- Add elasticsearch graph backend
8+
- New node ID that persists between agent restart
9+
- New afpacket capture type
10+
- New 'fabric' probe to register external equipment like
11+
Top Of Rack switches
12+
- Gremlin improvements:
13+
- Add 'Range' and 'Limit' Gremlin steps
14+
- Add 'Hops' step to get the nodes traversed by a set of flows
15+
- Add architecture section to the documentation
16+
- Add devstack functional testing
17+
18+
### Changed
19+
- Skydive binary is linked statically with pcap
20+
- Renamed 'pcap' probe to 'gopacket'
21+
- Web UI improvements:
22+
- Clearer representation using groups of nodes
23+
- Node pinning
24+
- Highlight traversed nodes in Web UI
25+
- Bug fixes:
26+
- Wait for analyzer before starting agent
27+
- Avoid capture create with duplicate gremlin request (both thanks to
28+
Konstantin Dorfman)
29+
- Fix shortestPath and add a test to illustrate the bug (thanks to
30+
Antoine Eiche)
31+
- Limit neutron API calls (thanks to Jean-Philippe Braun)
32+
- Use authenticated request while waiting for the analyzer (thanks to
33+
Mathieu Rohon)
34+
435
## [0.5.0] - 2016-09-15
536
### Added
637
- Gremlin improvements:

contrib/packaging/rpm/skydive.spec

Lines changed: 2 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.5.0}
16-
%{!?source:%define source 0.5.0}
15+
%{!?tagversion:%define tagversion 0.6.0}
16+
%{!?source:%define source 0.6.0}
1717
%{!?tag:%define tag 1}
1818

1919
Name: skydive

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.5.0"
14+
var Version = "v0.6.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)