Skip to content

Commit 650bea0

Browse files
Release-1.6.17 changes
1 parent ad5f21e commit 650bea0

File tree

6 files changed

+27
-7
lines changed

6 files changed

+27
-7
lines changed

CHANGELOG.md

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

3+
## Version 1.6.17
4+
5+
### Bug fixes
6+
7+
* [#396](https://github.com/splunk/splunk-sdk-python/pull/396) Updated KVStore Methods to support dictionaries
8+
* [#397](https://github.com/splunk/splunk-sdk-python/pull/397) Added code changes for encoding '/' in _key parameter in kvstore.data APIs.
9+
* [#398](https://github.com/splunk/splunk-sdk-python/pull/398) Added dictionary support for KVStore "query" methods.
10+
* [#404](https://github.com/splunk/splunk-sdk-python/pull/404) Fixed test case failure for 8.0 and latest(8.2.x) splunk version
11+
12+
### Minor changes
13+
14+
* [#381](https://github.com/splunk/splunk-sdk-python/pull/381) Updated current year in conf.py
15+
* [#389](https://github.com/splunk/splunk-sdk-python/pull/389) Fixed few typos
16+
* [#391](https://github.com/splunk/splunk-sdk-python/pull/391) Fixed spelling error in client.py
17+
* [#393](https://github.com/splunk/splunk-sdk-python/pull/393) Updated development status past 3
18+
* [#394](https://github.com/splunk/splunk-sdk-python/pull/394) Updated Readme steps to run examples
19+
* [#395](https://github.com/splunk/splunk-sdk-python/pull/395) Updated random_number.py
20+
* [#399](https://github.com/splunk/splunk-sdk-python/pull/399) Moved CI tests to GitHub Actions
21+
* [#403](https://github.com/splunk/splunk-sdk-python/pull/403) Removed usage of Easy_install to install SDK
22+
323
## Version 1.6.16
424

525
### 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='[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, 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
@@ -1391,7 +1391,7 @@ def request(url, message, **kwargs):
13911391
head = {
13921392
"Content-Length": str(len(body)),
13931393
"Host": host,
1394-
"User-Agent": "splunk-sdk-python/1.6.16",
1394+
"User-Agent": "splunk-sdk-python/1.6.17",
13951395
"Accept": "*/*",
13961396
"Connection": "Close",
13971397
} # defaults

0 commit comments

Comments
 (0)