Skip to content

Commit

Permalink
Merge pull request #1881 from lebauce/release-0.24
Browse files Browse the repository at this point in the history
Bump to version 0.24.0
  • Loading branch information
safchain committed Jul 16, 2019
2 parents 0ba68d4 + 5472939 commit d532ef7
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 6 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,31 @@

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

## [0.24.0] - 2019-06-24
### Added

- Add Gremlin console in Web UI
- Add `ovsnetflow` capture to act as a NetFlow receiver
- Add target mechanism to export flow using ERSPAN or NetFlow
- Packet injector:
- Allow use as a standalone executable
- Allow reaching external IPs
- Support multiple captures on a single interface
- Allow creating API resources with a TTL
- Added support for all DNS fields
- Add flow validation workflow
- Gremlin:
- Add `Has` step on `Values` result
- Add `NEE` (not equal or not exist) predicate
- Add `Dedup` step on `ShortestPath` result

### Changed

- Set capture ID in flow metadata
- Properly handle updates in Gremlin filters
- Fix rtt calculation for RST packet
- Set real Kubernetes cluster name

## [0.23.0] - 2019-05-15
### Added
- OVN probe with support for logical switches, routers, ports and ACLs
Expand Down
2 changes: 1 addition & 1 deletion contrib/ansible/roles/skydive_common/defaults/main.yml
@@ -1,5 +1,5 @@
---
skydive_release: v0.23.0
skydive_release: v0.24.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
Expand Up @@ -34,7 +34,7 @@
%endif
%endif

%{!?fullver:%global fullver 0.23.0}
%{!?fullver:%global fullver 0.24.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
* Mon Jun 24 2019 Sylvain Baubeau <sbaubeau@redhat.com> - 0.24.0-1
- Bump to version 0.24.0

* Wed May 15 2019 Sylvain Baubeau <sbaubeau@redhat.com> - 0.23.0-1
- Bump to version 0.23.0

Expand Down
2 changes: 1 addition & 1 deletion contrib/packaging/rpm/skydive.te.fedora
@@ -1,4 +1,4 @@
policy_module(skydive, 0.23.0)
policy_module(skydive, 0.24.0)

########################################
#
Expand Down
2 changes: 1 addition & 1 deletion contrib/packaging/rpm/skydive.te.rhel
@@ -1,4 +1,4 @@
policy_module(skydive, 0.23.0)
policy_module(skydive, 0.24.0)

########################################
#
Expand Down
4 changes: 2 additions & 2 deletions scripts/ci/create-vagrant-boxes.sh
Expand Up @@ -11,9 +11,9 @@ fi

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

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

Please sign in to comment.