Skip to content

Commit 2070f5b

Browse files
authored
Merge pull request #96 from jelu/release/1.2.0
Release 1.2.0
2 parents bed1a91 + 9e498ec commit 2070f5b

File tree

5 files changed

+48
-4
lines changed

5 files changed

+48
-4
lines changed

CHANGES

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,23 @@
1+
2022-06-13 Jerry Lundström
2+
3+
Release 1.2.0
4+
5+
This release fixes handling of base64'ed strings in DSC XML and will
6+
now decode them back into text when reading, the selected output will
7+
then handling any quoting or escaping needed.
8+
Added a new option for Prometheus output to set a prefix for metrics so
9+
that they can be easily separated from other metrics if needed, see
10+
`man dsc-datatool-output prometheus`.
11+
12+
5f9f972 Fix COPR
13+
3d72019 Prometheus metric prefix
14+
bdc992e base64 labels
15+
116
2022-04-05 Jerry Lundström
217

318
Release 1.1.0
419

5-
This releases adds support for Prometheus' node_exporter using it's
20+
This release adds support for Prometheus' node_exporter using it's
621
Textfile Collector (see `man dsc-datatool-output prometheus`) and
722
fixes a bug in InfluxDB output when selecting what timestamp to use.
823
Also updates packages and Grafana test site dashboards.

debian/changelog

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
dsc-datatool (1.2.0-1~unstable+1) unstable; urgency=low
2+
3+
* Release 1.2.0
4+
5+
This release fixes handling of base64'ed strings in DSC XML and will
6+
now decode them back into text when reading, the selected output will
7+
then handling any quoting or escaping needed.
8+
Added a new option for Prometheus output to set a prefix for metrics so
9+
that they can be easily separated from other metrics if needed, see
10+
`man dsc-datatool-output prometheus`.
11+
12+
5f9f972 Fix COPR
13+
3d72019 Prometheus metric prefix
14+
bdc992e base64 labels
15+
16+
-- Jerry Lundström <[email protected]> Mon, 13 Jun 2022 15:25:09 +0200
17+
118
dsc-datatool (1.1.0-1~unstable+1) unstable; urgency=low
219

320
* Release 1.1.0

dsc_datatool/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def process(self, datasets)
3232
:copyright: 2022 OARC, Inc.
3333
"""
3434

35-
__version__ = '1.1.0'
35+
__version__ = '1.2.0'
3636

3737
import argparse
3838
import logging

rpm/dsc-datatool.spec

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: dsc-datatool
2-
Version: 1.1.0
2+
Version: 1.2.0
33
Release: 1%{?dist}
44
Summary: Export DSC data to other formats and/or databases
55
Group: Productivity/Networking/DNS/Utilities
@@ -85,6 +85,18 @@ install -m644 man/man7/dsc-datatool-transformer-netremap.7 %{buildroot}%{_mandir
8585

8686

8787
%changelog
88+
* Mon Jun 13 2022 Jerry Lundström <[email protected]> 1.2.0-1
89+
- Release 1.2.0
90+
* This release fixes handling of base64'ed strings in DSC XML and will
91+
now decode them back into text when reading, the selected output will
92+
then handling any quoting or escaping needed.
93+
* Added a new option for Prometheus output to set a prefix for metrics so
94+
that they can be easily separated from other metrics if needed, see
95+
`man dsc-datatool-output prometheus`.
96+
* Commits:
97+
5f9f972 Fix COPR
98+
3d72019 Prometheus metric prefix
99+
bdc992e base64 labels
88100
* Tue Apr 05 2022 Jerry Lundström <[email protected]> 1.1.0-1
89101
- Release 1.1.0
90102
* This releases adds support for Prometheus' node_exporter using it's

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='dsc_datatool',
5-
version='1.1.0',
5+
version='1.2.0',
66
packages=find_packages(),
77
include_package_data=True,
88
zip_safe=False,

0 commit comments

Comments
 (0)