Skip to content

Commit f42eb51

Browse files
authored
dependencies update (#336)
1 parent d5fc8d5 commit f42eb51

File tree

6 files changed

+6279
-8438
lines changed

6 files changed

+6279
-8438
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 1.3.3 (2023-03-20)
4+
5+
- **Chore**: dependencies update
6+
- **Chore**: spellcheck added
7+
38
## 1.3.2 (2022-10-14)
49

510
[Full changelog](https://github.com/grafana/grafana-json-datasource/compare/v1.3.1...v1.3.2)

cspell.config.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,23 @@
77
"./website/*.js",
88
"./website/.docusaurus/",
99
"./website/node_modules/",
10-
"./website/.docusaurus/"
10+
"./website/.docusaurus/",
11+
"docker-compose.yaml"
1112
],
1213
"words": [
1314
"amng",
1415
"clsx",
1516
"datasource",
17+
"datasources",
1618
"jirkafajfr",
1719
"jsonapi",
1820
"jsonata",
21+
"jsonplaceholder",
1922
"Kensington",
2023
"marcusolsson",
2124
"Olsson",
2225
"rejohnst",
26+
"testdata",
2327
"Timestmap",
2428
"Totalus",
2529
"Typeahead",

docker-compose.yaml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: '3.7'
2+
services:
3+
grafana:
4+
image: grafana/grafana-enterprise:${GF_VERSION:-9.4.3}
5+
container_name: marcusolsson-json-datasource
6+
ports:
7+
- 3000:3000/tcp
8+
volumes:
9+
- ./dist:/var/lib/grafana/plugins/grafana-json-datasource
10+
- ./provisioning:/etc/grafana/provisioning
11+
environment:
12+
- TERM=linux
13+
- GF_DEFAULT_APP_MODE=development
14+
- GF_FEATURE_TOGGLES_ENABLE=topnav
15+
- GF_AUTH_ANONYMOUS_ENABLED=true
16+
- GF_AUTH_ANONYMOUS_ORG_ROLE=Admin
17+
- GF_SECURITY_ADMIN_USER=grafana
18+
- GF_SECURITY_ADMIN_PASSWORD=grafana
19+
- GF_ENTERPRISE_LICENSE_TEXT=$GF_ENTERPRISE_LICENSE_TEXT

package.json

+16-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "grafana-json-datasource",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"description": "A data source plugin for loading JSON APIs into Grafana",
55
"keywords": [
66
"grafana",
@@ -27,23 +27,33 @@
2727
"jsonata": "^1.8.6",
2828
"jsonpath-plus": "^6.0.1",
2929
"memory-cache": "^0.2.0",
30+
"moment": "2.29.4",
31+
"react": "17.0.2",
32+
"react-dom": "17.0.2",
3033
"tslib": "^2.3.0"
3134
},
3235
"devDependencies": {
3336
"@emotion/core": "10.0.27",
34-
"@grafana/data": "8.3.4",
35-
"@grafana/runtime": "8.3.4",
36-
"@grafana/toolkit": "8.3.4",
37-
"@grafana/ui": "8.3.4",
37+
"@grafana/data": "9.4.3",
38+
"@grafana/eslint-config": "^5.1.0",
39+
"@grafana/runtime": "9.4.3",
40+
"@grafana/toolkit": "9.4.3",
41+
"@grafana/ui": "9.4.3",
3842
"@testing-library/jest-dom": "5.4.0",
3943
"@testing-library/react": "^10.0.2",
4044
"@types/lodash": "^4.14.168",
4145
"@types/memory-cache": "^0.2.1",
4246
"@types/react-virtualized-auto-sizer": "^1.0.0",
43-
"cspell": "^6.30.2",
47+
"@typescript-eslint/eslint-plugin": "^5.55.0",
48+
"cspell": "6.30.2",
4449
"emotion": "10.0.27",
4550
"react-virtualized-auto-sizer": "^1.0.4"
4651
},
52+
"resolutions": {
53+
"minimist": "1.2.8",
54+
"moment": "2.29.4",
55+
"moment-timezone": "0.5.41"
56+
},
4757
"engines": {
4858
"node": ">=14"
4959
}

provisioning/datasources/default.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
apiVersion: 1
2+
3+
datasources:
4+
- name: jsonplaceholder
5+
uid: jsonplaceholder
6+
type: marcusolsson-json-datasource
7+
url: https://jsonplaceholder.typicode.com

0 commit comments

Comments
 (0)