Skip to content

Commit

Permalink
Bump version to 0.7.0
Browse files Browse the repository at this point in the history
Change-Id: I3ac14f991f175f5ddd3fd2f589380aad11914131
Reviewed-on: http://softwarefactory-project.io/r/5335
Reviewed-by: Sylvain Afchain <[email protected]>
Tested-by: Sylvain Afchain <[email protected]>
Workflow: Sylvain Afchain <[email protected]>
  • Loading branch information
lebauce authored and safchain committed Nov 8, 2016
1 parent d61349a commit 65f3504
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 4 deletions.
43 changes: 43 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,49 @@
# Change Log
All notable changes to this project will be documented in this file.

## [0.7.0] - 2016-11-08
### Added
Flows:
- Encapsulation support (VXLAN, GRE)
- IPv6 support
Gremlin:
- Add 'Sort' step to sort flows by uptime time
- Add 'Nodes' step to get capture, source and destination nodes
Topology:
- Add cache for gremlin, titangraph and orientdb backends
- Add OpenContrail probe
WebUI:
- Use shortest path to create captures
- Support for tunneling
Client:
- Add an 'allinone' command
- Add a 'shell' command
Documentation:
- Add quick start and contributing sections to README.md
- Add rest, flow schema section and some fixes

### Changed
Flows:
- Reworked flow structurem to simplify exploitation and storage
- Use ANode, BNode, Node instead of old name for flows
Gremlin:
- Optimize Dedup step for flows
- Ensure error is passed for every step
WebUI:
- Replace flow jsonview by a flow grid table
- Change node selection behaviour
Docker:
- Use scratch as Docker base image
- Add missing configuration file for Docker image
OpenStack:
- Add availability configuration variable
- Retrieve metadatas when port metadatas are updated
Bugs fixes:
- Properly handle default values in configuration
- Fix fd leak when using http clients
- Stop timer of gopacket
- Fix frozen agent when a flow query was used while when stopping flow table

## [0.6.0] - 2016-10-15
### Added
- Use elasticsearch as a time series database
Expand Down
4 changes: 2 additions & 2 deletions contrib/packaging/rpm/skydive.spec
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
%define source %{tagversion}
%endif

%{!?tagversion:%define tagversion 0.6.0}
%{!?source:%define source 0.6.0}
%{!?tagversion:%define tagversion 0.7.0}
%{!?source:%define source 0.7.0}
%{!?tag:%define tag 1}

Name: skydive
Expand Down
2 changes: 1 addition & 1 deletion doc/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ googleAnalytics = ""
provider = "GitHub"
repo_url = "https://github.com/skydive-project/skydive"

version = "0.6.0"
version = "0.7.0"
logo = "images/skydive-logo.png"
favicon = "images/skydive-logo-16x16.png"

Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
var Package = "github.com/skydive-project/skydive"

// Version indicates which version of the binary is running.
var Version = "v0.6.0"
var Version = "v0.7.0"

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

0 comments on commit 65f3504

Please sign in to comment.