Skip to content

Commit

Permalink
Releasing version 3.39.1
Browse files Browse the repository at this point in the history
Releasing version 3.39.1
  • Loading branch information
kishan0201 authored Apr 16, 2024
2 parents 0f3cb6a + 08f831c commit 3d48b37
Show file tree
Hide file tree
Showing 21 changed files with 1,331 additions and 44 deletions.
84 changes: 84 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,90 @@ All notable changes to this project will be documented in this file.

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

3.39.1 - 2024-04-16
--------------------
Added
~~~~~
* Database Service

* New Autonomous Database Software Image Introduced

* ``oci db autonomous-database-software-image``

* Support for Autonomous Database Software Image

* ``oci db autonomous-database-software-image change-compartment --autonomous-database-software-image-id``
* ``oci db autonomous-database-software-image create``
* ``oci db autonomous-database-software-image delete``
* ``oci db autonomous-database-software-image get --autonomous-database-software-image-id``
* ``oci db autonomous-database-software-image list``
* ``oci db autonomous-database-software-image update --autonomous-database-software-image-id``

* Support for optional parameter --database-software-image-id

* ``oci db autonomous-container-database create --database-software-image-id``

* Database Migration Service

* Support for AWS_S3 with object_storage_bucket migrations

* ``oci database-migration migration create-migration-aws-s3-data-transfer-medium-details``
* ``oci database-migration migration update-migration-aws-s3-data-transfer-medium-details``

* Generative AI Interface Service

* Support for Chat Results

* ``oci generative-ai-inference chat-result chat``
* ``oci generative-ai-inference chat-result chat-cohere-chat-request``
* ``oci generative-ai-inference chat-result chat-dedicated-serving-mode``
* ``oci generative-ai-inference chat-result chat-generic-chat-request``
* ``oci generative-ai-inference chat-result chat-on-demand-serving-mode``

* Network Load Balancer Service

* Addition of optional parameter --is-fail-open in backend-set and health-checker update commands

* ``oci nlb backend-set update``
* ``oci nlb health-checker update``

* Redis Service

* Support for new optional parameters --nsg-ids in redis cluster commands

* ``oci redis redis-cluster create --nsg-ids``
* ``oci redis redis-cluster update --nsg-ids``

* Generative AI Service

* Support Dedicated AI Cluster Unit Shape LARGE_COHERE_V2 in the Generative AI Service Management

* ``oci generative-ai dedicated-ai-cluster``

* Usage Service

* Support for Usage Statements in email recipient groups

* ``oci usage-api email-recipients-group create``
* ``oci usage-api email-recipients-group delete``
* ``oci usage-api email-recipients-group get``
* ``oci usage-api email-recipients-group list``
* ``oci usage-api email-recipients-group update``

* AI Language Service

* Support for extracting entities from healthcare records

* ``oci ai language batch-detect-health-entities --documents --endpoint-id --is-detect-assertions --is-detect-relationships``
* ``oci ai language batch-detect-pii-entities``

* Process Automation Service

* Support for the Oracle Process Automation instance start and stop operation

* ``oci opa opa-instance start --opa-instance-id``
* ``oci opa opa-instance stop --opa-instance-id``

3.39.0 - 2024-04-09
--------------------
Removed
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Jinja2==3.0.3
jmespath==0.10.0
ndg-httpsclient==0.4.2
mock==2.0.0
oci==2.125.2
oci==2.125.3
packaging==20.2
pluggy==0.13.0
py==1.11.0
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# coding: utf-8
# Copyright (c) 2016, 2020, 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.

import click # noqa: F401
import json # noqa: F401
from oci_cli import cli_util # noqa: F401
from oci_cli import custom_types # noqa: F401
from oci_cli import json_skeleton_utils # noqa: F401
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ def language_group():
cli_util.rename_command(aiservicelanguage_cli, aiservicelanguage_cli.batch_detect_language_sentiments_group, aiservicelanguage_cli.batch_detect_language_sentiments, "batch-detect-sentiments")
cli_util.rename_command(aiservicelanguage_cli, aiservicelanguage_cli.batch_detect_language_text_classification_group, aiservicelanguage_cli.batch_detect_language_text_classification, "batch-detect-text-classification")
cli_util.rename_command(aiservicelanguage_cli, aiservicelanguage_cli.batch_detect_language_pii_entities_group, aiservicelanguage_cli.batch_detect_language_pii_entities, "batch-detect-pii-entities")
cli_util.rename_command(aiservicelanguage_cli, aiservicelanguage_cli.batch_detect_health_entity_details_group, aiservicelanguage_cli.batch_detect_health_entity, "batch-detect-health-entities")

# Single Documents APIs
cli_util.rename_command(aiservicelanguage_cli, aiservicelanguage_cli.detect_dominant_language_group, aiservicelanguage_cli.detect_dominant_language, "detect-language")
Expand All @@ -55,6 +56,7 @@ def language_group():
aiservicelanguage_cli.ai_root_group.commands.pop(aiservicelanguage_cli.batch_detect_language_sentiments_group.name)
aiservicelanguage_cli.ai_root_group.commands.pop(aiservicelanguage_cli.batch_detect_language_text_classification_group.name)
aiservicelanguage_cli.ai_root_group.commands.pop(aiservicelanguage_cli.batch_detect_language_pii_entities_group.name)
aiservicelanguage_cli.ai_root_group.commands.pop(aiservicelanguage_cli.batch_detect_health_entity_details_group.name)

# Single Documents APIs
aiservicelanguage_cli.ai_root_group.commands.pop(aiservicelanguage_cli.detect_dominant_language_group.name)
Expand All @@ -71,6 +73,7 @@ def language_group():
language_group.add_command(aiservicelanguage_cli.batch_detect_language_sentiments)
language_group.add_command(aiservicelanguage_cli.batch_detect_language_text_classification)
language_group.add_command(aiservicelanguage_cli.batch_detect_language_pii_entities)
language_group.add_command(aiservicelanguage_cli.batch_detect_health_entity)

# Single Documents APIs
aiservicelanguage_cli.ai_root_group.add_command(language_group)
Expand Down Expand Up @@ -139,3 +142,6 @@ def language_group():

# Add Job group to language group
language_group.add_command(aiservicelanguage_cli.job_group)

# Remove polymorphic model group command
aiservicelanguage_cli.model_group.commands.pop(aiservicelanguage_cli.create_model_pii_model_details.name)
Loading

0 comments on commit 3d48b37

Please sign in to comment.