Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Splunk Enterprise SDK for Python Changelog

## Version 1.6.17

### Bug fixes

* [#383](https://github.com/splunk/splunk-sdk-python/pull/383) Implemented the possibility to provide a SSLContext object to the connect method
* [#396](https://github.com/splunk/splunk-sdk-python/pull/396) Updated KVStore Methods to support dictionaries
* [#397](https://github.com/splunk/splunk-sdk-python/pull/397) Added code changes for encoding '/' in _key parameter in kvstore.data APIs.
* [#398](https://github.com/splunk/splunk-sdk-python/pull/398) Added dictionary support for KVStore "query" methods.
* [#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))
* [#404](https://github.com/splunk/splunk-sdk-python/pull/404) Fixed test case failure for 8.0 and latest(8.2.x) splunk version

### Minor changes

* [#381](https://github.com/splunk/splunk-sdk-python/pull/381) Updated current year in conf.py
* [#389](https://github.com/splunk/splunk-sdk-python/pull/389) Fixed few typos
* [#391](https://github.com/splunk/splunk-sdk-python/pull/391) Fixed spelling error in client.py
* [#393](https://github.com/splunk/splunk-sdk-python/pull/393) Updated development status past 3
* [#394](https://github.com/splunk/splunk-sdk-python/pull/394) Updated Readme steps to run examples
* [#395](https://github.com/splunk/splunk-sdk-python/pull/395) Updated random_number.py
* [#399](https://github.com/splunk/splunk-sdk-python/pull/399) Moved CI tests to GitHub Actions
* [#403](https://github.com/splunk/splunk-sdk-python/pull/403) Removed usage of Easy_install to install SDK

## Version 1.6.16

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# The Splunk Enterprise Software Development Kit for Python

#### Version 1.6.16
#### Version 1.6.17

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.

Expand Down
6 changes: 3 additions & 3 deletions docs/searchcommands.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ splunklib.searchcommands

.. automodule:: splunklib.searchcommands

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

.. autoclass:: EventingCommand
:members:
Expand Down Expand Up @@ -31,7 +31,7 @@ splunklib.searchcommands

.. automethod:: splunklib.searchcommands::GeneratingCommand.generate

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

.. autoclass:: ReportingCommand
:members:
Expand Down Expand Up @@ -59,7 +59,7 @@ splunklib.searchcommands
:inherited-members:
:exclude-members: configuration_settings, fix_up, items, keys

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

.. automethod:: splunklib.searchcommands::StreamingCommand.stream

Expand Down
2 changes: 1 addition & 1 deletion examples/searchcommands_app/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ def run(self):
setup(
description='Custom Search Command examples',
name=os.path.basename(project_dir),
version='1.6.16',
version='1.6.17',
author='Splunk, Inc.',
author_email='devinfo@splunk.com',
url='http://github.com/splunk/splunk-sdk-python',
Expand Down
2 changes: 1 addition & 1 deletion splunklib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@

from __future__ import absolute_import
from splunklib.six.moves import map
__version_info__ = (1, 6, 16)
__version_info__ = (1, 6, 17)
__version__ = ".".join(map(str, __version_info__))
2 changes: 1 addition & 1 deletion splunklib/binding.py
Original file line number Diff line number Diff line change
Expand Up @@ -1391,7 +1391,7 @@ def request(url, message, **kwargs):
head = {
"Content-Length": str(len(body)),
"Host": host,
"User-Agent": "splunk-sdk-python/1.6.16",
"User-Agent": "splunk-sdk-python/1.6.17",
"Accept": "*/*",
"Connection": "Close",
} # defaults
Expand Down