Skip to content

Commit 8a1fb9f

Browse files
authored
Merge pull request #1809 from lebauce/v0.23.0
Bump to version 0.23
2 parents 730c566 + 71cf1b0 commit 8a1fb9f

File tree

6 files changed

+31
-5
lines changed

6 files changed

+31
-5
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,29 @@
22

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

5+
## [0.23.0] - 2019-05-15
6+
### Added
7+
- OVN probe with support for logical switches, routers, ports and ACLs
8+
- Network Service Mesh (NSM) probe
9+
- Open vSwitch:
10+
- Use JSON schema when using ovs-ofctl command line utility
11+
- Use Golang OpenFlow decoder based on loxigen
12+
- Support for Gremlin `Metric` step on OVS interfaces
13+
- Add advanced options for `ovssflow` capture type
14+
- eBPF:
15+
- 802.1q/VLAN support
16+
- IP/GRE support
17+
- Libvirt:
18+
- Associations to SRIO-V virtual functions
19+
- Add pure Go implementation for static builds
20+
- Kubernetes:
21+
- Add configmap/secret data keys to metadata
22+
- Added health checks to Skydive template
23+
24+
### Changed
25+
- Move workflow execution to server side
26+
- Move RTT from flows to metrics to keep history of it
27+
528
## [0.22.0] - 2019-03-21
629
### Added
730
- SRIO-V support

contrib/ansible/roles/skydive_common/defaults/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
skydive_release: v0.22.0
2+
skydive_release: v0.23.0
33
skydive_docker_registry: docker.io
44
skydive_docker_image_tag: latest
55
skydive_config_file: /etc/skydive/skydive.yml

contrib/packaging/rpm/skydive.spec

+4-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
%endif
3535
%endif
3636

37-
%{!?fullver:%global fullver 0.22.0}
37+
%{!?fullver:%global fullver 0.23.0}
3838
%define version %{extractversion %{fullver}}
3939
%{!?tag:%global tag 1}
4040

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

252252
%changelog
253+
* Wed May 15 2019 Sylvain Baubeau <[email protected]> - 0.23.0-1
254+
- Bump to version 0.23.0
255+
253256
* Thu Mar 21 2019 Sylvain Afchain <[email protected]> - 0.22.0-1
254257
- Bump to version 0.22.0
255258

contrib/packaging/rpm/skydive.te.fedora

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
policy_module(skydive, 0.22.0)
1+
policy_module(skydive, 0.23.0)
22

33
########################################
44
#

contrib/packaging/rpm/skydive.te.rhel

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
policy_module(skydive, 0.22.0)
1+
policy_module(skydive, 0.23.0)
22

33
########################################
44
#

scripts/ci/create-vagrant-boxes.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dir="$(dirname "$0")"
1313

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

0 commit comments

Comments
 (0)