Accepting request 965382 from home:glaubitz:branches:Cloud:Tools
- Update to version 3.6.2 * Support for virtual machines, bare metal machines, and Exadata databases with private endpoints in the Operations Insights service * ``oci opsi opsi-private-endpoint`` * ``oci opsi database-insights change-pe-comanaged-database-detail`` * Support for setting deletion policies on database systems in the MySQL Database service * ``oci mysql db-system clone--deletion-policy`` * ``oci mysql db-system create --deletion-policy`` * ``oci mysql db-system import --deletion-policy`` * ``oci mysql db-system update --deletion-policy`` * Changed existing database insight operations updated in the Operations Insights service * ``oci opsi database-insights create-pe-comanged-database`` * ``oci opsi database-insights enable-pe-comanaged-database`` * ``oci opsi database-insights update-pe-comanaged-database`` - from version 3.6.1 * Support for DI application resource in the Data Integration service * ``oci data-integration dis-application`` * Support for enabling shielded instances feature in create SDDC in the Oracle Cloud VMware Solution service * ``oci ocvs sddc create --is-shielded-instance-enabled`` * Vulnerability Scanning Service * Support for Optional param ``--image-count`` in container scan recipe create and update * ``oci vulnerability-scanning container scan recipe create --image-count`` * ``oci vulnerability-scanning container scan recipe update --image-count`` * Support for vulnerabilities list and get * ``oci vulnerability-scanning vulnerability get`` * ``oci vulnerability-scanning vulnerability list`` * ``oci vulnerability-scanning vulnerability list-vulnerability-impacted-containers`` OBS-URL: https://build.opensuse.org/request/show/965382 OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/oci-cli?expand=0&rev=32
This commit is contained in:
parent
15105e803e
commit
27b471aa9b
@ -1,6 +1,6 @@
|
||||
diff -Nru oci-cli-3.6.0.orig/requirements.txt oci-cli-3.6.0/requirements.txt
|
||||
--- oci-cli-3.6.0.orig/requirements.txt 2022-03-08 22:18:44.000000000 +0100
|
||||
+++ oci-cli-3.6.0/requirements.txt 2022-03-15 14:31:55.627341077 +0100
|
||||
diff -Nru oci-cli-3.6.2.orig/requirements.txt oci-cli-3.6.2/requirements.txt
|
||||
--- oci-cli-3.6.2.orig/requirements.txt 2022-03-22 20:10:37.000000000 +0100
|
||||
+++ oci-cli-3.6.2/requirements.txt 2022-03-28 15:17:18.024463256 +0200
|
||||
@@ -2,40 +2,40 @@
|
||||
# (https://pip.pypa.io/en/stable/reference/pip_install/#requirements-file-format),
|
||||
# you may need to use the --extra-index-url option instead.
|
||||
@ -14,11 +14,11 @@ diff -Nru oci-cli-3.6.0.orig/requirements.txt oci-cli-3.6.0/requirements.txt
|
||||
-coverage==4.5.2
|
||||
-cryptography==3.3.2
|
||||
-httpsig-cffi==15.0.0
|
||||
-Jinja2==2.11.3
|
||||
-Jinja2==3.0.3
|
||||
-jmespath==0.10.0
|
||||
-ndg-httpsclient==0.4.2
|
||||
-mock==2.0.0
|
||||
-oci==2.60.0
|
||||
-oci==2.61.0
|
||||
-packaging==20.2
|
||||
-pluggy==0.13.0
|
||||
-py==1.10.0
|
||||
@ -33,11 +33,11 @@ diff -Nru oci-cli-3.6.0.orig/requirements.txt oci-cli-3.6.0/requirements.txt
|
||||
+coverage>=4.5.2
|
||||
+cryptography>=3.3.2
|
||||
+httpsig-cffi>=15.0.0
|
||||
+Jinja2>=2.11.3
|
||||
+Jinja2>=3.0.3
|
||||
+jmespath>=0.10.0
|
||||
+ndg-httpsclient>=0.4.2
|
||||
+mock>=2.0.0
|
||||
+oci>=2.60.0
|
||||
+oci>=2.61.0
|
||||
+packaging>=20.2
|
||||
+pluggy>=0.13.0
|
||||
+py>=1.10.0
|
||||
@ -73,15 +73,15 @@ diff -Nru oci-cli-3.6.0.orig/requirements.txt oci-cli-3.6.0/requirements.txt
|
||||
+pytest-forked>=1.0.2
|
||||
+PyYAML>=5.4
|
||||
+docutils>=0.15.2
|
||||
diff -Nru oci-cli-3.6.0.orig/setup.py oci-cli-3.6.0/setup.py
|
||||
--- oci-cli-3.6.0.orig/setup.py 2022-03-08 22:18:44.000000000 +0100
|
||||
+++ oci-cli-3.6.0/setup.py 2022-03-15 14:31:16.334969223 +0100
|
||||
diff -Nru oci-cli-3.6.2.orig/setup.py oci-cli-3.6.2/setup.py
|
||||
--- oci-cli-3.6.2.orig/setup.py 2022-03-22 20:10:37.000000000 +0100
|
||||
+++ oci-cli-3.6.2/setup.py 2022-03-28 15:16:49.659998834 +0200
|
||||
@@ -29,22 +29,22 @@
|
||||
readme = f.read()
|
||||
|
||||
requires = [
|
||||
- 'oci==2.60.0',
|
||||
+ 'oci>=2.60.0',
|
||||
- 'oci==2.61.0',
|
||||
+ 'oci>=2.61.0',
|
||||
'arrow>=1.0.0',
|
||||
'certifi',
|
||||
- 'click==7.1.2',
|
||||
@ -96,10 +96,9 @@ diff -Nru oci-cli-3.6.0.orig/setup.py oci-cli-3.6.0/setup.py
|
||||
'six>=1.15.0',
|
||||
- 'terminaltables==3.1.0',
|
||||
- 'pyOpenSSL==19.1.0',
|
||||
- 'PyYAML>=5.4,<6'
|
||||
+ 'terminaltables>=3.1.0',
|
||||
+ 'pyOpenSSL>=19.1.0',
|
||||
+ 'PyYAML>=5.4'
|
||||
'PyYAML>=5.4,<6'
|
||||
]
|
||||
|
||||
extras = {
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:61138bcce181c264415685145df514cfa2de1bbc394c24f3e894e7aa440ad38d
|
||||
size 2264217
|
3
oci-cli-3.6.2.tar.gz
Normal file
3
oci-cli-3.6.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e3558ecdd4e953fd894a29badaceb09e0b97f289ae5ca5bc6ddf26a625c43ba9
|
||||
size 2276190
|
@ -1,3 +1,60 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 28 13:19:05 UTC 2022 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to version 3.6.2
|
||||
* Support for virtual machines, bare metal machines, and Exadata databases
|
||||
with private endpoints in the Operations Insights service
|
||||
* ``oci opsi opsi-private-endpoint``
|
||||
* ``oci opsi database-insights change-pe-comanaged-database-detail``
|
||||
* Support for setting deletion policies on database systems
|
||||
in the MySQL Database service
|
||||
* ``oci mysql db-system clone--deletion-policy``
|
||||
* ``oci mysql db-system create --deletion-policy``
|
||||
* ``oci mysql db-system import --deletion-policy``
|
||||
* ``oci mysql db-system update --deletion-policy``
|
||||
* Changed existing database insight operations updated
|
||||
in the Operations Insights service
|
||||
* ``oci opsi database-insights create-pe-comanged-database``
|
||||
* ``oci opsi database-insights enable-pe-comanaged-database``
|
||||
* ``oci opsi database-insights update-pe-comanaged-database``
|
||||
- from version 3.6.1
|
||||
* Support for DI application resource in the Data Integration service
|
||||
* ``oci data-integration dis-application``
|
||||
* Support for enabling shielded instances feature in create SDDC
|
||||
in the Oracle Cloud VMware Solution service
|
||||
* ``oci ocvs sddc create --is-shielded-instance-enabled``
|
||||
* Vulnerability Scanning Service
|
||||
* Support for Optional param ``--image-count`` in container scan recipe create and update
|
||||
* ``oci vulnerability-scanning container scan recipe create --image-count``
|
||||
* ``oci vulnerability-scanning container scan recipe update --image-count``
|
||||
* Support for vulnerabilities list and get
|
||||
* ``oci vulnerability-scanning vulnerability get``
|
||||
* ``oci vulnerability-scanning vulnerability list``
|
||||
* ``oci vulnerability-scanning vulnerability list-vulnerability-impacted-containers``
|
||||
* ``oci vulnerability-scanning vulnerability list-vulnerability-impacted-hosts``
|
||||
* Support for Custom Maintenance Schedule for AVM clusters
|
||||
on ExaCC Infrastructure in the Database service
|
||||
* ``oci db autonomous-vm-cluster create --autonomous-data-storage-size-in-tbs,
|
||||
--cpu-core-count-per-node, --maintenance-window-details,
|
||||
--memory-per-oracle-compute-unit-in-gbs, --total-container-databases``
|
||||
* ``oci db autonomous-vm-cluster update --maintenance-window-details``
|
||||
* Support for the following parameters -defined-tags, --display-name, --freeform-tags
|
||||
for the below commands in the Data Integration service
|
||||
* ``oci data-integration application create --defined-tags, --display-name, --freeform-tags``
|
||||
* ``oci data-integration application update --defined-tags, --display-name, --freeform-tags``
|
||||
* Complex param --input-ports,--output-port have been updated for
|
||||
below commands in the Data Integration service
|
||||
* ``oci data-integration task create-task-from-rest-task --auth-config,
|
||||
--poll-rest-call-config, --typed-expressions``
|
||||
* ``oci data-integration task update-task-from-rest-task --auth-config,
|
||||
--poll-rest-call-config, --typed-expressions``
|
||||
* Updated the help text for creating an Autonomous Database Data Guard standby
|
||||
to be more descriptive and have better examples
|
||||
* ``create-adb-cross-region-data-guard-details``
|
||||
- Refresh patches for new version
|
||||
+ oc_relax-python-depends.patch
|
||||
- Update BuildRequires and Requires from setup.py
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 15 13:36:13 UTC 2022 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
|
@ -28,7 +28,7 @@
|
||||
%bcond_with test
|
||||
%endif
|
||||
Name: oci-cli%{psuffix}
|
||||
Version: 3.6.0
|
||||
Version: 3.6.2
|
||||
Release: 0
|
||||
Summary: Oracle Cloud Infrastructure CLI
|
||||
License: Apache-2.0
|
||||
@ -46,7 +46,7 @@ BuildRequires: python3-click >= 7.1.2
|
||||
BuildRequires: python3-cryptography >= 3.2.1
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-jmespath >= 0.10.0
|
||||
BuildRequires: python3-oci-sdk >= 2.60.0
|
||||
BuildRequires: python3-oci-sdk >= 2.61.0
|
||||
BuildRequires: python3-pyOpenSSL >= 19.1.0
|
||||
BuildRequires: python3-python-dateutil >= 2.5.3
|
||||
BuildRequires: python3-pytz >= 2016.10
|
||||
@ -83,7 +83,7 @@ Requires: python3-certifi
|
||||
Requires: python3-click >= 7.1.2
|
||||
Requires: python3-cryptography >= 3.2.1
|
||||
Requires: python3-jmespath >= 0.10.0
|
||||
Requires: python3-oci-sdk >= 2.60.0
|
||||
Requires: python3-oci-sdk >= 2.61.0
|
||||
Requires: python3-pyOpenSSL >= 19.1.0
|
||||
Requires: python3-python-dateutil >= 2.5.3
|
||||
Requires: python3-pytz >= 2016.10
|
||||
|
Loading…
Reference in New Issue
Block a user