Skip to content

Commit d4f1ba7

Browse files
authored
Merge pull request #412 from splunk/master
Merge develop with master | Release 1.6.17
2 parents fb1959e + 7674157 commit d4f1ba7

File tree

6 files changed

+29
-7
lines changed

6 files changed

+29
-7
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Splunk Enterprise SDK for Python Changelog
22

3+
## Version 1.6.17
4+
5+
### Bug fixes
6+
7+
* [#383](https://github.com/splunk/splunk-sdk-python/pull/383) Implemented the possibility to provide a SSLContext object to the connect method
8+
* [#396](https://github.com/splunk/splunk-sdk-python/pull/396) Updated KVStore Methods to support dictionaries
9+
* [#397](https://github.com/splunk/splunk-sdk-python/pull/397) Added code changes for encoding '/' in _key parameter in kvstore.data APIs.
10+
* [#398](https://github.com/splunk/splunk-sdk-python/pull/398) Added dictionary support for KVStore "query" methods.
11+
* [#402](https://github.com/splunk/splunk-sdk-python/pull/402) Fixed regression introduced in 1.6.15 to once again allow processing of empty input records in custom search commands (fix [#376](https://github.com/splunk/splunk-sdk-python/issues/376))
12+
* [#404](https://github.com/splunk/splunk-sdk-python/pull/404) Fixed test case failure for 8.0 and latest(8.2.x) splunk version
13+
14+
### Minor changes
15+
16+
* [#381](https://github.com/splunk/splunk-sdk-python/pull/381) Updated current year in conf.py
17+
* [#389](https://github.com/splunk/splunk-sdk-python/pull/389) Fixed few typos
18+
* [#391](https://github.com/splunk/splunk-sdk-python/pull/391) Fixed spelling error in client.py
19+
* [#393](https://github.com/splunk/splunk-sdk-python/pull/393) Updated development status past 3
20+
* [#394](https://github.com/splunk/splunk-sdk-python/pull/394) Updated Readme steps to run examples
21+
* [#395](https://github.com/splunk/splunk-sdk-python/pull/395) Updated random_number.py
22+
* [#399](https://github.com/splunk/splunk-sdk-python/pull/399) Moved CI tests to GitHub Actions
23+
* [#403](https://github.com/splunk/splunk-sdk-python/pull/403) Removed usage of Easy_install to install SDK
24+
325
## Version 1.6.16
426

527
### Bug fixes

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.16
6+
#### Version 1.6.17
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

docs/searchcommands.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ splunklib.searchcommands
33

44
.. automodule:: splunklib.searchcommands
55

6-
.. autofunction:: dispatch(command_class[, argv=sys.argv, input_file=sys.stdin, output_file=sys.stdout, module_name=None])
6+
.. autofunction:: dispatch(command_class[, argv=sys.argv, input_file=sys.stdin, output_file=sys.stdout, module_name=None, allow_empty_input=True])
77

88
.. autoclass:: EventingCommand
99
:members:
@@ -31,7 +31,7 @@ splunklib.searchcommands
3131

3232
.. automethod:: splunklib.searchcommands::GeneratingCommand.generate
3333

34-
.. automethod:: splunklib.searchcommands::GeneratingCommand.process(args=sys.argv[, input_file=sys.stdin, output_file=sys.stdout])
34+
.. automethod:: splunklib.searchcommands::GeneratingCommand.process(args=sys.argv[, input_file=sys.stdin, output_file=sys.stdout, allow_empty_input=True])
3535

3636
.. autoclass:: ReportingCommand
3737
:members:
@@ -59,7 +59,7 @@ splunklib.searchcommands
5959
:inherited-members:
6060
:exclude-members: configuration_settings, fix_up, items, keys
6161

62-
.. automethod:: splunklib.searchcommands::StreamingCommand.process(args=sys.argv[, input_file=sys.stdin, output_file=sys.stdout])
62+
.. automethod:: splunklib.searchcommands::StreamingCommand.process(args=sys.argv[, input_file=sys.stdin, output_file=sys.stdout, allow_empty_input=True])
6363

6464
.. automethod:: splunklib.searchcommands::StreamingCommand.stream
6565

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.16',
442+
version='1.6.17',
443443
author='Splunk, Inc.',
444444
author_email='devinfo@splunk.com',
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, 16)
19+
__version_info__ = (1, 6, 17)
2020
__version__ = ".".join(map(str, __version_info__))

splunklib/binding.py

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

0 commit comments

Comments
 (0)