Skip to content

Commit 7ac4586

Browse files
authored
Merge pull request #2231 from deniszh/backport/1.1.x/pr-2230
[1.1.x] Release docs
2 parents b7e51b4 + ce8f6e4 commit 7ac4586

File tree

2 files changed

+165
-0
lines changed

2 files changed

+165
-0
lines changed

docs/releases.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Release Notes
55
:maxdepth: 1
66
:glob:
77

8+
releases/1_1_2
89
releases/1_1_1
910
releases/1_0_2
1011
releases/1_0_1

docs/releases/1_1_2.rst

Lines changed: 164 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,164 @@
1+
.. _1-1-2:
2+
3+
1.1.2
4+
===========================
5+
*02/13/2017*
6+
7+
Graphite 1.1.2 is now available for usage. Please note that this is a bugfix release for stable Graphite 1.1.x branch and it's recommended for production usage. It also contains some improvements backported from master branch.
8+
9+
Source bundles are available from GitHub:
10+
11+
* https://github.com/graphite-project/graphite-web/archive/1.1.2.tar.gz
12+
* https://github.com/graphite-project/carbon/archive/1.1.2.tar.gz
13+
* https://github.com/graphite-project/whisper/archive/1.1.2.tar.gz
14+
* https://github.com/graphite-project/carbonate/archive/1.1.2.tar.gz
15+
16+
Graphite can also be installed from `PyPI <http://pypi.python.org/>`_ via
17+
`pip <http://www.pip-installer.org/en/latest/index.html>`_. PyPI bundles are here:
18+
19+
* http://pypi.python.org/pypi/graphite-web/
20+
* http://pypi.python.org/pypi/carbon/
21+
* http://pypi.python.org/pypi/whisper/
22+
* http://pypi.python.org/pypi/carbonate/
23+
24+
Upgrading
25+
---------
26+
Please upgrage carbon and graphite-web - they're contain valuable bugfixes and improvements. Whisper package was not changed.
27+
28+
29+
Incompatible changes
30+
--------------------
31+
32+
* REMOTE_FIND_TIMEOUT and REMOTE_FETCH_TIMEOUT are renamed to FIND_TIMEOUT and FETCH_TIMEOUT. Default FETCH_TIMEOUT increased from 3 to 6 seconds.
33+
34+
* Default GRAPHITE_URL is set to "http://127.0.0.1:80"
35+
36+
37+
Security Notes
38+
--------------
39+
None
40+
41+
42+
New features
43+
------------
44+
45+
Graphite-Web
46+
^^^^^^^^^^^^
47+
48+
* Add seasonality parameter for holt-winters functions (@LTMXcitrus, #2225)
49+
50+
* Percentile aggregation documentation (@wridgers, #2204)
51+
52+
* Clarifying documentation for storage-aggregation.conf (@wfhu, #2215)
53+
54+
* functions: fix groupByNode() output (@iksaif, #2213)
55+
56+
* Some cleanups for storage.py (@iksaif, #2181)
57+
58+
* Make it possible to fully disable tags (@iksaif, #2206)
59+
60+
* Adding Graphouse to the Tools page (@denish, #2208)
61+
62+
* Rename timeout settings (@DanCech, #2196)
63+
64+
* hashing: better performances (@iksaif, #2191)
65+
66+
* Added doc for nginx+gunicorn stack (configuration and deployment) (@Serphentas, #2179)
67+
68+
* improve efficiency of standard finder (@DanCech, #2185)
69+
70+
* graphite: add support for raven/sentry.io (optional) (@iksaif, #2180)
71+
72+
Carbon
73+
^^^^^^
74+
75+
* Changing default GRAPHITE_URL to http://127.0.0.1:80 (@deniszh, #747)
76+
77+
* Percentile aggregation methods in aggregator (@wridgers, #696)
78+
79+
* fnv1a_ch and mmh3_ch hashes can be used in all routers (@iksaif, #727)
80+
81+
* Add support for TCP_KEEPALIVE, enabled by default (@iksaif, #722)
82+
83+
* log: add raven/sentry support (@iksaif, #724)
84+
85+
* Add a README and examples for invoking test harness by hand (@cbowman0, #2176)
86+
87+
Whisper
88+
^^^^^^^
89+
90+
* None
91+
92+
Carbonate
93+
^^^^^^^^^
94+
95+
* carbon-sync: expose --overwrite to copy all non-null datapoints (#89, @jehiah)
96+
97+
Bug Fixes
98+
---------
99+
100+
Graphite-Web
101+
^^^^^^^^^^^^
102+
103+
* functions: fix holtWinterAberration with multiple targets (@iksaif, #2226)
104+
105+
* handle case when node.fetch returns None (@DanCech, #2223)
106+
107+
* Propagate `now` parameter for whisper reader (@deniszh, #2207)
108+
109+
* Documentation fixes (@deniszh, #2201)
110+
111+
* Do not try merge series with different length (@deniszh, #2198)
112+
113+
* app_settings: append() doesn't work on tuples (@iksaif, #2190)
114+
115+
* Fixing build-index tool (@DanCech, #2178)
116+
117+
* clarify function plugin docs (@DanCech, #2177)
118+
119+
* Tweak function docs (@DanCech, #2172)
120+
121+
* fix typo in aggregate arg definition (@DanCech, #2169)
122+
123+
* Fix hash position computation of fnv1a_ch (@DanCech, #2168)
124+
125+
* fix interval end test error (@DanCech, #2164)
126+
127+
* ignore bogus url warnings, update INSTALLED_APPS (@DanCech, #2163)
128+
129+
130+
131+
Carbon
132+
^^^^^^
133+
134+
* client: make sure the line client doesn't loose precision (@iksaif, #723)
135+
136+
* carbon line format float handling (@DanCech, #740)
137+
138+
* writers run synchronously in separate threads (@DanCech, #738)
139+
140+
* Fix leaks in writeForever and writeTagsForever (@cevans-uk, #733)
141+
142+
* run whisper and tag writers in separate threads (@DanCech, #731)
143+
144+
* carbon: use a generator in routers instead of returning the full set (@iksaif, #728)
145+
146+
* hashing: fix performance regression (@iksaif, #726)
147+
148+
* Don't require six in setup.py (@iksaif, #725)
149+
150+
* Fix hash position computation of fnv1a_ch (@DanCech, #717)
151+
152+
* restore droppedCreates metric (@fessyfoo, #710)
153+
154+
155+
Whisper
156+
^^^^^^^
157+
158+
* None
159+
160+
161+
Carbonate
162+
^^^^^^^^^
163+
164+
* fill: fix bugs causing some data points not to be copied (#90, @jehiah)

0 commit comments

Comments
 (0)