Skip to content

Commit 9e98bb8

Browse files
lealex262HamadaGabrIbrahimharshkumar-devKanvipasrichaNupur Gupta
committed
Releasing version 3.33.0
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: Pankaj Joshi <[email protected]> Co-authored-by: Anup Singh <[email protected]>
1 parent 6d032e7 commit 9e98bb8

File tree

31 files changed

+963
-314
lines changed

31 files changed

+963
-314
lines changed

CHANGELOG.rst

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,64 @@ 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.33.0 - 2023-09-05
10+
--------------------
11+
Added
12+
~~~~~
13+
* Support for filtering and sorting work requests in the Container Instances service
14+
15+
* ``oci container-instances work-request list --availability-domain --sort-by --sort-order --status``
16+
* ``oci container-instances work-request list-errors --sort-by --sort-order``
17+
* ``oci container-instances work-request list-logs --sort-by --sort-order``
18+
19+
* Queue Service
20+
21+
* Support for queue channels
22+
23+
* ``oci queue channels list-channels``
24+
25+
* Support for new optional parameters
26+
27+
* ``oci queue messages get-messages --channel-filter``
28+
* ``oci queue messages get-stats --channel-id``
29+
* ``oci queue queue-admin queue create --channel-consumption-limit``
30+
* ``oci queue queue-admin queue purge --channel-ids``
31+
* ``oci queue queue-admin queue update --channel-consumption-limit``
32+
33+
* Data Catalog Service
34+
35+
* Support for new entity lineage retrieval and asynchronous glossary export commands in the Data Catalog service
36+
37+
* ``oci data-catalog entity fetch-entity-lineage``
38+
* ``oci data-catalog glossary asynchronous-export``
39+
40+
* Support for new optional parameters on folders and jobs in the Data Catalog service
41+
42+
* ``oci data-catalog folder list --type-key``
43+
* ``oci data-catalog job list --glossary-key``
44+
* ``oci data-catalog job-definition create --glossary-key``
45+
* ``oci data-catalog job-definition list --glossary-key``
46+
* ``oci data-catalog job-definition update --glossary-key``
47+
48+
Changed
49+
~~~~~~~
50+
* [BREAKING] Customer Incident Management Service
51+
52+
* Endoint changed from https://incidentmanagement.{region}.{domainAndTopLevelDomain} to https://incidentmanagement.{region}.oci.{domainAndTopLevelDomain} (e.g. https://incidentmanagement.us-phoenix-1.oraclecloud.com to https://incidentmanagement.us-phoenix-1.oci.oraclecloud.com)
53+
54+
* Incident commands moved to parent group
55+
56+
* ``oci support incident create``
57+
* ``oci support incident get``
58+
* ``oci support incident list``
59+
* ``oci support incident update``
60+
* ``oci support incident-resource-type list``
61+
* ``oci support validation-response validate-user``
62+
63+
* Command removed
64+
65+
* ``oci support user user create``
66+
967
3.32.0 - 2023-08-29
1068
--------------------
1169
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.111.0
17+
oci==2.112.0
1818
packaging==20.2
1919
pluggy==0.13.0
2020
py==1.11.0

services/cims/src/oci_cli_cims/__init__.py

Lines changed: 0 additions & 4 deletions
This file was deleted.

services/cims/src/oci_cli_cims/generated/__init__.py

Lines changed: 0 additions & 4 deletions
This file was deleted.

services/cims/src/oci_cli_cims/generated/support_service_cli.py

Lines changed: 0 additions & 14 deletions
This file was deleted.

services/cims/src/oci_cli_cims/support_cli_extended.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
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-
# from services.cims.src.oci_cli_incident.generated import incident_cli
5+
from services.cims.src.oci_cli_incident.generated import incident_cli
66

77
# Remove the cli command: oci support status
8-
# incident_cli.support_root_group.commands.pop(incident_cli.status_group.name)
8+
incident_cli.support_root_group.commands.pop(incident_cli.status_group.name)
99
# Remove the cli command: oci support string
10-
# incident_cli.support_root_group.commands.pop(incident_cli.string_group.name)
10+
incident_cli.support_root_group.commands.pop(incident_cli.string_group.name)
1111
# Remove the cli command: oci support update-incident
12-
# incident_cli.support_root_group.commands.pop(incident_cli.update_incident_group.name)
12+
incident_cli.support_root_group.commands.pop(incident_cli.update_incident_group.name)

0 commit comments

Comments
 (0)