Skip to content

Commit

Permalink
Bump to version 0.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lebauce committed Dec 7, 2020
1 parent 8f0c434 commit 2bb136b
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 6 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

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

## [0.27.0] - 2020-12-07
### Added

- Persist graph element across analyzer restarts
- Add new block device topology probe
- Add node and edge APIs
- Add PATCH method to modify resources
- Add authentication definition to swagger description
- Add SSL support to Open vSwitch OpenFlow parser
- Allow removing nodes and edges in batch from the CLI
- Support multiple elasticsearch hosts, SSL and authentication

### Changed

- Bump to elasticsearch v7
- Extract graph engine to its own standalone package 'graffiti'
- Move hardware related root node data to a probe
- Use 'flattened' type in elasticsearch to avoid mapping explosion

## [0.26.0] - 2019-10-18
### Added

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.26.0
skydive_release: v0.27.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.26.0}
%{!?fullver:%global fullver 0.27.0}
%define version %{extractversion %{fullver}}
%{!?tag:%global tag 1}

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

%changelog
* Mon Dec 7 2020 Sylvain Baubeau <[email protected]> - 0.27.0-1
- Bump to version 0.27.0

* Fri Oct 18 2019 Sylvain Baubeau <[email protected]> - 0.26.0-1
- Bump to version 0.26.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.26.0)
policy_module(skydive, 0.27.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.26.0)
policy_module(skydive, 0.27.0)

########################################
#
Expand Down
2 changes: 1 addition & 1 deletion graffiti/api/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
// Schemes: http, https
// Host: localhost:8082
// BasePath: /api
// Version: 0.26.0
// Version: 0.27.0
// License: Apache http://opensource.org/licenses/Apache-2.0
// Contact: Skydive mailing list <[email protected]>
//
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 release tag (like "v0.1.2") or "master"
export SKYDIVE_RELEASE=master
BOXVERSION=0.27.0.alpha
BOXVERSION=0.28.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 2bb136b

Please sign in to comment.