Skip to content

Commit d6ea492

Browse files
Releasing version 3.62.2
Releasing version 3.62.2
2 parents 6ce4ca1 + 859a671 commit d6ea492

File tree

6 files changed

+24
-4
lines changed

6 files changed

+24
-4
lines changed

CHANGELOG.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,24 @@ All notable changes to this project will be documented in this file.
66

77
The format is based on `Keep a Changelog <http://keepachangelog.com/>`__.
88

9+
3.62.2 - 2025-07-15
10+
--------------------
11+
Added
12+
~~~~~
13+
* Support for calling Oracle Cloud Infrastructure services in the ap-delhi-1 region
14+
15+
Changed
16+
~~~~~~~
17+
* Fixed `region` parameter not working when using --auth workload_identity
18+
19+
* ``oci os ns get --auth workload_identity``
20+
21+
* Container Engine Service
22+
23+
* Fixed warning caused by duplicate parameters named `--token-version`. Removed one of the parameters.
24+
25+
* ``oci ce cluster create-kubeconfig --cluster-id --file --region --token-version --kube-endpoint``
26+
927
3.62.1 - 2025-07-08
1028
--------------------
1129
Added

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Jinja2>=3.1.5; python_version >= '3.7'
1515
jmespath==0.10.0
1616
ndg-httpsclient==0.4.2
1717
mock==2.0.0
18-
oci==2.155.1
18+
oci==2.155.2
1919
packaging==20.2
2020
pluggy==0.13.0
2121
py==1.11.0

services/container_engine/src/oci_cli_container_engine/containerengine_cli_extended.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ def update_node_pool(ctx, **kwargs):
586586
# new one, if it does not exist.
587587
# 3. Running CLI command to obtain new kubeconfig always sets the default context to the new cluster.
588588
# 4. A ‘merged’ kubeconfig file does not have any duplicates and the information is not lost or corrupted in any way.
589-
@cli_util.copy_params_from_generated_command(containerengine_cli.create_kubeconfig, params_to_exclude=['endpoint_parameterconflict', 'file', 'token-version'])
589+
@cli_util.copy_params_from_generated_command(containerengine_cli.create_kubeconfig, params_to_exclude=['endpoint_parameterconflict', 'file', 'token_version'])
590590
@containerengine_cli.cluster_group.command(name=cli_util.override('create_kubeconfig.command_name', 'create-kubeconfig'),
591591
help="""Create the Kubeconfig YAML for a cluster.""")
592592
@cli_util.option('--file', type=click.Path(), default=DEFAULT_KUBECONFIG_LOCATION, show_default=True,

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def open_relative(*path):
3030
readme = f.read()
3131

3232
requires = [
33-
'oci==2.155.1',
33+
'oci==2.155.2',
3434
'arrow>=1.0.0',
3535
'certifi>=2025.1.31',
3636
'click==8.0.4',

src/oci_cli/cli_util.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -434,6 +434,8 @@ def create_config_and_signer_based_on_click_context(ctx):
434434
# OCI_RESOURCE_PRINCIPAL_REGION
435435
# OCI_KUBERNETES_SERVICE_ACCOUNT_TOKEN_PATH or OCI_KUBERNETES_SERVICE_ACCOUNT_TOKEN_STRING in case token path other than default "/var/run/secrets/kubernetes.io/serviceaccount/token" or token string is used
436436

437+
if ctx.obj['region']:
438+
client_config["region"] = ctx.obj['region']
437439
if ctx.obj['debug']:
438440
logger.debug("auth: oke_workload_identity")
439441

src/oci_cli/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved.
33
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
44

5-
__version__ = '3.62.1'
5+
__version__ = '3.62.2'

0 commit comments

Comments
 (0)