Skip to content

Commit db48641

Browse files
Merge pull request #479 from splunk/release/1.7.1
Release/1.7.1
2 parents 14ef9f4 + 21dae78 commit db48641

File tree

175 files changed

+738
-18738
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

175 files changed

+738
-18738
lines changed

.github/workflows/test.yml

+8-14
Original file line numberDiff line numberDiff line change
@@ -17,26 +17,20 @@ jobs:
1717
- "latest"
1818
fail-fast: false
1919

20-
services:
21-
splunk:
22-
image: splunk/splunk:${{matrix.splunk-version}}
23-
env:
24-
SPLUNK_START_ARGS: --accept-license
25-
SPLUNK_HEC_TOKEN: 11111111-1111-1111-1111-1111111111113
26-
SPLUNK_PASSWORD: changed!
27-
SPLUNK_APPS_URL: https://github.com/splunk/sdk-app-collection/releases/download/v1.1.0/sdkappcollection.tgz
28-
ports:
29-
- 8000:8000
30-
- 8088:8088
31-
- 8089:8089
32-
3320
steps:
34-
- uses: actions/checkout@v2
21+
- name: Checkout code
22+
uses: actions/checkout@v2
23+
24+
- name: Run docker-compose
25+
run: SPLUNK_VERSION=${{matrix.splunk-version}} docker-compose up -d
26+
3527
- name: Setup Python
3628
uses: actions/setup-python@v2
3729
with:
3830
python-version: ${{ matrix.python }}
31+
3932
- name: Install tox
4033
run: pip install tox
34+
4135
- name: Test Execution
4236
run: tox -e py

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Splunk Enterprise SDK for Python Changelog
22

3+
## Version 1.7.1
4+
5+
### Bug fixes
6+
* [#471](https://github.com/splunk/splunk-sdk-python/pull/471) Fixed support of Load Balancer "sticky sessions" (persistent cookies) [[issue#438](https://github.com/splunk/splunk-sdk-python/issues/438)]
7+
8+
### Minor changes
9+
* [#466](https://github.com/splunk/splunk-sdk-python/pull/466) tests for CSC apps
10+
* [#467](https://github.com/splunk/splunk-sdk-python/pull/467) Added 'kwargs' parameter for Saved Search History function
11+
* [#475](https://github.com/splunk/splunk-sdk-python/pull/475) README updates
12+
313
## Version 1.7.0
414

515
### New features and APIs

README.md

+4-2
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.0
6+
#### Version 1.7.1
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

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

2929
The Splunk Enterprise SDK for Python has been tested with Python v2.7 and v3.7.
3030

31-
* Splunk Enterprise
31+
* Splunk Enterprise 9.0 or 8.2
32+
33+
The Splunk Enterprise SDK for Python has been tested with Splunk Enterprise 9.0 and 8.2
3234

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

docker-compose.yml

+9
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,12 @@ services:
1818
interval: 5s
1919
timeout: 5s
2020
retries: 20
21+
volumes:
22+
- "./tests/searchcommands/test_apps/eventing_app:/opt/splunk/etc/apps/eventing_app"
23+
- "./tests/searchcommands/test_apps/generating_app:/opt/splunk/etc/apps/generating_app"
24+
- "./tests/searchcommands/test_apps/reporting_app:/opt/splunk/etc/apps/reporting_app"
25+
- "./tests/searchcommands/test_apps/streaming_app:/opt/splunk/etc/apps/streaming_app"
26+
- "./splunklib:/opt/splunk/etc/apps/eventing_app/lib/splunklib"
27+
- "./splunklib:/opt/splunk/etc/apps/generating_app/lib/splunklib"
28+
- "./splunklib:/opt/splunk/etc/apps/reporting_app/lib/splunklib"
29+
- "./splunklib:/opt/splunk/etc/apps/streaming_app/lib/splunklib"

splunklib/__init__.py

+1-1
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, 0)
34+
__version_info__ = (1, 7, 1)
3535
__version__ = ".".join(map(str, __version_info__))

splunklib/binding.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -543,8 +543,8 @@ def _auth_headers(self):
543543
token = 'Splunk %s' % self.token
544544
if token:
545545
header.append(("Authorization", token))
546-
if self.get_cookies().__len__() > 0:
547-
header.append("Cookie", _make_cookie_header(self.get_cookies().items()))
546+
if self.get_cookies():
547+
header.append(("Cookie", _make_cookie_header(list(self.get_cookies().items()))))
548548

549549
return header
550550

@@ -1434,7 +1434,7 @@ def request(url, message, **kwargs):
14341434
head = {
14351435
"Content-Length": str(len(body)),
14361436
"Host": host,
1437-
"User-Agent": "splunk-sdk-python/1.7.0",
1437+
"User-Agent": "splunk-sdk-python/1.7.1",
14381438
"Accept": "*/*",
14391439
"Connection": "Close",
14401440
} # defaults

splunklib/client.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -3291,12 +3291,15 @@ def fired_alerts(self):
32913291
item=AlertGroup)
32923292
return c
32933293

3294-
def history(self):
3294+
def history(self, **kwargs):
32953295
"""Returns a list of search jobs corresponding to this saved search.
32963296
3297+
:param `kwargs`: Additional arguments (optional).
3298+
:type kwargs: ``dict``
3299+
32973300
:return: A list of :class:`Job` objects.
32983301
"""
3299-
response = self.get("history")
3302+
response = self.get("history", **kwargs)
33003303
entries = _load_atom_entries(response)
33013304
if entries is None: return []
33023305
jobs = []

tests/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Splunk Test Suite
22

33
The test suite uses Python's standard library and the built-in **unittest**
4-
library. If you're using Python 2.7, you're all set. However, if you are using
4+
library. If you're using Python 2.7 or Python 3.7, you're all set. However, if you are using
55
Python 2.6, you'll also need to install the **unittest2** library to get the
66
additional features that were added to Python 2.7 (just run `pip install
77
unittest2` or `easy_install unittest2`).

tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/args.txt

-10
This file was deleted.

tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/custom_prop.csv

-2
This file was deleted.

tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/externSearchResultsInfo.csv

-7
This file was deleted.

tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/generate_preview

Whitespace-only changes.

tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/info.csv

-6
This file was deleted.

tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/metadata.csv

-2
This file was deleted.

tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/peers.csv

-2
This file was deleted.

tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/pipeline_sets

-1
This file was deleted.

tests/searchcommands/recordings/scpv1/Splunk-6.3/countmatches.execute.dispatch_dir/request.csv

-2
This file was deleted.

0 commit comments

Comments
 (0)