Skip to content

Commit e57c53f

Browse files
committed
- Added Change log for the release 3.4.2.
- Updated versions from 3.4.1 to 3.4.2 for release.
1 parent fd23c7d commit e57c53f

6 files changed

Lines changed: 16 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Okta Python SDK Changelog
22

3+
# 3.4.2
4+
5+
## Security
6+
* Resolved Dependabot security alerts by upgrading runtime dependencies to their latest secure versions: `aenum` 3.1.16, `aiohttp` 3.13.4, `pydash` 8.0.6, `PyJWT` 2.12.0, `PyYAML` 6.0.3, `requests` 2.33.0, and `xmltodict` 1.0.2. ([#525](https://github.com/okta/okta-sdk-python/pull/525))
7+
* Upgraded `pytest` to 9.0.3 and `pytest-asyncio` to 1.3.0 to address security and vulnerability concerns. ([#527](https://github.com/okta/okta-sdk-python/pull/527))
8+
9+
## Changed
10+
* Bumped development and testing dependencies: `flake8` 7.3.0, `pyfakefs` 5.10.2, `pytest-mock` 3.15.1, `pytest-recording` 0.13.4, `tox` 4.30.3, and `twine` 6.2.0. ([#525](https://github.com/okta/okta-sdk-python/pull/525))
11+
* Upgraded GitHub Actions to current major releases: `actions/checkout` v6 and `actions/setup-python` v6 to resolve Node.js runtime deprecation warnings. ([#525](https://github.com/okta/okta-sdk-python/pull/525))
12+
* Updated OpenAPI Generator mustache templates (`requirements.mustache`, `setup.mustache`, `pyproject.mustache`, `test-requirements.mustache`) to reflect the new dependency versions for consistent future code generation. ([#525](https://github.com/okta/okta-sdk-python/pull/525))
13+
314
# 3.4.1
415

516
## Fixed

okta/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
""" # noqa: E501
2222

2323

24-
__version__ = "3.4.1"
24+
__version__ = "3.4.2"
2525

2626
import importlib as _importlib
2727
import threading as _threading

openapi/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
templateDir: ./templates
22
outputDir: ..
33
packageName: okta
4-
packageVersion: 3.4.1
4+
packageVersion: 3.4.2
55
useOneOfDiscriminatorLookup: true
66
files:
77
okta/okta_configuration.mustache:

openapi/templates/setup.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ setup(
7070
"Topic :: Software Development :: Libraries :: Python Modules",
7171
],
7272
name=NAME,
73-
version="3.4.1",
73+
version="3.4.2",
7474
description="Python SDK for the Okta Management API",
7575
author="Okta, Inc.",
7676
author_email="developer-community-products@okta.com",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "okta"
3-
version = "3.4.1"
3+
version = "3.4.2"
44
description = "Okta Admin Management"
55
authors = ["Okta Developer Team <devex-public@okta.com>"]
66
license = "Apache-2.0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def get_version():
7070
"Topic :: Software Development :: Libraries :: Python Modules",
7171
],
7272
name=NAME,
73-
version="3.4.1",
73+
version="3.4.2",
7474
description="Python SDK for the Okta Management API",
7575
author="Okta, Inc.",
7676
author_email="developer-community-products@okta.com",

0 commit comments

Comments
 (0)