@backstage/plugin-devtools-backend 0.1.0-next.0 → 0.1.1-next.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 +37 -0
- package/README.md +1 -2
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# @backstage/plugin-devtools-backend
|
|
2
2
|
|
|
3
|
+
## 0.1.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 3d11596a72b5: Update plugin installation docs to be more consistent across documentations
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/config-loader@1.3.1-next.0
|
|
10
|
+
- @backstage/backend-common@0.18.6-next.0
|
|
11
|
+
- @backstage/config@1.0.7
|
|
12
|
+
- @backstage/cli-common@0.1.12
|
|
13
|
+
- @backstage/errors@1.1.5
|
|
14
|
+
- @backstage/types@1.0.2
|
|
15
|
+
- @backstage/plugin-auth-node@0.2.15-next.0
|
|
16
|
+
- @backstage/plugin-devtools-common@0.1.0
|
|
17
|
+
- @backstage/plugin-permission-common@0.7.5
|
|
18
|
+
- @backstage/plugin-permission-node@0.7.9-next.0
|
|
19
|
+
|
|
20
|
+
## 0.1.0
|
|
21
|
+
|
|
22
|
+
### Minor Changes
|
|
23
|
+
|
|
24
|
+
- 347aeca204c: Introduced the DevTools plugin, checkout the plugin's [`README.md`](https://github.com/backstage/backstage/tree/master/plugins/devtools) for more details!
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- Updated dependencies
|
|
29
|
+
- @backstage/plugin-devtools-common@0.1.0
|
|
30
|
+
- @backstage/backend-common@0.18.5
|
|
31
|
+
- @backstage/config-loader@1.3.0
|
|
32
|
+
- @backstage/plugin-permission-node@0.7.8
|
|
33
|
+
- @backstage/plugin-auth-node@0.2.14
|
|
34
|
+
- @backstage/cli-common@0.1.12
|
|
35
|
+
- @backstage/config@1.0.7
|
|
36
|
+
- @backstage/errors@1.1.5
|
|
37
|
+
- @backstage/types@1.0.2
|
|
38
|
+
- @backstage/plugin-permission-common@0.7.5
|
|
39
|
+
|
|
3
40
|
## 0.1.0-next.0
|
|
4
41
|
|
|
5
42
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -10,8 +10,7 @@ Here's how to get the DevTools Backend up and running:
|
|
|
10
10
|
|
|
11
11
|
```sh
|
|
12
12
|
# From the Backstage root directory
|
|
13
|
-
|
|
14
|
-
yarn add @backstage/plugin-devtools-backend
|
|
13
|
+
yarn add --cwd packages/backend @backstage/plugin-devtools-backend
|
|
15
14
|
```
|
|
16
15
|
|
|
17
16
|
2. Then we will create a new file named `packages/backend/src/plugins/devtools.ts`, and add the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-devtools-backend",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1-next.0",
|
|
4
4
|
"main": "dist/index.cjs.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -22,15 +22,15 @@
|
|
|
22
22
|
"postpack": "backstage-cli package postpack"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@backstage/backend-common": "^0.18.
|
|
25
|
+
"@backstage/backend-common": "^0.18.6-next.0",
|
|
26
26
|
"@backstage/cli-common": "^0.1.12",
|
|
27
27
|
"@backstage/config": "^1.0.7",
|
|
28
|
-
"@backstage/config-loader": "^1.3.
|
|
28
|
+
"@backstage/config-loader": "^1.3.1-next.0",
|
|
29
29
|
"@backstage/errors": "^1.1.5",
|
|
30
|
-
"@backstage/plugin-auth-node": "^0.2.
|
|
31
|
-
"@backstage/plugin-devtools-common": "^0.1.0
|
|
30
|
+
"@backstage/plugin-auth-node": "^0.2.15-next.0",
|
|
31
|
+
"@backstage/plugin-devtools-common": "^0.1.0",
|
|
32
32
|
"@backstage/plugin-permission-common": "^0.7.5",
|
|
33
|
-
"@backstage/plugin-permission-node": "^0.7.
|
|
33
|
+
"@backstage/plugin-permission-node": "^0.7.9-next.0",
|
|
34
34
|
"@backstage/types": "^1.0.2",
|
|
35
35
|
"@manypkg/get-packages": "^1.1.3",
|
|
36
36
|
"@types/express": "*",
|
|
@@ -47,12 +47,12 @@
|
|
|
47
47
|
"yn": "^4.0.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@backstage/cli": "^0.22.
|
|
50
|
+
"@backstage/cli": "^0.22.8-next.0",
|
|
51
51
|
"@types/minimist": "^1.2.0",
|
|
52
52
|
"@types/ping": "^0.4.1",
|
|
53
53
|
"@types/supertest": "^2.0.8",
|
|
54
54
|
"@types/yarnpkg__lockfile": "^1.1.4",
|
|
55
|
-
"msw": "^0.
|
|
55
|
+
"msw": "^1.0.0",
|
|
56
56
|
"supertest": "^6.2.4"
|
|
57
57
|
},
|
|
58
58
|
"files": [
|