Skip to content

Commit

Permalink
Version 0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
Neil Jerram authored and Neil Jerram committed Apr 27, 2015
1 parent d4dcd0c commit be4eab9
Show file tree
Hide file tree
Showing 4 changed files with 121 additions and 4 deletions.
60 changes: 60 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,63 @@
calico (0.17) trusty; urgency=medium

* Bug fixes and improvements to Calico components
- Clean up config loading (code review markups).
- Remove references to ACL manager from RHEL docs
- Etcd install instructions for RHEL
- Be more defensive in etcd polling, catch various HTTP-related exceptions.
- Fix import order in felix.py to invoke gevent monkey-patch first.
- Fix missing arg to log message.
- Remove incorrect comment.
- Fix plugin to set only icmp_type/code and not port range for ICMP.
- Add UTs for ICMP rule generation.
- Add felix support for ICMP code, firewall values.
- Validate plugin data agsint felix's validation routines.
- Code review markups.
- Fix missing continue: use setting of response as a gate in fetcd.py.
- Increase severity of socket.timeout warning.
- Add httplib errors into excepts.
- Code review markups.
- Update involved.rst
- Update contribute.rst
- Tidy up line lengths
- Revert "Tidy up line lengths"
- Tidy up line lengths
- Don't unnecessarily pin versions
- Fix up a range of commnents.
- Cleanup toctree for contribution doc
- Further README cleanup
- The letter 'a' is tricksy
- Update contribute.rst
- RPM Version 0.16
- Fix RPM version
- Beef up syslog format, add a couple of additional logs.
- Debian packaging: python-gevent is not actually needed on controller
- RPM packaging: remove ACL manager and ZMQ deps; add python-gevent (fixes #435)
- Packaging: add dependency of Felix on net-tools, for the arp command (fixes #146)
- Make ipset uperations idempotent.
- Fix cluster UUID check. Copy UUID from old client to new, fix typo in arg name.
- RHEL install markups
- Fix my own review markups
- Run etcd on startup
- After reboots
- Copy etcd binaries to the right place
- Update bundle for etcd architecture
- Use commit id instead of tag in tox dependency
- Code review markups.
- Prevent ActiveIpset from recreating ipset after on_unreferenced().
- Fix missing stdin argument to Popen, beef up diags for ActiveIpset.
- Code review markups.
- Update openstack.rst
- Don't setuid on RHEL 6.5.
- Wrapping lines
- Fix numbering in ubuntu-opens-install.rst
- Add missing jump target to ICMPv6 from endpoint rule.
- Add "icmp_code" to whitelist of allowed rule fields.
- Prevent programming of ICMP type 255, which the kernel treats as wildcard.
- Isolate rule parsing failure to individual rule.

-- Neil Jerram <[email protected]> Mon, 27 Apr 2015 15:58:46 +0100

calico (0.16) trusty; urgency=medium

* Move to etcd for inter-component communications from zeromq
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.16'
version = '0.17'
# The full version, including alpha/beta/rc tags.
release = '0.16'
release = '0.17'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
59 changes: 58 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.16
Version: 0.17
Release: 1%{?dist}
License: Apache-2
URL: http://projectcalico.org
Expand Down Expand Up @@ -204,6 +204,63 @@ rm -rf $RPM_BUILD_ROOT


%changelog
* Mon Apr 27 2015 Neil Jerram <[email protected]> 0.17
- Bug fixes and improvements to Calico components
- Clean up config loading (code review markups).
- Remove references to ACL manager from RHEL docs
- Etcd install instructions for RHEL
- Be more defensive in etcd polling, catch various HTTP-related exceptions.
- Fix import order in felix.py to invoke gevent monkey-patch first.
- Fix missing arg to log message.
- Remove incorrect comment.
- Fix plugin to set only icmp_type/code and not port range for ICMP.
- Add UTs for ICMP rule generation.
- Add felix support for ICMP code, firewall values.
- Validate plugin data agsint felix's validation routines.
- Code review markups.
- Fix missing continue: use setting of response as a gate in fetcd.py.
- Increase severity of socket.timeout warning.
- Add httplib errors into excepts.
- Code review markups.
- Update involved.rst
- Update contribute.rst
- Tidy up line lengths
- Revert "Tidy up line lengths"
- Tidy up line lengths
- Don't unnecessarily pin versions
- Fix up a range of commnents.
- Cleanup toctree for contribution doc
- Further README cleanup
- The letter 'a' is tricksy
- Update contribute.rst
- RPM Version 0.16
- Fix RPM version
- Beef up syslog format, add a couple of additional logs.
- Debian packaging: python-gevent is not actually needed on controller
- RPM packaging: remove ACL manager and ZMQ deps; add python-gevent (fixes #435)
- Packaging: add dependency of Felix on net-tools, for the arp command (fixes #146)
- Make ipset uperations idempotent.
- Fix cluster UUID check. Copy UUID from old client to new, fix typo in arg name.
- RHEL install markups
- Fix my own review markups
- Run etcd on startup
- After reboots
- Copy etcd binaries to the right place
- Update bundle for etcd architecture
- Use commit id instead of tag in tox dependency
- Code review markups.
- Prevent ActiveIpset from recreating ipset after on_unreferenced().
- Fix missing stdin argument to Popen, beef up diags for ActiveIpset.
- Code review markups.
- Update openstack.rst
- Don't setuid on RHEL 6.5.
- Wrapping lines
- Fix numbering in ubuntu-opens-install.rst
- Add missing jump target to ICMPv6 from endpoint rule.
- Add "icmp_code" to whitelist of allowed rule fields.
- Prevent programming of ICMP type 255, which the kernel treats as wildcard.
- Isolate rule parsing failure to individual rule.

* Tue Apr 21 2015 Matt Dupre <[email protected]> 0.16
- First release with etcd

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.16",
version = "0.17",
packages = setuptools.find_packages(),
entry_points = {
'console_scripts': [
Expand Down

0 comments on commit be4eab9

Please sign in to comment.