@grafana/create-plugin 1.10.0-canary.331.cc6e77d.0 → 1.10.0

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,19 @@
1
+ # v1.10.0 (Mon Aug 07 2023)
2
+
3
+ :tada: This release contains work from a new contributor! :tada:
4
+
5
+ Thank you, Yulia Shanyrova ([@Ukochka](https://github.com/Ukochka)), for all your work!
6
+
7
+ #### 🚀 Enhancement
8
+
9
+ - sign-plugin: GRAFANA_ACESS_POLICY_TOKEN has been added instead of GRAFANA_API_KEY [#331](https://github.com/grafana/plugin-tools/pull/331) ([@Ukochka](https://github.com/Ukochka))
10
+
11
+ #### Authors: 1
12
+
13
+ - Yulia Shanyrova ([@Ukochka](https://github.com/Ukochka))
14
+
15
+ ---
16
+
1
17
  # v1.9.1 (Wed Aug 02 2023)
2
18
 
3
19
  #### 🐛 Bug Fix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "1.10.0-canary.331.cc6e77d.0",
3
+ "version": "1.10.0",
4
4
  "main": "index.js",
5
5
  "repository": {
6
6
  "directory": "packages/create-plugin",
@@ -66,5 +66,5 @@
66
66
  "engines": {
67
67
  "node": ">=16"
68
68
  },
69
- "gitHead": "cc6e77d2b730dfe44c297e567dbf536c6643e4c7"
69
+ "gitHead": "85bae17e8637567be338933541d02d811d314251"
70
70
  }
@@ -10,7 +10,8 @@ jobs:
10
10
  release:
11
11
  runs-on: ubuntu-latest
12
12
  env:
13
- GRAFANA_API_KEY: $\{{ secrets.GRAFANA_API_KEY }} # Requires a Grafana API key from Grafana.com.
13
+ # usage of GRAFANA_API_KEY is deprecated
14
+ # GRAFANA_API_KEY: $\{{ secrets.GRAFANA_API_KEY }}
14
15
  GRAFANA_ACCESS_POLICY_TOKEN: $\{{ secrets.GRAFANA_ACCESS_POLICY_TOKEN }}
15
16
  steps:
16
17
  - uses: actions/checkout@v3
@@ -58,11 +59,11 @@ jobs:
58
59
  version: latest
59
60
  args: buildAll
60
61
 
61
- - name: Warn missing Grafana API key
62
+ - name: Warn missing Grafana access policy token
62
63
  run: |
63
- echo Please generate a Grafana API key: https://grafana.com/docs/grafana/latest/developers/plugins/sign-a-plugin/#generate-an-api-key
64
+ echo Please generate a Grafana access policy token: https://grafana.com/docs/grafana/latest/developers/plugins/sign-a-plugin/#generate-a-token
64
65
  echo Once done please follow the instructions found here: https://github.com/$\{{github.repository}}/blob/main/README.md#using-github-actions-release-workflow
65
- if: $\{{ env.GRAFANA_API_KEY == '' }}
66
+ if: $\{{ env.GRAFANA_ACCESS_POLICY_TOKEN == '' }}
66
67
 
67
68
  - name: Sign plugin
68
69
  run: {{ packageManagerName }} run sign