@grafana/sign-plugin 1.0.0 → 1.0.1
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 +12 -0
- package/README.md +6 -6
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v1.0.1 (Fri Mar 03 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Add `@latest` to docs and scripts using npx commands [#208](https://github.com/grafana/plugin-tools/pull/208) ([@tolzhabayev](https://github.com/tolzhabayev))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Timur Olzhabayev ([@tolzhabayev](https://github.com/tolzhabayev))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.0.0 (Fri Feb 03 2023)
|
|
2
14
|
|
|
3
15
|
#### 💥 Breaking Change
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ Sign Grafana plugins with ease.
|
|
|
9
9
|
- [Sign a public plugin](#sign-a-public-plugin)
|
|
10
10
|
- [Sign a private plugin](#sign-a-private-plugin)
|
|
11
11
|
- [`npx`](#npx)
|
|
12
|
-
- [`yarn` (
|
|
12
|
+
- [`yarn` (\> 2.x)](#yarn--2x)
|
|
13
13
|
- [Contributing](#contributing)
|
|
14
14
|
|
|
15
15
|
**`@grafana/sign-plugin`** works on macOS, Windows and Linux.<br />
|
|
@@ -30,14 +30,14 @@ In your plugin directory, sign the plugin with your Grafana API key. Grafana sig
|
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
32
|
export GRAFANA_API_KEY=<YOUR_API_KEY>
|
|
33
|
-
npx @grafana/sign-plugin
|
|
33
|
+
npx @grafana/sign-plugin@latest
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
If the plugin distribution directory differs from the default `dist`, specify the path to use with the `--distDir` flag.
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
39
|
export GRAFANA_API_KEY=<YOUR_API_KEY>
|
|
40
|
-
npx @grafana/sign-plugin --distDir path/to/directory
|
|
40
|
+
npx @grafana/sign-plugin@latest --distDir path/to/directory
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
### Sign a private plugin
|
|
@@ -45,7 +45,7 @@ npx @grafana/sign-plugin --distDir path/to/directory
|
|
|
45
45
|
In your plugin directory, run the following to create a MANIFEST.txt file in the dist directory of your plugin.
|
|
46
46
|
|
|
47
47
|
```bash
|
|
48
|
-
npx @grafana/sign-plugin --rootUrls https://example.com/grafana
|
|
48
|
+
npx @grafana/sign-plugin@latest --rootUrls https://example.com/grafana
|
|
49
49
|
```
|
|
50
50
|
|
|
51
51
|
Alterntives:
|
|
@@ -53,13 +53,13 @@ Alterntives:
|
|
|
53
53
|
#### [`npx`](https://github.com/npm/npx)
|
|
54
54
|
|
|
55
55
|
```bash
|
|
56
|
-
npx @grafana/sign-plugin
|
|
56
|
+
npx @grafana/sign-plugin@latest
|
|
57
57
|
```
|
|
58
58
|
|
|
59
59
|
#### [`yarn`](https://yarnpkg.com/cli/dlx) (> 2.x)
|
|
60
60
|
|
|
61
61
|
```bash
|
|
62
|
-
yarn dlx @grafana/sign-plugin
|
|
62
|
+
yarn dlx @grafana/sign-plugin@latest
|
|
63
63
|
```
|
|
64
64
|
|
|
65
65
|
## Contributing
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/sign-plugin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"directory": "packages/sign-plugin",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"engines": {
|
|
42
42
|
"node": ">=16"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "df4b2df88e1f540db9d6f3122115e1ac5bbdf2cf"
|
|
45
45
|
}
|