Skip to content

Commit 9963376

Browse files
committed
0.60.1
1 parent ba1da16 commit 9963376

8 files changed

Lines changed: 43 additions & 7 deletions

File tree

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[submodule "mist_openapi"]
22
path = mist_openapi
33
url = https://github.com/mistsys/mist_openapi.git
4-
branch = master
4+
branch = 2602.1.2

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,31 @@
11
# CHANGELOG
2+
## Version 0.60.1 (February 2026)
3+
4+
**Pending Release**: February 21, 2026
5+
6+
This release includes function updates and bug fixes in the self/logs.py and sites/sle.py modules.
7+
8+
---
9+
10+
### 1. CHANGES
11+
12+
##### **API Function Updates**
13+
- Updated `listSelfAuditLogs()` and related functions in `self/logs.py`.
14+
- Updated deprecated and new SLE classifier functions in `sites/sle.py`.
15+
16+
---
17+
18+
### 2. BUG FIXES
19+
20+
- Minor bug fixes and improvements in API modules.
21+
22+
---
23+
24+
### Breaking Changes
25+
26+
No breaking changes in this release.
27+
28+
---
229

330
## Version 0.60.0 (February 2026)
431

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

src/mistapi/api/v1/self/logs.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616

1717
def listSelfAuditLogs(
1818
mist_session: _APISession,
19+
message: str | None = None,
20+
sort: str | None = None,
1921
start: str | None = None,
2022
end: str | None = None,
2123
duration: str | None = None,
@@ -32,6 +34,9 @@ def listSelfAuditLogs(
3234
3335
QUERY PARAMS
3436
------------
37+
message : str
38+
sort : str{'-timestamp', 'admin_id', 'site_id', 'timestamp'}
39+
Sort order
3540
start : str
3641
end : str
3742
duration : str, default: 1d
@@ -46,6 +51,10 @@ def listSelfAuditLogs(
4651

4752
uri = "/api/v1/self/logs"
4853
query_params: dict[str, str] = {}
54+
if message:
55+
query_params["message"] = str(message)
56+
if sort:
57+
query_params["sort"] = str(sort)
4958
if start:
5059
query_params["start"] = str(start)
5160
if end:

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

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)