Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,23 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Go 1.26
uses: actions/setup-go@v5
with:
# Use '1.26' to get the latest patch (e.g., 1.26.3) automatically
go-version: '1.26'
# Optional: ensures the action checks for the latest patch available
check-latest: true

- name: Verify Go version
run: go version

- uses: grafana/plugin-actions/build-plugin@main
with:
# refer to https://grafana.com/developers/plugin-tools/publish-a-plugin/sign-a-plugin#generate-an-access-policy-token to generate it
# save the value in your repository secrets
policy_token: ${{ secrets.GRAFANA_ACCESS_POLICY_TOKEN }}
attestation: true
use_changelog_generator: true # Enable automatic changelog generation
use_changelog_generator: true # Enable automatic changelog generation

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@
"engines": {
"node": ">=18"
},
"resolutions": {
"serialize-javascript": "7.0.5"
},
"dependencies": {
"@emotion/css": "11.13.5",
"@grafana/data": "12.4.2",
Expand Down
2 changes: 1 addition & 1 deletion releases/parseable-datasource-2.0.0.sha1
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ded3bc86057cc474aefe85b9c3e41d6bcd7cd3b6
e173c425ed452e6fdfbb5477fbf779c25968a63a
Binary file modified releases/parseable-datasource-2.0.0.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This data source plugin allows you to query, search and visualize telemetry data

## Pre-requisites

[Parseable server](https://github.com/parseablehq/parseable) setup and receiving telemetry data from your application. Read more on [Parseable documentation](https://www.parseable.io/docs/quick-start).
[Parseable server](https://github.com/parseablehq/parseable) setup and receiving telemetry data from your application. Read more on [Parseable documentation](https://www.parseable.com/docs/get-started).

## Installation

Expand Down
19 changes: 5 additions & 14 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6807,13 +6807,6 @@ raf@^3.1.0:
dependencies:
performance-now "^2.1.0"

randombytes@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
dependencies:
safe-buffer "^5.1.0"

raw-body@~1.1.0:
version "1.1.7"
resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-1.1.7.tgz#1d027c2bfa116acc6623bca8f00016572a87d425"
Expand Down Expand Up @@ -7321,7 +7314,7 @@ safe-array-concat@^1.1.3:
has-symbols "^1.1.0"
isarray "^2.0.5"

safe-buffer@>=5.1.0, safe-buffer@^5.1.0:
safe-buffer@>=5.1.0:
version "5.2.1"
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
Expand Down Expand Up @@ -7424,12 +7417,10 @@ semver@^7.3.5, semver@^7.5.3, semver@^7.5.4, semver@^7.6.0, semver@^7.6.3, semve
resolved "https://registry.yarnpkg.com/semver/-/semver-7.8.0.tgz#ed0661039fcbcda2ce71f01fa6adbefaa77040df"
integrity sha512-AcM7dV/5ul4EekoQ29Agm5vri8JNqRyj39o0qpX6vDF2GZrtutZl5RwgD1XnZjiTAfncsJhMI48QQH3sN87YNA==

serialize-javascript@^6.0.2:
version "6.0.2"
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.2.tgz#defa1e055c83bf6d59ea805d8da862254eb6a6c2"
integrity sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==
dependencies:
randombytes "^2.1.0"
serialize-javascript@7.0.5, serialize-javascript@^6.0.2:
version "7.0.5"
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-7.0.5.tgz#c798cc0552ffbb08981914a42a8756e339d0d5b1"
integrity sha512-F4LcB0UqUl1zErq+1nYEEzSHJnIwb3AF2XWB94b+afhrekOUijwooAYqFyRbjYkm2PAKBabx6oYv/xDxNi8IBw==

set-function-length@^1.2.2:
version "1.2.2"
Expand Down
Loading