Skip to content

Commit 21dae78

Browse files
committed
release v1.7.1 changes
1 parent f29d31c commit 21dae78

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

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

3+
## Version 1.7.1
4+
5+
### Bug fixes
6+
* [#471](https://github.com/splunk/splunk-sdk-python/pull/471) Fixed support of Load Balancer "sticky sessions" (persistent cookies) [[issue#438](https://github.com/splunk/splunk-sdk-python/issues/438)]
7+
8+
### Minor changes
9+
* [#466](https://github.com/splunk/splunk-sdk-python/pull/466) tests for CSC apps
10+
* [#467](https://github.com/splunk/splunk-sdk-python/pull/467) Added 'kwargs' parameter for Saved Search History function
11+
* [#475](https://github.com/splunk/splunk-sdk-python/pull/475) README updates
12+
313
## Version 1.7.0
414

515
### 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.7.0
6+
#### Version 1.7.1
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, 7, 0)
34+
__version_info__ = (1, 7, 1)
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.7.0",
1437+
"User-Agent": "splunk-sdk-python/1.7.1",
14381438
"Accept": "*/*",
14391439
"Connection": "Close",
14401440
} # defaults

0 commit comments

Comments
 (0)