Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
with:
persist-credentials: false

- name: Setup environment
uses: actions/setup-node@v6
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
with:
node-version-file: '.nvmrc'

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
with:
ref: main
persist-credentials: false
Expand All @@ -42,7 +42,7 @@ jobs:

- name: Setup .npmrc file for NPM registry
if: steps.version_check.outputs.changed == 'true'
uses: actions/setup-node@v6
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
Expand All @@ -65,7 +65,7 @@ jobs:

- name: Setup .npmrc file for GitHub Packages
if: steps.version_check.outputs.changed == 'true'
uses: actions/setup-node@v6
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
with:
node-version-file: '.nvmrc'
registry-url: 'https://npm.pkg.github.com'
Expand All @@ -87,12 +87,12 @@ jobs:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
with:
persist-credentials: false

- name: Create Release Notes
uses: actions/[email protected]
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
Expand Down
58 changes: 29 additions & 29 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,44 +30,44 @@
"tslib": "^2.8.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.34.0",
"@grafana/data": "12.2.1",
"@grafana/eslint-config": "^8.0.0",
"@grafana/eslint-config": "8.2.0",
"@grafana/runtime": "12.2.1",
"@grafana/tsconfig": "^2.0.0",
"@grafana/tsconfig": "2.0.1",
"@grafana/ui": "12.2.1",
"@rollup/plugin-node-resolve": "^16.0.0",
"@stylistic/eslint-plugin-ts": "^4.2.0",
"@swc/core": "^1.7.40",
"@swc/jest": "^0.2.36",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.2",
"@rollup/plugin-node-resolve": "16.0.3",
"@stylistic/eslint-plugin-ts": "4.4.1",
"@swc/core": "1.13.21",
"@swc/jest": "0.2.39",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.8.0",
"@testing-library/react": "16.3.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/react-hooks": "8.0.1",
"@types/jest": "30.0.0",
"@types/react": "19.0.7",
"@types/react-dom": "19.0.3",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.12.0",
"@typescript-eslint/parser": "^8.12.0",
"esbuild": "^0.25.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jsdoc": "^60.5.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.0.4",
"jest-environment-jsdom": "^30.0.4",
"node-notifier": "^10.0.1",
"@types/semver": "7.7.1",
"@typescript-eslint/eslint-plugin": "8.41.0",
"@typescript-eslint/parser": "8.42.0",
"esbuild": "0.25.11",
"eslint": "9.36.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jsdoc": "60.8.3",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"identity-obj-proxy": "3.0.0",
"jest": "30.1.3",
"jest-environment-jsdom": "30.1.2",
"node-notifier": "10.0.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "^6.0.1",
"rollup": "^4.24.2",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-node-externals": "^8.0.0",
"rimraf": "6.0.1",
"rollup": "4.52.5",
"rollup-plugin-dts": "6.2.3",
"rollup-plugin-esbuild": "6.2.1",
"rollup-plugin-node-externals": "8.1.1",
"typescript": "5.9.3"
},
"packageManager": "[email protected]"
Expand Down
Loading