From 267c20d864d93fd1241708b5219287939f103a2d Mon Sep 17 00:00:00 2001 From: Brian Weaver Date: Fri, 20 Sep 2024 07:59:53 -0400 Subject: [PATCH 1/3] Add terminus 3.6.0 release --- source/releasenotes/2024-09-18-terminus-360.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 source/releasenotes/2024-09-18-terminus-360.md diff --git a/source/releasenotes/2024-09-18-terminus-360.md b/source/releasenotes/2024-09-18-terminus-360.md new file mode 100644 index 0000000000..3ea7009627 --- /dev/null +++ b/source/releasenotes/2024-09-18-terminus-360.md @@ -0,0 +1,10 @@ +--- +title: Terminus 3.6.0 Released +published_date: "2024-09-18" +categories: [documentation] +--- +Added + +- New command "site:label:set" to set a site's label ([#2626](https://github.com/pantheon-systems/terminus/pull/2626])) +- Track command success rates and execution time ([#2623](https://github.com/pantheon-systems/terminus/pull/2623)) + From 7d04d14ec13b4d257fddc932f7ee0de4d4ed28f1 Mon Sep 17 00:00:00 2001 From: Rachel Whitton Date: Mon, 23 Sep 2024 12:46:51 -0500 Subject: [PATCH 2/3] Rewrite release note copy --- .../releasenotes/2024-09-18-terminus-360.md | 10 ------- .../releasenotes/2024-09-23-terminus-360.md | 28 +++++++++++++++++++ 2 files changed, 28 insertions(+), 10 deletions(-) delete mode 100644 source/releasenotes/2024-09-18-terminus-360.md create mode 100644 source/releasenotes/2024-09-23-terminus-360.md diff --git a/source/releasenotes/2024-09-18-terminus-360.md b/source/releasenotes/2024-09-18-terminus-360.md deleted file mode 100644 index 3ea7009627..0000000000 --- a/source/releasenotes/2024-09-18-terminus-360.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: Terminus 3.6.0 Released -published_date: "2024-09-18" -categories: [documentation] ---- -Added - -- New command "site:label:set" to set a site's label ([#2626](https://github.com/pantheon-systems/terminus/pull/2626])) -- Track command success rates and execution time ([#2623](https://github.com/pantheon-systems/terminus/pull/2623)) - diff --git a/source/releasenotes/2024-09-23-terminus-360.md b/source/releasenotes/2024-09-23-terminus-360.md new file mode 100644 index 0000000000..94a7a04185 --- /dev/null +++ b/source/releasenotes/2024-09-23-terminus-360.md @@ -0,0 +1,28 @@ +--- +title: "Terminus 3.6.0 release" +published_date: "2024-09-23" +categories: [tools-apis, new-feature] +--- +Site labels can now be renamed self-serve via Terminus with the new `site:label:set` command. Previously, updating a site's label was only possible by contacting support. + +A site on Pantheon has both a machine name and a human-readable label. +* Machine name (e.g., `my-awesome-site`): used in [Terminus commands](/terminus/examples#siteenv), constructs [platform domains](/guides/domains), and cannot be changed after site creation +* Human-readable label (e.g., `My Awesome Site`): shown in the Pantheon workspace, site dashboards, and can be changed after site creation via Terminus. For example: + +```shell{promptUser: user} +terminus site:label:set my-awesome-site "My Awesome Site D11" +``` + +Upgrade today to leverage this new command. + +## Upgrade Terminus +Installations managed by Homebrew on MacOS can update with the following command: + +```shell{promptUser: user} +brew upgrade pantheon-systems/external/terminus +``` +See additional upgrade instructions for other systems [here](/terminus/install). + +### Also added +In addition to this new command, the [Terminus 3.6.0 release](https://github.com/pantheon-systems/terminus/releases/tag/3.6.0) also adds the following: +- Track command success rates and execution time ([#2623](https://github.com/pantheon-systems/terminus/pull/2623)) From c78133afc190cdb6c7dd54db0b332be704e46004 Mon Sep 17 00:00:00 2001 From: Ingrid <148255657+IngridKwok@users.noreply.github.com> Date: Mon, 23 Sep 2024 13:31:21 -0700 Subject: [PATCH 3/3] Update 2024-09-23-terminus-360.md --- .../releasenotes/2024-09-23-terminus-360.md | 23 +++++++++---------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/source/releasenotes/2024-09-23-terminus-360.md b/source/releasenotes/2024-09-23-terminus-360.md index 94a7a04185..89f0a99e2f 100644 --- a/source/releasenotes/2024-09-23-terminus-360.md +++ b/source/releasenotes/2024-09-23-terminus-360.md @@ -1,28 +1,27 @@ --- -title: "Terminus 3.6.0 release" +title: "New self-serve command in Terminus 3.6.0 for renaming site labels" published_date: "2024-09-23" categories: [tools-apis, new-feature] --- -Site labels can now be renamed self-serve via Terminus with the new `site:label:set` command. Previously, updating a site's label was only possible by contacting support. +With the [Terminus 3.6.0 release](https://github.com/pantheon-systems/terminus/releases/tag/3.6.0), you can now rename site labels directly through Terminus using the new `site:label:set` command. Previously, updating a site's label required contacting Support. -A site on Pantheon has both a machine name and a human-readable label. -* Machine name (e.g., `my-awesome-site`): used in [Terminus commands](/terminus/examples#siteenv), constructs [platform domains](/guides/domains), and cannot be changed after site creation -* Human-readable label (e.g., `My Awesome Site`): shown in the Pantheon workspace, site dashboards, and can be changed after site creation via Terminus. For example: +A site on Pantheon has both a machine name and a human-readable label: +* **Machine name** (e.g., `my-awesome-site`): Used in [Terminus commands](/terminus/examples#siteenv), constructs [platform domains](/guides/domains), and cannot be changed after site creation. +* **Human-readable label** (e.g., `My Awesome Site`): Shown in the Pantheon workspace and site dashboards. This label can be changed after site creation via Terminus. For example: ```shell{promptUser: user} terminus site:label:set my-awesome-site "My Awesome Site D11" ``` -Upgrade today to leverage this new command. +**Upgrade today to take advantage of this new command.** -## Upgrade Terminus -Installations managed by Homebrew on MacOS can update with the following command: +## How to upgrade Terminus +If you manage your installation via Homebrew on macOS, you can update Terminus with the following command: ```shell{promptUser: user} brew upgrade pantheon-systems/external/terminus ``` -See additional upgrade instructions for other systems [here](/terminus/install). +For other systems, see additional upgrade instructions [here](/terminus/install). -### Also added -In addition to this new command, the [Terminus 3.6.0 release](https://github.com/pantheon-systems/terminus/releases/tag/3.6.0) also adds the following: -- Track command success rates and execution time ([#2623](https://github.com/pantheon-systems/terminus/pull/2623)) +### Additional updates in Terminus 3.6.0 +Tracking of command success rates and execution time ([#2623](https://github.com/pantheon-systems/terminus/pull/2623)).