Skip to content

Commit 7c9468f

Browse files
authored
Merge pull request #517 from splunk/master
Release 1.7.3
2 parents de265fd + e441358 commit 7c9468f

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

CHANGELOG.md

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

3+
## Version 1.7.3
4+
5+
### Bug fixes
6+
* [#493](https://github.com/splunk/splunk-sdk-python/pull/493) Fixed file permission for event_writer.py file [[issue#487](https://github.com/splunk/splunk-sdk-python/issues/487)]
7+
* [#500](https://github.com/splunk/splunk-sdk-python/pull/500) Replaced index_field with accelerated_field for kvstore [[issue#497](https://github.com/splunk/splunk-sdk-python/issues/497)]
8+
* [#502](https://github.com/splunk/splunk-sdk-python/pull/502) Updated check for IPv6 addresses
9+
10+
### Minor changes
11+
* [#490](https://github.com/splunk/splunk-sdk-python/pull/490) Added ACL properties update feature
12+
* [#495](https://github.com/splunk/splunk-sdk-python/pull/495) Added Splunk 8.1 in GitHub Actions Matrix
13+
* [#485](https://github.com/splunk/splunk-sdk-python/pull/485) Added test case for cookie persistence
14+
* [#503](https://github.com/splunk/splunk-sdk-python/pull/503) README updates on accessing "service" instance in CSC and ModularInput apps
15+
* [#504](https://github.com/splunk/splunk-sdk-python/pull/504) Updated authentication token names in docs to reduce confusion
16+
* [#494](https://github.com/splunk/splunk-sdk-python/pull/494) Reuse splunklib.__version__ in handler.request
17+
318
## Version 1.7.2
419

520
### Minor changes

README.md

Lines changed: 2 additions & 2 deletions
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.7.2
6+
#### Version 1.7.3
77

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

@@ -30,7 +30,7 @@ Here's what you need to get going with the Splunk Enterprise SDK for Python.
3030

3131
* Splunk Enterprise 9.0 or 8.2
3232

33-
The Splunk Enterprise SDK for Python has been tested with Splunk Enterprise 9.0 and 8.2
33+
The Splunk Enterprise SDK for Python has been tested with Splunk Enterprise 9.0, 8.2 and 8.1
3434

3535
If you haven't already installed Splunk Enterprise, download it [here](http://www.splunk.com/download).
3636
For more information, see the Splunk Enterprise [_Installation Manual_](https://docs.splunk.com/Documentation/Splunk/latest/Installation).

splunklib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ def setup_logging(level, log_format=DEFAULT_LOG_FORMAT, date_format=DEFAULT_DATE
3131
format=log_format,
3232
datefmt=date_format)
3333

34-
__version_info__ = (1, 7, 2)
34+
__version_info__ = (1, 7, 3)
3535
__version__ = ".".join(map(str, __version_info__))

0 commit comments

Comments
 (0)