@backstage/frontend-defaults 0.1.0-next.1 → 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 +18 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @backstage/frontend-defaults
|
|
2
2
|
|
|
3
|
+
## 0.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 7c80650: Initial release of this package, which provides a default app setup through the `createApp` function. This replaces the existing `createApp` method from `@backstage/frontend-app-api`.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 7d19cd5: Added a new `CreateAppOptions` type for the `createApp` options.
|
|
12
|
+
- 7d19cd5: Added `createPublicSignInApp`, used to creating apps for the public entry point.
|
|
13
|
+
- 836127c: Updated dependency `@testing-library/react` to `^16.0.0`.
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @backstage/frontend-plugin-api@0.8.0
|
|
16
|
+
- @backstage/frontend-app-api@0.9.0
|
|
17
|
+
- @backstage/plugin-app@0.1.0
|
|
18
|
+
- @backstage/config@1.2.0
|
|
19
|
+
- @backstage/errors@1.2.4
|
|
20
|
+
|
|
3
21
|
## 0.1.0-next.1
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/frontend-defaults",
|
|
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",
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
"postpack": "backstage-cli package postpack"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@backstage/cli": "^0.27.1
|
|
32
|
-
"@backstage/core-plugin-api": "^1.9.4
|
|
33
|
-
"@backstage/test-utils": "^1.6.0
|
|
31
|
+
"@backstage/cli": "^0.27.1",
|
|
32
|
+
"@backstage/core-plugin-api": "^1.9.4",
|
|
33
|
+
"@backstage/test-utils": "^1.6.0",
|
|
34
34
|
"@testing-library/jest-dom": "^6.0.0",
|
|
35
35
|
"@testing-library/react": "^16.0.0"
|
|
36
36
|
},
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@backstage/config": "^1.2.0",
|
|
42
42
|
"@backstage/errors": "^1.2.4",
|
|
43
|
-
"@backstage/frontend-app-api": "^0.9.0
|
|
44
|
-
"@backstage/frontend-plugin-api": "^0.8.0
|
|
45
|
-
"@backstage/plugin-app": "^0.1.0
|
|
43
|
+
"@backstage/frontend-app-api": "^0.9.0",
|
|
44
|
+
"@backstage/frontend-plugin-api": "^0.8.0",
|
|
45
|
+
"@backstage/plugin-app": "^0.1.0",
|
|
46
46
|
"@react-hookz/web": "^24.0.0",
|
|
47
47
|
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0"
|
|
48
48
|
},
|