diff --git a/CHANGELOG.md b/CHANGELOG.md index c614c5d..fa71268 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## 2.3.0 (IN PROGRESS) +## 2.3.0 (2023-05-21) ### Features / Enhancements @@ -8,6 +8,7 @@ - Rebuild using 9.5.2 (#25) - Add testing-library/react (#26) - Add E2E Cypress testing (#27) +- Update plugin signing and README (#28) ## 2.2.0 (2023-02-16) diff --git a/README.md b/README.md index f221fd1..b8a0df7 100644 --- a/README.md +++ b/README.md @@ -51,18 +51,14 @@ yarn run start ## Highlights - Use `docker-compose` to start the development environment with provisioned data source and a dashboard. -- Provides unit test configuration. +- Provides unit and E2E test configuration. - Based on the latest version of Grafana. -- Includes GitHub Actions for CI and Release. +- Includes GitHub Actions for CI, E2E and Release. - Includes Static Data Source to emulate any data. -## Feedback +## Support -We love to hear from you. There are various ways to get in touch with us: - -- Ask a question, request a new feature, and file a bug with [GitHub issues](https://github.com/volkovlabs/volkovlabs-abc-panel/issues/new/choose). -- Sponsor our open-source plugins for Grafana with [GitHub Sponsor](https://github.com/sponsors/VolkovLabs). -- Star the repository to show your support. +We provide GitHub Discussions and Premium tier support for the development plugins available via [GitHub Sponsor](https://github.com/sponsors/VolkovLabs). ## License diff --git a/package.json b/package.json index 38a5fd7..bfc4f39 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "e2e:update": "yarn cypress install && yarn grafana-e2e run --update-screenshots", "e2e": "yarn cypress install && yarn grafana-e2e run", "levitate": "npx @grafana/levitate@latest is-compatible --path src/module.ts --target @grafana/data,@grafana/runtime,@grafana/ui", - "sign": "grafana-toolkit plugin:sign --rootUrls http://localhost:3000/", + "sign": "npx --yes @grafana/sign-plugin@latest --rootUrls http://localhost:3000/", "start": "docker-compose pull && docker-compose up", "stop": "docker-compose down", "test": "grafana-toolkit plugin:test", diff --git a/src/components/AbcPanel/AbcPanel.tsx b/src/components/AbcPanel/AbcPanel.tsx index f968ec1..3c80b80 100644 --- a/src/components/AbcPanel/AbcPanel.tsx +++ b/src/components/AbcPanel/AbcPanel.tsx @@ -2,7 +2,7 @@ import React from 'react'; import { css, cx } from '@emotion/css'; import { PanelProps } from '@grafana/data'; import { TestIds } from '../../constants'; -import { getStyles } from '../../styles'; +import { Styles } from '../../styles'; import { PanelOptions } from '../../types'; /** @@ -14,7 +14,7 @@ interface Props extends PanelProps {} * Panel */ export const AbcPanel: React.FC = ({ options, data, width, height }) => { - const styles = getStyles(); + const styles = Styles(); /** * Get Field diff --git a/src/plugin.json b/src/plugin.json index 1b0946f..61d873f 100644 --- a/src/plugin.json +++ b/src/plugin.json @@ -15,7 +15,7 @@ "links": [ { "name": "Documentation", - "url": "https://docs.volkovlabs.io" + "url": "https://docs.volkovlabs.io/templates" }, { "name": "GitHub", diff --git a/src/styles.ts b/src/styles.ts index 2f2d267..d6d7547 100644 --- a/src/styles.ts +++ b/src/styles.ts @@ -3,7 +3,7 @@ import { css } from '@emotion/css'; /** * Styles */ -export const getStyles = () => { +export const Styles = () => { return { wrapper: css` position: relative;