From 63efaf23ed68955f97338f5fdf81989ddfd58943 Mon Sep 17 00:00:00 2001 From: Avery Harnish Date: Mon, 3 May 2021 13:50:20 -0500 Subject: [PATCH] feat: adds `rover docs open migration` --- CHANGELOG.md | 6 ++++++ src/command/docs/shortlinks.rs | 1 + 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca8ac559f..bc8d677c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,6 +32,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm [pull/487]: https://github.com/apollographql/rover/pull/487 ## 🚀 Features + +- **Adds link to the Apollo CLI -> Rover migration guide in `rover docs open` - [EverlastingBugstopper], [pull/492]** + + [EverlastingBugstopper]: https://github.com/EverlastingBugstopper + [pull/492]: https://github.com/apollographql/rover/pull/492 + ## 🐛 Fixes ## 🛠 Maintenance diff --git a/src/command/docs/shortlinks.rs b/src/command/docs/shortlinks.rs index 5bd36f8b9..18833e758 100644 --- a/src/command/docs/shortlinks.rs +++ b/src/command/docs/shortlinks.rs @@ -7,6 +7,7 @@ pub fn get_shortlinks_with_description() -> HashMap<&'static str, &'static str> links.insert("docs", "Rover's Documentation Homepage"); links.insert("api-keys", "Understanding Apollo's API Keys"); links.insert("contributing", "Contributing to Rover"); + links.insert("migration", "Migrate from the Apollo CLI to Rover"); links.insert("start", "Getting Started with Rover"); links }