Accepting request 1110315 from home:glaubitz:branches:Cloud:Tools
- Update to version 3.33.0 * Support for filtering and sorting work requests in the Container Instances service * ``oci container-instances work-request list --availability-\ domain --sort-by --sort-order --status`` * ``oci container-instances work-request list-errors --sort-by --sort-order`` * ``oci container-instances work-request list-logs --sort-by --sort-order`` * Queue Service * Support for queue channels * ``oci queue channels list-channels`` * Support for new optional parameters * ``oci queue messages get-messages --channel-filter`` * ``oci queue messages get-stats --channel-id`` * ``oci queue queue-admin queue create --channel-consumption-limit`` * ``oci queue queue-admin queue purge --channel-ids`` * ``oci queue queue-admin queue update --channel-consumption-limit`` * Data Catalog Service * Support for new entity lineage retrieval and asynchronous glossary export commands in the Data Catalog service * ``oci data-catalog entity fetch-entity-lineage`` * ``oci data-catalog glossary asynchronous-export`` * Support for new optional parameters on folders and jobs in the Data Catalog service * ``oci data-catalog folder list --type-key`` * ``oci data-catalog job list --glossary-key`` * ``oci data-catalog job-definition create --glossary-key`` * ``oci data-catalog job-definition list --glossary-key`` * ``oci data-catalog job-definition update --glossary-key`` * [BREAKING] Customer Incident Management Service * Endoint changed from https://incidentmanagement.{region}.{domainAndTopLevelDomain} to https://incidentmanagement.{region}.oci.{domainAndTopLevelDomain} OBS-URL: https://build.opensuse.org/request/show/1110315 OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/oci-cli?expand=0&rev=98
This commit is contained in:
parent
a033da4bc3
commit
40491ea08e
@ -1,6 +1,6 @@
|
||||
diff -Nru oci-cli-3.30.2.orig/requirements.txt oci-cli-3.30.2/requirements.txt
|
||||
--- oci-cli-3.30.2.orig/requirements.txt 2023-08-08 22:01:45.000000000 +0200
|
||||
+++ oci-cli-3.30.2/requirements.txt 2023-08-22 14:34:18.005575848 +0200
|
||||
diff -Nru oci-cli-3.33.0.orig/requirements.txt oci-cli-3.33.0/requirements.txt
|
||||
--- oci-cli-3.33.0.orig/requirements.txt 2023-09-06 11:07:04.000000000 +0200
|
||||
+++ oci-cli-3.33.0/requirements.txt 2023-09-11 15:06:18.994505506 +0200
|
||||
@@ -2,47 +2,47 @@
|
||||
# (https://pip.pypa.io/en/stable/reference/pip_install/#requirements-file-format),
|
||||
# you may need to use the --extra-index-url option instead.
|
||||
@ -18,10 +18,10 @@ diff -Nru oci-cli-3.30.2.orig/requirements.txt oci-cli-3.30.2/requirements.txt
|
||||
-jmespath==0.10.0
|
||||
-ndg-httpsclient==0.4.2
|
||||
-mock==2.0.0
|
||||
-oci==2.110.0
|
||||
-oci==2.112.0
|
||||
-packaging==20.2
|
||||
-pluggy==0.13.0
|
||||
-py==1.10.0
|
||||
-py==1.11.0
|
||||
-pyasn1==0.2.3
|
||||
-pyOpenSSL>=17.5.0,<24.0.0
|
||||
-pycparser==2.20
|
||||
@ -38,10 +38,10 @@ diff -Nru oci-cli-3.30.2.orig/requirements.txt oci-cli-3.30.2/requirements.txt
|
||||
+jmespath>=0.10.0
|
||||
+ndg-httpsclient>=0.4.2
|
||||
+mock>=2.0.0
|
||||
+oci>=2.110.0
|
||||
+oci>=2.112.0
|
||||
+packaging>=20.2
|
||||
+pluggy>=0.13.0
|
||||
+py>=1.10.0
|
||||
+py>=1.11.0
|
||||
+pyasn1>=0.2.3
|
||||
+pyOpenSSL>=17.5.0
|
||||
+pycparser>=2.20
|
||||
@ -65,7 +65,7 @@ diff -Nru oci-cli-3.30.2.orig/requirements.txt oci-cli-3.30.2/requirements.txt
|
||||
-virtualenv==20.13.0
|
||||
-pytest-xdist==1.22.2
|
||||
-pytest-forked==1.0.2
|
||||
-PyYAML>=5.4,<=6
|
||||
-PyYAML>=5.4,<=6.0.1
|
||||
-docutils==0.15.2
|
||||
-prompt-toolkit==3.0.29
|
||||
+sphinx>=3.3.0
|
||||
@ -87,15 +87,15 @@ diff -Nru oci-cli-3.30.2.orig/requirements.txt oci-cli-3.30.2/requirements.txt
|
||||
-urllib3<=1.26.15
|
||||
\ No newline at end of file
|
||||
+urllib3<=1.26.15
|
||||
diff -Nru oci-cli-3.30.2.orig/setup.py oci-cli-3.30.2/setup.py
|
||||
--- oci-cli-3.30.2.orig/setup.py 2023-08-08 22:01:45.000000000 +0200
|
||||
+++ oci-cli-3.30.2/setup.py 2023-08-22 14:33:14.762158754 +0200
|
||||
diff -Nru oci-cli-3.33.0.orig/setup.py oci-cli-3.33.0/setup.py
|
||||
--- oci-cli-3.33.0.orig/setup.py 2023-09-06 11:07:04.000000000 +0200
|
||||
+++ oci-cli-3.33.0/setup.py 2023-09-11 15:05:12.864430046 +0200
|
||||
@@ -30,23 +30,23 @@
|
||||
readme = f.read()
|
||||
|
||||
requires = [
|
||||
- 'oci==2.110.0',
|
||||
+ 'oci>=2.110.0',
|
||||
- 'oci==2.112.0',
|
||||
+ 'oci>=2.112.0',
|
||||
'arrow>=1.0.0',
|
||||
'certifi',
|
||||
- 'click==8.0.4',
|
||||
@ -110,7 +110,7 @@ diff -Nru oci-cli-3.30.2.orig/setup.py oci-cli-3.30.2/setup.py
|
||||
'six>=1.15.0',
|
||||
- 'terminaltables==3.1.0',
|
||||
- 'pyOpenSSL>=17.5.0,<24.0.0',
|
||||
- 'PyYAML>=5.4,<=6',
|
||||
- 'PyYAML>=5.4,<=6.0.1',
|
||||
- 'prompt-toolkit==3.0.29'
|
||||
+ 'terminaltables>=3.1.0',
|
||||
+ 'pyOpenSSL>=17.5.0',
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5c100f66df66b554c6678a91bcf69b29fdf32f633d0d292ff92450b66c437207
|
||||
size 4754329
|
3
oci-cli-3.33.0.tar.gz
Normal file
3
oci-cli-3.33.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:32fd19f6069f93f9511971f56fbcda3f0e85d3d529c1de9e6c0d82c889ef8dd8
|
||||
size 4784135
|
146
oci-cli.changes
146
oci-cli.changes
@ -1,3 +1,149 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 11 13:07:07 UTC 2023 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to version 3.33.0
|
||||
* Support for filtering and sorting work requests in the Container Instances service
|
||||
* ``oci container-instances work-request list --availability-\
|
||||
domain --sort-by --sort-order --status``
|
||||
* ``oci container-instances work-request list-errors --sort-by --sort-order``
|
||||
* ``oci container-instances work-request list-logs --sort-by --sort-order``
|
||||
* Queue Service
|
||||
* Support for queue channels
|
||||
* ``oci queue channels list-channels``
|
||||
* Support for new optional parameters
|
||||
* ``oci queue messages get-messages --channel-filter``
|
||||
* ``oci queue messages get-stats --channel-id``
|
||||
* ``oci queue queue-admin queue create --channel-consumption-limit``
|
||||
* ``oci queue queue-admin queue purge --channel-ids``
|
||||
* ``oci queue queue-admin queue update --channel-consumption-limit``
|
||||
* Data Catalog Service
|
||||
* Support for new entity lineage retrieval and asynchronous glossary
|
||||
export commands in the Data Catalog service
|
||||
* ``oci data-catalog entity fetch-entity-lineage``
|
||||
* ``oci data-catalog glossary asynchronous-export``
|
||||
* Support for new optional parameters on folders
|
||||
and jobs in the Data Catalog service
|
||||
* ``oci data-catalog folder list --type-key``
|
||||
* ``oci data-catalog job list --glossary-key``
|
||||
* ``oci data-catalog job-definition create --glossary-key``
|
||||
* ``oci data-catalog job-definition list --glossary-key``
|
||||
* ``oci data-catalog job-definition update --glossary-key``
|
||||
* [BREAKING] Customer Incident Management Service
|
||||
* 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)
|
||||
* Incident commands moved to parent group
|
||||
* ``oci support incident create``
|
||||
* ``oci support incident get``
|
||||
* ``oci support incident list``
|
||||
* ``oci support incident update``
|
||||
* ``oci support incident-resource-type list``
|
||||
* ``oci support validation-response validate-user``
|
||||
* Command removed
|
||||
* ``oci support user user create``
|
||||
- from version 3.32.0
|
||||
* Database Service
|
||||
* Support for displaying resource usage information on
|
||||
autonomous container database get operations
|
||||
* ``oci db autonomous-container-database get-autonomous-container-\
|
||||
database-resource-usage --autonomous-container-database-id``
|
||||
* Support for displaying resource usage information on cloud autonomous
|
||||
vm cluster get operations
|
||||
* ``oci db cloud-autonomous-vm-cluster get-cloud-autonomous-vm-cluster-\
|
||||
resource-usage --cloud-autonomous-vm-cluster-id``
|
||||
* Support for displaying resource usage information for list of autonomous
|
||||
container databases on cloud autonomous vm cluster get operations
|
||||
* ``oci db cloud-autonomous-vm-cluster list-cloud-autonomous-vm-cluster-\
|
||||
acd-resource-usage --cloud-autonomous-vm-cluster-id``
|
||||
* APM Synthetic Monitoring Service
|
||||
* Support for the network monitor creation and updation
|
||||
* ``oci apm-synthetics monitor create-network-monitor``
|
||||
* ``oci apm-synthetics monitor update-network-monitor``
|
||||
* Database Migration Service
|
||||
* Support for new parameters for GoldenGate Service integration in DMS
|
||||
* ``oci database-migration connection create --replication-credentials``
|
||||
* ``oci database-migration connection update --replication-credentials``
|
||||
* Support for new parameters for GoldenGate service integration in DMS
|
||||
* ``oci database-migration migration create --golden-gate-service-details``
|
||||
* ``oci database-migration migration update --golden-gate-service-details``
|
||||
* Networking Services
|
||||
* Support for new parameters is-private, is-transport-mode
|
||||
* ``oci network cpe create --is-private``
|
||||
* ``oci network virtual-circuit create --is-transport-mode``
|
||||
* ``oci network virtual-circuit update --is-transport-mode``
|
||||
* Support for virtual circuit associated tunnels
|
||||
* ``oci network virtual-circuit-associated-tunnel-details list-virtual-\
|
||||
circuit-associated-tunnels --virtual-circuit-id``
|
||||
* Support for new parameters transportAttachmentId, transportOnlyMode
|
||||
in the Dynamic Routing Gateway
|
||||
* ``oci network drg-attachment create-drg-attachment-loop-back-drg-\
|
||||
attachment-network-create-details --network-details-ids``
|
||||
* ``oci network drg-attachment create-vcn-drg-attachment-loop-back-\
|
||||
drg-attachment-network-create-details --network-details-ids``
|
||||
* ``oci network drg-attachment update-drg-attachment-loopback-drg-\
|
||||
attachment-network-update-details --network-details-ids``
|
||||
* ``oci network drg-attachment update-vcn-drg-attachment-loopback-drg-\
|
||||
attachment-network-update-details --network-details-ids``
|
||||
* Support for Encrypted Fastconnect
|
||||
* Compute Service
|
||||
* Support for assigning an IPv6 address to a compute instance during
|
||||
instance launch or secondary VNIC attach
|
||||
* ``oci compute instance launch --assign-ipv6-ip true``
|
||||
* [BREAKING] Removal of Analytics Cluster in MySQL Database Service
|
||||
* ``oci mysql db-system analytics-cluster``
|
||||
* ``oci mysql db-system analytics-cluster-memory-estimate``
|
||||
* [BREAKING] New required parameter in Networking Services
|
||||
* ``oci network virtual-circuit update --virtual-circuit-id``
|
||||
- from version 3.31.1
|
||||
* Support for Warehouse data objects in the Operations Insights service
|
||||
* ``oci opsi opsi-warehouse-data-objects list``
|
||||
* ``oci opsi opsi-warehouse-data-objects query-warehouse-data-standard-query``
|
||||
* ``oci opsi opsi-warehouse-data-objects query-warehouse-data-templatized-query``
|
||||
* Support standard queries for Operations Insights data
|
||||
objects in the Operations Insights service
|
||||
* ``oci opsi opsi-data-objects query-data-standard-query``
|
||||
* Support for new parameter in the Operations Insights service
|
||||
* ``oci opsi opsi-data-objects list --group-name --name``
|
||||
* ``oci opsi opsi-data-objects query-data-templatized-query --data-objects
|
||||
--query-bind-params --query-from-clause --query-query-execution-timeout-in-seconds``
|
||||
* Support for the Compute Cloud at Customer service
|
||||
* ``oci ccc``
|
||||
* Support for Database In-Memory for autonomous databases in the Database service
|
||||
* ``oci db autonomous-database create --in-memory-percentage``
|
||||
* ``oci db autonomous-database create-adb-cross-region-data-\
|
||||
guard-details --in-memory-percentage``
|
||||
* ``oci db autonomous-database create-autonomous-database-create-\
|
||||
cross-region-disaster-recovery-details --in-memory-percentage``
|
||||
* ``oci db autonomous-database create-from-backup-id --in-memory-percentage``
|
||||
* ``oci db autonomous-database create-from-backup-timestamp --in-memory-percentage``
|
||||
* ``oci db autonomous-database create-from-clone --in-memory-percentage``
|
||||
* ``oci db autonomous-database create-refreshable-clone --in-memory-percentage``
|
||||
* ``oci db autonomous-database update --in-memory-percentage``
|
||||
- from version 3.31.0
|
||||
* Support for new data sync commands in the Rover service
|
||||
* ``oci rover device data-sync``
|
||||
* Support for new parameters including Single Sign-On support in the Golden Gate service
|
||||
* ``oci goldengate deployment create --credential-store
|
||||
--identity-domain-id --password-secret-id``
|
||||
* ``oci goldengate deployment create --credential-store
|
||||
--identity-domain-id --password-secret-id``
|
||||
* Support for the placement constraint and cluster configuration
|
||||
feature for the Cluster networks in the Compute Management service
|
||||
* ``oci compute-management cluster-network create --cluster-configuration``
|
||||
* Required parameters is now optional for below diagnostics
|
||||
bundle commands in the Rover service
|
||||
* ``oci rover device diagnostics bundle create --display-name``
|
||||
* ``oci rover device diagnostics bundle get --encryption-key-file``
|
||||
* [BREAKING] Renamed commands for below external-db-system-connector
|
||||
commands in the Database Management service
|
||||
* ``oci database-management external-db-system-connector check-connection-status``
|
||||
* ``oci database-management external-db-system-connector create-macs-connector``
|
||||
* ``oci database-management external-db-system-connector update-macs-connector``
|
||||
- Refresh patches for new version
|
||||
* oc_relax-python-depends.patch
|
||||
- Update BuildRequires and Requires from setup.py
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 22 12:35:00 UTC 2023 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
|
@ -28,7 +28,7 @@
|
||||
%bcond_with test
|
||||
%endif
|
||||
Name: oci-cli%{psuffix}
|
||||
Version: 3.30.2
|
||||
Version: 3.33.0
|
||||
Release: 0
|
||||
Summary: Oracle Cloud Infrastructure CLI
|
||||
License: Apache-2.0
|
||||
@ -46,7 +46,7 @@ BuildRequires: python3-click >= 8.0.4
|
||||
BuildRequires: python3-cryptography >= 3.2.1
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-jmespath >= 0.10.0
|
||||
BuildRequires: python3-oci-sdk >= 2.110.0
|
||||
BuildRequires: python3-oci-sdk >= 2.112.0
|
||||
BuildRequires: python3-pyOpenSSL >= 22.1.0
|
||||
BuildRequires: python3-python-dateutil >= 2.5.3
|
||||
BuildRequires: python3-pytz >= 2016.10
|
||||
@ -62,7 +62,7 @@ BuildRequires: python3-coverage >= 4.5.2
|
||||
BuildRequires: python3-ndg-httpsclient >= 0.4.2
|
||||
BuildRequires: python3-packaging >= 20.2
|
||||
BuildRequires: python3-pluggy >= 0.13.0
|
||||
BuildRequires: python3-py >= 1.10.0
|
||||
BuildRequires: python3-py >= 1.11.0
|
||||
BuildRequires: python3-pyasn1 >= 0.2.3
|
||||
BuildRequires: python3-pycparser >= 2.20
|
||||
BuildRequires: python3-pyparsing >= 2.2.0
|
||||
@ -85,7 +85,7 @@ Requires: python3-certifi
|
||||
Requires: python3-click >= 8.0.4
|
||||
Requires: python3-cryptography >= 3.2.1
|
||||
Requires: python3-jmespath >= 0.10.0
|
||||
Requires: python3-oci-sdk >= 2.110.0
|
||||
Requires: python3-oci-sdk >= 2.112.0
|
||||
Requires: python3-prompt_toolkit >= 3.0.29
|
||||
Requires: python3-pyOpenSSL >= 22.1.0
|
||||
Requires: python3-python-dateutil >= 2.5.3
|
||||
|
Loading…
Reference in New Issue
Block a user