Accepting request 1098627 from home:glaubitz:branches:Cloud:Tools
- Update to version 3.29.3 * Support for optional parameters in the Application Performance Monitoring Synthetic service * ``oci apm-synthetics monitor create-browser-monitor --is-default-snapshot-enabled --verify-response-codes`` * ``oci apm-synthetics monitor create-rest-monitor --client-certificate-details`` * ``oci apm-synthetics monitor create-scripted-browser-monitor --is-default-snapshot-enabled`` * ``oci apm-synthetics monitor create-scripted-rest-monitor --req-authentication-scheme --verify-response-codes`` * ``oci apm-synthetics monitor update-browser-monitor --is-default-snapshot-enabled --verify-response-codes`` * ``oci apm-synthetics monitor update-rest-monitor ---client-certificate-details`` * ``oci apm-synthetics monitor update-scripted-browser-monitor ---is-default-snapshot-enabled`` * ``oci apm-synthetics monitor update-scripted-rest-monitor --req-authentication-scheme --verify-response-codes`` * Support for new commands in the OSP Gateway service * ``oci osp-gateway address-rule-service address-rule get`` * ``oci osp-gateway address-service address`` * AI Document Service * Support for new commands * ``oci ai-document analyze-document-result`` * ``oci ai-document model patch`` * Support for new optional parameters * ``oci ai-document model create --alias-name --component-models`` * Support for workload mapping processing in the Container Engine service * ``oci ce workload-mapping`` * ``oci ce workload-mapping-summary`` * Support for new commands in the Data Integration service * ``oci data-integration composite-state get`` * ``oci data-integration export-request`` * ``oci data-integration export-request-summary-collection list-export-requests`` * ``oci data-integration import-request`` * ``oci data-integration import-request-summary-collection list-import-requests`` * ``oci data-integration data-entity create-entity-shape-create-entity-shape-from-object`` * ``oci data-integration workspace delete-export-request`` OBS-URL: https://build.opensuse.org/request/show/1098627 OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/oci-cli?expand=0&rev=92
This commit is contained in:
parent
91e51463de
commit
193ab773c0
@ -1,7 +1,7 @@
|
||||
diff -Nru oci-cli-3.29.2.orig/requirements.txt oci-cli-3.29.2/requirements.txt
|
||||
--- oci-cli-3.29.2.orig/requirements.txt 2023-06-28 00:37:36.000000000 +0200
|
||||
+++ oci-cli-3.29.2/requirements.txt 2023-06-29 14:08:48.758204203 +0200
|
||||
@@ -2,44 +2,44 @@
|
||||
diff -Nru oci-cli-3.29.3.orig/requirements.txt oci-cli-3.29.3/requirements.txt
|
||||
--- oci-cli-3.29.3.orig/requirements.txt 2023-07-12 22:26:06.000000000 +0200
|
||||
+++ oci-cli-3.29.3/requirements.txt 2023-07-14 09:05:52.819152183 +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.
|
||||
|
||||
@ -12,13 +12,13 @@ diff -Nru oci-cli-3.29.2.orig/requirements.txt oci-cli-3.29.2/requirements.txt
|
||||
cffi>=1.9.1
|
||||
-click==8.0.4
|
||||
-coverage==4.5.2
|
||||
-cryptography>=3.2.1,<40.0.0
|
||||
-cryptography>=3.2.1,<42.0.0
|
||||
-httpsig-cffi==15.0.0
|
||||
-Jinja2==3.0.3
|
||||
-jmespath==0.10.0
|
||||
-ndg-httpsclient==0.4.2
|
||||
-mock==2.0.0
|
||||
-oci==2.105.0
|
||||
-oci==2.106.0
|
||||
-packaging==20.2
|
||||
-pluggy==0.13.0
|
||||
-py==1.10.0
|
||||
@ -38,7 +38,7 @@ diff -Nru oci-cli-3.29.2.orig/requirements.txt oci-cli-3.29.2/requirements.txt
|
||||
+jmespath>=0.10.0
|
||||
+ndg-httpsclient>=0.4.2
|
||||
+mock>=2.0.0
|
||||
+oci>=2.105.0
|
||||
+oci>=2.106.0
|
||||
+packaging>=20.2
|
||||
+pluggy>=0.13.0
|
||||
+py>=1.10.0
|
||||
@ -51,8 +51,10 @@ diff -Nru oci-cli-3.29.2.orig/requirements.txt oci-cli-3.29.2/requirements.txt
|
||||
+pytest-cov>=2.5.1
|
||||
+python-dateutil>=2.5.3
|
||||
pytz>=2016.10
|
||||
-requests==2.21.0
|
||||
+requests>=2.21.0
|
||||
-requests==2.21.0; python_version == '3.6'
|
||||
-requests==2.31.0; python_version > '3.6'
|
||||
+requests>=2.21.0; python_version >= '3.6'
|
||||
+requests>=2.31.0; python_version > '3.6'
|
||||
six>=1.15.0
|
||||
-sphinx==3.3.0
|
||||
-sphinx-rtd-theme==0.4.3
|
||||
@ -80,32 +82,39 @@ diff -Nru oci-cli-3.29.2.orig/requirements.txt oci-cli-3.29.2/requirements.txt
|
||||
+prompt-toolkit>=3.0.29
|
||||
setuptools>65.5.1; python_version > '3.6'
|
||||
-setuptools==59.6.0; python_version == '3.6'
|
||||
\ No newline at end of file
|
||||
+setuptools>=59.6.0; python_version >= '3.6'
|
||||
diff -Nru oci-cli-3.29.2.orig/setup.py oci-cli-3.29.2/setup.py
|
||||
--- oci-cli-3.29.2.orig/setup.py 2023-06-28 00:37:36.000000000 +0200
|
||||
+++ oci-cli-3.29.2/setup.py 2023-06-29 14:08:07.717216704 +0200
|
||||
# this is required because of python 3.6 requests dependency version bound
|
||||
-urllib3<=1.26.15
|
||||
\ No newline at end of file
|
||||
+urllib3<=1.26.15
|
||||
diff -Nru oci-cli-3.29.3.orig/setup.py oci-cli-3.29.3/setup.py
|
||||
--- oci-cli-3.29.3.orig/setup.py 2023-07-12 22:26:06.000000000 +0200
|
||||
+++ oci-cli-3.29.3/setup.py 2023-07-14 09:05:19.578980577 +0200
|
||||
@@ -30,23 +30,23 @@
|
||||
readme = f.read()
|
||||
|
||||
requires = [
|
||||
- 'oci==2.105.0',
|
||||
+ 'oci>=2.105.0',
|
||||
- 'oci==2.106.0',
|
||||
+ 'oci>=2.106.0',
|
||||
'arrow>=1.0.0',
|
||||
'certifi',
|
||||
- 'click==8.0.4',
|
||||
+ 'click>=8.0.4',
|
||||
'cryptography>=3.2.1,<40.0.0',
|
||||
- 'cryptography>=3.2.1,<42.0.0',
|
||||
- 'jmespath==0.10.0',
|
||||
- 'python-dateutil>=2.5.3,<3.0.0',
|
||||
+ 'click>=8.0.4',
|
||||
+ 'cryptography>=3.2.1',
|
||||
+ 'jmespath>=0.10.0',
|
||||
'python-dateutil>=2.5.3,<3.0.0',
|
||||
+ 'python-dateutil>=2.5.3',
|
||||
'pytz>=2016.10',
|
||||
'six>=1.15.0',
|
||||
- 'terminaltables==3.1.0',
|
||||
+ 'terminaltables>=3.1.0',
|
||||
'pyOpenSSL>=17.5.0,<24.0.0',
|
||||
'PyYAML>=5.4,<=6',
|
||||
- 'pyOpenSSL>=17.5.0,<24.0.0',
|
||||
- 'PyYAML>=5.4,<=6',
|
||||
- 'prompt-toolkit==3.0.29'
|
||||
+ 'terminaltables>=3.1.0',
|
||||
+ 'pyOpenSSL>=17.5.0',
|
||||
+ 'PyYAML>=5.4',
|
||||
+ 'prompt-toolkit>=3.0.29'
|
||||
]
|
||||
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:5fafc3ad1ea13397954a7f40afc0f11722c609f9358e9d675aaea6eab0027912
|
||||
size 3995445
|
3
oci-cli-3.29.3.tar.gz
Normal file
3
oci-cli-3.29.3.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:61a2a36ce98dad904e3516c814cbcc5a07f5c280e9952b743f7fa5755af65315
|
||||
size 4016733
|
@ -1,3 +1,49 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 14 07:23:13 UTC 2023 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to version 3.29.3
|
||||
* Support for optional parameters in the Application Performance Monitoring Synthetic service
|
||||
* ``oci apm-synthetics monitor create-browser-monitor --is-default-snapshot-enabled --verify-response-codes``
|
||||
* ``oci apm-synthetics monitor create-rest-monitor --client-certificate-details``
|
||||
* ``oci apm-synthetics monitor create-scripted-browser-monitor --is-default-snapshot-enabled``
|
||||
* ``oci apm-synthetics monitor create-scripted-rest-monitor --req-authentication-scheme --verify-response-codes``
|
||||
* ``oci apm-synthetics monitor update-browser-monitor --is-default-snapshot-enabled --verify-response-codes``
|
||||
* ``oci apm-synthetics monitor update-rest-monitor ---client-certificate-details``
|
||||
* ``oci apm-synthetics monitor update-scripted-browser-monitor ---is-default-snapshot-enabled``
|
||||
* ``oci apm-synthetics monitor update-scripted-rest-monitor --req-authentication-scheme --verify-response-codes``
|
||||
* Support for new commands in the OSP Gateway service
|
||||
* ``oci osp-gateway address-rule-service address-rule get``
|
||||
* ``oci osp-gateway address-service address``
|
||||
* AI Document Service
|
||||
* Support for new commands
|
||||
* ``oci ai-document analyze-document-result``
|
||||
* ``oci ai-document model patch``
|
||||
* Support for new optional parameters
|
||||
* ``oci ai-document model create --alias-name --component-models``
|
||||
* Support for workload mapping processing in the Container Engine service
|
||||
* ``oci ce workload-mapping``
|
||||
* ``oci ce workload-mapping-summary``
|
||||
* Support for new commands in the Data Integration service
|
||||
* ``oci data-integration composite-state get``
|
||||
* ``oci data-integration export-request``
|
||||
* ``oci data-integration export-request-summary-collection list-export-requests``
|
||||
* ``oci data-integration import-request``
|
||||
* ``oci data-integration import-request-summary-collection list-import-requests``
|
||||
* ``oci data-integration data-entity create-entity-shape-create-entity-shape-from-object``
|
||||
* ``oci data-integration workspace delete-export-request``
|
||||
* ``oci data-integration workspace delete-import-request``
|
||||
* ``oci data-integration workspace update-export-request``
|
||||
* ``oci data-integration workspace update-import-request``
|
||||
* Support for new optional parameter --kms-key-id in updating and creating
|
||||
backup and volume backup's envelope key in Core services
|
||||
* ``oci bv backup create --kms-key-id``
|
||||
* ``oci bv backup update --kms-key-id``
|
||||
* ``oci bv boot-volume-backup create --kms-key-id``
|
||||
* ``oci bv boot-volume-backup update --kms-key-id``
|
||||
- Refresh patches for new version
|
||||
* oc_relax-python-depends.patch
|
||||
- Update BuildRequires and Requires from setup.py
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 29 11:59:43 UTC 2023 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
|
@ -28,7 +28,7 @@
|
||||
%bcond_with test
|
||||
%endif
|
||||
Name: oci-cli%{psuffix}
|
||||
Version: 3.29.2
|
||||
Version: 3.29.3
|
||||
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.105.0
|
||||
BuildRequires: python3-oci-sdk >= 2.106.0
|
||||
BuildRequires: python3-pyOpenSSL >= 22.1.0
|
||||
BuildRequires: python3-python-dateutil >= 2.5.3
|
||||
BuildRequires: python3-pytz >= 2016.10
|
||||
@ -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.105.0
|
||||
Requires: python3-oci-sdk >= 2.106.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