Skip to content

Commit 9d0b166

Browse files
committed
release 1.7.0 version changes
1 parent d764e75 commit 9d0b166

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.md

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

3+
## Version 1.7.0
4+
5+
### New features and APIs
6+
* [#468](https://github.com/splunk/splunk-sdk-python/pull/468) SDK Support for splunkd search API changes
7+
8+
### Bug fixes
9+
* [#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)]
10+
11+
### Minor changes
12+
* [#463](https://github.com/splunk/splunk-sdk-python/pull/463) Preserve thirdparty cookies
13+
314
## Version 1.6.20
415

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

splunklib/binding.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1434,7 +1434,7 @@ def request(url, message, **kwargs):
14341434
head = {
14351435
"Content-Length": str(len(body)),
14361436
"Host": host,
1437-
"User-Agent": "splunk-sdk-python/1.6.20",
1437+
"User-Agent": "splunk-sdk-python/1.7.0",
14381438
"Accept": "*/*",
14391439
"Connection": "Close",
14401440
} # defaults

0 commit comments

Comments
 (0)