Skip to content

Commit 9879d83

Browse files
committed
0.60.2
1 parent 9963376 commit 9879d83

7 files changed

Lines changed: 26 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
11
# CHANGELOG
2+
## Version 0.60.2 (February 2026)
3+
4+
**Released**: February 21, 2026
5+
6+
This release add a missing query parameter to the `searchSiteWanClients()` function.
7+
8+
---
9+
10+
### 1. CHANGES
11+
12+
##### **API Function Updates**
13+
- Updated `searchSiteWanClients()` and related functions in `sites/wan_clients.py`.
14+
15+
---
16+
217
## Version 0.60.1 (February 2026)
318

4-
**Pending Release**: February 21, 2026
19+
**Released**: February 21, 2026
520

621
This release includes function updates and bug fixes in the self/logs.py and sites/sle.py modules.
722

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "mistapi"
7-
version = "0.60.1"
7+
version = "0.55.15"
88
authors = [{ name = "Thomas Munzer", email = "tmunzer@juniper.net" }]
99
description = "Python package to simplify the Mist System APIs usage"
1010
keywords = ["Mist", "Juniper", "API"]

src/mistapi/__version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "0.60.1"
1+
__version__ = "0.55.15"
22
__author__ = "Thomas Munzer <tmunzer@juniper.net>"

src/mistapi/api/v1/sites/sle.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
@deprecation.deprecated(
1919
deprecated_in="0.59.2",
2020
removed_in="0.65.0",
21-
current_version="0.60.1",
21+
current_version="0.55.15",
2222
details="function replaced with getSiteSleClassifierSummaryTrend",
2323
)
2424
def getSiteSleClassifierDetails(
@@ -741,7 +741,7 @@ def listSiteSleImpactedWirelessClients(
741741
@deprecation.deprecated(
742742
deprecated_in="0.59.2",
743743
removed_in="0.65.0",
744-
current_version="0.60.1",
744+
current_version="0.55.15",
745745
details="function replaced with getSiteSleSummaryTrend",
746746
)
747747
def getSiteSleSummary(

src/mistapi/api/v1/sites/wan_clients.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ def searchSiteWanClientEvents(
147147
def searchSiteWanClients(
148148
mist_session: _APISession,
149149
site_id: str,
150+
site_id: str | None = None,
150151
mac: str | None = None,
151152
hostname: str | None = None,
152153
ip: str | None = None,
@@ -172,6 +173,7 @@ def searchSiteWanClients(
172173
173174
QUERY PARAMS
174175
------------
176+
site_id : str
175177
mac : str
176178
hostname : str
177179
ip : str
@@ -191,6 +193,8 @@ def searchSiteWanClients(
191193

192194
uri = f"/api/v1/sites/{site_id}/wan_clients/search"
193195
query_params: dict[str, str] = {}
196+
if site_id:
197+
query_params["site_id"] = str(site_id)
194198
if mac:
195199
query_params["mac"] = str(mac)
196200
if hostname:

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)