Skip to content

Commit 01e43f8

Browse files
pankajmjxHamadaGabrIbrahimharshkumar-devKanvipasrichalealex262
committed
Releasing version 3.22.2
Co-authored-by: Hamada Ibrahim <[email protected]> Co-authored-by: Harsh Kumar <[email protected]> Co-authored-by: Kanvi Pasricha <[email protected]> Co-authored-by: Alex Le <[email protected]> Co-authored-by: Nupur Gupta <[email protected]> Co-authored-by: Karthik Kamath <[email protected]> Co-authored-by: Mandy Tsai <[email protected]> Co-authored-by: Anup Singh <[email protected]>
1 parent fb1eebc commit 01e43f8

File tree

1,225 files changed

+1712
-1250
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,225 files changed

+1712
-1250
lines changed

CHANGELOG.rst

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,43 @@ 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.22.2 - 2023-01-17
10+
--------------------
11+
Added
12+
~~~~~
13+
14+
* Database service
15+
16+
* Support for Private DNS in ExaCS systems during provisioning
17+
18+
* ``oci db cloud-vm-cluster create --private-zone-id``
19+
20+
* Support for Elastic Storage Expansion (Multi-Rack) feature
21+
22+
* ``oci db exadata-infrastructure create --is-multi-rack-deployment, --multi-rack-configuration-file``
23+
* ``oci db exadata-infrastructure get --excluded-fields``
24+
* ``oci db exadata-infrastructure list --excluded-fields``
25+
* ``oci db exadata-infrastructure update --is-multi-rack-deployment, --multi-rack-configuration-file``
26+
27+
* Support for target version fields of infra patching v2 features on cloud exadata infrastructure
28+
29+
* ``oci db cloud-exa-infra get --storageserverversion``
30+
* ``oci db cloud-exa-infra get --dbserverversion``
31+
* ``oci db cloud-exa-infra get --monthlystorageserverversion``
32+
* ``oci db cloud-exa-infra get --monthlydbserverversion``
33+
34+
* Data Science Service
35+
36+
* Support for creating model version sets in model catalog
37+
38+
* ``oci data-science model-version-set *``
39+
40+
* Support for option paramater ``model-version-set-id`` and ``version-label`` for following commands
41+
42+
* ``oci data-science model create --model-version-set-id, --version-label``
43+
* ``oci data-science model list --model-version-set-name, --version-label``
44+
* ``oci data-science model update --model-version-set-id, --version-label``
45+
946
3.22.1 - 2023-01-10
1047
--------------------
1148
Added

requirements.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ certifi
88
cffi>=1.9.1
99
click==7.1.2
1010
coverage==4.5.2
11-
cryptography>=3.2.1,<=39.0.0
11+
cryptography>=3.2.1,<39.0.0
1212
httpsig-cffi==15.0.0
1313
Jinja2==3.0.3
1414
jmespath==0.10.0
1515
ndg-httpsclient==0.4.2
1616
mock==2.0.0
17-
oci==2.90.1
17+
oci==2.90.2
1818
packaging==20.2
1919
pluggy==0.13.0
2020
py==1.10.0
@@ -27,7 +27,6 @@ pytest-cov==2.5.1
2727
python-dateutil>=2.5.3,<3.0.0
2828
pytz>=2016.10
2929
requests==2.21.0
30-
setuptools<45
3130
six>=1.15.0
3231
sphinx==3.3.0
3332
sphinx-rtd-theme==0.4.3
@@ -40,3 +39,5 @@ pytest-forked==1.0.2
4039
PyYAML>=5.4,<6
4140
docutils==0.15.2
4241
prompt-toolkit==3.0.29
42+
setuptools>65.5.1; python_version > '3.6'
43+
setuptools==59.6.0; python_version == '3.6'

scripts/examples/project_o/o

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import fcntl
2121
import errno
2222
import datetime
2323
VERSION = "1.3"
24-
UPDATED = "2022-12-25"
24+
UPDATED = "2023-01-04"
2525

2626
# ==============================================================================
2727
# Global variables
@@ -1392,7 +1392,7 @@ def omap(argv):
13921392
print('\n SUBNET', '{:18}'.format(subnet['alias']), subnet['cidr-block'])
13931393
# get vnics and vnicattachments
13941394
vnics = [i for i in ocids if i['type'] == 'vnic'
1395-
and i['subnet-id'] == subnet['id']]
1395+
and 'subnet-id' in i and i['subnet-id'] == subnet['id']]
13961396
for vnic in vnics:
13971397
print(' vnic',
13981398
'{:18}'.format(vnic['alias']),
@@ -1411,7 +1411,7 @@ def omap(argv):
14111411
print(' inst:', ocid[va['instance-id']]['alias'], end='')
14121412
print('')
14131413
lbs = [i for i in ocids if i['type'] == 'loadbalancer'
1414-
and subnet['id'] in i['subnet-ids']]
1414+
and 'subnet-ids' in i and subnet['id'] in i['subnet-ids']]
14151415
for lb in lbs:
14161416
print(' ' + '{:21}'.format(lb['type']), '{:28}'.format(lb['alias']),
14171417
', '.join([ip['ip-address'] for ip in lb['ip-addresses']]))
@@ -1965,7 +1965,7 @@ try:
19651965
exit(cli.returncode)
19661966

19671967
cli = subprocess.Popen(oci_command_list, stdout=subprocess.PIPE,
1968-
stderr=subprocess.PIPE, text=True)
1968+
stderr=subprocess.PIPE, universal_newlines=True)
19691969
except subprocess.SubprocessError as err:
19701970
print('ERROR:', err)
19711971
exit(1)

scripts/install/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,4 @@ Checksums
7979
-----------
8080
install.sh eff201279e7198101e8cbbe4cea2ca559732f3cd502e145354d7477d2a4621ce
8181
install.ps1 8dba598ded1718cfa2e52ca8785ece31d0b573868eaec9ad2af535d43797a70c
82-
install.py 2062e01a399a6a1f101beaf697820973e32809e20fefeb07b0a3b5416d5588ef
82+
install.py a33ecbd89df620ac16bdf61d83823f74706883be40ee14ce5e13716c5d2e7ba3

services/adm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# coding: utf-8
2-
# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
33
# 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.

services/adm/src/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# coding: utf-8
2-
# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
33
# 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.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# coding: utf-8
2-
# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
33
# 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.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# coding: utf-8
2-
# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
33
# 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.

services/adm/src/oci_cli_application_dependency_management/generated/applicationdependencymanagement_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# coding: utf-8
2-
# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
33
# 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.
44

55
from __future__ import print_function

services/adm/src/oci_cli_application_dependency_management/generated/client_mappings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# coding: utf-8
2-
# Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2016, 2023, Oracle and/or its affiliates. All rights reserved.
33
# 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.
44

55
import oci

0 commit comments

Comments
 (0)