File tree 8 files changed +25
-5
lines changed
8 files changed +25
-5
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG - Aqua
2
2
3
+ ## 1.0.1 / 2025-03-17
4
+
5
+ * Stop using simplejson and use the standard library instead
6
+
3
7
## 1.0.0 / 2018-12-11
4
8
5
9
*** Added*** :
Original file line number Diff line number Diff line change 1
1
# (C) Datadog, Inc. 2018
2
2
# All rights reserved
3
3
# Licensed under a 3-clause BSD style license (see LICENSE)
4
- __version__ = '1.0.0 '
4
+ __version__ = '1.0.1 '
Original file line number Diff line number Diff line change 1
1
# (C) Datadog, Inc. 2018
2
2
# All rights reserved
3
3
# Licensed under a 3-clause BSD style license (see LICENSE)
4
- import simplejson as json
4
+ import json
5
+
5
6
from six .moves .urllib .parse import urljoin
6
7
7
8
from datadog_checks .base import AgentCheck , ConfigurationError
Original file line number Diff line number Diff line change 1
1
# CHANGELOG - puma
2
2
3
+ ## 1.2.2 / 2025-03-17
4
+
5
+ * Stop using simplejson and use the standard library instead
6
+
3
7
## 1.2.1 / 2023-10-05
4
8
5
9
*** Fixed*** :
Original file line number Diff line number Diff line change 1
- __version__ = '1.2.1 '
1
+ __version__ = '1.2.2 '
Original file line number Diff line number Diff line change @@ -306,6 +306,16 @@ instances:
306
306
# - TLSv1.2
307
307
# - TLSv1.3
308
308
309
+ ## @param tls_ciphers - list of strings - optional
310
+ ## The list of ciphers suites to use when connecting to an endpoint. If not specified,
311
+ ## `ALL` ciphers are used. For list of ciphers see:
312
+ ## https://www.openssl.org/docs/man1.0.2/man1/ciphers.html
313
+ #
314
+ # tls_ciphers:
315
+ # - TLS_AES_256_GCM_SHA384
316
+ # - TLS_CHACHA20_POLY1305_SHA256
317
+ # - TLS_AES_128_GCM_SHA256
318
+
309
319
## @param headers - mapping - optional
310
320
## The headers parameter allows you to send specific headers with every request.
311
321
## You can use it for explicitly specifying the host header or adding headers for
Original file line number Diff line number Diff line change 1
- import simplejson as json
1
+ import json
2
+
2
3
from six .moves .urllib .parse import urlparse
3
4
4
5
from datadog_checks .base import AgentCheck , ConfigurationError
Original file line number Diff line number Diff line change
1
+ import json
1
2
import time
2
3
3
4
import pytest
4
5
import requests
5
- import simplejson as json
6
6
from mock import MagicMock , Mock
7
7
8
8
from datadog_checks .base import ConfigurationError
You can’t perform that action at this time.
0 commit comments