Skip to content

Commit b12ef77

Browse files
author
David Noble
committed
Updated change log, read me and version number in prep for releasing splunk-sdk-python-1.2.3
We've got one more customer issue to resolve before producing this release. See https://jira.splunk.com/browse/DVPL-4266, Fix AttributeError for saved search (customer issue) Signed-off-by: David Noble <dnoble@splunk.com>
1 parent 8fb7428 commit b12ef77

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

CHANGELOG.md

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

3+
4+
## Version 1.2.3
5+
6+
### New features and APIs
7+
8+
* Improved error handling in custom search commands
9+
10+
SearchCommand.process now catches all exceptions and
11+
12+
1. Writes an error message for display in the Splunk UI.
13+
14+
The error message is the text of the exception. This is new behavior.
15+
16+
2. Logs a traceback to SearchCommand.logger. This is old behavior.
17+
18+
### Bug fixes
19+
20+
1. Addressed a problem in the results reader running under Python 2.6.
21+
22+
The results reader now catches SyntaxError exceptions instead of
23+
`xml.etree.ElementTree.ParseError` exceptions. `ParseError` wasn't
24+
introduced until Python 2.7. This masked the root cause of certain issues
25+
with result elements.
26+
327
## Version 1.2.2
428

529
### Bug fixes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The Splunk Software Development Kit for Python
22

3-
#### Version 1.2.2
3+
#### Version 1.2.3
44

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

splunklib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414

1515
"""Python library for Splunk."""
1616

17-
__version_info__ = (1, 2, 2)
17+
__version_info__ = (1, 2, 3)
1818
__version__ = ".".join(map(str, __version_info__))
1919

0 commit comments

Comments
 (0)