Skip to content
This repository was archived by the owner on Mar 11, 2024. It is now read-only.

Commit a3057d5

Browse files
authored
Update plugin signing and README (#28)
* Update plugin signing and README * Update CHANGELOG.md
1 parent 30f9752 commit a3057d5

File tree

6 files changed

+11
-14
lines changed

6 files changed

+11
-14
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# Change Log
22

3-
## 2.3.0 (IN PROGRESS)
3+
## 2.3.0 (2023-05-21)
44

55
### Features / Enhancements
66

77
- Update CI and Release Workflows to use setup-node cache (#24)
88
- Rebuild using 9.5.2 (#25)
99
- Add testing-library/react (#26)
1010
- Add E2E Cypress testing (#27)
11+
- Update plugin signing and README (#28)
1112

1213
## 2.2.0 (2023-02-16)
1314

README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,14 @@ yarn run start
5151
## Highlights
5252

5353
- Use `docker-compose` to start the development environment with provisioned data source and a dashboard.
54-
- Provides unit test configuration.
54+
- Provides unit and E2E test configuration.
5555
- Based on the latest version of Grafana.
56-
- Includes GitHub Actions for CI and Release.
56+
- Includes GitHub Actions for CI, E2E and Release.
5757
- Includes Static Data Source to emulate any data.
5858

59-
## Feedback
59+
## Support
6060

61-
We love to hear from you. There are various ways to get in touch with us:
62-
63-
- Ask a question, request a new feature, and file a bug with [GitHub issues](https://github.com/volkovlabs/volkovlabs-abc-panel/issues/new/choose).
64-
- Sponsor our open-source plugins for Grafana with [GitHub Sponsor](https://github.com/sponsors/VolkovLabs).
65-
- Star the repository to show your support.
61+
We provide GitHub Discussions and Premium tier support for the development plugins available via [GitHub Sponsor](https://github.com/sponsors/VolkovLabs).
6662

6763
## License
6864

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"e2e:update": "yarn cypress install && yarn grafana-e2e run --update-screenshots",
2525
"e2e": "yarn cypress install && yarn grafana-e2e run",
2626
"levitate": "npx @grafana/levitate@latest is-compatible --path src/module.ts --target @grafana/data,@grafana/runtime,@grafana/ui",
27-
"sign": "grafana-toolkit plugin:sign --rootUrls http://localhost:3000/",
27+
"sign": "npx --yes @grafana/sign-plugin@latest --rootUrls http://localhost:3000/",
2828
"start": "docker-compose pull && docker-compose up",
2929
"stop": "docker-compose down",
3030
"test": "grafana-toolkit plugin:test",

src/components/AbcPanel/AbcPanel.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react';
22
import { css, cx } from '@emotion/css';
33
import { PanelProps } from '@grafana/data';
44
import { TestIds } from '../../constants';
5-
import { getStyles } from '../../styles';
5+
import { Styles } from '../../styles';
66
import { PanelOptions } from '../../types';
77

88
/**
@@ -14,7 +14,7 @@ interface Props extends PanelProps<PanelOptions> {}
1414
* Panel
1515
*/
1616
export const AbcPanel: React.FC<Props> = ({ options, data, width, height }) => {
17-
const styles = getStyles();
17+
const styles = Styles();
1818

1919
/**
2020
* Get Field

src/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"links": [
1616
{
1717
"name": "Documentation",
18-
"url": "https://docs.volkovlabs.io"
18+
"url": "https://docs.volkovlabs.io/templates"
1919
},
2020
{
2121
"name": "GitHub",

src/styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { css } from '@emotion/css';
33
/**
44
* Styles
55
*/
6-
export const getStyles = () => {
6+
export const Styles = () => {
77
return {
88
wrapper: css`
99
position: relative;

0 commit comments

Comments
 (0)