You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,16 @@
1
1
# Splunk Enterprise SDK for Python Changelog
2
2
3
+
## Version 1.7.0
4
+
5
+
### New features and APIs
6
+
*[#468](https://github.com/splunk/splunk-sdk-python/pull/468) SDK Support for splunkd search API changes
7
+
8
+
### Bug fixes
9
+
*[#464](https://github.com/splunk/splunk-sdk-python/pull/464) updated checks for wildcards in StoragePasswords [[issue#458](https://github.com/splunk/splunk-sdk-python/issues/458)]
10
+
11
+
### Minor changes
12
+
*[#463](https://github.com/splunk/splunk-sdk-python/pull/463) Preserve thirdparty cookies
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ If you're seeing some unexpected behavior with this project, please create an [i
11
11
1. Version of this project you're using (ex: 1.5.0)
12
12
2. Platform version (ex: Windows Server 2012 R2)
13
13
3. Framework version (ex: Python 3.7)
14
-
4. Splunk Enterprise version (ex: 8.0)
14
+
4. Splunk Enterprise version (ex: 9.0)
15
15
5. Other relevant information (ex: local/remote environment, Splunk network configuration, standalone or distributed deployment, are load balancers used)
16
16
17
17
Alternatively, if you have a Splunk question please ask on [Splunk Answers](https://community.splunk.com/t5/Splunk-Development/ct-p/developer-tools).
Copy file name to clipboardExpand all lines: README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
4
4
# The Splunk Enterprise Software Development Kit for Python
5
5
6
-
#### Version 1.6.20
6
+
#### Version 1.7.0
7
7
8
8
The Splunk Enterprise Software Development Kit (SDK) for Python contains library code designed to enable developers to build applications using the Splunk platform.
9
9
@@ -58,7 +58,7 @@ Install the sources you cloned from GitHub:
58
58
You'll need `docker` and `docker-compose` to get up and running using this method.
59
59
60
60
```
61
-
make up SPLUNK_VERSION=8.0
61
+
make up SPLUNK_VERSION=9.0
62
62
make wait_up
63
63
make test
64
64
make down
@@ -107,7 +107,7 @@ here is an example of .env file:
# ^-- This was "%s%s" % (self.path, path_segment).
805
828
# That doesn't work, because self.path may be UrlEncoded.
829
+
830
+
# Get the API version from the path
831
+
api_version=self.get_api_version(path)
832
+
833
+
# Search API v2+ fallback to v1:
834
+
# - In v2+, /results_preview, /events and /results do not support search params.
835
+
# - Fallback from v2+ to v1 if Splunk Version is < 9.
836
+
# if api_version >= 2 and ('search' in query and path.endswith(tuple(["results_preview", "events", "results"])) or self.service.splunk_version < (9,)):
# - In v2+, /results_preview, /events and /results do not support search params.
910
+
# - Fallback from v2+ to v1 if Splunk Version is < 9.
911
+
# if api_version >= 2 and ('search' in query and path.endswith(tuple(["results_preview", "events", "results"])) or self.service.splunk_version < (9,)):
0 commit comments