Skip to content

Commit df81041

Browse files
committed
Release version 34.0.0
1 parent 462c9ac commit df81041

4 files changed

Lines changed: 62 additions & 6 deletions

File tree

CHANGES.rst

Lines changed: 57 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,65 @@
11
Changelog
22
=========
33

4-
33.3.0 (2015-04-08)
4+
34.0.0 (2015-07-24)
55
-------------------
66

7+
- Added ssl-tcp key file support. [babbleshack]
8+
9+
- Rename configuration dir and debian bin to python-beaver. [David
10+
Moravek]
11+
12+
- Rename debian package back to python-beaver. [David Moravek]
13+
14+
- Debian packaging code review; thx @mnicky. [David Moravek]
15+
16+
- Improves debian packaging. [David Moravek]
17+
18+
- Fix tests when ZMQ is not installed. [David Moravek]
19+
20+
- Fix tests for python 2.7 (add funcsigs test dependency) [David
21+
Moravek]
22+
23+
- Move badge to below header. [Jose Diaz-Gonzalez]
24+
25+
- Add constants for data types, validate in init, use callback map.
26+
[Hector Castro]
27+
28+
- Move data type method conditional outside of loop. [Hector Castro]
29+
30+
- Add channel support to Redis transport. [Hector Castro]
31+
32+
This changeset adds support for publishing log entries to a Redis
33+
channel, which is also supported by Logstash's Redis input.
34+
35+
Beaver configuration files can now supply a `redis_data_type` key. Valid
36+
values for this key are `list` and `channel`. If left unset, the default
37+
is `list`.
38+
39+
Attempts to resolve #266.
40+
41+
42+
- Introduced a stomp transport for beaver using stomp.py. [Peter
43+
Lenderyou]
44+
45+
- Fix references to ConfigParser error classes. [Jose Diaz-Gonzalez]
46+
47+
- Redis transport: handle multiple connections and use them in round
48+
robin style. [musil]
49+
50+
- Fixes GELF format according to specs. [Marvin Frick]
51+
52+
GELF formatted messages need to be \0 ended. At least for sending over
53+
TCP.
54+
55+
56+
- Kafka round robin partitioner. [David Moravek]
57+
58+
- Solve error: cannot convert argument to integer. [Theofilis George-
59+
Nektarios]
60+
61+
See at #312
62+
763
- Basic docs for GELF formatter. [Oleg Rekutin]
864

965
Also fixes formatting issues with the immediately-preceding HTTP

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ Using PIP:
2020

2121
From Github::
2222

23-
pip install git+git://github.com/josegonzalez/python-beaver.git@33.3.0#egg=beaver
23+
pip install git+git://github.com/josegonzalez/python-beaver.git@34.0.0#egg=beaver
2424

2525
From PyPI::
2626

27-
pip install beaver==33.3.0
27+
pip install beaver==34.0.0
2828

2929
Documentation
3030
=============

beaver/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# -*- coding: utf-8 -*-
2-
__version__ = '33.3.0'
2+
__version__ = '34.0.0'

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@
5353
# built documents.
5454
#
5555
# The short X.Y version.
56-
version = '33.3.0'
56+
version = '34.0.0'
5757
# The full version, including alpha/beta/rc tags.
58-
release = '33.3.0'
58+
release = '34.0.0'
5959

6060
# The language for content autogenerated by Sphinx. Refer to documentation
6161
# for a list of supported languages.

0 commit comments

Comments
 (0)