From 9d0b166a4bc12ce6e415da2a0e1e2736a33e7598 Mon Sep 17 00:00:00 2001 From: akaila-splunk Date: Fri, 17 Jun 2022 12:06:03 +0530 Subject: [PATCH] release 1.7.0 version changes --- CHANGELOG.md | 11 +++++++++++ README.md | 2 +- splunklib/__init__.py | 2 +- splunklib/binding.py | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4215c05d..f01bb3fa 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/README.md b/README.md index cf51d833..762844a5 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/splunklib/__init__.py b/splunklib/__init__.py index 1f9fc688..487a76c3 100644 --- a/splunklib/__init__.py +++ b/splunklib/__init__.py @@ -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__)) diff --git a/splunklib/binding.py b/splunklib/binding.py index f8c24dc9..919ad4dc 100644 --- a/splunklib/binding.py +++ b/splunklib/binding.py @@ -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