Skip to content

Commit

Permalink
Version 1.6.14
Browse files Browse the repository at this point in the history
  • Loading branch information
amysutedja committed Sep 9, 2020
1 parent f15390b commit 37077d6
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 14 deletions.
17 changes: 11 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# Splunk SDK for Python Changelog

## Version 1.6.14

### Bug fix
* `SearchCommand` now correctly supports multibyte characters in Python 3.

## Version 1.6.13

### Bug fix
* Fixed regression in mod inputs which resulted in error ’file' object has no attribute 'readable’, by not forcing to text/bytes in mod inputs event writer any longer.
* Fixed regression in mod inputs which resulted in error ’file' object has no attribute 'readable’, by not forcing to text/bytes in mod inputs event writer any longer.

### Minor changes
* Minor updates to the splunklib search commands to support Python3
* Minor updates to the splunklib search commands to support Python3

## Version 1.6.12

Expand All @@ -22,25 +27,25 @@

### Bug Fix

* Fix custom search command V2 failures on Windows for Python3
* Fix custom search command V2 failures on Windows for Python3

## Version 1.6.10

### Bug Fix

* Fix long type gets wrong values on windows for python 2
* Fix long type gets wrong values on windows for python 2

## Version 1.6.9

### Bug Fix

* Fix buffered input in python 3
* Fix buffered input in python 3

## Version 1.6.8

### Bug Fix

* Fix custom search command on python 3 on windows
* Fix custom search command on python 3 on windows

## Version 1.6.7

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 Software Development Kit for Python

#### Version 1.6.13
#### Version 1.6.14

The Splunk Software Development Kit (SDK) for Python contains library code and
examples designed to enable developers to build applications using Splunk.
Expand Down
10 changes: 5 additions & 5 deletions examples/searchcommands_app/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ def splunk_restart(uri, auth):


class AnalyzeCommand(Command):
"""
setup.py command to run code coverage of the test suite.
"""
setup.py command to run code coverage of the test suite.
"""
description = 'Create an HTML coverage report from running the full test suite.'
Expand Down Expand Up @@ -367,8 +367,8 @@ def _link_debug_client(self):


class TestCommand(Command):
"""
setup.py command to run the whole test suite.
"""
setup.py command to run the whole test suite.
"""
description = 'Run full test suite.'
Expand Down Expand Up @@ -439,7 +439,7 @@ def run(self):
setup(
description='Custom Search Command examples',
name=os.path.basename(project_dir),
version='1.6.13',
version='1.6.14',
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, 13)
__version_info__ = (1, 6, 14)
__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 @@ -1378,7 +1378,7 @@ def request(url, message, **kwargs):
head = {
"Content-Length": str(len(body)),
"Host": host,
"User-Agent": "splunk-sdk-python/1.6.13",
"User-Agent": "splunk-sdk-python/1.6.14",
"Accept": "*/*",
"Connection": "Close",
} # defaults
Expand Down

0 comments on commit 37077d6

Please sign in to comment.