Skip to content

Commit db3ca92

Browse files
authored
Merge pull request #379 from splunk/master
Master -> Develop for 1.6.16 changes
2 parents 5877c0a + 13f07cd commit db3ca92

File tree

5 files changed

+18
-11
lines changed

5 files changed

+18
-11
lines changed

CHANGELOG.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,24 @@
11
# Splunk Enterprise SDK for Python Changelog
22

3+
## Version 1.6.16
4+
5+
### Bug fixes
6+
[#312](https://github.com/splunk/splunk-sdk-python/pull/312) Fix issue [#309](https://github.com/splunk/splunk-sdk-python/issues/309), avoid catastrophic backtracking in searchcommands
7+
38
## Version 1.6.15
49

510
### Bug fixes
6-
[#301](https://github.com/splunk/splunk-sdk-python/pull/301) Fix chunk synchronization
7-
[#327](https://github.com/splunk/splunk-sdk-python/pull/327) Rename and cleanup follow-up for chunk synchronization
8-
[#352](https://github.com/splunk/splunk-sdk-python/pull/352) Allow supplying of a key-value body when calling Context.post()
11+
12+
* [#301](https://github.com/splunk/splunk-sdk-python/pull/301) Fix chunk synchronization
13+
* [#327](https://github.com/splunk/splunk-sdk-python/pull/327) Rename and cleanup follow-up for chunk synchronization
14+
* [#352](https://github.com/splunk/splunk-sdk-python/pull/352) Allow supplying of a key-value body when calling Context.post()
915

1016
### Minor changes
11-
[#350](https://github.com/splunk/splunk-sdk-python/pull/350) Initial end-to-end tests for streaming, reporting, generating custom search commands
12-
[#348](https://github.com/splunk/splunk-sdk-python/pull/348) Update copyright years to 2020
13-
[#346](https://github.com/splunk/splunk-sdk-python/pull/346) Readme updates to urls, terminology, and formatting
14-
[#317](https://github.com/splunk/splunk-sdk-python/pull/317) Fix deprecation warnings
17+
18+
* [#350](https://github.com/splunk/splunk-sdk-python/pull/350) Initial end-to-end tests for streaming, reporting, generating custom search commands
19+
* [#348](https://github.com/splunk/splunk-sdk-python/pull/348) Update copyright years to 2020
20+
* [#346](https://github.com/splunk/splunk-sdk-python/pull/346) Readme updates to urls, terminology, and formatting
21+
* [#317](https://github.com/splunk/splunk-sdk-python/pull/317) Fix deprecation warnings
1522

1623
## Version 1.6.14
1724

README.md

Lines changed: 1 addition & 1 deletion
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.15
6+
#### Version 1.6.16
77

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

examples/searchcommands_app/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ def run(self):
439439
setup(
440440
description='Custom Search Command examples',
441441
name=os.path.basename(project_dir),
442-
version='1.6.15',
442+
version='1.6.16',
443443
author='Splunk, Inc.',
444444
author_email='[email protected]',
445445
url='http://github.com/splunk/splunk-sdk-python',

splunklib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616

1717
from __future__ import absolute_import
1818
from splunklib.six.moves import map
19-
__version_info__ = (1, 6, 15)
19+
__version_info__ = (1, 6, 16)
2020
__version__ = ".".join(map(str, __version_info__))

splunklib/binding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1385,7 +1385,7 @@ def request(url, message, **kwargs):
13851385
head = {
13861386
"Content-Length": str(len(body)),
13871387
"Host": host,
1388-
"User-Agent": "splunk-sdk-python/1.6.15",
1388+
"User-Agent": "splunk-sdk-python/1.6.16",
13891389
"Accept": "*/*",
13901390
"Connection": "Close",
13911391
} # defaults

0 commit comments

Comments
 (0)