Accepting request 1056158 from home:glaubitz:branches:Cloud:Tools
- Update to version 3.22.0 * Support for the Queue service * ``oci queue`` * Support new pluggable-database commands for the Database service * ``oci db database move`` * ``oci db pluggable-database disable-pluggable-database-management`` * ``oci db pluggable-database enable-pluggable-database-management`` * ``oci db pluggable-database modify-pluggable-database-management`` * Support optional parameters availability_configuration and maintenance_window_schedule on monitors creation and updation for the APM Synthetics service * ``oci apm-synthetics monitor create-browser-monitor --availability_configuration, --maintenance_window_schedule`` * ``oci apm-synthetics monitor create-rest-monitor --availability_configuration, --maintenance_window_schedule`` * ``oci apm-synthetics monitor create-scripted-browser-monitor --availability_configuration, --maintenance_window_schedule`` * ``oci apm-synthetics monitor create-scripted-rest-monitor --availability_configuration, --maintenance_window_schedule`` * ``oci apm-synthetics monitor update-browser-monitor --availability_configuration, --maintenance_window_schedule`` * ``oci apm-synthetics monitor update-rest-monitor --availability_configuration, --maintenance_window_schedule`` * ``oci apm-synthetics monitor update-scripted-browser-monitor --availability_configuration, --maintenance_window_schedule`` * ``oci apm-synthetics monitor update-scripted-rest-monitor --availability_configuration, --maintenance_window_schedule`` * Support new Project commands & optional parameters for the DevOps service * ``oci devops work-request list --operation-type-multi-value-query`` * ``oci devops project schedule-cascading-delete`` * ``oci devops project cancel-cascading-delete`` OBS-URL: https://build.opensuse.org/request/show/1056158 OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/oci-cli?expand=0&rev=67
This commit is contained in:
parent
d27efc6e15
commit
07754e7ebd
@ -1,6 +1,6 @@
|
|||||||
diff -Nru oci-cli-3.21.0.orig/requirements.txt oci-cli-3.21.0/requirements.txt
|
diff -Nru oci-cli-3.22.0.orig/requirements.txt oci-cli-3.22.0/requirements.txt
|
||||||
--- oci-cli-3.21.0.orig/requirements.txt 2022-12-06 09:58:43.000000000 +0100
|
--- oci-cli-3.22.0.orig/requirements.txt 2022-12-13 13:06:31.000000000 +0100
|
||||||
+++ oci-cli-3.21.0/requirements.txt 2022-12-07 11:03:34.608778706 +0100
|
+++ oci-cli-3.22.0/requirements.txt 2023-01-03 10:16:41.463841833 +0100
|
||||||
@@ -2,41 +2,41 @@
|
@@ -2,41 +2,41 @@
|
||||||
# (https://pip.pypa.io/en/stable/reference/pip_install/#requirements-file-format),
|
# (https://pip.pypa.io/en/stable/reference/pip_install/#requirements-file-format),
|
||||||
# you may need to use the --extra-index-url option instead.
|
# you may need to use the --extra-index-url option instead.
|
||||||
@ -18,7 +18,7 @@ diff -Nru oci-cli-3.21.0.orig/requirements.txt oci-cli-3.21.0/requirements.txt
|
|||||||
-jmespath==0.10.0
|
-jmespath==0.10.0
|
||||||
-ndg-httpsclient==0.4.2
|
-ndg-httpsclient==0.4.2
|
||||||
-mock==2.0.0
|
-mock==2.0.0
|
||||||
-oci==2.89.0
|
-oci==2.90.0
|
||||||
-packaging==20.2
|
-packaging==20.2
|
||||||
-pluggy==0.13.0
|
-pluggy==0.13.0
|
||||||
-py==1.10.0
|
-py==1.10.0
|
||||||
@ -31,7 +31,7 @@ diff -Nru oci-cli-3.21.0.orig/requirements.txt oci-cli-3.21.0/requirements.txt
|
|||||||
+jmespath>=0.10.0
|
+jmespath>=0.10.0
|
||||||
+ndg-httpsclient>=0.4.2
|
+ndg-httpsclient>=0.4.2
|
||||||
+mock>=2.0.0
|
+mock>=2.0.0
|
||||||
+oci>=2.89.0
|
+oci>=2.90.0
|
||||||
+packaging>=20.2
|
+packaging>=20.2
|
||||||
+pluggy>=0.13.0
|
+pluggy>=0.13.0
|
||||||
+py>=1.10.0
|
+py>=1.10.0
|
||||||
@ -74,15 +74,15 @@ diff -Nru oci-cli-3.21.0.orig/requirements.txt oci-cli-3.21.0/requirements.txt
|
|||||||
+PyYAML>=5.4
|
+PyYAML>=5.4
|
||||||
+docutils>=0.15.2
|
+docutils>=0.15.2
|
||||||
+prompt-toolkit>=3.0.29
|
+prompt-toolkit>=3.0.29
|
||||||
diff -Nru oci-cli-3.21.0.orig/setup.py oci-cli-3.21.0/setup.py
|
diff -Nru oci-cli-3.22.0.orig/setup.py oci-cli-3.22.0/setup.py
|
||||||
--- oci-cli-3.21.0.orig/setup.py 2022-12-06 09:58:43.000000000 +0100
|
--- oci-cli-3.22.0.orig/setup.py 2022-12-13 13:06:31.000000000 +0100
|
||||||
+++ oci-cli-3.21.0/setup.py 2022-12-07 11:03:02.728331767 +0100
|
+++ oci-cli-3.22.0/setup.py 2023-01-03 10:15:58.071299986 +0100
|
||||||
@@ -29,23 +29,23 @@
|
@@ -29,23 +29,23 @@
|
||||||
readme = f.read()
|
readme = f.read()
|
||||||
|
|
||||||
requires = [
|
requires = [
|
||||||
- 'oci==2.89.0',
|
- 'oci==2.90.0',
|
||||||
+ 'oci>=2.89.0',
|
+ 'oci>=2.90.0',
|
||||||
'arrow>=1.0.0',
|
'arrow>=1.0.0',
|
||||||
'certifi',
|
'certifi',
|
||||||
- 'click==7.1.2',
|
- 'click==7.1.2',
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:9e0c2562e88d73758c177c51c132ea414a259a2f46c0ecbace367acdc1a83e52
|
|
||||||
size 2780977
|
|
3
oci-cli-3.22.0.tar.gz
Normal file
3
oci-cli-3.22.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f4243e741d21d20ddebfbb0780fe39f2f1a7cd318a863dc496d48c7bb07fb226
|
||||||
|
size 2799599
|
@ -1,3 +1,91 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jan 3 09:26:25 UTC 2023 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 3.22.0
|
||||||
|
* Support for the Queue service
|
||||||
|
* ``oci queue``
|
||||||
|
* Support new pluggable-database commands for the Database service
|
||||||
|
* ``oci db database move``
|
||||||
|
* ``oci db pluggable-database disable-pluggable-database-management``
|
||||||
|
* ``oci db pluggable-database enable-pluggable-database-management``
|
||||||
|
* ``oci db pluggable-database modify-pluggable-database-management``
|
||||||
|
* Support optional parameters availability_configuration and maintenance_window_schedule
|
||||||
|
on monitors creation and updation for the APM Synthetics service
|
||||||
|
* ``oci apm-synthetics monitor create-browser-monitor
|
||||||
|
--availability_configuration, --maintenance_window_schedule``
|
||||||
|
* ``oci apm-synthetics monitor create-rest-monitor
|
||||||
|
--availability_configuration, --maintenance_window_schedule``
|
||||||
|
* ``oci apm-synthetics monitor create-scripted-browser-monitor
|
||||||
|
--availability_configuration, --maintenance_window_schedule``
|
||||||
|
* ``oci apm-synthetics monitor create-scripted-rest-monitor
|
||||||
|
--availability_configuration, --maintenance_window_schedule``
|
||||||
|
* ``oci apm-synthetics monitor update-browser-monitor
|
||||||
|
--availability_configuration, --maintenance_window_schedule``
|
||||||
|
* ``oci apm-synthetics monitor update-rest-monitor
|
||||||
|
--availability_configuration, --maintenance_window_schedule``
|
||||||
|
* ``oci apm-synthetics monitor update-scripted-browser-monitor
|
||||||
|
--availability_configuration, --maintenance_window_schedule``
|
||||||
|
* ``oci apm-synthetics monitor update-scripted-rest-monitor
|
||||||
|
--availability_configuration, --maintenance_window_schedule``
|
||||||
|
* Support new Project commands & optional parameters for the DevOps service
|
||||||
|
* ``oci devops work-request list --operation-type-multi-value-query``
|
||||||
|
* ``oci devops project schedule-cascading-delete``
|
||||||
|
* ``oci devops project cancel-cascading-delete``
|
||||||
|
* Support option paramter nsg-ids for the Database Migration service
|
||||||
|
* ``oci database-migration connection create --nsg-ids``
|
||||||
|
* ``oci database-migration connection update --nsg-ids``
|
||||||
|
* Support for new optional parameter in the Big Data Service (BDS)
|
||||||
|
* ``oci bds instance create --cluster-profile``
|
||||||
|
* Service Mesh service
|
||||||
|
* Support for new command in virtual-deployment
|
||||||
|
* ``oci service-mesh virtual-deployment update-virtual-
|
||||||
|
deployment-disabled-service-discovery-configuration``
|
||||||
|
* Support for cancelling a work request for any work request
|
||||||
|
that has been accepted but not yet started
|
||||||
|
* ``oci service-mesh work-request cancel``
|
||||||
|
* Support for new optional parameters in the list work requests
|
||||||
|
to filter on associated resource id and operation status
|
||||||
|
* ``oci service-mesh work-request list --operation-status --resource-id``
|
||||||
|
* Support for sorting in the list work requests, list work request errors, list work request logs
|
||||||
|
* ``oci service-mesh work-request list --sort-by --sort-order``
|
||||||
|
* ``oci service-mesh work-request list-work-request-errors --sort-by --sort-order``
|
||||||
|
* ``oci service-mesh work-request list-work-request-logs --sort-by --sort-order``
|
||||||
|
* Fusion Application service
|
||||||
|
* Support for Fusion Application self-service refresh scheduling
|
||||||
|
* ``oci fusion-apps update-refresh-activity-details update-refresh-activity``
|
||||||
|
* ``oci fusion-apps refresh-activity delete``
|
||||||
|
* Support for new optional parameters in create-refresh-activity-details
|
||||||
|
* ``oci fusion-apps create-refresh-activity-details
|
||||||
|
create-refresh-activity --time-scheduled-start``
|
||||||
|
* Support for new refresh activity lifecycle state NEEDS_ATTENTION in list
|
||||||
|
* ``oci fusion-apps refresh-activity list --lifecycle-state needs_attention``
|
||||||
|
* Golden Gate service
|
||||||
|
* Support for new commands
|
||||||
|
* ``oci goldengate connection create-connection-create-azure-data-lake-storage-connection-details``
|
||||||
|
* ``oci goldengate connection create-connection-create-azure-synapse-connection-details``
|
||||||
|
* ``oci goldengate connection create-connection-create-kafka-schema-registry-connection-details``
|
||||||
|
* ``oci goldengate connection create-connection-create-postgresql-connection-details``
|
||||||
|
* ``oci goldengate connection update-connection-update-azure-data-lake-storage-connection-details``
|
||||||
|
* ``oci goldengate connection update-connection-update-azure-synapse-connection-details``
|
||||||
|
* ``oci goldengate connection update-connection-update-kafka-schema-registry-connection-details``
|
||||||
|
* ``oci goldengate connection update-connection-update-postgresql-connection-details``
|
||||||
|
* Support for new optional parameter
|
||||||
|
* ``oci goldengate connection create-object-storage-connection --private-key-passphrase``
|
||||||
|
* ``oci goldengate connection update-object-storage-connection --private-key-passphrase``
|
||||||
|
* [BREAKING] The command ingest-stream-distribution-channel-asset-
|
||||||
|
metadata-entry-details has been renamed in Media service
|
||||||
|
* ``oci media-services stream-distribution-channel ingest``
|
||||||
|
* [BREAKING] Optional parameters --rule are now required for
|
||||||
|
access-policy create in Service Mesh service
|
||||||
|
* ``oci service-mesh access-policy create --rule
|
||||||
|
* Required parameters --listeners and --service-discovery are
|
||||||
|
now optional on virtual-deployment in Service Mesh service
|
||||||
|
* ``oci service-mesh virtual-deployment create --listeners, --service-discovery``
|
||||||
|
* ``oci service-mesh virtual-deployment create-virtual-deployment-
|
||||||
|
dns-service-discovery-configuration --listeners``
|
||||||
|
- Refresh patches for new version
|
||||||
|
+ oc_relax-python-depends.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Dec 7 10:04:00 UTC 2022 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
Wed Dec 7 10:04:00 UTC 2022 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file
|
# spec file
|
||||||
#
|
#
|
||||||
# Copyright (c) 2022 SUSE LLC
|
# Copyright (c) 2023 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -28,7 +28,7 @@
|
|||||||
%bcond_with test
|
%bcond_with test
|
||||||
%endif
|
%endif
|
||||||
Name: oci-cli%{psuffix}
|
Name: oci-cli%{psuffix}
|
||||||
Version: 3.21.0
|
Version: 3.22.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Oracle Cloud Infrastructure CLI
|
Summary: Oracle Cloud Infrastructure CLI
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
@ -46,7 +46,7 @@ BuildRequires: python3-click >= 8.0.4
|
|||||||
BuildRequires: python3-cryptography >= 3.2.1
|
BuildRequires: python3-cryptography >= 3.2.1
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-jmespath >= 0.10.0
|
BuildRequires: python3-jmespath >= 0.10.0
|
||||||
BuildRequires: python3-oci-sdk >= 2.89.0
|
BuildRequires: python3-oci-sdk >= 2.90.0
|
||||||
BuildRequires: python3-pyOpenSSL >= 22.1.0
|
BuildRequires: python3-pyOpenSSL >= 22.1.0
|
||||||
BuildRequires: python3-python-dateutil >= 2.5.3
|
BuildRequires: python3-python-dateutil >= 2.5.3
|
||||||
BuildRequires: python3-pytz >= 2016.10
|
BuildRequires: python3-pytz >= 2016.10
|
||||||
@ -82,7 +82,7 @@ Requires: python3-certifi
|
|||||||
Requires: python3-click >= 8.0.4
|
Requires: python3-click >= 8.0.4
|
||||||
Requires: python3-cryptography >= 3.2.1
|
Requires: python3-cryptography >= 3.2.1
|
||||||
Requires: python3-jmespath >= 0.10.0
|
Requires: python3-jmespath >= 0.10.0
|
||||||
Requires: python3-oci-sdk >= 2.89.0
|
Requires: python3-oci-sdk >= 2.90.0
|
||||||
Requires: python3-prompt_toolkit >= 3.0.29
|
Requires: python3-prompt_toolkit >= 3.0.29
|
||||||
Requires: python3-pyOpenSSL >= 22.1.0
|
Requires: python3-pyOpenSSL >= 22.1.0
|
||||||
Requires: python3-python-dateutil >= 2.5.3
|
Requires: python3-python-dateutil >= 2.5.3
|
||||||
|
Loading…
Reference in New Issue
Block a user