Skip to content

Commit

Permalink
Releasing version 3.45.1
Browse files Browse the repository at this point in the history
Releasing version 3.45.1
  • Loading branch information
oci-dex-release-bot authored Aug 6, 2024
2 parents c7ac2e5 + bb07ecc commit 97dfc20
Show file tree
Hide file tree
Showing 20 changed files with 5,547 additions and 1,062 deletions.
83 changes: 83 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,89 @@ All notable changes to this project will be documented in this file.

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

3.45.1 - 2024-08-06
--------------------
Added
~~~~~
* Java Management Service Fleets

* Support for new commands

* ``oci jms agent-installer-summary``
* ``oci jms fleet request-deployed-application-migration-analyses``
* ``oci jms jms-plugin``

* Add new options to existing commands

* ``oci jms crypto-analysis-result list --finding-count, --finding-count-greater-than, --host-name, --non-compliant-finding-count, --non-compliant-finding-count-greater-than``
* ``oci jms fleet-agent-configuration update --is-collecting-managed-instance-metrics-enabled, --is-collecting-usernames-enabled``
* ``oci jms java-migration-analysis-result list --application-name, --host-name``
* ``oci jms library-usage summarize --cvss-score-greater-than, --cvss-score-less-than``
* ``oci jms performance-tuning-analysis-result list --host-name``
* ``oci jms work-request list --operation-type, --status``

* Support for a new optional parameter "compartmentId" in Java Management Service Downloads

* ``oci jms-java-downloads download-url generate-artifact --compartment-id``

* Big Data Service

* Support for new commands

* ``oci bds instance create-resource-principal-configuration``
* ``oci bds instance force-refresh-resource-principal``
* ``oci bds instance get-resource-principal-configuration``
* ``oci bds instance list-resource-principal-configurations``
* ``oci bds instance update-resource-principal-configuration``
* ``oci bds resource-principal-configuration remove``
* ``oci bds instance install-patch-downtime-based-odh-patching-config``

* Support for new optional parameters in the OS Management Hub service

* ``oci os-management-hub software-source create-custom-swsrc --is-latest-content-only``
* ``oci os-management-hub software-source create-versioned-custom-swsrc --is-latest-content-only``
* ``oci os-management-hub software-source update-custom-swsrc --is-latest-content-only``

* Devops Service

* Support for pull requests and merge in Source Control Management Service

* ``oci devops pull-request-comment``
* ``oci devops pull-request``
* ``oci devops protected-branch``
* ``oci devops project get-notification-preference``
* ``oci devops project get-project-settings``
* ``oci devops project update-project-settings``
* ``oci devops project update-notification-preference``
* ``oci devops project delete-project-settings``
* ``oci devops project list-project-analytics-authors``
* ``oci devops project summarize-project-analytics``
* ``oci devops repository get-repository-notification-preference``
* ``oci devops repository get-repository-settings``
* ``oci devops repository update-repository-settings``
* ``oci devops repository update-repository-notification-preference``
* ``oci devops repository delete-repository-settings``
* ``oci devops repository create-or-update-git-tag-details``
* ``oci devops repository create-or-update-git-branch-details``
* ``oci devops repository delete-git-ref``
* ``oci devops repository list-pull-request-authors``
* ``oci devops repository list-repository-analytics-authors``
* ``oci devops repository summarize-repository-analytics``
* ``oci devops repository sync``
* ``oci devops repository list-fork-sync-statuses``
* ``oci devops deployment service``

* Support for new optional parameter/flag

* ``oci devops repository create --parent-repository-id``
* ``oci devops repository get-commit-diff --target-repository-id`
* ``oci devops repository list-commit-diffs --target-repository-id``

* Support for new optional parameter --file-system-configuration-details in vm cluster in db service

* ``oci db vm-cluster create --file-system-configuration-details``
* ``oci db vm-cluster update --file-system-configuration-details``

3.45.0 - 2024-07-30
--------------------
Added
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.130.0
oci==2.131.0
packaging==20.2
pluggy==0.13.0
py==1.11.0
Expand Down
45 changes: 45 additions & 0 deletions services/bds/src/oci_cli_bds/bds_cli_extended.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,3 +158,48 @@ def install_patch_extended(ctx, **kwargs):

# Remove update-auto-scaling-configuration-update-schedule-based-vertical-scaling-policy-details from oci bds instance
bds_cli.bds_instance_group.commands.pop(bds_cli.update_auto_scaling_configuration_update_schedule_based_vertical_scaling_policy_details.name)


@cli_util.copy_params_from_generated_command(bds_cli.install_patch_batching_based_odh_patching_config, params_to_exclude=['version_parameterconflict'])
@bds_cli.bds_instance_group.command(name=bds_cli.install_patch_batching_based_odh_patching_config.name, help=bds_cli.install_patch_batching_based_odh_patching_config.help)
@cli_util.option('--patch-version', required=True, help=u"""The version of the patch to be installed. [required]""")
@click.pass_context
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={})
@cli_util.wrap_exceptions
def install_patch_batching_based_odh_patching_config_extended(ctx, **kwargs):

if 'patch_version' in kwargs:
kwargs['version_parameterconflict'] = kwargs['patch_version']
kwargs.pop('patch_version')

ctx.invoke(bds_cli.install_patch_batching_based_odh_patching_config, **kwargs)


@cli_util.copy_params_from_generated_command(bds_cli.install_patch_domain_based_odh_patching_config, params_to_exclude=['version_parameterconflict'])
@bds_cli.bds_instance_group.command(name=bds_cli.install_patch_domain_based_odh_patching_config.name, help=bds_cli.install_patch_domain_based_odh_patching_config.help)
@cli_util.option('--patch-version', required=True, help=u"""The version of the patch to be installed. [required]""")
@click.pass_context
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={})
@cli_util.wrap_exceptions
def install_patch_domain_based_odh_patching_config_extended(ctx, **kwargs):

if 'patch_version' in kwargs:
kwargs['version_parameterconflict'] = kwargs['patch_version']
kwargs.pop('patch_version')

ctx.invoke(bds_cli.install_patch_domain_based_odh_patching_config, **kwargs)


@cli_util.copy_params_from_generated_command(bds_cli.install_patch_downtime_based_odh_patching_config, params_to_exclude=['version_parameterconflict'])
@bds_cli.bds_instance_group.command(name=bds_cli.install_patch_downtime_based_odh_patching_config.name, help=bds_cli.install_patch_downtime_based_odh_patching_config.help)
@cli_util.option('--patch-version', required=True, help=u"""The version of the patch to be installed. [required]""")
@click.pass_context
@json_skeleton_utils.json_skeleton_generation_handler(input_params_to_complex_types={})
@cli_util.wrap_exceptions
def install_patch_downtime_based_odh_patching_config_extended(ctx, **kwargs):

if 'patch_version' in kwargs:
kwargs['version_parameterconflict'] = kwargs['patch_version']
kwargs.pop('patch_version')

ctx.invoke(bds_cli.install_patch_downtime_based_odh_patching_config, **kwargs)
Loading

0 comments on commit 97dfc20

Please sign in to comment.