diff --git a/charts b/charts index 3a6b09e62a..3c09f9a622 160000 --- a/charts +++ b/charts @@ -1 +1 @@ -Subproject commit 3a6b09e62a65a956953ae8517f7410dc07d88ec9 +Subproject commit 3c09f9a622dc65541f893f6a6fef4c2f58d1a1c1 diff --git a/cli b/cli index 2c2c02153f..ed35063e43 160000 --- a/cli +++ b/cli @@ -1 +1 @@ -Subproject commit 2c2c02153fe905c1c2382f145337fff0aa49979d +Subproject commit ed35063e436f5b8ded15342c4836bce2fcae3388 diff --git a/haupt b/haupt index 66c8ce9d47..9a509cd8ba 160000 --- a/haupt +++ b/haupt @@ -1 +1 @@ -Subproject commit 66c8ce9d473e845b359aa8c1e8379758addc7d10 +Subproject commit 9a509cd8ba1acba65a962c266e4d369a4cc8562b diff --git a/releases/2-1.md b/releases/2-1.md index c358a1a6f1..e5421811c8 100644 --- a/releases/2-1.md +++ b/releases/2-1.md @@ -13,6 +13,21 @@ sidebar: "releases" > **N.B.**: If you are upgrading from polyaxon v1.x, please check the [v2 release notes](/docs/releases/2-0/) and the [migration guide](/docs/resources/migration/#migration-from-v1x-to-v2y). +## V2.1.7 + +### CLI + + * **Enhancement**: Add `push` command to sync local artifact/component/model versions with a remote server. + * **Fix**: Fix issue with component pull command. + +### UI + + * **Enhancement**: Move workload metadata information in run's overview to show agent version and agent host if available. + +### Commercial + +* **Enhancement**: Add support for agent host setting. + ## V2.1.6 ### Core diff --git a/sdks b/sdks index 910647e1b5..64f25d2273 160000 --- a/sdks +++ b/sdks @@ -1 +1 @@ -Subproject commit 910647e1b5e0ffb552c953264347add6c07536de +Subproject commit 64f25d22735febb7c76160f0f5093d650a206aea diff --git a/site/docs/core/cli/cache.md b/site/docs/core/cli/cache.md index f2424f7e16..06f2bad0a8 100644 --- a/site/docs/core/cli/cache.md +++ b/site/docs/core/cli/cache.md @@ -45,7 +45,7 @@ All commands and sub-command of `project` and `ops` support this caching mechani Every time you create a project or start a run, Polyaxon will save the response of that entity to the cache. For example: -`polyaxon project create --name test` will create a new project and will automatically cache the value of that project. +`polyaxon project create --name test [--init]` will create a new project and will automatically cache the value of that project. In all subsequent commands, if the user does not provide a project `--project`, Polyaxon CLI will use this project that was created. `polyaxon run ...` will create a new run and will automatically cache the value. @@ -53,8 +53,8 @@ In all subsequent commands, if the user does not provide a project `--project/-p By creating new runs, Polyaxon will keep updating the cache detail to the latest created run. -You can also influence the run cache by getting a specific run, e.g. `polyaxon ops get -uid UUID` -will fetch the information about that specific run and persist the result to the cache so that you can run further commands +You can also influence the run cache by getting a specific run, e.g. `polyaxon ops get -uid UUID` +will fetch the information about that specific run and persist the result to the cache so that you can run further commands without the need to pass the `-uid UUID`, e.g. `polyaxon ops logs` will use the same `UUID`. ## Caching visibility