-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release 18.0.0 #11
Open
ralphm
wants to merge
3
commits into
master
Choose a base branch
from
release-18.0.0
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Release 18.0.0 #11
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Copyright (c) 2012-2014 | ||
Copyright (c) 2012-2018 | ||
Mochi Media, Inc. | ||
Rackspace Hosting, Inc. | ||
Ralph Meijer | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include NEWS.rst | ||
include LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
News | ||
==== | ||
|
||
This project uses `CalVer <http://calver.org>`_ with a strict backwards | ||
compatibility policy. The third digit is only for regressions. | ||
|
||
Changes for the upcoming release can be found in the `vor/newsfragments` | ||
directory. | ||
|
||
.. | ||
Do *NOT* add changelog entries here! | ||
|
||
This changelog is managed by towncrier and is compiled at release time from | ||
the news fragments directory. | ||
|
||
.. towncrier release notes start | ||
|
||
Vor 18.0.0rc1 (2018-03-07) | ||
========================== | ||
|
||
Features | ||
-------- | ||
|
||
- vor.elasticsearch now supports the Elasticsearch 1.0 API (#1) | ||
- The new module vor.beanstalk adds support for Beanstalk stats. (#2) | ||
- vor.elasticsearch.ElasticSearchNodeStatsGraphiteService now has a boolean | ||
`hostname_only` parameter to strip the domain off the node's name. (#4, #6) | ||
- The new vor.kafka module adds support for Kafka Consumer Offset polling. (#5) | ||
- The new vor.elasticsearch.ElasticSearchIndicesStatsGraphiteService provides a | ||
poller for the Indices Stats API. (#7, #9) | ||
- vor.elasticsearch now supports basic authentication and (non-validated) https | ||
for its pollers. (#10) | ||
|
||
|
||
Fixes | ||
----- | ||
|
||
- vor.elasticsearch pollers now remove spaces from metric names. (#8) | ||
|
||
|
||
0.0.1 (2014-02-10) | ||
================== | ||
|
||
First release |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
Vör | ||
=== | ||
|
||
|pypi| | ||
|travis| | ||
|
||
|
||
What is this? | ||
------------- | ||
|
||
Vör is a set of services for gathering metrics by polling systems and | ||
delivering them to graphite. | ||
|
||
Currently there is support for polling metrics from Elasticsearch and Redis. | ||
|
||
|
||
Requirements | ||
------------ | ||
|
||
- Python 2.7 or pypy equivalent | ||
- Twisted 16.0.0 or later | ||
- incremental 16.9.0 or later | ||
- treq 16.20.0 or later for Elasticsearch support | ||
- txredis for Redis support | ||
- pybeanstalk for Beanstalk support | ||
|
||
|
||
Copyright and Warranty | ||
---------------------- | ||
|
||
The code in this distribution started as an internal tool at Mochi Media and | ||
is made available under the MIT License. See the included `LICENSE <LICENSE>`_ | ||
file for details. | ||
|
||
|
||
Contributors | ||
------------ | ||
|
||
- Christopher Zorn | ||
- Zack Dever | ||
- Dana Powers | ||
|
||
|
||
Author | ||
------ | ||
|
||
Ralph Meijer | ||
<mailto:ralphm@ik.nu> | ||
<xmpp:ralphm@ik.nu> | ||
|
||
|
||
Name | ||
---- | ||
|
||
In Norse mythology, Vör is a goddess associated with wisdom. She is described | ||
as "wise and inquiring, so that nothing can be concealed from her". | ||
|
||
|
||
.. |pypi| image:: http://img.shields.io/pypi/v/vor.svg | ||
.. _pypi: https://pypi.python.org/pypi/vor | ||
|
||
.. |travis| image:: https://travis-ci.org/mochi/vor.svg?branch=master | ||
.. _travis: https://travis-ci.org/mochi/vor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[tool.towncrier] | ||
package = "vor" | ||
package_dir = "." | ||
filename = "NEWS.rst" | ||
|
||
[[tool.towncrier.type]] | ||
directory = "feature" | ||
name = "Features" | ||
showcontent = true | ||
|
||
[[tool.towncrier.type]] | ||
directory = "bugfix" | ||
name = "Fixes" | ||
showcontent = true | ||
|
||
[[tool.towncrier.type]] | ||
directory = "doc" | ||
name = "Improved Documentation" | ||
showcontent = true | ||
|
||
[[tool.towncrier.type]] | ||
directory = "removal" | ||
name = "Deprecations and Removals" | ||
showcontent = true | ||
|
||
[[tool.towncrier.type]] | ||
directory = "misc" | ||
name = "Misc" | ||
showcontent = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
""" | ||
Wokkel. | ||
|
||
Support library for Twisted applications using XMPP protocols. | ||
""" | ||
|
||
from vor._version import __version__ as _incremental_version | ||
|
||
__version__ = _incremental_version.public() | ||
|
||
__all__ = ["__version__"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from incremental import Version | ||
|
||
__version__ = Version("vor", 18, 0, 0, release_candidate=1) | ||
__all__ = ["__version__"] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't wokkel ;)