Skip to content

Commit

Permalink
Merge pull request #1809 from lebauce/v0.23.0
Browse files Browse the repository at this point in the history
Bump to version 0.23
  • Loading branch information
safchain authored May 17, 2019
2 parents 730c566 + 71cf1b0 commit 8a1fb9f
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 5 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,29 @@

All notable changes to this project will be documented in this file.

## [0.23.0] - 2019-05-15
### Added
- OVN probe with support for logical switches, routers, ports and ACLs
- Network Service Mesh (NSM) probe
- Open vSwitch:
- Use JSON schema when using ovs-ofctl command line utility
- Use Golang OpenFlow decoder based on loxigen
- Support for Gremlin `Metric` step on OVS interfaces
- Add advanced options for `ovssflow` capture type
- eBPF:
- 802.1q/VLAN support
- IP/GRE support
- Libvirt:
- Associations to SRIO-V virtual functions
- Add pure Go implementation for static builds
- Kubernetes:
- Add configmap/secret data keys to metadata
- Added health checks to Skydive template

### Changed
- Move workflow execution to server side
- Move RTT from flows to metrics to keep history of it

## [0.22.0] - 2019-03-21
### Added
- SRIO-V support
Expand Down
2 changes: 1 addition & 1 deletion contrib/ansible/roles/skydive_common/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
skydive_release: v0.22.0
skydive_release: v0.23.0
skydive_docker_registry: docker.io
skydive_docker_image_tag: latest
skydive_config_file: /etc/skydive/skydive.yml
Expand Down
5 changes: 4 additions & 1 deletion contrib/packaging/rpm/skydive.spec
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
%endif
%endif

%{!?fullver:%global fullver 0.22.0}
%{!?fullver:%global fullver 0.23.0}
%define version %{extractversion %{fullver}}
%{!?tag:%global tag 1}

Expand Down Expand Up @@ -250,6 +250,9 @@ fi
%attr(0644,root,root) %{_mandir}/man8/skydive-selinux.8.*

%changelog
* Wed May 15 2019 Sylvain Baubeau <[email protected]> - 0.23.0-1
- Bump to version 0.23.0

* Thu Mar 21 2019 Sylvain Afchain <[email protected]> - 0.22.0-1
- Bump to version 0.22.0

Expand Down
2 changes: 1 addition & 1 deletion contrib/packaging/rpm/skydive.te.fedora
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
policy_module(skydive, 0.22.0)
policy_module(skydive, 0.23.0)

########################################
#
Expand Down
2 changes: 1 addition & 1 deletion contrib/packaging/rpm/skydive.te.rhel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
policy_module(skydive, 0.22.0)
policy_module(skydive, 0.23.0)

########################################
#
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/create-vagrant-boxes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dir="$(dirname "$0")"

# SKYDIVE_RELEASE is a relase tag (like "v0.1.2") or "master"
export SKYDIVE_RELEASE=master
BOXVERSION=0.22.0.alpha
BOXVERSION=0.24.0.alpha
tagname=$(git show-ref --tags $REF)
if [ -n "$tagname" ]; then
export SKYDIVE_RELEASE=$(echo $tagname | awk -F "/" "{print \$NF}")
Expand Down

0 comments on commit 8a1fb9f

Please sign in to comment.