Skip to content

Commit f01772d

Browse files
committed
Address minor issues on Changelog
Signed-off-by: Kemal Akkoyun <[email protected]>
1 parent 8184d76 commit f01772d

File tree

1 file changed

+24
-5
lines changed

1 file changed

+24
-5
lines changed

CHANGELOG.md

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
## 1.11.0 / 2021-06-07
22

3-
* [ENHANCEMENT] API client: Add newer fields to Rules API #855
4-
* [ENHANCEMENT] API client: Add missing fields to Targets API #856
5-
* [FEATURE] API client: Add exemplars API support #861
6-
* [CHANGE] Add new collectors package #862
3+
* [CHANGE] Add new collectors package. #862
4+
* [CHANGE] `prometheus.NewExpvarCollector` use `collectors.NewExpvarCollector` instead. #862
5+
* [CHANGE] `prometheus.NewGoCollector` use `collectors.NewGoCollector` instead. #862
6+
* [CHANGE] `prometheus.NewBuildInfoCollector` use `collectors.NewBuildInfoCollector` instead. #862
7+
* [FEATURE] Add new collector for database/sql#DBStats. #866
8+
* [FEATURE] API client: Add exemplars API support. #861
9+
* [ENHANCEMENT] API client: Add newer fields to Rules API. #855
10+
* [ENHANCEMENT] API client: Add missing fields to Targets API. #856
711

812
## 1.10.0 / 2021-03-18
913

@@ -21,7 +25,7 @@
2125

