apolo-cli 24.7.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- apolo_cli-24.7.1/CHANGELOG.md +2098 -0
- apolo_cli-24.7.1/LICENSE +13 -0
- apolo_cli-24.7.1/MANIFEST.in +6 -0
- apolo_cli-24.7.1/PKG-INFO +71 -0
- apolo_cli-24.7.1/README.md +32 -0
- apolo_cli-24.7.1/pyproject.toml +12 -0
- apolo_cli-24.7.1/setup.cfg +181 -0
- apolo_cli-24.7.1/setup.py +3 -0
- apolo_cli-24.7.1/src/apolo_cli/__init__.py +1 -0
- apolo_cli-24.7.1/src/apolo_cli/__main__.py +3 -0
- apolo_cli-24.7.1/src/apolo_cli/admin.py +2167 -0
- apolo_cli-24.7.1/src/apolo_cli/ael.py +716 -0
- apolo_cli-24.7.1/src/apolo_cli/alias.py +347 -0
- apolo_cli-24.7.1/src/apolo_cli/asyncio_utils.py +304 -0
- apolo_cli-24.7.1/src/apolo_cli/blob_storage.py +1238 -0
- apolo_cli-24.7.1/src/apolo_cli/click_types.py +1250 -0
- apolo_cli-24.7.1/src/apolo_cli/completion.py +86 -0
- apolo_cli-24.7.1/src/apolo_cli/config.py +415 -0
- apolo_cli-24.7.1/src/apolo_cli/const.py +23 -0
- apolo_cli-24.7.1/src/apolo_cli/defaults.py +9 -0
- apolo_cli-24.7.1/src/apolo_cli/disks.py +313 -0
- apolo_cli-24.7.1/src/apolo_cli/docker_credential_helper.py +43 -0
- apolo_cli-24.7.1/src/apolo_cli/file_logging.py +50 -0
- apolo_cli-24.7.1/src/apolo_cli/formatters/__init__.py +0 -0
- apolo_cli-24.7.1/src/apolo_cli/formatters/admin.py +539 -0
- apolo_cli-24.7.1/src/apolo_cli/formatters/blob_storage.py +82 -0
- apolo_cli-24.7.1/src/apolo_cli/formatters/bucket_credentials.py +92 -0
- apolo_cli-24.7.1/src/apolo_cli/formatters/buckets.py +111 -0
- apolo_cli-24.7.1/src/apolo_cli/formatters/config.py +251 -0
- apolo_cli-24.7.1/src/apolo_cli/formatters/disks.py +121 -0
- apolo_cli-24.7.1/src/apolo_cli/formatters/images.py +271 -0
- apolo_cli-24.7.1/src/apolo_cli/formatters/jobs.py +1049 -0
- apolo_cli-24.7.1/src/apolo_cli/formatters/secrets.py +52 -0
- apolo_cli-24.7.1/src/apolo_cli/formatters/service_accounts.py +111 -0
- apolo_cli-24.7.1/src/apolo_cli/formatters/storage.py +885 -0
- apolo_cli-24.7.1/src/apolo_cli/formatters/utils.py +159 -0
- apolo_cli-24.7.1/src/apolo_cli/image.py +337 -0
- apolo_cli-24.7.1/src/apolo_cli/job.py +1566 -0
- apolo_cli-24.7.1/src/apolo_cli/log_formatter.py +57 -0
- apolo_cli-24.7.1/src/apolo_cli/main.py +652 -0
- apolo_cli-24.7.1/src/apolo_cli/parse_utils.py +402 -0
- apolo_cli-24.7.1/src/apolo_cli/plugin.py +39 -0
- apolo_cli-24.7.1/src/apolo_cli/py.typed +0 -0
- apolo_cli-24.7.1/src/apolo_cli/root.py +337 -0
- apolo_cli-24.7.1/src/apolo_cli/secrets.py +188 -0
- apolo_cli-24.7.1/src/apolo_cli/service_accounts.py +135 -0
- apolo_cli-24.7.1/src/apolo_cli/share.py +259 -0
- apolo_cli-24.7.1/src/apolo_cli/stats.py +178 -0
- apolo_cli-24.7.1/src/apolo_cli/storage.py +855 -0
- apolo_cli-24.7.1/src/apolo_cli/topics.py +577 -0
- apolo_cli-24.7.1/src/apolo_cli/utils.py +724 -0
- apolo_cli-24.7.1/src/apolo_cli.egg-info/PKG-INFO +71 -0
- apolo_cli-24.7.1/src/apolo_cli.egg-info/SOURCES.txt +800 -0
- apolo_cli-24.7.1/src/apolo_cli.egg-info/dependency_links.txt +1 -0
- apolo_cli-24.7.1/src/apolo_cli.egg-info/entry_points.txt +6 -0
- apolo_cli-24.7.1/src/apolo_cli.egg-info/not-zip-safe +1 -0
- apolo_cli-24.7.1/src/apolo_cli.egg-info/requires.txt +14 -0
- apolo_cli-24.7.1/src/apolo_cli.egg-info/top_level.txt +1 -0
- apolo_cli-24.7.1/tests/__init__.py +12 -0
- apolo_cli-24.7.1/tests/conftest.py +328 -0
- apolo_cli-24.7.1/tests/e2e/__init__.py +3 -0
- apolo_cli-24.7.1/tests/e2e/assets/echo-tag.tar +0 -0
- apolo_cli-24.7.1/tests/e2e/clear-all-my-permissions.sh +2 -0
- apolo_cli-24.7.1/tests/e2e/conftest.py +1061 -0
- apolo_cli-24.7.1/tests/e2e/test_e2e.py +51 -0
- apolo_cli-24.7.1/tests/e2e/test_e2e_admin.py +845 -0
- apolo_cli-24.7.1/tests/e2e/test_e2e_blob_storage.py +359 -0
- apolo_cli-24.7.1/tests/e2e/test_e2e_disks.py +65 -0
- apolo_cli-24.7.1/tests/e2e/test_e2e_images.py +302 -0
- apolo_cli-24.7.1/tests/e2e/test_e2e_jobs.py +1261 -0
- apolo_cli-24.7.1/tests/e2e/test_e2e_secrets.py +59 -0
- apolo_cli-24.7.1/tests/e2e/test_e2e_share.py +217 -0
- apolo_cli-24.7.1/tests/e2e/test_e2e_storage.py +766 -0
- apolo_cli-24.7.1/tests/e2e/utils.py +24 -0
- apolo_cli-24.7.1/tests/unit/__init__.py +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_delete_progress[False-False-False]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_delete_progress[False-False-False]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_delete_progress[False-False-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_delete_progress[False-False-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_delete_progress[False-True-False]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_delete_progress[False-True-False]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_delete_progress[False-True-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_delete_progress[False-True-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_delete_progress[True-False-False]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_delete_progress[True-False-False]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_delete_progress[True-False-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_delete_progress[True-False-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_delete_progress[True-True-False]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_delete_progress[True-True-False]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_delete_progress[True-True-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_delete_progress[True-True-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-False-False-False]_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-False-False-False]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-False-False-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-False-False-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-False-False-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-False-False-True]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-False-True-False]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-False-True-False]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-False-True-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-False-True-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-False-True-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-False-True-True]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-True-False-False]_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-True-False-False]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-True-False-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-True-False-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-True-False-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-True-False-True]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-True-True-False]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-True-True-False]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-True-True-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-True-True-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-True-True-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[False-True-True-True]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-False-False-False]_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-False-False-False]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-False-False-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-False-False-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-False-False-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-False-False-True]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-False-True-False]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-False-True-False]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-False-True-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-False-True-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-False-True-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-False-True-True]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-True-False-False]_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-True-False-False]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-True-False-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-True-False-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-True-False-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-True-False-True]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-True-True-False]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-True-True-False]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-True-True-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-True-True-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-True-True-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_fail[True-True-True-True]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-False]_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-False]_1.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-False]_10.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-False]_11.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-False]_12.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-False]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-False]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-False]_5.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-False]_6.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-False]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-False]_8.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-False]_9.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-True]_10.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-True]_11.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-True]_12.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-True]_2.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-True]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-True]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-True]_5.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-True]_6.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-True]_7.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-True]_8.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-False-True]_9.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-False]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-False]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-False]_10.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-False]_11.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-False]_12.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-False]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-False]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-False]_5.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-False]_6.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-False]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-False]_8.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-False]_9.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-True]_10.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-True]_11.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-True]_12.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-True]_2.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-True]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-True]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-True]_5.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-True]_6.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-True]_7.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-True]_8.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-False-True-True]_9.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-False]_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-False]_1.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-False]_10.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-False]_11.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-False]_12.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-False]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-False]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-False]_5.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-False]_6.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-False]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-False]_8.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-False]_9.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-True]_10.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-True]_11.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-True]_12.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-True]_2.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-True]_3.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-True]_4.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-True]_5.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-True]_6.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-True]_7.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-True]_8.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-False-True]_9.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-False]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-False]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-False]_10.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-False]_11.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-False]_12.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-False]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-False]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-False]_5.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-False]_6.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-False]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-False]_8.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-False]_9.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-True]_10.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-True]_11.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-True]_12.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-True]_2.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-True]_3.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-True]_4.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-True]_5.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-True]_6.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-True]_7.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-True]_8.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[False-True-True-True]_9.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-False]_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-False]_1.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-False]_10.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-False]_11.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-False]_12.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-False]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-False]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-False]_5.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-False]_6.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-False]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-False]_8.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-False]_9.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-True]_10.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-True]_11.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-True]_12.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-True]_2.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-True]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-True]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-True]_5.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-True]_6.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-True]_7.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-True]_8.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-False-True]_9.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-False]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-False]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-False]_10.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-False]_11.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-False]_12.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-False]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-False]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-False]_5.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-False]_6.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-False]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-False]_8.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-False]_9.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-True]_10.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-True]_11.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-True]_12.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-True]_2.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-True]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-True]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-True]_5.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-True]_6.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-True]_7.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-True]_8.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-False-True-True]_9.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-False]_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-False]_1.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-False]_10.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-False]_11.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-False]_12.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-False]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-False]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-False]_5.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-False]_6.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-False]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-False]_8.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-False]_9.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-True]_10.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-True]_11.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-True]_12.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-True]_2.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-True]_3.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-True]_4.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-True]_5.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-True]_6.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-True]_7.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-True]_8.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-False-True]_9.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-False]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-False]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-False]_10.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-False]_11.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-False]_12.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-False]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-False]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-False]_5.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-False]_6.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-False]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-False]_8.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-False]_9.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-True]_10.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-True]_11.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-True]_12.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-True]_2.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-True]_3.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-True]_4.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-True]_5.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-True]_6.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-True]_7.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-True]_8.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_nested[True-True-True-True]_9.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-False-False]_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-False-False]_1.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-False-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-False-False]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-False-False]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-False-False]_5.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-False-False]_6.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-False-False]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-False-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-False-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-False-True]_2.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-False-True]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-False-True]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-False-True]_5.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-False-True]_6.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-False-True]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-True-False]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-True-False]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-True-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-True-False]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-True-False]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-True-False]_5.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-True-False]_6.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-True-False]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-True-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-True-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-True-True]_2.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-True-True]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-True-True]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-True-True]_5.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-True-True]_6.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-False-True-True]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-False-False]_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-False-False]_1.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-False-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-False-False]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-False-False]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-False-False]_5.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-False-False]_6.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-False-False]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-False-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-False-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-False-True]_2.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-False-True]_3.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-False-True]_4.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-False-True]_5.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-False-True]_6.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-False-True]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-True-False]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-True-False]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-True-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-True-False]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-True-False]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-True-False]_5.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-True-False]_6.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-True-False]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-True-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-True-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-True-True]_2.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-True-True]_3.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-True-True]_4.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-True-True]_5.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-True-True]_6.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[False-True-True-True]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-False-False]_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-False-False]_1.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-False-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-False-False]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-False-False]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-False-False]_5.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-False-False]_6.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-False-False]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-False-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-False-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-False-True]_2.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-False-True]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-False-True]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-False-True]_5.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-False-True]_6.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-False-True]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-True-False]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-True-False]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-True-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-True-False]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-True-False]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-True-False]_5.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-True-False]_6.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-True-False]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-True-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-True-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-True-True]_2.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-True-True]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-True-True]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-True-True]_5.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-True-True]_6.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-False-True-True]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-False-False]_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-False-False]_1.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-False-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-False-False]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-False-False]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-False-False]_5.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-False-False]_6.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-False-False]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-False-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-False-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-False-True]_2.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-False-True]_3.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-False-True]_4.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-False-True]_5.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-False-True]_6.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-False-True]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-True-False]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-True-False]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-True-False]_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-True-False]_3.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-True-False]_4.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-True-False]_5.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-True-False]_6.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-True-False]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-True-True]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-True-True]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-True-True]_2.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-True-True]_3.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-True-True]_4.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-True-True]_5.ref +2 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-True-True]_6.ref +1 -0
- apolo_cli-24.7.1/tests/unit/ascii/test_progress[True-True-True-True]_7.ref +0 -0
- apolo_cli-24.7.1/tests/unit/conftest.py +558 -0
- apolo_cli-24.7.1/tests/unit/formatters/__init__.py +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestAdminQuotaFormatter.test_output_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestAdminQuotaFormatter.test_output_no_quota_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestAdminQuotaFormatter.test_output_zeroes_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestAliasesFormatter.test_output_0.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBSDPainter.test_coloring[Eafxcxdxbxegedabagacad]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBSDPainter.test_coloring[Eafxcxdxbxegedabagacad]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBSDPainter.test_coloring[Eafxcxdxbxegedabagacad]_2.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBSDPainter.test_coloring[Eafxcxdxbxegedabagacad]_3.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBSDPainter.test_coloring[exfxcxdxbxegedabagacad]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBSDPainter.test_coloring[exfxcxdxbxegedabagacad]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBSDPainter.test_coloring[exfxcxdxbxegedabagacad]_2.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBSDPainter.test_coloring[exfxcxdxbxegedabagacad]_3.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBalanceFormatter.test_output_0.ref +2 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBalanceFormatter.test_output_no_quota_0.ref +2 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBalanceFormatter.test_output_rounding_0.ref +2 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBlobFormatter.test_long_formatter[formatter0]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBlobFormatter.test_long_formatter[formatter0]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBlobFormatter.test_long_formatter[formatter0]_2.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBlobFormatter.test_long_formatter[formatter0]_3.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBlobFormatter.test_long_formatter[formatter0]_4.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBlobFormatter.test_long_formatter[formatter0]_5.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBlobFormatter.test_long_formatter[formatter0]_6.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBlobFormatter.test_long_formatter[formatter0]_7.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBlobFormatter.test_long_formatter[formatter0]_8.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBlobFormatter.test_long_formatter[formatter1]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBlobFormatter.test_long_formatter[formatter1]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBlobFormatter.test_long_formatter[formatter1]_2.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBlobFormatter.test_long_formatter[formatter1]_3.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBlobFormatter.test_long_formatter[formatter1]_4.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBlobFormatter.test_long_formatter[formatter1]_5.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBlobFormatter.test_long_formatter[formatter1]_6.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBlobFormatter.test_long_formatter[formatter1]_7.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestBlobFormatter.test_long_formatter[formatter1]_8.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestCloudProviderOptionsFormatter.test_formatter_aws_0.ref +10 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestCloudProviderOptionsFormatter.test_formatter_azure_0.ref +10 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestCloudProviderOptionsFormatter.test_formatter_gcp_0.ref +10 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestClusterOrgProjectsFormatter.test_output_0.ref +3 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestClusterOrgProjectsFormatter.test_output_with_current_project_0.ref +3 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestClusterUserFormatter.test_list_users_no_user_info_0.ref +8 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestClusterUserFormatter.test_list_users_with_user_info_0.ref +9 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestClustersFormatter.test_cluster_list_0.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestClustersFormatter.test_cluster_with_cloud_provider_storage_list_0.ref +13 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestClustersFormatter.test_cluster_with_cloud_provider_storage_without_size_list_0.ref +13 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestClustersFormatter.test_cluster_with_cloud_provider_with_maximum_node_pool_properties_list_0.ref +12 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestClustersFormatter.test_cluster_with_cloud_provider_with_minimum_node_pool_properties_list_0.ref +10 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestClustersFormatter.test_cluster_with_on_prem_cloud_provider_list_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestConfigFormatter.test_output_0.ref +20 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestConfigFormatter.test_output_for_energy_schedules_0.ref +33 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestConfigFormatter.test_output_for_tpu_presets_0.ref +24 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestConfigFormatter.test_output_with_jobs_available_0.ref +20 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestConfigFormatter.test_output_with_org_quota_0.ref +22 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestConfigFormatter.test_output_with_project_name_0.ref +17 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestConfigFormatter.test_output_without_project_0.ref +21 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_no_tty_commit_finished_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_no_tty_commit_started_0.ref +2 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_no_tty_pull_0.ref +3 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_no_tty_pull_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_no_tty_pull_2.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_no_tty_push_0.ref +3 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_no_tty_push_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_no_tty_push_2.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_no_tty_save_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_quiet_commit_finished_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_quiet_commit_started_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_quiet_pull_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_quiet_pull_1.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_quiet_push_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_quiet_push_1.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_quiet_save_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_tty_commit_finished_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_tty_commit_started_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_tty_pull_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_tty_pull_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_tty_pull_2.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_tty_push_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_tty_push_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_tty_push_2.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestDockerImageProgress.test_tty_save_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestFilesFormatter.test_formatter_with_all_entities[formatter0]_0.ref +8 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestFilesFormatter.test_formatter_with_all_entities[formatter1]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestFilesFormatter.test_formatter_with_all_entities[formatter2]_0.ref +8 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestFilesFormatter.test_formatter_with_empty_files[formatter0]_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestFilesFormatter.test_formatter_with_empty_files[formatter1]_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestFilesFormatter.test_formatter_with_empty_files[formatter2]_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestFilesFormatter.test_formatter_with_files_and_folders[formatter1]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestGnuPainter.test_coloring[#star#.text=0;46]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestGnuPainter.test_coloring[#star#.text=0;46]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestGnuPainter.test_coloring[#star#.text=0;46]_2.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestGnuPainter.test_coloring[#star#.text=0;46]_3.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestGnuPainter.test_coloring[#star#.txt=0;46]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestGnuPainter.test_coloring[#star#.txt=0;46]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestGnuPainter.test_coloring[#star#.txt=0;46]_2.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestGnuPainter.test_coloring[#star#.txt=0;46]_3.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestGnuPainter.test_coloring[di=32;41#colon#fi=0;44#colon#no=0;46]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestGnuPainter.test_coloring[di=32;41#colon#fi=0;44#colon#no=0;46]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestGnuPainter.test_coloring[di=32;41#colon#fi=0;44#colon#no=0;46]_2.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestGnuPainter.test_coloring[di=32;41#colon#fi=0;44#colon#no=0;46]_3.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestGnuPainter.test_coloring[di=32;41#colon#no=0;46]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestGnuPainter.test_coloring[di=32;41#colon#no=0;46]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestGnuPainter.test_coloring[di=32;41#colon#no=0;46]_2.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestGnuPainter.test_coloring[di=32;41#colon#no=0;46]_3.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestGnuPainter.test_coloring[no=0;46]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestGnuPainter.test_coloring[no=0;46]_1.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestGnuPainter.test_coloring[no=0;46]_2.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestGnuPainter.test_coloring[no=0;46]_3.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_on_preemptible_node[human]_0.ref +17 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_on_preemptible_node[iso]_0.ref +17 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_disk_volumes_short[human]_0.ref +26 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_disk_volumes_short[iso]_0.ref +26 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_energy_schedule[human]_0.ref +18 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_energy_schedule[iso]_0.ref +18 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_entrypoint[human]_0.ref +19 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_entrypoint[iso]_0.ref +19 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_environment[human]_0.ref +25 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_environment[iso]_0.ref +25 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_life_span_with_value[human]_0.ref +23 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_life_span_with_value[iso]_0.ref +23 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_life_span_without_value[human]_0.ref +23 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_life_span_without_value[iso]_0.ref +23 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_name[human]_0.ref +23 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_name[iso]_0.ref +23 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_org_name[human]_0.ref +18 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_org_name[iso]_0.ref +18 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_org_urls[human]_0.ref +25 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_org_urls[iso]_0.ref +25 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_partial_credits[human]_0.ref +18 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_partial_credits[iso]_0.ref +18 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_preset_name[human]_0.ref +16 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_preset_name[iso]_0.ref +16 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_project_name[human-]_0.ref +24 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_project_name[human-someotherproject]_0.ref +24 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_project_name[human-test-user]_0.ref +24 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_project_name[iso-]_0.ref +24 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_project_name[iso-someotherproject]_0.ref +24 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_project_name[iso-test-user]_0.ref +24 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_restart_policy[human]_0.ref +24 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_restart_policy[iso]_0.ref +24 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_secrets_short[human]_0.ref +31 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_secrets_short[iso]_0.ref +31 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_tags[human]_0.ref +23 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_tags[iso]_0.ref +23 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_tags_wrap_tags[human]_0.ref +23 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_tags_wrap_tags[iso]_0.ref +23 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_volumes_long[human]_0.ref +25 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_volumes_long[iso]_0.ref +25 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_volumes_short[human]_0.ref +26 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_volumes_short[iso]_0.ref +26 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_working_dir[human]_0.ref +24 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_job_with_working_dir[iso]_0.ref +24 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_pending_job[human]_0.ref +22 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_pending_job[iso]_0.ref +22 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_pending_job_no_description[human]_0.ref +15 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_pending_job_no_description[iso]_0.ref +15 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_pending_job_no_reason[human]_0.ref +16 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_pending_job_no_reason[iso]_0.ref +16 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_pending_job_with_reason[human]_0.ref +16 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_pending_job_with_reason[iso]_0.ref +16 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_running_job[human]_0.ref +18 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_running_job[iso]_0.ref +18 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_running_job_with_status_items[human]_0.ref +23 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_running_job_with_status_items[iso]_0.ref +23 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_running_named_job[human]_0.ref +20 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobOutputFormatter.test_running_named_job[iso]_0.ref +20 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStartProgress.test_no_tty_begin_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStartProgress.test_no_tty_begin_with_name_0.ref +2 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStartProgress.test_no_tty_end_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStartProgress.test_no_tty_step_0.ref +2 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStartProgress.test_quiet_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStartProgress.test_quiet_1.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStartProgress.test_quiet_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStartProgress.test_tty_begin_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStartProgress.test_tty_begin_with_name_0.ref +2 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStartProgress.test_tty_end[cancelled]_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStartProgress.test_tty_end[failed]_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStartProgress.test_tty_end[pending]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStartProgress.test_tty_end[running]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStartProgress.test_tty_end[succeeded]_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStartProgress.test_tty_end[suspended]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStartProgress.test_tty_step[cancelled]_0.ref +2 -2
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStartProgress.test_tty_step[failed]_0.ref +2 -2
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStartProgress.test_tty_step[pending]_0.ref +2 -3
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStartProgress.test_tty_step[running]_0.ref +2 -2
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStartProgress.test_tty_step[succeeded]_0.ref +2 -2
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStartProgress.test_tty_step[suspended]_0.ref +2 -3
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStopProgress.test_no_tty_detach_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStopProgress.test_no_tty_end[cancelled]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStopProgress.test_no_tty_end[failed]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStopProgress.test_no_tty_end[succeeded]_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStopProgress.test_no_tty_kill_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStopProgress.test_no_tty_restart_0.ref +2 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStopProgress.test_no_tty_step_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStopProgress.test_quiet_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStopProgress.test_quiet_1.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStopProgress.test_quiet_2.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStopProgress.test_tty_detach_0.ref +17 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStopProgress.test_tty_end[cancelled]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStopProgress.test_tty_end[failed]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStopProgress.test_tty_end[succeeded]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStopProgress.test_tty_kill_0.ref +9 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStopProgress.test_tty_restart_0.ref +1 -3
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStopProgress.test_tty_step[pending]_0.ref +1 -1
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStopProgress.test_tty_step[running]_0.ref +1 -1
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobStopProgress.test_tty_step[suspended]_0.ref +1 -1
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobTelemetryFormatter.test_format_telemetry_limited_height[human]_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobTelemetryFormatter.test_format_telemetry_limited_height[human]_1.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobTelemetryFormatter.test_format_telemetry_limited_height[iso]_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobTelemetryFormatter.test_format_telemetry_limited_height[iso]_1.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobTelemetryFormatter.test_format_telemetry_multiple_jobs[human]_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobTelemetryFormatter.test_format_telemetry_multiple_jobs[human]_1.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobTelemetryFormatter.test_format_telemetry_multiple_jobs[human]_2.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobTelemetryFormatter.test_format_telemetry_multiple_jobs[human]_3.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobTelemetryFormatter.test_format_telemetry_multiple_jobs[human]_4.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobTelemetryFormatter.test_format_telemetry_multiple_jobs[iso]_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobTelemetryFormatter.test_format_telemetry_multiple_jobs[iso]_1.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobTelemetryFormatter.test_format_telemetry_multiple_jobs[iso]_2.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobTelemetryFormatter.test_format_telemetry_multiple_jobs[iso]_3.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobTelemetryFormatter.test_format_telemetry_multiple_jobs[iso]_4.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobTelemetryFormatter.test_format_telemetry_no_gpu[human]_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobTelemetryFormatter.test_format_telemetry_no_gpu[iso]_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobTelemetryFormatter.test_format_telemetry_seq[human]_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobTelemetryFormatter.test_format_telemetry_seq[human]_1.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobTelemetryFormatter.test_format_telemetry_seq[iso]_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobTelemetryFormatter.test_format_telemetry_seq[iso]_1.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobTelemetryFormatter.test_format_telemetry_with_gpu[human]_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestJobTelemetryFormatter.test_format_telemetry_with_gpu[iso]_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestLifeSpanUpdateFormatter.test_finished[human]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestLifeSpanUpdateFormatter.test_finished[iso]_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestLifeSpanUpdateFormatter.test_not_finished[human]_0.ref +2 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestLifeSpanUpdateFormatter.test_not_finished[iso]_0.ref +2 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestNonePainter.test_simple_0.ref +1 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestOrgClusterFormatter.test_org_cluster_formatter_0.ref +8 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestOrgClusterFormatter.test_org_cluster_formatter_no_quota_0.ref +8 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestQuotaFormatter.test_output_0.ref +2 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestQuotaFormatter.test_output_no_quota_0.ref +2 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestQuotaFormatter.test_output_only_cpu_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestQuotaFormatter.test_output_only_credits_0.ref +2 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestQuotaFormatter.test_output_only_gpu_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestQuotaFormatter.test_output_only_jobs_0.ref +2 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestQuotaFormatter.test_output_zeroes_0.ref +2 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestQuotaInfoFormatter.test_output_0.ref +2 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestQuotaInfoFormatter.test_output_no_quota_0.ref +2 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestQuotaInfoFormatter.test_output_spent_more_than_quota_left_zero_0.ref +2 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestQuotaInfoFormatter.test_output_too_many_hours_0.ref +2 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestSimpleJobsFormatter.test_empty_0.ref +0 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestSimpleJobsFormatter.test_list_0.ref +2 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_custom_columns[human]_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_custom_columns[iso]_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_dates[human]_0.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_dates[iso]_0.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_dates_0.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_empty[human]_0.ref +2 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_empty[iso]_0.ref +2 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_life_span[human]_0.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_life_span[iso]_0.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_org_name[human]_0.ref +5 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_org_name[iso]_0.ref +5 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_preset[human]_0.ref +5 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_preset[iso]_0.ref +5 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_project_name[human]_0.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_project_name[iso]_0.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_short_cells[0-owner-#less#you#more#]_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_short_cells[1-alice-alice]_1.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_short_cells[human-0-owner-#less#you#more#]_0.ref +3 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_short_cells[human-1-alice-alice]_1.ref +3 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_short_cells[iso-0-owner-#less#you#more#]_0.ref +3 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_short_cells[iso-1-alice-alice]_1.ref +3 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_wide_cells[human-0-owner-#less#you#more#]_0.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_wide_cells[human-1-alice-alice]_1.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_wide_cells[iso-0-owner-#less#you#more#]_0.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_wide_cells[iso-1-alice-alice]_1.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_working_dir[human]_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestTabularJobsFormatter.test_working_dir[iso]_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestUsageFormatter.test_formatter_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestUsageFormatter.test_org_formatter_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/TestUsageFormatter.test_path_formatter_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/test_bucket_credentials_formatter_0.ref +16 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/test_bucket_formatter_0.ref +9 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/test_bucket_formatter_with_org_0.ref +9 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/test_buckets_credentials_formatter_0.ref +5 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/test_buckets_credentials_formatter_simple_0.ref +3 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/test_buckets_formatter_0.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/test_buckets_formatter_long_0.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/test_buckets_formatter_short_0.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/test_buckets_formatter_simple_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/test_disk_formatter_0.ref +12 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/test_disks_formatter_0.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/test_disks_formatter_long_0.ref +7 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/test_disks_formatter_short_0.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/test_disks_formatter_simple_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/test_secrets_formatter_short_0.ref +5 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/test_secrets_formatter_simple_0.ref +3 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/test_service_account_formatter[None]_0.ref +8 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/test_service_account_formatter[some-org]_0.ref +8 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/test_service_account_formatter_0.ref +6 -0
- apolo_cli-24.7.1/tests/unit/formatters/ascii/test_service_accounts_formatter_simple_0.ref +4 -0
- apolo_cli-24.7.1/tests/unit/formatters/test_admin_formatters.py +471 -0
- apolo_cli-24.7.1/tests/unit/formatters/test_blob_formatters.py +94 -0
- apolo_cli-24.7.1/tests/unit/formatters/test_bucket_credentials.py +193 -0
- apolo_cli-24.7.1/tests/unit/formatters/test_buckets.py +113 -0
- apolo_cli-24.7.1/tests/unit/formatters/test_config_formatters.py +301 -0
- apolo_cli-24.7.1/tests/unit/formatters/test_disks.py +97 -0
- apolo_cli-24.7.1/tests/unit/formatters/test_images_formatters.py +244 -0
- apolo_cli-24.7.1/tests/unit/formatters/test_jobs_formatters.py +2636 -0
- apolo_cli-24.7.1/tests/unit/formatters/test_secrets.py +44 -0
- apolo_cli-24.7.1/tests/unit/formatters/test_service_accounts.py +88 -0
- apolo_cli-24.7.1/tests/unit/formatters/test_storage_formatters.py +442 -0
- apolo_cli-24.7.1/tests/unit/formatters/test_utils.py +150 -0
- apolo_cli-24.7.1/tests/unit/script.py +12 -0
- apolo_cli-24.7.1/tests/unit/test_admin.py +690 -0
- apolo_cli-24.7.1/tests/unit/test_ael.py +72 -0
- apolo_cli-24.7.1/tests/unit/test_alias.py +1113 -0
- apolo_cli-24.7.1/tests/unit/test_click_types.py +151 -0
- apolo_cli-24.7.1/tests/unit/test_click_utils.py +172 -0
- apolo_cli-24.7.1/tests/unit/test_config.py +346 -0
- apolo_cli-24.7.1/tests/unit/test_docker_helper.py +167 -0
- apolo_cli-24.7.1/tests/unit/test_job.py +529 -0
- apolo_cli-24.7.1/tests/unit/test_parse_utils.py +243 -0
- apolo_cli-24.7.1/tests/unit/test_root.py +72 -0
- apolo_cli-24.7.1/tests/unit/test_secrets.py +13 -0
- apolo_cli-24.7.1/tests/unit/test_shell_completion.py +1552 -0
- apolo_cli-24.7.1/tests/unit/test_stats.py +133 -0
- apolo_cli-24.7.1/tests/unit/test_storage.py +106 -0
- apolo_cli-24.7.1/tests/unit/test_storage_progress.py +302 -0
- apolo_cli-24.7.1/tests/unit/test_utils.py +972 -0
|
@@ -0,0 +1,2098 @@
|
|
|
1
|
+
[comment]: # (Please do not modify this file)
|
|
2
|
+
[comment]: # (Put you comments to changelog.d and it will be moved to changelog in next release)
|
|
3
|
+
|
|
4
|
+
[comment]: # (Clear the text on make release for canceling the release)
|
|
5
|
+
|
|
6
|
+
[comment]: # (towncrier release notes start)
|
|
7
|
+
|
|
8
|
+
Apolo SDK/CLI 24.7.1 (2024-07-19)
|
|
9
|
+
=================================
|
|
10
|
+
|
|
11
|
+
No significant changes.
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
Apolo SDK/CLI 24.7.0 (2024-07-19)
|
|
15
|
+
=================================
|
|
16
|
+
|
|
17
|
+
Features
|
|
18
|
+
--------
|
|
19
|
+
|
|
20
|
+
- Add update-cluster-user command. ([#3009](https://github.com/neuro-inc/neuro-cli/issues/3009))
|
|
21
|
+
- Rename neuro-cli/neuro-sdk to apolo-cli/apolo-sdk ([#3010](https://github.com/neuro-inc/neuro-cli/pull/3010))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
Neuro SDK/CLI 24.5.0 (2024-05-21)
|
|
25
|
+
=================================
|
|
26
|
+
|
|
27
|
+
Features
|
|
28
|
+
--------
|
|
29
|
+
|
|
30
|
+
- Support AMD, Intel GPUs ([#3007](https://github.com/neuro-inc/neuro-cli/issues/3007))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
Neuro SDK/CLI 24.2.0 (2024-02-12)
|
|
34
|
+
=================================
|
|
35
|
+
|
|
36
|
+
No significant changes.
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
Neuro SDK/CLI 24.1.0 (2024-01-02)
|
|
40
|
+
=================================
|
|
41
|
+
|
|
42
|
+
Bugfixes
|
|
43
|
+
--------
|
|
44
|
+
|
|
45
|
+
- Do not perform terminal settings reset in PyCharm while it causes screen cleanup. ([#3005](https://github.com/neuro-inc/neuro-cli/issues/3005))
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
Neuro SDK/CLI 23.11.0 (2023-11-14)
|
|
49
|
+
==================================
|
|
50
|
+
|
|
51
|
+
No significant changes.
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
Neuro SDK/CLI 23.10.0 (2023-10-26)
|
|
55
|
+
==================================
|
|
56
|
+
|
|
57
|
+
No significant changes.
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
Neuro SDK/CLI 23.7.0 (2023-07-03)
|
|
61
|
+
=================================
|
|
62
|
+
|
|
63
|
+
Features
|
|
64
|
+
--------
|
|
65
|
+
|
|
66
|
+
- Commands `neuro run`, `neuro logs`, `neuro attach` and `neuro exec` in non-quiet mode now prints details for cancelled and failed jobs. Also improved other indications of the job status. ([#2800](https://github.com/neuro-inc/platform-client-python/issues/2800))
|
|
67
|
+
- Commands `neuro run` and `neuro attach` now re-attach to restarted jobs. Previously they waited until the job finished. ([#2802](https://github.com/neuro-inc/platform-client-python/issues/2802))
|
|
68
|
+
- Added support of cluster energy schedules.
|
|
69
|
+
`neuro config show --energy` will display awailable energy schedule periods.
|
|
70
|
+
`neuro run --schedule-name <energy-schedule-name>` will run the job within the specified <energy-schedule-name>. Note - the selected preset should have an enabled scheduler.
|
|
71
|
+
`neuro status <job-id>` will include the energy schedule name if one was used for running the job. ([#2903](https://github.com/neuro-inc/platform-client-python/issues/2903))
|
|
72
|
+
- Added Python 3.11 support. ([#2908](https://github.com/neuro-inc/platform-client-python/issues/2908))
|
|
73
|
+
- Add `neuro config switch-project` command. ([#2940](https://github.com/neuro-inc/platform-client-python/issues/2940))
|
|
74
|
+
- Support projects in storage commands, make project directory default instead of user home directory. ([#2949](https://github.com/neuro-inc/platform-client-python/issues/2949))
|
|
75
|
+
- Support projects in image commands. ([#2950](https://github.com/neuro-inc/platform-client-python/issues/2950))
|
|
76
|
+
- Support projects in `neuro secret` cli. ([#2952](https://github.com/neuro-inc/platform-client-python/issues/2952))
|
|
77
|
+
- Support projects in `neuro blob` cli commands and `neuro-sdk`. ([#2954](https://github.com/neuro-inc/platform-client-python/issues/2954))
|
|
78
|
+
- Add project support in `neuro job` commands. ([#2955](https://github.com/neuro-inc/platform-client-python/issues/2955))
|
|
79
|
+
- Support projects in disk CLI commands and SDK methods. ([#2960](https://github.com/neuro-inc/platform-client-python/issues/2960))
|
|
80
|
+
- Support projects in service account CLI commands and SDK methods. ([#2965](https://github.com/neuro-inc/platform-client-python/issues/2965))
|
|
81
|
+
- Unhide remove-project command. ([#2976](https://github.com/neuro-inc/platform-client-python/issues/2976))
|
|
82
|
+
- Align all `ls` command options. ([#2995](https://github.com/neuro-inc/platform-client-python/issues/2995))
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
Bugfixes
|
|
86
|
+
--------
|
|
87
|
+
|
|
88
|
+
- Fix human-readable datetime formatter to correctly report jobs lifespan ending in future ([#2933](https://github.com/neuro-inc/platform-client-python/issues/2933))
|
|
89
|
+
- Update projects after fetching config from server. ([#2992](https://github.com/neuro-inc/platform-client-python/issues/2992))
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
Neuro SDK/CLI 22.7.1 (2022-07-27)
|
|
93
|
+
=================================
|
|
94
|
+
|
|
95
|
+
Features
|
|
96
|
+
--------
|
|
97
|
+
|
|
98
|
+
- Add update-node-pool command. Only idle_size update is available. ([#2740](https://github.com/neuro-inc/platform-client-python/issues/2740))
|
|
99
|
+
- Integrate neuro-config-client package. ([#2791](https://github.com/neuro-inc/platform-client-python/issues/2791))
|
|
100
|
+
- Added project management commands to `neuro admin`. ([#2798](https://github.com/neuro-inc/platform-client-python/issues/2798))
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
Bugfixes
|
|
104
|
+
--------
|
|
105
|
+
|
|
106
|
+
- Fix `neuro admin update-resource-preset`: previous values are now used for boolean parameters if options `--scheduler/--no-scheduler` or `--preemptible-node/--no-preemptible-node` are not explicitly specified. ([#2761](https://github.com/neuro-inc/platform-client-python/issues/2761))
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
Neuro SDK/CLI 22.7.0 (2022-07-04)
|
|
110
|
+
=================================
|
|
111
|
+
|
|
112
|
+
Features
|
|
113
|
+
--------
|
|
114
|
+
|
|
115
|
+
- Update size formatting: use decimal prefixes ([#2768](https://github.com/neuro-inc/platform-client-python/issues/2768))
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
Bugfixes
|
|
119
|
+
--------
|
|
120
|
+
|
|
121
|
+
- Fix formatting URIs in short form for users with organization. ([#2749](https://github.com/neuro-inc/platform-client-python/issues/2749))
|
|
122
|
+
- Disks, buckets and secrets are now created with the current organization instead of no organization if `--org` is not explicitly specified. ([#2756](https://github.com/neuro-inc/platform-client-python/issues/2756))
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
Misc
|
|
126
|
+
----
|
|
127
|
+
|
|
128
|
+
- [#2752](https://github.com/neuro-inc/platform-client-python/issues/2752)
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
Neuro SDK/CLI 22.6.3 (2022-06-30)
|
|
132
|
+
=================================
|
|
133
|
+
|
|
134
|
+
Bugfixes
|
|
135
|
+
--------
|
|
136
|
+
|
|
137
|
+
- Pin `neuro-admin-client` to `>=22.6.4`, make SDK future-compatible with next `neuro-admin-client` releases. ([#2757](https://github.com/neuro-inc/platform-client-python/issues/2757))
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
Neuro SDK/CLI 22.6.2 (2022-06-15)
|
|
141
|
+
=================================
|
|
142
|
+
|
|
143
|
+
Features
|
|
144
|
+
--------
|
|
145
|
+
|
|
146
|
+
- Allow user without clusters call neuro-sdk Jobs.status method if they have permissions. ([#2733](https://github.com/neuro-inc/platform-client-python/issues/2733))
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
Neuro SDK/CLI 22.6.1 (2022-06-09)
|
|
150
|
+
=================================
|
|
151
|
+
|
|
152
|
+
Features
|
|
153
|
+
--------
|
|
154
|
+
|
|
155
|
+
- Re-load clusters config in `neuro config show`. ([#2728](https://github.com/neuro-inc/platform-client-python/issues/2728))
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
Neuro SDK/CLI 22.6.0 (2022-06-07)
|
|
159
|
+
=================================
|
|
160
|
+
|
|
161
|
+
Features
|
|
162
|
+
--------
|
|
163
|
+
|
|
164
|
+
- Support organization storage in disk usage command when user switches to organization. ([#2585](https://github.com/neuro-inc/platform-client-python/issues/2585))
|
|
165
|
+
- Added `neuro admin set-org-cluster-defaults` command to allow org cluster manager to modify org cluster defaults. ([#2602](https://github.com/neuro-inc/platform-client-python/issues/2602))
|
|
166
|
+
- Support custom storage path in disk usage command. ([#2622](https://github.com/neuro-inc/platform-client-python/issues/2622))
|
|
167
|
+
- `neuro blob statbucket` now displays some additional information
|
|
168
|
+
for imported buckets.
|
|
169
|
+
|
|
170
|
+
* For AWS: "External name", "External endpoint", "External region name".
|
|
171
|
+
* For Azure: "External name", "External endpoint".
|
|
172
|
+
* For GCP: "External name". ([#2706](https://github.com/neuro-inc/platform-client-python/issues/2706))
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
Bugfixes
|
|
176
|
+
--------
|
|
177
|
+
|
|
178
|
+
- Fix resolving job URIs containing organization name and/or service account name. ([#2572](https://github.com/neuro-inc/platform-client-python/issues/2572))
|
|
179
|
+
- Provide click 8.1.3 support with keeping 8.0+ compatibility. ([#2689](https://github.com/neuro-inc/platform-client-python/issues/2689))
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
Misc
|
|
183
|
+
----
|
|
184
|
+
|
|
185
|
+
- [#2568](https://github.com/neuro-inc/platform-client-python/issues/2568), [#2569](https://github.com/neuro-inc/platform-client-python/issues/2569), [#2601](https://github.com/neuro-inc/platform-client-python/issues/2601)
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
Neuro SDK/CLI 22.1.3 (2022-01-27)
|
|
189
|
+
=================================
|
|
190
|
+
|
|
191
|
+
Features
|
|
192
|
+
--------
|
|
193
|
+
|
|
194
|
+
- Support organization storage size parameter. ([#2560](https://github.com/neuro-inc/platform-client-python/issues/2560))
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
Neuro SDK/CLI 22.1.2 (2022-01-25)
|
|
198
|
+
=================================
|
|
199
|
+
|
|
200
|
+
Features
|
|
201
|
+
--------
|
|
202
|
+
|
|
203
|
+
- Added client-side validation of docker image name and tag. ([#2525](https://github.com/neuro-inc/platform-client-python/issues/2525))
|
|
204
|
+
- Added support of column type `org_name` to ps-format. ([#2533](https://github.com/neuro-inc/platform-client-python/issues/2533))
|
|
205
|
+
- Added "ORG" column to get-cluster-users output. ([#2541](https://github.com/neuro-inc/platform-client-python/issues/2541))
|
|
206
|
+
- Added info about org quota to `neuro config show`. ([#2545](https://github.com/neuro-inc/platform-client-python/issues/2545))
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
Bugfixes
|
|
210
|
+
--------
|
|
211
|
+
|
|
212
|
+
- Cluster/org name validness now checked after config re-fetch in `neuro config switch-cluster`
|
|
213
|
+
and `neuro config switch-org` commands. ([#2543](https://github.com/neuro-inc/platform-client-python/issues/2543))
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
Neuro SDK/CLI 22.1.1 (2022-01-18)
|
|
217
|
+
=================================
|
|
218
|
+
|
|
219
|
+
Features
|
|
220
|
+
--------
|
|
221
|
+
|
|
222
|
+
- Add command `neuro acl list-roles` to list roles created by user. ([#2496](https://github.com/neuro-inc/platform-client-python/issues/2496))
|
|
223
|
+
- Added support to set/update cluster level default credits and quota.
|
|
224
|
+
|
|
225
|
+
Use options `--default-credits` and `--default-jobs` of commands `neuro admin add-cluster`,
|
|
226
|
+
`neuro admin update-cluster`, `neuro admin add-org-cluster` and `neuro admin update-org-cluster`
|
|
227
|
+
to set and update cluster defaults. This values will when new user with role "user" is added to cluster
|
|
228
|
+
(either by `neuro admin add-cluster-user` or if user registers himself using web interface).
|
|
229
|
+
The default for managers and admins is unlimited quota and credits as the can edit their quota.
|
|
230
|
+
|
|
231
|
+
You can override default value by using `--credits` and `--jobs` options of
|
|
232
|
+
`neuro admin add-org-cluster` command. ([#2520](https://github.com/neuro-inc/platform-client-python/issues/2520))
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
Bugfixes
|
|
236
|
+
--------
|
|
237
|
+
|
|
238
|
+
- Fixed memory leak in `neuro blob cp`. ([#2523](https://github.com/neuro-inc/platform-client-python/issues/2523))
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
Neuro SDK/CLI 22.1.0 (2022-01-10)
|
|
242
|
+
=================================
|
|
243
|
+
|
|
244
|
+
Features
|
|
245
|
+
--------
|
|
246
|
+
|
|
247
|
+
- Added support `--owner` argument in blob bucket level commands to allow referring to another users bucket by name. ([#2494](https://github.com/neuro-inc/platform-client-python/issues/2494))
|
|
248
|
+
- Add --force/-f flag to neuro blob rmbucket to force remove non-empty bucket. ([#2495](https://github.com/neuro-inc/platform-client-python/issues/2495))
|
|
249
|
+
- Support `neuro -q ls` and `neuro -q blob ls` for quiet output enforcing. ([#2506](https://github.com/neuro-inc/platform-client-python/issues/2506))
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
Deprecations and Removals
|
|
253
|
+
-------------------------
|
|
254
|
+
|
|
255
|
+
- Replace `--http` option with `--http-port`, keep `--http` option as a hidden deprecated alternative, scheduled for removal later. ([#2501](https://github.com/neuro-inc/platform-client-python/issues/2501))
|
|
256
|
+
- Remove deprecated `neuro project init` command. ([#2502](https://github.com/neuro-inc/platform-client-python/issues/2502))
|
|
257
|
+
- Remove `client.job.tags()` method from SDK and `neuro job tags` command from CLI. ([#2503](https://github.com/neuro-inc/platform-client-python/issues/2503))
|
|
258
|
+
- Drop deprecated API from SDK ([#2505](https://github.com/neuro-inc/platform-client-python/issues/2505))
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
Neuro SDK/CLI 21.12.2 (2021-12-23)
|
|
262
|
+
==================================
|
|
263
|
+
|
|
264
|
+
Features
|
|
265
|
+
--------
|
|
266
|
+
|
|
267
|
+
- Sort CLI commands, groups and topics alphabetically. ([#2488](https://github.com/neuro-inc/platform-client-python/issues/2488))
|
|
268
|
+
- Add support for Open-Sourced user-less services deployment. ([#2492](https://github.com/neuro-inc/platform-client-python/issues/2492))
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
Bugfixes
|
|
272
|
+
--------
|
|
273
|
+
|
|
274
|
+
- Replace "Spend credits" with "Credits spent" in formatter. ([#2435](https://github.com/neuro-inc/platform-client-python/issues/2435))
|
|
275
|
+
|
|
276
|
+
|
|
277
|
+
Neuro SDK/CLI 21.12.1 (2021-12-22)
|
|
278
|
+
==================================
|
|
279
|
+
|
|
280
|
+
Bugfixes
|
|
281
|
+
--------
|
|
282
|
+
|
|
283
|
+
- Fix importing of asynccontextmanager from wrong place
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
Neuro SDK/CLI 21.12.0 (2021-12-21)
|
|
287
|
+
==================================
|
|
288
|
+
|
|
289
|
+
Features
|
|
290
|
+
--------
|
|
291
|
+
|
|
292
|
+
- Merge `config show-quota` into `config show` CLI command. ([#2436](https://github.com/neuro-inc/platform-client-python/issues/2436))
|
|
293
|
+
- Added admin commands to manager orgs and org-clusters:
|
|
294
|
+
|
|
295
|
+
Managing orgs:
|
|
296
|
+
|
|
297
|
+
- `neuro admin get-orgs` Print the list of available orgs user has access to.
|
|
298
|
+
- `neuro admin add-org <org_name>` Create a new org.
|
|
299
|
+
- `neuro admin remove-org <org_name>` Drop a org. Removes all memberships, very dangerous operation.
|
|
300
|
+
|
|
301
|
+
Managing org members:
|
|
302
|
+
|
|
303
|
+
- `neuro admin get-org-users <org_name>` List all members of orgs.
|
|
304
|
+
- `neuro admin add-org-user <org_name> <username>` Add user to the org.
|
|
305
|
+
- `neuro admin remove-org-user <org_name> <username>` Remove user from the org.
|
|
306
|
+
|
|
307
|
+
Managing access of orgs to clusters:
|
|
308
|
+
|
|
309
|
+
- `neuro admin get-org-clusters <cluster_name>` Print the list of all orgs in the cluster
|
|
310
|
+
- `neuro admin add-org-cluster <cluster_name> <org_name>` Add org access to specified cluster
|
|
311
|
+
- `neuro admin get-org-cluster-quota <cluster_name> <org_name>` Get info about org quota in given cluster
|
|
312
|
+
- `neuro admin set-org-cluster-quota [options] <cluster_name> <org_name>` Set org cluster quota to given values
|
|
313
|
+
- `neuro admin set-org-cluster-credits [options] <cluster_name> <org_name>` Set org cluster credits to given value
|
|
314
|
+
- `neuro admin add-org-cluster-credits [options] <cluster_name> <org_name>` Add given values to org cluster balance
|
|
315
|
+
|
|
316
|
+
Manging access of org members to clusters:
|
|
317
|
+
|
|
318
|
+
- `neuro admin get-cluster-users --org <org_name> <cluster_name>` List all members of orgs added to cluster
|
|
319
|
+
- `neuro admin add-cluster-user --org <org_name> <cluster_name> <username>` Add org member to cluster
|
|
320
|
+
- `neuro admin remove-cluster-user --org <org_name> <cluster_name> <username>` Remove org member user from the cluster.
|
|
321
|
+
- `neuro admin get-user-quota --org <org_name> <cluster_name> <username>` Get info about org member quota in given cluster
|
|
322
|
+
- `neuro admin set-user-quota [options] --org <org_name> <cluster_name> <username>` Set org member quota in cluster to given values
|
|
323
|
+
- `neuro admin set-user-credits [options] --org <org_name> <cluster_name> <username>` Set org member credits in cluster to given value
|
|
324
|
+
- `neuro admin add-user-credits [options] --org <org_name> <cluster_name> <username>` Add given values to org member balance in cluster ([#2449](https://github.com/neuro-inc/platform-client-python/issues/2449))
|
|
325
|
+
- Option `-j`/`--jobs` in `neuro admin set-user-quota` is now required. Pass `unlimited` for setting no limit. Negative values are now rejected. ([#2453](https://github.com/neuro-inc/platform-client-python/issues/2453))
|
|
326
|
+
- Option `-c`/`--credits` in `neuro admin set-user-credits` and `neuro admin add-user-credits` is now required. Pass "unlimited" in `neuro admin set-user-credits` for setting no limit. Values "infinity", "nan" etc are now rejected. ([#2454](https://github.com/neuro-inc/platform-client-python/issues/2454))
|
|
327
|
+
- Added support of organizations.
|
|
328
|
+
|
|
329
|
+
Current organization is displayed in `neuro config show`. It can be changed using `neuro config switch-org`. To least
|
|
330
|
+
organizations you have access to in each cluster, use `neuro config get-clusters`.
|
|
331
|
+
|
|
332
|
+
Also you can run job on behalf of organization. By default, `neuro run` will use current organization, but you
|
|
333
|
+
can override it using `neuro run --org <some_org>`. ([#2465](https://github.com/neuro-inc/platform-client-python/issues/2465))
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
Bugfixes
|
|
337
|
+
--------
|
|
338
|
+
|
|
339
|
+
- Fix command description for `neuro admin show-cluster-options`. ([#2434](https://github.com/neuro-inc/platform-client-python/issues/2434))
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
Neuro SDK/CLI 21.11.4 (2021-11-25)
|
|
343
|
+
==================================
|
|
344
|
+
|
|
345
|
+
Bugfixes
|
|
346
|
+
--------
|
|
347
|
+
|
|
348
|
+
- Fix `neuro rm storage:...` command
|
|
349
|
+
|
|
350
|
+
Neuro SDK/CLI 21.11.3 (2021-11-25)
|
|
351
|
+
==================================
|
|
352
|
+
|
|
353
|
+
Features
|
|
354
|
+
--------
|
|
355
|
+
|
|
356
|
+
- Add Python 3.10 support. ([#2421](https://github.com/neuro-inc/platform-client-python/issues/2421))
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
Deprecations and Removals
|
|
360
|
+
-------------------------
|
|
361
|
+
|
|
362
|
+
- Drop Python 3.6 support. ([#2421](https://github.com/neuro-inc/platform-client-python/issues/2421))
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
Neuro SDK/CLI 21.11.2 (2021-11-23)
|
|
366
|
+
==================================
|
|
367
|
+
|
|
368
|
+
Features
|
|
369
|
+
--------
|
|
370
|
+
|
|
371
|
+
- Configure version checker settings by plugins. ([#2405](https://github.com/neuro-inc/platform-client-python/issues/2405))
|
|
372
|
+
- CLI startup time is 2 times shorter now. ([#2417](https://github.com/neuro-inc/platform-client-python/issues/2417))
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
Deprecations and Removals
|
|
376
|
+
-------------------------
|
|
377
|
+
|
|
378
|
+
- Deprecate `neuro project init` command, use `cookiecutter gh:neuro-inc/cookiecutter-neuro-project` instead. ([#2418](https://github.com/neuro-inc/platform-client-python/issues/2418))
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
Neuro SDK/CLI 21.11.1 (2021-11-17)
|
|
382
|
+
==================================
|
|
383
|
+
|
|
384
|
+
Features
|
|
385
|
+
--------
|
|
386
|
+
|
|
387
|
+
- Add support of symlinks in `neuro ls`. ([#2400](https://github.com/neuro-inc/platform-client-python/issues/2400))
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
Bugfixes
|
|
391
|
+
--------
|
|
392
|
+
|
|
393
|
+
- Fix sharing buckets using `neuro acl grant`. ([#2414](https://github.com/neuro-inc/platform-client-python/issues/2414))
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
Neuro SDK/CLI 21.11.0 (2021-11-08)
|
|
397
|
+
==================================
|
|
398
|
+
|
|
399
|
+
Features
|
|
400
|
+
--------
|
|
401
|
+
|
|
402
|
+
- Report job price in `neuro job status`, add support of organisation names in jobs. ([#2404](https://github.com/neuro-inc/platform-client-python/issues/2404))
|
|
403
|
+
- Raise dedicated `NotSupportedError` for unsupported REST API calls ([#2407](https://github.com/neuro-inc/platform-client-python/issues/2407))
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
Neuro SDK/CLI 21.10.0 (2021-10-25)
|
|
407
|
+
==================================
|
|
408
|
+
|
|
409
|
+
Features
|
|
410
|
+
--------
|
|
411
|
+
|
|
412
|
+
- Added support of open stack as bucket provider. ([#2371](https://github.com/neuro-inc/platform-client-python/issues/2371))
|
|
413
|
+
- Added `blob du <bucket_id_or_name>` command to change bucket's storage usage. ([#2372](https://github.com/neuro-inc/platform-client-python/issues/2372))
|
|
414
|
+
- Added support of bucket name in uris for bucket that do not belong to current user. ([#2385](https://github.com/neuro-inc/platform-client-python/issues/2385))
|
|
415
|
+
- Added first name, lastname, registered columns to `neuro admin get-cluster-users` output. ([#2387](https://github.com/neuro-inc/platform-client-python/issues/2387))
|
|
416
|
+
- Added "Spent credits" to add "neuro admin get-cluster-users". Splitted 'quota' into 'balance' and 'quota':
|
|
417
|
+
|
|
418
|
+
- `neuro admin set-user-quota` changes only `max_running_jobs` quota.
|
|
419
|
+
- `neuro admin set-user-credits` changes only `credits` balance of user.
|
|
420
|
+
- `neuro admin add-user-credits` updates `credits` balance of user by delta. ([#2391](https://github.com/neuro-inc/platform-client-python/issues/2391))
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
Bugfixes
|
|
424
|
+
--------
|
|
425
|
+
|
|
426
|
+
- Fix fetching zero-size blob from S3 compatible bucket providers. ([#2394](https://github.com/neuro-inc/platform-client-python/issues/2394))
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
Neuro SDK/CLI 21.9.3 (2021-09-24)
|
|
430
|
+
===================================
|
|
431
|
+
|
|
432
|
+
Features
|
|
433
|
+
--------
|
|
434
|
+
|
|
435
|
+
- Added support of blob storage for azure clusters. ([#2284](https://github.com/neuro-inc/platform-client-python/issues/2284))
|
|
436
|
+
- Added support of blob storage for gcp clusters. ([#2293](https://github.com/neuro-inc/platform-client-python/issues/2293))
|
|
437
|
+
- Added `--read-only` flag to `neuro blob mkcredentials` to allow creation of read-only credentials. ([#2295](https://github.com/neuro-inc/platform-client-python/issues/2295))
|
|
438
|
+
- Added `neuro blob importbucket` command to import external bucket. External buckets support
|
|
439
|
+
the same operations (`neuro blob ls/cp/rm/glob`), but it is impossible to generate persistent credentials
|
|
440
|
+
for them using "neuro blob mkcredentials". ([#2297](https://github.com/neuro-inc/platform-client-python/issues/2297))
|
|
441
|
+
- Added `neuro blob sign-url <blob-uri>` command for generation of urls that grant temporal access to blob. ([#2299](https://github.com/neuro-inc/platform-client-python/issues/2299))
|
|
442
|
+
- Added command `neuro blob set-bucket-publicity <bucket> <"public"|"private">` to make bucket accessible for unauthorized
|
|
443
|
+
users. ([#2306](https://github.com/neuro-inc/platform-client-python/issues/2306))
|
|
444
|
+
- Undeprecate `neuro job save` command, we decided to support this functionality in future. ([#2336](https://github.com/neuro-inc/platform-client-python/issues/2336))
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
Neuro SDK/CLI 21.9.2 (2021-09-02)
|
|
448
|
+
=================================
|
|
449
|
+
|
|
450
|
+
- Revert back ([#2274](https://github.com/neuro-inc/platform-client-python/issues/2274)); `pip install neuro-cli[awscli,boto3]` did not work well.
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
Neuro SDK/CLI 21.8.30 (2021-08-30)
|
|
454
|
+
==================================
|
|
455
|
+
|
|
456
|
+
Features
|
|
457
|
+
--------
|
|
458
|
+
|
|
459
|
+
- Implement URI autocompletion for "blob:" scheme. ([#2273](https://github.com/neuro-inc/platform-client-python/issues/2273))
|
|
460
|
+
- Provide `pip install neuro-cli[awscli,boto3]` extra dependencies for installing the compatible AWS CLI version.
|
|
461
|
+
|
|
462
|
+
* `neuro-cli[awscli]` installs `awscli` package.
|
|
463
|
+
|
|
464
|
+
* `neuro-cli[boto3]` installs `boto3` package.
|
|
465
|
+
|
|
466
|
+
* `neuro-cli[awscli,boto3]` installs both. ([#2274](https://github.com/neuro-inc/platform-client-python/issues/2274))
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
Neuro SDK/CLI 21.8.27 (2021-08-27)
|
|
470
|
+
==================================
|
|
471
|
+
|
|
472
|
+
Features
|
|
473
|
+
--------
|
|
474
|
+
|
|
475
|
+
- Add support of minio provider as a bucket blob for onprem clusters ([#2271](https://github.com/neuro-inc/platform-client-python/issues/2271))
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
Bugfixes
|
|
479
|
+
--------
|
|
480
|
+
|
|
481
|
+
- Relax aiobotocore requirement; it allows working with the latest aiobotocore without publishing new Neuro SDK. ([#2270](https://github.com/neuro-inc/platform-client-python/issues/2270))
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
Neuro SDK/CLI 21.8.26 (2021-08-26)
|
|
485
|
+
==================================
|
|
486
|
+
|
|
487
|
+
Features
|
|
488
|
+
--------
|
|
489
|
+
|
|
490
|
+
- Add option `--since` in command `neuro logs`. Add parameter *since* in jobs.monitor(). ([#1964](https://github.com/neuro-inc/platform-client-python/issues/1964))
|
|
491
|
+
- Add option `--timestamps` in command `neuro logs`. Add parameter *timestamps* in jobs.monitor(). ([#2252](https://github.com/neuro-inc/platform-client-python/issues/2252))
|
|
492
|
+
- Implement public URI helpers. ([#2253](https://github.com/neuro-inc/platform-client-python/issues/2253))
|
|
493
|
+
- Reworked blob storage support:
|
|
494
|
+
|
|
495
|
+
Bucket management commands:
|
|
496
|
+
- use `neuro blob mkbucket` to create new bucket
|
|
497
|
+
- use `neuro blob lsbucket` to list your buckets
|
|
498
|
+
- use `neuro blob statbucket <bucket_id>` to retrieve info about single bucket
|
|
499
|
+
- use `neuro blob rmbucket <bucket_id>` to delete bucket. Note that you can only delete empty buckets.
|
|
500
|
+
|
|
501
|
+
Users can name buckets objects. The name should be unique between users buckets and can be used
|
|
502
|
+
instead of bucket id.
|
|
503
|
+
|
|
504
|
+
Bucket contents management commands:
|
|
505
|
+
- use `neuro blob ls blob:<bucket_id>/<path_in_bucket>` to list bucket contents. Option `-r`
|
|
506
|
+
disables file system emulation and displays all keys that start with <path_in_bucket>.
|
|
507
|
+
- use `neuro blob glob blob:<bucket_id>/<glob_pattern>` to glob search objects in buckets.
|
|
508
|
+
For example, `blob:my_bucket/**/*.txt` pattern will match all `.txt` files in `my_bucket`
|
|
509
|
+
bucket.
|
|
510
|
+
- use `neuro blob cp <src_uri> <dst_uri>` to copy data from/to bucket.
|
|
511
|
+
- use `neuro blob rm blob:<bucket_id>/<path_in_bucket>` to delete elements from bucket. ([#2258](https://github.com/neuro-inc/platform-client-python/issues/2258))
|
|
512
|
+
- Implement URI autocompletion for bash shell. ([#2259](https://github.com/neuro-inc/platform-client-python/issues/2259))
|
|
513
|
+
- Added way to create persistent credentials to buckets to use in outside of the platform:
|
|
514
|
+
|
|
515
|
+
- use `neuro blob mkcredentials <bucket1_id> <bucket2_id> ...` to create new credentials for specified buckets
|
|
516
|
+
- use `neuro blob lscredentials` to list your buckets credentials
|
|
517
|
+
- use `neuro blob statcredentials <credentials_id>` to retrieve info about single bucket credentials
|
|
518
|
+
- use `neuro blob rmbucket <credentials_id>` to delete bucket credentials.
|
|
519
|
+
|
|
520
|
+
Users can name buckets credentials. The name should be unique between users buckets credentials and can be used
|
|
521
|
+
instead of bucket credentials id. ([#2264](https://github.com/neuro-inc/platform-client-python/issues/2264))
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
Deprecations and Removals
|
|
525
|
+
-------------------------
|
|
526
|
+
|
|
527
|
+
- Deprecate `neuro run IMAGE CMD`, use `neuro run IMAGE -- CMD` instead. The same for `neuro exec` command. ([#2260](https://github.com/neuro-inc/platform-client-python/issues/2260))
|
|
528
|
+
- Remove deprecated options older than 6 months. ([#2262](https://github.com/neuro-inc/platform-client-python/issues/2262))
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
Neuro SDK/CLI 21.8.12 (2021-08-12)
|
|
532
|
+
==================================
|
|
533
|
+
|
|
534
|
+
Features
|
|
535
|
+
--------
|
|
536
|
+
|
|
537
|
+
- Added possibility to disable PyPi version check via environment variable 'NEURO_CLI_DISABLE_PYPI_VERSION_CHECK'. ([#2237](https://github.com/neuro-inc/platform-client-python/issues/2237))
|
|
538
|
+
- Add parameter *separator* in jobs.monitor(). ([#2239](https://github.com/neuro-inc/platform-client-python/issues/2239))
|
|
539
|
+
|
|
540
|
+
- Support URI autocompletion in storage commands for ZSH shell. ([#2248](https://github.com/neuro-inc/platform-client-python/issues/2248))
|
|
541
|
+
|
|
542
|
+
Deprecations and Removals
|
|
543
|
+
-------------------------
|
|
544
|
+
|
|
545
|
+
- `neuro save` command is deprecated and will be removed in future CLI release. ([#2249](https://github.com/neuro-inc/platform-client-python/issues/2249))
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
Neuro SDK/CLI 21.7.29 (2021-07-29)
|
|
549
|
+
==================================
|
|
550
|
+
|
|
551
|
+
Bugfixes
|
|
552
|
+
--------
|
|
553
|
+
|
|
554
|
+
- Fix config permission bits for --pass-config mode ([#2233](https://github.com/neuro-inc/platform-client-python/issues/2233))
|
|
555
|
+
|
|
556
|
+
Deprecations and Removals
|
|
557
|
+
-------------------------
|
|
558
|
+
|
|
559
|
+
- Drop legacy code that puts configuration files for pass-config on storage. ([#2233](https://github.com/neuro-inc/platform-client-python/issues/2233))
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
Neuro SDK/CLI 21.7.28 (2021-07-28)
|
|
563
|
+
==================================
|
|
564
|
+
|
|
565
|
+
Features
|
|
566
|
+
--------
|
|
567
|
+
|
|
568
|
+
- Support VCD cluster config in generate-cluster-config command. ([#2193](https://github.com/neuro-inc/platform-client-python/issues/2193))
|
|
569
|
+
- Enabled writing of full logs for each CLI run to a file. Logs are generated under `~/.neuro/logs` folder and
|
|
570
|
+
automatically removed after 3 days. ([#2211](https://github.com/neuro-inc/platform-client-python/issues/2211))
|
|
571
|
+
- Added `--cluster` option to `neuro run` command and `neuro disk`, `neuro secret` command groups. This option
|
|
572
|
+
allows to perform actions for a specific cluster instead of current one. ([#2225](https://github.com/neuro-inc/platform-client-python/issues/2225))
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
Bugfixes
|
|
576
|
+
--------
|
|
577
|
+
|
|
578
|
+
- `_Admin.set_user_quota` method is fixed for cases, when the amount of credits equals to zero. ([#2229](https://github.com/neuro-inc/platform-client-python/issues/2229))
|
|
579
|
+
- Recover cursor after an abnormal exit (Ctrl-C). ([#2231](https://github.com/neuro-inc/platform-client-python/issues/2231))
|
|
580
|
+
|
|
581
|
+
|
|
582
|
+
Neuro SDK/CLI 21.7.9 (2021-07-09)
|
|
583
|
+
=================================
|
|
584
|
+
|
|
585
|
+
Features
|
|
586
|
+
--------
|
|
587
|
+
|
|
588
|
+
- All asynchronous iterators returned by API support now an asynchronous manager protocol. It is strongly preferable to use "asyn with" before iterating them. For example::
|
|
589
|
+
|
|
590
|
+
async with client.jobs.list() as jobs:
|
|
591
|
+
async for job in jobs:
|
|
592
|
+
print(job.id) ([#2192](https://github.com/neuro-inc/platform-client-python/issues/2192))
|
|
593
|
+
- Added `neuro storage df` command that allows to retrieve cluster's storage disk usage. ([#2201](https://github.com/neuro-inc/platform-client-python/issues/2201))
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
Bugfixes
|
|
597
|
+
--------
|
|
598
|
+
|
|
599
|
+
- Removed additional '\n' from output of commands that print tokens. ([#2200](https://github.com/neuro-inc/platform-client-python/issues/2200))
|
|
600
|
+
|
|
601
|
+
|
|
602
|
+
Neuro SDK/CLI 21.6.23 (2021-06-23)
|
|
603
|
+
==================================
|
|
604
|
+
|
|
605
|
+
Features
|
|
606
|
+
--------
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
- Introduce NDJSONError exception, raise it instead of bare Exception in case of error in ndjson stream. ([#2187](https://github.com/neuro-inc/platform-client-python/issues/2187))
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
Bugfixes
|
|
613
|
+
--------
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
- Preserve volumes order in `client.parse.volumes(...)` call. ([#2183](https://github.com/neuro-inc/platform-client-python/issues/2183))
|
|
617
|
+
|
|
618
|
+
|
|
619
|
+
Neuro SDK/CLI 21.6.17 (2021-06-17)
|
|
620
|
+
==================================
|
|
621
|
+
|
|
622
|
+
Bugfixes
|
|
623
|
+
--------
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
- Expose `neuro_sdk.EnvParseResult` and `neuro_sdk.VolumeParseResult` names. ([#2177](https://github.com/neuro-inc/platform-client-python/issues/2177))
|
|
627
|
+
|
|
628
|
+
|
|
629
|
+
Neuro SDK/CLI 21.6.16 (2021-06-16)
|
|
630
|
+
==================================
|
|
631
|
+
|
|
632
|
+
Features
|
|
633
|
+
--------
|
|
634
|
+
|
|
635
|
+
|
|
636
|
+
- Dropped `role` argument from `neuro service-account create`: platform automatically generates
|
|
637
|
+
new role for service account without any permissions. ([#2167](https://github.com/neuro-inc/platform-client-python/issues/2167))
|
|
638
|
+
|
|
639
|
+
|
|
640
|
+
Neuro SDK/CLI 21.6.9 (2021-06-09)
|
|
641
|
+
=================================
|
|
642
|
+
|
|
643
|
+
Bugfixes
|
|
644
|
+
--------
|
|
645
|
+
|
|
646
|
+
- Add missing requirement to `packaging`. ([#2160](https://github.com/neuro-inc/platform-client-python/issues/2160))
|
|
647
|
+
|
|
648
|
+
|
|
649
|
+
Neuro SDK/CLI 21.6.3 (2021-06-03)
|
|
650
|
+
==================================
|
|
651
|
+
|
|
652
|
+
Features
|
|
653
|
+
--------
|
|
654
|
+
|
|
655
|
+
|
|
656
|
+
- Add support of `--owner` and `--name` options to `neuro image ls`. ([#2104](https://github.com/neuro-inc/platform-client-python/issues/2104))
|
|
657
|
+
|
|
658
|
+
- Add option `--cluster` in commands `neuro ps`, `neuro top` and `neuro images`. ([#2125](https://github.com/neuro-inc/platform-client-python/issues/2125))
|
|
659
|
+
|
|
660
|
+
- Removed support of old runtime quota:
|
|
661
|
+
- `neuro config show-quota` shows credits and max parallel jobs
|
|
662
|
+
- `neuro admin add-user-quota/set-user-quota` only support credits and max parallel jobs
|
|
663
|
+
- Added new command `neuro admin get-user-quota` to print user quota
|
|
664
|
+
- `neuro admin get-cluster-user` now prints table with quota info for each user ([#2140](https://github.com/neuro-inc/platform-client-python/issues/2140))
|
|
665
|
+
|
|
666
|
+
- Added `neuro service-account` command group. The service account allow to create auth token that can be used
|
|
667
|
+
for integration with third-party services.
|
|
668
|
+
|
|
669
|
+
- `neuro service-account create --name optional-name ROLE` creates new service account
|
|
670
|
+
- `neuro service-account ls` lists service accounts
|
|
671
|
+
- `neuro service-account get ID_OR_NAME` retrives single service account
|
|
672
|
+
- `nuero service-account rm ID_OR_NAME` removes service account and revokes token. ([#2147](https://github.com/neuro-inc/platform-client-python/issues/2147))
|
|
673
|
+
|
|
674
|
+
|
|
675
|
+
Neuro SDK/CLI 21.5.14 (2021-05-14)
|
|
676
|
+
==================================
|
|
677
|
+
|
|
678
|
+
Features
|
|
679
|
+
--------
|
|
680
|
+
|
|
681
|
+
|
|
682
|
+
- Ignore files in parent directories are now used when upload a directory to storage or blob storage. ([#1901](https://github.com/neuro-inc/platform-client-python/issues/1901))
|
|
683
|
+
|
|
684
|
+
- Add spinners to the some commands that take time to execute. ([#2105](https://github.com/neuro-inc/platform-client-python/issues/2105))
|
|
685
|
+
|
|
686
|
+
- All job related commands support now jobs on other clusters. Commands `neuro exec`, `neuro port-forward`, `neuro logs` and `neuro job save` only support jobs on other clusters if they are specified by URI (jobs on the current cluster can be also specified by bare ID or name). ([#2116](https://github.com/neuro-inc/platform-client-python/issues/2116))
|
|
687
|
+
|
|
688
|
+
|
|
689
|
+
Bugfixes
|
|
690
|
+
--------
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
- Provide forward compatibility with click 8.0 ([#2126](https://github.com/neuro-inc/platform-client-python/issues/2126))
|
|
694
|
+
|
|
695
|
+
- Fix hints for 'neuro run' command. ([#2127](https://github.com/neuro-inc/platform-client-python/issues/2127))
|
|
696
|
+
|
|
697
|
+
- Fix compatibility with click==8.0. ([#2126](https://github.com/neuro-inc/platform-client-python/issues/2126))
|
|
698
|
+
|
|
699
|
+
|
|
700
|
+
Neuro SDK/CLI 21.4.17 (2021-04-17)
|
|
701
|
+
==================================
|
|
702
|
+
|
|
703
|
+
Features
|
|
704
|
+
--------
|
|
705
|
+
|
|
706
|
+
|
|
707
|
+
- Commands `neuro ps` and `neuro top` support now outputting several fields in one table cell. By default fields ID and NAME and fields STATUS and WHEN are merged. This saves horisontal space and improves output of long fields (e.g. COMMAND, DESCRIPTION or TAGS). ([#2062](https://github.com/neuro-inc/platform-client-python/issues/2062))
|
|
708
|
+
|
|
709
|
+
- Added automatic re-attach if container is still alive after `neuro run`/`neuro attach` disconnects. ([#2085](https://github.com/neuro-inc/platform-client-python/issues/2085))
|
|
710
|
+
|
|
711
|
+
- Added warning about actual privilege level if `neuro grant` grants privilege less then user already has. ([#2092](https://github.com/neuro-inc/platform-client-python/issues/2092))
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
Bugfixes
|
|
715
|
+
--------
|
|
716
|
+
|
|
717
|
+
|
|
718
|
+
- Fixed unexpected behavior in `neuro admin update-resource-preset` when working with existing preset:
|
|
719
|
+
Now there are two commands:
|
|
720
|
+
- `neuro admin add-resource-preset` to add new preset, options use default values if not specified
|
|
721
|
+
- `neuro admin update-resource-preset` to update existing preset, options use previous values if not specified
|
|
722
|
+
Also dropped `cluster_name` argument to fix bug when presets were overwritten by active cluster presets. ([#2091](https://github.com/neuro-inc/platform-client-python/issues/2091))
|
|
723
|
+
|
|
724
|
+
|
|
725
|
+
Neuro SDK/CLI 21.4.13 (2021-04-13)
|
|
726
|
+
==================================
|
|
727
|
+
|
|
728
|
+
Features
|
|
729
|
+
--------
|
|
730
|
+
|
|
731
|
+
|
|
732
|
+
- Added option `--share` in `neuro job run`. It allows to share a created job with specified user or role. ([#2079](https://github.com/neuro-inc/platform-client-python/issues/2079))
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
Bugfixes
|
|
736
|
+
--------
|
|
737
|
+
|
|
738
|
+
|
|
739
|
+
- Fixed handling jobs with `--pass-config` in `neuro job generate-run-command`. ([#2074](https://github.com/neuro-inc/platform-client-python/issues/2074))
|
|
740
|
+
|
|
741
|
+
|
|
742
|
+
Neuro SDK/CLI 21.4.2 (2021-04-02)
|
|
743
|
+
=================================
|
|
744
|
+
|
|
745
|
+
Bugfixes
|
|
746
|
+
--------
|
|
747
|
+
|
|
748
|
+
|
|
749
|
+
- Bump pinned rich version to >=10.0.1 ([#2072](https://github.com/neuro-inc/platform-client-python/issues/2072))
|
|
750
|
+
|
|
751
|
+
|
|
752
|
+
Neuro SDK/CLI 21.4.1 (2021-04-01)
|
|
753
|
+
=================================
|
|
754
|
+
|
|
755
|
+
Features
|
|
756
|
+
--------
|
|
757
|
+
|
|
758
|
+
|
|
759
|
+
- Allow bumping jobs life span using `neuro jobs bump-life-span <timedelta>`. ([#2020](https://github.com/neuro-inc/platform-client-python/issues/2020))
|
|
760
|
+
|
|
761
|
+
- Make a job status reason always printed by neuro status if it is available. ([#2047](https://github.com/neuro-inc/platform-client-python/issues/2047))
|
|
762
|
+
|
|
763
|
+
- Add support of automatic re-login after config errors. This allows to upgrade
|
|
764
|
+
to a new CLI version without manual re-login. ([#2048](https://github.com/neuro-inc/platform-client-python/issues/2048))
|
|
765
|
+
|
|
766
|
+
- Made more precise datetime formatting for neuro status: now hours and minutes are always printed. Seconds are printed
|
|
767
|
+
for event that happened in the last hour. ([#2053](https://github.com/neuro-inc/platform-client-python/issues/2053))
|
|
768
|
+
|
|
769
|
+
- Storage operations support now URIs with cluster names different from the current cluster name. You can now list or copy to/from other cluster's storage without switching the current cluster name. ([#2054](https://github.com/neuro-inc/platform-client-python/issues/2054))
|
|
770
|
+
|
|
771
|
+
- Added printing of ids of removed disk in `neuro disk rm`. ([#2056](https://github.com/neuro-inc/platform-client-python/issues/2056))
|
|
772
|
+
|
|
773
|
+
- Allow to specify date and time in --since/--until relatively to current moment. For example,
|
|
774
|
+
`neuro ps --since 1d` will show jobs that were created during last day. ([#2059](https://github.com/neuro-inc/platform-client-python/issues/2059))
|
|
775
|
+
|
|
776
|
+
- Image operations support now URIs with cluster names different from the current cluster name. ([#2066](https://github.com/neuro-inc/platform-client-python/issues/2066))
|
|
777
|
+
|
|
778
|
+
- Added hint about headless login when `neuro login` executes in non-GUI environment. ([#2068](https://github.com/neuro-inc/platform-client-python/issues/2068))
|
|
779
|
+
|
|
780
|
+
|
|
781
|
+
Bugfixes
|
|
782
|
+
--------
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
- Do not add implicit '\n's to `neuro job generate_run_command <job-id>` command output. ([#2034](https://github.com/neuro-inc/platform-client-python/issues/2034))
|
|
786
|
+
|
|
787
|
+
- Fix bad formatting in `neuro run` command. ([#2055](https://github.com/neuro-inc/platform-client-python/issues/2055))
|
|
788
|
+
|
|
789
|
+
- Do not kill a non-tty job when running in non-tty mode automatically.
|
|
790
|
+
This allows to exit from `neuro run ... | tee` using `^C` without killing a job. ([#2063](https://github.com/neuro-inc/platform-client-python/issues/2063))
|
|
791
|
+
|
|
792
|
+
|
|
793
|
+
Neuro SDK/CLI 21.3.3 (2021-03-03)
|
|
794
|
+
=================================
|
|
795
|
+
|
|
796
|
+
Features
|
|
797
|
+
--------
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
- Added option `--format` in `neuro top` for specifying the output columns. It is similar to option `--format` of `neuro ps`, but support several additional columns. ([#2000](https://github.com/neuro-inc/platform-client-python/issues/2000))
|
|
801
|
+
|
|
802
|
+
- Added filtering options in `neuro top`: `--owner`, `--name`, `--tag`, `--description`, `--since` and `--until`. They are similar to corresponding options in `neuro ps`. By default shown only jobs of the current user, specify `--owner=ALL` to show jobs of all users. ([#2001](https://github.com/neuro-inc/platform-client-python/issues/2001))
|
|
803
|
+
|
|
804
|
+
- Add option `--sort` in `neuro top`. ([#2002](https://github.com/neuro-inc/platform-client-python/issues/2002))
|
|
805
|
+
|
|
806
|
+
- Drop cluster_name and description from default output of `neuro ps` command. ([#2009](https://github.com/neuro-inc/platform-client-python/issues/2009))
|
|
807
|
+
|
|
808
|
+
- Allow deletion images without tag. Support multiple arguments for `neuro image rm` command. ([#2010](https://github.com/neuro-inc/platform-client-python/issues/2010))
|
|
809
|
+
|
|
810
|
+
|
|
811
|
+
Bugfixes
|
|
812
|
+
--------
|
|
813
|
+
|
|
814
|
+
|
|
815
|
+
- Support job statuses "suspended" and "unknown" in `neuro ps` and `neuro top`. ([#2011](https://github.com/neuro-inc/platform-client-python/issues/2011))
|
|
816
|
+
|
|
817
|
+
|
|
818
|
+
Neuro SDK/CLI 21.2.19 (2021-02-19)
|
|
819
|
+
==================================
|
|
820
|
+
|
|
821
|
+
Bugfixes
|
|
822
|
+
--------
|
|
823
|
+
|
|
824
|
+
|
|
825
|
+
- Fixed parsing of huge job payloads. ([#2004](https://github.com/neuro-inc/platform-client-python/issues/2004))
|
|
826
|
+
|
|
827
|
+
|
|
828
|
+
Neuro SDK/CLI 21.2.16 (2021-02-16)
|
|
829
|
+
==================================
|
|
830
|
+
|
|
831
|
+
Features
|
|
832
|
+
--------
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
- Added support of named disks:
|
|
836
|
+
- create new disk by `neuro disk create --name <disk-name> STORAGE` command
|
|
837
|
+
- name can be used to get/delete disk: `neuro disk get <disk-name>` or `neuro disk delete <disk-name>`
|
|
838
|
+
- name can be used to mount disk: `neuro run -v disk:<disk-name>:/mnt/disk ...` ([#1983](https://github.com/neuro-inc/platform-client-python/issues/1983))
|
|
839
|
+
|
|
840
|
+
- Added printing of job id when `neuro flow` or `neuro attach` exits. ([#1993](https://github.com/neuro-inc/platform-client-python/issues/1993))
|
|
841
|
+
|
|
842
|
+
- Added "Life span ends" field to `neuro status <job-id>`. ([#1994](https://github.com/neuro-inc/platform-client-python/issues/1994))
|
|
843
|
+
|
|
844
|
+
- Now all datetime fields are printed in "humanized form". Use `neuro --iso-datetime-format <command> ...` to
|
|
845
|
+
force ISO 8601 format. ([#1995](https://github.com/neuro-inc/platform-client-python/issues/1995))
|
|
846
|
+
|
|
847
|
+
- Added recovering of attachment to job after internet connection issue in `neuro attach` and `neuro run`. ([#1996](https://github.com/neuro-inc/platform-client-python/issues/1996))
|
|
848
|
+
|
|
849
|
+
|
|
850
|
+
Neuro SDK/CLI 21.2.11 (2021-02-11)
|
|
851
|
+
==================================
|
|
852
|
+
|
|
853
|
+
Features
|
|
854
|
+
--------
|
|
855
|
+
|
|
856
|
+
|
|
857
|
+
- `neuro top` supports now multiple jobs. If multiple jobs is specified at command line, it outputs a table for that jobs. If no jobs are specified, it outputs all active user's job. ([#418](https://github.com/neuro-inc/platform-client-python/issues/418))
|
|
858
|
+
|
|
859
|
+
- Added private option `--x-trace-all` which forces distribute tracing. ([#1973](https://github.com/neuro-inc/platform-client-python/issues/1973))
|
|
860
|
+
|
|
861
|
+
- Add `neuro job generate-run-command <job-id-or-name>` to simplify reruning of jobs. ([#1977](https://github.com/neuro-inc/platform-client-python/issues/1977))
|
|
862
|
+
|
|
863
|
+
- Added new options to `neuro ps`:
|
|
864
|
+
`--distinct`: Show only first job if names are same.
|
|
865
|
+
`--recent-first/--recent-last`: Show newer jobs first or last ([#1981](https://github.com/neuro-inc/platform-client-python/issues/1981))
|
|
866
|
+
|
|
867
|
+
|
|
868
|
+
Deprecations and Removals
|
|
869
|
+
-------------------------
|
|
870
|
+
|
|
871
|
+
|
|
872
|
+
- Soft-deprecate `neuro job tags` command. ([#1840](https://github.com/neuro-inc/platform-client-python/issues/1840))
|
|
873
|
+
|
|
874
|
+
|
|
875
|
+
Neuro SDK/CLI 21.1.13 (2021-01-13)
|
|
876
|
+
==================================
|
|
877
|
+
|
|
878
|
+
Features
|
|
879
|
+
--------
|
|
880
|
+
|
|
881
|
+
|
|
882
|
+
- Removed support of deprecated `--status=all` in `neuro ps`. Use `--all` instead. ([#1883](https://github.com/neuro-inc/platform-client-python/issues/1883))
|
|
883
|
+
|
|
884
|
+
- Refresh config after resource presets are updated. ([#1899](https://github.com/neuro-inc/platform-client-python/issues/1899))
|
|
885
|
+
|
|
886
|
+
|
|
887
|
+
Bugfixes
|
|
888
|
+
--------
|
|
889
|
+
|
|
890
|
+
|
|
891
|
+
- Don't open browser on `login-with-token`. ([#1748](https://github.com/neuro-inc/platform-client-python/issues/1748))
|
|
892
|
+
|
|
893
|
+
- Suppress non-critical neuro configuration database errors. ([#1816](https://github.com/neuro-inc/platform-client-python/issues/1816))
|
|
894
|
+
|
|
895
|
+
- Fixed unintentional interpretation of sequences like `:+1` and `[b]` in descriptions, commands, paths, URIs, etc when output on the console. ([#1917](https://github.com/neuro-inc/platform-client-python/issues/1917))
|
|
896
|
+
|
|
897
|
+
|
|
898
|
+
Neuro SDK/CLI 20.12.16 (2020-12-16)
|
|
899
|
+
===================================
|
|
900
|
+
|
|
901
|
+
Bugfixes
|
|
902
|
+
--------
|
|
903
|
+
|
|
904
|
+
|
|
905
|
+
- Fix unstable imports of `rich` tool. ([#1911](https://github.com/neuro-inc/platform-client-python/issues/1911))
|
|
906
|
+
|
|
907
|
+
|
|
908
|
+
Neuro SDK/CLI 20.12.14 (2020-12-14)
|
|
909
|
+
===================================
|
|
910
|
+
|
|
911
|
+
Features
|
|
912
|
+
--------
|
|
913
|
+
|
|
914
|
+
|
|
915
|
+
- Extract `neuromation.api` into `neuro-sdk` package, rename `neuromation` to `neuro-cli`. ([#1892](https://github.com/neuro-inc/platform-client-python/issues/1892))
|
|
916
|
+
|
|
917
|
+
|
|
918
|
+
Bugfixes
|
|
919
|
+
--------
|
|
920
|
+
|
|
921
|
+
|
|
922
|
+
- Generating the URI string for `RemoteImage` now correctly escapes special characters like "#", "%", "?" in image name and tag. ([#1895](https://github.com/neuro-inc/platform-client-python/issues/1895))
|
|
923
|
+
|
|
924
|
+
- Fixed conflict between logging and showing progress in `neuro cp -vv`. Use the `rich` library for outputting colored logs. ([#1897](https://github.com/neuro-inc/platform-client-python/issues/1897))
|
|
925
|
+
|
|
926
|
+
|
|
927
|
+
Neuromation 20.12.7 (2020-12-07)
|
|
928
|
+
================================
|
|
929
|
+
|
|
930
|
+
Features
|
|
931
|
+
--------
|
|
932
|
+
|
|
933
|
+
|
|
934
|
+
- Added --privileged flag to `neuro run`. Added corresponding argument `privileged` to `jobs.start`. ([#1879](https://github.com/neuro-inc/platform-client-python/issues/1879))
|
|
935
|
+
|
|
936
|
+
- Added Disk life-span information to the `neuro disk ls --long-format` and `neuro disk get` commands. ([#1880](https://github.com/neuro-inc/platform-client-python/issues/1880))
|
|
937
|
+
|
|
938
|
+
|
|
939
|
+
Bugfixes
|
|
940
|
+
--------
|
|
941
|
+
|
|
942
|
+
|
|
943
|
+
- Added support of filtering by statuses "cancelled" and "suspended" in `neuro ps`. ([#1881](https://github.com/neuro-inc/platform-client-python/issues/1881))
|
|
944
|
+
|
|
945
|
+
|
|
946
|
+
Neuromation 20.12.2 (2020-12-02)
|
|
947
|
+
================================
|
|
948
|
+
|
|
949
|
+
Features
|
|
950
|
+
--------
|
|
951
|
+
|
|
952
|
+
|
|
953
|
+
- Add `-l` option to `neuro image tags` for long output format ([#1855](https://github.com/neuro-inc/platform-client-python/issues/1855))
|
|
954
|
+
|
|
955
|
+
- Add `-f` flag to `neuro image rm` to force delete images that have multiple tag references ([#1828](https://github.com/neuro-inc/platform-client-python/issues/1828))
|
|
956
|
+
|
|
957
|
+
- Enable display of non-zero restarts count for all jobs (previously only jobs with proper --restart-policy had this field). ([#1859](https://github.com/neuro-inc/platform-client-python/issues/1859))
|
|
958
|
+
|
|
959
|
+
- Added cluster resource presets management commands.
|
|
960
|
+
Added `Preemptible Node` column in resource presets format in `neuro config show`. ([#1863](https://github.com/neuro-inc/platform-client-python/issues/1863))
|
|
961
|
+
|
|
962
|
+
- Pass preset instead of container resources to job api. ([#1864](https://github.com/neuro-inc/platform-client-python/issues/1864))
|
|
963
|
+
|
|
964
|
+
- `neuro blob cp` uses now partial read when retry to download a blob. ([#1865](https://github.com/neuro-inc/platform-client-python/issues/1865))
|
|
965
|
+
|
|
966
|
+
- Change jobs capacity API endpoint. ([#1872](https://github.com/neuro-inc/platform-client-python/issues/1872))
|
|
967
|
+
|
|
968
|
+
- Add disk column to `admin get-clusters` command. ([#1873](https://github.com/neuro-inc/platform-client-python/issues/1873))
|
|
969
|
+
|
|
970
|
+
- Added options `--update` and `--continue` for command `neuro blob cp`. Added optional boolean parameters `update` and `continue_` to the corresponding API. ([#1875](https://github.com/neuro-inc/platform-client-python/issues/1875))
|
|
971
|
+
|
|
972
|
+
|
|
973
|
+
Bugfixes
|
|
974
|
+
--------
|
|
975
|
+
|
|
976
|
+
|
|
977
|
+
- Fixed parsing file modification time in Blob Storage. ([#1874](https://github.com/neuro-inc/platform-client-python/issues/1874))
|
|
978
|
+
|
|
979
|
+
|
|
980
|
+
Neuromation 20.11.18 (2020-11-18)
|
|
981
|
+
=================================
|
|
982
|
+
|
|
983
|
+
Features
|
|
984
|
+
--------
|
|
985
|
+
|
|
986
|
+
|
|
987
|
+
- Moved pass_config option to API. Now it uses config completely encoded into ENV variable. ([#1814](https://github.com/neuro-inc/platform-api-clients/issues/1814))
|
|
988
|
+
|
|
989
|
+
- Added support of max running jobs quota. The `neuro admin set-user-quota -j <count>` command configures
|
|
990
|
+
this quota for user. By default, a new job cannot be created after the quota is reached, but the `--wait-for-seat`
|
|
991
|
+
flag allows creating a job that will wait for another job to stop. ([#1827](https://github.com/neuro-inc/platform-api-clients/issues/1827))
|
|
992
|
+
|
|
993
|
+
- When the connection is lost during transferring files `neuro cp` retries now only sending and retrieving new data instead of starting file operation from the start. Added optional parameters *offset* and *size* in method `storage.open()` for partial reading. Added method `storage.write()` for overwriting the part of the file. ([#1831](https://github.com/neuro-inc/platform-api-clients/issues/1831))
|
|
994
|
+
|
|
995
|
+
- Added option `--continue` for command `neuro cp`.
|
|
996
|
+
It specified, copy only the part of the source file
|
|
997
|
+
past the end of the destination file and append it
|
|
998
|
+
to the destination file if the destination file is
|
|
999
|
+
newer and not longer than the source file.
|
|
1000
|
+
Otherwise copy the whole file.
|
|
1001
|
+
Added corresponding keyword-only boolean parameter `continue_` to the API. ([#1841](https://github.com/neuro-inc/platform-api-clients/issues/1841))
|
|
1002
|
+
|
|
1003
|
+
- Add support of `SUSPENDED` job status. ([#1844](https://github.com/neuro-inc/platform-api-clients/issues/1844))
|
|
1004
|
+
|
|
1005
|
+
- Added support of `neuro ps --owner ME`. This allows to filter current users jobs. ([#1845](https://github.com/neuro-inc/platform-api-clients/issues/1845))
|
|
1006
|
+
|
|
1007
|
+
- The active cluster name can now be specified in local configuration file. ([#1846](https://github.com/neuro-inc/platform-api-clients/issues/1846))
|
|
1008
|
+
|
|
1009
|
+
|
|
1010
|
+
Neuromation 20.11.10 (2020-11-10)
|
|
1011
|
+
=================================
|
|
1012
|
+
|
|
1013
|
+
Features
|
|
1014
|
+
--------
|
|
1015
|
+
|
|
1016
|
+
|
|
1017
|
+
- Add `neuro image rm` command for removing images from remote registries ([#1770](https://github.com/neuro-inc/platform-api-clients/issues/1770))
|
|
1018
|
+
|
|
1019
|
+
- Allowed to share disks. ([#1811](https://github.com/neuro-inc/platform-api-clients/issues/1811))
|
|
1020
|
+
|
|
1021
|
+
- Added support of multiple disk removal: `neuro disk rm disk-id-1 disk-id-2` works properly now. ([#1821](https://github.com/neuro-inc/platform-api-clients/issues/1821))
|
|
1022
|
+
|
|
1023
|
+
- Added displaying of restarts count for restartable jobs. Added `restarts` field to `JobStatusHistory`. ([#1822](https://github.com/neuro-inc/platform-api-clients/issues/1822))
|
|
1024
|
+
|
|
1025
|
+
|
|
1026
|
+
Neuromation 20.10.30 (2020-10-30)
|
|
1027
|
+
=================================
|
|
1028
|
+
|
|
1029
|
+
Features
|
|
1030
|
+
--------
|
|
1031
|
+
|
|
1032
|
+
|
|
1033
|
+
- Bump ``aiohttp`` to >= 3.7.2 in the library requirements, drop transient dependencies ``multidict`` and ``yarl``. Support Python 3.8 and Python 3.9 ([#1802](https://github.com/neuro-inc/platform-api-clients/issues/1802))
|
|
1034
|
+
|
|
1035
|
+
|
|
1036
|
+
Neuromation 20.10.22 (2020-10-22)
|
|
1037
|
+
=================================
|
|
1038
|
+
|
|
1039
|
+
Features
|
|
1040
|
+
--------
|
|
1041
|
+
|
|
1042
|
+
|
|
1043
|
+
- Allowed to share secrets. ([#1791](https://github.com/neuro-inc/platform-api-clients/issues/1791))
|
|
1044
|
+
|
|
1045
|
+
|
|
1046
|
+
Neuromation 20.10.7 (2020-10-07)
|
|
1047
|
+
================================
|
|
1048
|
+
|
|
1049
|
+
Features
|
|
1050
|
+
--------
|
|
1051
|
+
|
|
1052
|
+
|
|
1053
|
+
- Made `neuro completion patch` idempotent. ([#1760](https://github.com/neuromation/platform-api-clients/issues/1760))
|
|
1054
|
+
|
|
1055
|
+
|
|
1056
|
+
Bugfixes
|
|
1057
|
+
--------
|
|
1058
|
+
|
|
1059
|
+
|
|
1060
|
+
- Suppress connection errors when cluster is not available in `neuro config show`. ([#1763](https://github.com/neuromation/platform-api-clients/issues/1763))
|
|
1061
|
+
|
|
1062
|
+
|
|
1063
|
+
Neuromation 20.9.24 (2020-09-24)
|
|
1064
|
+
================================
|
|
1065
|
+
|
|
1066
|
+
Features
|
|
1067
|
+
--------
|
|
1068
|
+
|
|
1069
|
+
|
|
1070
|
+
- Fragment, query, user, password and port parts are not allowed now in URIs (these parts were silently ignored before).
|
|
1071
|
+
Fixed support of local file paths containing characters like "#", "%", ":", "?", "@" and "~". ([#1531](https://github.com/neuromation/platform-api-clients/issues/1531))
|
|
1072
|
+
|
|
1073
|
+
- Implemented disks management commands. ([#1716](https://github.com/neuromation/platform-api-clients/issues/1716))
|
|
1074
|
+
|
|
1075
|
+
- `neuro run` allows now to specify disk volumes using `-v disk:<DISK>:<PATH>:<RW_FLAG>`. ([#1721](https://github.com/neuromation/platform-api-clients/issues/1721))
|
|
1076
|
+
|
|
1077
|
+
- Added support of `created_at` and `last_usage` field of disks. Added `--long-format` option to `neuro disk ls`. ([#1729](https://github.com/neuromation/platform-api-clients/issues/1729))
|
|
1078
|
+
|
|
1079
|
+
- Memory amount parsing now supports of both `b` and `B` suffixes for specifying decimal
|
|
1080
|
+
quantities. Improved `neuro disk create` docs. ([#1731](https://github.com/neuromation/platform-api-clients/issues/1731))
|
|
1081
|
+
|
|
1082
|
+
- Added a `--life-span` argument to `neuro disk create`. Added a `life_span` argument in `client.disks.create()`. ([#1734](https://github.com/neuromation/platform-api-clients/issues/1734))
|
|
1083
|
+
|
|
1084
|
+
- Added output to `neuro disk rm` and `neuro secret rm` when `-v/--verbose` global flag is set. ([#1738](https://github.com/neuromation/platform-api-clients/issues/1738))
|
|
1085
|
+
|
|
1086
|
+
- Quite mode command `neuro -q disk ls` now prints simple list of disk ids. ([#1740](https://github.com/neuromation/platform-api-clients/issues/1740))
|
|
1087
|
+
|
|
1088
|
+
- Command `neuro image tags` outputs now a list of tags instead of a list of images. ([#1741](https://github.com/neuromation/platform-api-clients/issues/1741))
|
|
1089
|
+
|
|
1090
|
+
- Added support of `--full-uri` to `neuro disk get`. ([#1747](https://github.com/neuromation/platform-api-clients/issues/1747))
|
|
1091
|
+
|
|
1092
|
+
- Show a deprecation warning for `--life-span=0` in `neuro run` command. ([#1749](https://github.com/neuromation/platform-api-clients/issues/1749))
|
|
1093
|
+
|
|
1094
|
+
- Change the color scheme for job statuses. The yellow color is for the cancellation, cyan is for pending jobs. ([#1752](https://github.com/neuromation/platform-api-clients/issues/1752))
|
|
1095
|
+
|
|
1096
|
+
|
|
1097
|
+
Neuromation 20.9.3 (2020-09-03)
|
|
1098
|
+
===============================
|
|
1099
|
+
|
|
1100
|
+
Bugfixes
|
|
1101
|
+
--------
|
|
1102
|
+
|
|
1103
|
+
|
|
1104
|
+
- Commands `neuro image ls` and `neuro image tags` and corresponding API `images.ls()` and `images.tags()` can now return more than 100 items. ([#1606](https://github.com/neuromation/platform-api-clients/issues/1606))
|
|
1105
|
+
|
|
1106
|
+
- Make `neuromation.api.SecretFile` class public ([#1714](https://github.com/neuromation/platform-api-clients/issues/1714))
|
|
1107
|
+
|
|
1108
|
+
|
|
1109
|
+
Neuromation 20.9.2 (2020-09-02)
|
|
1110
|
+
===============================
|
|
1111
|
+
|
|
1112
|
+
Features
|
|
1113
|
+
--------
|
|
1114
|
+
|
|
1115
|
+
|
|
1116
|
+
- Added support of `CANCELED` state. ([#1696](https://github.com/neuromation/platform-api-clients/issues/1696))
|
|
1117
|
+
|
|
1118
|
+
- Added support of error messages in streamed delete response. ([#1697](https://github.com/neuromation/platform-api-clients/issues/1697))
|
|
1119
|
+
|
|
1120
|
+
- Colorize `neuro ps` output. ([#1698](https://github.com/neuromation/platform-api-clients/issues/1698))
|
|
1121
|
+
|
|
1122
|
+
- Added way to destroy browser session by during `neuro logout`. ([#1699](https://github.com/neuromation/platform-api-clients/issues/1699))
|
|
1123
|
+
|
|
1124
|
+
- Remove `--volume=ALL` option from CLI and move volume and env variable parsing from CLI module to the `Parser` class in API ([#1707](https://github.com/neuromation/platform-api-clients/issues/1707))
|
|
1125
|
+
|
|
1126
|
+
- Command `neuro acl list` accepts now a URI prefix for filtering. API functions `users.get_acl()` and `users.get_shares()` accept now the *uri* argument. ([#1708](https://github.com/neuromation/platform-api-clients/issues/1708))
|
|
1127
|
+
|
|
1128
|
+
- `neuro run` supports now multiple `--env-file` options. ([#1710](https://github.com/neuromation/platform-api-clients/issues/1710))
|
|
1129
|
+
|
|
1130
|
+
|
|
1131
|
+
Neuromation 20.8.19 (2020-08-19)
|
|
1132
|
+
================================
|
|
1133
|
+
|
|
1134
|
+
Features
|
|
1135
|
+
--------
|
|
1136
|
+
|
|
1137
|
+
|
|
1138
|
+
- Show add available jobs counts (cluster capacity) in `neuro config show` command. ([#1687](https://github.com/neuromation/platform-api-clients/issues/1687))
|
|
1139
|
+
|
|
1140
|
+
- Make JobStatus calculation forward-compatible; `JobStatus.UNKNOWN` is returned for
|
|
1141
|
+
unknown statuses but the code doesn't raise `ValueError` at least. ([#1688](https://github.com/neuromation/platform-api-clients/issues/1688))
|
|
1142
|
+
|
|
1143
|
+
|
|
1144
|
+
Neuromation 20.8.14 (2020-08-14)
|
|
1145
|
+
================================
|
|
1146
|
+
|
|
1147
|
+
- Pin `yarl` version dependency to 1.5.1+.
|
|
1148
|
+
|
|
1149
|
+
|
|
1150
|
+
Neuromation 20.8.13 (2020-08-13)
|
|
1151
|
+
================================
|
|
1152
|
+
|
|
1153
|
+
Features
|
|
1154
|
+
--------
|
|
1155
|
+
|
|
1156
|
+
|
|
1157
|
+
- Implement `FileStatus.uri` property. ([#1648](https://github.com/neuromation/platform-api-clients/issues/1648))
|
|
1158
|
+
|
|
1159
|
+
- Add support of plugin-defined config parameters ([#1657](https://github.com/neuromation/platform-api-clients/issues/1657))
|
|
1160
|
+
|
|
1161
|
+
- Added `find_project_root` function ([#1660](https://github.com/neuromation/platform-api-clients/issues/1660))
|
|
1162
|
+
|
|
1163
|
+
- Added `neuro rm --progress` and `progress` argument to `Storage.rm` for tracking delete progress ([#1664](https://github.com/neuromation/platform-api-clients/issues/1664))
|
|
1164
|
+
|
|
1165
|
+
- Added `internal_hostname_named` to `JobDescription` and to output of `neuro job status`. ([#1675](https://github.com/neuromation/platform-api-clients/issues/1675))
|
|
1166
|
+
|
|
1167
|
+
- Added logging of `X-Error` error description in `neuro port-forward`. ([#1676](https://github.com/neuromation/platform-api-clients/issues/1676))
|
|
1168
|
+
|
|
1169
|
+
- Added printing of documentation link to `nuero login` command ([#1680](https://github.com/neuromation/platform-api-clients/issues/1680))
|
|
1170
|
+
|
|
1171
|
+
- Added `neuro admin show-cluster-options` command for displaying possible cluster configuration options. ([#1681](https://github.com/neuromation/platform-api-clients/issues/1681))
|
|
1172
|
+
|
|
1173
|
+
|
|
1174
|
+
Neuromation 20.7.28 (2020-07-28)
|
|
1175
|
+
================================
|
|
1176
|
+
|
|
1177
|
+
Features
|
|
1178
|
+
--------
|
|
1179
|
+
|
|
1180
|
+
|
|
1181
|
+
- `neuro ps` supports now columns "created", "started" and "finished" (hidden by default). ([#1020](https://github.com/neuromation/platform-api-clients/issues/1020))
|
|
1182
|
+
|
|
1183
|
+
- `neuro status` shows now the job's http port. ([#1375](https://github.com/neuromation/platform-api-clients/issues/1375))
|
|
1184
|
+
|
|
1185
|
+
- Long list of tags for `neuro status` is now wrapped. ([#1408](https://github.com/neuromation/platform-api-clients/issues/1408))
|
|
1186
|
+
|
|
1187
|
+
- `neuro ps` supports now the "life_span" column (hidden by default). ([#1448](https://github.com/neuromation/platform-api-clients/issues/1448))
|
|
1188
|
+
|
|
1189
|
+
- Command aliases are now supported if not logged in. ([#1480](https://github.com/neuromation/platform-api-clients/issues/1480))
|
|
1190
|
+
|
|
1191
|
+
- Added support of the `--schedule-timeout` option in `neuro run`. ([#1499](https://github.com/neuromation/platform-api-clients/issues/1499))
|
|
1192
|
+
|
|
1193
|
+
- Added commands for adding and removing roles: `neuro acl add-role` and `neuro acl remove-role`. ([#1582](https://github.com/neuromation/platform-api-clients/issues/1582))
|
|
1194
|
+
|
|
1195
|
+
- Support expansion of the user home directory ("~") in the file path argument in `neuro secret add`. ([#1610](https://github.com/neuromation/platform-api-clients/issues/1610))
|
|
1196
|
+
|
|
1197
|
+
- Put `--help` option first in the help output for a command or command group ([#1627](https://github.com/neuromation/platform-api-clients/issues/1627))
|
|
1198
|
+
|
|
1199
|
+
- Officially support Python 3.8. ([#1638](https://github.com/neuromation/platform-api-clients/issues/1638))
|
|
1200
|
+
|
|
1201
|
+
- Create a topic about secrets management and usage. ([#1640](https://github.com/neuromation/platform-api-clients/issues/1640))
|
|
1202
|
+
|
|
1203
|
+
|
|
1204
|
+
Bugfixes
|
|
1205
|
+
--------
|
|
1206
|
+
|
|
1207
|
+
|
|
1208
|
+
- Fixed "division by zero" error when copy from `/dev/stdin` to storage. ([#1129](https://github.com/neuromation/platform-api-clients/issues/1129))
|
|
1209
|
+
|
|
1210
|
+
- Fixed support of local images whose name starts with Neuro registry prefix, e.g. `registry.neu.ro/alice/imagename`. ([#1159](https://github.com/neuromation/platform-api-clients/issues/1159))
|
|
1211
|
+
|
|
1212
|
+
- Fixed support of relative image URIs with numeric name, like `image:5000`. ([#1631](https://github.com/neuromation/platform-api-clients/issues/1631))
|
|
1213
|
+
|
|
1214
|
+
- When resolve job URI with other user's name and job name (like `job:/bob/test-name`), the owner name no longer ignored when the shared job is not found. ([#1633](https://github.com/neuromation/platform-api-clients/issues/1633))
|
|
1215
|
+
|
|
1216
|
+
|
|
1217
|
+
Deprecations and Removals
|
|
1218
|
+
-------------------------
|
|
1219
|
+
|
|
1220
|
+
|
|
1221
|
+
- Removed support of `--volume=HOME` in `neuro run`. ([#1202](https://github.com/neuromation/platform-api-clients/issues/1202))
|
|
1222
|
+
|
|
1223
|
+
|
|
1224
|
+
Neuromation 20.7.14 (2020-07-14)
|
|
1225
|
+
================================
|
|
1226
|
+
|
|
1227
|
+
Features
|
|
1228
|
+
--------
|
|
1229
|
+
|
|
1230
|
+
|
|
1231
|
+
- Implement secrets management commands. ([#1545](https://github.com/neuromation/platform-api-clients/issues/1545))
|
|
1232
|
+
|
|
1233
|
+
- `neuro run` allows now to specify secrets: either as a file `-v secret:<KEY>:<PATH>` or as an environment variable `-e <NAME>=secret:<KEY>`. ([#1558](https://github.com/neuromation/platform-api-clients/issues/1558))
|
|
1234
|
+
|
|
1235
|
+
- Support azure cluster config file generation. ([#1577](https://github.com/neuromation/platform-api-clients/issues/1577))
|
|
1236
|
+
|
|
1237
|
+
- Implement `--port-forward` option for `run` and `attach` commands. ([#1601](https://github.com/neuromation/platform-api-clients/issues/1601))
|
|
1238
|
+
|
|
1239
|
+
- Take Secrets Service URL from `/config`. ([#1607](https://github.com/neuromation/platform-api-clients/issues/1607))
|
|
1240
|
+
|
|
1241
|
+
|
|
1242
|
+
Deprecations and Removals
|
|
1243
|
+
-------------------------
|
|
1244
|
+
|
|
1245
|
+
|
|
1246
|
+
- Deprecate and hide `submit` command. ([#1602](https://github.com/neuromation/platform-api-clients/issues/1602))
|
|
1247
|
+
|
|
1248
|
+
|
|
1249
|
+
Neuromation 20.7.9 (2020-07-09)
|
|
1250
|
+
===============================
|
|
1251
|
+
|
|
1252
|
+
Bugfixes
|
|
1253
|
+
--------
|
|
1254
|
+
|
|
1255
|
+
|
|
1256
|
+
- Always set "LESS=-R" env variable to fix outputs with scrolling, e.g. "neuro help" ([#1595](https://github.com/neuromation/platform-api-clients/issues/1595))
|
|
1257
|
+
|
|
1258
|
+
- Fix a warning raised by `neuro job port-forward` command on Python 3.6 ([#1592](https://github.com/neuromation/platform-api-clients/issues/1592))
|
|
1259
|
+
|
|
1260
|
+
|
|
1261
|
+
Neuromation 20.7.3 (2020-07-03)
|
|
1262
|
+
===============================
|
|
1263
|
+
|
|
1264
|
+
Bugfixes
|
|
1265
|
+
--------
|
|
1266
|
+
|
|
1267
|
+
|
|
1268
|
+
- Increase timeout for waiting for jobs exit after finishing attached session from 15
|
|
1269
|
+
seconds to 15 minutes. ([#1584](https://github.com/neuromation/platform-api-clients/issues/1584))
|
|
1270
|
+
|
|
1271
|
+
|
|
1272
|
+
Neuromation 20.6.23 (2020-06-23)
|
|
1273
|
+
================================
|
|
1274
|
+
|
|
1275
|
+
Features
|
|
1276
|
+
--------
|
|
1277
|
+
|
|
1278
|
+
|
|
1279
|
+
- A `.neuroignore` file specifies files that `neuro cp` should ignore when upload directories to the storage or object storage. Syntax and semantic are similar to `.gitignore` files. ([#1446](https://github.com/neuromation/platform-api-clients/issues/1446))
|
|
1280
|
+
|
|
1281
|
+
- API: `Client.jobs.run()` supports now relative storage URIs for volumes. ([#1464](https://github.com/neuromation/platform-api-clients/issues/1464))
|
|
1282
|
+
|
|
1283
|
+
- Explicit options `--exclude` and `--include` no longer disable the defaults from the storage.cp-exclude configuration variable. Use explicit `--exclude="*" or --include="*"` to override default patterns. ([#1489](https://github.com/neuromation/platform-api-clients/issues/1489))
|
|
1284
|
+
|
|
1285
|
+
- Support leading and trailing slashes (`/`) in filters. Leading slash prevents matching in subdirectories, e.g. `/*.txt` matches `spam.txt`, but not `dir/spam.txt`, while `*.txt` matches both of them. Patterns with trailing slash match only directories, while patterns without trailing slash match both directories and files. ([#1490](https://github.com/neuromation/platform-api-clients/issues/1490))
|
|
1286
|
+
|
|
1287
|
+
- Implement attach/exec/interactive-run using WebSockets. ([#1497](https://github.com/neuromation/platform-api-clients/issues/1497))
|
|
1288
|
+
|
|
1289
|
+
- Implement port forwarding over WebSockets. ([#1555](https://github.com/neuromation/platform-api-clients/issues/1555))
|
|
1290
|
+
|
|
1291
|
+
- Added the `--exclude-from-files` option in `neuro cp`.
|
|
1292
|
+
|
|
1293
|
+
API: Added the optional parameter `ignore_file_names` in the `upload_dir()` methods of `storage` and `blob_storage`. ([#1560](https://github.com/neuromation/platform-api-clients/issues/1560))
|
|
1294
|
+
|
|
1295
|
+
|
|
1296
|
+
Bugfixes
|
|
1297
|
+
--------
|
|
1298
|
+
|
|
1299
|
+
|
|
1300
|
+
- Fix swallowing underscores in `neuro status`. ([#1565](https://github.com/neuromation/platform-api-clients/issues/1565))
|
|
1301
|
+
|
|
1302
|
+
|
|
1303
|
+
Deprecations and Removals
|
|
1304
|
+
-------------------------
|
|
1305
|
+
|
|
1306
|
+
|
|
1307
|
+
- Drop deprected and hidden `neuro storage load` command. ([#1542](https://github.com/neuromation/platform-api-clients/issues/1542))
|
|
1308
|
+
|
|
1309
|
+
|
|
1310
|
+
Neuromation 20.6.10 (2020-06-10)
|
|
1311
|
+
================================
|
|
1312
|
+
|
|
1313
|
+
Bugfixes
|
|
1314
|
+
--------
|
|
1315
|
+
|
|
1316
|
+
|
|
1317
|
+
- Suppress annoying message about improperly handled GeneratorExit exception. ([#1525](https://github.com/neuromation/platform-api-clients/issues/1525))
|
|
1318
|
+
|
|
1319
|
+
|
|
1320
|
+
Neuromation 20.6.2 (2020-06-02)
|
|
1321
|
+
===============================
|
|
1322
|
+
|
|
1323
|
+
Features
|
|
1324
|
+
--------
|
|
1325
|
+
|
|
1326
|
+
- API: `Storage.ls()` is an asynchronous generator now. ([#1457](https://github.com/neuromation/platform-api-clients/issues/1457))
|
|
1327
|
+
|
|
1328
|
+
- Added the `--restart` option to `neuro run` and `neuro submit` and API. ([#1459](https://github.com/neuromation/platform-api-clients/issues/1459))
|
|
1329
|
+
|
|
1330
|
+
- API: `Jobs.list()` is an asynchronous generator now. ([#1473](https://github.com/neuromation/platform-api-clients/issues/1473))
|
|
1331
|
+
|
|
1332
|
+
- `neuro ps` now outputs local date instead of UTC and interprets `--since` and `--until` options as local time if the timezone is not specified. ([#1477](https://github.com/neuromation/platform-api-clients/issues/1477))
|
|
1333
|
+
|
|
1334
|
+
- autocomplete job name/id ([#1485](https://github.com/neuromation/platform-api-clients/issues/1485))
|
|
1335
|
+
|
|
1336
|
+
- Unencodable characters are now replaced with `?` or `U+FFFE` when output to the stdout. ([#1502](https://github.com/neuromation/platform-api-clients/issues/1502))
|
|
1337
|
+
|
|
1338
|
+
|
|
1339
|
+
Bugfixes
|
|
1340
|
+
--------
|
|
1341
|
+
|
|
1342
|
+
|
|
1343
|
+
- Fixed downloading a file when it is restarted for some reasons. The newly downloaded data no longer appended to a previously downloaded data, but overwrites it. ([#1521](https://github.com/neuromation/platform-api-clients/issues/1521))
|
|
1344
|
+
|
|
1345
|
+
- Fixed parsing image URIs with the single slash after scheme, like `image:/otheruser/imagename`. ([#1505](https://github.com/neuromation/platform-api-clients/issues/1505))
|
|
1346
|
+
|
|
1347
|
+
|
|
1348
|
+
Neuromation 20.4.15 (2020-04-15)
|
|
1349
|
+
================================
|
|
1350
|
+
|
|
1351
|
+
Features
|
|
1352
|
+
--------
|
|
1353
|
+
|
|
1354
|
+
|
|
1355
|
+
- Added `--since` and `--until` options to `neuro ps`. ([#1461](https://github.com/neuromation/platform-api-clients/issues/1461))
|
|
1356
|
+
|
|
1357
|
+
|
|
1358
|
+
Bugfixes
|
|
1359
|
+
--------
|
|
1360
|
+
|
|
1361
|
+
|
|
1362
|
+
- Make exit code of `job run` command more reliable. ([#1470](https://github.com/neuromation/platform-api-clients/issues/1470))
|
|
1363
|
+
|
|
1364
|
+
|
|
1365
|
+
Neuromation 20.4.6 (2020-04-06)
|
|
1366
|
+
===============================
|
|
1367
|
+
|
|
1368
|
+
Features
|
|
1369
|
+
--------
|
|
1370
|
+
|
|
1371
|
+
|
|
1372
|
+
- Commands `neuro ps`, `neuro job status`, `nauro image list` and `neuro acl list` output now URIs in the short form if possible. Use the new `--full-uri` option to get full qualified URIs. ([#1330](https://github.com/neuromation/platform-api-clients/issues/1330))
|
|
1373
|
+
|
|
1374
|
+
- Changed interpretatation of cluster related URIs (with schemes `storage:`, `image:` and `job:`) with missed host and path started with `/`. `storage:/user/path` is expanded now to `storage://{defaultcluster}/user/path`, so you do not need to specify the cluster name when refer to other user's resources on the same cluster. ([#1424](https://github.com/neuromation/platform-api-clients/issues/1424))
|
|
1375
|
+
|
|
1376
|
+
- Implement `neuro storage tree` command for displaying the directory tree on storage. ([#1435](https://github.com/neuromation/platform-api-clients/issues/1435))
|
|
1377
|
+
|
|
1378
|
+
- Filter patterns are now more compatible with `.gitignore`. Added support of `**` which matches zero or more path components. `?` and `*` no longer match `/`. Patterns which does not contain `/` at the beginning or middle matches now files in subdirectories. ([#1444](https://github.com/neuromation/platform-api-clients/issues/1444))
|
|
1379
|
+
|
|
1380
|
+
|
|
1381
|
+
Neuromation 20.3.23 (2020-03-23)
|
|
1382
|
+
================================
|
|
1383
|
+
|
|
1384
|
+
Bugfixes
|
|
1385
|
+
--------
|
|
1386
|
+
|
|
1387
|
+
|
|
1388
|
+
- Bump `typing_extensions` dependency version to satisfy CLI requirements. ([#1421](https://github.com/neuromation/platform-api-clients/issues/1421))
|
|
1389
|
+
|
|
1390
|
+
|
|
1391
|
+
Neuromation 20.3.20 (2020-03-20)
|
|
1392
|
+
================================
|
|
1393
|
+
|
|
1394
|
+
Bugfixes
|
|
1395
|
+
--------
|
|
1396
|
+
|
|
1397
|
+
|
|
1398
|
+
- Fix `--pass-config` error: File exists: '/root/.neuro'. ([#1415](https://github.com/neuromation/platform-api-clients/issues/1415))
|
|
1399
|
+
|
|
1400
|
+
|
|
1401
|
+
Neuromation 20.3.18 (2020-03-18)
|
|
1402
|
+
================================
|
|
1403
|
+
|
|
1404
|
+
Features
|
|
1405
|
+
--------
|
|
1406
|
+
|
|
1407
|
+
|
|
1408
|
+
- Support job run-time limit: `neuro run --life-span "1d2h3m"`. ([#1325](https://github.com/neuromation/platform-api-clients/issues/1325))
|
|
1409
|
+
|
|
1410
|
+
- For cluster-specific resources (with schemes `storage`, `image` and `job`) client now use URIs containing the cluster name, e.g. `storage://{clustername}/{username}/{path}` instead of `storage://{username}/{path}`. Relative URI `storage:{path}` will be expanded to absolute URI containing the current cluster name and the user name: `storage://{clustername}/{username}/{path}`. Same for `image` and `job` schemes. ([#1341](https://github.com/neuromation/platform-api-clients/issues/1341))
|
|
1411
|
+
|
|
1412
|
+
- Added 'neuro image ls -l' option, which also prints Docker URL-s ([#1354](https://github.com/neuromation/platform-api-clients/issues/1354))
|
|
1413
|
+
|
|
1414
|
+
- Added the `-u` option in `neuro acl list` to specify a role or user to which resources are available and for which they are shared. ([#1355](https://github.com/neuromation/platform-api-clients/issues/1355))
|
|
1415
|
+
|
|
1416
|
+
- Sort `neuro admin get-cluster-users` by name. ([#1359](https://github.com/neuromation/platform-api-clients/issues/1359))
|
|
1417
|
+
|
|
1418
|
+
- Steal config files on `neuro job --pass-config`. ([#1361](https://github.com/neuromation/platform-api-clients/issues/1361))
|
|
1419
|
+
|
|
1420
|
+
- Support hidden files on the storage. Hide names started with a dot by default, provide ``neuro ls --all`` option to show all files. ([#1362](https://github.com/neuromation/platform-api-clients/issues/1362))
|
|
1421
|
+
|
|
1422
|
+
- Add HTTP tracing of neuro login commands. ([#1387](https://github.com/neuromation/platform-api-clients/issues/1387))
|
|
1423
|
+
|
|
1424
|
+
- Support job tags: `neuro run --tag=experiment-1`, `neuro ps --tag=experiment-1`. ([#1393](https://github.com/neuromation/platform-api-clients/issues/1393))
|
|
1425
|
+
|
|
1426
|
+
- Support job tags listing: `neuro job tags`. ([#1396](https://github.com/neuromation/platform-api-clients/issues/1396))
|
|
1427
|
+
|
|
1428
|
+
- Optionally display job's tags in `neuro ps` (the feature needs to be explicitly enabled in `.neuro.toml` config file). ([#1406](https://github.com/neuromation/platform-api-clients/issues/1406))
|
|
1429
|
+
|
|
1430
|
+
|
|
1431
|
+
Bugfixes
|
|
1432
|
+
--------
|
|
1433
|
+
|
|
1434
|
+
|
|
1435
|
+
- Fix the alias finding routine when user is not logged in. ([#1360](https://github.com/neuromation/platform-api-clients/issues/1360))
|
|
1436
|
+
|
|
1437
|
+
- `neuro kill` exits now non-zero code if it failed to kill any job in the list. ([#1272](https://github.com/neuromation/platform-api-clients/issues/1272))
|
|
1438
|
+
|
|
1439
|
+
- Support un-quoted commands for neuro-exec: `neuro exec bash -c "ls && pwd"` is now a valid syntax. ([#1321](https://github.com/neuromation/platform-api-clients/issues/1321))
|
|
1440
|
+
|
|
1441
|
+
|
|
1442
|
+
Neuromation 20.2.24 (2020-02-24)
|
|
1443
|
+
=================================
|
|
1444
|
+
|
|
1445
|
+
Features
|
|
1446
|
+
--------
|
|
1447
|
+
|
|
1448
|
+
|
|
1449
|
+
- Support custom columns format for ``neuro ps`` command. ([#1288](https://github.com/neuromation/platform-api-clients/issues/1288))
|
|
1450
|
+
|
|
1451
|
+
- Support custom aliases. ([#1320](https://github.com/neuromation/platform-api-clients/issues/1320))
|
|
1452
|
+
|
|
1453
|
+
- Removed support of `~` in URIs (like `storage://~/path/to`). Relative URIs can be used instead (like `storage:path/to`). Support of tilde in local file paths (like `~/path/to`) has been preserved. ([#1329](https://github.com/neuromation/platform-api-clients/issues/1329))
|
|
1454
|
+
|
|
1455
|
+
|
|
1456
|
+
Neuromation 20.01.22 (2020-01-22)
|
|
1457
|
+
=================================
|
|
1458
|
+
|
|
1459
|
+
Features
|
|
1460
|
+
--------
|
|
1461
|
+
|
|
1462
|
+
|
|
1463
|
+
- `--env-file` now allows blank lines and comments (lines starting with "#") in the file. ([#1208](https://github.com/neuromation/platform-api-clients/issues/1208))
|
|
1464
|
+
|
|
1465
|
+
- Send the usage statistics to Google Analytics ([#1286](https://github.com/neuromation/platform-api-clients/issues/1286))
|
|
1466
|
+
|
|
1467
|
+
- Use Sqlite for saving the ``~/.neuro/db`` configuration file. ([#1298](https://github.com/neuromation/platform-api-clients/issues/1298))
|
|
1468
|
+
|
|
1469
|
+
|
|
1470
|
+
Bugfixes
|
|
1471
|
+
--------
|
|
1472
|
+
|
|
1473
|
+
|
|
1474
|
+
- Fix columns width and aligning for ``neurp ps --format=<>`` command. ([#1302](https://github.com/neuromation/platform-api-clients/issues/1302))
|
|
1475
|
+
|
|
1476
|
+
- Fix ps-format documentation issues. ([#1303](https://github.com/neuromation/platform-api-clients/issues/1303))
|
|
1477
|
+
|
|
1478
|
+
- Parameters specified in ps-format now always override default values. `width` takes priority over `min` and `max`, `max` takes priority over `min`. ([#1310](https://github.com/neuromation/platform-api-clients/issues/1310))
|
|
1479
|
+
|
|
1480
|
+
|
|
1481
|
+
Neuromation 20.01.15 (2020-01-15)
|
|
1482
|
+
=================================
|
|
1483
|
+
|
|
1484
|
+
Features
|
|
1485
|
+
--------
|
|
1486
|
+
|
|
1487
|
+
|
|
1488
|
+
- Add `neuro admin add-user-quota` and `neuro admin set-user-quota` commands to control user quotas ([#1142](https://github.com/neuromation/platform-api-clients/issues/1142))
|
|
1489
|
+
|
|
1490
|
+
- Added options `--exclude` and `--include` in `neuro storage cp`. ([#1182](https://github.com/neuromation/platform-api-clients/issues/1182))
|
|
1491
|
+
|
|
1492
|
+
- Adjust NAME column of `neuro ps` so that grep by name works. ([#1189](https://github.com/neuromation/platform-api-clients/issues/1189))
|
|
1493
|
+
|
|
1494
|
+
- Read ``neuro ps --format`` spec from config files if present. ([#1294](https://github.com/neuromation/platform-api-clients/issues/1294))
|
|
1495
|
+
|
|
1496
|
+
- Read ``neuro cp`` filters from user configuration file. ([#1295](https://github.com/neuromation/platform-api-clients/issues/1295))
|
|
1497
|
+
|
|
1498
|
+
|
|
1499
|
+
Neuromation 19.12.19 (2019-12-19)
|
|
1500
|
+
=================================
|
|
1501
|
+
|
|
1502
|
+
Features
|
|
1503
|
+
--------
|
|
1504
|
+
|
|
1505
|
+
|
|
1506
|
+
- Now `neuro images` do not require the installed Docker. ([#1071](https://github.com/neuromation/platform-api-clients/issues/1071))
|
|
1507
|
+
|
|
1508
|
+
- Implement `neuro config get-clusters` command. ([#1177](https://github.com/neuromation/platform-api-clients/issues/1177))
|
|
1509
|
+
|
|
1510
|
+
- Convert configuration file into configuration directory, now it is `~/.neuro` folder. ([#1183](https://github.com/neuromation/platform-api-clients/issues/1183))
|
|
1511
|
+
|
|
1512
|
+
- Implement `neuro config switch-cluster` for switching between available clusters. ([#1217](https://github.com/neuromation/platform-api-clients/issues/1217))
|
|
1513
|
+
|
|
1514
|
+
- Implement `neuro admin get-clusters` command. ([#1223](https://github.com/neuromation/platform-api-clients/issues/1223))
|
|
1515
|
+
|
|
1516
|
+
- Implement `neuro admin add-cluster` command. ([#1224](https://github.com/neuromation/platform-api-clients/issues/1224))
|
|
1517
|
+
|
|
1518
|
+
- Add ``neuro admin generate-cluster-config`` command. ([#1227](https://github.com/neuromation/platform-api-clients/issues/1227))
|
|
1519
|
+
|
|
1520
|
+
- `neuro project init` now supports argument to set default value for generated project directory ([#1230](https://github.com/neuromation/platform-api-clients/issues/1230))
|
|
1521
|
+
|
|
1522
|
+
|
|
1523
|
+
Bugfixes
|
|
1524
|
+
--------
|
|
1525
|
+
|
|
1526
|
+
|
|
1527
|
+
- Correctly process both quoted command arguments (`neuro run python:latest "python3 -c 'import os'") as well as unquoted version (`neuro run python:latest python3 -c 'import os'`). ([#1229](https://github.com/neuromation/platform-api-clients/issues/1229))
|
|
1528
|
+
|
|
1529
|
+
|
|
1530
|
+
Neuromation 19.11.20 (2019-11-20)
|
|
1531
|
+
=================================
|
|
1532
|
+
|
|
1533
|
+
Features
|
|
1534
|
+
--------
|
|
1535
|
+
|
|
1536
|
+
|
|
1537
|
+
- Trace sent HTTP requests and received replies to stderr if `--trace` flag is passed. ([#467](https://github.com/neuromation/platform-api-clients/issues/467))
|
|
1538
|
+
|
|
1539
|
+
- Display `Cluster` field for job status and listing commands. ([#874](https://github.com/neuromation/platform-api-clients/issues/874))
|
|
1540
|
+
|
|
1541
|
+
- Display `Entrypoint` field for job status command. ([#924](https://github.com/neuromation/platform-api-clients/issues/924))
|
|
1542
|
+
|
|
1543
|
+
- Display volumes information for `neuro status` command. ([#1003](https://github.com/neuromation/platform-api-clients/issues/1003))
|
|
1544
|
+
|
|
1545
|
+
- Option `--volume=HOME` deprecated. ([#1009](https://github.com/neuromation/platform-api-clients/issues/1009))
|
|
1546
|
+
|
|
1547
|
+
- Provide client.presets property, update docs. ([#1078](https://github.com/neuromation/platform-api-clients/issues/1078))
|
|
1548
|
+
|
|
1549
|
+
- Retry storage operations in case of some errors. ([#1107](https://github.com/neuromation/platform-api-clients/issues/1107))
|
|
1550
|
+
|
|
1551
|
+
- `neuro kill` will continue work if multiple jobs specified but you haven't required permissions for some of them. ([#1122](https://github.com/neuromation/platform-api-clients/issues/1122))
|
|
1552
|
+
|
|
1553
|
+
- Introduce `neuro config show-quota`. ([#1141](https://github.com/neuromation/platform-api-clients/issues/1141))
|
|
1554
|
+
|
|
1555
|
+
- Use pager for long lists. ([#1152](https://github.com/neuromation/platform-api-clients/issues/1152))
|
|
1556
|
+
|
|
1557
|
+
- Add global option '--hide-token/--no-hide-token' to be used together with '--trace' for preventing the user's token from being printed to stderr for safety reasons. ([#1158](https://github.com/neuromation/platform-api-clients/issues/1158))
|
|
1558
|
+
|
|
1559
|
+
- Suppress security checks for config files if NEUROMATION_TRUSTED_CONFIG_PATH environment variable is on. ([#1173](https://github.com/neuromation/platform-api-clients/issues/1173))
|
|
1560
|
+
|
|
1561
|
+
|
|
1562
|
+
Bugfixes
|
|
1563
|
+
--------
|
|
1564
|
+
|
|
1565
|
+
|
|
1566
|
+
- When running a job with `--detach` option `neuro` now returns an error status if job fails to start at all (e.g., when cluster scale up fails). If job starts successfully (regardless of its run result) `neuro run` with `--detach` returns 0 like before. ([#1059](https://github.com/neuromation/platform-api-clients/issues/1059))
|
|
1567
|
+
|
|
1568
|
+
- Provide default arguments for api.Resources constructor to keep broken backward compatibility. ([#1070](https://github.com/neuromation/platform-api-clients/issues/1070))
|
|
1569
|
+
|
|
1570
|
+
- Fix help message for `neuro project init`: in fact, the command does not accept an argument. ([#1080](https://github.com/neuromation/platform-api-clients/issues/1080))
|
|
1571
|
+
|
|
1572
|
+
- Process 502 Bad Gateway as a separate exception, don't miss it with 400 Bad Request. ([#1111](https://github.com/neuromation/platform-api-clients/issues/1111))
|
|
1573
|
+
|
|
1574
|
+
- Wait for `ThreadPoolExecutor` finish befor exit from the program. ([#1144](https://github.com/neuromation/platform-api-clients/issues/1144))
|
|
1575
|
+
|
|
1576
|
+
|
|
1577
|
+
Neuromation 19.9.23 (2019-09-23)
|
|
1578
|
+
================================
|
|
1579
|
+
|
|
1580
|
+
Features
|
|
1581
|
+
--------
|
|
1582
|
+
|
|
1583
|
+
|
|
1584
|
+
- Introduce `neuro project init` for scaffolding an empty project. ([#1043](https://github.com/neuromation/platform-api-clients/issues/1043))
|
|
1585
|
+
|
|
1586
|
+
- `neuro cp -r` now works with non-directories. ([#1053](https://github.com/neuromation/platform-api-clients/issues/1053))
|
|
1587
|
+
|
|
1588
|
+
- Disable logging of annoying SSL errors. ([#1065](https://github.com/neuromation/platform-api-clients/issues/1065))
|
|
1589
|
+
|
|
1590
|
+
- Make image commands work on Windows. ([#1067](https://github.com/neuromation/platform-api-clients/issues/1067))
|
|
1591
|
+
|
|
1592
|
+
- Fix bug with job-name resolution introduced in release 19.8.19: do not print annoying warning messages if more than one job with specified name was found. ([#1034](https://github.com/neuromation/platform-api-clients/issues/1034))
|
|
1593
|
+
|
|
1594
|
+
- Fix `neuro job save` timing out too early. ([#1062](https://github.com/neuromation/platform-api-clients/issues/1062))
|
|
1595
|
+
|
|
1596
|
+
Neuromation 19.9.10 (2019-09-10)
|
|
1597
|
+
================================
|
|
1598
|
+
|
|
1599
|
+
Features
|
|
1600
|
+
--------
|
|
1601
|
+
|
|
1602
|
+
|
|
1603
|
+
- Improved displaying a progress of copying many files. ([#1034](https://github.com/neuromation/platform-api-clients/issues/1034))
|
|
1604
|
+
|
|
1605
|
+
|
|
1606
|
+
Deprecations and Removals
|
|
1607
|
+
-------------------------
|
|
1608
|
+
|
|
1609
|
+
|
|
1610
|
+
- Deprecate `neuro storage load` command. ([#1028](https://github.com/neuromation/platform-api-clients/issues/1028))
|
|
1611
|
+
|
|
1612
|
+
|
|
1613
|
+
Neuromation 19.9.2 (2019-09-02)
|
|
1614
|
+
===============================
|
|
1615
|
+
|
|
1616
|
+
Features
|
|
1617
|
+
--------
|
|
1618
|
+
|
|
1619
|
+
|
|
1620
|
+
- Due to `certifi` update delays, show certifi package error not earlier than two weeks after the latest version was released. ([#944](https://github.com/neuromation/platform-api-clients/issues/944))
|
|
1621
|
+
|
|
1622
|
+
- Support streaming output for `neuro-save` command. ([#946](https://github.com/neuromation/platform-api-clients/issues/946))
|
|
1623
|
+
|
|
1624
|
+
- Implement mounting all available volumes: `neuro run --volume=ALL`. ([#974](https://github.com/neuromation/platform-api-clients/issues/974))
|
|
1625
|
+
|
|
1626
|
+
- Uploading/downloading of a directory containing many small files is now 4-10 times faster. ([#981](https://github.com/neuromation/platform-api-clients/issues/981))
|
|
1627
|
+
|
|
1628
|
+
- Support Cloud TPU: new cli options `--tpu-type`, `--tpu-sw-version` added. ([#982](https://github.com/neuromation/platform-api-clients/issues/982))
|
|
1629
|
+
|
|
1630
|
+
- Support job operations via job-URI (e.g., `neuro status job://owner-name/job-name`). ([#988](https://github.com/neuromation/platform-api-clients/issues/988))
|
|
1631
|
+
|
|
1632
|
+
- Support job filtering by owner: `neuro ps -o user-1 --owner=user-2`. ([#990](https://github.com/neuromation/platform-api-clients/issues/990))
|
|
1633
|
+
|
|
1634
|
+
- Added the `--update` option in `neuro storage cp`. It makes the command copying the source file only when it is newer than the destination file or when the destination file is missing. ([#1007](https://github.com/neuromation/platform-api-clients/issues/1007))
|
|
1635
|
+
|
|
1636
|
+
- Added the `-d` (`--directory`) option in `neuro storage ls` which makes the command to list directories themselves, not their contents. ([#1012](https://github.com/neuromation/platform-api-clients/issues/1012))
|
|
1637
|
+
|
|
1638
|
+
|
|
1639
|
+
Neuromation 19.8.23 (2019-08-23)
|
|
1640
|
+
================================
|
|
1641
|
+
|
|
1642
|
+
Features
|
|
1643
|
+
--------
|
|
1644
|
+
|
|
1645
|
+
|
|
1646
|
+
- `FileStatus.permission` now is `Action`, was `str`. ([#963](https://github.com/neuromation/platform-api-clients/issues/963))
|
|
1647
|
+
|
|
1648
|
+
|
|
1649
|
+
Bugfixes
|
|
1650
|
+
--------
|
|
1651
|
+
|
|
1652
|
+
|
|
1653
|
+
- Fix regression: restore port-forward functionality. ([#979](https://github.com/neuromation/platform-api-clients/issues/979))
|
|
1654
|
+
|
|
1655
|
+
|
|
1656
|
+
Neuromation 19.8.19 (2019-08-19)
|
|
1657
|
+
================================
|
|
1658
|
+
|
|
1659
|
+
Features
|
|
1660
|
+
--------
|
|
1661
|
+
|
|
1662
|
+
|
|
1663
|
+
- Change default interactivity option for `neuro exec`: by default, interactive `--tty` will be used. ([#942](https://github.com/neuromation/platform-api-clients/issues/942))
|
|
1664
|
+
|
|
1665
|
+
- Use `Optional[datetime]` in `JobStatusHistory` `.created_at`, `.started_at`, `.finished_at` instead of `str`. ([#955](https://github.com/neuromation/platform-api-clients/issues/955))
|
|
1666
|
+
|
|
1667
|
+
- `neuro storage cp` is now up to 2 times faster for a directory with many small files. ([#958](https://github.com/neuromation/platform-api-clients/issues/958))
|
|
1668
|
+
|
|
1669
|
+
- Refactor port forwarding api to use async context manager for controlling a time of port
|
|
1670
|
+
forwarding process. ([#959](https://github.com/neuromation/platform-api-clients/issues/959))
|
|
1671
|
+
|
|
1672
|
+
|
|
1673
|
+
Bugfixes
|
|
1674
|
+
--------
|
|
1675
|
+
|
|
1676
|
+
|
|
1677
|
+
- Support remote images with registry `host:port`. ([#939](https://github.com/neuromation/platform-api-clients/issues/939))
|
|
1678
|
+
|
|
1679
|
+
|
|
1680
|
+
Neuromation 19.8.1 (2019-08-01)
|
|
1681
|
+
===============================
|
|
1682
|
+
|
|
1683
|
+
Features
|
|
1684
|
+
--------
|
|
1685
|
+
|
|
1686
|
+
|
|
1687
|
+
- The `-p/--non-preemptible` parameter for `neuro run` has been removed in favor in embedding it into presets coming from the server. ([#928](https://github.com/neuromation/platform-api-clients/issues/928))
|
|
1688
|
+
|
|
1689
|
+
- Show progress for `neuro cp` by default. ([#933](https://github.com/neuromation/platform-api-clients/issues/933))
|
|
1690
|
+
|
|
1691
|
+
- Use dataclasses in image progress API ([#935](https://github.com/neuromation/platform-api-clients/issues/935))
|
|
1692
|
+
|
|
1693
|
+
|
|
1694
|
+
Neuromation 19.7.26 (2019-07-26)
|
|
1695
|
+
================================
|
|
1696
|
+
|
|
1697
|
+
Features
|
|
1698
|
+
--------
|
|
1699
|
+
|
|
1700
|
+
|
|
1701
|
+
- Add option `ps --all`, deprecate `ps -s all`. ([#538](https://github.com/neuromation/platform-api-clients/issues/538))
|
|
1702
|
+
|
|
1703
|
+
- Forbid mixing arguments and CLI options in `run`, `submit` and `exec` commands. Options (parameters starting from dash or double dash, e.g. `-n` and `--name`) should prepend arguments (e.g. `image:ubuntu:latest`). All tailed options belong to executed container command, not to neuro CLI itself. ([#927](https://github.com/neuromation/platform-api-clients/issues/927))
|
|
1704
|
+
|
|
1705
|
+
|
|
1706
|
+
Neuromation 19.7.17 (2019-07-17)
|
|
1707
|
+
================================
|
|
1708
|
+
|
|
1709
|
+
Features
|
|
1710
|
+
--------
|
|
1711
|
+
|
|
1712
|
+
|
|
1713
|
+
- The behavior of `neuro storage mv` is now closer to the behavior of the `mv` command. It moves now files inside the target directory if it exists and moves a file under the new name otherwise. Added also options `--target-directory` (`-t`) and `--no-target-directory` (`-T`). ([#203](https://github.com/neuromation/platform-api-clients/issues/203))
|
|
1714
|
+
|
|
1715
|
+
- `neuro job submit` and `neuro job run` command now support `--pass-config` option. This option ensures your local neuromation config file is uploaded to your job allowing you to executre `neuro` commands from the container. ([#827](https://github.com/neuromation/platform-api-clients/issues/827))
|
|
1716
|
+
|
|
1717
|
+
- Add `neuro image tags` command to list all tags for a given image ([#852](https://github.com/neuromation/platform-api-clients/issues/852))
|
|
1718
|
+
|
|
1719
|
+
- Stabilize jobs API ([#879](https://github.com/neuromation/platform-api-clients/issues/879))
|
|
1720
|
+
|
|
1721
|
+
- `neuro storage cp`, `neuro storage mv` and `neuro storage rm` support now globbing for source arguments. Globbing can be disabled by specifying new option `--no-glob`. Added command `neuro storage glob` which lists resources matching patterns. ([#889](https://github.com/neuromation/platform-api-clients/issues/889))
|
|
1722
|
+
|
|
1723
|
+
|
|
1724
|
+
Neuromation 19.7.4 (2019-07-04)
|
|
1725
|
+
===============================
|
|
1726
|
+
|
|
1727
|
+
Features
|
|
1728
|
+
--------
|
|
1729
|
+
|
|
1730
|
+
|
|
1731
|
+
- Implemented `neuro job browse`. Added the `--browse` flag to `neuro job submit` and `neuro job run`. ([#571](https://github.com/neuromation/platform-api-clients/issues/571))
|
|
1732
|
+
|
|
1733
|
+
- Added the global `--quiet` option, opposite to `--verbose`. Both options are additive. The `--quite` options for `neuro job` and `neuro image` are deprecated now. ([#848](https://github.com/neuromation/platform-api-clients/issues/848))
|
|
1734
|
+
|
|
1735
|
+
- Drop `neuromation.api.NetworkPortForwarding` for the sake of `neuromation.api.HTTPPort` ([#861](https://github.com/neuromation/platform-api-clients/issues/861))
|
|
1736
|
+
|
|
1737
|
+
- The output of "storage" commands in verbose mode is now more similar to the output of corresponding POSIX command. In particular ``neuro -v storage cp -r`` outputs a line for every copied file or directory. ([#869](https://github.com/neuromation/platform-api-clients/issues/869))
|
|
1738
|
+
|
|
1739
|
+
- The behavior of the `neuro storage cp` is now closer to the behavior of the `cp` command. It now copies files inside the target directory if it exists and copies a file under the new name otherwise. Added also options `--target-directory` (`-t`) and `--no-target-directory` (`-T`). ([#870](https://github.com/neuromation/platform-api-clients/issues/870))
|
|
1740
|
+
|
|
1741
|
+
|
|
1742
|
+
Bugfixes
|
|
1743
|
+
--------
|
|
1744
|
+
|
|
1745
|
+
|
|
1746
|
+
- Fix certifi upgrade suggestion text. ([#845](https://github.com/neuromation/platform-api-clients/issues/845))
|
|
1747
|
+
|
|
1748
|
+
|
|
1749
|
+
Neuromation 19.6.12 (2019-06-12)
|
|
1750
|
+
================================
|
|
1751
|
+
|
|
1752
|
+
Features
|
|
1753
|
+
--------
|
|
1754
|
+
|
|
1755
|
+
|
|
1756
|
+
- Make non-preemtible mode default. ([#829](https://github.com/neuromation/platform-api-clients/issues/829))
|
|
1757
|
+
|
|
1758
|
+
|
|
1759
|
+
Neuromation 19.6.10 (2019-06-10)
|
|
1760
|
+
================================
|
|
1761
|
+
|
|
1762
|
+
Bugfixes
|
|
1763
|
+
--------
|
|
1764
|
+
|
|
1765
|
+
|
|
1766
|
+
- Improve storage operations stability by supporting sticky sessions. ([#832](https://github.com/neuromation/platform-api-clients/issues/832))
|
|
1767
|
+
|
|
1768
|
+
|
|
1769
|
+
Neuromation 19.6.5 (2019-06-05)
|
|
1770
|
+
===============================
|
|
1771
|
+
|
|
1772
|
+
Bugfixes
|
|
1773
|
+
--------
|
|
1774
|
+
|
|
1775
|
+
|
|
1776
|
+
- Relax pyyaml version requirement to don't force users to upgrade it if pyyaml was installed by anaconda or another non-pip installer. ([#828](https://github.com/neuromation/platform-api-clients/issues/828))
|
|
1777
|
+
|
|
1778
|
+
|
|
1779
|
+
Neuromation 19.6.4 (2019-06-04)
|
|
1780
|
+
===============================
|
|
1781
|
+
|
|
1782
|
+
Bugfixes
|
|
1783
|
+
--------
|
|
1784
|
+
|
|
1785
|
+
|
|
1786
|
+
- Don't run version checks if config is not loaded by CLI command. ([#826](https://github.com/neuromation/platform-api-clients/issues/826))
|
|
1787
|
+
|
|
1788
|
+
|
|
1789
|
+
Neuromation 19.6.3 (2019-06-03)
|
|
1790
|
+
===============================
|
|
1791
|
+
|
|
1792
|
+
Features
|
|
1793
|
+
--------
|
|
1794
|
+
|
|
1795
|
+
|
|
1796
|
+
- Changes in `neuro store mkdir` behavior: fails if the directory already exists or parent directories do not exist. Add option `--parents` to make parent directories as needed and ignore existing directories. ([#131](https://github.com/neuromation/platform-api-clients/issues/131))
|
|
1797
|
+
|
|
1798
|
+
- Changes in `neuro store rm` behavior: removes only files by default, add option `--recursive` to remove directories. ([#354](https://github.com/neuromation/platform-api-clients/issues/354))
|
|
1799
|
+
|
|
1800
|
+
- Storage commands (`neuro storage ls`, `neuro storage cp`, `neuro storage mv`, `neuro storage rm`) accept now variable number of arguments. This allows to copy or remove several files by one command. ([#784](https://github.com/neuromation/platform-api-clients/issues/784))
|
|
1801
|
+
|
|
1802
|
+
- Implement `neuro config login-headless` command. ([#793](https://github.com/neuromation/platform-api-clients/issues/793))
|
|
1803
|
+
|
|
1804
|
+
- Changes in interpretation URIs with absolute path and without host name. `storage:///foo/bar` means now the same as `storage://foo/bar` instead of `storage://{currentuser}/foo/bar`, and `storage:///` can be used for access to the storage root directory. ([#808](https://github.com/neuromation/platform-api-clients/issues/808))
|
|
1805
|
+
|
|
1806
|
+
- `neuro storage cp` now supports copying to/from non-regular files like character devices and named pipes. In particular this allows to output the file to the stdout or get the input from the stdin (`/dev/stdout` and `/dev/stdin` on Linux, `CON` on Windows). ([#813](https://github.com/neuromation/platform-api-clients/issues/813))
|
|
1807
|
+
|
|
1808
|
+
- Relax certifi required version. Raise a warning if the package should be updated. ([#819](https://github.com/neuromation/platform-api-clients/issues/819))
|
|
1809
|
+
|
|
1810
|
+
|
|
1811
|
+
Bugfixes
|
|
1812
|
+
--------
|
|
1813
|
+
|
|
1814
|
+
|
|
1815
|
+
- Allow to logout even if config file is broken. ([#792](https://github.com/neuromation/platform-api-clients/issues/792))
|
|
1816
|
+
|
|
1817
|
+
|
|
1818
|
+
Neuromation 19.5.13 (2019-05-13)
|
|
1819
|
+
================================
|
|
1820
|
+
|
|
1821
|
+
Features
|
|
1822
|
+
--------
|
|
1823
|
+
|
|
1824
|
+
|
|
1825
|
+
- Print exposed HTTP for named jobs ([#736](https://github.com/neuromation/platform-api-clients/issues/736))
|
|
1826
|
+
|
|
1827
|
+
- Support retrieving server config for authorized users. ([#766](https://github.com/neuromation/platform-api-clients/issues/766))
|
|
1828
|
+
|
|
1829
|
+
|
|
1830
|
+
Neuromation 19.4.23 (2019-04-23)
|
|
1831
|
+
================================
|
|
1832
|
+
|
|
1833
|
+
Features
|
|
1834
|
+
--------
|
|
1835
|
+
|
|
1836
|
+
|
|
1837
|
+
- Implement *job run* command. ([#652](https://github.com/neuromation/platform-api-clients/issues/652))
|
|
1838
|
+
|
|
1839
|
+
|
|
1840
|
+
Bugfixes
|
|
1841
|
+
--------
|
|
1842
|
+
|
|
1843
|
+
|
|
1844
|
+
- Fix image name parser to substitute lastest tag automatically. ([#729](https://github.com/neuromation/platform-api-clients/issues/729))
|
|
1845
|
+
|
|
1846
|
+
|
|
1847
|
+
Neuromation 19.4.16 (2019-04-16)
|
|
1848
|
+
================================
|
|
1849
|
+
|
|
1850
|
+
Features
|
|
1851
|
+
--------
|
|
1852
|
+
|
|
1853
|
+
|
|
1854
|
+
- New option `--neuromation-config` for using alternative config file location. Environment variable `NEUROMATION_CONFIG` can be used as option.
|
|
1855
|
+
New command `neuro config docker` allows to use `docker image push/pull` commands with platform registry. ([#381](https://github.com/neuromation/platform-api-clients/issues/381))
|
|
1856
|
+
|
|
1857
|
+
- `neuro port-forward` command now accepts multiple local-remote port pairs in order to forward several ports by a single command. ([#632](https://github.com/neuromation/platform-api-clients/issues/632))
|
|
1858
|
+
|
|
1859
|
+
- Support job names. ([#648](https://github.com/neuromation/platform-api-clients/issues/648))
|
|
1860
|
+
|
|
1861
|
+
- Make progress argument for storage API optional. ([#687](https://github.com/neuromation/platform-api-clients/issues/687))
|
|
1862
|
+
|
|
1863
|
+
- Rename neuromation.client to neuromation.api ([#688](https://github.com/neuromation/platform-api-clients/issues/688))
|
|
1864
|
+
|
|
1865
|
+
- Implement `neuro config login-with-token TOKEN URL` command. ([#712](https://github.com/neuromation/platform-api-clients/issues/712))
|
|
1866
|
+
|
|
1867
|
+
|
|
1868
|
+
Bugfixes
|
|
1869
|
+
--------
|
|
1870
|
+
|
|
1871
|
+
|
|
1872
|
+
- Don't allow to submit image names starting with dash. ([#526](https://github.com/neuromation/platform-api-clients/issues/526))
|
|
1873
|
+
|
|
1874
|
+
- Respect `--network-timeout` option in `logs` and `cp` operations. ([#703](https://github.com/neuromation/platform-api-clients/issues/703))
|
|
1875
|
+
|
|
1876
|
+
|
|
1877
|
+
Deprecations and Removals
|
|
1878
|
+
-------------------------
|
|
1879
|
+
|
|
1880
|
+
|
|
1881
|
+
- Remove deprecated functionality: `neuro model`, `neuro config id_rsa` and `neuro job submit --ssh` option. ([#700](https://github.com/neuromation/platform-api-clients/issues/700))
|
|
1882
|
+
|
|
1883
|
+
|
|
1884
|
+
Neuromation 0.7.2 (2019-03-25)
|
|
1885
|
+
==============================
|
|
1886
|
+
|
|
1887
|
+
Features
|
|
1888
|
+
--------
|
|
1889
|
+
|
|
1890
|
+
|
|
1891
|
+
- Change the default API endpoint to `https://staging.neu.ro/api/v1` ([#666](https://github.com/neuromation/platform-api-clients/issues/666))
|
|
1892
|
+
|
|
1893
|
+
|
|
1894
|
+
Neuromation 0.7.1 (2019-03-15)
|
|
1895
|
+
==============================
|
|
1896
|
+
|
|
1897
|
+
Bugfixes
|
|
1898
|
+
--------
|
|
1899
|
+
|
|
1900
|
+
|
|
1901
|
+
- Fix incorrect `--volume` parsing under windows ([#635](https://github.com/neuromation/platform-api-clients/issues/635))
|
|
1902
|
+
|
|
1903
|
+
|
|
1904
|
+
Neuromation 0.7.0 (2019-03-14)
|
|
1905
|
+
==============================
|
|
1906
|
+
|
|
1907
|
+
Features
|
|
1908
|
+
--------
|
|
1909
|
+
|
|
1910
|
+
|
|
1911
|
+
- New flag `--http-auth/--no-http-auth` which controls authentication for forwarded HTTP port. Enabled by default. ([#604](https://github.com/neuromation/platform-api-clients/issues/604))
|
|
1912
|
+
|
|
1913
|
+
|
|
1914
|
+
Neuromation 0.6.2 (2019-03-07)
|
|
1915
|
+
==============================
|
|
1916
|
+
|
|
1917
|
+
Bugfixes
|
|
1918
|
+
--------
|
|
1919
|
+
|
|
1920
|
+
|
|
1921
|
+
- Increase wait time to finish on POSIX platforms. It dignificantly decreases a chance of error report after CLI command executions. ([#597](https://github.com/neuromation/platform-api-clients/issues/597))
|
|
1922
|
+
|
|
1923
|
+
- Fix forward compatibility with platform server. ([#599](https://github.com/neuromation/platform-api-clients/issues/599))
|
|
1924
|
+
|
|
1925
|
+
|
|
1926
|
+
Neuromation 0.6.1 (2019-03-04)
|
|
1927
|
+
==============================
|
|
1928
|
+
|
|
1929
|
+
Bugfixes
|
|
1930
|
+
--------
|
|
1931
|
+
|
|
1932
|
+
|
|
1933
|
+
- Close version checker properly in case of error in a command execution. ([#586](https://github.com/neuromation/platform-api-clients/issues/586))
|
|
1934
|
+
|
|
1935
|
+
- Pin aiohttp to 3.5+ to satisfy minimal supported CLI version. ([#587](https://github.com/neuromation/platform-api-clients/issues/587))
|
|
1936
|
+
|
|
1937
|
+
|
|
1938
|
+
Neuromation 0.6.0 (2019-03-01)
|
|
1939
|
+
==============================
|
|
1940
|
+
|
|
1941
|
+
Features
|
|
1942
|
+
--------
|
|
1943
|
+
|
|
1944
|
+
|
|
1945
|
+
- Extended '/dev/shm' space (`--extshm`) turned on by default ([#449](https://github.com/neuromation/platform-api-clients/issues/449))
|
|
1946
|
+
|
|
1947
|
+
- Add support for server-side job list filtering (speedup of the `neuro ps`) ([#474](https://github.com/neuromation/platform-api-clients/issues/474))
|
|
1948
|
+
|
|
1949
|
+
- Several UX improvements. ([#486](https://github.com/neuromation/platform-api-clients/issues/486))
|
|
1950
|
+
|
|
1951
|
+
- `neuro store ls` now supports colored output, _LS_COLORS_(GNU) or _LSCOLORS_(BSD) environment variable required. ([#487](https://github.com/neuromation/platform-api-clients/issues/487))
|
|
1952
|
+
|
|
1953
|
+
- Improve shell completion logic, make shell type argument mandatory. ([#506](https://github.com/neuromation/platform-api-clients/issues/506))
|
|
1954
|
+
|
|
1955
|
+
- Add Http URL to neuro job submit output ([#527](https://github.com/neuromation/platform-api-clients/issues/527))
|
|
1956
|
+
|
|
1957
|
+
- Added neuro port-forward command to forward a port of a job exposed during job submit to a local one. ([#535](https://github.com/neuromation/platform-api-clients/issues/535))
|
|
1958
|
+
|
|
1959
|
+
- Support Windows platform ([#548](https://github.com/neuromation/platform-api-clients/issues/548))
|
|
1960
|
+
|
|
1961
|
+
|
|
1962
|
+
Bugfixes
|
|
1963
|
+
--------
|
|
1964
|
+
|
|
1965
|
+
|
|
1966
|
+
- Fix parsing image URIs. ([#539](https://github.com/neuromation/platform-api-clients/issues/539))
|
|
1967
|
+
|
|
1968
|
+
- Don't fetch PyPI if `--disable-pypi-version-check` is on. ([#559](https://github.com/neuromation/platform-api-clients/issues/559))
|
|
1969
|
+
|
|
1970
|
+
|
|
1971
|
+
Neuromation 0.4.0 (2019-02-12)
|
|
1972
|
+
==============================
|
|
1973
|
+
|
|
1974
|
+
Features
|
|
1975
|
+
--------
|
|
1976
|
+
|
|
1977
|
+
|
|
1978
|
+
- Check the lastest PyPI neuromation release, suggest to upgrade if PyPI has a newer version. ([#308](https://github.com/neuromation/platform-api-clients/issues/308))
|
|
1979
|
+
|
|
1980
|
+
- Changes in `neuro store ls` behavior: display files by columns by default, add option `-l` for long output, display one per line for pipes by default. ([#427](https://github.com/neuromation/platform-api-clients/issues/427))
|
|
1981
|
+
|
|
1982
|
+
- Set up the platform to work with the new platform DNS names. ([#495](https://github.com/neuromation/platform-api-clients/issues/495))
|
|
1983
|
+
|
|
1984
|
+
|
|
1985
|
+
Bugfixes
|
|
1986
|
+
--------
|
|
1987
|
+
|
|
1988
|
+
|
|
1989
|
+
- Use colored mode only if all stdin, stdout, and stderr are tty. ([#473](https://github.com/neuromation/platform-api-clients/issues/473))
|
|
1990
|
+
|
|
1991
|
+
- Improved login error reporting ([#477](https://github.com/neuromation/platform-api-clients/issues/477))
|
|
1992
|
+
|
|
1993
|
+
|
|
1994
|
+
Neuromation 0.3.0 (2019-02-01)
|
|
1995
|
+
==============================
|
|
1996
|
+
|
|
1997
|
+
Features
|
|
1998
|
+
--------
|
|
1999
|
+
|
|
2000
|
+
|
|
2001
|
+
- Add `-p/-P` shortcuts for `--preemtible/--non-preemtible` for `neuro submit` command. ([#458](https://github.com/neuromation/platform-api-clients/issues/458))
|
|
2002
|
+
|
|
2003
|
+
- Wait for job start/failure on job submit. ([#356](https://github.com/neuromation/platform-api-clients/issues/356))
|
|
2004
|
+
|
|
2005
|
+
- Support `-v` as a shortcut for `--volume` in `neuro submit ...` command. ([#383](https://github.com/neuromation/platform-api-clients/issues/383))
|
|
2006
|
+
|
|
2007
|
+
- Improve resource URI normalization and print normalized URIs back to the user. ([#457](https://github.com/neuromation/platform-api-clients/issues/457))
|
|
2008
|
+
|
|
2009
|
+
- Re-organize CLI commands for better UI/UX experience. Obsolete commands are hidden but still supported. ([#460](https://github.com/neuromation/platform-api-clients/issues/460))
|
|
2010
|
+
|
|
2011
|
+
|
|
2012
|
+
Neuromation 0.2.2 (2019-01-31)
|
|
2013
|
+
==============================
|
|
2014
|
+
|
|
2015
|
+
Features
|
|
2016
|
+
--------
|
|
2017
|
+
|
|
2018
|
+
|
|
2019
|
+
- Add top-level aliases for the most frequent commands. ([#439](https://github.com/neuromation/platform-api-clients/issues/439))
|
|
2020
|
+
|
|
2021
|
+
- Better formatting for examples section. ([#446](https://github.com/neuromation/platform-api-clients/issues/446))
|
|
2022
|
+
|
|
2023
|
+
|
|
2024
|
+
Bugfixes
|
|
2025
|
+
--------
|
|
2026
|
+
|
|
2027
|
+
|
|
2028
|
+
- Bump `click` version to `7.0+`. ([#437](https://github.com/neuromation/platform-api-clients/issues/437))
|
|
2029
|
+
|
|
2030
|
+
- Temporary disable scary logging about unhandled exception. ([#438](https://github.com/neuromation/platform-api-clients/issues/438))
|
|
2031
|
+
|
|
2032
|
+
- Fix an error in local path normalization. ([#443](https://github.com/neuromation/platform-api-clients/issues/443))
|
|
2033
|
+
|
|
2034
|
+
|
|
2035
|
+
Neuromation 0.2.1 (2019-01-29)
|
|
2036
|
+
==============================
|
|
2037
|
+
|
|
2038
|
+
Features
|
|
2039
|
+
--------
|
|
2040
|
+
|
|
2041
|
+
|
|
2042
|
+
- Implement ``neuro job top`` ([#412](https://github.com/neuromation/platform-api-clients/issues/412))
|
|
2043
|
+
|
|
2044
|
+
- Pretty format output for ``neuro config show`` command, print current authentication token by ``neuro config show-token``. ([#426](https://github.com/neuromation/platform-api-clients/issues/426))
|
|
2045
|
+
|
|
2046
|
+
- Check `~/.nmrc` config file for strict `0o600` permissions. ([#430](https://github.com/neuromation/platform-api-clients/issues/430))
|
|
2047
|
+
|
|
2048
|
+
|
|
2049
|
+
Deprecations and Removals
|
|
2050
|
+
-------------------------
|
|
2051
|
+
|
|
2052
|
+
|
|
2053
|
+
- Drop `--token` and `--url` parameters from the root command, use `neuro login` and `neuro config url` to setup config parameters. ([#430](https://github.com/neuromation/platform-api-clients/issues/430))
|
|
2054
|
+
|
|
2055
|
+
|
|
2056
|
+
Neuromation 0.2.0 (2019-01-28)
|
|
2057
|
+
==============================
|
|
2058
|
+
|
|
2059
|
+
Features
|
|
2060
|
+
--------
|
|
2061
|
+
|
|
2062
|
+
|
|
2063
|
+
- Deep refactor ``neuro store`` command and corresponding API client. ([#324](https://github.com/neuromation/platform-api-clients/issues/324))
|
|
2064
|
+
|
|
2065
|
+
- Default API URL switched to HTTPS for _neuro_ cli ([#325](https://github.com/neuromation/platform-api-clients/issues/325))
|
|
2066
|
+
|
|
2067
|
+
- Job resource output formatting for command `neuro job status` changed ([#328](https://github.com/neuromation/platform-api-clients/issues/328))
|
|
2068
|
+
|
|
2069
|
+
- `neuro image pull/push` command improved for support different names/tags for images, introduced 'image://' scheme for image referencing. ([#349](https://github.com/neuromation/platform-api-clients/issues/349))
|
|
2070
|
+
|
|
2071
|
+
- Implement --show-traceback command line option to show python traceback in case of top-level error ([#365](https://github.com/neuromation/platform-api-clients/issues/365))
|
|
2072
|
+
|
|
2073
|
+
- Added new option `--insecure` for storing auth in plain text file instead system keyring. ([#366](https://github.com/neuromation/platform-api-clients/issues/366))
|
|
2074
|
+
|
|
2075
|
+
- New `neuro image ls` command for listing custom images available on platform repository. ([#367](https://github.com/neuromation/platform-api-clients/issues/367))
|
|
2076
|
+
|
|
2077
|
+
- Added new command `neuro job exec` to execute commands in already running job without ssh server. ([#373](https://github.com/neuromation/platform-api-clients/issues/373))
|
|
2078
|
+
|
|
2079
|
+
- Display Preemptible in job status output ([#393](https://github.com/neuromation/platform-api-clients/issues/393))
|
|
2080
|
+
|
|
2081
|
+
- Make the client work on Python 3.7 ([#402](https://github.com/neuromation/platform-api-clients/issues/402))
|
|
2082
|
+
|
|
2083
|
+
- Implement ``neuro job top`` ([#412](https://github.com/neuromation/platform-api-clients/issues/412))
|
|
2084
|
+
|
|
2085
|
+
|
|
2086
|
+
Deprecations and Removals
|
|
2087
|
+
-------------------------
|
|
2088
|
+
|
|
2089
|
+
|
|
2090
|
+
- Jobs datastructure refactored ([#320](https://github.com/neuromation/platform-api-clients/issues/320))
|
|
2091
|
+
|
|
2092
|
+
- Removed _keyrings.cryptfile_ from project dependencies. Please remove it self if upgrade _neuromation_. ([#366](https://github.com/neuromation/platform-api-clients/issues/366))
|
|
2093
|
+
|
|
2094
|
+
|
|
2095
|
+
Misc
|
|
2096
|
+
----
|
|
2097
|
+
|
|
2098
|
+
- [#285](https://github.com/neuromation/platform-api-clients/issues/285), [#393](https://github.com/neuromation/platform-api-clients/issues/393)
|