Skip to content

Commit e5d7e2c

Browse files
Releasing version 3.49.2
Releasing version 3.49.2
2 parents f98cba4 + 5e8b3ee commit e5d7e2c

File tree

10 files changed

+946
-138
lines changed

10 files changed

+946
-138
lines changed

CHANGELOG.rst

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,69 @@ All notable changes to this project will be documented in this file.
66

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

9+
3.49.2 - 2024-10-15
10+
--------------------
11+
Added
12+
~~~~~
13+
* Container Engine For Kubernetes
14+
15+
* Support for new Open Id Connect Discovery feature in the OKE Control Plane service
16+
17+
* ``oci ce cluster create --open-id-connect-discovery-enabled``
18+
19+
* Support for new Open Id Connect Authentication commands in the OKE Control Plane service
20+
21+
* ``oci ce cluster create --oidc-ca-certificate``
22+
* ``oci ce cluster create --oidc-client-id``
23+
* ``oci ce cluster create --oidc-groups-claim``
24+
* ``oci ce cluster create --oidc-groups-prefix``
25+
* ``oci ce cluster create --oidc-issuer-url``
26+
* ``oci ce cluster create --oidc-required-claims``
27+
* ``oci ce cluster create --oidc-signing-algorithms``
28+
* ``oci ce cluster create --oidc-username-claim``
29+
* ``oci ce cluster create --oidc-username-prefix``
30+
* ``oci ce cluster create --open-id-connect-auth-enabled``
31+
32+
* DNS Service
33+
34+
* Support for new DNS security extensions (DNSSEC) parameters in the DNS service.
35+
36+
* ``oci dns zone create --dnssec-state``
37+
* ``oci dns zone update --dnssec-state``
38+
* ``oci dns zone list --dnssec-state``
39+
40+
* Support for new DNS security extensions (DNSSEC) commands in the DNS service.
41+
42+
* ``oci dns zone promote-zone-dnssec-key-version``
43+
* ``oci dns zone stage-zone-dnssec-key-version``
44+
45+
* BlockStorage service
46+
47+
* Support for new xrc-kms-key-id parameter in Core Service
48+
49+
* ``oci bv boot-volume create --xrc-kms-key-id``
50+
* ``oci bv boot-volume create-boot-volume-boot-volume-source-from-boot-volume-replica-details --xrc-kms-key-id``
51+
* ``oci bv volume create --xrc-kms-key-id``
52+
* ``oci bv volume create-volume-volume-source-from-block-volume-replica-details --xrc-kms-key-id``
53+
* ``oci bv volume-backup-policy-assignment create --xrc-kms-key-id``
54+
* ``oci bv volume-group creat --xrc-kms-key-id``
55+
56+
* Support for Direct API feature in BlockStorage service
57+
58+
* ``oci bv volume create-volume-source-from-volume-backup-delta``
59+
* ``oci bv boot-volume create-boot-volume-source-from-boot-volume-backup-delta``
60+
61+
* Goldengate Service
62+
63+
* Add support for list deployment environments
64+
65+
* ``oci goldengate deployment-environment list``
66+
67+
* Support for defining environment type for deployments in GoldenGate service
68+
69+
* ``oci goldengate deployment create --environment-type``
70+
* ``oci goldengate deployment update --environment-type`
71+
972
3.49.1 - 2024-10-10
1073
--------------------
1174
Added

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Jinja2>=3.1.4; python_version >= '3.7'
1515
jmespath==0.10.0
1616
ndg-httpsclient==0.4.2
1717
mock==2.0.0
18-
oci==2.135.2
18+
oci==2.136.0
1919
packaging==20.2
2020
pluggy==0.13.0
2121
py==1.11.0

services/core/src/oci_cli_blockstorage/blockstorage_cli_extended.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,3 +311,11 @@ def copy_boot_volume_backup(ctx, from_json, wait_for_state, max_wait_seconds, wa
311311

312312
# Remove create-volume-group-volume-group-source-from-volume-group-replica-details from oci bv volume-group
313313
blockstorage_cli.volume_group_group.commands.pop(blockstorage_cli.create_volume_group_volume_group_source_from_volume_group_replica_details.name)
314+
315+
316+
# 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
317+
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")
318+
319+
320+
# oci bv volume create-volume-volume-source-from-volume-backup-delta-details -> oci bv volume create-volume-source-from-volume-backup-delta
321+
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")

services/core/src/oci_cli_blockstorage/generated/blockstorage_cli.py

Lines changed: 338 additions & 14 deletions
Large diffs are not rendered by default.

services/dns/src/oci_cli_dns/generated/dns_cli.py

Lines changed: 454 additions & 113 deletions
Large diffs are not rendered by default.

services/dns/tests/util/generated/command_to_api.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@
4444
"dns.patch_domain_records": "oci.dns.DnsClient.patch_domain_records",
4545
"dns.patch_rr_set": "oci.dns.DnsClient.patch_rr_set",
4646
"dns.patch_zone_records": "oci.dns.DnsClient.patch_zone_records",
47+
"dns.promote_zone_dnssec_key_version": "oci.dns.DnsClient.promote_zone_dnssec_key_version",
48+
"dns.stage_zone_dnssec_key_version": "oci.dns.DnsClient.stage_zone_dnssec_key_version",
4749
"dns.update_domain_records": "oci.dns.DnsClient.update_domain_records",
4850
"dns.update_resolver": "oci.dns.DnsClient.update_resolver",
4951
"dns.update_resolver_endpoint": "oci.dns.DnsClient.update_resolver_endpoint",

0 commit comments

Comments
 (0)