Skip to content

Commit 7b0b486

Browse files
committed
release/1.6.19 changes
1 parent 528118b commit 7b0b486

File tree

4 files changed

+40
-3
lines changed

4 files changed

+40
-3
lines changed

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,42 @@
11
# Splunk Enterprise SDK for Python Changelog
22

3+
## Version 1.6.19
4+
5+
### New features and APIs
6+
* [#441](https://github.com/splunk/splunk-sdk-python/pull/441) JSONResultsReader added and deprecated ResultsReader
7+
* Pre-requisite: Query parameter 'output_mode' must be set to 'json'
8+
* Improves performance by approx ~80-90%
9+
* ResultsReader is deprecated and will be removed in future releases (NOTE: Please migrate to JSONResultsReader)
10+
* [#437](https://github.com/splunk/splunk-sdk-python/pull/437) added setup_logging() method in splunklib for logging
11+
* [#426](https://github.com/splunk/splunk-sdk-python/pull/426) Added new github_commit modular input example
12+
* [#392](https://github.com/splunk/splunk-sdk-python/pull/392) Break out search argument to option parsing for v2 custom search commands
13+
* [#384](https://github.com/splunk/splunk-sdk-python/pull/384) Added Float parameter validator for custom search commands
14+
* [#371](https://github.com/splunk/splunk-sdk-python/pull/371) Modinput preserve 'app' context
15+
16+
### Bug fixes
17+
* [#439](https://github.com/splunk/splunk-sdk-python/pull/439) Modified POST method debug log to not log sensitive body/data
18+
* [#431](https://github.com/splunk/splunk-sdk-python/pull/431) Add distsearch.conf to Stream Search Command examples [ [issue#418](https://github.com/splunk/splunk-sdk-python/issues/418) ]
19+
* [#419](https://github.com/splunk/splunk-sdk-python/pull/419) Hec endpoint issue[ [issue#345](https://github.com/splunk/splunk-sdk-python/issues/345) ]
20+
* [#416](https://github.com/splunk/splunk-sdk-python/pull/416) Removed strip() method in load_value() method from data.py file [ [issue#400](https://github.com/splunk/splunk-sdk-python/issues/400) ]
21+
* [#148](https://github.com/splunk/splunk-sdk-python/pull/148) Identical entity names will cause an infinite loop
22+
23+
### Minor changes
24+
* [#440](https://github.com/splunk/splunk-sdk-python/pull/440) Github release workflow modified to generate docs
25+
* [#430](https://github.com/splunk/splunk-sdk-python/pull/430) Fix indentation in README
26+
* [#429](https://github.com/splunk/splunk-sdk-python/pull/429) documented how to access modular input metadata
27+
* [#427](https://github.com/splunk/splunk-sdk-python/pull/427) Replace .splunkrc with .env file in test and examples
28+
* [#424](https://github.com/splunk/splunk-sdk-python/pull/424) Float validator test fix
29+
* [#423](https://github.com/splunk/splunk-sdk-python/pull/423) Python3 compatibility for ResponseReader.__str__()
30+
* [#422](https://github.com/splunk/splunk-sdk-python/pull/422) ordereddict and all its reference removed
31+
* [#421](https://github.com/splunk/splunk-sdk-python/pull/421) Update README.md
32+
* [#387](https://github.com/splunk/splunk-sdk-python/pull/387) Update filter.py
33+
* [#331](https://github.com/splunk/splunk-sdk-python/pull/331) Fix a couple of warnings spotted when running python 2.7 tests
34+
* [#330](https://github.com/splunk/splunk-sdk-python/pull/330) client: use six.string_types instead of basestring
35+
* [#329](https://github.com/splunk/splunk-sdk-python/pull/329) client: remove outdated comment in Index.submit
36+
* [#262](https://github.com/splunk/splunk-sdk-python/pull/262) properly add parameters to request based on the method of the request
37+
* [#237](https://github.com/splunk/splunk-sdk-python/pull/237) Don't output close tags if you haven't written a start tag
38+
* [#149](https://github.com/splunk/splunk-sdk-python/pull/149) "handlers" stanza missing in examples/searchcommands_template/default/logging.conf
39+
340
## Version 1.6.18
441

542
### Bug fixes

README.md

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

44
# The Splunk Enterprise Software Development Kit for Python
55

6-
#### Version 1.6.18
6+
#### Version 1.6.19
77

88
The Splunk Enterprise Software Development Kit (SDK) for Python contains library code and examples designed to enable developers to build applications using the Splunk platform.
99

splunklib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ def setup_logging(level, log_format=DEFAULT_LOG_FORMAT, date_format=DEFAULT_DATE
3131
format=log_format,
3232
datefmt=date_format)
3333

34-
__version_info__ = (1, 6, 18)
34+
__version_info__ = (1, 6, 19)
3535
__version__ = ".".join(map(str, __version_info__))

splunklib/binding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1414,7 +1414,7 @@ def request(url, message, **kwargs):
14141414
head = {
14151415
"Content-Length": str(len(body)),
14161416
"Host": host,
1417-
"User-Agent": "splunk-sdk-python/1.6.18",
1417+
"User-Agent": "splunk-sdk-python/1.6.19",
14181418
"Accept": "*/*",
14191419
"Connection": "Close",
14201420
} # defaults

0 commit comments

Comments
 (0)