Skip to content

Commit

Permalink
Merge pull request #462 from splunk/master
Browse files Browse the repository at this point in the history
Release/1.6.20 Changes
  • Loading branch information
ashah-splunk committed Jun 7, 2022
2 parents f016f44 + e045c07 commit f11fe6a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Splunk Enterprise SDK for Python Changelog

## Version 1.6.20

### New features and APIs
* [#442](https://github.com/splunk/splunk-sdk-python/pull/442) Optional retries feature added
* [#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)]

### Bug fixes
* [#449](https://github.com/splunk/splunk-sdk-python/pull/449) Set cookie [[issue#438](https://github.com/splunk/splunk-sdk-python/issues/438)]
* [#460](https://github.com/splunk/splunk-sdk-python/pull/460) Remove restart from client.Entity.disable

### Minor changes
* [#444](https://github.com/splunk/splunk-sdk-python/pull/444) Update tox.ini
* [#446](https://github.com/splunk/splunk-sdk-python/pull/446) Release workflow refactor
* [#448](https://github.com/splunk/splunk-sdk-python/pull/448) Documentation changes
* [#450](https://github.com/splunk/splunk-sdk-python/pull/450) Removed examples and it's references from the SDK


## Version 1.6.19

### New features and APIs
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# The Splunk Enterprise Software Development Kit for Python

#### Version 1.6.19
#### Version 1.6.20

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

Expand Down
2 changes: 1 addition & 1 deletion splunklib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ def setup_logging(level, log_format=DEFAULT_LOG_FORMAT, date_format=DEFAULT_DATE
format=log_format,
datefmt=date_format)

__version_info__ = (1, 6, 19)
__version_info__ = (1, 6, 20)
__version__ = ".".join(map(str, __version_info__))
2 changes: 1 addition & 1 deletion splunklib/binding.py
Original file line number Diff line number Diff line change
Expand Up @@ -1430,7 +1430,7 @@ def request(url, message, **kwargs):
head = {
"Content-Length": str(len(body)),
"Host": host,
"User-Agent": "splunk-sdk-python/1.6.19",
"User-Agent": "splunk-sdk-python/1.6.20",
"Accept": "*/*",
"Connection": "Close",
} # defaults
Expand Down

0 comments on commit f11fe6a

Please sign in to comment.