@backstage/plugin-app 0.1.0-next.2 → 0.1.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 +47 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,52 @@
|
|
|
1
1
|
# @backstage/plugin-app
|
|
2
2
|
|
|
3
|
+
## 0.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 2bb9517: Introduce the `@backstage/plugin-app` package to hold all of the built-in extensions for easy consumption and overriding.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 52f9c5a: Deprecated the `namespace` option for `createExtensionBlueprint` and `createExtension`, these are no longer required and will default to the `pluginId` instead.
|
|
12
|
+
|
|
13
|
+
You can migrate some of your extensions that use `createExtensionOverrides` to using `createFrontendModule` instead and providing a `pluginId` there.
|
|
14
|
+
|
|
15
|
+
```ts
|
|
16
|
+
// Before
|
|
17
|
+
createExtensionOverrides({
|
|
18
|
+
extensions: [
|
|
19
|
+
createExtension({
|
|
20
|
+
name: 'my-extension',
|
|
21
|
+
namespace: 'my-namespace',
|
|
22
|
+
kind: 'test',
|
|
23
|
+
...
|
|
24
|
+
})
|
|
25
|
+
],
|
|
26
|
+
});
|
|
27
|
+
|
|
28
|
+
// After
|
|
29
|
+
createFrontendModule({
|
|
30
|
+
pluginId: 'my-namespace',
|
|
31
|
+
extensions: [
|
|
32
|
+
createExtension({
|
|
33
|
+
name: 'my-extension',
|
|
34
|
+
kind: 'test',
|
|
35
|
+
...
|
|
36
|
+
})
|
|
37
|
+
],
|
|
38
|
+
});
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
- 57bf6ae: Fix issue with `AlertDisplay` and other components defined with `AppRootElementBlueprint` not being rendered when at the `SignInWrapper`
|
|
42
|
+
- 836127c: Updated dependency `@testing-library/react` to `^16.0.0`.
|
|
43
|
+
- Updated dependencies
|
|
44
|
+
- @backstage/core-components@0.15.0
|
|
45
|
+
- @backstage/frontend-plugin-api@0.8.0
|
|
46
|
+
- @backstage/core-plugin-api@1.9.4
|
|
47
|
+
- @backstage/theme@0.5.7
|
|
48
|
+
- @backstage/plugin-permission-react@0.4.26
|
|
49
|
+
|
|
3
50
|
## 0.1.0-next.2
|
|
4
51
|
|
|
5
52
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-app",
|
|
3
|
-
"version": "0.1.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"main": "dist/index.esm.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"postpack": "backstage-cli package postpack"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@backstage/core-components": "^0.
|
|
38
|
-
"@backstage/core-plugin-api": "^1.9.4
|
|
39
|
-
"@backstage/frontend-plugin-api": "^0.8.0
|
|
40
|
-
"@backstage/plugin-permission-react": "^0.4.26
|
|
41
|
-
"@backstage/theme": "^0.5.7
|
|
37
|
+
"@backstage/core-components": "^0.15.0",
|
|
38
|
+
"@backstage/core-plugin-api": "^1.9.4",
|
|
39
|
+
"@backstage/frontend-plugin-api": "^0.8.0",
|
|
40
|
+
"@backstage/plugin-permission-react": "^0.4.26",
|
|
41
|
+
"@backstage/theme": "^0.5.7",
|
|
42
42
|
"@material-ui/core": "^4.9.13",
|
|
43
43
|
"@material-ui/icons": "^4.9.1",
|
|
44
44
|
"@material-ui/lab": "^4.0.0-alpha.61",
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@backstage/cli": "^0.27.1
|
|
54
|
-
"@backstage/dev-utils": "^1.1.0
|
|
55
|
-
"@backstage/frontend-test-utils": "^0.2.0
|
|
53
|
+
"@backstage/cli": "^0.27.1",
|
|
54
|
+
"@backstage/dev-utils": "^1.1.0",
|
|
55
|
+
"@backstage/frontend-test-utils": "^0.2.0",
|
|
56
56
|
"@testing-library/jest-dom": "^6.0.0",
|
|
57
57
|
"@testing-library/react": "^16.0.0",
|
|
58
58
|
"@testing-library/user-event": "^14.0.0",
|