Skip to content

Commit

Permalink
Version 0.26
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasa committed Jun 29, 2015
1 parent 3efe48b commit 31477b5
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 0.26-dev
## 0.26

- Update and improve security model documentation.
- Streamline conntrack rules, move them to top-level chains to avoid
Expand All @@ -14,6 +14,7 @@
- Change log rotation strategy for logrotate to not rotate small log files.
- Delay starting the Neutron resynchronization thread until after all the
necessary state has been configured, to avoid race conditions.
- Prevent systemd restarting Felix when it is killed by administrators.

## 0.25

Expand Down
18 changes: 18 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
calico (0.26) trusty; urgency=medium

* Update and improve security model documentation.
* Streamline conntrack rules, move them to top-level chains to avoid
duplication.
* Narrow focus of input iptables chain so that it only applies to
Calico-handled traffic.
* Provide warning log when attempting to use Neutron networks that are not of
type 'local' or 'flat' with Calico.
* Handle invalid JSON in IPAM key in etcd.
* Move all log rotation into logrotate and out of Felix, to prevent conflicts.
* Change log rotation strategy for logrotate to not rotate small log files.
* Delay starting the Neutron resynchronization thread until after all the
necessary state has been configured, to avoid race conditions.
* Prevent systemd restarting Felix when it is killed by administrators.

-- Cory Benfield <[email protected]> Mon, 29 Jun 2015 11:49:42 +0100

calico (0.25) trusty; urgency=medium

* Remove stale conntrack entries when an endpoint's IP is removed.
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
# built documents.
#
# The short X.Y version.
version = '0.25'
version = '0.26'
# The full version, including alpha/beta/rc tags.
release = '0.25'
release = '0.26'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
17 changes: 16 additions & 1 deletion rpm/calico.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Name: calico
Summary: Project Calico virtual networking for cloud data centers
Version: 0.25
Version: 0.26
Release: 1%{?dist}
License: Apache-2
URL: http://projectcalico.org
Expand Down Expand Up @@ -209,6 +209,21 @@ rm -rf $RPM_BUILD_ROOT


%changelog
* Mon Jun 29 2015 Cory Benfield <[email protected]> 0.26
- Update and improve security model documentation.
- Streamline conntrack rules, move them to top-level chains to avoid
duplication.
- Narrow focus of input iptables chain so that it only applies to
Calico-handled traffic.
- Provide warning log when attempting to use Neutron networks that are not of
type 'local' or 'flat' with Calico.
- Handle invalid JSON in IPAM key in etcd.
- Move all log rotation into logrotate and out of Felix, to prevent conflicts.
- Change log rotation strategy for logrotate to not rotate small log files.
- Delay starting the Neutron resynchronization thread until after all the
necessary state has been configured, to avoid race conditions.
- Prevent systemd restarting Felix when it is killed by administrators.

* Mon Jun 22 2015 Cory Benfield <[email protected]> 0.25
- Remove stale conntrack entries when an endpoint's IP is removed.
- #672: Fix bug where profile chain was left empty instead of being
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def filter_requirements(filters, file):

setuptools.setup(
name = "calico",
version = "0.25",
version = "0.26",
packages = setuptools.find_packages(),
entry_points = {
'console_scripts': [
Expand Down

0 comments on commit 31477b5

Please sign in to comment.