Skip to content

Commit 9015c27

Browse files
committed
0.60.3
1 parent 2c7f73a commit 9015c27

8 files changed

Lines changed: 13 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# CHANGELOG
2-
## Version 0.60.2 (February 2026)
2+
## Version 0.60.3 (February 2026)
33

44
**Released**: February 21, 2026
55

6-
This release add a missing query parameter to the `searchSiteWanClients()` function.
6+
This release add a missing query parameter to the `searchOrgWanClients()` function.
77

88
---
99

1010
### 1. CHANGES
1111

1212
##### **API Function Updates**
13-
- Updated `searchSiteWanClients()` and related functions in `sites/wan_clients.py`.
13+
- Updated `searchOrgWanClients()` and related functions in `orgs/wan_clients.py`.
1414

1515
---
1616

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.2"
7+
version = "0.60.3"
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.2"
1+
__version__ = "0.60.3"
22
__author__ = "Thomas Munzer <tmunzer@juniper.net>"

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ def searchOrgWanClientEvents(
147147
def searchOrgWanClients(
148148
mist_session: _APISession,
149149
org_id: str,
150+
site_id: str | None = None,
150151
mac: str | None = None,
151152
hostname: str | None = None,
152153
ip: str | None = None,
@@ -174,6 +175,7 @@ def searchOrgWanClients(
174175
175176
QUERY PARAMS
176177
------------
178+
site_id : str
177179
mac : str
178180
hostname : str
179181
ip : str
@@ -195,6 +197,8 @@ def searchOrgWanClients(
195197

196198
uri = f"/api/v1/orgs/{org_id}/wan_clients/search"
197199
query_params: dict[str, str] = {}
200+
if site_id:
201+
query_params["site_id"] = str(site_id)
198202
if mac:
199203
query_params["mac"] = str(mac)
200204
if hostname:

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.2",
21+
current_version="0.60.3",
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.2",
744+
current_version="0.60.3",
745745
details="function replaced with getSiteSleSummaryTrend",
746746
)
747747
def getSiteSleSummary(

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

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,6 @@ def searchSiteWanClientEvents(
147147
def searchSiteWanClients(
148148
mist_session: _APISession,
149149
site_id: str,
150-
site_id: str | None = None,
151150
mac: str | None = None,
152151
hostname: str | None = None,
153152
ip: str | None = None,
@@ -173,7 +172,6 @@ def searchSiteWanClients(
173172
174173
QUERY PARAMS
175174
------------
176-
site_id : str
177175
mac : str
178176
hostname : str
179177
ip : str
@@ -193,8 +191,6 @@ def searchSiteWanClients(
193191

194192
uri = f"/api/v1/sites/{site_id}/wan_clients/search"
195193
query_params: dict[str, str] = {}
196-
if site_id:
197-
query_params["site_id"] = str(site_id)
198194
if mac:
199195
query_params["mac"] = str(mac)
200196
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)