Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Zscaler Python SDK Changelog

## 1.9.37 (July 7, 2026)

### Notes

- Python Versions: **v3.9, v3.10, v3.11, v3.12**

### Bug Fixes

* [PR #544](https://github.com/zscaler/zscaler-sdk-python/issues/544) - Added newly nested attributes within the ZPA `app_connectors` and `app_connector_groups` models.

## 1.9.36 (July 7, 2026)

### Notes
Expand Down
14 changes: 14 additions & 0 deletions docsrc/zs/guides/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@ Release Notes
Zscaler Python SDK Changelog
----------------------------

1.9.37 (July 8, 2026)
---------------------------

Notes
-------

- Python Versions: **v3.9, v3.10, v3.11, v3.12**

Bug Fixes
---------

(`#544 <https://github.com/zscaler/zscaler-sdk-python/pull/544>`_) - Added newly nested attributes within the ZPA `app_connectors` and `app_connector_groups` models.


1.9.36 (July 7, 2026)
---------------------------

Expand Down
210 changes: 99 additions & 111 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "zscaler-sdk-python"
version = "1.9.36"
version = "1.9.37"
description = "Official Python SDK for the Zscaler Products"
authors = ["Zscaler, Inc. <devrel@zscaler.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ aenum==3.1.17 ; python_version >= "3.10" and python_version < "4.0"
arrow==1.4.0 ; python_version >= "3.10" and python_version < "4.0"
certifi==2026.6.17 ; python_version >= "3.10" and python_version < "4.0"
cffi==2.1.0 ; python_version >= "3.10" and python_version < "4.0" and platform_python_implementation != "PyPy"
charset-normalizer==3.4.8 ; python_version >= "3.10" and python_version < "4.0"
charset-normalizer==3.4.9 ; python_version >= "3.10" and python_version < "4.0"
cryptography==49.0.0 ; python_version >= "3.10" and python_version < "4.0"
idna==3.18 ; python_version >= "3.10" and python_version < "4.0"
jmespath==1.1.0 ; python_version >= "3.10" and python_version < "4.0"
Expand Down
2 changes: 1 addition & 1 deletion zscaler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
__contributors__ = [
"William Guilherme",
]
__version__ = "1.9.36"
__version__ = "1.9.37"


from zscaler.oneapi_client import Client as ZscalerClient # noqa
1,018 changes: 255 additions & 763 deletions zscaler/zpa/models/app_connector_groups.py

Large diffs are not rendered by default.

482 changes: 461 additions & 21 deletions zscaler/zpa/models/app_connectors.py

Large diffs are not rendered by default.

Loading