Accepting request 949352 from home:glaubitz:branches:Cloud:Tools

- Update to version 3.4.4
  * Below services were added to support the Account Management finance data
    * One Subscription Billing Schedule service
      * ``oci osub-billing-schedule billing-schedule-summary``
    * One Subscription Subscription service
      * ``oci osub-subscription commitment``
      * ``oci osub-subscription ratecard``
      * ``oci osub-subscription subscription``
    * One Subscription Usage service
      * ``oci osub-usage computed-usage``
      * ``oci osub-usage computed-usage-aggregated-summary``
    * One Subscription Organization subscription service
      * ``oci osub-organization-subscription subscription``
  * Support for new field 'type' to specify if a run or application
    is streaming or batch in the Data Flow service
    * ``oci data-flow application create --type``
    * ``oci data-flow run create --type``
    * ``oci data-flow run submit --type``
- from version 3.4.3
  * Support for calling Oracle Cloud Infrastructure services
    in the me-dcc-muscat-1 region
  * Support for the Visual Builder service
      * ``oci visual-builder``
  * Support for cross-region replication of volume groups in the Block Storage service
    * ``oci bv volume-group create --volume-group-replicas``
    * ``oci bv volume-group update  --volume-group-replicas``
  * Support for boot volume encryption in the Container Engine for Kubernetes service
    * ``oci ce node-pool create --is-pv-encryption-in-transit-enabled, --kms-key-id``
    * ``oci ce node-pool update  --is-pv-encryption-in-transit-enabled, --kms-key-id``
  * Support for adding metadata to records when creating and

OBS-URL: https://build.opensuse.org/request/show/949352
OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/oci-cli?expand=0&rev=28
This commit is contained in:
Dirk Mueller 2022-01-27 08:01:30 +00:00 committed by Git OBS Bridge
parent dbe654a721
commit 4b56a16c4f
5 changed files with 100 additions and 20 deletions

View File

