Skip to content

Commit 3a18d61

Browse files
authored
Releasing version 3.28.1
Releasing version 3.28.1
2 parents efbde36 + fb7461d commit 3a18d61

File tree

8 files changed

+658
-62
lines changed

8 files changed

+658
-62
lines changed

CHANGELOG.rst

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,44 @@ 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.28.1 - 2023-05-30
10+
--------------------
11+
Added
12+
~~~~~
13+
* File Storage service
14+
15+
* Support for new policy-based snapshots commands
16+
17+
* ``oci fs filesystem-snapshot-policy``
18+
19+
* Support for optional parameters to file-system and snapshot
20+
21+
* ``oci fs file-system create --filesystem-snapshot-policy-id``
22+
* ``oci fs file-system list --filesystem-snapshot-policy-id``
23+
* ``oci fs file-system update --filesystem-snapshot-policy-id``
24+
* ``oci fs snapshot create --expiration-time``
25+
* ``oci fs snapshot update --expiration-time``
26+
* ``oci fs snapshot list --compartment-id --filesystem-snapshot-policy-id``
27+
28+
* Support for creating and updating a VM Cluster network with DR network support in the Database service
29+
30+
* ``oci db exadata-infrastructure-network create --dr-scan-details``
31+
* ``oci db exadata-infrastructure-network update --dr-scan-details``
32+
33+
* Support for optional parameter to indicate a dashboard is shared in the Management Dashboard services
34+
35+
* ``oci management-dashboard dashboard create --features-config``
36+
* ``oci management-dashboard dashboard update --features-config``
37+
* ``oci management-dashboard saved-search create --features-config``
38+
* ``oci management-dashboard saved-search update --features-config``
39+
40+
Changed
41+
~~~~~~~
42+
* Required parameter --file-system-id is now optional for below command in the File Storage service
43+
44+
* ``oci fs snapshot list --file-system-id``
45+
46+
947
3.28.0 - 2023-05-23
1048
--------------------
1149
Added

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Jinja2==3.0.3
1414
jmespath==0.10.0
1515
ndg-httpsclient==0.4.2
1616
mock==2.0.0
17-
oci==2.103.0
17+
oci==2.104.0
1818
packaging==20.2
1919
pluggy==0.13.0
2020
py==1.10.0

services/database/src/oci_cli_database/generated/database_cli.py

Lines changed: 25 additions & 9 deletions
Large diffs are not rendered by default.

services/file_storage/src/oci_cli_file_storage/generated/filestorage_cli.py

Lines changed: 529 additions & 13 deletions
Large diffs are not rendered by default.

services/management_dashboard/src/oci_cli_dashx_apis/generated/dashxapis_cli.py

Lines changed: 52 additions & 36 deletions
Large diffs are not rendered by default.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def open_relative(*path):
2929
readme = f.read()
3030

3131
requires = [
32-
'oci==2.103.0',
32+
'oci==2.104.0',
3333
'arrow>=1.0.0',
3434
'certifi',
3535
'click==8.0.4',

src/oci_cli/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Copyright (c) 2016, 2021, 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

5-
__version__ = '3.28.0'
5+
__version__ = '3.28.1'

tests/resources/json_ignore_command_list.txt

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,14 @@ ocvs, sddc, create
9999
db, cloud-exadata-infrastructure-unallocated-resources, get
100100
db, exadata-infrastructure-un-allocated-resources, get
101101
logging, service, list
102-
dns, zone, create-zone-from-zone-file
102+
dns, zone, create-zone-from-zone-file
103+
fs, file-system, list
104+
fs, filesystem-snapshot-policy, change-compartment
105+
fs, filesystem-snapshot-policy, create
106+
fs, filesystem-snapshot-policy, delete
107+
fs, filesystem-snapshot-policy, get
108+
fs, filesystem-snapshot-policy, list
109+
fs, filesystem-snapshot-policy, pause
110+
fs, filesystem-snapshot-policy, unpause
111+
fs, filesystem-snapshot-policy, update
112+
fs, snapshot, list

0 commit comments

Comments
 (0)