@backstage-community/plugin-newrelic 0.16.0 → 0.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/alpha.d.ts +4 -5
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @backstage-community/plugin-newrelic
|
|
2
2
|
|
|
3
|
+
## 0.18.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 7e9b070: Backstage version bump to v1.47.2
|
|
8
|
+
|
|
9
|
+
## 0.17.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- b3b97f0: Backstage version bump to v1.46.1
|
|
14
|
+
|
|
3
15
|
## 0.16.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import * as react from 'react';
|
|
3
3
|
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
4
|
-
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
5
4
|
|
|
6
5
|
/** @alpha */
|
|
7
6
|
declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin<{}, {}, {
|
|
@@ -10,11 +9,11 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
10
9
|
name: undefined;
|
|
11
10
|
config: {};
|
|
12
11
|
configInput: {};
|
|
13
|
-
output: _backstage_frontend_plugin_api.ExtensionDataRef<
|
|
12
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
14
13
|
inputs: {};
|
|
15
14
|
params: <TApi, TImpl extends TApi, TDeps extends {
|
|
16
15
|
[x: string]: unknown;
|
|
17
|
-
}>(params:
|
|
16
|
+
}>(params: _backstage_frontend_plugin_api.ApiFactory<TApi, TImpl, TDeps>) => _backstage_frontend_plugin_api.ExtensionBlueprintParams<_backstage_frontend_plugin_api.AnyApiFactory>;
|
|
18
17
|
}>;
|
|
19
18
|
"nav-item:newrelic": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
20
19
|
kind: "nav-item";
|
|
@@ -23,13 +22,13 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
23
22
|
configInput: {};
|
|
24
23
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<{
|
|
25
24
|
title: string;
|
|
26
|
-
icon:
|
|
25
|
+
icon: _backstage_frontend_plugin_api.IconComponent;
|
|
27
26
|
routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
28
27
|
}, "core.nav-item.target", {}>;
|
|
29
28
|
inputs: {};
|
|
30
29
|
params: {
|
|
31
30
|
title: string;
|
|
32
|
-
icon:
|
|
31
|
+
icon: _backstage_frontend_plugin_api.IconComponent;
|
|
33
32
|
routeRef: _backstage_frontend_plugin_api.RouteRef<undefined>;
|
|
34
33
|
};
|
|
35
34
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-newrelic",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.0",
|
|
4
4
|
"description": "A Backstage plugin that integrates towards New Relic",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -66,10 +66,10 @@
|
|
|
66
66
|
"test": "backstage-cli package test"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@backstage/core-compat-api": "^0.5.
|
|
70
|
-
"@backstage/core-components": "^0.18.
|
|
71
|
-
"@backstage/core-plugin-api": "^1.12.
|
|
72
|
-
"@backstage/frontend-plugin-api": "^0.13.
|
|
69
|
+
"@backstage/core-compat-api": "^0.5.7",
|
|
70
|
+
"@backstage/core-components": "^0.18.6",
|
|
71
|
+
"@backstage/core-plugin-api": "^1.12.2",
|
|
72
|
+
"@backstage/frontend-plugin-api": "^0.13.4",
|
|
73
73
|
"@material-ui/core": "^4.12.2",
|
|
74
74
|
"@material-ui/icons": "^4.9.1",
|
|
75
75
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -78,9 +78,9 @@
|
|
|
78
78
|
"react-use": "^17.2.4"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"@backstage/cli": "^0.
|
|
82
|
-
"@backstage/dev-utils": "^1.1.
|
|
83
|
-
"@backstage/test-utils": "^1.7.
|
|
81
|
+
"@backstage/cli": "^0.35.3",
|
|
82
|
+
"@backstage/dev-utils": "^1.1.19",
|
|
83
|
+
"@backstage/test-utils": "^1.7.14",
|
|
84
84
|
"@testing-library/dom": "^10.0.0",
|
|
85
85
|
"@testing-library/jest-dom": "^6.0.0",
|
|
86
86
|
"@testing-library/react": "^15.0.0",
|