@ -1,6 +1,6 @@
diff -Nru oci-cli-3.4.1.orig/requirements.txt oci-cli-3.4.1/requirements.txt diff -Nru oci-cli-3.4.4.orig/requirements.txt oci-cli-3.4.4/requirements.txt
--- oci-cli-3.4.1.orig/requirements.txt 2021-12-22 00:45:14.000000000 +0100 --- oci-cli-3.4.4.orig/requirements.txt 2022-01-25 23:44:54.000000000 +0100
+++ oci-cli-3.4.1/requirements.txt 2022-01-05 16:02:52.014353832 +0100 +++ oci-cli-3.4.4/requirements.txt 2022-01-26 23:22:59.554963706 +0100
@@ -2,40 +2,40 @@ @@ -2,40 +2,40 @@
# (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.4.1.orig/requirements.txt oci-cli-3.4.1/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.53.1 -oci==2.55.0
-packaging==20.2 -packaging==20.2
-pluggy==0.13.0 -pluggy==0.13.0
-py==1.10.0 -py==1.10.0
@ -37,7 +37,7 @@ diff -Nru oci-cli-3.4.1.orig/requirements.txt oci-cli-3.4.1/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.53.1 +oci>=2.55.0
+packaging>=20.2 +packaging>=20.2
+pluggy>=0.13.0 +pluggy>=0.13.0
+py>=1.10.0 +py>=1.10.0
@ -53,35 +53,35 @@ diff -Nru oci-cli-3.4.1.orig/requirements.txt oci-cli-3.4.1/requirements.txt
+requests>=2.21.0 +requests>=2.21.0
setuptools<45 setuptools<45
six>=1.15.0 six>=1.15.0
-sphinx==2.2.1 -sphinx==3.3.0
-sphinx-rtd-theme==0.4.3 -sphinx-rtd-theme==0.4.3
-terminaltables==3.1.0 -terminaltables==3.1.0
-tox==3.23.0 -tox==3.23.0
-vcrpy==1.13.0 -vcrpy==1.13.0
-virtualenv==16.7.10 -virtualenv==20.13.0
-pytest-xdist==1.22.2 -pytest-xdist==1.22.2
-pytest-forked==1.0.2 -pytest-forked==1.0.2
-PyYAML>=5.4,<6 -PyYAML>=5.4,<6
-docutils==0.15.2 -docutils==0.15.2
+sphinx>=2.2.1 +sphinx>=3.3.0
+sphinx-rtd-theme>=0.4.3 +sphinx-rtd-theme>=0.4.3
+terminaltables>=3.1.0 +terminaltables>=3.1.0
+tox>=3.23.0 +tox>=3.23.0
+vcrpy>=1.13.0 +vcrpy>=1.13.0
+virtualenv>=16.7.10 +virtualenv>=20.13.0
+pytest-xdist>=1.22.2 +pytest-xdist>=1.22.2
+pytest-forked>=1.0.2 +pytest-forked>=1.0.2
+PyYAML>=5.4 +PyYAML>=5.4
+docutils>=0.15.2 +docutils>=0.15.2
diff -Nru oci-cli-3.4.1.orig/setup.py oci-cli-3.4.1/setup.py diff -Nru oci-cli-3.4.4.orig/setup.py oci-cli-3.4.4/setup.py
--- oci-cli-3.4.1.orig/setup.py 2021-12-22 00:45:14.000000000 +0100 --- oci-cli-3.4.4.orig/setup.py 2022-01-25 23:44:54.000000000 +0100
+++ oci-cli-3.4.1/setup.py 2022-01-05 16:03:21.990628193 +0100 +++ oci-cli-3.4.4/setup.py 2022-01-26 23:22:32.402743241 +0100
@@ -29,22 +29,22 @@ @@ -29,22 +29,22 @@
readme = f.read() readme = f.read()
requires = [ requires = [
- 'oci==2.53.1', - 'oci==2.55.0',
+ 'oci>=2.53.1', + 'oci>=2.55.0',
'arrow>=1.0.0', 'arrow>=1.0.0',
'certifi', 'certifi',
- 'click==7.1.2', - 'click==7.1.2',

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:83a91af1bc881f203edfb522e123576395e9d02ed04373cbb22a1ab0d7cebb2e
size 2113587

3
oci-cli-3.4.4.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:95002c6cb3b06b15d1b0b57434e5ba46b00e75dc44ba81be0245d1f8da9297cc
size 2131937

View File

@ -1,3 +1,83 @@
-------------------------------------------------------------------
Wed Jan 26 22:27:10 UTC 2022 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to version 3.4.4
* Below services were added to support the Account Management finance data
* One Subscription Billing Schedule service
* ``oci osub-billing-schedule billing-schedule-summary``
* One Subscription Subscription service
* ``oci osub-subscription commitment``
* ``oci osub-subscription ratecard``
* ``oci osub-subscription subscription``
* One Subscription Usage service
* ``oci osub-usage computed-usage``
* ``oci osub-usage computed-usage-aggregated-summary``
* One Subscription Organization subscription service
* ``oci osub-organization-subscription subscription``
* Support for new field 'type' to specify if a run or application
is streaming or batch in the Data Flow service
* ``oci data-flow application create --type``
* ``oci data-flow run create --type``
* ``oci data-flow run submit --type``
- from version 3.4.3
* Support for calling Oracle Cloud Infrastructure services
in the me-dcc-muscat-1 region
* Support for the Visual Builder service
* ``oci visual-builder``
* Support for cross-region replication of volume groups in the Block Storage service
* ``oci bv volume-group create --volume-group-replicas``
* ``oci bv volume-group update --volume-group-replicas``
* Support for boot volume encryption in the Container Engine for Kubernetes service
* ``oci ce node-pool create --is-pv-encryption-in-transit-enabled, --kms-key-id``
* ``oci ce node-pool update --is-pv-encryption-in-transit-enabled, --kms-key-id``
* Support for adding metadata to records when creating and
updating records in the Data Labeling service
* ``oci data-labeling-service-dataplane record``
* Support for global export formats in snapshot datasets in the Data Labeling service
* ``oci data-labeling-service dataset snapshot --export-format``
* ``oci data-labeling-service dataset update --labeling-instructions``
* Support for adding labeling instructions to datasets in the Data Labeling service
* ``oci data-labeling-service dataset create --labeling-instructions``
* ``oci data-labeling-service dataset update --labeling-instructions``
* Support for updating autonomous dataguard associations for
autonomous container databases in the Database service
* ``oci db autonomous-container-database-dataguard update``
* Support for setting up automatic failover when creating
autonomous container databases in the Database service
* ``oci db autonomous-container-database create --is-automatic-failover-enabled``
* Support for setting the RECO storage size when updating
a database system in the Database service
* ``oci db system update --reco-storage-size-in-gbs``
* Support for reconnecting refreshable clones to source for autonomous
databases on shared infrastructure in the Database service
* ``oci db autonomous-database update --is-refreshable-clone true``
* Support for checking if an autonomous database on shared infrastructure
can be reconnected to source, in the Database service
* ``oci db autonomous-database get --autonomous-database-id <ocid>``
- from version 3.4.2
* Network Load Balancer service
* Support for Multiple Protocols on the Same Listener of the Network Load Balancer.
* ``oci nlb listener create --protocol``
* ``oci nlb listener create --protocol``
* Support for IPv6 in the below commands
* ``oci nlb backend-set create --ip-version``
* ``oci nlb backend-set update --ip-version``
* ``oci nlb listener create --ip-version``
* ``oci nlb listener update --ip-version``
* ``oci nlb network-load-balancer create --nlb-ip-version``
* ``oci nlb network-load-balancer update --nlb-ip-version``
* Support for creating Enterprise Manager-based Solaris/SunOS
Host targets in the Operations Insights service
* ``oci opsi host-insights``
* More information related to the user system in the --debug option
* Improvement to the OCI CLI service error exception message
* Removed python install by source in install.sh script for Oracle Linux 7
* While creating iam db-token, persist private key only when request is successful
* ``oci iam db-token get``
- Refresh patches for new version
+ oc_relax-python-depends.patch
- Update BuildRequires and Requires from setup.py
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Jan 5 15:46:29 UTC 2022 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com> Wed Jan 5 15:46:29 UTC 2022 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>

View File

@ -28,7 +28,7 @@
%bcond_with test %bcond_with test
%endif %endif
Name: oci-cli%{psuffix} Name: oci-cli%{psuffix}
Version: 3.4.1 Version: 3.4.4
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 >= 7.1.2
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.53.0 BuildRequires: python3-oci-sdk >= 2.55.0
BuildRequires: python3-pyOpenSSL >= 19.1.0 BuildRequires: python3-pyOpenSSL >= 19.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
@ -83,7 +83,7 @@ Requires: python3-certifi
Requires: python3-click >= 7.1.2 Requires: python3-click >= 7.1.2
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.53.0 Requires: python3-oci-sdk >= 2.55.0
Requires: python3-pyOpenSSL >= 19.1.0 Requires: python3-pyOpenSSL >= 19.1.0
Requires: python3-python-dateutil >= 2.5.3 Requires: python3-python-dateutil >= 2.5.3
Requires: python3-pytz >= 2016.10 Requires: python3-pytz >= 2016.10