Skip to content

Commit

Permalink
Releasing version 3.49.2
Browse files Browse the repository at this point in the history
Releasing version 3.49.2
  • Loading branch information
oci-dex-release-bot authored Oct 15, 2024
2 parents f98cba4 + 5e8b3ee commit e5d7e2c
Show file tree
Hide file tree
Showing 10 changed files with 946 additions and 138 deletions.
63 changes: 63 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,69 @@ All notable changes to this project will be documented in this file.

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

3.49.2 - 2024-10-15
--------------------
Added
~~~~~
* Container Engine For Kubernetes

* Support for new Open Id Connect Discovery feature in the OKE Control Plane service

* ``oci ce cluster create --open-id-connect-discovery-enabled``

* Support for new Open Id Connect Authentication commands in the OKE Control Plane service

* ``oci ce cluster create --oidc-ca-certificate``
* ``oci ce cluster create --oidc-client-id``
* ``oci ce cluster create --oidc-groups-claim``
* ``oci ce cluster create --oidc-groups-prefix``
* ``oci ce cluster create --oidc-issuer-url``
* ``oci ce cluster create --oidc-required-claims``
* ``oci ce cluster create --oidc-signing-algorithms``
* ``oci ce cluster create --oidc-username-claim``
* ``oci ce cluster create --oidc-username-prefix``
* ``oci ce cluster create --open-id-connect-auth-enabled``

* DNS Service

* Support for new DNS security extensions (DNSSEC) parameters in the DNS service.

* ``oci dns zone create --dnssec-state``
* ``oci dns zone update --dnssec-state``
* ``oci dns zone list --dnssec-state``

* Support for new DNS security extensions (DNSSEC) commands in the DNS service.

* ``oci dns zone promote-zone-dnssec-key-version``
* ``oci dns zone stage-zone-dnssec-key-version``

* BlockStorage service

* Support for new xrc-kms-key-id parameter in Core Service

* ``oci bv boot-volume create --xrc-kms-key-id``
* ``oci bv boot-volume create-boot-volume-boot-volume-source-from-boot-volume-replica-details --xrc-kms-key-id``
* ``oci bv volume create --xrc-kms-key-id``
* ``oci bv volume create-volume-volume-source-from-block-volume-replica-details --xrc-kms-key-id``
* ``oci bv volume-backup-policy-assignment create --xrc-kms-key-id``
* ``oci bv volume-group creat --xrc-kms-key-id``

* Support for Direct API feature in BlockStorage service

* ``oci bv volume create-volume-source-from-volume-backup-delta``
* ``oci bv boot-volume create-boot-volume-source-from-boot-volume-backup-delta``

* Goldengate Service

* Add support for list deployment environments

* ``oci goldengate deployment-environment list``

* Support for defining environment type for deployments in GoldenGate service

* ``oci goldengate deployment create --environment-type``
* ``oci goldengate deployment update --environment-type`
3.49.1 - 2024-10-10
--------------------
Added
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Jinja2>=3.1.4; python_version >= '3.7'
jmespath==0.10.0
ndg-httpsclient==0.4.2
mock==2.0.0
oci==2.135.2
oci==2.136.0
packaging==20.2
pluggy==0.13.0
py==1.11.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,3 +311,11 @@ def copy_boot_volume_backup(ctx, from_json, wait_for_state, max_wait_seconds, wa

# Remove create-volume-group-volume-group-source-from-volume-group-replica-details from oci bv volume-group
blockstorage_cli.volume_group_group.commands.pop(blockstorage_cli.create_volume_group_volume_group_source_from_volume_group_replica_details.name)


# oci bv boot-volume create-boot-volume-boot-volume-source-from-boot-volume-backup-delta-details -> oci bv boot-volume create-boot-volume-source-from-boot-volume-backup-delta
cli_util.rename_command(blockstorage_cli, blockstorage_cli.boot_volume_group, blockstorage_cli.create_boot_volume_boot_volume_source_from_boot_volume_backup_delta_details, "create-boot-volume-source-from-boot-volume-backup-delta")


# oci bv volume create-volume-volume-source-from-volume-backup-delta-details -> oci bv volume create-volume-source-from-volume-backup-delta
cli_util.rename_command(blockstorage_cli, blockstorage_cli.volume_group, blockstorage_cli.create_volume_volume_source_from_volume_backup_delta_details, "create-volume-source-from-volume-backup-delta")
352 changes: 338 additions & 14 deletions services/core/src/oci_cli_blockstorage/generated/blockstorage_cli.py

Large diffs are not rendered by default.

567 changes: 454 additions & 113 deletions services/dns/src/oci_cli_dns/generated/dns_cli.py

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions services/dns/tests/util/generated/command_to_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@
"dns.patch_domain_records": "oci.dns.DnsClient.patch_domain_records",
"dns.patch_rr_set": "oci.dns.DnsClient.patch_rr_set",
"dns.patch_zone_records": "oci.dns.DnsClient.patch_zone_records",
"dns.promote_zone_dnssec_key_version": "oci.dns.DnsClient.promote_zone_dnssec_key_version",
"dns.stage_zone_dnssec_key_version": "oci.dns.DnsClient.stage_zone_dnssec_key_version",
"dns.update_domain_records": "oci.dns.DnsClient.update_domain_records",
"dns.update_resolver": "oci.dns.DnsClient.update_resolver",
"dns.update_resolver_endpoint": "oci.dns.DnsClient.update_resolver_endpoint",
Expand Down
Loading

0 comments on commit e5d7e2c

Please sign in to comment.