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

Commit

Permalink
Update plugin signing and README (#28)
Browse files Browse the repository at this point in the history
* Update plugin signing and README

* Update CHANGELOG.md
  • Loading branch information
mikhail-vl authored May 22, 2023
1 parent 30f9752 commit a3057d5
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 14 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# Change Log

## 2.3.0 (IN PROGRESS)
## 2.3.0 (2023-05-21)

### Features / Enhancements

- Update CI and Release Workflows to use setup-node cache (#24)
- 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)

Expand Down
12 changes: 4 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions src/components/AbcPanel/AbcPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';

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

/**
* Get Field
Expand Down
2 changes: 1 addition & 1 deletion src/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"links": [
{
"name": "Documentation",
"url": "https://docs.volkovlabs.io"
"url": "https://docs.volkovlabs.io/templates"
},
{
"name": "GitHub",
Expand Down
2 changes: 1 addition & 1 deletion src/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { css } from '@emotion/css';
/**
* Styles
*/
export const getStyles = () => {
export const Styles = () => {
return {
wrapper: css`
position: relative;
Expand Down

0 comments on commit a3057d5

Please sign in to comment.