Skip to content

Commit 37077d6

Browse files
committed
Version 1.6.14
1 parent f15390b commit 37077d6

File tree

5 files changed

+19
-14
lines changed

5 files changed

+19
-14
lines changed

CHANGELOG.md

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

3+
## Version 1.6.14
4+
5+
### Bug fix
6+
* `SearchCommand` now correctly supports multibyte characters in Python 3.
7+
38
## Version 1.6.13
49

510
### Bug fix
6-
* 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.
11+
* 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.
712

813
### Minor changes
9-
* Minor updates to the splunklib search commands to support Python3
14+
* Minor updates to the splunklib search commands to support Python3
1015

1116
## Version 1.6.12
1217

@@ -22,25 +27,25 @@
2227

2328
### Bug Fix
2429

25-
* Fix custom search command V2 failures on Windows for Python3
30+
* Fix custom search command V2 failures on Windows for Python3
2631

2732
## Version 1.6.10
2833

2934
### Bug Fix
3035

31-
* Fix long type gets wrong values on windows for python 2
36+
* Fix long type gets wrong values on windows for python 2
3237

3338
## Version 1.6.9
3439

3540
### Bug Fix
3641

37-
* Fix buffered input in python 3
42+
* Fix buffered input in python 3
3843

3944
## Version 1.6.8
4045

4146
### Bug Fix
4247

43-
* Fix custom search command on python 3 on windows
48+
* Fix custom search command on python 3 on windows
4449

4550
## Version 1.6.7
4651

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# The Splunk Software Development Kit for Python
55

6-
#### Version 1.6.13
6+
#### Version 1.6.14
77

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

examples/searchcommands_app/setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ def splunk_restart(uri, auth):
111111

112112

113113
class AnalyzeCommand(Command):
114-
"""
115-
setup.py command to run code coverage of the test suite.
114+
"""
115+
setup.py command to run code coverage of the test suite.
116116
117117
"""
118118
description = 'Create an HTML coverage report from running the full test suite.'
@@ -367,8 +367,8 @@ def _link_debug_client(self):
367367

368368

369369
class TestCommand(Command):
370-
"""
371-
setup.py command to run the whole test suite.
370+
"""
371+
setup.py command to run the whole test suite.
372372
373373
"""
374374
description = 'Run full test suite.'
@@ -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.13',
442+
version='1.6.14',
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, 13)
19+
__version_info__ = (1, 6, 14)
2020
__version__ = ".".join(map(str, __version_info__))

splunklib/binding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1378,7 +1378,7 @@ def request(url, message, **kwargs):
13781378
head = {
13791379
"Content-Length": str(len(body)),
13801380
"Host": host,
1381-
"User-Agent": "splunk-sdk-python/1.6.13",
1381+
"User-Agent": "splunk-sdk-python/1.6.14",
13821382
"Accept": "*/*",
13831383
"Connection": "Close",
13841384
} # defaults

0 commit comments

Comments
 (0)