-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from MatterMiners/release-0.10.0
Intermediate Release 0.10.0
- Loading branch information
Showing
9 changed files
with
31 additions
and
24 deletions.
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 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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
category: security | ||
summary: "YAML configuration files no longer allow arbitrary ``!!python/object`` tags" | ||
pull requests: | ||
- 24 | ||
description: | | ||
Parsing of YAML configuration files uses ``yaml.safe_load``, | ||
which does not load arbitrary Python objects of ``!!python/object`` tags. | ||
This avoids a known security issue that allows executing arbitrary code. | ||
pull requests: | ||
- 24 | ||
version: 0.10.0 |
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,10 +1,11 @@ | ||
category: added | ||
summary: "the ``cobald`` namespace allows for external plugin packages" | ||
pull requests: | ||
- 26 | ||
issues: | ||
- 23 | ||
description: | | ||
The ``cobald`` package is changed into a namespace package. | ||
This allows adding external packages as plugins to the namespace, | ||
for example ``cobald.remote``. | ||
issues: | ||
- 23 | ||
pull requests: | ||
- 26 | ||
version: 0.10.0 |
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,11 +1,12 @@ | ||
category: fixed | ||
summary: "fixed Line Protocol sending illegal content" | ||
pull requests: | ||
- 39 | ||
- 44 | ||
issues: | ||
- 42 | ||
description: | | ||
The Line Protocol implementation has been extended to remove cases that | ||
previously led to illegal output. ``None`` values are | ||
forbidden, and strings are escaped in field values, tags, and measurements. | ||
issues: | ||
- 42 | ||
pull requests: | ||
- 39 | ||
- 44 | ||
version: 0.10.0 |
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,11 +1,12 @@ | ||
category: added | ||
summary: "YAML configuration files support plugins via ``!MyPlugin`` tags" | ||
pull requests: | ||
- 43 | ||
issues: | ||
- 41 | ||
description: | | ||
Plugins can be registered for use in YAML configuration files. | ||
Packages register plugins via the ``cobald.config.yaml_constructors`` entry | ||
point; plugins can then be used with YAML tags such as ``!MyPlugin``. | ||
The ``cobald`` package provides its Controllers and Decorators as YAML plugins. | ||
issues: | ||
- 41 | ||
pull requests: | ||
- 43 | ||
version: 0.10.0 |
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,10 +1,11 @@ | ||
category: added | ||
summary: "Pools can be templated via ``.s`` in Python configuration files" | ||
pull requests: | ||
- 46 | ||
issues: | ||
- 32 | ||
description: | | ||
Like Controllers and Decorators, Pool classes have a ``Pool.s`` classmethod | ||
to create a template with default parameters for instances. Templates are | ||
instantiated when used in a chain, e.g. ``control_template >> pool_template``. | ||
issues: | ||
- 32 | ||
pull requests: | ||
- 46 | ||
version: 0.10.0 |
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 @@ | ||
- semver: 0.10.0 | ||
date: '2019-09-03' |
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
__summary__ = 'COBalD - the Opportunistic Balancing Daemon' | ||
__url__ = 'https://github.com/MatterMiners/cobald' | ||
|
||
__version__ = '0.9.2' | ||
__version__ = '0.10.0' | ||
__author__ = 'Eileen Kuehn, Max Fischer' | ||
__email__ = '[email protected]' | ||
__copyright__ = '2018 - 2019 %s' % __author__ | ||
|