Skip to content

Commit

Permalink
Merge pull request #470 from splunk/master
Browse files Browse the repository at this point in the history
Master -> Develop
  • Loading branch information
fantavlik committed Jun 17, 2022
2 parents d764e75 + 14ef9f4 commit 66a8741
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,16 @@
# Splunk Enterprise SDK for Python Changelog

## Version 1.7.0

### New features and APIs
* [#468](https://github.com/splunk/splunk-sdk-python/pull/468) SDK Support for splunkd search API changes

### Bug fixes
* [#464](https://github.com/splunk/splunk-sdk-python/pull/464) updated checks for wildcards in StoragePasswords [[issue#458](https://github.com/splunk/splunk-sdk-python/issues/458)]

### Minor changes
* [#463](https://github.com/splunk/splunk-sdk-python/pull/463) Preserve thirdparty cookies

## Version 1.6.20

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

# The Splunk Enterprise Software Development Kit for Python

#### Version 1.6.20
#### Version 1.7.0

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
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, 20)
__version_info__ = (1, 7, 0)
__version__ = ".".join(map(str, __version_info__))
2 changes: 1 addition & 1 deletion splunklib/binding.py
Expand Up @@ -1434,7 +1434,7 @@ def request(url, message, **kwargs):
head = {
"Content-Length": str(len(body)),
"Host": host,
"User-Agent": "splunk-sdk-python/1.6.20",
"User-Agent": "splunk-sdk-python/1.7.0",
"Accept": "*/*",
"Connection": "Close",
} # defaults
Expand Down

0 comments on commit 66a8741

Please sign in to comment.