@backstage/backend-app-api 0.4.0 → 0.4.1-next.1
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.
Potentially problematic release.
This version of @backstage/backend-app-api might be problematic. Click here for more details.
- package/CHANGELOG.md +35 -0
- package/README.md +1 -1
- package/dist/index.cjs.js +2 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +218 -256
- package/package.json +14 -15
- package/alpha/package.json +0 -6
- package/dist/index.alpha.d.ts +0 -476
- package/dist/index.beta.d.ts +0 -476
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# @backstage/backend-app-api
|
|
2
2
|
|
|
3
|
+
## 0.4.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 482dae5de1c: Updated link to docs.
|
|
8
|
+
- 915e46622cf: Add support for `NotImplementedError`, properly returning 501 as status code.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/plugin-permission-node@0.7.6-next.1
|
|
11
|
+
- @backstage/errors@1.1.5-next.0
|
|
12
|
+
- @backstage/backend-common@0.18.3-next.1
|
|
13
|
+
- @backstage/config-loader@1.1.9-next.0
|
|
14
|
+
- @backstage/plugin-auth-node@0.2.12-next.1
|
|
15
|
+
- @backstage/backend-plugin-api@0.4.1-next.1
|
|
16
|
+
- @backstage/backend-tasks@0.4.4-next.1
|
|
17
|
+
- @backstage/cli-common@0.1.12-next.0
|
|
18
|
+
- @backstage/config@1.0.7-next.0
|
|
19
|
+
- @backstage/types@1.0.2
|
|
20
|
+
|
|
21
|
+
## 0.4.1-next.0
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- 928a12a9b3: Internal refactor of `/alpha` exports.
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
- @backstage/backend-tasks@0.4.4-next.0
|
|
28
|
+
- @backstage/backend-plugin-api@0.4.1-next.0
|
|
29
|
+
- @backstage/backend-common@0.18.3-next.0
|
|
30
|
+
- @backstage/cli-common@0.1.11
|
|
31
|
+
- @backstage/config@1.0.6
|
|
32
|
+
- @backstage/config-loader@1.1.8
|
|
33
|
+
- @backstage/errors@1.1.4
|
|
34
|
+
- @backstage/types@1.0.2
|
|
35
|
+
- @backstage/plugin-auth-node@0.2.12-next.0
|
|
36
|
+
- @backstage/plugin-permission-node@0.7.6-next.0
|
|
37
|
+
|
|
3
38
|
## 0.4.0
|
|
4
39
|
|
|
5
40
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -16,5 +16,5 @@ yarn add --cwd packages/backend @backstage/backend-app-api
|
|
|
16
16
|
## Documentation
|
|
17
17
|
|
|
18
18
|
- [Backstage Readme](https://github.com/backstage/backstage/blob/master/README.md)
|
|
19
|
-
- [Backstage Documentation](https://
|
|
19
|
+
- [Backstage Documentation](https://backstage.io/docs)
|
|
20
20
|
- [Backstage Backend System](https://backstage.io/docs/backend-system/)
|