Skip to content

Commit 232be88

Browse files
committedAug 27, 2021·
update to grafana 8.1.2
1 parent 994dfac commit 232be88

File tree

7 files changed

+1740
-1435
lines changed

7 files changed

+1740
-1435
lines changed
 

‎dist/module.js

+4-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/module.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/plugin.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"type": "datasource",
3-
"name": "GraphQL Data Source",
3+
"name": "GraphQL",
44
"id": "fifemon-graphql-datasource",
55
"metrics": true,
66
"annotations": true,
@@ -25,7 +25,7 @@
2525
{ "name": "GitHub Security Advisories", "path": "img/github_security_advisories.png"}
2626
],
2727
"version": "1.3.0",
28-
"updated": "2021-03-16"
28+
"updated": "2021-08-27"
2929
},
3030

3131
"dependencies": {

‎package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
"author": "Kevin Retzke",
1212
"license": "Apache-2.0",
1313
"devDependencies": {
14-
"@grafana/data": "7.4.3",
15-
"@grafana/runtime": "7.4.3",
16-
"@grafana/toolkit": "7.4.3",
17-
"@grafana/ui": "7.4.3",
14+
"@grafana/data": "8.1.2",
15+
"@grafana/runtime": "8.1.2",
16+
"@grafana/toolkit": "8.1.2",
17+
"@grafana/ui": "8.1.2",
1818
"moment": "*"
1919
},
2020
"dependencies": {
21-
"@types/lodash": "^4.14.144"
21+
"@types/lodash": "^4.14.172"
2222
}
2323
}

‎src/DataSource.ts

+6-5
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@ import defaults from 'lodash/defaults';
22

33
import {
44
AnnotationEvent,
5-
AnnotationQueryRequest,
65
DataQueryRequest,
76
DataQueryResponse,
87
DataSourceApi,
98
MetricFindValue,
109
DataSourceInstanceSettings,
1110
ScopedVars,
1211
TimeRange,
12+
dateTime,
13+
MutableDataFrame,
14+
FieldType,
15+
DataFrame,
1316
} from '@grafana/data';
1417

1518
import {
@@ -20,10 +23,8 @@ import {
2023
MultiValueVariable,
2124
TextValuePair,
2225
} from './types';
23-
import { dateTime, MutableDataFrame, FieldType, DataFrame } from '@grafana/data';
2426
import { getTemplateSrv } from '@grafana/runtime';
2527
import _ from 'lodash';
26-
import { isEqual } from 'lodash';
2728
import { flatten, isRFC3339_ISO6801 } from './util';
2829

2930
const supportedVariableTypes = ['constant', 'custom', 'query', 'textbox'];
@@ -222,7 +223,7 @@ export class DataSource extends DataSourceApi<MyQuery, MyDataSourceOptions> {
222223
return { data: dataFrameArray };
223224
});
224225
}
225-
annotationQuery(options: AnnotationQueryRequest<MyQuery>): Promise<AnnotationEvent[]> {
226+
annotationQuery(options: any): Promise<AnnotationEvent[]> {
226227
const query = defaults(options.annotation, defaultQuery);
227228
return Promise.all([this.createQuery(query, options.range)]).then((results: any) => {
228229
const r: AnnotationEvent[] = [];
@@ -337,7 +338,7 @@ export class DataSource extends DataSourceApi<MyQuery, MyDataSourceOptions> {
337338
const supportedVariable = variable as MultiValueVariable;
338339

339340
let variableValue = supportedVariable.current.value;
340-
if (variableValue === '$__all' || isEqual(variableValue, ['$__all'])) {
341+
if (variableValue === '$__all' || _.isEqual(variableValue, ['$__all'])) {
341342
if (supportedVariable.allValue === null || supportedVariable.allValue === '') {
342343
variableValue = supportedVariable.options.slice(1).map((textValuePair) => textValuePair.value);
343344
} else {

‎src/plugin.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"type": "datasource",
3-
"name": "GraphQL Data Source",
3+
"name": "GraphQL",
44
"id": "fifemon-graphql-datasource",
55
"metrics": true,
66
"annotations": true,

‎yarn.lock

+1,721-1,409
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.