Skip to content

Commit 155a187

Browse files
author
Ryan Fitzpatrick
committed
Version 1.1.0
* Incorporates Detector and Incident API functionality * Adds SignalFlow computation field * Removes unsupported datapoint attribute
1 parent 8233e87 commit 155a187

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

CHANGELOG.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
This file documents important changes to the SignalFx Python client library.
44

5-
- [[1.0.19] - 2018-05-03: Dimension support in Pyformance wrapper](#1019---2018-05-03-dimension-support-in-pyformance-wrapper)
5+
- [[1.1.0] - 2019-02-28: Expanded Detector and Incident methods](#110---2019-02-28-expanded-detector-and-incident-methods)
6+
- [[1.0.19] - 2018-05-03: dimension support in pyformance wrapper](#1019---2018-05-03-dimension-support-in-pyformance-wrapper)
67
- [[1.0.18] - 2018-03-15: Compression of datapoint payloads](#1018---2018-03-15-compression-of-datapoint-payloads)
78
- [[1.0.17] - 2018-03-02: Support for immediate SignalFlow results](#1017---2018-03-02-support-for-immediate-signalflow-results)
89
- [[1.0.16] - 2017-03-24: SignalFlow streaming performance](#1016---2017-03-24-signalflow-streaming-performance)
@@ -18,6 +19,16 @@ This file documents important changes to the SignalFx Python client library.
1819
- [[1.0.5] - 2016-09-29: Python 3 compatibility](#105---2016-09-29-python-3-compatibility)
1920
- [[1.0.1] - 2016-06-02: Support for SignalFlow API](#101---2016-06-02-support-for-signalflow-api)
2021

22+
#### [1.1.0] - 2019-02-28: Expanded Detector and Incident methods
23+
24+
Added methods for accessing the API functionality of retrieving
25+
Incidents, retrieving a Detector by its ID, retrieving Incidents for a
26+
Detector by its ID, and clearing an Incident by its ID.
27+
28+
Also added preliminary support for `disable_all_metric_publishes`
29+
flag when executing SignalFlow computations and removed an unsupported
30+
`Property` datapoint attribute.
31+
2132
#### [1.0.19] - 2018-05-03: Dimension support in Pyformance wrapper
2233

2334
This release enhances the SignalFx pyformance package and extends

LICENSE

+2-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,8 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright {yyyy} {name of copyright owner}
189+
Copyright 2013-2014 SignalFuse, Inc.
190+
Copyright 2015-2019 SignalFx, Inc.
190191

191192
Licensed under the Apache License, Version 2.0 (the "License");
192193
you may not use this file except in compliance with the License.

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -366,4 +366,4 @@ a ``ValueError`` exception.
366366
License
367367
-------
368368

369-
Apache Software License v2. Copyright © 2014-2017 SignalFx
369+
Apache Software License v2. Copyright © 2014-2019 SignalFx

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22

33
# Copyright (C) 2013-2014 SignalFuse, Inc. All rights reserved.
4-
# Copyright (C) 2015-2016 SignalFx, Inc. All rights reserved.
4+
# Copyright (C) 2015-2019 SignalFx, Inc. All rights reserved.
55

66
from setuptools import setup, find_packages
77

signalfx/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (C) 2015-2016 SignalFx, Inc. All rights reserved.
22

33
name = 'signalfx'
4-
version = '1.0.19'
4+
version = '1.1.0'
55

66
user_agent = 'signalfx-python/' + version

0 commit comments

Comments
 (0)