Accepting request 1094620 from home:glaubitz:branches:Cloud:Tools
- Update to version 3.29.1 * Support for the Serial Console Access in the Database service * ``oci db console-connection create`` * ``oci db console-connection delete`` * ``oci db console-connection update`` * ``oci db node update`` * Database Migration Service * Support for creating a new connection with Network Security Group (NSG) Id's * ``oci database-migration connection create --nsg-ids`` * Support for updating a connection with new Network Security Group (NSG) Id's * ``oci database-migration connection update --nsg-ids`` * Support for new optional parameter in the Functions service * ``oci fn application create --shape`` * Data Flow service * Support for creating and managing Data Flow Pools * ``oci data-flow pool`` * Support for additional optional parameters for using Data Flow pools * ``oci data-flow application create --pool-id`` * ``oci data-flow application update --pool-id`` * ``oci data-flow run create --pool-id`` * ``oci data-flow run submit --pool-id`` * ``oci data-flow run list --pool-id`` * Rover Node Service * Support for the following in the Roving Edge Infrastructure Service * ``oci rover node create --cert-compartment-id --cert-key-algorithm --cert-signature-algorithm --common-name --issuer-certificate-authority-id --time-cert-validity-end`` * ``oci rover node update --cert-compartment-id --cert-key-algorithm --cert-signature-algorithm --certificate-authority-id --common-name --time-cert-validity-end`` * Commands for rover upgrade bundle support * ``oci rover node rover-bundle copy-to-customer`` OBS-URL: https://build.opensuse.org/request/show/1094620 OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/oci-cli?expand=0&rev=88
This commit is contained in:
parent
370e747ea4
commit
cb68c30800
@ -1,6 +1,6 @@
|
|||||||
diff -Nru oci-cli-3.28.2.orig/requirements.txt oci-cli-3.28.2/requirements.txt
|
diff -Nru oci-cli-3.29.1.orig/requirements.txt oci-cli-3.29.1/requirements.txt
|
||||||
--- oci-cli-3.28.2.orig/requirements.txt 2023-06-06 09:14:58.000000000 +0200
|
--- oci-cli-3.29.1.orig/requirements.txt 2023-06-21 00:54:35.000000000 +0200
|
||||||
+++ oci-cli-3.28.2/requirements.txt 2023-06-06 12:18:34.654505601 +0200
|
+++ oci-cli-3.29.1/requirements.txt 2023-06-22 12:01:51.334890518 +0200
|
||||||
@@ -2,44 +2,44 @@
|
@@ -2,44 +2,44 @@
|
||||||
# (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.28.2.orig/requirements.txt oci-cli-3.28.2/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.104.1
|
-oci==2.104.3
|
||||||
-packaging==20.2
|
-packaging==20.2
|
||||||
-pluggy==0.13.0
|
-pluggy==0.13.0
|
||||||
-py==1.10.0
|
-py==1.10.0
|
||||||
@ -38,7 +38,7 @@ diff -Nru oci-cli-3.28.2.orig/requirements.txt oci-cli-3.28.2/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.104.1
|
+oci>=2.104.3
|
||||||
+packaging>=20.2
|
+packaging>=20.2
|
||||||
+pluggy>=0.13.0
|
+pluggy>=0.13.0
|
||||||
+py>=1.10.0
|
+py>=1.10.0
|
||||||
@ -82,15 +82,15 @@ diff -Nru oci-cli-3.28.2.orig/requirements.txt oci-cli-3.28.2/requirements.txt
|
|||||||
-setuptools==59.6.0; python_version == '3.6'
|
-setuptools==59.6.0; python_version == '3.6'
|
||||||
\ No newline at end of file
|
\ No newline at end of file
|
||||||
+setuptools>=59.6.0; python_version >= '3.6'
|
+setuptools>=59.6.0; python_version >= '3.6'
|
||||||
diff -Nru oci-cli-3.28.2.orig/setup.py oci-cli-3.28.2/setup.py
|
diff -Nru oci-cli-3.29.1.orig/setup.py oci-cli-3.29.1/setup.py
|
||||||
--- oci-cli-3.28.2.orig/setup.py 2023-06-06 09:14:58.000000000 +0200
|
--- oci-cli-3.29.1.orig/setup.py 2023-06-21 00:54:35.000000000 +0200
|
||||||
+++ oci-cli-3.28.2/setup.py 2023-06-06 12:17:39.837955922 +0200
|
+++ oci-cli-3.29.1/setup.py 2023-06-22 12:00:40.878177225 +0200
|
||||||
@@ -29,23 +29,23 @@
|
@@ -30,23 +30,23 @@
|
||||||
readme = f.read()
|
readme = f.read()
|
||||||
|
|
||||||
requires = [
|
requires = [
|
||||||
- 'oci==2.104.1',
|
- 'oci==2.104.3',
|
||||||
+ 'oci>=2.104.1',
|
+ 'oci>=2.104.3',
|
||||||
'arrow>=1.0.0',
|
'arrow>=1.0.0',
|
||||||
'certifi',
|
'certifi',
|
||||||
- 'click==8.0.4',
|
- 'click==8.0.4',
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:14f7b7a4bcbfbb34bdf32f7ab0e6fae48bf137ea6aed26d6997ba9f50b63d9dc
|
|
||||||
size 3904768
|
|
3
oci-cli-3.29.1.tar.gz
Normal file
3
oci-cli-3.29.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:331877ea0a4edbfc20145ae223c28927cf3a6ab38b64f34e5c98e94ec7787f57
|
||||||
|
size 3916325
|
@ -1,3 +1,54 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 22 10:23:51 UTC 2023 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to version 3.29.1
|
||||||
|
* Support for the Serial Console Access in the Database service
|
||||||
|
* ``oci db console-connection create``
|
||||||
|
* ``oci db console-connection delete``
|
||||||
|
* ``oci db console-connection update``
|
||||||
|
* ``oci db node update``
|
||||||
|
* Database Migration Service
|
||||||
|
* Support for creating a new connection with Network Security Group (NSG) Id's
|
||||||
|
* ``oci database-migration connection create --nsg-ids``
|
||||||
|
* Support for updating a connection with new Network Security Group (NSG) Id's
|
||||||
|
* ``oci database-migration connection update --nsg-ids``
|
||||||
|
* Support for new optional parameter in the Functions service
|
||||||
|
* ``oci fn application create --shape``
|
||||||
|
* Data Flow service
|
||||||
|
* Support for creating and managing Data Flow Pools
|
||||||
|
* ``oci data-flow pool``
|
||||||
|
* Support for additional optional parameters for using Data Flow pools
|
||||||
|
* ``oci data-flow application create --pool-id``
|
||||||
|
* ``oci data-flow application update --pool-id``
|
||||||
|
* ``oci data-flow run create --pool-id``
|
||||||
|
* ``oci data-flow run submit --pool-id``
|
||||||
|
* ``oci data-flow run list --pool-id``
|
||||||
|
* Rover Node Service
|
||||||
|
* Support for the following in the Roving Edge Infrastructure Service
|
||||||
|
* ``oci rover node create --cert-compartment-id --cert-key-algorithm --cert-signature-algorithm
|
||||||
|
--common-name --issuer-certificate-authority-id --time-cert-validity-end``
|
||||||
|
* ``oci rover node update --cert-compartment-id --cert-key-algorithm --cert-signature-algorithm
|
||||||
|
--certificate-authority-id --common-name --time-cert-validity-end``
|
||||||
|
* Commands for rover upgrade bundle support
|
||||||
|
* ``oci rover node rover-bundle copy-to-customer``
|
||||||
|
* ``oci rover node rover-bundle get-status``
|
||||||
|
* ``oci rover node rover-bundle-request list``
|
||||||
|
* ``oci rover node rover-bundle-version get``
|
||||||
|
* Commands for rover node certificate support
|
||||||
|
* ``oci rover node ca-bundle get``
|
||||||
|
* ``oci rover node certificate create``
|
||||||
|
* ``oci rover node certificate update``
|
||||||
|
* ``oci rover node certificate get-leaf-certificate``
|
||||||
|
* ``oci rover node certificate-authority update-root-ca``
|
||||||
|
* Commands for rover upgrade bundle support
|
||||||
|
* ``oci rover standalone-cluster rover-bundle copy-to-customer``
|
||||||
|
* ``oci rover standalone-cluster rover-bundle get-status``
|
||||||
|
* ``oci rover standalone-cluster rover-bundle-request list``
|
||||||
|
* ``oci rover standalone-cluster rover-bundle-version get``
|
||||||
|
- Refresh patches for new version
|
||||||
|
* oc_relax-python-depends.patch
|
||||||
|
- Update BuildRequires and Requires from setup.py
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jun 15 06:27:08 UTC 2023 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
Thu Jun 15 06:27:08 UTC 2023 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
%bcond_with test
|
%bcond_with test
|
||||||
%endif
|
%endif
|
||||||
Name: oci-cli%{psuffix}
|
Name: oci-cli%{psuffix}
|
||||||
Version: 3.29.0
|
Version: 3.29.1
|
||||||
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.104.2
|
BuildRequires: python3-oci-sdk >= 2.104.3
|
||||||
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
|
||||||
@ -85,7 +85,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.104.2
|
Requires: python3-oci-sdk >= 2.104.3
|
||||||
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