2226
* [CHANGE] API client: Use `time.Time` rather than `string` for timestamps in `RuntimeinfoResult`. #777
2327
* [FEATURE] Export `MetricVec` to facilitate implementation of vectors of custom `Metric` types. #803
24-
* [FEATURE API client: Support `/status/tsdb` endpoint. #773
28+
* [FEATURE] API client: Support `/status/tsdb` endpoint. #773
2529
* [ENHANCEMENT] API client: Enable GET fallback on status code 501. #802
2630
* [ENHANCEMENT] Remove `Metric` references after reslicing to free up more memory. #784
2731

@@ -101,6 +105,7 @@ _This release removes all previously deprecated features, resulting in the break
101105
* [BUGFIX] Make `AlreadyRegisteredError` usable for wrapped registries. #607
102106

103107
## 0.9.4 / 2019-06-07
108+
104109
* [CHANGE] API client: Switch to alert values as strings. #585
105110
* [FEATURE] Add a collector for Go module build information. #595
106111
* [FEATURE] promhttp: Add an counter for internal errors during HTTP exposition. #594
@@ -110,6 +115,7 @@ _This release removes all previously deprecated features, resulting in the break
110115
* [BUGFIX] Reduce test flakiness. #573
111116

112117
## 0.9.3 / 2019-05-16
118+
113119
* [CHANGE] Required Go version is now 1.9+. #561
114120
* [FEATURE] API client: Add POST with get fallback for Query/QueryRange. #557
115121
* [FEATURE] API client: Add alerts endpoint. #552
@@ -131,6 +137,7 @@ _This release removes all previously deprecated features, resulting in the break
131137
* [BUGFIX] API client: Deal with discovered labels properly. #529
132138

133139
## 0.9.2 / 2018-12-06
140+
134141
* [FEATURE] Support for Go modules. #501
135142
* [FEATURE] `Timer.ObserveDuration` returns observed duration. #509
136143
* [ENHANCEMENT] Improved doc comments and error messages. #504
@@ -139,6 +146,7 @@ _This release removes all previously deprecated features, resulting in the break
139146
#498
140147

141148
## 0.9.1 / 2018-11-03
149+
142150
* [FEATURE] Add `WriteToTextfile` function to facilitate the creation of
143151
*.prom files for the textfile collector of the node exporter. #489
144152
* [ENHANCEMENT] More descriptive error messages for inconsistent label
@@ -151,6 +159,7 @@ _This release removes all previously deprecated features, resulting in the break
151159
#479
152160

153161
## 0.9.0 / 2018-10-15
162+
154163
* [CHANGE] Go1.6 is no longer supported.
155164
* [CHANGE] More refinements of the `Registry` consistency checks: Duplicated
156165
labels are now detected, but inconsistent label dimensions are now allowed.
@@ -203,6 +212,7 @@ _This release removes all previously deprecated features, resulting in the break
203212
responses. #476 #414
204213

205214
## 0.8.0 / 2016-08-17
215+
206216
* [CHANGE] Registry is doing more consistency checks. This might break
207217
existing setups that used to export inconsistent metrics.
208218
* [CHANGE] Pushing to Pushgateway moved to package `push` and changed to allow
@@ -226,6 +236,7 @@ _This release removes all previously deprecated features, resulting in the break
226236
* [BUGFIX] Handle collisions in MetricVec.
227237

228238
## 0.7.0 / 2015-07-27
239+
229240
* [CHANGE] Rename ExporterLabelPrefix to ExportedLabelPrefix.
230241
* [BUGFIX] Closed gaps in metric consistency check.
231242
* [BUGFIX] Validate LabelName/LabelSet on JSON unmarshaling.
@@ -236,12 +247,14 @@ _This release removes all previously deprecated features, resulting in the break
236247
* [ENHANCEMENT] Change responseWriterDelegator.written to int64.
237248

238249
## 0.6.0 / 2015-06-01
250+
239251
* [CHANGE] Rename process_goroutines to go_goroutines.
240252
* [ENHANCEMENT] Validate label names during YAML decoding.
241253
* [ENHANCEMENT] Add LabelName regular expression.
242254
* [BUGFIX] Ensure alignment of struct members for 32-bit systems.
243255

244256
## 0.5.0 / 2015-05-06
257+
245258
* [BUGFIX] Removed a weakness in the fingerprinting aka signature code.
246259
This makes fingerprinting slower and more allocation-heavy, but the
247260
weakness was too severe to be tolerated.
@@ -260,6 +273,7 @@ _This release removes all previously deprecated features, resulting in the break
260273
* [CHANGE] A number of new reserved labels and prefixes.
261274

262275
## 0.4.0 / 2015-04-08
276+
263277
* [CHANGE] Return NaN when Summaries have no observations yet.
264278
* [BUGFIX] Properly handle Summary decay upon Write().
265279
* [BUGFIX] Fix the documentation link to the consumption library.
@@ -269,16 +283,19 @@ _This release removes all previously deprecated features, resulting in the break
269283
* [MAINTENANCE] Adjusted to changes in matttproud/golang_protobuf_extensions.
270284

271285
## 0.3.2 / 2015-03-11
286+
272287
* [BUGFIX] Fixed the receiver type of COWMetric.Set(). This method is
273288
only used by the Prometheus server internally.
274289
* [CLEANUP] Added licenses of vendored code left out by godep.
275290

276291
## 0.3.1 / 2015-03-04
292+
277293
* [ENHANCEMENT] Switched fingerprinting functions from own free list to
278294
sync.Pool.
279295
* [CHANGE] Makefile uses Go 1.4.2 now (only relevant for examples and tests).
280296

281297
## 0.3.0 / 2015-03-03
298+
282299
* [CHANGE] Changed the fingerprinting for metrics. THIS WILL INVALIDATE ALL
283300
PERSISTED FINGERPRINTS. IF YOU COMPILE THE PROMETHEUS SERVER WITH THIS
284301
VERSION, YOU HAVE TO WIPE THE PREVIOUSLY CREATED STORAGE.
@@ -293,6 +310,7 @@ _This release removes all previously deprecated features, resulting in the break
293310
require fewer allocations than the ones currently used by the server.
294311

295312
## 0.2.0 / 2015-02-23
313+
296314
* [FEATURE] Introduce new Histagram metric type.
297315
* [CHANGE] Ignore process collector errors for now (better error handling
298316
pending).
@@ -309,5 +327,6 @@ _This release removes all previously deprecated features, resulting in the break
309327
* [CLEANUP] Updated vendoring of beorn7/perks.
310328

311329
## 0.1.0 / 2015-02-02
330+
312331
* [CLEANUP] Introduced semantic versioning and changelog. From now on,
313332
changes will be reported in this file.

0 commit comments

Comments
 (0)