Skip to content

Commit

Permalink
Releasing version 2.141.1
Browse files Browse the repository at this point in the history
Releasing version 2.141.1
  • Loading branch information
oci-dex-release-bot authored Dec 20, 2024
2 parents 987f8b0 + b33ac68 commit 77b4a2b
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 12 deletions.
13 changes: 11 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ Change Log
All notable changes to this project will be documented in this file.

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

====================
2.141.1 - 2024-12-20
====================

Fixed
-----
* `Github Issue #728 <https://github.com/oracle/oci-python-sdk/issues/728>`_ for RPv1.1

====================
2.141.0 - 2024-12-17
====================
Expand Down Expand Up @@ -1938,7 +1947,7 @@ Breaking
* `EmDataLakeClient` was renamed to `EmWarehouseClient` in the Enterprise Manager Warehouse service
* `EmDataLakeClientCompositeOperations` was renamed to `EmWarehouseClientCompositeOperations` in the Enterprise Manager Warehouse service

=====================
====================
2.79.0 - 2022-08-16
====================

Expand Down Expand Up @@ -2063,7 +2072,7 @@ Breaking
* 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.
* Parameter `preserve_data_volumes` is removed from operation `terminate_instance` in the Compute service.

=====================
====================
2.74.0 - 2022-07-05
====================

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,16 @@ class InstancePrincipalsSecurityTokenSigner(X509FederationClientBasedSecurityTok
the certificate & corresponding private key (if there is one defined for this retriever) from UrlBasedCertificateRetriever,
region, federation endpoint, and the response for receiving the token from the federation endpoint
"""
def __init__(self, **kwargs):
self.METADATA_URL_BASE_ENV_VAR = 'OCI_METADATA_BASE_URL'
self.DEFAULT_METADATA_URL_BASE = 'http://169.254.169.254/opc/v2'
self.METADATA_URL_BASE = os.environ.get(self.METADATA_URL_BASE_ENV_VAR, self.DEFAULT_METADATA_URL_BASE)
self.GET_REGION_URL = '{}/instance/region'.format(self.METADATA_URL_BASE)
self.LEAF_CERTIFICATE_URL = '{}/identity/cert.pem'.format(self.METADATA_URL_BASE)
self.LEAF_CERTIFICATE_PRIVATE_KEY_URL = '{}/identity/key.pem'.format(self.METADATA_URL_BASE)
self.INTERMEDIATE_CERTIFICATE_URL = '{}/identity/intermediate.pem'.format(self.METADATA_URL_BASE)
self.METADATA_AUTH_HEADERS = {'Authorization': 'Bearer Oracle'}
METADATA_URL_BASE_ENV_VAR = 'OCI_METADATA_BASE_URL'
DEFAULT_METADATA_URL_BASE = 'http://169.254.169.254/opc/v2'
METADATA_URL_BASE = os.environ.get(METADATA_URL_BASE_ENV_VAR, DEFAULT_METADATA_URL_BASE)
GET_REGION_URL = '{}/instance/region'.format(METADATA_URL_BASE)
LEAF_CERTIFICATE_URL = '{}/identity/cert.pem'.format(METADATA_URL_BASE)
LEAF_CERTIFICATE_PRIVATE_KEY_URL = '{}/identity/key.pem'.format(METADATA_URL_BASE)
INTERMEDIATE_CERTIFICATE_URL = '{}/identity/intermediate.pem'.format(METADATA_URL_BASE)
METADATA_AUTH_HEADERS = {'Authorization': 'Bearer Oracle'}

def __init__(self, **kwargs):
self.logger = logging.getLogger("{}.{}".format(__name__, id(self)))
self.logger.addHandler(logging.NullHandler())
if kwargs.get('log_requests'):
Expand Down
2 changes: 1 addition & 1 deletion src/oci/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
# 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.

__version__ = "2.141.0"
__version__ = "2.141.1"

0 comments on commit 77b4a2b

Please sign in to comment.