Skip to content

Commit be9d985

Browse files
Release changes
1 parent f016f44 commit be9d985

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Splunk Enterprise SDK for Python Changelog
22

3+
## Version 1.6.20
4+
5+
### New features and APIs
6+
* [#442](https://github.com/splunk/splunk-sdk-python/pull/442) Optional retries feature added
7+
* [#447](https://github.com/splunk/splunk-sdk-python/pull/447) Create job support for "output_mode:json" [[issue#285](https://github.com/splunk/splunk-sdk-python/issues/285)]
8+
9+
### Bug fixes
10+
* [#449](https://github.com/splunk/splunk-sdk-python/pull/449) Set cookie [[issue#438](https://github.com/splunk/splunk-sdk-python/issues/438)]
11+
* [#460](https://github.com/splunk/splunk-sdk-python/pull/460) Remove restart from client.Entity.disable
12+
13+
### Minor changes
14+
* [#444](https://github.com/splunk/splunk-sdk-python/pull/444) Update tox.ini
15+
* [#446](https://github.com/splunk/splunk-sdk-python/pull/446) Release workflow refactor
16+
* [#448](https://github.com/splunk/splunk-sdk-python/pull/448) Documentation changes
17+
* [#450](https://github.com/splunk/splunk-sdk-python/pull/450) Removed examples and it's references from the SDK
18+
19+
320
## Version 1.6.19
421

522
### New features and APIs

README.md

+1-1
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.19
6+
#### Version 1.6.20
77

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

splunklib/__init__.py

+1-1
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, 19)
34+
__version_info__ = (1, 6, 20)
3535
__version__ = ".".join(map(str, __version_info__))

splunklib/binding.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1430,7 +1430,7 @@ def request(url, message, **kwargs):
14301430
head = {
14311431
"Content-Length": str(len(body)),
14321432
"Host": host,
1433-
"User-Agent": "splunk-sdk-python/1.6.19",
1433+
"User-Agent": "splunk-sdk-python/1.6.20",
14341434
"Accept": "*/*",
14351435
"Connection": "Close",
14361436
} # defaults

0 commit comments

Comments
 (0)