John Paul Adrian Glaubitz
dbe654a721
- Update to version 3.4.1 * Bug when using ``oci os object put`` from STDIN. Please see `github issue #490 <https://github.com/oracle/oci-cli/issues/490>`_ for more details. - from version 3.4.0 * Support for node replacement in the VMWare Solution service * ``oci ocvs esxi-host create --failed-esxi-host-id`` * Support for ingestion of SQL stats metrics in the Operations Insights service * ``oci opsi database-insights ingest-sql-stats --database-id`` * Support for AWR hub integration in the Operations Insights service * ``oci opsi awr-hubs`` * ``oci opsi operations-insights-warehouse-users`` * ``oci opsi operations-insights-warehouses`` * Support for automatically generating logical entities from filename patterns and relationships between business terms across glossaries in the Data Catalog service * ``oci data-catalog pattern create --file-path-prefix`` * ``oci data-catalog pattern update --file-path-prefix`` * ``oci data-catalog pattern validate --file-path-prefix`` * ``oci data-catalog entity list-aggregated-physical --is-include-properties`` * ``oci data-catalog entity create --type-key`` * Support for automatic start/stop at scheduled times in the Database service * Option ``--scheduled-operations`` for the following operations under ``oci db autonomous-database``: ``create, create-adb-cross-region-data-guard-details, create-from-backup-id, create-from-backup-timestamp, create-from-clone, create-refreshable-clone, update`` * Support for cloud VM cluster resources on autonomous dedicated databases in the Database service * ``oci db autonomous-container-database create --cloud-autonomous-vm-cluster-id --peer-cloud-autonomous-vm-cluster-id`` * ``oci db autonomous-container-database list --cloud-autonomous-vm-cluster-id`` * ``oci db cloud-autonomous-vm-cluster`` * ``oci db cloud-vm-cluster create | update --ocpu-count`` OBS-URL: https://build.opensuse.org/request/show/944070 OBS-URL: https://build.opensuse.org/package/show/Cloud:Tools/oci-cli?expand=0&rev=27
111 lines
2.4 KiB
Diff
111 lines
2.4 KiB
Diff
diff -Nru oci-cli-3.4.1.orig/requirements.txt oci-cli-3.4.1/requirements.txt
|
|
--- oci-cli-3.4.1.orig/requirements.txt 2021-12-22 00:45:14.000000000 +0100
|
|
+++ oci-cli-3.4.1/requirements.txt 2022-01-05 16:02:52.014353832 +0100
|
|
@@ -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.
|
|
|
|
-appdirs==1.4.3
|
|
+appdirs>=1.4.3
|
|
arrow>=1.0.0
|
|
certifi
|
|
cffi>=1.9.1
|
|
-click==7.1.2
|
|
-coverage==4.5.2
|
|
-cryptography==3.3.2
|
|
-httpsig-cffi==15.0.0
|
|
-Jinja2==2.11.3
|
|
-jmespath==0.10.0
|
|
-ndg-httpsclient==0.4.2
|
|
-mock==2.0.0
|
|
-oci==2.53.1
|
|
-packaging==20.2
|
|
-pluggy==0.13.0
|
|
-py==1.10.0
|
|
-pyasn1==0.2.3
|
|
-pyOpenSSL==19.1.0
|
|
-pycparser==2.20
|
|
-pyparsing==2.2.0
|
|
-pytest==3.2.3
|
|
-pytest-cov==2.5.1
|
|
-python-dateutil>=2.5.3,<3.0.0
|
|
+click>=7.1.2
|
|
+coverage>=4.5.2
|
|
+cryptography>=3.3.2
|
|
+httpsig-cffi>=15.0.0
|
|
+Jinja2>=2.11.3
|
|
+jmespath>=0.10.0
|
|
+ndg-httpsclient>=0.4.2
|
|
+mock>=2.0.0
|
|
+oci>=2.53.1
|
|
+packaging>=20.2
|
|
+pluggy>=0.13.0
|
|
+py>=1.10.0
|
|
+pyasn1>=0.2.3
|
|
+pyOpenSSL>=19.1.0
|
|
+pycparser>=2.20
|
|
+pyparsing>=2.2.0
|
|
+pytest>=3.2.3
|
|
+pytest-cov>=2.5.1
|
|
+python-dateutil>=2.5.3
|
|
pytz>=2016.10
|
|
-requests==2.21.0
|
|
+requests>=2.21.0
|
|
setuptools<45
|
|
six>=1.15.0
|
|
-sphinx==2.2.1
|
|
-sphinx-rtd-theme==0.4.3
|
|
-terminaltables==3.1.0
|
|
-tox==3.23.0
|
|
-vcrpy==1.13.0
|
|
-virtualenv==16.7.10
|
|
-pytest-xdist==1.22.2
|
|
-pytest-forked==1.0.2
|
|
-PyYAML>=5.4,<6
|
|
-docutils==0.15.2
|
|
+sphinx>=2.2.1
|
|
+sphinx-rtd-theme>=0.4.3
|
|
+terminaltables>=3.1.0
|
|
+tox>=3.23.0
|
|
+vcrpy>=1.13.0
|
|
+virtualenv>=16.7.10
|
|
+pytest-xdist>=1.22.2
|
|
+pytest-forked>=1.0.2
|
|
+PyYAML>=5.4
|
|
+docutils>=0.15.2
|
|
diff -Nru oci-cli-3.4.1.orig/setup.py oci-cli-3.4.1/setup.py
|
|
--- oci-cli-3.4.1.orig/setup.py 2021-12-22 00:45:14.000000000 +0100
|
|
+++ oci-cli-3.4.1/setup.py 2022-01-05 16:03:21.990628193 +0100
|
|
@@ -29,22 +29,22 @@
|
|
readme = f.read()
|
|
|
|
requires = [
|
|
- 'oci==2.53.1',
|
|
+ 'oci>=2.53.1',
|
|
'arrow>=1.0.0',
|
|
'certifi',
|
|
- 'click==7.1.2',
|
|
- 'cryptography>=3.2.1,<=3.4.7',
|
|
- 'jmespath==0.10.0',
|
|
- 'python-dateutil>=2.5.3,<3.0.0',
|
|
+ 'click>=7.1.2',
|
|
+ 'cryptography>=3.2.1',
|
|
+ 'jmespath>=0.10.0',
|
|
+ 'python-dateutil>=2.5.3',
|
|
'pytz>=2016.10',
|
|
'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'
|
|
]
|
|
|
|
extras = {
|
|
- 'db': ['cx_Oracle==7.0']
|
|
+ 'db': ['cx_Oracle>=7.0']
|
|
}
|
|
|
|
fips_libcrypto_file = os.getenv("OCI_CLI_FIPS_LIBCRYPTO_FILE")
|