Skip to content

Commit 77b4a2b

Browse files
Releasing version 2.141.1
Releasing version 2.141.1
2 parents 987f8b0 + b33ac68 commit 77b4a2b

File tree

3 files changed

+21
-12
lines changed

3 files changed

+21
-12
lines changed

CHANGELOG.rst

+11-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ Change Log
33
All notable changes to this project will be documented in this file.
44

55
The format is based on `Keep a Changelog <http://keepachangelog.com/>`_.
6+
7+
====================
8+
2.141.1 - 2024-12-20
9+
====================
10+
11+
Fixed
12+
-----
13+
* `Github Issue #728 <https://github.com/oracle/oci-python-sdk/issues/728>`_ for RPv1.1
14+
615
====================
716
2.141.0 - 2024-12-17
817
====================
@@ -1938,7 +1947,7 @@ Breaking
19381947
* `EmDataLakeClient` was renamed to `EmWarehouseClient` in the Enterprise Manager Warehouse service
19391948
* `EmDataLakeClientCompositeOperations` was renamed to `EmWarehouseClientCompositeOperations` in the Enterprise Manager Warehouse service
19401949

1941-
=====================
1950+
====================
19421951
2.79.0 - 2022-08-16
19431952
====================
19441953

@@ -2063,7 +2072,7 @@ Breaking
20632072
* Parameter `host_type` in operation `list_host_insights` in the Operations Insights service has strict value checking for allowed values. `ValueError` is raised if an invalid value is provided.
20642073
* Parameter `preserve_data_volumes` is removed from operation `terminate_instance` in the Compute service.
20652074

2066-
=====================
2075+
====================
20672076
2.74.0 - 2022-07-05
20682077
====================
20692078

src/oci/auth/signers/instance_principals_security_token_signer.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -61,16 +61,16 @@ class InstancePrincipalsSecurityTokenSigner(X509FederationClientBasedSecurityTok
6161
the certificate & corresponding private key (if there is one defined for this retriever) from UrlBasedCertificateRetriever,
6262
region, federation endpoint, and the response for receiving the token from the federation endpoint
6363
"""
64-
def __init__(self, **kwargs):
65-
self.METADATA_URL_BASE_ENV_VAR = 'OCI_METADATA_BASE_URL'
66-
self.DEFAULT_METADATA_URL_BASE = 'http://169.254.169.254/opc/v2'
67-
self.METADATA_URL_BASE = os.environ.get(self.METADATA_URL_BASE_ENV_VAR, self.DEFAULT_METADATA_URL_BASE)
68-
self.GET_REGION_URL = '{}/instance/region'.format(self.METADATA_URL_BASE)
69-
self.LEAF_CERTIFICATE_URL = '{}/identity/cert.pem'.format(self.METADATA_URL_BASE)
70-
self.LEAF_CERTIFICATE_PRIVATE_KEY_URL = '{}/identity/key.pem'.format(self.METADATA_URL_BASE)
71-
self.INTERMEDIATE_CERTIFICATE_URL = '{}/identity/intermediate.pem'.format(self.METADATA_URL_BASE)
72-
self.METADATA_AUTH_HEADERS = {'Authorization': 'Bearer Oracle'}
64+
METADATA_URL_BASE_ENV_VAR = 'OCI_METADATA_BASE_URL'
65+
DEFAULT_METADATA_URL_BASE = 'http://169.254.169.254/opc/v2'
66+
METADATA_URL_BASE = os.environ.get(METADATA_URL_BASE_ENV_VAR, DEFAULT_METADATA_URL_BASE)
67+
GET_REGION_URL = '{}/instance/region'.format(METADATA_URL_BASE)
68+
LEAF_CERTIFICATE_URL = '{}/identity/cert.pem'.format(METADATA_URL_BASE)
69+
LEAF_CERTIFICATE_PRIVATE_KEY_URL = '{}/identity/key.pem'.format(METADATA_URL_BASE)
70+
INTERMEDIATE_CERTIFICATE_URL = '{}/identity/intermediate.pem'.format(METADATA_URL_BASE)
71+
METADATA_AUTH_HEADERS = {'Authorization': 'Bearer Oracle'}
7372

73+
def __init__(self, **kwargs):
7474
self.logger = logging.getLogger("{}.{}".format(__name__, id(self)))
7575
self.logger.addHandler(logging.NullHandler())
7676
if kwargs.get('log_requests'):

src/oci/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Copyright (c) 2016, 2024, 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__ = "2.141.0"
5+
__version__ = "2.141.1"

0 commit comments

Comments
 (0)