Skip to content

Commit d532ef7

Browse files
authored
Merge pull request #1881 from lebauce/release-0.24
Bump to version 0.24.0
2 parents 0ba68d4 + 5472939 commit d532ef7

File tree

6 files changed

+34
-6
lines changed

6 files changed

+34
-6
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,31 @@
22

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

5+
## [0.24.0] - 2019-06-24
6+
### Added
7+
8+
- Add Gremlin console in Web UI
9+
- Add `ovsnetflow` capture to act as a NetFlow receiver
10+
- Add target mechanism to export flow using ERSPAN or NetFlow
11+
- Packet injector:
12+
- Allow use as a standalone executable
13+
- Allow reaching external IPs
14+
- Support multiple captures on a single interface
15+
- Allow creating API resources with a TTL
16+
- Added support for all DNS fields
17+
- Add flow validation workflow
18+
- Gremlin:
19+
- Add `Has` step on `Values` result
20+
- Add `NEE` (not equal or not exist) predicate
21+
- Add `Dedup` step on `ShortestPath` result
22+
23+
### Changed
24+
25+
- Set capture ID in flow metadata
26+
- Properly handle updates in Gremlin filters
27+
- Fix rtt calculation for RST packet
28+
- Set real Kubernetes cluster name
29+
530
## [0.23.0] - 2019-05-15
631
### Added
732
- OVN probe with support for logical switches, routers, ports and ACLs

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
skydive_release: v0.23.0
2+
skydive_release: v0.24.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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
%endif
3535
%endif
3636

37-
%{!?fullver:%global fullver 0.23.0}
37+
%{!?fullver:%global fullver 0.24.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+
* Mon Jun 24 2019 Sylvain Baubeau <[email protected]> - 0.24.0-1
254+
- Bump to version 0.24.0
255+
253256
* Wed May 15 2019 Sylvain Baubeau <[email protected]> - 0.23.0-1
254257
- Bump to version 0.23.0
255258

contrib/packaging/rpm/skydive.te.fedora

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
policy_module(skydive, 0.23.0)
1+
policy_module(skydive, 0.24.0)
22

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

contrib/packaging/rpm/skydive.te.rhel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
policy_module(skydive, 0.23.0)
1+
policy_module(skydive, 0.24.0)
22

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

scripts/ci/create-vagrant-boxes.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ fi
1111

1212
dir="$(dirname "$0")"
1313

14-
# SKYDIVE_RELEASE is a relase tag (like "v0.1.2") or "master"
14+
# SKYDIVE_RELEASE is a release tag (like "v0.1.2") or "master"
1515
export SKYDIVE_RELEASE=master
16-
BOXVERSION=0.24.0.alpha
16+
BOXVERSION=0.25.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)