From 2a57e1108cdaafbebfb3c1f825e43c78f65a5b01 Mon Sep 17 00:00:00 2001 From: Arve Knudsen Date: Tue, 28 Apr 2020 21:26:36 +0200 Subject: [PATCH] Chore: Put what's new and release notes URLs in package.json (#24006) * Put what's new and release notes URLs in package.json * Upgrade build pipeline tool --- .circleci/config.yml | 2 +- package.json | 4 ++++ scripts/build/publish.sh | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 62b6625beb4..b0fd33caf06 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -54,7 +54,7 @@ commands: - run: name: "Install Grafana build pipeline tool" command: | - VERSION=0.2.12 + VERSION=0.4.0 curl -fLO https://grafana-downloads.storage.googleapis.com/grafana-build-pipeline/v${VERSION}/grabpl chmod +x grabpl mv grabpl /tmp diff --git a/package.json b/package.json index 81a347f3299..8fadabbb516 100644 --- a/package.json +++ b/package.json @@ -42,6 +42,10 @@ "plugins:build-bundled": "grafana-toolkit plugin:bundle-managed", "watch": "yarn start -d watch,start core:start --watchTheme " }, + "grafana": { + "whatsNewUrl": "https://grafana.com/docs/grafana/latest/guides/whats-new-in-v7-0/", + "releaseNotesUrl": "https://community.grafana.com/t/release-notes-v7-0-x/29381" + }, "husky": { "hooks": { "pre-commit": "lint-staged && npm run precommit" diff --git a/scripts/build/publish.sh b/scripts/build/publish.sh index fc312d0f404..5da55e36b49 100755 --- a/scripts/build/publish.sh +++ b/scripts/build/publish.sh @@ -8,8 +8,8 @@ EXTRA_OPTS="$@" # Right now we hack this in into the publish script. # Eventually we might want to keep a list of all previous releases somewhere. -_releaseNoteUrl="https://community.grafana.com/t/release-notes-v6-0-x/14010" -_whatsNewUrl="http://docs.grafana.org/guides/whats-new-in-v6-0/" +_releaseNoteUrl="https://community.grafana.com/t/release-notes-v7-0-x/29381" +_whatsNewUrl="https://grafana.com/docs/grafana/latest/guides/whats-new-in-v7-0/" ./scripts/build/release_publisher/release_publisher \ --wn "${_whatsNewUrl}" \